/* ---------------- Basic css ------------------ */

html{
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
	--headingFont: 'Montserrat', sans-serif;
	--bodyFont: 'Open 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;
	transition: 200ms;
	color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	color: rgb(0, 0, 0, 0.7);
	font-family: var(--bodyFont);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	overflow-x: hidden;
}

body.dark{
	background: #081F2D;
	color: rgb(255, 255, 255, 0.7);
}

.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}


/* Title */

.title_xxl{
	position: relative;
	color: #FFF;
	font-family: var(--headingFont);
	font-size: 5.9rem;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	z-index: 99;
}

.title_md{
	color: #020202;
	font-family: var(--headingFont);
	font-size: 2.3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
}

.dark .title_md{
	color: #fff;
}

.title_sm{
	color: rgb(0, 0, 0, 0.5);
	font-family: var(--headingFont);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.dark .title_sm{
	color: rgb(255, 255, 255, 0.5);
}

.text_sm{
	font-size: 1.4rem;
	line-height: 120%; /* 16.8px */
}


/* -------------- preloader --------------- */

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dark #preloader{
	background: #081F2D;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: #081F2D;
	animation: loader3 1.5s linear infinite;
}

.dark .loader3 span{
	background: #fff;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}



/* ---------------- Header ------------------ */

.site_header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100vw;
	padding: 2rem 0;
}

.navbar{
	padding: 2rem;
	border-radius: .4rem;
	background: #F8F8F8;
	box-shadow: 0 -.2rem 6.2rem rgba(0, 0, 0, 0.06);
}

.navbar_logo{
	display: inline-block;
	width: 25rem;
}

/* menu */
.menu {
	display: flex;
	align-items: center;
	gap: 0 6.4rem;
	margin-right: 14.3rem;
}

.menu li a {
	color: #000;
	font-family: var(--headingFont);
	/*font-size: 1.2rem;*/
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.menu li a:hover{
	color: #026fa2;
}


/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: #000;
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	transition: all 0.3s ease;
}

.hamburger-menu .line-top {
	transform: translateY(-100%);
}

.hamburger-menu .line-bottom {
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	transform: translateY(-325%) rotate(-135deg);
}



.dark_mood{
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	background-color: #EFEDED;
	border: none;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 300ms;
}

.dark_mood:hover{
	background: #E9EAEB;
}

.dark_mood:active{
	background: #ffffff;
}

.dark .dark_mood{
	background: #000;
}

.dark_mood img{
	width: 1.6rem;
}

.dark .dark_mood img{
	filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(7465%) hue-rotate(277deg) brightness(104%) contrast(103%);
}

.dark_mood img:nth-child(2){
	display: none;
}

.dark .dark_mood img:nth-child(1){
	display: none;
}

.dark .dark_mood img:nth-child(2){
	display: block;
}



/* ---------------- Hero section ------------------ */

.hero_section{
	padding: 27.4rem 0;
	/*
	background-color: #081F2D;
	*/
	background: url(../img/hero-img.png) center top repeat-x;
	background-position: 25% 75%;
	background-size: cover;
	position: relative;
}
.hero_section:before {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}




.hero_section .title_xxl span{
	color: #026fa2;
}

.hero_img1{
	position: absolute;
	top: 0;
	right: 0;
	width: 62.3rem;
}

.hero_img2{
	position: absolute;
	left: 0;
	top: 31rem;
	width: 39rem;
	display: none;
}



/* ---------------- Journey section ------------------ */

.journey_section{
	padding-top: 12.5rem;
}

.journey_imgs{
	padding: 7rem 0 5rem;
	overflow: hidden;
}

.journey_imgs img{
	margin-right: 1.5rem;
	width: 10.1rem;
}

.journey_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.journey_box .circle{
	width: 69.6rem;
	height: 69.6rem;
	border-radius: 50%;
	background: #E9EAEB;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.dark .journey_box .circle{
	background: #434b52;
}

.journey_box .title_xxl{
	color: #000;
	font-size: 17.3rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.dark .journey_box .title_xxl{
	color: #fff;
}

.journey_box .circle p{
	font-size: 1.9rem;
	padding-top: 1.7rem;
}

.dark .journey_box .circle p{
	color: #fff;
}

.journey_box .content{
	width: 56rem;
	border-radius: .8rem;
	background: #FFF;
	box-shadow: -3.6rem 3.8rem 20rem 0 rgba(0, 0, 0, 0.15);
	padding: 8rem 5.3rem 9.3rem 3.4rem;
}

.dark .journey_box .content{
	background: #53636C;
}

.journey_box1{
	align-items: start;
}

.journey_box1 .content{
	margin-top: 14rem;
}

.journey_box2{
	margin-top: -22rem;
	margin-bottom: -10.8rem;
	align-items: start;
}

.journey_box2 .content{
	width: 52.8rem;
	padding: 9rem 4rem 7.3rem 10.7rem;
	margin-top: 25.5rem;
}

.journey_box2 .circle{
	width: 70.9rem;
	height: 70.9rem;
	border: 1.7rem solid #026fa2;
	background: #081F2D;
	color: #fff;
}

.journey_box2 .title_xxl{
	color: #fff;
}

.journey_box3 .circle{
	width: 58.4rem;
	height: 58.4rem;
	margin-left: 5.6rem;
}

.journey_box3 .title_xxl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
	margin-bottom: -1rem;
}

.journey_box3 .title_xxl .num{
	font-size: 17.3rem;
}

.journey_box3 .title_xxl .text{
	display: inline-block;
	padding-top: 2rem;
	font-size: 7.3rem;
}


/* ---------------- partners section ------------------ */

.partners_section{
	padding: 9.6rem 0;
}





/* ---------------- services section ------------------ */

.service_card{
	width: 30rem;
	display: block;
	border-radius: .8rem;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	border: 1px solid #EFEDED;
	box-shadow: 0 -.2rem 6.2rem 0 rgba(0, 0, 0, 0.06);
	margin-right: 3.2rem;
}

.dark .service_card{
	border-color: #081F2D;
}

.service_card::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: .8;
	transition: all 300ms ease;
}

.dark .service_card::before{
	background-color: #081F2D;
	opacity: .6;
}

.service_card:hover::before{
	background-color: #081F2D;
}

.service_card .bg_img{
	width: 10%;
}

.service_card .title_md{
	position: absolute;
	left: 0;
	width: 100%;
	min-height: 5.6rem;
	text-align: center;
	bottom: 2.6rem;
	color: #A1A1A1;
	transition: all 300ms ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service_card:hover .title_md{
	color: #fff;
}




/* ---------------- travel products section ------------------ */

.travel_products_section{
	padding: 4rem 0 14rem;
}

.travel_products_section .inner{
	background-color: #fff;
	border: 1px solid #EFEDED;
	box-shadow: 0 -.2rem 6.2rem rgba(0, 0, 0, 0.06);
	border-radius: .8rem;
	padding: 2.2rem;
}

.dark .travel_products_section .inner{
	background: rgba(255, 255, 255, 0.30);
}

.travel_products_section img{
	width: 100%;
	border-radius: .8rem;
}

.travel_products_section .content{
	padding-right: 20rem;
	padding-left: 2rem;
}

.travel_products_section .title_md{
	color: rgb(0, 0, 0, 0.4);
}

.dark .travel_products_section .title_md{
	color: rgba(255, 255, 255, 0.4);
}

.travel_products_section .title_xxl{
	font-size: 3.9rem;
	color: #000000;
	padding-top: 0.8rem;
	padding-bottom: 9rem;
}

.dark .travel_products_section .title_xxl{
	color: #fff;
}



/* ---------------- advantage section ------------------ */

.advantage_section .section_content{
	padding: 11rem;
	border-radius: 3.2rem;
	background: #081F2D;
}

.dark .advantage_section .section_content{
	background-color: #ffffff2e;
}

.advantage_box{
	background: rgba(255, 255, 255, 0.30);
	border: 1px solid #EFEDED;
	box-shadow: 0 -.2rem 6.2rem rgba(0, 0, 0, 0.06);
	border-radius: 3.2rem;
	padding-top: 3.7rem;
	padding-left: 2.7rem;
	padding-right: 2.7rem;
	padding-bottom: 4rem;
}

.advantage_box .img{
	width: 100%;
	border: 1px solid #EFEDED;
	border-radius: 3.2rem;
}

.advantage_box .title_md{
	color: #fff;
}

.advantage_box p{
	color: rgb(255, 255, 255, 0.6);
}

.advantage_box1{
	padding-top: 2.5rem;
	padding-bottom: 5.7rem;
}

.advantage_box1 .title_md{
	padding: 5rem 0 2rem;
}

.advantage_box2 .img{
	margin: 3.7rem 0 1.8rem;
}

.advantage_box3{
	padding-bottom: 6rem;
}

.advantage_box3 .img{
	margin: 1.7rem 0 .7rem;
}

.advantage_box4 .img{
	margin: 1.7rem 0 3rem;
}




/* ---------------- Our brand section ------------------ */

.our_brand_section{
	padding: 9.6rem 0 11rem;
}



/* ---------------- details section ------------------ */

.details_section .title_box a{
	color: #020202;
	font-size: 1.2rem;
}

.details_section .title_box a:hover{
	color: #026fa2;
}

.details_box{
	background: linear-gradient(0deg, #E9EAEB 0%, #E9EAEB 100%);
	border: 1px solid #EFEDED;
	box-shadow: 0 -.2rem 6.2rem rgba(0, 0, 0, 0.06);
	padding: 4.5rem 2.3rem 4rem 2.8rem;
	border-radius: 3.2rem;
}

.dark .details_box{
	background: rgba(255, 255, 255, 0.30);
	border-color: rgba(255, 255, 255, 0.20);
}

.details_box .title_md{
	min-height: 5.6rem;
	padding-bottom: 1.9rem;
}


/* ---------------- footer section ------------------ */
.footer {
	background:#232a34;
	padding-bottom: 50px;
	padding-top: 80px;
}
.footer_menu {
	margin-bottom: 20px;
}
.footer_menu ul {
	list-style: none;
	text-align: center;
}
.footer_menu ul li{display: inline-block;}
.footer_menu ul li a {
	color:#fff;
	padding: 0 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer_menu ul li a:hover{color:#554c86;}

/*START FOOTER SOCIAL DESIGN*/
.footer_profile{margin-bottom:40px;}
.footer_profile ul{
	list-style: outside none none;
	margin: 0;
	padding: 0
}
.footer_profile ul li{
	display: inline-block;
}
@media only screen and (max-width:480px) {
	.footer_profile ul li{margin:2px;}
}
.footer_profile ul li a img{width:60px;}

.footer_profile ul li a {
	background: #554c86;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	margin-right: 5px;
	border-radius: 50%;
	line-height: 40px;
	box-sizing: border-box;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	color: #fff;
}
.footer_copyright {
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #fff;
}

.site_footer{
	padding: 9rem 0 7rem;
}

.footer_logo{
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

.footer_logo img{
	width: 15rem;
}

.dark .footer_logo img{
	filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(7465%) hue-rotate(277deg) brightness(104%) contrast(103%);
}

.footer_widget{
	padding: 4rem 0 14.5rem;
}

.site_footer .title_sm{
	color: #000;
	font-size: 1.5rem;
	line-height: 150%; /* 22.5px */
}

.dark .site_footer .title_sm{
	color: #fff;
}

.footer_link li{
	margin-top: 2rem;
}

.footer_link a{
	color: #000;
	font-size: 1.5rem;
	line-height: 150%; /* 22.5px */
}

.footer_link a:hover{
	color: #026fa2;
}

.dark .footer_link a{
	color: #c5c5c5;
}

.dark .footer_link a:hover{
	color: #fff;
}

.copyright p{
	font-family: 'Mulish', sans-serif;
}

.social_links{
	display: flex;
	align-items: center;
	gap: 0 3rem;
}

.dark .copyright p{
	color: #c5c5c5;
}

.social_links a{
	display: inline-block;
	width: 2.4rem;
}

.social_links a:hover{
	opacity: .7;
}

.social_links a img{
	width: 100%;
}

.social_links a img{
	filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(7465%) hue-rotate(277deg) brightness(104%) contrast(103%);
}