*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
	font-family: "Figtree", sans-serif !important;
}

.section-title{
	color: var(--tone-color);
	font-size: 36px;
	font-weight: 600;
	line-height: 50px;
}
@media (max-width: 500px) {
	.section-title{
		font-size: 25px;
		line-height: 30px;
	}
}


.divider{
  border-bottom: solid 2px white;
  margin: 15px 0
}
.content-link{
	color: #4a4a4a !important;
  text-decoration: none;
}
a{
}
a.tone-link{
	color: var(--tone-color) !important;
}
a.tone-link:hover{
	color: var(--tone-dark);
}
a.hoverable{
	cursor: none;
}
a.decorated:hover{
	text-decoration: underline !important;
}
.btn{
	max-width: 100%;
	padding: 8px 15px;
    font-family: "Figtree", sans-serif !important;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
	gap: 8px;
	transition: all 0.3s;
}
.btn-cookies{
	max-width: 100%;
	padding: 8px 15px;
   font-family: "Figtree", sans-serif !important;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
	gap: 8px;
	background-color: transparent;
	border: solid 1px white;
	color: white;
	
}
.btn.btn-tone{
	background-color: var(--tone-color);
	border: solid 1px var(--tone-color);
	color: white;
}
.btn.btn-tone:hover{
	background-color: #031B41;
	border: solid 1px #031B41;
	color: white;
}
.btn.btn-white{
	background-color: white;
	border: solid 1px white;
	color: var(--tone-color);
}
.btn-sm{
	padding: 4px 8px;
	font-size: 14px;
}
.btn-lg{
	padding: 14px 35px;
	font-size: 18px;
}
.btn-block{
	width: 100%;
}
@media (max-width: 500px) {
	.align-items-center.mobile-start{
		justify-content: flex-start !important;
	}
	.mouse-cursor{
		display: none !important;
	}
}

.text-editor-content p{
	margin-block-start: 0;
	margin-block-end: 0;
}
.text-editor-content h1{
	font-size: 28px !important;
	font-weight: 800;
}
.text-editor-content h2{
	font-size: 22px !important;
	font-weight: 700;
}
.text-editor-content ul{
	list-style: disc !important;
	padding-left: 20px;
}


/*********************************************/
/******************NAVIGATION*****************/
/*********************************************/
.main-nav{
	background-color: white;
	border-bottom: solid 1px #E4E4E4;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.main-nav .container{
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-nav .nav-brand{
	margin-top: 10px;
}
.main-nav .nav-items{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 25px;
}
.main-nav .nav-items .nav-item a{
	font-weight: 600;
	font-size: 16px;
	color: var(--dark);
}
.main-nav .menu-toggler{
	display: none;
}
.mobile-menu{
	padding: 80px 25px;
	background-color: white;
	border-bottom: solid 1px #252525;
	top: -100%;
	left: 0;
	width: 100%;
	position: fixed;
	z-index: 98;
	height: 100vh;
	transition: all 0.6s;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: space-between;
}
.mobile-menu.active{
	top: 0;
}
.mobile-menu .menu-item{
	padding: 10px 0;
}
.mobile-menu .menu-item a{
	color: var(--dark);
	font-size: 28px !important;
}
@media (max-width: 992px) {
    .main-nav .nav-items{
		display: none;
	}
	.main-nav .menu-toggler{
		display: block;
	}
}



/*********************************************/
/******************HOME*****************/
/*********************************************/
.main-hero{
	margin-top: 50px;
	background-size: cover;
	position: relative;
	height: 650px;
	 background-position: 50% 50% ;
}
.main-hero .overlay{
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(83deg, rgb(0 0 0 / 50%) 31.52%, rgb(0 0 0 / 0%) 73.82%);
}
.main-hero h1{
	font-size: 70px;
	line-height: 70px;
	font-weight: 700;
}
.main-hero p{
	font-size: 25px;
}
.hero-bg-shape{
	  background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
}
.hero-feature{
	display: flex;
	align-items: center;
}
@media (min-width: 1600px) {
	.main-hero{
		 background-position: 50% 30% ;
	}
}
@media (max-width: 500px) {
	.hero-feature{
		margin-bottom: 15px;
		text-align: center;
		display: block;
		align-items: center;
	}
	.menu-section ul{
		margin-top: -100px;
		list-style: none;
	}
	.hero-bg-shape{
	  background-color: white;
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}
}
@media (max-width: 992px) {
	.main-hero h1{
		font-size: 32px;
		line-height: 40px;
		font-weight: 800;
	}
	.main-hero{
		background-position: 50% 50% !important;
		margin-top: 50px;
		padding: 80px 0;
		height: 450px;
	}
	.main-hero p{
		font-size: 18px;
	}
	.main-hero .btn{
		margin-bottom: 15px;
	}
	.main-hero .overlay{
		background: linear-gradient(355deg, rgba(0, 0, 0, 0.38) 106.52%, rgba(0, 0, 0, 0.00) 92.82%)
	}
}

.section-hero{
	margin-top: 50px;
	background-size: cover;
	position: relative;
	height: 350px;

}
.section-hero .overlay{
	display: flex;
	align-items: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(355deg, rgba(0, 0, 0, 0.38) 4.52%, rgba(0, 0, 0, 0.00) 95.82%);
		padding-bottom: 25px;
}
.section-hero h1{
	color: white;
	font-size: 40px;
	line-height: 50px;
	font-weight: 800;
}
@media (max-width: 500px) {
	.section-hero{
		height: 200px;
	}
	.section-hero h1{
		font-size: 30px;
	}
}
/*S1*/
.s1{
	padding: 120px 0;
}
.s3, .s5{
	padding: 80px 0;
}
@media (max-width: 500px) {
	.s1{
		padding: 20px 0 40px 0 ;
	}
}
@media (max-width: 1200px) {
	.menu-section ul{
		flex-direction: column;
	}
}



/*********************************************/
/******************SERVICES****************/
/*********************************************/
.service-card{
	border: solid 1px #B9B9B9;
	border-radius: 25px;
	padding: 15px;
}

.service-card .title-card{
	border-radius: 25px;
	padding: 15px;
	color: white;
	font-size: 20px;
	margin-top: -40px;
}

.service-card .service-card-content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 260px;
}
@media (max-width: 1409px) {
	.service-card .service-card-content{
		height: 315px;
	}
}
@media (max-width: 1215px) {
	.service-card .title-card{
		font-size: 16px;
	}
	.service-card .service-card-content{
		height: 380px;
	}
}
@media (max-width: 992px) {
	.service-card .title-card{
		font-size: 18px;
	}
	.service-card .service-card-content{
		display: block;
		height: unset;
	}
	.service-card{
		margin-bottom: 45px;
	}
}


/*********************************************/
/*********************BLOG********************/
/*********************************************/
.blog-card{
	background-size: cover;
	border-radius: 20px;
	height: 300px;
	position: relative;
	margin-bottom: 15px;
}
.blog-card .overlay{
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	padding: 15px;
	background: linear-gradient(355deg, rgba(0, 0, 0, 0.38) 4.52%, rgba(0, 0, 0, 0.00) 95.82%);
	display: flex;
	align-items: flex-end;
}
@media (max-width: 500px) {
	.blog-card{
		height: 215px;
	}
}


.home-contact{
	display: flex;
	border-radius: 20px;
}
.home-contact .left-side{
	width: 800px;
	padding: 20px;
	border-radius: 20px 0 0 20px;
	background-size: cover;
}
.home-contact .contact-quote{
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}
.home-contact .contact-divider{
	width: 80px;
	height: 3px;
	background-color: white;
	margin: 10px 00;
}
.home-contact .right-side{
	width: 100%;
}
.home-contact .hand-image{
	position: absolute; top: -150px; right: 15px
}
@media (max-width: 500px) {
	.home-contact{
		display: block;
	}
	.home-contact .left-side{
		display: none;
	}
	.home-contact .hand-image{
	    position: absolute;
	    top: -162px;
	    right: -135px;
	    transform: rotate(45deg);
	}
}

/*********************************************/
/******************ABOUT US*****************/
/*********************************************/

.about-me-content{
	 padding-left: 85px; 
	 padding-bottom: 80px;
}
@media (max-width: 992px) {
	.about-me-image{
		 margin-bottom: 15px;
	}
	.about-me-content{
		 padding-left: 0px; 
		 padding-bottom: 80px;
	}
}
@media (max-width: 1200px) {
	.menu-section ul{
		flex-direction: column;
	}
}


.pagination-link{
	border-radius: 0px !important;
	border: none !important;
}
.pagination-link.is-current{
	background-color: var(--tone-color) !important;
	color: white !important;
}




/*********************************************/
/******************CALCULATOR*****************/
/*********************************************/
.ma-card{
	border-radius: 20px;
	padding: 25px;
}


.field.is-floating-in-label .label{
	font-weight: 400 !important;
	font-family: "Figtree", sans-serif !important;
	color: #474747 !important;
}

.b-checkbox.checkbox.button{
	height: 52px !important;
}
.switch input[type=checkbox]:checked+.check{
	background: var(--tone-color) !important;
}
.input, .select select{
	border-radius: 10px !important;
}


footer{
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 80px 0;
	background-color: #FFFAF5 ;
}
footer.not-absolute{
	position: unset !important;
}
footer .big-title{
	font-size: 26px;
	font-weight: 600;
}
footer a{
	font-size: 16px;
	color: var(--tone-color);
}
footer a:hover{
	text-decoration: underline;
}
.tag{
	display: inline-block;
	border-radius: 20px;
	border: solid 1px var(--border-grey);
	padding: 12px 15px;
}
.social-icon{
	display: inline-block;
	border-radius: 50%;
	border: solid 1px var(--border-grey);
	padding: 8px 10px;
}





/*******************************/
/************MOUSE-*************/
/*******************************/
.mouse-cursor {
  background-color: var(--tone-color);
  width: 10px;
  height: 10px;
  position: fixed;
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white
}
.mouse-cursor.hoverable {
  width: 40px;
  height: 40px;
  background-color: rgba(209, 69, 69, 0.712);
}
.pointer{cursor: pointer;}


/**COOKIE BANNER**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 15px;
	width: 600px;
	padding: 15px;
	border-radius: 10px;
	background-color: var(--dark-border-grey);
	color: white;
	max-width: 90%;
	margin: auto;
	z-index: 99;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		/*left: 25px;
		right: unset;
		bottom: 25px;*/
	}
}
