body {
	font-family: "Onest", serif;
}

.container {
	max-width: 1136px;
	width: 100%;
	padding: 0 16px;
	margin: 0 auto;
}

.banner {
	background: #DDFAFF;
	padding: 200px 0 85px 0;
}

.banner h1 {
	color: #103644;
	font-family: Onest;
	font-size: 68px;
	font-style: normal;
	font-weight: 600;
	line-height: 64px;
	letter-spacing: -1.36px;
	text-align: center;
}

.banner h1 span {
	color: #22D3EE;
	display: block;
}

.banner p {
	color: #103644;
	text-align: center;
	font-family: Onest;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.banner .container{
	display: flex;
	flex-direction: column;
	gap:18px;
	max-width: 600px;
}
.search-form {
	background-color: #fff;
	margin: auto;
	height: 64px;
	display: flex;
	justify-content: space-between;
	padding: 8px;
	border-radius: 32px;
	width: 100%;
}
.search-form .input{
	border: none;
	outline: none;
	flex: 1;
	color: rgba(16, 54, 68, 0.60);
	font-family: Onest;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; 
	padding: 0 20px;
}
.search-form .input::placeholder{
	color: rgba(16, 54, 68, 0.60);
}
.search-form button{
	width: 88px;
	padding: 12px 16px;
	border-radius: 100px;
	background: #0E3543;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	transition: 0.3s;
}
.search-form button:hover{
	transform: scale(1.05);
	background:#22D3EE; 
}
.or {
	text-align: center;
	position: relative;
}
.or::before{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #1036441A;
	position: absolute;
	left: 0;	
	top: calc(50% - 0.5px);
}
.or span{
	color: #103644;
	text-align: center;
	font-family: Onest;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	background-color:#DDFAFF;
	display: inline-block;
	position: relative;
	padding: 0 8px;
	border-radius: 12px;
}
.main-button{
	display: flex;
	height: 46px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.30);
	background: #22D3EE;
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px; 
	transition: 0.3s;
	padding: 0 16px;
}
.main-button:hover{
	background-color:#103644;
	color:#fff;
}
.header {
	position: absolute;
	width: 100%;
	margin-top: 24px;
	z-index: 5;
}
.header .header-box{
	display: flex;
	height: 80px;
	padding: 16px;
	justify-content: space-between;
	align-items: center;
	border-radius: 100px;
	background: linear-gradient(180deg, #0A2934 0%, #0E3543 100%);
}
.header .header-box .logo{
	transition: 0.3s;
}
.header .header-box .logo:hover{
	transform: scale(1.03);
}
.header .header-box .menu{
	display: flex;
	gap: 24px;
}
.header .header-box .menu a{
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px; 
	transition: 0.2s;
}
.header .header-box .menu a:hover{
	color:#22D3EE;
	transform: scale(1.03);
}

.locations .swiper-slide a{
	display: flex;
	align-items: center;
	gap: 12px;
	color: #103644;
	text-align: center;
	font-family: Onest;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px; 
	transition: 0.4s;
}
.locations .swiper-slide{
	max-width: 300px;
	width: auto;
}
.locations .swiper-slide a svg{
	transition: 0.4s;
	fill: #103644;
	opacity: 0.1;
}
.locations .swiper-slide a:hover{
	color:#22D3EE;
}
.locations .swiper-slide a:hover svg{
	transform: scale(1.05);
	fill: #22D3EE;
	opacity: 1;
}
.title{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.title.center{
	text-align: center;
	align-items: center;
}
.title h2 span{
	color: #22D3EE;
	display: block;
}
.title h2{
	color: #103644;
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
}
.title p{
	color: #103644;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
	max-width: 600px;
	opacity: 0.8;
}
.main-button-outline{
	display: flex;
	height: 46px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 100px;
	border: 1px solid #103644;
	background-color: #fff;
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px; 
	transition: 0.3s;
	padding: 0 16px;
}
.main-button-outline:hover{
	background-color: #103644;
	color: #fff;
}
.section-head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 48px;
}
.popular-tours .tour-boxes{
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.vertical-box{
	flex: 1;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	transition: 0.4s;
}
.vertical-box img{
	transition: 0.4s;
	width: 100%;
}
.vertical-box .text{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(16, 54, 68, 0.00) 47.82%, #103644 100%);
	display: flex;
	align-items: flex-end;
	padding: 24px 16px;
}
.vertical-box .text h1{
	color: #FFF;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px; 
	transition: 0.4s;
}
.vertical-box .text p{
	transition: 0.4s;
}
.vertical-box:hover{
	transform: translateY(-10px);
}
.vertical-box:hover  img{
	transform: scale(1.2);
}
.vertical-box:hover .text h1,.vertical-box:hover .text p{
	transform: scale(0.8);
}
section[type="normal"]{
	padding: 48px 0;
}

.route-reservation-price .container{
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.route-reservation-price .left,.route-reservation-price .right{
	max-width: 545px;
	width: 100%;
}
.route-reservation-price .right{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.route-tour-box{
	border: 1px solid #E5E7EB;
	height: 518px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.placeholder-box{
	display: flex;
	width: 302px;
	padding: 7.415px 7.264px 8.083px 7.264px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 15.285px;
	border-radius: 19.363px;
	border: 1.044px solid rgba(16, 54, 68, 0.10);
	background: linear-gradient(90deg, #FFF 100%, rgba(16, 54, 68, 0.50) 100%);
	position: absolute;
	z-index: 1;
}
.placeholder-box .image{
	border-radius: 12.909px;
	background: rgba(16, 54, 68, 0.05);
	height: 142px;
	width: 100%;
}
.line{
	width: 89.584px;
	border-radius: 12.909px;
	background: rgba(16, 54, 68, 0.05);
	height: 16.993px;
}
.placeholder-box-1{
	top: -77px;
	left: -180px;
}
.placeholder-box-2{
	top: -77px;
	left: 120px;
}
.placeholder-box-3{
	top: -77px;
	right: -180px;
}
.placeholder-box-4{
	top: 145px;
	left: -180px;
}
.placeholder-box-5{
	top: 145px;
	right: -180px;
}
.placeholder-box-6{
	bottom: -77px;
	left: -180px;
}
.placeholder-box-7{
	bottom: -77px;
	left: 120px;
}
.placeholder-box-8{
	bottom: -77px;
	right: -180px;
}
.route-boxes{
	position: relative;
	max-width: 298px;
	width: 100%;
	height: 223px;
	z-index: 2;
}
.route-box{
	width: 100%;
	border-radius: 16.52px 16.52px  19px 19px;
	background: #FFF;
	box-shadow: 0px 0px 28.645px 0px rgba(0, 0, 0, 0.10);
	padding: 7.283px;
	position: absolute;
	transform: scale(0);
	transition: 0.5s;
	display: flex;
	flex-direction: column;
}
.route-box.active{
	transform: scale(1);
	position: relative;
}
.route-box.active:hover{
	transform: scale(1.1);
}
.route-box img{
	border-radius: 15px;
	margin-bottom: 15px;
	width: auto;
	height: 138px;
}
.route-box h3,.route-box h4{
	padding: 4.5px 9px;
	color: #103644;
	font-size: 15.013px;
	font-weight: 600;
	line-height: 20.018px; 
}
.route-box h4{
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 4px;
}
.route-box h4 span{
	color: #103644;
	font-size: 7.507px;
	font-weight: 400;
	line-height: normal;
}
.route-reservation-price h3.text{
	color: #103644;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 32px; 
}
.route-tour-box .text{
	position: absolute;
	z-index: 4;
	bottom: 38px;
}
.route-tour-box::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0px 0px 55px 78px inset #ffffff;
	z-index: 1;
}
.best-price{
	width: 100%;
	border-radius: 24px;
	border: 1px solid #E5E7EB;
	background: rgba(255, 255, 255, 0.05);
	height: 243px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.best-price .text{
	z-index: 4;
	position: absolute;
	bottom: 38px;
}
.best-price ul{
	display: flex;
	gap: 57px;
	z-index: 4;
}
.best-price ul li{
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.best-price ul li .icon{
	width: 48px;
	height: 48px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	box-shadow: 0px -9px 17.9px -5px rgba(255, 255, 255, 0.50) inset;
	display: flex;
	justify-content: center;
	align-items: center;
}
.best-price ul li h4{
	color: #103644;
	text-align: center;
	font-size: 10px;
	font-weight: 400;
}
.best-price ul li .icon-logo{
	display: inline-flex;
	height: 89px;
	padding: 6px;
	justify-content: center;
	align-items: flex-end;
	border-radius: 100px 100px 6px 6px;
	background: #103644;
	position: relative;
	transition: 0.4s;
}
.best-price ul li .icon-logo .ico{
	display: flex;
	width: 100%;
	height: 15px;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, 0.20);
	background: #22D3EE;
	box-shadow: 0px -9px 17.9px -5px rgba(255, 255, 255, 0.50) inset;
	position: absolute;
	bottom: -0px;
	transition: 0.6s;
}
.best-price ul li .icon-logo .ico svg{
	transform: scale(0);
	transition: 0.6s;
}
.best-price ul li:nth-child(2){
	margin-top: -40px;
}
.best-price ul li .icon-logo span{
	color: #FFF;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	transform: scale(0);
	transition: 0.6s;
}
.best-price ul li .icon-logo.active .ico{
	border-radius: 50%;
	height: 64px;
	bottom: 40px;
}
.best-price ul li .icon-logo.active .ico svg{
	transform: scale(1);
}
.best-price ul li .icon-logo.active span{
	transform: scale(1);
}
.best-price:hover ul li .icon-logo.active{
	transform: scale(1.1);
}
.best-price:hover ul li .icon-logo.active .ico{
	transform: rotate(360deg);
}
.best-price .rounded-box{
	position: absolute;
	width: 100%;
	height: 100%;
}
.best-price .rounded-box span{
	position: absolute;
	display: flex;
	border-radius: 100%;
	background: linear-gradient(90deg, #FFF 100%, rgba(16, 54, 68, 0.50) 100%);
	box-shadow: 0px 4px 18px 0px rgba(16, 54, 68, 0.10);
	transition: 1s;
	
}
.best-price .rounded-box span.rounded-1{
	width: 485px;
	height: 485px;
	left: calc(50% - 242px);
	top: -430px;
	z-index: 2;
}
.best-price .rounded-box span.rounded-2{
	width: 644px;
	height: 644px;
	left: calc(50% - 322px);
	top: -505px;
	z-index: 1;
}
.best-price .rounded-box span.rounded-3{
	width: 815px;
	height: 815px;
	left: calc(50% - 407px);
	top: -555px;
}
.best-price .rounded-box span{
	transform:  translateY(500px) scale(0);   
}
.best-price.active .rounded-box span{
	transform:  translateY(0) scale(1);  
}

.revervation{
	height: 243px;
	border-radius: 24px;
	border: 1px solid #E5E7EB;
	background: rgba(16, 54, 68, 0.02);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.revervation .rounded-box{
	width: 572px;
	height: 451px;
	border-radius: 572px;
	background: #FFF;
	box-shadow: 0px 4px 18px 0px rgba(16, 54, 68, 0.10);
	position: absolute;
	top: 0;
	left: -15px;
}
.revervation form{
	border-radius: 16px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	display: flex;
	width: 258px;
	padding: 8px;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	z-index: 2;
	position: relative;
}
.revervation form input{
	width: 100%;
	border-radius: var(--radius-8, 8px);
	border: 1px solid rgba(16, 54, 68, 0.10);
	height: 36px;
	background: #FFF;
	padding: 12px;
	color: rgba(16, 54, 68, 0.50);
	font-size: 10px;
	font-weight: 400;
	line-height: 12px; 
}
.revervation form input::placeholder{
	color: rgba(16, 54, 68, 0.50);
}
.revervation form button{
	font-size: 12px;
	height: 36px;
	position: absolute;
	bottom: -18px;
}
.revervation  .text{
	z-index: 4;
	position: absolute;
	bottom: 38px;
}
.revervation .rounded-box img{
	border-radius: 50%;
	position: absolute;
}
.revervation .rounded-box img.image-1{
	top: 80px;
	left: 15px;
}
.revervation .rounded-box img.image-2{
	top: 30px;
  left: 60px;
}
.revervation .rounded-box img.image-3{
	top: 30px;
  right: 60px;
}
.revervation .rounded-box img.image-4{
	top: 80px;
	right: 15px;
}
.route-reservation-price:hover .best-price  .rounded-box span{
	transform:  translateY(500px) scale(0.9); 
}
.tour-list{
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	row-gap: 48px;
}
.tour-box{
	min-width: 345px;
	max-width: 345px;
	width: 100%;
	flex: 1;
	transition: 0.4s;
	transform: scale(1);
}
.tour-box img{
	margin-bottom: 24px;
	transition: 0.4s;
}
.tour-box h3{
	color: #103644;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px; 
	margin-bottom: 12px;
	transition: 0.4s;
}
.tour-box h4{
	color: #103644;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	
}
.tour-box h4 span{
	font-size: 12px;
	font-weight: 400;
}
.tour-box:hover img{
	transform: scale(1.05);
}
.tour-box:hover h3{
	color: #22D3EE;
}
.privileges{
	padding: 70px 0;
}
.privileges .privile-boxes{
	margin-top: 45px;
	display: flex;
	flex-wrap: wrap;
	background-image: url('/assets/images/star.svg'), url('/assets/images/star.svg');
	background-position: left center, right center;
	background-repeat: no-repeat, no-repeat;
	position: relative;
}
.privileges .privile-boxes::after{
	content: '';
	position: absolute;
	top: calc(50% - 0.5px);
	left: 34.5px;
	width:calc(50% - 52px);
	height: 1px;
	background-color: rgba(16, 54, 68, 0.10);
	z-index: 1;
}
.privileges .privile-boxes::before{
	content: '';
	position: absolute;
	top: calc(50% - 0.5px);
	right: 34.5px;
	width:calc(50% - 52px);
	height: 1px;
	background-color: rgba(16, 54, 68, 0.10);
	z-index: 1;
}
.privileges .privile-boxes .privile-box{
	width: 50%;
	display: flex;
	padding: 32px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;	
	position: relative;
}
.privileges .privile-boxes .privile-box .icon{
	display: flex;
	width: 48px;
	height: 48px;
	padding: 12px;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	border: 2px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	transition: 0.4s;
}
.privileges .privile-boxes .privile-box:hover .icon{
	transform: scale(1.1);
}
.privileges .privile-boxes .privile-box .text{
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}
.privileges .privile-boxes .privile-box .text h5{
	color: #103644;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
}
.privileges .privile-boxes .privile-box .text p{
	color: #103644;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
	opacity: 0.8;
}
.privileges .privile-boxes .privile-box:nth-child(1){
	background: linear-gradient(107deg, #ffffff00 38.53%, #F0F5F7 100%);
	border-radius: 0px 0px 20px 0px;
}
.privileges .privile-boxes .privile-box:nth-child(2){
	border-radius: 0px 0px 0px 20px;
	background: linear-gradient(73deg, #F0F5F7 0%, #ffffff00 61.47%);
}
.privileges .privile-boxes .privile-box:nth-child(2):before{
	content: '';
	width: 1px;
	height: 150px;
	background-color: rgba(16, 54, 68, 0.10);
	position: absolute;
	left: -0.5px;
	bottom: 17px;
}
.privileges .privile-boxes .privile-box:nth-child(3){
	border-radius: 0px 20px 0px 0px;
	background: linear-gradient(107deg, #ffffff00 38.53%, #F0F5F7 100%);
}
.privileges .privile-boxes .privile-box:nth-child(4){
	border-radius: 20px 0px 0px 0px;
	background: linear-gradient(73deg, #F0F5F7 0%, #ffffff00 61.47%);
}
.privileges .privile-boxes .privile-box:nth-child(4):before{
	content: '';
	width: 1px;
	height: 150px;
	background-color: rgba(16, 54, 68, 0.10);
	position: absolute;
	left: -0.5px;
	top: 17px;
}
.home-blog{
	padding: 70px 0;
}
.blog-list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 32px;
	gap: 32px;
}
.blog-box{
	flex: 1;
	min-width: 345px;
	max-width: 345px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.blog-box img{
	margin-bottom: 12px;
	transition: 0.4s;
}
.blog-box .blog-date{
	color: rgba(16, 54, 68, 0.40);
	font-size: 14px;
	font-weight: 400;
}
.blog-box h4{
	color: #103644;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px; 
	transition: 0.4s;
}
.blog-box p{
	color: rgba(16, 54, 68, 0.70);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px; 
}
.blog-button{
	display: flex;
	justify-content: center;
	margin-top: 44px;
}
.blog-box:hover h4{
	color:#22D3EE;
}
.blog-box:hover img {
	transform: scale(1.05) translateY(-5px);	
}
.questions{
	padding: 70px 0;
}
.questions .question-boxes{
	margin-top: 32px;
	display: flex;
	gap: 32px;
}
.questions .question-boxes .left, .questions .question-boxes .right{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.questions .question-boxes .question-box{
	border-radius: 24px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: 0.4s;
}
.questions 	.question-boxes .question-box .content{
	display: none;
	padding: 0 24px 24px 24px;
	background-color: #103644;
	margin-top: -5px;
}
.questions .question-boxes .question-box button{
	display: flex;
	background-color: #fff;
	padding: 24px;
	color: #103644;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	justify-content: space-between;
	text-align: left;
	align-items: center;
}
.questions .question-boxes .question-box button span{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	font-size: 30px;
	font-weight: 100;
	transition: 0.4s;
}
.questions .question-boxes .question-box button:hover span{
	transform: scale(1.1);
}

.questions .question-boxes .question-box .content p{
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
}
.questions .question-boxes .question-box.active{
	border-color: #103644;
}
.questions .question-boxes .question-box.active button{
	background-color: #103644;
	color: #fff;
}
.questions .question-boxes .question-box.active .content{
	display: block;
}
.questions .question-boxes .question-box.active button span{
	border-color: rgba(255, 255, 255, 0.30);
	transform: rotate(45deg);
}

.footer{
	background: #DDFAFF;
	padding: 148px 0;
}
.footer > .container{
	display: flex;
	justify-content: space-between;
}
.footer .left .logo{
	margin-bottom: 8px;
	display: block;
}
.footer .left p{
	overflow: hidden;
	color: rgba(16, 54, 68, 0.70);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px; 
	margin-bottom: 30px;
	max-width: 375px;
}
.contact-boxes{
	display: flex;
	gap: 12px;
}
.contact-box{
	display: flex;
	align-items: center;
	gap: 6px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	padding: 8px 14px 8px 8px;
	transition: 0.4s;
}

.contact-box .icon{
	width: 24px;
	height: 24px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
}
.contact-box h6{
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px; 
	text-decoration-line: underline;
	transition: 0.4s;
}
.contact-box:hover{
	background-color: #22D3EE;
	border-color:  #22D3EE;
	transform: scale(1.05);
}
.contact-box:hover .icon{
	border-color:#22D3EE;
}
.footer .right{
	display: flex;
	gap: 88px;
}
.footer .right nav{
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.footer .right nav h3{
	color: #103644;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.footer .right nav a{
	color: #103644;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}
.footer .right nav a:hover{
	text-decoration: underline;
}
.copyright{
	width: 100%;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	display: flex;
	justify-content: space-between;
}
.copyright p{
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}
.copyright p a{
	color: #294b57;
	text-decoration: underline;
	font-weight: 600;
}
.popular-tours.page{
	padding-bottom: 0;
}
.popular-tours.page .section-head{
	margin-bottom: 0;
}
.popular-tours.page .swiper-wrapper{
	padding: 48px 0;
}
.popular-tours.page .swiper-slide{
	display: flex;
	align-items: flex-start;
	transition: 0.4s;
}
.navigation{
	display: flex;
	align-items: center;
	gap: 12px;
}
.navigation button{
	width: 36px;
	height: 36px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	transition: 0.4s;
}
.navigation button:hover{
	background-color: #22D3EE;
	width: 45px;
}
.tour-categories{
	display: flex;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 48px;
}
.tour-categories .select{
	display: flex;
	flex: 1;
	flex-direction: column;
	position: relative;
}
.tour-categories .select .select-button{
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 62px;
	border-radius: var(--radius-12, 12px);
	border: 1px solid rgba(16, 54, 68, 0.10);
	padding: 16px;
	transition: 0.3s;
}
.select-button:focus{
	box-shadow: 0px 0px 26px 0px #0000001c;
}
.tour-categories .select .select-button h1{
	text-align: left;
	color: rgba(16, 54, 68, 0.60);
	font-size: 12px;
	font-weight: 400;
	line-height: 12px; 
}
.tour-categories .select .select-button h1 span{
	display: block;
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px; 
	margin-top: 4px;
}
.tour-categories .select .select-button .icon{
	width: 20px;
	height: 20px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	display: flex;
	align-items: center;
	justify-content: center;
}
.tour-categories .select .select-list{
	position: absolute;
	top: 70px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	width: 50%;
	border-radius: var(--radius-12, 12px);
	overflow: hidden;
	z-index: 3;
	box-shadow: 0px 0px 26px 0px #0000001c;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transform: scale(0.5);
	transition: 0.3s;
}
.tour-categories .select .select-list.active{
	opacity: 1;
	z-index: 3;
	pointer-events: inherit;
	transform: scale(1);
	width: 100%;
}
.tour-categories .select .select-list ul{
	display: flex;
	flex-direction: column;
	max-height: 300px;
	overflow: auto;
}
.tour-categories .select .select-list ul li button{
	padding: 10px 15px;
	width: 100%;
	text-align: left;
	background-color: #fff;
	border-bottom: 1px solid  rgba(16, 54, 68, 0.10);
	transition: 0.4s;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tour-categories .select .select-list ul li button:after{
	content: '';
	width: 20px;
	height: 20px;
	background: url('../images/check.svg') no-repeat;
	transform: scale(0);
	transition: 0.4s;
	position: absolute;
	right: 15px;
}
.tour-categories .select .select-list ul li button.active::after{
	transform: scale(1);
}
.tour-categories .select .select-list ul li button:hover{
	background-color: #DDFAFF;
	border-color: transparent;
}
.tour-box.hidden{
	position: absolute;
	transition: 0s;
	opacity: 0;
	transform: scale(0);
}
.no-results{
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.lottie-search{
	width: 250px;
	height: 250px;
	background-color: #DDFAFF;
	border-radius: 50%;
	padding: 15px;
}
.no-results h4{
	font-weight: 600;
	font-size: 18px;
	margin-top: 15px;
	color: #103644;
	margin-bottom: 4px;
}
.no-results p{
	font-size: 14px;
	color: #103644;
	opacity: 0.8;
	max-width: 500px;
	line-height: normal;
}
.custom-tour{
	background: #DDFAFF;
	padding: 89px 0;
	overflow: hidden;
}
.custom-tour .container{
	display: flex;
	justify-content: space-between;
}
.custom-tour .left{
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
}
.custom-tour .left h1{
	color: #103644;
	font-size: 68px;
	font-weight: 600;
	line-height: 64px; 
	letter-spacing: -1.36px;
}
.custom-tour .left h1 span{
	color: #22D3EE;
	display: block;
}
.custom-tour .left p{
	color: #103644;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
	opacity: 0.8;
}
.custom-tour .right {
	display: flex;
	max-width: 680px;
	width: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
}
.custom-tour .right .logo-icon{
	display: flex;
	width: 138px;
	height: 138px;
	justify-content: center;
	align-items: center;
	border-radius: 115px;
	border: 1.15px solid rgba(255, 255, 255, 0.20);
	background: #22D3EE;
	box-shadow: 0px -10.35px 20.585px -5.75px rgba(255, 255, 255, 0.50) inset;
}
.custom-tour .right .logo-icon span{
	position: absolute;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(228, 228, 228, 0.00) 83.85%, rgba(34, 211, 238, 0.11) 100%);
	transform: scale(0);
	transition: 0.4s;
}
.custom-tour .right .logo-icon span[rounded-1]{
	width: 262.061px;
	height: 262.061px;
}
.custom-tour .right .logo-icon span[rounded-2]{
	width: 377.27px;
	height: 377.27px;
}
.custom-tour .right .logo-icon span[rounded-3]{
	width: 528.178px;
	height: 528.178px;
}
.custom-tour .right .logo-icon span[rounded-4]{
	width: 679.086px;
	height: 679.086px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(34, 211, 238, 0.11) 86%, rgba(228, 228, 228, 0.00) 100%);
}
.custom-tour .right .input-image{
	position: absolute;
	z-index: 2;
}
.custom-tour .right .input-image[input-1]{
	top: -84px;
}
.custom-tour .right .input-image[input-2]{
	top: -35px;
}
.custom-tour .right .input-image[input-3]{
	top: 15px;
}
.custom-tour .right .custom-img{
	position: absolute;
	border-radius: 50%;
	transform: scale(0);
	transition: 0.4s;
}
.custom-tour .right .custom-img[custom-img-1]{
	left: 60px;
  top: 60px;
}
.custom-tour .right .custom-img[custom-img-2]{
	left: 85px;
  top: 250px;
}
.custom-tour .right .custom-img[custom-img-3]{
	right: 60px;
  top: 50px;
}
.custom-tour .right .custom-img[custom-img-4]{
	right: 110px;
  top: 280px;
}
.custom-tour .right.active .logo-icon span{
	transform: scale(1);
}
.custom-tour .right.active .custom-img{
	transform: scale(1);
}
.custom-tour .right.active .custom-img[custom-img-1]{
	transition-delay: 0.2s;
}
.custom-tour .right.active .custom-img[custom-img-2]{
	transition-delay: 0.4s;
}
.custom-tour .right.active .custom-img[custom-img-3]{
	transition-delay: 0.6s;
}
.custom-tour .right.active .custom-img[custom-img-4]{
	transition-delay: 0.8s;
}
.custom-tour:hover .right.active .logo-icon span{
	transform: scale(1.2);
}
.custom-tour .right .logo-icon img{
	transition: 0.4s;
}
.custom-tour:hover .right.active .logo-icon img{
	transform: scale(1.1);
}
.custom-tour .right.active .logo-icon span[rounded-1]{
	transition-delay: 0.2s;
}
.custom-tour .right.active .logo-icon span[rounded-2]{
	transition-delay: 0.4s;
}
.custom-tour .right.active .logo-icon span[rounded-3]{
	transition-delay: 0.6s;
}
.custom-tour .right.active .logo-icon span[rounded-4]{
	transition-delay: 0.8s;
}
.popular-tours.page .vertical-box .text{
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	align-items: flex-start;
}
.popular-tours.page .vertical-box .text p{
	color: #fff;
	font-size: 12px;
	display: flex;
	align-items: center;
	gap:5px;
}
.popular-tours.page .vertical-box .text p b{
	font-size: 17px;
	font-weight: 700;
}
.banner.blog-detail .container{
	max-width: 950px;
}
.banner.blog-detail .container h1{
	line-height: 72px;
}
.main-page{
	padding: 48px 0;
}
.blog-detail-page .container{
	padding: 0 192px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
}
.blog-detail-page h3{
	color: #103644;
	font-size: 24px;
	font-weight: 600;
	line-height: 120%; 
}
.blog-detail-page p{
	color: #103644;
	font-size: 16px;
	font-weight: 400;
	line-height: 175%; 
}
.blog-detail-page .blog-social-publish{
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
} 
.blog-detail-page .blog-social-publish a{
	width: 42px;
	height: 42px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	display: flex;
	justify-content: center;
	align-items: center;
}
.blog-slider{
	margin-bottom: 48px;
}
.blog-slider .blog-box{
	min-width: 100%;
}
.blog-slider-button{
	display: flex;
	justify-content: center;
}
.main-page .blog-list{
	margin-top: 0;
}
.main-page.about{
	padding: 96px 0;
}
.about-top img{
	transition: 0.4s;
}
.main-page.about:hover .about-top img{
	transform:scale(1.05) rotateY(15deg);
}
.about-top{
	display: flex;
	justify-content: space-between;
	gap: 74px;
	margin-bottom: 48px;
}
.about-top .left{
	max-width: 550px;
	width: 100%;
}
.about-top .right{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 42px;
}
.about-top .left h3{
	color: #103644;
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 56px; 
}
.about-top .left h3 span{
	color: #22D3EE;
}
.about-top .right p{
	color: rgba(16, 54, 68, 0.80);
	font-size: 18px;
	font-weight: 400;
	line-height: 36px; 
}
.about-bottom{
	position: relative;
}
.about-bottom img{
	position: relative;
	transition: 0.4s;
}
 
.about-bottom svg{
	position: absolute;
	right: 73px;
	transition: 0.6s;
	top: 35px;
}
.about-bottom.active svg{
	top: -131px;
}
.statistics{
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
	margin-bottom: 48px;
	padding: 48px 0;
	position: relative;
}
.statistics:before,.statistics:after{
	content: '';
	width: 34px;
	height: 34px;
	background: url('../images/star.svg') no-repeat #fff;
	position: absolute;
}
.statistics:after{
	left: calc(50% - 18px);
	bottom: -17px;
}
.statistics:before{
	left: calc(50% - 18px);
	top: -17px;
}
.statistics  ul{
	display: flex;
	justify-content: center;
	gap: 68px;
}
.statistics  ul li{
	display: flex;
	align-items: center;
	color: #103644;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%; 
}
.statistics  ul li h6{
	color: #22D3EE;
	font-size: 48px;
	font-weight: 600;
	line-height: 120%; 
}
.banner .contact{
	margin-top: 56px;
}
.banner .contact .container{
	max-width: 1136px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	gap: 128px;
}
.banner .contact .left{
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1;
}
.banner .contact .right{
	max-width: 545px;
	flex: 1;
	padding: 32px;
	border-radius: 16px;
	background: #FFF;
	box-shadow: 0px 15px 24.5px 0px rgba(16, 54, 68, 0.10);
}
.contact-info-box{
	display: flex;
	justify-content: space-between;
	padding: 16px 24px 16px 16px;
	align-items: center;
	border-radius: 100px;
	background: #FFF;
	transition: 0.4s;
	border: 1px solid transparent;
}
.contact-info-box:hover{
	border-radius: 20px;
	transform: scale(1.05);
	border-color: #fff;
}
.contact-info-box .icon{
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	width: 46px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
}
.contact-info-box:hover .icon{
	background-color: #DDFAFF;
}
.contact-info-box .content{
	display: flex;
	align-items: center;
	gap:6px;
}
.contact-info-box .content h4{
	color: rgba(16, 54, 68, 0.40);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
}
.contact-info-box .content h4 span{
	display: block;
	color: #103644;
}
.contact-info-box .connect{
	width: 32px;
	height: 32px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner .contact .right .top-form{
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.banner .contact .right form button{
	width: 100%;
}
.form-control{
	width: 100%;
	/*margin-bottom: 16px;*/
}
.form-control label{
	color: #103644;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px; 
	margin-bottom: 8px;
	display: block;
}
.input{
	position: relative;
}
.input .input-field{
	width: 100%;
	height: 60px;
	border-radius: 16px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	padding:0 16px;
	transition: 0.4s;
	color: rgba(16, 54, 68, 0.40);
}
.input .input-field::placeholder,.input .textarea-field::placeholder{
	color: rgba(16, 54, 68, 0.40);
	font-weight: 400;
}
.input .input-field:focus,.input .textarea-field:focus{
	border-color: #22D3EE;
	caret-color: #22D3EE;
}
.input .textarea-field{
	width: 100%;
	height: 206px;
	border-radius: 16px;
	padding: 20px 14px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	color: rgba(16, 54, 68, 0.40);
}
.input::after,.form-select-button::after{
	content: attr(error-message);
	margin-top: -20px;
	opacity: 0;
	position: absolute;
}
.input[status="false"]::after,.form-select-button[status="false"]::after{
	content: attr(error-message);
	display: block;
	font-size: 10px;
	margin-top: -16px;
	color: #de3730;
	font-weight: 600;
	margin-left: 16px;
	transition: 0.4s;
	opacity: 1;
}
.input[status="false"] .input-field,.input[status="false"] .textarea-field,.form-select-button[status="false"]{
	border-color: #de37304a !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(30px); 
  }
  100% {
    transform: translateY(0); 
  }
}
.tooltip{
	max-width: 30%;
	width: 100%;
	background-color: #103644;
	position: fixed;
	left: 35%;
	bottom: 15px;
	padding: 16px 60px 16px 16px;
	display: flex;
	align-items: center;
	border-radius: 100px;
	box-shadow: 0px 0px 19px 5px #10364457;
	gap: 12px;
	animation: slideUp 0.5s ease forwards;
	transform: scale(0.5);
}
.tooltip .icon{
	min-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	background: #11998e; 
  background: -webkit-linear-gradient(to right, #11998e, #38ef7d);
  background: linear-gradient(to right, #11998e, #38ef7d);
}
.tooltip .icon svg{
	width: 30px;
	height: 30px;
	color: #fff;
}
.tooltip h4{
	color: #fff;
	font-weight: 600;
	margin-bottom: 5px;
}
.tooltip p{
	color: #fff;
	opacity: 0.8;
	font-size: 14px;
	line-height: normal;
}
.tooltip .close{
	position: absolute;
	right: 20px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #de3730;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid  transparent;
	transition: 0.4s;
}
.tooltip .close:hover{
	border-color: #eee;
}
.banner-contact{
	background: linear-gradient(to bottom, #DDFAFF 80%, #fff 20%);
}
.main-page.contact-page{
	margin-top: -188px;
}
.main-page.contact-page h2{
	color: #103644;
	font-size: 36px;
	font-weight: 600;
	line-height: 40px; 
	margin-bottom: 48px;
}
.map-button{
	display: flex;
	margin-bottom: 48px;
}
.main-page.contact-page iframe{
	border-radius: 24px;
	height: 556px;
}
.custom-tour-form{
	display: flex;
	width: 100%;
	max-width: 928px;
	padding: 32px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	border-radius: 16px;
	background: #FFF;
	box-shadow: 0px 15px 24.5px 0px rgba(16, 54, 68, 0.10);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.custom-tour-form .form-title{
	width: 100%;
	color: #103644;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px; 
}
.form-wrap{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 16px;
}
.form-wrap .form-control{
	flex: 1;
}
.custom-tour-form .star{
	width: 100%;
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	position: relative;
	margin: 16px 0;
}
.custom-tour-form .star::before{
	content: '';
	width: 34px;
	height: 34px;
	background: url('../images/star.svg') no-repeat #fff;
	position: absolute;
	border-radius: 50%;
	left: calc(50% - 17px);
	top: -17.5px;
}
.air-datepicker-body--day-name{
	color: rgba(16, 54, 68, 0.40);
	font-weight: 600;
}
.air-datepicker-cell.-selected-.-focus-{
	background: #22D3EE;
}
.calender-button{
	position: absolute;
	right: 0;
	width: 36px;
	height: 36px;
	background-color: #22D3EE;
	color: #fff;
	border-radius: 50%;
	right: 14px;
	top: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
}
.calender-button svg{
	width: 20px;
}
.calender-button:hover{
	transform: scale(1.08);
}
.form-select{
	display: flex;
	flex-direction: column;
	min-width: 50%;
	position: relative;
}
.form-select .form-select-button{
	display: flex;
	padding: 0 14px;
	height: 60px;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	border-radius: 16px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background-color: #fff;
	color: rgba(16, 54, 68, 0.40);
	font-weight: 400;
	line-height: 20px; 
	position: relative;
	transition: 0.4s;
}
.form-select .form-select-button:before{
	content: '';
	width: 20px;
	height: 20px;
	background: url('../images/select-arrow-bg.svg') no-repeat;
	right: 14px;
	position: absolute;
}
.form-select .form-select-button:focus{
	border-color: #22D3EE;
}
.form-control.w-50{
	min-width: 48%;
}
.form-control.w-100{
	min-width: 100%;
}
.form-select .form-select-list{
	border: 1px solid rgba(16, 54, 68, 0.10);
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	position: absolute;
	width: 50%;
	top: 65px;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transform: scale(0.5);
	transition: 0.3s;
	max-height: 300px;
	overflow-y: auto;
}
.form-select .form-select-list.active{
	opacity: 1;
	z-index: 3;
	pointer-events: inherit;
	transform: scale(1);
	width: 100%;
}
.form-select .form-select-list ul li button{
	padding:10px 15px;
	width: 100%;
	text-align: left;
	background-color: #fff;
	transition: 0.4s;
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
	color: #103644;
	position: relative;
}
.form-select  .form-select-list ul li button:hover{
	background-color: #f9f9f9;
}
.form-select .form-select-list ul li button:after{
	content: '';
	width: 20px;
	height: 20px;
	background: url('../images/check.svg') no-repeat;
	transform: scale(0);
	transition: 0.4s;
	position: absolute;
	right: 15px;
}
.form-select  .form-select-list ul li button.active::after{
	transform: scale(1);
}
.check-radio{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-radio label span{
  padding-left: 25px;
	color: #103644;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: -0.084px;
}
.check-radio label {
  position: relative;
  gap: 4px;
  cursor: pointer;
	margin-bottom: 0;
}
.check-radio label span a{
	color: #103644;
	font-weight: 500;
	text-decoration-line: underline;
	z-index: 2;
	position: relative;
}
.check-radio label input{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.check-radio label span:after{
  content: '';
  width: 20px;
  height: 20px;
  background-color:#E1E4EA;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: 0.1s;
}
.check-radio label span:before{
  content: '';
  width: 16px;
  height: 16px;
  background-color:#fff;
  position: absolute;
  top: 2px;
  left: 2.2px;
  border-radius: 50%;
  z-index: 1;
  transition: 0.1s;
}
.check-radio label input[type="checkbox"]:checked + span:after{
  background-color: #22D3EE;
}
.check-radio label input[type="checkbox"]:checked + span:before{
  content: '';
  width: 10px;
  height: 10px;
  background-color:#fff;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  z-index: 1; 
}
.main-button.w-100{
	width: 100%;
}
.form-select-button[status="false"]::after{
	margin-top: 40px;
	margin-left: 0;
}
.form-control .check-radio label::after{
	content: attr(error-message);
	opacity: 0;
	transition: 0.4s;
	color: #de3730;
	font-weight: 600;
	font-size: 10px;
}
.form-control .check-radio label[status="false"]::after{
	opacity: 1;
}
.banner.custom-reservation{
	padding-bottom: 0;
}
.banner.tour-detail{
	padding: 8px;
	display: flex;
	gap: 8px;
	background-color: #fff;
	max-width: 1440px;
	margin: auto;
	justify-content: center;
}
.banner.tour-detail img{
	border-radius: 12px;
}
.banner.tour-detail .left,.banner.tour-detail .right{
	width: calc(50% - 4px);
	height: 524px;
	overflow: hidden;
	position: relative;
	border-radius: 12px;
}
.banner.tour-detail img{
	width: 100%;
	object-fit: cover;
	position: absolute;
	height: 100%;
}
.banner.tour-detail .right{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.banner.tour-detail .right .blog-banner-image{
	width: 100%;
	height: calc(50% - 4px);
	overflow: hidden;
	border-radius: 12px;
	position: relative;
}
.banner.tour-detail	.container{
	position: absolute;
	max-width: 1136px;
	display: flex;
	align-items: flex-start;
	justify-content: end;
	height: 500px;
}
.banner.tour-detail	.container .main-button{
	background: linear-gradient(180deg, #0A2934 0%, #0E3543 100%);
	color: #fff;
}
.banner.tour-detail	.container .main-button:hover{
	transform: scale(1.05);
}
.tour-detail-photo{
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	background: rgba(5, 19, 24, 0.95);
	z-index: 4;
	display: flex;
	transition: 0.4s;
	will-change: transform;
	z-index: -1;
	transform: scale(0);
	opacity: 0;
	pointer-events: none;
}
.tour-detail-photo.active{
	z-index: 5;
	transform: scale(1);
	width: 100%;
	height: 100vh;
	opacity: 1;
	pointer-events: inherit;
}
.tour-detail-photo .container{
	margin: auto;
}
.tour-detail-photo .close-button{
	display: flex;
	justify-content: flex-end;
	margin-bottom: 23px;
}
.tour-detail-photo .close-button button{
	display: inline-flex;
	padding: 8px 8px 8px 12px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.30);
	background: transparent;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	transition: 0.4s;
}
.tour-detail-photo .close-button button .icon{
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.30);
	transition: 0.4s;
}
.tour-detail-photo .close-button button:hover{
	background:#f9f9f9;
	color:  rgba(5, 19, 24, 0.95);
}
.tour-detail-photo .close-button button:hover .icon{
	border-color: rgba(5, 19, 24, 0.95);
	color:  rgba(5, 19, 24, 0.95);
}
.tour-detail-photo img{
	border-radius: 16px;
	cursor: pointer;
	transition: 0.4s;
	
}

.tour-detail-photo .swiper-container img{
	will-change: transform;
}
.tour-detail-photo .swiper img:hover{
	transform:rotateY(15deg);
}

.tour-detail-photo .tour-console{
	margin-top: 23px;
	display: flex;
	gap: 32px;
	align-items: center;
}
.tour-detail-photo .view-image{
	width: 100%;
	transition: 0.4s;
	will-change: tranform;
}
.tour-detail-photo .tour-console button{
	min-width: 56px;
	height: 96px;
	background-color: #22D3EE;
	border-radius: 100px;
	transition: 0.3s;
	will-change: transform;
}
.tour-detail-photo .tour-console button:hover{
	transform: scale(1.08);
}
.tour-detail-page .container{
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: flex-start;
}
.tour-detail-page .left{
	max-width: 736px;
	width: 100%;
	display: none;
}
.tour-detail-page .left.active{
	display: block;
}
.tour-detail-page .tour-title{
	color: #103644;
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
	margin-bottom: 4px;
}
.tour-detail-page .tour-desc{
	color: #103644;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 24px;
	display: block;
}
.tour-days{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tour-day{
	display: flex;
	gap:12px;
	position: relative;
}
.tour-day::before{
	content: '';
	width: 1px;
	height: 100%;
	background-color: rgba(16, 54, 68, 0.10);
	position: absolute;
	left: 16px;
	top: 28px;
}
.tour-day:last-child::before{
	display: none;
}
.tour-day .tour-count{
	width: 32px;
	height: 32px;
	border-radius: 100px;
	background: #103644;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px; 
	transition: 0.4s;
}
.tour-day .content{
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 24px;
	gap: 8px;
	border-radius: 16px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	
}
.tour-day:hover .tour-count{
	transform:scale(1.1) rotateY(15deg);
	background: #22D3EE;
}
.tour-day .content button{
	width: 100%;
	text-align: left;
	background: #fff;
	color: #103644;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px; 
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tour-day .content button span{
	color: rgba(16, 54, 68, 0.40);
	font-size: 14px;
	font-weight: 500;
	line-height: 18px; 
	display: block;
}
.tour-day .content button .icon{
	min-width: 28px;
	height: 28px;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	color: #103644;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 100;
	font-size: 32px;
	transition: 0.4s;
	will-change: transform;
}
.tour-day .content .text{
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	padding-top: 8px;
	display: none;
}
.tour-day .content .text p{
	color: rgba(16, 54, 68, 0.80);
	font-size: 16px;
	font-weight: 400;
	line-height: 30px; 
}
.tour-day.active .content .text{
	display: block;
}
.tour-day.active button .icon{
	transform: rotate(45deg);
}
.tour-day.active .tour-count{
	background: #22D3EE;
}
.tour-detail-page .general-info{
	padding: 48px 0px 48px 44px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.tour-detail-page .general-info .general-info-box{
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
	padding-bottom: 24px;
}
.tour-detail-page .general-info .general-info-box:last-child{
	border-bottom-width: 0;
	padding-bottom: 0;
}
.tour-detail-page .general-info .general-info-box h4{
	color: #103644;
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 12px;
}
.tour-detail-page .general-info .general-info-box p{
	color: rgba(16, 54, 68, 0.80);
	font-size: 16px;
	font-weight: 400;
	line-height: 30px; 
}
.tour-detail-page .right{
	border-radius: 12px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	max-width: 352px;
	width: 100%;
}
.tour-detail-page .right .right-title:first-child{
	border-radius: 12px 12px 0 0;
}
.tour-detail-page .right .right-title{
	background: rgba(16, 54, 68, 0.05);
	padding: 12px 16px;
}
.tour-detail-page .right .right-content{
	padding: 16px;
}
.tour-detail-page .right .right-title h5{
	color: #103644;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}
.tour-detail-page .right .right-content ul.right-list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tour-detail-page .right .right-content ul.right-list li{
	display: flex;
	align-items: center;
	gap: 6px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
}
.tour-detail-page .right .right-content ul.right-list li:last-child{
	padding-bottom: 0;
	border-bottom-width: 0;
}
.form-select .form-select-list .count-boxes{
	padding: 16px;
	gap: 16px;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
}
.form-select .form-select-list .count-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.form-select .form-select-list .count-box h6{
	color: #103644;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	pointer-events: none;
	user-select: none;
}
.form-select .form-select-list .count-box .count-console{
	display: flex;
	gap: 16px;
	align-items: center;
}
.form-select .form-select-list .count-box .count-console h5{
	color: #103644;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px; 
	width: 20px;
	pointer-events: none;
	user-select: none;
}
.form-select .form-select-list .count-box .count-console button{
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	border: 1px solid rgba(16, 54, 68, 0.30);
	background-color: #fff;
	font-weight: 100;
	font-size: 32px;
	color: #103644;
	transition: 0.4s;
	will-change: backgorund-color, transform;
}
.form-select .form-select-list .count-box .count-console button:hover{
	background-color: #22D3EE;
	transform: scale(1.05);
}
.form-select .form-select-list .count-box .count-console button[disabled]{
	opacity: 0.4;
	pointer-events: none;
}
.tour-detail-page .right .tour-total-amount{
	display: none;
	justify-content: space-between;
	border-top:1px solid rgba(16, 54, 68, 0.10);
	border-bottom:1px solid rgba(16, 54, 68, 0.10);
	padding: 16px 0;
	color: #0E121B;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px; 
	align-items: center;
	margin-bottom: 16px;
}
.tour-detail-page .right .tour-total-amount.active{
	display: flex;
}
.tour-detail-page .right .tour-total-amount span{
	color: #0E121B;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px; 
}
.tour-detail-page .right .form-submit{
	display: none;
}
.tour-detail-page .right .form-submit.active{
	display: flex;
}
.w-100{
	width: 100%;
}
.tour-form-box{
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
	padding: 24px 0;
}
.tour-form-box.border-none{
	border-top-width: 0;
	border-bottom-width: 0;
}
.tour-form-box h5{
	color: #103644;
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	width: 100%;
}
.reservation-detail-right{
	display: none;
	flex-direction: column;
	gap: 16px;
}
.reservation-detail-right.active{
	display: flex;
}
.reservation-detail-right h6{
	color: #103644;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px; 
}
.reservation-detail-right p{
	color: #103644;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}
.tour-detail-page .right  .reservation-detail-right .tour-total-amount{
	border-bottom-width: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.form-users{
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
}
.form-users .title{
	padding: 16px;
	gap: 10px;
	background: rgba(16, 54, 68, 0.05);
}
.form-users .form-wrap{
	padding: 16px;
}
.form-users .user-box:first-child .title{
	border-radius: 12px 12px 0 0;
}
.credit-card-bottom{
	display: flex;
	gap:16px
}
.credit-card-bottom .form-select{
	min-width: 48%;
}
.radio{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 16px;
	gap: 14px;
	border-radius: 12px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	transition: 0.4s;
	cursor: pointer;
}
.radio .head{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.radio .head .content{
	display: flex;
	align-items: center;
	gap: 14px;
}
.radio .head .content h4{
	color: rgba(16, 54, 68, 0.80);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px; 
	letter-spacing: -0.084px;
}
.radio .head .content .icon{
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #E1E4EA;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 1px 2px 0px rgba(10, 13, 20, 0.03);
}
.radio .head .check{
	width: 20px;
	height: 20px;
	border: 2px solid #1036441A;
	border-radius: 50%;
	background-color: #fff;
	transition: 0.4s;
}
.radio .information{
	border-top: 1px solid rgba(16, 54, 68, 0.10);
	display: none;
}
.radio .information .box{
	padding: 16px 0;
	border-bottom: 1px solid rgba(16, 54, 68, 0.10);
	display: flex;
	justify-content: space-between;
}
.radio .information .box span{
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #103644;
	margin-top: 4px;
}
.radio .information .box span button{
	background: none;
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}
.radio .information .box span button:after{
	content: attr(tooltip-text);
	font-size: 9px;
	background-color: #103644;
	padding: 4px;
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	transition: 0.3s;
	opacity: 0;
	transform: scale(0);
	will-change: transform, opacity;
}
.radio .information .box span button:hover::after{
	opacity: 1;
	transform: scale(1);
}
.radio .information .box h6{
	flex:1;
	color: rgba(16, 54, 68, 0.40);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px; 
}
.radio .information .box:last-child{
	border-bottom-width: 0;
}
.radio.active .head .check{
	border-color: #22D3EE;
	border-width: 6px;
}
.radio.active{
	border-color: #22D3EE;
	transform: scale(1.02);
}
.radio .information-alert{
	display: none;
	padding: 8px;
	align-items: center;
	gap: 6px;
	border-radius: 8px;
	background: rgba(34, 211, 238, 0.05);
	color: #103644;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px; 
}
.radio.active .information-alert{
	display: flex;
}
.radio.active .information{
	display: block;
}
.read-more-mobile{
	display: none;
}
.banner .contact .right .form-control{
	margin-bottom: 16px;
}
.banner .contact .right{
	overflow: hidden;
}
#start-form .form-control{
	margin-bottom: 16px;
}
.tour-detail-page.finish .left{
	display: none;
}
.tour-detail-page.finish .right{
	display: none;
}
.tour-detail-page .result{
	display: none;
}
.tour-detail-page.finish .result{
	width: 100%;
	display: block;
}
.result h5{
	color: #103644;
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	padding-top: 24px;
	margin-bottom: 24px;
	border-top: 1px solid rgba(16, 54, 68, 0.10);
}
.result-box{
	border:1px solid  rgba(16, 54, 68, 0.10);
	display: flex;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}
.result-box .result-item{
	width: 50%;
	border-right: 1px solid  rgba(16, 54, 68, 0.10);
}
.result-box .result-item:last-child{
	border-right-width: 0;
}
.result-box .result-title{
	display: flex;
	padding: 12px 16px;
	align-items: center;
	gap: 10px;
	background-color: rgba(16, 54, 68, 0.05);
}
.result-box .result-title h6{
	color: #103644;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}
.result-content{
	padding: 16px;
}
.result-content ul{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.result-content ul li{
	display: flex;
	align-items: center;
	gap: 6px;
	color: #103644;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px; /* 125% */
	letter-spacing: -0.176px;
}
.result-content > div{
	margin-bottom: 16px;
}
.result-content > div h3{
	color: #103644;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px; 
}
.result-content > div p{
	color: #103644;
font-size: 14px;
font-weight: 500;
line-height: 20px; 
}
.result .result-total{
	display: flex;
	padding: 32px 16px;
	align-items: center;
	gap: 8px;
	border-radius: 0 0 12px 12px;
	border: 1px solid rgba(16, 54, 68, 0.10);
	background: #FFF;
	border-top: none;
	color: #0E121B;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}
.result .result-total span {
	color: #0E121B;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px; 
}
.result-contact{
	color: #525866;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px; 
	margin-top: 24px;
}
@media screen and (max-width:1650px) {
	.locations .swiper-slide a{
		font-size: 20px;
	}
	.locations[type="normal"]{
		padding: 22px 0;
	}
	.locations .swiper-slide a{
		gap: 6px;
	}
	.locations .swiper-slide a svg{
		width: 24px;
	}
}
@media screen and (max-width:1130px){
	.tour-list,.blog-list{
		gap: 2%;
		row-gap:23px;
	}
	.tour-box,.blog-box{
		min-width: 32%;
    max-width: 32%;
	}
}
@media screen and (max-width:1100px){
	.banner h1{
		font-size: 52px;
		line-height: 55px;
	}
	.banner p br{
		display: none;
	}
	.title h2{
		font-size: 32px;
	}
	.title p{
		font-size: 14px;
	}
	.section-head{
		margin-bottom: 23px;
	}
	.popular-tours .tour-boxes{
		gap: 12px;
	}
	.vertical-box .text h1{
		font-size: 20px;
	}
	.best-price ul{
		gap: 24px;
	}
	.route-reservation-price h3.text{
		font-size: 20px;
	}
	.tour-box h3{
		font-size: 19px;
		margin-bottom: 4px;
	}
	.tour-box img{
		margin-bottom: 8px;
	}
	.tour-list{
		row-gap: 23px;
	}
	.tour-box h4{
		font-size: 17px;
	}
	.blog-box h4{
		font-size: 20px;
		line-height: 27px;
	}
	.blog-box img{
		margin-bottom: 4px;
	}
	.footer{
		padding: 45px 0;
	}
	.footer .right{
		gap: 44px;
	}
	.banner.blog-detail .container h1{
		line-height: 53px;
	}
	.blog-detail-page .container{
		padding: 0 16px;
	}
	.blog-detail-page .blog-social-publish{
		position: relative;
		flex-direction: row;
	}
	.blog-detail-page h3{
		font-size: 20px;
	}
	.tour-categories{
		margin-bottom: 24px;
		gap: 8px;
	}
	.custom-tour .left h1{
		font-size: 48px;
		line-height: 48px;
	}
	.custom-tour .left h1 span{
		display: inline;
	}
	.banner .contact .container{
		gap: 24px;
	}
	.about-top{
		gap:24px;
	}
	.about-top .left{
		max-width: 465px;
	}
	.about-top .right p{
		font-size: 16px;
	}
	.about-bottom.active svg{
		display: none;
	}
	.statistics ul li h6{
		font-size: 36px;
	}
	.about-top .left h3{
		font-size: 27px;
		line-height: 33px;
	}
	.banner.tour-detail .left, .banner.tour-detail .right{
		height: 375px;
	}
	.banner.tour-detail .container{
		height: 350px;
	}
	.tour-detail-page .tour-title{
		font-size: 32px;
	}
	.tour-detail-page .tour-desc{
		font-size: 16px;
	}
	.result-box .result-title h6{
		font-size: 14px;
	}
	.result-content ul li{
		font-size: 14px;
	}
	.result-content > div p{
		font-size: 13px;
	}
	.result .result-total{
		padding: 18px 16px;
		font-size: 14px;
	}
	.result .result-total span{
		font-size: 16px;
	}
	.result h5{
		font-size: 18px;
	}
	.tooltip{
		max-width: 95%;
		width: 95%;
		left: 2.5%;
		z-index: 5;
	}
	.tooltip p{
		font-size: 12px;
	}
	.tooltip .icon{
		min-width: 40px;
		width: 40px;
		height: 40px;
	}
	.contact-info-box .content h4{
		font-size: 14px;
	}
	.form-control label{
		font-size: 14px;
	}
}
@media screen and (max-width:850px) {
	.footer > .container{
		flex-direction: column;
		gap: 32px
	}
}
@media screen and (max-width:768px){
	.header .header-box .menu{
		gap:12px
	}
	.header .header-box .menu a{
		font-size: 13px;
	}
	.custom-tour .right .input-image{
		display: none;
	}
	.custom-tour .right .custom-img{
		display: none;
	}
	.custom-tour .right{
		opacity: 0.8;
	}
	.banner .contact .right .top-form{
		flex-direction: column;
		gap: 0;
	}
	.main-page.contact-page{
		margin-top: -48px;
	}
	.about-top{
		flex-direction: column;
	}
	.about-top .left{
		max-width: 100%;
	}
	.statistics ul{
		gap: 24px;
	}
	.form-wrap{
		flex-direction: column;
	}
	.tour-detail-page .left{
		max-width: 100%;
	}
	.tour-detail-page .right{
		max-width: 100%;
	}
	.tour-detail-page .container{
		flex-direction: column-reverse;
	}
	.tour-detail-photo .tour-console button{
		max-width: 40px;
		min-width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.tour-detail-photo .tour-console{
		gap: 12px;
	}
}
@media screen and (max-width:640px){
	.banner h1{
		font-size: 42px;
		line-height: 45px;
	}
	.banner p{
		font-size: 14px;
	}
	.header .header-box .menu{
		position: fixed;
		bottom: 16px;
		background: #0e3543;
		background: linear-gradient(180deg, #0A2934 0%, #0E3543 100%);
		width: 90%;
		left: 5%;
		gap: 0;
		justify-content: center;
		border-radius: 50px;
		transition: 0.5s;
	}
	.header .header-box .menu.scrolling{
		width: 50px;
		height: 50px;
		left: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		border-color: transparent;
	}
	
	.header .header-box .menu.scrolling > *{
		opacity: 0;
	}
	.header .header-box .menu.scrolling:after{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: url('../images/fa.svg') center center no-repeat;
	}
	.header .header-box .menu a{
		padding: 14px 10px;
		border-right: 1px solid #1e4755;
		width: 33%;
		text-align: center;
		white-space: nowrap;
	}
	.header .header-box .menu a:last-child{
		border-right-width: 0;
	}
	.locations[type="normal"]{
		padding: 0;
	}
	.locations .swiper-slide a{
		font-size: 17px;
	}
	.popular-tours .tour-boxes{
		flex-wrap: wrap;
	}
	.popular-tours  .vertical-box{
		min-width: 48%;
	}
	.section-head .main-button-outline{
		display: none;
	}
	.section-head .title{
		justify-content: center;
		width: 100%;
		text-align: center;
	}
	.route-reservation-price .container{
		flex-direction: column;
	}
	.route-boxes{
		height: auto;
	}
	.route-tour-box{
		height: auto;
		padding-top: 24px;
		padding-bottom: 88px;
	}
	.route-tour-box::after{
		box-shadow: 0px 0px 50px 41px inset #ffffff;
	}
	.revervation .rounded-box{
		width: 100%;
    height: 400px;
		left: 0;
	}
	.read-more-mobile{
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}
	.privileges .privile-boxes .privile-box{
		min-height: 250px;
		padding: 14px;
		gap: 20px;
	}
	.privileges .privile-boxes .privile-box .text p{
		font-size: 13px;
		line-height: 20px;
	}
	.route-reservation-price .left, .route-reservation-price .right{
		max-width: 100%;
	}
	.tour-box{
		min-width: 48%;
    max-width: 49%;
	}
	.questions .question-boxes{
		flex-direction: column;
		gap: 8px;
	}
	.blog-slider-title .title h2{
		text-align: left;
	}
	.popular-tours.page .title{
		text-align: left;
	}
	.tour-categories{
		flex-direction: column;
		gap: 12px;
	}
	.banner .contact .container{
		flex-direction: column;
	}
	.banner .contact .right{
		min-width: 100%;
	}
	.statistics ul{
		flex-direction: column;
		align-items: center;
	}
	.banner.tour-detail .left, .banner.tour-detail .right{
		height: 300px;
	}
	.banner.tour-detail .container{
		height: 275px;
	}
	.banner.tour-detail .container .main-button{
		width: 100%;
	}
}
@media screen and (max-width:500px){
	.tour-box,.blog-box{
		min-width: 100%;
    max-width: 100%;
	}
	.tour-box img {
		width: 100%;
	}
	.footer .right{
		gap: 23px;
	}
	.contact-boxes{
		flex-direction: column;
	}
	.copyright {
		padding-top: 24px;
		margin-top: 24px;
		padding-bottom: 32px;
		flex-direction: column;
		gap:8px
	}
	.footer .right nav h3{
		font-size: 14px;
		font-weight: 600;
	}
	.footer .right nav a{
		font-size: 14px;
	}
}
