*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: none;
	border: none;
	transition: all .2s linear;
}

@mixin grid($val){
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax($val, 1fr));
	gap:2rem;
}
@mixin titleText($titleSize){
	font-size: $titleSize;
	color: black;
	text-transform:capitalize;
}
@mixin graphText($graphSize){
	font-size: $graphSize;
	color: white;
	line-height:1.5;
}
@mixin iconBox{
	height:5rem;
	width:5rem;
	line-height:5rem;
	font-size:2rem;
	background:white;
	color: black;
	cursor: pointer;
	text-align:center;

	&:hover{
		background:black;
		color:#fff;
	}
}
html{
	font-size: 62.5%;
	/*overflow: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;*/
}
html::-webkit-scrollbar{
	width: 1rem;
}
html::-webkit-scrollbar-track{
	background: transparent;
}
html::-webkit-scrollbar-thumb{
	background: #186ebb;
}
section{
	padding: 5rem 10%;
}
.heading{
	margin-bottom: 3rem;
	font-size: 3rem;
	color: black;
	border-left: 1rem solid #ec1a1d;
	padding-left: 1rem;
}
.btn{
	display: inline-block;
	margin-top: 1rem;
	padding: 1rem 3rem;
	background: #0d47a1;
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	border-radius: 5px;
	transition: .2s linear;
}
.btn:hover{
	background: #186ebb;
	color: #fff;
	border-radius: 5px;
}

@keyframes fadeIn{
	0%{
		top: 50%;
		opacity: 0;
	}
}
.header{
	position: sticky;
	top: 0; left: 0; right: 0;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	padding: 1.5rem 10%;
	display: flex;
	justify-content: space-between;
	z-index: 1000;
	background: #fff;
}
.header .logo{
	font-size: 2.5rem;
	color: black;
	text-transform:capitalize;
}
.header .logo span{
	color: #f5bf23;
}
.header .navbar a{
	font-size: 2rem;
	color: #186ebb;
	text-transform:capitalize;
	margin: 0 1rem;
}
.header .navbar a:hover{
	color: #ed191d;
}
.header .icons div{
	height:5rem;
	width:5rem;
	line-height:5rem;
	font-size:2rem;
	background:white;
	color: #ed191d;
	cursor: pointer;
	text-align:center; 
	margin-top: -10px;
}
.header .icons div:hover{
	background:#186eba;
	color:#fff;
}
.icons #menu-btn{
	display: none;
}
.header .search-form{
	position: absolute;
	top: 120%; left: 50%;
	transform: translateX(-50%);
	width: 70rem;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	padding: 1rem;
	display: none;
	align-items: center;
	gap: 1rem;
	animation: fadeIn .2s linear;
}
.header .search-form.active{
	display: flex;
}
.header .search-form input{
	width: 100%;
	padding: 1.2rem 1.4rem;
	background: #E0E0E0;
	font-size: 1.6rem;
	color: #9E9E9E;
}
.header .search-form label{
	font-size: 2.5rem;
	color: #000;
	cursor: pointer;
	margin: 0 1rem;
}
.header .search-form label:hover{
	color: #f5bf23;
}
.header .login-form{
	position: absolute;
	top: 120%; left: 50%;
	transform: translateX(-50%);
	width: 40rem;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	padding: 2rem;
	text-align: center;
	animation: fadeIn .2s linear;
	display: none;
}
.header .login-form.active{
	display: block;
}
.header .login-form h3{
	font-size: 2.5rem;
	color: black;
	text-transform:uppercase;
	padding-bottom: 1rem;
}
.header .login-form .box{
	width: 100%;
	padding: 1.2rem 1.4rem;
	background: #E0E0E0;
	font-size: 1.6rem;
	color: #BDBDBD;
	margin: 2rem 0;
}
.header .login-form .flex{
	display: flex;
	align-items: center;
	gap: .5rem;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
}
.header .login-form .flex label{
	font-size: 1.5rem;
	color: #9E9E9E;
	cursor: pointer;
}
.header .login-form .flex a{
	font-size: 1.5rem;
	color: #9E9E9E;
	margin-left: auto;
}
.header .login-form .flex a:hover{
	color: #00ff00;
	text-decoration: underline;
}
.header .login-form .btn{
	width: 100%;
}
.header .login-form p{
	padding-top: 1.5rem;
	font-size: 1.5rem;
	color: #9E9E9E;
	line-height:1.5;
}
.header .login-form a{
	color: #00ff00;
}
.header .login-form a:hover{
	text-decoration: underline;
}
/*============== CONTACT SECTION START ==================*/

.contact-info{
	position: fixed;
	top: 0; right: 0;
	width: 35rem;
	background: #fff;
	height: 100%;
	text-align: center;
	z-index: 1100;
	padding-top: 5rem;
	padding: 1rem 0;
	display: none;
}
.contact-info.active{
	box-shadow: 0 0 0 100vw rgba(0,0,0,.7);
	display: block;
}
.contact-info #close-contact-info{
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	cursor: pointer;
	font-size: 2rem;
	color: #000;
}
.contact-info #close-contact-info:hover{
	transform: rotate(90deg);
}
.contact-info .info{
	margin-top: 4rem;
}
.contact-info .info i{
	height:5rem;
	width:5rem;
	line-height:5rem;
	font-size:2rem;
	background:#ec1a1c;
	color: white;
	cursor: pointer;
	text-align:center;
	margin-bottom: .5rem;
	border-radius: 5px;
}
.contact-info .info i:hover{
	background: #186ebb;
}
.contact-info .info h3{
	font-size: 2rem;
	color: black;
	text-transform:capitalize;
	padding: 1rem;
}
.contact-info .info p{
	font-size: 1.5rem;
}
.contact-info .share{
	padding-top: 1rem;
	border-top: .1rem solid rgba(0,0,0,.3);
	margin-top: 1rem;
}
.contact-info .share a{
	height:5rem;
	width:5rem;
	line-height:5rem;
	font-size:2rem;
	background:#135a35;
	color: white;
	cursor: pointer;
	text-align:center;
	margin: 0 .3rem;
}


/*======================= CONTACT SECTION FIN ===================*/

/*============ SOCIAL NETWORK SECTION STAR ================*/
.social{
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}
.media-icons{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.media-icons a{
    text-decoration: none;
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 6px;
}
.media-icons a i{
    color: #fff;
}
.media-icons a .tooltip{
    position: absolute;
    left: 55px;
    font-size: 14px;
    font-weight: 400;
    pointer-events: none;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.2s linear;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
a:hover .tooltip{
    opacity: 1;
    transform: translateY(0);
}
a .tooltip::before{
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    top: 50%;
    left: -5px;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
}
.close-btn{
    display: flex;
    align-items: center;  
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    background-color: #8e36ff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*============ SOCIAL NETWORK SECTION END ================*/

/*============== HOME SECTION START ======================*/
.home{
	padding: 0;
}
.home .home-slider .slide{
	min-height: 60rem;
	display: flex;
	align-items: center;
	position: relative;
	background-size: cover !important;
	background-position: center !important;
}
.home .slide::before{
	content: '';
	position: absolute;
	top: 0; left: 0;
	height: 100%;
	width: 100%;
	
}
.home .home-slider .slide .content{
	width: 70rem;
	position: relative;
}
.home .home-slider .slide .content h3{
	font-size: 5rem;
	color: #fff;
	text-transform:uppercase;
}
.home .home-slider .slide .content p{
	font-size: 1.8rem;
	color: #fff;
	line-height:1.5;
	padding: 1rem 0;
}
.home .swiper .swiper-button-next, 
.swiper-button-prev{
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	height: 7rem;
	width: 7rem;
	line-height: 7rem;
	background: #0d47a1;
}
.home .swiper .swiper-button-next:hover, 
.swiper-button-prev:hover{
	background: #186ebb;
}
.home .swiper .swiper-button-prev{
	right: 7.2rem;
}
.home .swiper .swiper-button-next::after, 
.swiper-button-prev::after{
	font-size: 2rem;
	color: #fff;
}
/*============== HOME SECTION ENDS ======================*/

/*============== ABOUT SECTION START ======================*/
.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.information{
	width: 95%;
	margin: auto;
	padding-top: 80px;
}
.information h1{
	font-size: 4rem;
}
.information p{
	padding-top: 50px;
	font-size: 1.8rem;
	line-height: 30px;
}
.information-col{
	flex-basis: 48%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.information-col p{
	padding: 0;
}
.information-col p ul{
	padding-left: 3rem;
	font-size: 1.8rem;
}
.information-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: left;
}

/*------ MEDIA QUERY --------*/

@media (max-width:700px){
	.row{
		flex-direction: column;

	}
	.information h1{
		font-size: 1.6rem;
	}
	.information p{
		font-size: 1rem;
		line-height: 20px;

	}
	
}
/*============== ABOUT SECTION ENDS ======================*/


/*============== SERVICES PART STARTS ==============*/
.blogs{
	background: #eeeeee;
}
.blogs .slide{
	text-align: center;
	background: #fff;
	padding: 1rem 0;
	border-radius: .7rem;

}
.blogs .slide .image{
	height: 25rem;
	width: 90%;
	overflow: hidden;
	margin: 0 auto;	
	border-radius: .7rem;

}
.blogs .slide .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .2s linear;

}
.blogs .slide:hover .image img{
	transform: scale(1.1);
}
.blogs .slide .content{
	padding: 2rem;
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(0,0,0,.2);

}
.blogs .slide .content h3{
	font-size: 2rem;
	color: black;
	text-transform:capitalize;
}
.blogs .slide .content p{
	font-size: 1.4rem;
	color: #000;
	line-height:1.5;
	padding: 1rem 2rem;
	text-align: left;
}

/*============== SERVICES PART ENDS ================*/


/*============== NEWSLETTER PART START ================*/
#newsletter{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
#newsletter h4{
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}
#newsletter p{
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}
#newsletter p span{
	color: #ffc107;
}
#newsletter .form{
	display: flex;
	width: 40%;
}
#newsletter input{
	height: 4.5rem;
	padding: 0 1.25em;
	font-size: 14px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 4px;
	outline: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#newsletter button{
	background-color: #ec1a1d;
	color: #fff;
	white-space: nowrap;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
button.normal{
	font-size: 14px;
	height: 4.5rem;
	font-weight: 600;
	padding: 15px 30px;
	color: #000;
	background-color: #fff;
	border-radius: 6px;
	cursor: pointer;
	border: none;
	outline: none;
	transition: 0.2s;
}

@media screen and (max-width: 477px){
	#newsletter{
		padding: 40px 20px;
	}
	#newsletter .form{
		width: 100%;
	}
}

#newsletter .content{
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
#newsletter .content .box{
    width: calc(25% - 30px);
    border: 1px dashed rgba(255,255,255,0.6);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    flex-direction: column;
    border-radius: 5px;
}
#newsletter .content .box .icon{
    font-size: 48px;
    color: #e6e6e6;
}
#newsletter .content .box .counter{
    font-size: 50px;
    color: #f2f2f2;
    font-weight: 500;
}
#newsletter .content .box .text{
    color: #ccc;
    font-weight: 400;
    font-size: 2rem;
}

/*============== MEDIA QUERY FOR ABOUT US ============*/
 @media (max-width: 1036px){
    #newsletter{
        padding: 50px 50px 0 50px;
    }
    #newsletter .content .box{
        width: calc(50% - 30px);
        margin-bottom: 50px;
    }
}

@media (max-width: 580px){
    #newsletter .content .box{
        width: 100%;
    }
}

/*============== NEWSLETTER PART ENDS ================*/

/*============== TESTIMONIALS START ================*/

.testimonials{
	margin-top: -4rem;

}
.testimonials h1{
	font-size: 4rem;
}
.testimonials p{
	padding-top: 50px;
	font-size: 1.8rem;
	line-height: 30px;
	text-align: center;
}
.testimonials-col{
	flex-basis: 48%;
	border-radius: 10px;
	margin-bottom: 5%;
	margin-top: 3rem;
	text-align: left;
	background: #fff3f3;
	padding: 25px;
	cursor: pointer;
	display: flex;

}
.testimonials-col p{
	font-size: 1.3rem;
} 
.testimonials-col img{
	height: 80px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;

}
.testimonials-col p{
	padding: 0;
}
.testimonials-col h3{
	margin-top: 15px;
	text-align: left;
}
.testimonials-col i{
	color: #FFC107;
}

/*------ MEDIA QUERY --------*/

@media (max-width:700px){
	.testimonials-col img{
		margin-left: 0px;
		margin-right: 15px;
	}
	.testimonials-col{
		flex-basis: 100%;
	}
}

/*============== TESTIMONIALS END ================*/

/* REVIEWS PART STARTS*/
.reviews .slide p{
	padding: 1.5rem;
	background: #EEEEEE;
	position: relative;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	color: #000;
	line-height:1.5;
}
.reviews .slide p::before{
	content: '';
	position: absolute;
	bottom: -1rem; left: 2rem;
	height: 2rem;
	width: 2rem;
	background: #eeeeee;
	transform: rotate(45deg);
}
.reviews .slide .user{
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.reviews .slide .user img{
	height: 7rem;
	width: 7rem;
}
.reviews .slide .user .info h3{
	font-size: 2rem;
	color: black;
	text-transform:capitalize;
}
.reviews .slide .user .info .stars{
	padding-top: .5rem;
}
.reviews .slide .user .info .stars i{
	font-size: 1.4rem;
	color: #f5bf23;
}
/* REVIEWS PART ENDS*/

/*============== CONCTACT PART START ================*/

.contact{
	background: #000;
}
.contact .heading{
	color: #fff;
}
.contact .row{
	gap: 2rem;
	display: flex;
	flex-wrap: wrap;

}
.contact .row .map{
	flex: 1 1 41rem;
	width: 100%;

}
.contact .row form{
	flex: 1 1 41rem;
	background: #fff;
	padding: 2rem;
	border-radius: .7rem;
}
.contact .row h3{
	font-size: 2.5rem;
	color: black;	
}
.contact .row .box{
	margin: .7rem 0;
	width: 100%;
	padding: 1.5rem 0;
	border-bottom: .1rem solid rgba(0,0,0,.3);
	font-size: 1.6rem;
	color: #000;
}
.contact .row .box:focus{
	border-color: #186eb9;
}
.contact .row .box textarea{
	height: 15rem;
	resize: none;
}
/*============== CONCTACT PART END ================*/

/* BLOGS PART STARTS*/


/* BLOGS PART ENDS*/
.logo-container{
	text-align: center;
}
.logo-container .slide img{
	height: 10rem;
	pointer-events: none;
	user-select: none;
}

/* FOOTER SECTION STARTS*/
.footer{
	text-align: center;
}

.footer .credit{
	font-size: 1.5rem;
	color: #fff;
}
.footer .credit span{
	color: #ec1a1d;
}

/*============ FOOTER SECTION ENDS =============*/

/*============ SCROLL UP SECTION STYLE =============*/
.topbtn{
	position: fixed;
	right: 2%;
	bottom: 10%;
	width: 40px;
	height: 40px;
	background: #0d47a1;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;	
}
.topbtn:hover{
	background-color: #186ebb;
}

/* MEDIA QUERIES*/
@media screen and (max-width:1215px){
	.header{
		padding: 1.5rem 2rem;
	}
	section{
		padding: 3rem 5%;
	}
}

@media screen and (max-width:991px){
	html{
		font-size: 55%;
	}
	section{
		padding: 3rem 2rem;
	}
	.header #menu-btn{
		display: inline-block;
	}
	.header .navbar{
		position: absolute;
		top: 99%;
		left:0;
		right: 0;
		background: white;
		border-top: 1rem solid rgba(0,0,0,.3);
		border-bottom: 1rem solid rgba(0,0,0,.3);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: .2s linear;
	}
	.header .navbar.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	.header .navbar a{
		display: block;
		margin: 2rem;

	}
}

@media screen and (max-width:768px){
	.header .search-form{
		width: 90%;
	}
	.header .login-form{
		width: 90%;
	}
	.home .slide{
		justify-content: center;
	}
	.home .content{
		text-align: center;
	}
	.home .content h3{
		font-size: 3rem;
	}
}

@media screen and (max-width:450px){
	html{
		font-size: 50%;
	}
}


/*============== PAGE CONNAITRE PART START ================*/

.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 5rem;

}
.text-box p{
	margin: 10px 0 40px;
	font-size: 1.8rem;
	color: #fff;
	line-height: 40px;
	text-align: center;
}
/*============== PAGE CONNAITRE PART ENDS ================*/
