@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
    --dark-color: #121212;
    --dark-orange: #D65B2C;
}

a {
    text-decoration: none;
}

body,
html {
    /* font-family: "Outfit", sans-serif; */
    /* font-family: "mahira", sans-serif; */
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    color: #232323;
}

.bg_black {
    background-color: var(--dark-color);
}














/* 
.btn_a {
    height: 150px;
    width: 150px;
    border: 1px solid var(--dark-orange);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_a span {
    display: block;
    width: 63%;
    text-transform: uppercase;
    font-size: 14px;

} */
.btn_a{ background-color: var(--dark-orange); color: #fff; padding: 12px 20px ; }

.btn_a svg {
    fill: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.website_title {
    margin-bottom: 20px;
    margin-top: 70px;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 30px;
}

.website_title_con {
    width: 600px;
}
.webtitle_top {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-orange);
    text-transform: uppercase;
}

.webtitle_bottom {
    font-size: 40px;
    margin-top: 10px;
    line-height: 45px;
    font-weight: 700;
}

.testimonials {
    width: 100%;
    background-color: var(--dark-color);
    padding: 70px 0px;
    margin: 60px 0px;
}

.testimonials_con_left_top {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 60px;
}

.testimonials_con_left_middile {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 20px 0px;
}

.testimonials_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials_con_left {
    flex: 0 0 48%;
    max-width: 48%;
}

.testimonials_con_right {
    flex: 0 0 35%;
    max-width: 35%;
}

.testimonials_con_left_bottom {
    margin-top: 60px;
}

.testimonials_con_right_con_sliders {
    display: flex;
    justify-content: flex-end;
}

.testimonials_slides {
    width: 85%;
    background: #1b1b1b;
    padding: 20px;
    border-radius: 5px;
}

.testimonials_slides_img {
    width: 70px;
    height: 70px;
    display: flex;
    object-fit: cover;
}

.testimonials_slides_img img {
    width: 100%;
}

.testimonials_slides_name {
    font-size: 20px;
    color: #fff;
    padding: 10px 0px;
}

.testimonials_slides_content {
    font-size: 16px;
    color: #fff;
}

.testimonials_slider_main_arrow div {
    color: #fff;
    cursor: pointer;
}

#testimonials_slider_main {
    position: relative;
}

.testimonials_slider_main_arrow {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: -50px;
    gap: 10px;

}

.testimonials_slider_main_arrow_prev {
    font-size: 30px;
}

.testimonials_slider_main_arrow_next {
    font-size: 30px;
}


.testimonials_slider_main_arrow .swiper-pagination-bullet {
    height: 2px;
    width: 13px;
    background: #FFF;
    border-radius: 0px;
}

.testimonials_slider_main_arrow .swiper-pagination-bullet-active {
    background: #D65B2C;
}


.text-animation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
}
.webservice_bottom{
    margin-top: 50px;
}

/*  watsapp icon */

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	left: 20px;
	font-size: 30px;
    z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 30px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}



/*  call animation  */

.btn-call-pulse{
    background: #1d304f;
	color: white;
	position: fixed;
	bottom: 100px;
	left: 20px;
	font-size: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
    z-index: 100;
	height: 0;
	padding: 30px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: call-pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}



@keyframes call-pulse {
	0% {
		box-shadow: 0 0 0 0 #1d304f;
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-call-phone-animate {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-call-::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #1d304f;
	opacity: 0.75;
	animation-name: phone-animate;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes phone-animate {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width:757px) {
      .btn-call-pulse{
         font-size:20px ;
         padding: 20px;
         bottom: 80px;
      }
      .btn-whatsapp-pulse{
        font-size:20px ;
        padding: 20px;
      }
}