@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
:root{
	--success: #2bab51;
	--blue: #0069ce;
	--primary: #2258cd;
	--secondary: #ff8716;
	--black: #282828;
	--dark: #282828;
	--paragraph: #3f3f3f;
	--white: #fff;
	--light: #fff;
}
main{
	position: relative;
}
h1, h2, h3{
	/*font-family: 'Roboto Condensed', sans-serif;*/
	font-family: sans-serif;
}
section, footer{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
}
.inner_content{
	width: 100%;
	max-width: 1380px;
	padding-left: clamp(1.2rem, -0.3059rem + 3.1373vw, 2.4rem);
	padding-right: clamp(1.2rem, -0.3059rem + 3.1373vw, 2.4rem);
}
.w-full{
	width: 100%;
}
.h-full{
	height: 100%;
}
.overflow-hidden{
	overflow: hidden;
}

/*--------- slider ----------------*/

.top_slider{
	width: 100%;
	height: 95vh;
	position: relative;
	margin-top: 5rem;
}
.bannerslider, .bannerslider .swiper-slide{
	width: 100%;
	height: 100%;
}
.bannerslider .swiper-slide .slider{
	width: 100%;
	height: 100%;
}
.bannerslider .swiper-slide .slider.slider1{
	background: linear-gradient(to right, rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url('../img/banner/1.jpg') center center no-repeat;
	background-size: cover;
}
.bannerslider .swiper-slide .slider.slider2{
	background: linear-gradient(to right, rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url('../img/banner/2.jpg') center center no-repeat;
	background-size: cover;
}
.bannerslider .swiper-slide .slider.slider .sliderCon{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	color: #fff;
	margin-left: 140px;
	position: relative;
}
.bannerslider .swiper-slide .slider.slider .sliderCon .backText{
	position: absolute;
	top: -5%;
	left: -50px;
	text-transform: uppercase;
	font-size: 4rem;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
	opacity: 0.9;
	font-weight: 900;
	color: transparent;
	font-family: sans-serif;
	animation: moveanim 20s linear infinite;
	transition: 1s;
	opacity: 0;
}
.bannerslider .swiper-slide-active .slider.slider .sliderCon .backText{
	top: 12%;
	opacity: 1;
}
@keyframes moveanim{
	0%{
		transform: translate(0px,0px);
	}
	16%{
		transform: translate(10px,10px);
	}
	25%{
		transform: translate(0px,0px);
	}
	33%{
		transform: translate(-10px,10px);
	}
	50%{
		transform: translate(0px,0px);
	}
	66%{
		transform: translate(10px,-10px);
	}
	66%{
		transform: translate(5px,5px);
	}
	100%{
		transform: translate(0px,0px);
	}
}
.bannerslider .swiper-slide .slider.slider .sliderCon .slider-subtitle{
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 3px;
	font-weight: 900;
	position: relative;
	transition: 1s;
	transition-delay: 0.5s;
	left: -100px;
	opacity: 0;
	margin-bottom: 1rem;
	display: block;
}
.swiper-slide.swiper-slide-active .slider.slider .sliderCon .slider-subtitle{
	left: 0;
	opacity: 1;
}
.bannerslider .swiper-slide .slider.slider .sliderCon .slider-title{
	display: block;
	font-size: 6.5rem;
	text-transform: uppercase;
	line-height: 5.8rem;
	font-weight: 900;
	margin-bottom: 1.6rem;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 2px;
	position: relative;
	transition: 1s;
	transition-delay: 1s;
	left: 100px;
	opacity: 0;
}
.bannerslider .swiper-slide.swiper-slide-active .slider.slider .sliderCon .slider-title{
	left: 0;
	opacity: 1;
}
.bannerslider .swiper-slide .slider.slider .sliderCon p{
	position: relative;
	transition: 1s;
	transition-delay: 1.5s;
	left: 100px;
	opacity: 0;
}
.bannerslider .swiper-slide.swiper-slide-active .slider.slider .sliderCon p{
	left: 0;
	opacity: 1;
}

.btn-wrap{
	display: flex;
}
.btn-main{
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 20px;
	text-decoration: none;
	background: var(--light);
	color: var(--dark);
	padding: 12px 35px;
	transition: 0.5s;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.08rem;
	position: relative;
	transition: 1s;
	border-radius: 0.4rem;
}
.btn-dark{
	background-color: var(--dark);
	color: var(--light);
}
.btn-secondary{
	background-color: var(--secondary);
	color: var(--light);
}
.bannerslider .swiper-slide .slider.slider .sliderCon a{
	transition-delay: 0s;
	left: 100px;
	opacity: 0;
}
.swiper-slide.swiper-slide-active .slider.slider .sliderCon a{
	left: 0;
	opacity: 1;
	transition-delay: 2s;
}
.bannerslider .swiper-slide .slider.slider .sliderCon a i{
	margin-left: 10px;
	font-size: 0.8rem;
}
.bannerslider .swiper-slide .slider.slider .sliderCon a:hover{
	background: var(--blue);
	color: #fff;
}
.bannerslider .swiper-pagination{
	bottom: 50% !important;
	left: 35% !important;
	color: #fff !important;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotate(90deg) !important;
}
.bannerslider .swiper-pagination .swiper-pagination-bullet{
	width: 15px !important;
	height: 15px !important;
	border-radius: 50%;
	background: #fff !important;
	display: block !important;
	position: relative;
	margin: 0px 10px !important;
}
.bannerslider .swiper-pagination .swiper-pagination-bullet-active:before{
	content: '';
	position: absolute;
	width: 170%;
	height: 170%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border: 1px solid #fff;
	border-radius: 50%;
}
.top_slider .bottomBox{
	position: absolute;
	bottom: -6.5em;
	left: 12.5%;
	z-index: 20;
	/*transform: translateX(-50%);*/
	width: 75vw;
	height: 13em;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1;
	border-radius: 0.8rem;
	overflow: hidden;
}
.top_slider .bottomBox .left{
	width: 30%;
	height: 100%;
	background: linear-gradient(to top, rgba(1,102,204,0.7), rgba(1,102,204,0.7)), url('../img/man.jpg') center center no-repeat;
	background-size: cover;	
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
}
.top_slider .bottomBox .left .big{
	font-size: 4.3rem;
	font-family: 'Bebas Neue', cursive;
	font-weight: 900;
	letter-spacing: 2px;
	margin-left: -1rem;
	margin-right: 10px;
}
.top_slider .bottomBox .left .small{
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 1px;
}
.top_slider .bottomBox .right{
	width: 70%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding: 0px 150px 0px 30px;
}
.top_slider .bottomBox .right h3{
	font-family: 'Bebas Neue', cursive;
	font-weight: 900;
	font-size: 2.5rem;
	letter-spacing: 2px;
	color: #333;
	margin-bottom: 1rem;
}
.top_slider .bottomBox .right h3 span a{
	font-family: 'Bebas Neue', cursive;
	color: var(--blue);
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}
.top_slider .bottomBox .right h3 span a i{
	color: var(--blue);
	font-size: 1.6rem;
}

/*--------------------------------------- service section css------------------------------------------*/

.home_service{
	width: 100%;
	position: relative;
	z-index: 5;
}
.home_service .content{
	margin-top: 14em;
	max-width: 1380px;
}
.home_service .content .head{
	text-align: center;
}
.home_service .content .head p{
	color: var(--blue);
	font-weight: 600;
	font-size: 1.1rem;
	font-family: arial;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}
.home_service .content .head h2{
	font-family: 'Bebas Neue', cursive;
	font-size: 3rem;
	letter-spacing: 2px;
	color: #333;
	text-transform: uppercase;
}

.home_service .content .head h3{
	font-size: 1rem;
	font-weight: normal;
	color: #333;
	margin-bottom: 2.4rem;
	font-family: 'Poppins', sans-serif;
}
.home_service .service_body{
	width: 100%;
}
.home_service .service_body .row{
	width: 100%;
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	flex-wrap: wrap;
}
.home_service .service_body .row .col-sm-3{
	width: 23%;
	position: relative;
	cursor: pointer;
}
.home_service .service_body .row .col-sm-3:before{
	content: "";
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 98%;
	height: 4px;
	background: var(--dark);
	border-radius: 4px;
	opacity: .2;
}
.home_service .service_body .row .imgBox{
	width: 100%;
	height: 240px;
	border-radius: 0.6rem;
	overflow: hidden;
	position: relative;
}
.home_service .service_body .row .imgBox img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}
.home_service .service_body .row .col-sm-3:hover .imgBox img{
	width: 110%;
	height: 110%;
	object-fit: cover;
}
.home_service .service_body .row .conBox{
	position: relative;
	width: 100%;
	padding-top: 30px;
}
.home_service .service_body .row .iconBox{
	position: absolute;
	top: -35px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: var(--blue);
	z-index: 1;
	border-radius: 0.4rem;
	transition: 0.5s;
}
.home_service .service_body .row .iconBox img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
	height: 60%;
	transition: 0.5s;
}
.home_service .service_body .row .col-sm-3:hover .iconBox{
	background: var(--secondary);
}
.home_service .service_body .row .col-sm-3:hover .iconBox img{
	transform: translate(-50%,-50%) rotateY(360deg);
}
.home_service .service_body .row .conBox h4{
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 900;
	opacity: 0.6;
	letter-spacing: 1.5px;
	font-family: 'Bebas Neue', cursive;
}
.home_service .service_body .row .conBox h3 a{
	display: block;
	margin: 10px 0px;
	text-decoration: none;
	color: var(--black);
	text-transform: uppercase;
	font-size: 2.2rem;
	font-weight: 900;
	letter-spacing: 1.5px;
	font-family: 'Bebas Neue', cursive;
	transition: 0.25s;
}
.home_service .service_body .row .conBox h3 a:hover{
	color: var(--blue);
}
.home_service .service_body .row .conBox p{
	font-size: 1rem;
	padding-right: 20px;
	color: var(--paragraph);
}

/*--------------------------------------- service section css------------------------------------------*/

/*-------------------------------------- why choose us -----------------------------*/

.why_choose{
	width: 100%;
	padding: 12rem 0 0 0;
	position: relative;
	z-index: 1;
}
.why_choose .boxSection{

	background: #fff;
	box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 10;
	border-radius: 1rem;
}
.why_choose .boxSection p{
	max-width: 30rem;
	margin-bottom: 2.4rem;
}
.why_choose .boxSection .row{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 60px 0px 60px 60px;
}
.why_choose .boxSection .row .col-sm-6{
	width: 50%;
	position: relative;
}
.why_choose .boxSection .row img.man{
	position: absolute;
	bottom: -60px;
	right: 0;
	width: 116%;
}
.why_choose .boxSection h4{
	color: var(--blue);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.6rem;
}
.why_choose .boxSection h2{
	font-family: 'Bebas Neue', cursive;
	font-size: 3rem;
	letter-spacing: 2px;
	color: #333;
}
.why_choose .boxSection .feature-row{
	width: 100%;
	padding: 20px 0px;
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
	position: relative;
	gap: 30px;
	margin-bottom: 1.6rem;
}
.why_choose .boxSection .feature-row .left{
	gap: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: column;
	position: relative;
}
.why_choose .boxSection .feature-row .left .numBox{
	width: 50px;
	height: 50px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	z-index: 2;
	border: 4px solid #fff;
	transition: 0.5s;
	border-radius: 0.4rem;
}
.why_choose .boxSection .feature-row .left .barLine{
	position: absolute;
	width: 4px;
	height: 0px;
	background: var(--blue);
	z-index: 1;
	top: 0px;
	left: 50%;
	z-index: 1;
	transition: 3s;
	transition-delay: 0.5s;
}
.why_choose .boxSection .feature-row .left .numBox2{
	transition-delay: 1.2s;
}
.why_choose .boxSection .feature-row .left .numBox3{
	transition-delay: 2.2s;
}
.why_choose .boxSection .feature-row .left.inView .numBox{
	background: var(--blue);
}
.why_choose .boxSection .feature-row .left.inView .barLine{
	height: 100%;
}
.why_choose .boxSection .feature-row .right{
	gap: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: column;
}
.why_choose .boxSection .feature-row .right .box{
	position: relative;
	left: -20px;
	opacity: 0;
	transition: 0.5s;
}
.why_choose .boxSection .feature-row .right .box2{
	transition-delay: 1.2s;
}
.why_choose .boxSection .feature-row .right .box3{
	transition-delay: 2.2s;
}
.why_choose .boxSection .feature-row .right.inView .box{
	position: relative;
	left: 0px;
	opacity: 1;
}
.why_choose .boxSection .feature-row .right .box h3{
	font-family: 'Bebas Neue', cursive;
	font-size: 1.5rem;
	letter-spacing: 1.5px;
	color: #333;
}
.why_choose .boxSection .feature-row .right .box p{
	margin-bottom: 0;
}


/*-----------------*/

.all_counts{
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: var(--dark);
	top: -7rem;
	z-index: 9;
	padding-bottom: 3.6rem;
}
.all_counts .backImg{
	position: absolute;
	bottom: -130px;
	right: 0;
	opacity: 0.01;
	display: none;
}
.all_counts .row{
	margin-top: 200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	left: 0px;
}
.all_counts .row .col-sm-3{
	width: 23%;
}
.all_counts .row .icon{
	width: 100%;
}
.all_counts .row .icon img{
	width: 20%;
	margin-bottom: 0.4rem;
}
.all_counts .row .num{
	font-size: 3.5rem;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 1px;
	color: var(--secondary);
}
.all_counts .row .label{
	font-size: 1rem;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 1.5px;
	color: #fff;
	padding-right: 40px;
}


/*-------------------------------------- why choose us -----------------------------*/

/*--------- slider ----------------*/

/*-------------------------------------------------  testimonial ---------------------------------------*/

.testimonials_main{
	width: 100%;
	padding: 0 0 7rem 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.review-star-wrap{
	display: flex;
	align-items: center;
	gap: 2px;
	color: #ffb625;
}
.testimonials_main .review-star-wrap{
	margin-bottom: 0.6rem;
}
.testimonials_main .testimonial_box .testimonial_slider{
	width: 100%;
	overflow: hidden;
}
.testimonials_main .testimonial_box .testimonial_slider .swiper-slide{
	width: 100%;
	height: auto;
}
.testimonials_main .testimonial_box .testimonial_slider .swiper-slide .slider{
	width: 100%;
	height: 100%;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 0.6rem;
	background-color: var(--dark);
	color: var(--light);
}
.testimonials_main .testimonial_box .testimonial_slider .swiper-slide .slider img{
	width: 90px;
	margin-bottom: 10px;
}
.testimonials_main .testimonial_box .testimonial_slider .swiper-slide .slider .name{
	font-weight: 500;
	color: var(--light);
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}
.testimonials_main .testimonial_box .testimonial_slider .swiper-slide .slider .place{
	margin-bottom: 1rem;
	font-size: 0.8rem;
	color: var(--success);
}

/*-------------------------------------------------  testimonial ---------------------------------------*/

footer{
	background-color: var(--dark);
	padding: 8rem 0;
}

@media (max-width: 1100px){
	.home_service .service_body .row .col-sm-3{
		width: 48%;
		margin-bottom: 6rem;
	}
	.top_slider .bottomBox .right{
		padding: 30px;
	}
	.top_slider .bottomBox .right h3{
		font-size: 1.8rem;
	}
	.why_choose{
		padding: 7rem 0 0 0;
	}
	.why_choose .boxSection .feature-row .left{
		gap: 4.8rem;
	}
}

@media only screen and (max-width: 600px){
	/*--------- slider ----------------*/
	.top_slider{
		margin-top: 4.5rem;
	}
	.bannerslider .swiper-slide .slider.slider1{
		background: linear-gradient(to right, rgba(0,0,0,0.9),rgba(0,0,0,0.5)), url('../img/banner/1.jpg') center center no-repeat;
		background-size: cover;
	}
	.bannerslider .swiper-slide .slider.slider2{
		background: linear-gradient(to right, rgba(0,0,0,0.9),rgba(0,0,0,0.5)), url('../img/banner/2.jpg') center center no-repeat;
		background-size: cover;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon{
		margin-left: 40px;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon .backText{
		position: absolute;
		top: -5%;
		left: -15px;
		font-size: 3.5rem;
	}
	.bannerslider .swiper-slide-active .slider.slider .sliderCon .backText{
		top: 17%;
		opacity: 1;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon .slider-title{
		font-size: 5rem;
		text-transform: uppercase;
		line-height: 4.7rem;
		text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon p{
		padding-right: 50px;
	}
	.bannerslider .swiper-slide.swiper-slide-active .slider.slider .sliderCon p{
		left: 0;
		opacity: 1;
	}
	.bannerslider .swiper-pagination{
		bottom: 10% !important;
		left: -33% !important;
		transform: rotate(0deg) !important;
	}

	.top_slider{
		width: 100%;
		height: 110vh;
		position: relative;
		margin-top: 4.4rem;
	}

	.top_slider .bottomBox{
		position: relative;
		bottom: -2.4rem;
		left: 0;
		z-index: 20;
		/*transform: translateX(-50%);*/
		width: 100%;
		height: auto;
		flex-direction: column;
	}
	.top_slider .bottomBox .left{
		width: 100%;
		height: 10em;
	}
	.top_slider .bottomBox .left .big{
		font-size: 4.3rem;
		font-weight: 900;
		letter-spacing:0px;
		margin-left: -1rem;
		margin-right: 15px;
	}
	.top_slider .bottomBox .right{
		width: 100%;
		height: 14em;
		background: linear-gradient(to top, rgba(1,102,204,0.1), rgba(1,102,204,0.1));
		color: #000;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		padding: 0px 20px 0px 30px;
	}
	.top_slider .bottomBox .right span{
		display: block;
	}
	.top_slider .bottomBox .right h3{
		font-weight: 900;
		font-size: 1.2rem;
		letter-spacing: 1px;
	}
	.top_slider .bottomBox .right h3 span a i{
		font-size: 0.8rem;
	}
	.top_slider .bottomBox .right p{
		font-size: 0.8rem;
	}


	/*--------------------------------------- service section css------------------------------------------*/

	.home_service{
		width: 100%;
		height: auto;
		padding-bottom: 0;
	}
	.home_service .content{
		margin-top: 8rem;
	}
	.home_service .content .head p{
		color: var(--blue);
		font-weight: 600;
		font-size: 1.1rem;
		font-family: arial;
		letter-spacing: 0.5px;
		margin-bottom: 15px;
	}
	.home_service .content .head h2{
		margin-bottom: 0.6rem;
	}
	.home_service .content .head h3{
		margin-bottom: 1.6rem;
	}

	.home_service .service_body{
		width: 100%;
		padding: 0;
	}
	.home_service .service_body .row{
		width: 100%;
		flex-direction: column;
	}
	.home_service .service_body .row .col-sm-3{
		width: 100%;
		margin-bottom: 6rem;
	}
	.home_service .service_body .row .imgBox{
		width: 100%;
		height: 240px;
		overflow: hidden;
		position: relative;
	}
	.home_service .service_body .row .imgBox img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: 0.5s;
	}
	.home_service .service_body .row .col-sm-3:hover .imgBox img{
		width: 110%;
		height: 110%;
		object-fit: cover;
	}
	.home_service .service_body .row .conBox{
		position: relative;
		width: 100%;
		padding-top: 30px;
	}
	.home_service .service_body .row .iconBox{
		position: absolute;
		top: -35px;
		right: 30px;
		width: 70px;
		height: 70px;
		background: var(--blue);
		z-index: 1;
	}
	.home_service .service_body .row .iconBox img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 60%;
		height: 60%;
		transition: 0.5s;
	}
	.home_service .service_body .row .col-sm-3:hover .iconBox img{
		transform: translate(-50%,-50%) rotateY(360deg);
	}
	.home_service .service_body .row .conBox h4{
		text-transform: uppercase;
		font-size: 1.3rem;
		font-weight: 900;
		opacity: 0.6;
		letter-spacing: 1.5px;
		font-family: 'Bebas Neue', cursive;
	}
	.home_service .service_body .row .conBox h3 a{
		display: block;
		margin: 10px 0px;
		text-decoration: none;
		color: #000;
		text-transform: uppercase;
		font-size: 1.6rem;
		font-weight: 900;
		letter-spacing: 1.5px;
		font-family: 'Bebas Neue', cursive;
		transition: 0.25s;
	}
	.home_service .service_body .row .conBox h3 a:hover{
		color: var(--blue);
	}
	.home_service .service_body .row .conBox p{
		font-size: 0.85rem;
		padding-right: 20px;
	}

	/*--------------------------------------- service section css------------------------------------------*/

	/*-------------------------------------- why choose us -----------------------------*/

	.why_choose{
		top: 0px;
		padding-top: 3.6rem;
		height: auto;
	}
	.why_choose .boxSection{
		width: 100%;
		box-shadow: none;
	}
	.why_choose .boxSection .row{
		width: 100%;
		flex-direction: column;
		padding: 0;
	}
	.why_choose .boxSection .row .col-sm-6{
		width: 100%;
		position: relative;
	}
	.why_choose .boxSection .row img.man{
		position: relative;
		bottom: 0px;
		right: 0;
		width: 100%;
	}
	.why_choose .boxSection h2{
		font-family: 'Bebas Neue', cursive;
		font-size: 2rem;
		letter-spacing: 2px;
		margin-bottom: 1rem;
		color: #333;
	}
	.why_choose .boxSection .feature-row{
		left: 0px;
		margin-bottom: 0.4rem;
		gap: 0.8rem;
	}
	.why_choose .boxSection .feature-row .left{
		gap: 5.4rem;
	}
	.why_choose .boxSection .feature-row .left.inView .barLine{
		height: 270px;
	}
	.why_choose .boxSection .feature-row .right{
		width: 80%;
		height: 105%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-flow: column;
	}
	.why_choose .boxSection .feature-row .right.inView .box{
		left: 10px;
	}
	.why_choose .boxSection .feature-row .right .box h3{
		font-family: 'Bebas Neue', cursive;
		font-size: 1.2rem;
		letter-spacing: 1.5px;
		color: #333;
	}

	/*-----------------*/

	.all_counts{
		top: 0px;
		padding: 50px 20px;
	}
	.all_counts .backImg{
		position: absolute;
		bottom: 0px;
		right: 0;
		width: 50%;
	}
	.all_counts .backImg .img{
		width: 100%;
	}
	.all_counts .row{
		margin-top: 0px;
		width: 100%;
		flex-flow: row wrap;
		left: 0;
	}
	.all_counts .row .col-sm-3{
		width: 50%;
		margin-bottom: 3rem;
	}
	.all_counts .row .num{
		font-size: 3rem;
	}
	.all_counts .row .label{
		padding-right: 0px;
	}

	/*-------------------------------------- why choose us -----------------------------*/

}




@media only screen and (max-width: 390px){
	/*--------- slider ----------------*/
	
	.bannerslider .swiper-slide .slider.slider .sliderCon{
		margin-left: 30px;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon .backText{
		position: absolute;
		top: -5%;
		left: -15px;
		font-size: 3.5rem;
	}
	.bannerslider .swiper-slide-active .slider.slider .sliderCon .backText{
		top: 13%;
		opacity: 1;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon .slider-title{
		font-size: 4.4rem;
		text-transform: uppercase;
		line-height: 4.1rem;
	}
	.bannerslider .swiper-slide .slider.slider .sliderCon p{
		padding-right: 50px;
	}
	.bannerslider .swiper-slide.swiper-slide-active .slider.slider .sliderCon p{
		left: 0;
		opacity: 1;
	}
	.bannerslider .swiper-pagination{
		bottom: 10% !important;
		left: -33% !important;
		transform: rotate(0deg) !important;
	}

	.top_slider .bottomBox .right h3{
		font-size: 1.5rem;
		line-height: 1.6;
	}
	.top_slider .bottomBox .right p{
		font-size: 0.75rem;
	}

	/*-------------------------------------- why choose us -----------------------------*/

	.why_choose .boxSection h2{
		font-family: 'Bebas Neue', cursive;
		font-size: 1.8rem;
		letter-spacing: 2px;
		color: #333;
	}

	/*-------------------------------------- why choose us -----------------------------*/

	.testimonials_main{
		padding: 4rem 0;
	}
}