*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html{
	/* smooth scrolling */
	scroll-behavior: smooth;

	/* === Variables For Storing Colors === */
	--primary-clr: #5c6fd5;
	--bg-light-clr: #f4f7fe;
	--dark-heading-clr: #15181d;
	--dark-sub-heading-clr: #181c1f;
	--dark-text-clr: #454545;
	--light-heading-clr: #fefefe;
	--light-sub-heading-clr: #e2e9fa;
	--light-text-clr: #ccd1dd;
}

.body{
	width: 100%;
	height: 100%;
}

.website-wrapper{
	width: 100%;
	min-height: 100vh;
	max-width: 1600px;
	margin: 0px auto;
	background-color: var(--light-heading-clr);
}

/* Reusable code start */

button.btn{
	padding: 14px 30px;
	border: 1px solid transparent;
	border-radius: 25px;
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	font-size: 15px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: 0.3s;
}

button.btn:hover{
	background-color: transparent;
	color: var(--primary-clr);
	border: 1px solid var(--primary-clr);
}

header.section-heading{
	position: relative;
	max-width: 550px;
	margin-bottom: 35px;
	z-index: 3;
}

header.section-heading h3{
	font-size: 16px;
	color: var(--primary-clr);
	font-weight: 500;
	margin-bottom: 5px;
}

header.section-heading h1{
	font-size: calc(24px + 1.5vw);
	color: var(--dark-heading-clr);
	font-weight: 500;
}

header.section-heading p{
	font-size: 16px;
	color: var(--dark-sub-heading-clr);
	margin: 10px 0px 20px;
	line-height: 1.3;
}
/* Reusable code end */
/* home section styling start  */
section.home{
	width: 100%;
	min-height: 100vh;
}

.home .top-bar{
	width: 100%;
	padding: 15px 8%;
	background-color: var(--bg-light-clr);
	display: flex;
	justify-content: space-between;
}

.home .top-bar .phone-email{
	display: flex;	
}

.home .top-bar .phone-email i{
	margin-right: 3px;
	color: var(--dark-heading-clr);
	font-size: 15px;
}

.home .top-bar .phone-email span{
	font-size: 18px;
}

.home .top-bar .phone-email .phone{
	margin-right: 15px;
}

.home .top-bar .top-social-links{
	position: relative;
}

.top-bar .top-social-links a{
	text-decoration: none;
	color: var(--dark-heading-clr);
	margin-left: 15px;
}

.top-bar.top-social-links a i{
	font-size: 15px;
	color: var(--dark-heading-clr);
	transition: 0.3s;
}

.top-bar .top-social-links a i:hover{
	color: var(--primary-clr);
	transform: translateY(-2px);
}

.home .navbar{
	position: relative;
	width: 100%;
	height: 80px;
	padding: 0px 8%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--light-heading-clr);
	z-index: 100;
}

.home.active .navbar{
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	animation: animateNavbar 0.5s linear;
	z-index: 100;
}

@keyframes animateNavbar{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0px);
	}
}


.home .navbar .logo{
	position: relative;
}

.home .navbar .logo img{
	height: 80px;
}

.home .navbar ul.nav-links{
	list-style: none;
}

.home .navbar .nav-links li{
	display: inline-block;
	margin-left: 15px;
}

.home .navbar ul.nav-links li a{
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--dark-heading-clr);
	transition: color 0.3s;
}

.home .navbar ul.nav-links li a:hover{
	color: var(--primary-clr);
}

.home .navbar .menu-btn{
	position: relative;
	display: flex;
	align-items: center;
	width:26px;
	height: 20px;
	cursor: pointer;
	display: none;
}

.home .navbar .menu-btn span{
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--dark-heading-clr);
	border-radius: 15px;
	transition: transform 0.3s, opacity 0.3;
}

.home .navbar .menu-btn span:nth-of-type(1){
	transform: translateY(-7px);
}

.home .navbar .menu-btn span:nth-of-type(3){
	transform: translateY(7px);
}

.home .banner{
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-image: url(images/home/m\ \(1\).jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 0px 8%;
	display: flex;
	justify-content: flex-start;
	align-items: center;

}

.home .banner .home-overly{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
}

.home .banner .text-wrapper{
	position: relative;
	max-width: 600px;
	color: var(--light-heading-clr);
	z-index: 2;
}

.home .banner .text-wrapper h3{
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.home .banner .text-wrapper h1{
	font-size: calc(42px + 1.5vw);
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 20px;
}

.home .banner .text-wrapper p{
	font-size: 10px;
	color: var(--light-sub-heading-clr);
	line-height: 1.3;
	margin-bottom: 30px;
}
/* home section styling end  */

/* features section styling starts */

section.features{
	position: relative;
	width: 100%;
	padding: 0px 8%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	z-index: 3;
}

.features .feature-box{
	position: relative;
	padding: 35px 20px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--light-heading-clr);
	top: -60px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	z-index: 3;
}


.features .feature-box .feature-icon{
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-light-clr);
	border-radius:5% 50% 5% 50%;
}

.features .feature-box .feature-icon i{
	font-size: 26px;
	color: var(--primary-clr);
}

.features .feature-box h2{
	font-size: calc(16px + 0.6vw);
	font-weight: 500;
	color: var(--dark-heading-clr);
	text-transform: capitalize;
	margin: 20px 0px 10px;
}
.features .feature-box p{
	font-size: 15px;
	color: var(--dark-text-clr);
	text-align: center;
	line-height: 1.3;
}
/* features section styling end */

/* about setion styling starts */

section.about{
	position: relative;
	width: 100%;
	padding: 90px 8% 30px; 
}

.about .about-content{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 6fr 7fr;
	grid-gap: 20px 7%;
	z-index: 2;
}

.about-content .about-left-col{
	position: relative;
	width: 100%;

}

.about-content .about-left-col img{
	position: relative;
	width: 100%;
	min-width: 350px;
	min-height: 500px;
	object-fit: cover;
	z-index: 1;
}

.about-content .about-left-col .about-img-bg{
	position: absolute;
	width: 60%;
	height: 70%;
	top: -20px;
	left: -20px;
	background-color: var(--bg-light-clr);
	border-radius: 25px;
	transform: rotate(-15deg);
	z-index: 0;

}

.about-content .about-right-col{
	width: 100%;
}

.about-content .about-right-col .section-heading{
	margin-bottom: 15px;
}

.about-content .about-right-col .section-heading h3{
	font-weight: bold;
}
.about-content .about-right-col .about-facilities{
	list-style: none;
}

.about-right-col .about-facilities li{
	position: relative;
	font-size: 15px;
	color: var(--dark-text-clr);
	text-indent: 20px;
	margin-bottom: 10px;

}

.about-right-col .about-facilities li::before{
	position: absolute;
	content: attr(check);
	left: -20px;
	color: var(--primary-clr);
	font-weight: 600;
}

.about-right-col .about-btn{
	margin-top: 25px;
}

.about .about-bg-blob{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.about .about-bg-blob img{
	position: absolute;
	width: 600px;
	height: 600px;
	bottom: 0px;
	right: -100px;
}
/* about setion styling end */

/* states section styling starts */


section.states{
	position: relative;
	width: 100%;
	padding: 70px 8% 30px;
}

.states .states-container{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background-color: var(--primary-clr);
	border-radius: 5px;
}

.states .states-container .state-box{
	padding: 20px;
	text-align: center;
}

.states-container .state-box h3{
	font-size: calc(24px + 1.5vw);
	color: var(--light-heading-clr);
	margin-bottom: 10px;
}

.states-container .state-box p{
	font-size: 16px;
	color: var(--light-sub-heading-clr);
}
/* states section styling end */

/* testimonials section styling starts */

section.testimonials{
	position: relative;
	width: 100%;
	padding: 120px 8% 20px;
}

.testimonials .test-contents{
	position: relative;
	z-index: 2;
}

.testimonials .test-contents .item{
	position: relative;
	border: 1px solid var(--light-text-clr);
	background-color: var(--bg-light-clr);
	padding: 25px 20px;
}

.test-contents .item .test-header{
	display: flex;
	align-items: center;
}

.test-contents .item .test-header .client-img{
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 50px;
}

.test-contents .item .test-header .client-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.test-contents .item .test-header .client-desc{
	position: relative;
	margin-left: 15px;
}

.test-contents .item .test-header .client-desc h2{
	font-size: calc(16px + 0.6vw);
	color: var(--dark-heading-clr);
	margin: 5px;
}

.test-contents .item .test-header .client-desc p{
	font-size: 16px;
	color: var(--dark-text-clr);
}

.test-contents .item .test-desc{
	position: relative;
	margin-top: 20px;
}

.test-contents .item .test-desc p{
	font-size: 15px;
	color: var(--dark-text-clr);
	line-height: 1.3;
}

.test-contents .item .test-desc i{
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-size: calc(16px + 0.6vw);
	color: var(--primary-clr);
}

.owl-carousel .owl-dots{
	margin-top: 20px !important;
}
/* testimonials section styling end */

/* services section styling starts */

section.Services{
	position: relative;
	width: 100%;
	padding: 120px 8% 20px;
}

.Services .section-heading h1{
	font-size: calc(22px + 2.5vw);
	
}

.Services .services-content{
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	z-index: 2;

}

.Services .services-content .service-box{
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	padding: 25px 8%;
	border-left: 3px solid var(--primary-clr);
	cursor: pointer;
}

.services-content .service-box .icon-box{
	position: relative;
}

.services-content .service-box .icon-box i{
	font-size: calc(22px + 1vw);
	color: var(--primary-clr);
}

.services-content .service-box h2{
	font-size: calc(16px + 0.6vw);
	color: var(--dark-heading-clr);
	font-weight: 500;
	margin-bottom: 20px 0px 10px;
}

.services-content .service-box p{
	font-size: 15px;
	color: var(--dark-text-clr);
	margin-bottom: 25px;
	line-height: 1.4;
}

.services-content .service-box a{
	text-decoration: none;
	color: var(--primary-clr);
	font-size: 15px;
}

.services-content .service-box a:hover{
	text-decoration: underline;
}

.Services .services-bg-blob{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

.Services .services-bg-blob img{
	position: absolute;
	width: 700px;
	height: 450px;
	left: -100px;
	top: 140px;
	z-index: 1;
}
/* services section styling end */
/* Team section styling starts */

section.team{
	position: relative;
	width: 100%;
	padding: 7% 10% 20px;
}

.team .section-heading h1{
	font-size: calc(40px + 0.9vw);
	font-weight: 500;
}

.team .team-content{
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	z-index: 2;
}

.team .team-content .member-box{
	position: relative;
	width: 100%;
	padding: 5px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.team-content .member-box img{
	width: 100%;
	max-height: 300px;
	object-fit: cover;
}

.team-content .member-box .member-info{
	padding: 10px;
}

.team-content .member-box .member-info h2{
	font-size: calc(16px + 0.4vw);
	color: var(--dark-heading-clr);
	font-weight: 500;
	margin-bottom: 7px;
}

.team-content .member-box .member-info p{
	font-size: 15px;
	color: var(--dark-text-clr);
}

.team-content .member-box .member-contact{
	position: absolute;
	padding: 20px 15px;
	top: 35%;
	right: -100%;
	transform: translateY(-50%);
	background-color: var(--primary-clr);
	display: flex;
	flex-direction: column;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	transition: right 0.3s;
}

.team-content .member-box:hover .member-contact{
	right: 0;
}

.member-box .member-contact a{
	color: var(--light-heading-clr);
	margin-bottom: 7px;
}

.member-box .member-contact a:nth-of-type(4){
	margin-bottom: 0px;
}

.member-box .member-contact a i{
	color: var(--light-heading-clr);
	font-size: 15px;
	transition: color 0.3s;
}

.member-box .member-contact a i:hover{
	color: var(--dark-heading-clr);
}

.team .team-bg-blob{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

.team .team-bg-blob img{
	position: absolute;
	width: 600px;
	height: 400px;
	right: -100px;
	bottom: 0px;
	transform: rotate(45deg);
	z-index: 1;
}
/* Team section styling end */
/* blog section styling start */

section.blog{
    position: relative;
	width: 100%;
	padding: 90px 8% 20px;
}

.blog .blog-contents{
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	z-index: 2;
}

.blog .blog-contents .blog-post{
	position: relative;
	padding: 5px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.blog-contents .blog-post img{
	width: 100%;

}

.blog-contents .blog-post .date-posted{
	padding: 10px;
	display: flex;
	justify-content: space-between;
}

.blog-contents .blog-post .date-posted i{
	font-size: 15px;
	color: var(--dark-text-clr);
}

.blog-contents .blog-post .date-posted i span{
	display: inline-block;
	font-weight: 500;
	color: var(--dark-text-clr);
}

.blog-contents .blog-post h2.title{
	padding: 0px 10px;
	font-size: calc(16px + 0.6vw);
	font-weight: 500;
	color: var(--dark-heading-clr);
}

.blog-contents .blog-post p{
	padding: 0px 10px;
	font-size: 15px;
	color: var(--dark-heading-clr);
	line-height: 1.3;
	margin: 10px 0px 15px;
}

.blog-contents .blog-post a{
	display: inline-block;
	padding: 0px 10px;
	text-decoration: none;
	font-size: 15px;
	color: var(--primary-clr);
	margin-bottom: 15px;
	transition: all 0.3s;
}

.blog-contents .blog-post a:hover{
	text-decoration: underline;
}

.blog .blog-bg-blob{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

.blog .blog-bg-blob img{
	position: absolute;
	width: 500px;
	height: 500px;
	left: 50%;
	transform: translateX(-50%) rotate(95deg);
	bottom: 0px;
	z-index: 1;

}
/* blog section styling end */
/* footer section styling starts */
section.footer{
	position: relative;
	width: 100%;
	padding: 70px 8% 50px;
	background-color: #2c3c89;
	margin-top: 50px;
	display: grid;
	grid-template-columns: 3fr 2fr 2fr 2fr;
	grid-gap: 20px;
}

.footer .footer-col{
	position: relative;
	z-index: 2;
}

.footer .footer-col .col-header{
	position: relative;
	margin-bottom: 20px;
}


.footer-col .col-header h2{
	font-size: calc(16px + 0.6vw);
	color: var(--light-heading-clr);
	font-weight: 500;
}

.footer-co-1 .col-header img{
	width: calc(100px + 0.6vw);
}

.footer-co-1 .col-desc p{
	font-size: 15px;
	color: var(--light-text-clr);
	line-height: 1.3;
}

.footer-co-1 .col-desc p:nth-child(2){
	margin-top: 5px;
}

.footer-co-1 .col-desc .footer-social-meia{
	margin-top: 30px;
}

.col-desc .footer-social-meia a{
	color: var(--light-heading-clr);
	text-decoration: none;
	font-size: calc(12px + 0.6vw);
	margin-right: 15px;
	transition: color 0.3s;
}

.col-desc .footer-social-meia a:hover{
	color: var(--primary-clr);
}

.footer-col-2 .col-desc{
	display: flex;
	flex-direction: column;
}

.footer-col-2 .col-desc .contact-row{
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.footer-col-2 .col-desc .contact-row span{
	color: var(--light-text-clr);
	font-size: 16px;
}

.footer-col-2 .col-desc .contact-row span:nth-child(1){
	color: var(--light-text-clr);
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 2px;
}

.footer-co-3 .col-desc{
	display: flex;
	flex-direction: column;
}

.footer-co-3 .col-desc a{
	position: relative;
	text-decoration: none;
	color: var(--light-heading-clr);
	margin-bottom: 15px;
	align-self: flex-start;
	transition: all 0.3s;
	left: 15px;
}

.footer-co-3 .col-desc a::before{
	content:'';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: var(--light-text-clr);
	border-radius: 50%;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
}

.footer-co-3 .col-desc a:hover{
	letter-spacing: 2px;
}

.footer-col-4 .col-desc{
	display: flex;
	flex-direction: column;
}

.footer-col-4 .col-desc p{
	font-size: 15px;
	color: var(--light-text-clr);
	line-height: 1.3;
}

.footer-col-4 .col-desc form{
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.footer-col-4 .col-desc form input{
	width: 100%;
	padding: 12px;
	border: 1px solid  var(--light-heading-clr);
	outline: none;
	border-radius: 5px;
	margin-bottom: 10px;

}

.footer-col-4 .col-desc form .email-submit-btn{
	border-radius: 5px;
}
/* footer section styling end */
/* copyright section styling start */

section.copyright{
	padding: 0px 8%;
	background-color: #2c3c89;
}

.copyright .line{
	width: 100%;
	height: 1px;
	background-color: #777;
}

.copyright p{
	padding: 25px 0px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.copyright p span{
	color: var(--light-text-clr);
}
/* copyright section styling end */


/* Media Query Start */
@media(max-width: 1068px){
	/* services section  */
	.Services .services-content{
		grid-template-columns: 1fr 1fr;
	}
	/* blog section */
	.blog .blog-contents{
		grid-template-columns: 1fr 1fr;
	}

}

@media(max-width: 968px){
	/* Team section */
	.team .team-content{
		grid-template-columns: 1fr 1fr;
	}
	/* footer section */
	section.footer{
		grid-template-columns:1fr 1fr ;
	}
}

@media(max-width: 868px){
	/* Features Section */
	section.features{
		grid-template-columns: 1fr 1fr;
	}
	/* About Section */
	.about .about-content{
		grid-template-columns: 1fr;
		grid-gap: 25px 0px;
	}
}

@media(max-width: 768px){
	/* Home Section */
	.home .top-bar{
		display: none;
	}
    .home .navbar .menu-btn{
		display: flex;
	}

	.home .navbar .menu-btn.active span:nth-of-type(1){
		transform: translateY(0px) rotate(45deg);
	}

	.home .navbar .menu-btn.active span:nth-of-type(3){
		transform: translateY(0px) rotate(-45deg);
	}

	.home .navbar .menu-btn.active span:nth-of-type(2){
		opacity: 0;
	}

	.home .navbar ul.nav-links{
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		display: flex;
		flex-direction: column;
		padding: 30px 0px;
		background-color: var(--light-heading-clr);
		border-top: 1px solid var(--bg-light-clr);
		z-index: 99;
		transition: 0.3s;
		transform: scaleY(0);
		transform-origin: top;
	}

	.home .navbar ul.nav-links.active{
		transform: scaleY(1);
	}
	.home .navbar ul.nav-links li{
		margin: 0;
	}
	.home .navbar ul.nav-links li a{
		display: block;
		width: 100%;
		padding: 15px 0px;
		text-align: center;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
	}
	.home .navbar ul.nav-links li a:hover{
		background-color: var(--bg-light-clr);
	}
	/* states section  */

	.states .states-container{
		grid-template-columns: 1fr 1fr;
	}
}
	

@media(max-width: 668px){
	/* Features Section */
	section.features{
		grid-template-columns: 1fr;
	}
	.features .feature-box .feature-icon i{
		font-size: 22px;
	}

	/* blog section */
	.blog .blog-contents{
		grid-template-columns: 1fr;
	}

	/* copyright section */
    .copyright p{
		flex-direction: column;
		align-items: center;
	}

}

@media(max-width: 568px){
	/* About Section */
	.about-content .about-left-col img{
		min-width: 300px;
		min-height: auto;
	}

    /* states section */
	.states .states-container{
		grid-template-columns: 1fr;
	}
    
	/* services section */
	.Services .services-content{
		grid-template-columns: 1fr;
		grid-gap: 20px 0px;
	}

	/* team section */
	.team .team-content{
		grid-template-columns: 1fr;
	}

	.team-content .member-box .member-contact{
		right: 0;
	}

	/* footer section */
	section.footer{
		grid-template-columns:1fr;
		grid-gap: 40px 0px;

	}
}
/* Media Query end */



