/* ---------------- Google fonts ------------------ */

@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

@font-face {
	font-family: "BodoniFLF";
	src: url("../fonts/BodoniFLF-Roman.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* ---------------- Basic css ------------------ */


html {
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
	--pt-sans: "PT Sans", sans-serif;
}

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-family: var(--pt-sans);
	font-size: 2.3rem;
	line-height: 1.66;
	color: #22344f;
	font-weight: 400;
	background: #efefef;
}

/* container */
.container {
	padding-left: 15px;
	padding-right: 15px;
}

/* button */

.button {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 4rem;
	border: 1px solid #fff;
	padding: 1.9rem 3.1rem;
	font-size: 2.1rem;
	color: #fff;
	font-family: var(--pt-sans);
	letter-spacing: 0.04rem;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: 400ms;
	-o-transition: 400ms;
	transition: 400ms;
}

.button .arrow {
	width: 2.5rem;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

/* Hover */

.button:hover {
	border-color: #f9b233;
	color: #fff;
}

.button::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	-webkit-transition: 500ms;
	-o-transition: 500ms;
	transition: 500ms;
	background: #f9b233;
	z-index: -1;
}

.button:hover::before {
	width: 100%;
}


/* button gold */

.button_gold{
	background: #f9b233;	
	border-color: #f9b233;	
}

.button_gold:hover{
	border-color: #22344f;
}

.button_gold::before{
	background: #22344f;
}


/* button dark */

.button_dark{
	background: #22344f;	
	border-color: #22344f;	
}

.button_dark:hover{
	border-color: #f9b233;
}

.button_dark::before{
	background: #f9b233;
}


/* button_dark_outline */

.button_dark_outline{
	background: transparent;
	border-color: #22344f;	
	color: #22344f;	
}

.button_dark_outline .arrow{
	-webkit-filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(3589%) hue-rotate(177deg) brightness(91%) contrast(91%);
	        filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(3589%) hue-rotate(177deg) brightness(91%) contrast(91%);
}

.button_dark_outline:hover{
	color: #fff;
	border-color: #22344f;
}

.button_dark_outline::before{
	background: #22344f;
}

.button_dark_outline:hover .arrow{
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7483%) hue-rotate(320deg) brightness(98%) contrast(107%);
	        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7483%) hue-rotate(320deg) brightness(98%) contrast(107%);
}


/* Title */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--pt-sans);
}

.title_xxl{
	font-size: 10.4rem;
	line-height: 1;
	color: #22344f;
}

.title_xl {
	color: #22344f;
	font-size: 7.4rem;
}

/* Background image */

.bg_size {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.bg_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.bg_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 5s;
	-o-transition: 5s;
	transition: 5s;
}

/* Aos Zoom animation Customize */

[data-aos^="zoom"][data-aos^="zoom"].aos_custom {
	-webkit-transform: translateZ(0) scale(1) !important;
	        transform: translateZ(0) scale(1) !important;
	-webkit-transition-duration: 7s !important;
	     -o-transition-duration: 7s !important;
	        transition-duration: 7s !important;
}

[data-aos^="zoom"][data-aos^="zoom"].aos_custom.aos-animate {
	opacity: 1 !important;
	-webkit-transform: translateZ(0) scale(1.15) !important;
	        transform: translateZ(0) scale(1.15) !important;
}

[data-aos^="zoom"][data-aos^="zoom"].aos_custom {
	opacity: 1 !important;
	-webkit-transition-property: -webkit-transform !important;
	transition-property: -webkit-transform !important;
	-o-transition-property: transform !important;
	transition-property: transform !important;
	transition-property: transform, -webkit-transform !important;
}


[data-aos^="fade"][data-aos^="fade"] {
	opacity: 1 !important;
	overflow: hidden;
}

.aos-parent{
	overflow: hidden;
}


/* -------------- preloader --------------- */

#preloader {
	position: fixed;
	background: #efefef;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999999999;
	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;
}

.preloader_logo {
	width: 10.8rem;
	display: block;
	margin: auto;
}

#preloader p {
	font-size: 2rem;
	padding: 1rem 0 1.5rem;
}

.spinner-box {
	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;
	background-color: transparent;
}

.pulse-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 0.8rem;
}

.pulse-bubble {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: #22344f;
}

.pulse-bubble-1 {
	-webkit-animation: pulse 0.4s ease 0s infinite alternate;
	animation: pulse 0.4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
	-webkit-animation: pulse 0.4s ease 0.2s infinite alternate;
	animation: pulse 0.4s ease 0.2s infinite alternate;
}

.pulse-bubble-3 {
	-webkit-animation: pulse 0.4s ease 0.4s infinite alternate;
	animation: pulse 0.4s ease 0.4s infinite alternate;
}

@-webkit-keyframes pulse {
	from {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0.25;
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
}

@keyframes pulse {
	from {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0.25;
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
}

/* -------------- Back to top ------------ */

.back-to-top {
	width: 5rem;
	height: 5rem;
	line-height: 4.4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	border-radius: 50%;
	background: #f9b232;
	z-index: 111;
}

.back-to-top:hover:not(:active) {
	background: rgb(4, 40, 37);
}

.back-to-top img {
	width: 2.2rem;
	-webkit-transform: rotate(355deg);
	-ms-transform: rotate(355deg);
	transform: rotate(355deg);
	margin-left: -0.2rem;
}

/* ---------------- Header Section Start ------------------ */

.site_header {
	position: relative;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	max-width: 100vw;
}

.visible_header{
	position: sticky;
}

.navbar {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	padding: 2rem 0 0.2rem;
}

.navbar .line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #fff;
	display: none;
	-webkit-animation: lineGrow 1.5s linear 700ms forwards;
	animation: lineGrow 1.5s linear 700ms forwards;
}

@-webkit-keyframes lineGrow {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes lineGrow {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.site_logo {
	display: inline-block;
	width: 10.8rem;
}

.site_logo img {
	width: 100%;
}

/* Navbar Scroll */

.navbar_scroll {
	position: fixed;
	left: 0;
	top: -100%;
	width: 100%;
	padding: 1.2rem 0;
	background: #efefef;
	z-index: 11;
	-webkit-box-shadow: 0 0 1rem rgb(0, 0, 0, 0.16);
	box-shadow: 0 0 1rem rgb(0, 0, 0, 0.16);
	-webkit-transition: 700ms;
	-o-transition: 700ms;
	transition: 700ms;
}

.navbar_scroll.sticky {
	top: 0;
}

.visible_header .navbar_scroll{
	position: relative;
	top: 0;
}

.navbar_scroll .site_logo {
	width: 7.5rem;
}

.menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	gap: 0 3rem;
}

.menu>li>a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 2rem;
	text-transform: capitalize;
	font-weight: 400;
	font-family: var(--pt-sans);
	position: relative;
	display: inline-block;
}

.menu>li>a:hover,
.menu>li>a.show {
	color: #22344f;
}

.menu>li>a:active {
	color: #22344f;
}

.menu>li>a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0.2rem;
	border-radius: 4rem;
	background: #f9b232;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.menu>li>a img{
	width: 1.8rem;
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
	margin-top: -0.3rem;
}


/* dropdown menu */

.dropdown_menu{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	width: 20rem;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	border: none;
	text-align: center;
	padding: 1.8rem;
	z-index: 1;
	background: #fff;
	margin-top: 2rem;
	display: none;
}

/* dropdown menu expand for desktop */
@media (min-width: 992px){
	
	.dropdown:hover>a::before {
		width: 100%;
	}

	.dropdown:hover>a + .dropdown_menu{
		display: block;
	}

}

/* dropdown menu expand for Tablet and mobile */
@media (max-width: 991px){

	.dropdown.show>a::before{
		width: 100%;
	}

	.dropdown.show>a img{
		-webkit-transform: rotate(-180deg);
			-ms-transform: rotate(-180deg);
				transform: rotate(-180deg);
	}
	
	.dropdown.show>a + .dropdown_menu{
		display: block;
	}

}

.dropdown_menu::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 2rem;
	z-index: -1;
	background-color: transparent;
}

.dropdown_menu a{
	display: block;
	font-size: 2rem;
	text-transform: capitalize;
	font-weight: 400;
	font-family: var(--pt-sans);
	padding: 0;
	background: transparent;
}

.dropdown_menu a:hover{
	background: transparent;
	color: #f9b232;
}

.dropdown_menu a:not(:last-child){
	margin-bottom: .6rem;
}


/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: #22344f;
	width: 3rem;
	height: 0.3rem;
	display: block;
	margin: 0.5rem 0;
	border-radius: 4rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger-menu .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/* --------- Header Section End ------------ */

/* ---------- Hero Section start ------------- */

.hero_section {
	padding: 58rem 0 9.5rem;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	overflow: hidden;
	position: relative;
}

.hero_section h4 {
	font-size: 4.9rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 0.4rem;
}

.hero_section h2 {
	font-size: 8.1rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.62rem;
	padding-bottom: 3.5rem;
}

/* ---------- Hero Section End ------------- */

/* ---------- Our about section Start ------------- */

.our_about_section{
	position: relative;
	padding: 9rem 0 12rem;
}

.our_about_content a {
	text-decoration: underline;
}

.our_about_content a:hover {
	color: #f9b233;
}

.our_about_content p {
	padding-left: 8.5rem;
	padding-top: 3.5rem;
	color: #22344f;
}

.our_about_section .img_box {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 11rem);
	height: 100%;
}

.our_about_section .img_box img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.our_about_section .img_box h4 {
	position: absolute;
	left: 4.5rem;
	bottom: 13.5rem;
	font-size: 3.5rem;
	font-family: "BodoniFLF";
	color: #fff;
	line-height: 1.21;
	text-transform: uppercase;
	letter-spacing: 0.4rem;
}

/* ---------- Our about section End ------------- */

/* ----------banner section Start ------------- */

.banner_section {
	position: relative;
	text-align: center;
	padding: 36rem 0;
	overflow: hidden;
}

.banner_section.v1{
	padding: 29rem 0;
}

.banner_section h2 {
	font-size: 12.3rem;
	color: #efefef;
	line-height: 1.2;
}

/* ----------banner section End ------------- */

/* ---------- Continue reading section Start ------------- */

.continue_reading_section {
	padding: 9.4rem 0 14rem;
}

.continue_reading_section [data-aos^="fade"][data-aos^="fade"]{
	overflow: unset;
}

.continue_reading_section .title {
	color: #f9b232;
	font-size: 6.2rem;
	line-height: 1;
}

.continue_reading_section .title_md {
	font-size: 3.8rem;
	color: #22344f;
	line-height: 1;
	padding-top: 8rem;
}

.continue_reading_boxs_row {
	--bs-gutter-x: 6.6rem;
}

.continue_reading_box {
	padding: 4.5rem 2rem 4rem 2rem;
	text-align: center;
	border: 1px solid #042825;
	margin-top: 2.4rem;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.continue_reading_box:hover {
	-webkit-transform: translateX(-0.5rem) translateY(-1rem);
	-ms-transform: translateX(-0.5rem) translateY(-1rem);
	transform: translateX(-0.5rem) translateY(-1rem);
	-webkit-box-shadow: 1rem 1rem #22344f;
	box-shadow: 1rem 1rem #22344f;
}

.continue_reading_box .icon img {
	width: auto;
	height: 12.7rem;
	margin-bottom: 3.3rem;
}

.continue_reading_box p {
	font-size: 2.6rem;
}

/* ---------- Continue reading section End ------------- */

/* ---------- statistics section Start ------------- */

.statistics_section {
	padding: 9.5rem 0 21rem;
	overflow: hidden;
	position: relative;
}

.statistics_section .row {
	--bs-gutter-x: 7rem;
}

.statistics_section .title_xl {
	color: #fff;
}

.statistics_section .box {
	position: relative;
	z-index: 1;
	min-height: 46rem;
	text-align: center;
	border: 1px solid #fff;
	margin-top: 10rem;
	padding-top: 12rem;
	padding-bottom: 2rem;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	overflow: hidden;
	cursor: auto;
}

.statistics_section .box::before {
	content: "";
	position: absolute;
	left: 100%;
	top: 100%;
	width: 70rem;
	height: 70rem;
	border-radius: 40%;
	background: #fff;
	-webkit-transition: 600ms;
	-o-transition: 600ms;
	transition: 600ms;
	z-index: -1;
}

.statistics_section .box:hover::before {
	left: -10rem;
	top: -10rem;
}

.statistics_section .box h3 {
	font-size: 8.2rem;
	color: #fff;
	line-height: 1;
	padding-bottom: 1.3rem;
	-webkit-transition: 700ms;
	-o-transition: 700ms;
	transition: 700ms;
}

.statistics_section .box:hover h3 {
	color: #f9b232;
}

.statistics_section .box p {
	max-width: 20rem;
	margin: auto;
	font-size: 2.7rem;
	color: #fff;
	line-height: 1.5;
	-webkit-transition: 700ms;
	-o-transition: 700ms;
	transition: 700ms;
}

.statistics_section .box:hover p {
	color: #22344f;
}



.statistics_section .boxs{
	padding: 0 12rem;
}


.statistics_section .box_v1{
	min-height: 52.5rem;
	padding-top: 16rem;
}

.statistics_section .box_v1 .icon{
	width: 16.7rem;
	height: 14rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: auto;
	margin-bottom: 1rem;
}

.statistics_section .box_v1 .icon img{
	-webkit-transition: 100ms;
	-o-transition: 100ms;
	transition: 100ms;
}

.statistics_section .box_v1:hover .icon img{
	-webkit-filter: brightness(0) saturate(100%) invert(16%) sepia(11%) saturate(2910%) hue-rotate(177deg) brightness(97%) contrast(89%);
	        filter: brightness(0) saturate(100%) invert(16%) sepia(11%) saturate(2910%) hue-rotate(177deg) brightness(97%) contrast(89%);
}

/* ---------- statistics section End ------------- */



/* ---------- behind section Start ------------- */

.behind_section {
	padding: 12rem 0 9.5rem;
}

.behind_section .row {
	--bs-gutter-x: 2.2rem;
}

.behind_section .icon_box {
	margin-top: 7.3rem;
	border: 1px solid #042825;
	text-align: center;
	padding: 6rem 0;
	min-height: 57rem;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.behind_section .icon_box:hover {
	-webkit-transform: translateX(-0.5rem) translateY(-1rem);
	-ms-transform: translateX(-0.5rem) translateY(-1rem);
	transform: translateX(-0.5rem) translateY(-1rem);
	-webkit-box-shadow: 1rem 1rem #22344f;
	box-shadow: 1rem 1rem #22344f;
}

.behind_section .icon_box .icon {
	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;
	height: 21rem;
	margin-bottom: 7rem;
}

.behind_section .icon_box .icon3 {
	width: 35.5rem;
}

.behind_section .icon_box .box_body {
	padding: 0 5rem;
}

.behind_section .icon_box h4 {
	font-size: 2.6rem;
	line-height: 1.5;
	padding-bottom: 1.8rem;
}

.behind_section .icon_box p {
	font-size: 2.2rem;
	line-height: 1.66;
}




/* radial progress */

.progress_radial {
	position: relative;
	text-align: center;
	width: 35rem;
	height: 17.5rem;
	overflow: hidden;
	z-index: 1;
}

.progress_radial .bar_dark {
	position: absolute;
	top: 0;
	left: 0;
	width: 35rem;
	height: 35rem;
	/* full circle! */
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 2.2rem solid transparent;
	/* half gray, */
	border-bottom-color: #22344F;
	/* half azure */
	border-right-color: #22344F;
}

.progress_radial .bar_gold {
	position: absolute;
	top: 0;
	left: 0;
	width: 35rem;
	height: 35rem;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 2.2rem solid #F9B232;
	z-index: -1;
}

.progress_radial .progress_parseInt{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: 0;
	font-size: 5rem;
	line-height: 1;
}




/* progress line */

.progress_line{
	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;
}

.progress_line .bars{
	position: relative;
	width: 29rem;
	height: 2.2rem;
}

.progress_line .bar_gold{
	width: 100%;
	height: 100%;
	background: #F9B232;
}

.progress_line .bar_dark{
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #22344F;
	z-index: 1;
}

.progress_line .progress_parseInt{
	font-size: 5rem;
	line-height: 1;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 1.2rem;
}







/* ---------- successes section Start ------------- */

.successes_section {
	padding: 9.5rem 0 13.5rem;
}

.successes_section .row {
	--bs-gutter-x: 11.5rem;
}

.successes_icon_box{
	margin-top: 22.5rem;
}

.successes_icon_box .icon {
	margin-bottom: 4.5rem;
	min-height: 22rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.successes_icon_box .icon1 {
	width: 33.7rem;
}

.successes_icon_box .icon2 {
	width: 31.2rem;
}

.successes_icon_box .icon3 {
	width: 34.2rem;
}

.successes_icon_box h4 {
	font-size: 2.6rem;
	line-height: 1.5;
	padding-bottom: 1.8rem;
}

.successes_icon_box p {
	font-size: 2.2rem;
	line-height: 1.66;
}

/* ---------- successes section End ------------- */

/* ---------- contact person section Start ------------- */

.contact_person_section {
	position: relative;
	padding: 9rem 0;
}

.contact_person_section .img_box {
	position: absolute;
	left: 0;
	top: 0;
	width: calc(50% - 15.3rem);
	height: 100%;
}

.contact_person_section .img_box img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.contact_person_section .img_box h3 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 9.5rem;
	font-size: 6.6rem;
	line-height: 1;
	color: #fff;
}

.person_card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 5.2rem 0;
	position: relative;
}

.person_card .line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #22344f;
	-webkit-transition: 2s;
	-o-transition: 2s;
	transition: 2s;
}

.person_card.aos-animate .line {
	width: 100%;
}

.person_card h4 {
	font-size: 2.6rem;
	color: #22344f;
	line-height: 1.5;
}

.person_card p {
	font-size: 2.2rem;
	line-height: 1.66;
}

.person_card .button {
	width: 22rem;
	padding: 1.3rem 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-color: #22344f;
	color: #22344f;
	font-size: 2.3rem;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0.1rem;
}

.person_card .button:hover {
	color: #fff;
}

.person_card .button::before {
	background: #22344f;
}

/* ---------- contact person section End ------------- */

/* ---------- contact section Start ------------- */

.contact_section {
	position: relative;
	padding: 13rem 0 22rem;
	overflow: hidden;
}

.contact_section .title_xl {
	font-size: 9.5rem;
	color: #fff;
}

.contact_section .lead {
	font-size: 2.8rem;
}

.contact_section ul li {
	margin-top: 4rem;
}

.contact_section ul p {
	font-size: 2.6rem;
	line-height: 1.5;
}

.contact_section ul a:hover {
	color: inherit;
	text-decoration: underline;
}

/* ---------- contact section End ------------- */

/* ---------- Footer section Start ------------- */

footer {
	padding: 3rem 0;
}

.footer_logo {
	display: inline-block;
	width: 10.8rem;
}

.footer_content {
	padding-left: 3.5rem;
}

footer h5 {
	font-weight: 700;
}

footer h5,
footer p {
	font-size: 2.3rem;
	line-height: 1.66;
	color: #22344f;
}

footer a:hover {
	color: #f9b232;
}

/* ---------- Footer section End ------------- */





/* cookieBox start */

.cookieBox {
	position: fixed;
	bottom: 3rem;
	right: -100vw;
	max-width: 36rem;
	width: 100%;
	background: #fff;
	border-radius: .8rem;
	padding: 1.5rem 2.5rem 2.2rem;
	-webkit-transition: right 1s ease;
	-o-transition: right 1s ease;
	transition: right 1s ease;
	-webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
	        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
	z-index: 113;
}

.cookieBox.show {
	right: 2rem;
}

.cookieBox .top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 1.2rem;
}

.cookieBox .top h2{
	font-size: 2.2rem;
	color: #f9b232;
}

.cookieBox .top img{
	width: 2.2rem;
}

.cookieBox p{
	font-size: 1.8rem;
	line-height: 1.2;
	padding: 1.5rem 0 2rem; 
}

.cookieBox p a{
	text-decoration: underline;
}

.cookieBox p a:hover{
	color: #cb9228;
}

.cookieBox .buttons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 1rem;
}

.cookieBox .button{
	width: 50%;
	line-height: 1;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	font-size: 1.8rem;
}

.cookieBox .button_gold:hover{
	background: #df9f29;
	border-color: #df9f29;
}

.cookieBox .button_dark:hover{
	background: #000;
	border-color: #000;
}

.cookieBox .button::before{
	display: none;
}

/* cookieBox End */






/* ---------- dream home hero section start ------------- */

.dream_home_hero_section{
	position: relative;
	min-height: calc(100vh - 8.5rem);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.dream_home_hero_content{
	position: relative;
	padding: 30rem 0 13.5rem;
}

.dream_home_hero_section .logo{
	position: absolute;
	left: 0;
	top: 4rem;
	width: 11rem;
}

.dream_home_hero_section h2{
	padding-bottom: 12rem;
}

.dream_home_hero_section h2 span{
	display: inline-block;
	padding-bottom: 1rem;
}

.dream_home_hero_section .main_img{
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 5rem);
	height: 100%;
}

.dream_home_hero_section .main_img img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}




/* ---------- dream home hero section End ------------- */



/* ---------- product section start ------------- */

.product_section{
	padding: 10rem 0;
}

.product_section .row{
	--bs-gutter-x: 5rem;
}

.product_card{
	margin-top: 4rem;
}

.product_img{
	display: block;
	overflow: hidden;
	margin-bottom: 3.9rem;
}

.product_img img{
	width: 100%;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.product_card:hover .product_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.product_content{
	border-width: 1px 0;
	border-color: #22344f;
	border-style: solid;
	padding: 2.8rem 0;
	text-align: center;
}

.product_content h4{
	font-size: 3rem;
	line-height: 1;
	color: #22344f;
	font-weight: 700;
	padding: 1.4rem 0 2rem;
}

.product_content p{
	font-size: 2rem;
	line-height: 1.5;
	color: #22344f;
	font-weight: 400;
}

/* ---------- product section End ------------- */




/* ---------- contact section v1 Start ------------- */

.contact_section_v1{
	padding: 13rem 0 9.5rem;
}

.contact_section_v1 ul{
	padding-top: 6rem;
}

/* ---------- contact section v1 End ------------- */





/* ---------- contact main section Start ------------- */

.contact_main_section{
	padding: 7.5rem 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


.contact_info_list{
	padding: 3.5rem 0 1.7rem;
}

.contact_info_list li:not(:last-child){
	margin-bottom: 1.5rem;
}

.contact_info_list a{
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 1.2rem;
	font-size: 2.1rem;
	color: #22344F;
}

.contact_info_list a:hover{
	color: #e0a435;
}

.contact_info_list a img{
	width: 4rem;
}

.opening_time{
	padding-left: 5.2rem;
	padding-bottom: 5rem;
}

.opening_time p{
	font-size: 2.1rem;
	padding-bottom: 0.5rem;
}

.opening_time ul{
	padding-left: 2.7rem;
}

.opening_time ul li{
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-grid-columns: 12rem auto;
	grid-template-columns: 12rem auto;
	font-size: 1.8rem;
	line-height: 1.4;
}


.contact_form{
	max-width: 51.5rem;
	margin-left: 1.5rem;
}

.input_box,
.textarea{
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #848080;
	font-size: 2.1rem;
	font-style: italic;
	color: #22344F;
}

.input_box::-webkit-input-placeholder, .textarea::-webkit-input-placeholder{
	opacity: 1;
	color: #22344F;
}

.input_box::-moz-placeholder, .textarea::-moz-placeholder{
	opacity: 1;
	color: #22344F;
}

.input_box:-ms-input-placeholder, .textarea:-ms-input-placeholder{
	opacity: 1;
	color: #22344F;
}

.input_box::-ms-input-placeholder, .textarea::-ms-input-placeholder{
	opacity: 1;
	color: #22344F;
}

.input_box::placeholder,
.textarea::placeholder{
	opacity: 1;
	color: #22344F;
}

.textarea{
	resize: none;
	height: 15rem;
}

.contact_form .row{
	--bs-gutter-y: 3.7rem;
}

.contact_form button{
	border: none;
	background: transparent;
	color: #22344F;
	font-size: 2.1rem;
	padding: .6rem 3rem;
	cursor: pointer;
}

.contact_form button:hover{
	color: #e0a435;
}

.contact_main_img{
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 6rem);
	height: 100%;
}

.contact_main_img img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.contact_form .aos-parent{
	padding-bottom: 0.1rem;
}

/* ---------- contact main section End ------------- */



/* ---------- portal section Start ------------- */

.portal_section{
	padding: 7.3rem 0 6.3rem;
	position: relative;
}

.portal_section .sub_title{
	padding: 6.3rem 0 2.5rem;
}

.portal_section .sub_title a:hover{
	color: #df9f29;
}

.checkmark_list{
	padding-left: 1.8rem;
}

.checkmark_list li span{
	display: block;
	background: url(../img/checkmark.png) no-repeat left center;
	background-size: 2.7rem auto;
	padding-left: 4rem;
}

.portal_section .button{
	margin-top: 3.7rem;
}

.portal_img {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 6rem);
	height: 100%;
}

.portal_img img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/* ---------- portal section End ------------- */



/* ---------- employee section Start ------------- */

.employee_section{
	padding: 4rem 0 8rem;
	font-size: 1.9rem;
	line-height: 1.66;
}

.employee_inner_section{
	padding: 0 3rem;
}

.employee_section .title_box{
	padding-bottom: 5.5rem;
}

.employee_section h4{
	font-size: 4rem;
	color: #22344F;
	padding-bottom: .7rem;
}

.list_content_box:not(:last-child){
	padding-bottom: 5.5rem;
}

.list_content_box h5{
	font-size: 2.6rem;
	color: #22344F;
}

.list_content_box ul{
	padding-left: 2.2rem;
}

.list_content_box ul li{
	list-style: disc;
}

.employee_section .button{
	width: 29.5rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 1.3rem;
	margin-left: 1rem;
}

.employee_section  .rotate_title{
	position: absolute;
	top: 47%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	    -ms-transform: translateY(-50%) rotate(-90deg);
	        transform: translateY(-50%) rotate(-90deg);
	right: -16rem;
	font-size: 13.4rem;
	color: #FFFFFF;
	opacity: 0.35;
}

/* ---------- employee section End ------------- */





/* ---------- position section Start ------------- */

.position_section{
	padding: 7.5rem 0 13rem;
}

.position_section .person_card_wrapper{
	padding: 0 11.2rem;
}

.person_card.v1{
	padding: 4.5rem 0 2.8rem;
	gap: 0 5.2rem;
}

.person_card.v1 small{
	display: block;
	font-size: 1.9rem;
	margin-bottom: 2.2rem;
}

.person_card.v1 .button{
	width: 22rem;
}

.shrink-0{
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.position_section  .rotate_title {
    position: absolute;
    top: 58%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
    right: -34rem;
    font-size: 16.4rem;
    color: #FFFFFF;
    opacity: 0.35;
}

/* ---------- position section End ------------- */



/* ---------- Footer v1 Section Start ------------- */

.footer_v1_section{
	text-align: center;
	padding: 7rem 0 5rem;
}

.footer_v1_section .logo{
	display: inline-block;
	width: 13rem;
	margin-bottom: 1rem;
}

.footer_v1_section .title_xl{
	font-size: 4.8rem;
	letter-spacing: .8rem;
	text-transform: uppercase;
	font-weight: 600;
	color: #1C3F60;
}

.footer_v1_section .links{
	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;
	padding-top: 0.5rem;
	padding-bottom: 3.5rem;
	text-transform: uppercase;
	font-size: 2rem;
	letter-spacing: .5rem;
	font-weight: 400;
}

.footer_v1_section .links a{
	color: #40506F;
}

.footer_v1_section a:hover{
	color: #df9f29;
}

.footer_v1_section .links span{
	display: inline-block;
	margin: 0 2rem;
}

.footer_v1_section p{
	font-size: 2rem;
	line-height: 1.66;
	color: #22344F;
}

.footer_v1_section .bottom_links{
	font-size: 2rem;
	line-height: 1.66;
}

.footer_v1_section .bottom_links a{
	color: #22344F;
}

.footer_v1_section .bottom_links a:hover{
	color: #df9f29;
}

/* ---------- Footer v1 Section End ------------- */



/* ---------- Footer v2 Section Start ------------- */

.footerv2_section {
	padding: 6rem 0;
	border-top: 1px solid #848080;
}

.footerv2_section .logo{
	width: 16rem;
	display: block;
}

.footerv2_section h4{
	font-size: 3rem;
	color: #22344F;
	text-transform: capitalize;
	padding-bottom: 2rem;
}

.footerv2_section ul a{
	display: inline-flex;
	align-items: center;
	font-size: 2rem;
	gap: 0 1rem;
}

.footerv2_section ul a img{
	width: 2rem;
	flex-shrink: 0;
}

/* ---------- Footer v2 Section End ------------- */




/* ---------- privacy policy section ------------- */

.privacy_policy_section{
	padding: 4rem 0;
}

.privacy_policy_content{
	width: 100%;
	max-width: 135rem;
	margin: auto;
}

.privacy_policy_section .title_xl{
	text-transform: capitalize;
	font-size: 6rem;
	padding-bottom: 3rem;
}

.privacy_policy_section h4{
	font-size: 2.4rem;
	padding-bottom: 0.5rem;
}

.privacy_policy_section p{
	font-size: 2rem;
}

.privacy_policy_section .pb_20{
	padding-bottom: 2rem;
}





/* Checkbox */

.checkbox{
	padding-top: 1.4rem;
}

.checkbox input{
	opacity: 0;
	position: absolute;
}

.checkbox label{
	display: inline-block;
	position: relative;
	line-height: 1.2;
	font-size: 2.1rem;
	padding-left: 3.8rem;
	cursor: pointer;
	user-select: none;
}

.checkbox label::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid #22344F;
}

.checkbox input:checked + label::before{
	background: url(../img/check-mark.png) no-repeat center;
	background-size: 1.6rem auto;
}

.checkbox a{
	text-decoration: underline;
}

.checkbox a:hover{
	color: #f9b232;
}


.step_form_page .checkbox{
	padding-top: 0;
}

.step_form_page .checkbox label{
	font-size: 1.6rem;
	padding-left: 2.6rem;
}

.step_form_page .checkbox label::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid #22344F;
}

.step_form_page .checkbox input:checked + label::before{
	background: url(../img/check-mark.png) no-repeat center;
	background-size: 1.2rem auto;
}






/* ----------------- Team page Css Start ---------------- */

.team_section{
	padding: 10rem 0;
}

/* Tab nav */

.teamTab{
	display: block;
	padding: 4rem 0 1.5rem;
	margin-bottom: 3.5rem;
	overflow: auto;
	text-align: center;
	text-wrap: nowrap;
}

.teamTab li{
	display: inline-block;
	margin: 0 .2rem;
}

.teamTab a{
	display: inline-block;
	padding: .8rem 1.6rem;
	font-size: 2rem;
	line-height: 1;
	text-transform: capitalize;
	background: #fff;
	color: #22344f;
	letter-spacing: .15rem;
}

.teamTab a:hover,
.teamTab a.active{
	color: #fff;
	background: #e0a435;
}


/* col */

.row.team_cards_wrapper{
	--bs-gutter-x: 4rem;
	--bs-gutter-y: 4rem;
	justify-content: center;
}

.team_cards_wrapper .col{
	width: 20%;
	flex-shrink: 0;
	flex-grow: unset;
}



.team_section .fade {
	transition: opacity 100ms linear;
}


/* Card */

.team_card{
	text-align: center;
}

.team_card_img{
	max-width: 100%;
	width: 26rem;
	height: 26rem;
	margin: auto;
	overflow: hidden;
}

.team_card_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 200ms ease;
}

.team_card:hover .team_card_img img{
	transform: scale(1.1);
}

.team_card h3{
	font-size: 2.7rem;
	text-transform: capitalize;
	padding-top: 1.2rem;
	color: #22344f;
}

.team_card .job{
	font-size: 1.8rem;
	color: #df9f29;
}

.team_card .contact_info{
	font-size: 2rem;
	line-height: 1.6;
	padding-top: .6rem;
}

.team_card .contact_info a:hover{
	color: #df9f29;
}

/* ----------------- Team page Css End ---------------- */
