/* ---------------- Google fonts ------------------ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
    font-family: 'Open Sauce Sans';
    src: url('../fonts/OpenSauceSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



/* ---------------- Basic css ------------------ */

html{
	font-size: 0.488vw;
}

:root {
	scroll-behavior: unset;
	--primaryFont: 'Montserrat', sans-serif;
	--secondaryFont: 'Open Sauce Sans';

}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a{
	text-decoration: none;
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
	color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.5;
	font-family: var(--primaryFont);
	color: #132540;
}

.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}



/* -------------- preloader --------------- */

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loader3 {
	width: 10rem;
	height: 10rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 10rem;
	height: 10rem;
	border-radius: 100%;
	background: #D0E1DA;
	-webkit-animation: loader3 1.5s linear infinite;
	        animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		        transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		-webkit-transform: scale(1, 1);
		        transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		        transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		-webkit-transform: scale(1, 1);
		        transform: scale(1, 1);
		opacity: 0;
	}
}





/* ---------------- hero area ------------------ */

.hero_area{
	background: url(../img/bg1.jpg) no-repeat center;
	background-size: cover;
	padding: 26rem 0;
}

.hero_content{
	max-width: 80rem;
	text-align: center;
	margin-left: 7rem;
}

.hero_content h2{
	font-size: 9.6rem;
	line-height: 1;
	font-weight: 700;
	font-family: var(--primaryFont);
}

.hero_content p{
	font-size: 3.6rem;
	font-style: italic;
	padding: 4rem 0 5rem;
}

.hero_btn{
	font-size: 2.8rem;
	line-height: 1;
	color: #000000;
	font-weight: 700;
	font-family: var(--primaryFont);
	background-color: #d0e1da;
	border-radius: 1rem;
	display: inline-block;
	padding: 2rem 3rem;
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.hero_btn:hover{
	background-color: #000000;
	color: #fff;
}




/* ---------------- service area ------------------ */

.service_area{
	background-color: #d0e1da;
	padding: 8rem 0;
}

.service_area .title{
	border-bottom: 1px solid #000000;
	padding-bottom: 3rem;
}

.service_area .title h2{
	font-size: 7.7rem;
	font-weight: 700;
}

.service_area .row{
	--bs-gutter-x: 6rem;
}

.service_card{
	text-align: center;
	position: relative;
	padding: 0 4rem 8rem 4rem;
	z-index: 1;
	height: 100%;
	margin-top: 4rem;
}

.service_card::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 85%;
	border: 1px solid #000000;
	border-radius: 50% 50% 0 0;
	z-index: -1;
}

.service_card .avatar{
	width: 28rem;
	height: 28rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	border: 1rem solid #fff;
	margin-bottom: 5rem;
}

.service_card h3{
	font-size: 3.4rem;
	font-weight: 700;
}

.service_card p{
	font-style: italic;
	padding: 4.5rem 0 5.5rem;
}

.card_btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 2.4rem;
	font-weight: 500;
	color: #000000;
	text-transform: uppercase;
	width: 38rem;
	height: 8rem;
	background-color: #ffffff;
	border-radius: 5rem;
	font-family: var(--secondaryFont);
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.card_btn:hover{
	background-color: #f1f1f1;
	color: #000000;
}

.card_btn img{
	width: 3.5rem;
	margin-right: 2.5rem;
}



/* ---------------- start here area ------------------ */

.start_here_area{
	padding: 5rem 0;
	background: url(../img/bg2.jpg) no-repeat center;
	background-size: cover;
}

.start_here_area .row{
	--bs-gutter-x: 9rem;
	--bs-gutter-y: 5rem;
}

.start_here_area h2{
	font-size: 7.6rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 6rem;
}

.start_here_area .icon_box{
	text-align: center;
	background-color: #ffffff;
	border-radius: 1.5rem;
	padding: 3rem 4.5rem;
	height: 100%;
}

.start_here_area .icon_box h3{
	font-size: 3.4rem;
	line-height: 1;
	color: #0c2323;
	font-weight: 600;
	margin: 1rem 0 2rem;
}

.start_here_area .icon_box p{
	font-size: 2.5rem;
}



/* ---------------- Safe area ------------------ */

.safe_area{
	background-color: #d0e1da;
	padding: 5rem 0;
}

.safe_area .content{
	background-color: #fff;
	border-radius: 1rem;
	padding: 4rem 7rem 10rem 7rem;
	max-width: 146rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 3.7rem;
}

.safe_area .plus{
	width: 13.3rem;
	margin-bottom: 5rem;
}

.safe_area h2{
	color: #132540;
	font-size: 9.6rem;
}

.safe_area ul{
	list-style: disc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 5rem 0 6rem;
}



/* ---------------- testimonial area ------------------ */

.testimonial_area{
	background-color: #d0e1da;
	padding-bottom: 7rem;
}

.testimonial_area .row{
	--bs-gutter-x: 5.5rem;
}

.testimonial_area .title{
	padding: 5rem 0 4rem;
	border-top: .3rem solid #000000;
}

.testimonial_area .title h2{
	font-size: 5rem;
	font-weight: 700;
}

.testimonial_card{
	text-align: center;
	padding: 6rem 5.5rem;
	border-radius: .8rem;
	background-color: #fff;
}

.testimonial_card .client{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 16rem;
	height: 16rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.testimonial_card .rating{
	width: 20rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 4rem;
	margin-bottom: 3rem;
}

.testimonial_card p{
	font-size: 2.8rem;
	line-height: 1.7;
}

.testimonial_card h3{
	font-size: 2.6rem;
	font-weight: 700;
	margin-top: 2.5rem;
}



/* ---------------- thank you area ------------------ */

.thank_you_area{
	background: url(../img/bg3.jpg) no-repeat center;
	background-size: cover;
	padding: 5rem 0;
}

.thank_you_area .content{
	background-color: #fff;
	border-radius: 1rem;
	text-align: center;
	padding: 4rem;
}

.thank_you_area .icon{
	width: 13rem;
}

.thank_you_area h2{
	font-size: 12rem;
	margin: 4rem 0;
}

.thank_you_area .button{
	font-size: 3.4rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	background-color: #7edbb6;
	padding: 1.5rem 9rem;
	border-radius: 1rem;
	margin-top: 6rem;
	transition: 200ms;
}

.thank_you_area .button:hover{
	background-color: #61a389;
}