@charset "UTF-8";
@font-face {
	font-family: "CenturyGothic";
	src: url(../font/centurygothic_bold.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "CenturyGothic";
	src: url(../font/centurygothic.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Edwardian";
	src: url(../font/edwardianscriptitc.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "nomarkwebfont";
	src: url(../font/nomark-webfont.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
:root {
	--primary-font: "CenturyGothic", sans-serif;
	--second-font: "Edwardian", serif;
	--primary-color: rgb(73, 90, 127);
	--primary-color: #06195b;
	--primary-color2: #06195b;
	--second-color: rgb(215, 135, 32);
	--normal-color: #000;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video {
	max-width: 100%;
}

ol,
ul {
	list-style: none;
}

html {
	font-size: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	font-size: 16px;
	font-family: var(--primary-font);
	text-align: left;
	color: #161616;
	background: #fff;
}

.ov-hidden {
	overflow: hidden;
}

.container {
	max-width: 1360px;
}

a {
	color: var(--normal-color);
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

.row-collapse {
	margin-left: 0;
	margin-right: 0;
}
.row-collapse > div {
	padding-left: 0;
	padding-right: 0;
}

.slick-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--second-color);
	color: var(--second-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s, opacity 0.3s, background 0.3s, box-shadow 0.3s;
	z-index: 1;
}
.slick-arrow::before {
	font-family: fontawesome;
	color: var(--second-color);
}
.slick-arrow:hover {
	background-color: var(--second-color);
}
.slick-arrow:hover::before {
	color: #fff;
}
@media (max-width: 550px) {
	.slick-arrow {
		width: 30px;
		height: 30px;
	}
}

.slick-prev {
	left: 4%;
}

.slick-next {
	right: 4%;
}

.slick-prev:before {
	content: "\f053";
}

.slick-next:before {
	content: "\f054";
}

.slick-dots li button:hover {
	box-shadow: none;
}

.slick-dots li button:before {
	font-size: 10px;
}

.big-padding-y {
	padding: 40px 0;
}
@media (min-width: 1025px) {
	.big-padding-y {
		padding: 120px 0;
	}
}

.heading-title .sectitle {
	position: relative;
	font-size: calc(40px + 2vw);
	line-height: calc(40px + 2vw);
	font-family: var(--second-font);
	letter-spacing: 4px;
	color: var(--primary-color2);
	transition: 1500ms ease-in-out;
	top: -30px;
	text-shadow: 1px 0px 3px var(--primary-color);
}
.heading-title .sectitle::after {
	position: absolute;
	display: block;
	width: 50%;
	height: 100%;
	bottom: 0px;
	left: 50%;
	content: "";
	transition: 1s ease-in-out;
	background: url(../images/vague.svg) center bottom/contain no-repeat;
	background-size: contain;
	max-width: 550px;
	transform: translateX(-50%);
	filter: invert(16%) sepia(13%) saturate(6256%) hue-rotate(195deg) brightness(92%) contrast(109%);
}
.heading-title .sectitle.view-on {
	top: 0px;
}
.heading-title .sectitle.view-on::after {
	bottom: -35px;
}
@media (max-width: 1024px) {
	.heading-title .sectitle {
		font-size: 2em;
		letter-spacing: 2px;
	}
	.heading-title .sectitle.view-on::after {
		bottom: -5px;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 100ms 0ms ease-in;
	font-weight: 800;
	padding: 15px 20px;
	line-height: 1.5em;
	appearance: none;
	white-space: nowrap;
	cursor: pointer;
	border-color: transparent;
	border-radius: 0;
}
.btn.ghost {
	border: 2px solid #d78720;
	background: transparent;
	color: #d78720;
}
.btn.light {
	border-color: #fff;
	color: #fff;
}

.btn-large {
	min-width: 210px;
}

.btn-small {
	padding: 5px;
}

.btn-primary {
	background-color: var(--second-color);
	color: #fff;
}
.btn-primary:hover {
	background-color: var(--second-color);
	border-color: var(--second-color);
	color: #fff;
}

.btn-normal {
	position: relative;
	overflow: hidden;
	color: rgba(0, 0, 0, 0.85);
}
.btn-normal i {
	margin-left: 10px;
}
.btn-normal::after {
	position: absolute;
	display: block;
	width: calc(100% - 20px);
	height: 1px;
	left: calc(100% - 30px);
	bottom: 0;
	z-index: 0;
	content: "";
	background-color: var(--second-color);
	transition: all 1s 0ms cubic-bezier(0, 0, 0.025, 1.02);
}
.btn-normal:hover {
	color: var(--second-color);
}
.btn-normal:hover::after {
	left: 0;
	width: 100%;
}

.btn-blanc {
	background-color: #fff;
	color: var(--second-color) !important;
}

.btn-submit {
	background: var(--primary-color);
	color: #fff;
	min-width: 210px;
}
.btn-submit:hover, .btn-submit:focus {
	color: #fff;
	border-color: #fff;
	background-color: var(--second-color);
}

.bts--centre {
	display: block;
	text-align: center;
}

.big-gap {
	gap: 40px;
}

.social {
	color: var(--second-color);
	padding: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	background: transparent;
	transition: all 280ms 0ms ease-in-out;
}

@media (min-width: 1025px) {
	.d-xl-flex {
		display: flex;
		display: -webkit-flex !important;
	}

	.flex-grow-xl-1 {
		flex-grow: 1;
		flex-basis: 0;
	}

	.flex-grow-xl-2 {
		flex-grow: 2;
		flex-basis: 0;
	}

	.flex-grow-xl-3 {
		flex-grow: 3;
		flex-basis: 0;
	}

	.flex-grow-xl-4 {
		flex-grow: 4;
		flex-basis: 0;
	}

	.flex-grow-xl-5 {
		flex-grow: 5;
		flex-basis: 0;
	}

	.flex-grow-xl-6 {
		flex-grow: 6;
		flex-basis: 0;
	}

	.flex-grow-xl-7 {
		flex-grow: 7;
		flex-basis: 0;
	}

	.flex-grow-xl-8 {
		flex-grow: 8;
		flex-basis: 0;
	}

	.flex-grow-xl-9 {
		flex-grow: 9;
		flex-basis: 0;
	}

	.flex-grow-xl-10 {
		flex-grow: 10;
		flex-basis: 0;
	}
}
.width-large {
	max-width: 1025px;
}

.bords {
	border: 1px solid #ebebeb;
}

.bg-compl {
	background-color: #f9f5e6;
}

.normal-padding {
	padding: 20px;
}

.form-control {
	position: relative;
	display: block;
	width: 100%;
	padding: 14px 20px;
	background: #fff;
	border: 1px solid var(--second-color);
	color: #000;
	outline: 0;
	font-family: var(--primary-font);
	border-radius: 0px;
	height: auto;
	font-size: 16px;
}
.form-control:focus {
	box-shadow: none;
	background: #fff;
	color: #000;
	border-color: #d2b341;
}

.form-control[readonly] {
	background-color: #fff;
}

.header {
	width: 100%;
	top: 0px;
	left: 0px;
	background-color: white;
	border-bottom: 1px solid #ebebeb;
	z-index: 99;
}
.header .logo {
	flex:1;
	width: 80%;
	margin: 6px auto;
}
.header .logo a {
	position: relative;
	display: block;
}
.header .logo img,
.header .logo svg {
	position: relative;
	display: inline;
	width: auto;
	height: 60px;
	vertical-align: middle;
}
@media (min-width: 1025px) {
	.header .logo {
		margin: 0;
	}
}
@media (max-width: 1250px) {
	.header .logo {
		max-width: 200px;
	}
}
.header-wrap .menu-right {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.header-wrap .menu-right .nav-top {
	display: none;
}
.header-wrap .menu-right .nav-top a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.85);
}
.header-wrap .menu-right .nav-top a::after {
	position: absolute;
	display: block;
	width: 30px;
	height: 1px;
	right: 0px;
	bottom: 0px;
	z-index: 0;
	content: "";
	background-color: var(--second-color);
	transition: 1s cubic-bezier(0, 0, 0.025, 1.02);
}
.header-wrap .menu-right .nav-top a:hover::after {
	width: 100%;
}
.header-wrap .menu-right .nav {
	position: fixed;
	height: 100%;
	top: 0px;
	box-sizing: border-box;
	z-index: 10001;
	background-color: white;
	padding-bottom: 90px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	width: 100% !important;
	margin: 0px;
	transition: 280ms ease-in-out;
}
@media(max-width:1024px){
	.header-wrap .menu-right .nav.hidden-mobile{
		display:none;
	}
}
.header-wrap .menu-right .nav.nav-mobile{
	position: fixed;
	height: 100%;
	top: 0px;
	box-sizing: border-box;
	z-index: 10001;
	background-color: white;
	padding-bottom: 90px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	width: 100% !important;
	margin: 0px;
	transition: 280ms ease-in-out;
}
.header-wrap .menu-right .nav > ul {
	position: relative;
	display: block;
	z-index: 2;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 5px 5px;
}
.header-wrap .menu-right .nav > ul > li {
	position: relative;
	display: block;
	z-index: 1;
	text-align: left;
	margin: 0px;
	border-bottom: 1px solid #f9f5e6;
}
.header-wrap .menu-right .nav > ul > li > a {
	position: relative;
	display: block;
	color: black;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	padding: 18px 0px;
	margin: 0px;
	background: transparent;
	overflow: hidden;
	transition: 280ms ease-in-out;
}
.header-wrap .menu-right .nav > ul > li > a::before {
	position: absolute;
	display: block;
	width: 0%;
	height: 1px;
	bottom: 0px;
	left: 50%;
	content: " ";
	background-color: var(--second-color);
	transition: 280ms ease-in-out;
}
.header-wrap .menu-right .nav > ul > li.haschildren {
	position: relative;
	padding-right: 40px;
}
.header-wrap .menu-right .nav > ul > li.haschildren .arrows {
	position: absolute;
	top: 45%;
	right: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
@media (max-width: 1024px) {
	.header-wrap .menu-right .nav > ul > li.haschildren {
		padding-right: 0;
	}
	.header-wrap .menu-right .nav > ul > li.haschildren .arrows {
		color: #000;
		top: 10px;
		transform: translate(0);
		background-color: #f3f3f3;
	}
	.header-wrap .menu-right .nav > ul > li.haschildren .arrows.opened {
		transform: translate(0) rotate(180deg);
	}
}
.header-wrap .menu-right .nav > ul > li .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: max-content;
	min-width: 260px;
	background-color: #fff;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.3s ease;
}
.header-wrap .menu-right .nav > ul > li .submenu > li > a {
	display: block;
	padding: 10px;
	transition: all 280ms 0ms ease-in-out;
}
.header-wrap .menu-right .nav > ul > li .submenu > li > a:hover {
	color: var(--second-color);
	transition: all 280ms 0ms ease-in-out;
}
@media (max-width: 1024px) {
	.header-wrap .menu-right .nav > ul > li .submenu {
		position: relative;
		width: 100%;
		text-align: center;
		display: none;
		transform: translate(0);
		visibility: visible;
		opacity: 1;
		transition: none;
	}
}
.header-wrap .menu-right .nav > ul > li.active > a, .header-wrap .menu-right .nav > ul > li:hover > a {
	color: var(--second-color);
	background: transparent;
	transition: all 280ms 0ms ease-in-out;
}
@media (min-width: 1025px) {
	.header-wrap .menu-right .nav > ul > li:hover > .submenu {
		visibility: visible;
		opacity: 1;
		transform: translateX(0px);
		transition: all 0.3s ease;
	}
}
@media (max-width: 767.98px) {
	.header-wrap .menu-right .nav > ul {
		max-width: 100%;
	}
}
.header-wrap .menu-right .nav.opened {
	right: 0 !important;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	z-index: 100;
	overflow: auto;
}
@media (max-width: 1024px) {
	.header-wrap .menu-right .nav {
		right: -50%;
	}
}
@media (min-width: 1025px) {
	.header-wrap .menu-right {
		align-items: flex-end;
	}
	.header-wrap .menu-right .nav-top {
		display: block;
	}
	.header-wrap .menu-right .nav-top a {
		filter: invert(1);
	}
	.header-wrap .menu-right .nav-top a::after {
		background-color: var(--second-color);
	}
	.header-wrap .menu-right .nav {
		position: relative;
		height: auto;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		width: auto !important;
		background: transparent;
		padding: 0px;
	}
	.header-wrap .menu-right .nav.nav-mobile{
		display:none;
	}
	.header-wrap .menu-right .nav > ul {
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: wrap;
		height: auto;
		width: auto;
		max-width: none;
		overflow-y: inherit;
		padding: 0px;
	}
	.header-wrap .menu-right .nav > ul > li {
		flex: 1 1 auto;
		border-width: initial;
		border-style: none;
		border-color: initial;
		border-image: initial;
		white-space: nowrap;
		margin-left: 20px;
	}
	.header-wrap .menu-right .nav > ul > li > a {
		color: #fff;
	}
	.header-wrap .menu-right .nav > ul > li > a::before {
		background-color: #fff;
	}
	.header-wrap .menu-right .nav > ul > li.active > a, .header-wrap .menu-right .nav > ul > li:hover > a {
		color: #fff;
	}
	.header-wrap .menu-right .nav > ul > li.active > a::before, .header-wrap .menu-right .nav > ul > li:hover > a::before {
		width: 100%;
		left: 0px;
	}
}
@media (min-width: 1025px) {
	.header-wrap {
		display: none;
	}
}
.header .menu-toggle {
	position: fixed;
	z-index: 10002;
	top: 0;
	right: 0;
	padding: 16px 12px;
	background: #d78720;
	transition: all 280ms 0ms ease-in-out;
	cursor: pointer;
}
.header .menu-toggle-wrap {
	position: relative;
	display: block;
	width: 24px;
	height: 15px;
	display: block;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	flex-direction: column;
	justify-content: space-between;
}
.header .menu-toggle span {
	position: relative;
	display: block;
	height: 1px;
	background: #fff;
	flex: 0 0 auto;
	transition: all 280ms 0ms ease-in-out;
}
.header .menu-toggle.active span:nth-child(1) {
	transform-origin: 0% 0%;
	transform: rotate(45deg) translateX(2px) translateY(-4px);
}
.header .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
	transform-origin: 0% 100%;
	transform: rotate(-45deg) translateX(3px) translateY(3px);
}
@media (min-width: 1025px) {
	.header .menu-toggle {
		display: none;
	}
}
@media (min-width: 1025px) {
	.header {
		position: fixed;
		background-color: transparent;
		backdrop-filter: blur(30px);
		box-shadow: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	.header::before {
		position: absolute;
		display: block;
		width: 100%;
		height: 6px;
		top: 0px;
		left: 0px;
		content: "";
		transition: 1s ease-in-out;
		background: white;
	}
	.header .header-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header.header-page {
		position: sticky !important;
		top: 0;
	}
	.header.header-page::before {
		height: 100%;
	}
	.header.header-page .header-wrap .menu-right .nav-top a {
		filter: none;
	}
	.header.header-page .header-wrap .menu-right .nav > ul > li > a {
		color: #000;
	}
	.header.header-page .header-wrap .menu-right .nav > ul > li > a:hover {
		color: var(--second-color);
	}
	.header.header-page .header-wrap .menu-right .nav > ul > li.haschildren > .arrows {
		color: #000;
	}
	.header.fixed {
		border-bottom: 1px solid #ebebeb;
	}
	.header.fixed::before {
		height: 100%;
	}
	.header.fixed .header-wrap .menu-right .nav-top a {
		filter: none;
	}
	.header.fixed .header-wrap .menu-right .nav > ul > li > a {
		color: #000;
	}
	.header.fixed .header-wrap .menu-right .nav > ul > li > a::before {
		background-color: var(--second-color);
	}
	.header.fixed .header-wrap .menu-right .nav > ul > li.haschildren > .arrows {
		color: #000;
	}
	.header.fixed .header-wrap .menu-right .nav > ul > li:hover > a, .header.fixed .header-wrap .menu-right .nav > ul > li:active > a, .header.fixed .header-wrap .menu-right .nav > ul > li.active > a {
		color: #d78720;
		background: transparent;
		transition: all 280ms 0ms ease-in-out;
	}
}

.headline-up {
	letter-spacing: 4px;
	text-transform: uppercase;
	margin: 20px 0;
	text-align: center;
	font-size: 12px;
}

.headline-bandeau {
	font-size: calc(2vw + 30pt);
	line-height: calc(2vw + 30pt);
	font-family: var(--second-font);
	letter-spacing: 4px;
}

.headline-1 {
	font-size: 3em;
	font-family: var(--second-font);
	letter-spacing: 5px;
}

.banner-slide .item {
	position: relative;
}
.banner-slide .item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.banner-slide .item img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
@media (min-width: 1025px) {
	.banner-slide .item img {
		height: 100vh;
	}
}
@media (max-width: 1024.98px) {
	.banner-slide .item img {
		height: 70vh;
	}
}
.banner-slide .item-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 20;
}
.banner-slide .item-content .item-title {
	text-align: center;
	padding-bottom: 40px;
	color: #fff;
}
@media (min-width: 1025px) {
	.banner-slide .item-content .item-title {
		padding-bottom: 120px;
	}
}
.banner-page {
	position: relative;
}
.banner-page .banner-page-title {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	color: #fff;
	padding-bottom: 40px;
	text-align: center;
	z-index: 20;
}
.banner-page .banner-page-title .sectitle {
	font-size: 2.125em;
	/*font-family: var(--second-font);*/
	letter-spacing: 5px;
}
@media (max-width: 1024.98px) {
	.banner-page .banner-page-title .sectitle {
		font-size: 2em;
		padding-bottom: 90px;
	}
}
@media (max-width: 767.98px) {
	.banner-page .banner-page-title .sectitle {
		font-size: 1.25em;
		padding-bottom: 40px;
	}
}
.banner-page .banner-page-title .subtitle {
	font-size: 1.25em;
}
@media (max-width: 1024.98px) {
	.banner-page .banner-page-title .subtitle {
		font-size: 1em;
	}
}
@media (min-width: 1025px) {
	.banner-page .banner-page-title {
		padding-bottom: 120px;
	}
}
.banner-page .banner-slide .item img {
	height: 50vh;
	min-height: 400px;
}

.destinations-list {
	display: grid;
	width: 100%;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}
.destinations-list .item {
	position: relative;
	display: block;
	overflow: hidden;
}
.destinations-list .item::before {
	content: "";
	position: absolute;
	display: block;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.35);
	transition: all 280ms 0ms ease-in-out;
}
.destinations-list .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}
.destinations-list .item-desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	color: #fff;
	text-align: center;
}
.destinations-list .item-desc a {
	display: block;
	color: inherit;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.25em;
}
.destinations-list .item:hover {
	transform: scale(1.08);
}
.destinations-list .item:hover::before {
	background-color: transparent;
}
@media (min-width: 1025px) {
	.destinations-list {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}

.services {
	position: relative;
	margin-top: 40px;
}
.services .headline-bandeau {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 10;
	align-items: center;
	justify-content: center;
	font-size: 10vw;
	text-shadow: 0 0 100px rgba(0, 0, 0, 0.25);
	color: #fff;
	text-align: center;
	white-space: nowrap;
	transition: all 1s 1000ms ease-in-out;
	transform: scale(0.8);
}
.services .headline-bandeau.view-on {
	transform: scale(1);
}
.services-list {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
}
.services-list .item {
	position: relative;
	display: block;
	transition: all 280ms 0ms ease-in-out;
	overflow: hidden;
}
.services-list .item:nth-child(odd) {
	transition-duration: 1s;
	transition-delay: 250ms;
}
.services-list .item:nth-child(even) {
	transition-duration: 1s;
	transition-delay: 500ms;
}
.services-list .item::before {
	content: "";
	position: absolute;
	display: block;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.35);
	transition: all 280ms 0ms ease-in-out;
}
.services-list .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}
.services-list .item-desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	color: #fff;
	text-align: center;
}
.services-list .item-desc a {
	display: block;
	color: inherit;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.25em;
}
.services-list .item:hover::before {
	background-color: transparent;
}
@media (min-width: 1025px) {
	.services-list {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1025px) {
	.services {
		margin-top: 120px;
	}
}

.about-image {
	margin-bottom: 20px;
}
.about-image img {
	margin-bottom: 10px;
}
@media (min-width: 1025px) {
	.about-image {
		margin-top: 0;
	}
}
.about-title {
	font-size: 3em;
	font-family: var(--second-font);
	letter-spacing: 5px;
	margin-bottom: 40px;
}
@media (max-width: 1024px) {
	.about-title {
		font-size: 2em;
		margin-bottom: 20px;
	}
}
.about-content-inner {
	position: relative;
}
@media (min-width: 1025px) {
	.about-content-inner::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 1px;
		height: 100%;
		background-color: var(--second-color);
	}
}
.about-meta {
	margin-bottom: 20px;
}
@media (min-width: 1025px) {
	.about-meta {
		writing-mode: vertical-lr;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: absolute;
		top: 0;
		left: 20px;
	}
}
.about-desc {
	position: relative;
}
@media (min-width: 1025px) {
	.about-desc {
		padding-left: 100px;
	}
}

.whychoose-list .item {
	position: relative;
	margin-bottom: 30px;
}
.whychoose-list .item-image {
	text-align: center;
	margin-bottom: 10px;
}
.whychoose-list .item-image img {
	aspect-ratio: 6/4;
	margin: 0 auto;
}
.whychoose-list .item-title {
	font-size: 1.2em;
	font-weight: 700;
	color: var(--primary-color2);
}

.feedback-list .item {
	padding: 0 10px;
}
.feedback-list .item-inner {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #f9f5e6;
	padding: 20px;
	border-radius: 10px;
}
.feedback-list .item-image {
	margin-bottom: 20px;
}
.feedback-list .item-image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto;
	object-fit: cover;
}
.feedback-list .item-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin-top: 10px;
}
.feedback-list .item-meta .item-author {
	font-weight: 700;
}

.grmore-btn {
	margin-top: 30px;
}

.partners {
	margin-bottom: 60px;
}
.partners-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.partners-list .item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	width: 150px;
	border: 20px solid white;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
	background-color: white;
	background-size: contain !important;
	transition-duration: 1s !important;
}
.partners-list .item img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	transition: all 280ms 0ms ease-in-out;
}
.partners-list .item:nth-child(16n+1) {
	transition-delay: 65ms;
}
.partners-list .item:nth-child(16n+2) {
	transition-delay: 130ms;
}
.partners-list .item:nth-child(16n+3) {
	transition-delay: 195ms;
}
.partners-list .item:nth-child(16n+4) {
	transition-delay: 260ms;
}
.partners-list .item:nth-child(16n+5) {
	transition-delay: 325ms;
}
.partners-list .item:nth-child(16n+6) {
	transition-delay: 390ms;
}
.partners-list .item:nth-child(16n+7) {
	transition-delay: 455ms;
}
.partners-list .item:nth-child(16n+8) {
	transition-delay: 520ms;
}
.partners-list .item:nth-child(16n+9) {
	transition-delay: 585ms;
}
.partners-list .item:nth-child(16n+10) {
	transition-delay: 650ms;
}
.partners-list .item:nth-child(16n+11) {
	transition-delay: 715ms;
}
.partners-list .item:nth-child(16n+12) {
	transition-delay: 780ms;
}
.partners-list .item:nth-child(16n+13) {
	transition-delay: 845ms;
}
.partners-list .item:nth-child(16n+14) {
	transition-delay: 910ms;
}
.partners-list .item:nth-child(16n+15) {
	transition-delay: 975ms;
}
.partners-list .item:nth-child(16n+16) {
	transition-delay: 1040ms;
}
@media (min-width: 1025px) {
	.partners-list .item {
		width: calc(20% - 40px);
	}
}

.tours {
	margin-bottom: 60px;
}
.tours-laius {
	position: relative;
}
.tours-laius-wrap {
	max-width: 1025px;
	background-color: #fff;
	margin-top: -30px !important;
}
.tours-laius-inner {
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
}
.tours-laius-inner .subtitle {
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
.tours-laius-inner .sectitle {
	font-size: 2em;
	font-weight: bold;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
	color: var(--primary-color);
}
.tours-laius-inner .box-content {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
}
@media (min-width: 1025px) {
	.tours-laius-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
.tours-list {
	margin-top: 70px;
}
.tours-item + .tours-item {
	margin-top: 40px;
}
@media (min-width: 1025px) {
	.tours-item + .tours-item {
		margin-top: 80px;
	}
}
.tours-item .col-image {
	position: relative;
	overflow: hidden;
}
.tours-item .col-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto 3/2;
	transition: all 280ms 0ms ease-in-out;
}
.tours-item-title {
	font-size: 1.5625em;
	font-weight: bold;
}
.tours-item-title a {
	color: var(--primary-color);
}
.tours-item-desc {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
	margin-top: 10px;
}
.tours-item-price {
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: var(--second-color);
	margin-top: 10px;
}
.tours-item-price .price {
	color: currentColor;
}
.tours-item-price .price-old {
	color: var(--primary-color);
	margin-left: 10px;
}
.tours-item .tours-grbtn {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
}
.tours-item:hover .col-image img {
	transform: scale(1.1);
	transition: all 280ms 0ms ease-in-out;
}
@media (min-width: 1025px) {
	.tours-item:nth-child(odd) .col-image {
		order: 2;
	}
	.tours-item:nth-child(odd) .col-content {
		order: 1;
		padding-right: 80px;
	}
	.tours-item:nth-child(even) .col-image {
		order: 1;
	}
	.tours-item:nth-child(even) .col-content {
		order: 2;
		padding-left: 80px;
	}
}
.tours-detail-laius {
	position: relative;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.tours-detail-laius-wrap {
	background-color: #fff;
	margin-top: -30px !important;
	padding-left: 0;
	padding-right: 0;
}
.tours-detail-laius-inner {
	padding-top: 40px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 1025px) {
	.tours-detail-laius-inner {
		padding-left: 80px;
		padding-right: 80px;
	}
}
.tours-detail-topneg {
	max-width: 1024px;
	margin: 0 auto;
	margin-bottom: 40px;
	display: grid;
	width: 100%;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.tours-detail-topneg .item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px;
}
.tours-detail-topneg .item-icon {
	display: flex;
	height: 50px;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.tours-detail-topneg .item-icon i {
	font-size: 44px;
	margin-left: auto;
	margin-right: auto;
	color: var(--second-color);
}
.tours-detail-topneg .item-desc {
	letter-spacing: 4px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}
@media (max-width: 767.98px) {
	.tours-detail-topneg {
		grid-template-columns: repeat(2, 1fr);
	}
}
.tours-detail-desc {
	position: relative;
	display: block;
	line-height: 29.6px;
	margin-top: 80px;
	margin-bottom: 80px;
	max-width: 1025px;
	margin-left: auto;
	margin-right: auto;
	font-style: italic;
	font-size: 1.25em;
	text-align: center;
}
.tours-detail-section .block-title {
	position: relative;
	margin-bottom: 40px;
	margin-top: 40px;
}
.tours-detail-section .block-title.mt-large {
	margin-top: 80px;
}
.tours-detail-section .block-title .title {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	padding: 20px;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-align: center;
	font-size: 1.25em;
	font-weight: 700;
	color: var(--primary-color);
}
.tours-detail-section .block-content .box-desc-inner {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
}
.tours-detail-highlights .block-content-wrap .box-desc-highlights {
	position: relative;
	display: block;
}
.tours-detail-highlights .block-content-wrap .box-contentbtn .btn-wrap a {
	margin-bottom: 10px;
}
.tours-detail-highlights .block-content-wrap .box-contentbtn .share-group .headline {
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-top: 40px;
	text-align: center;
}
.tours-detail-highlights .block-content-wrap .box-contentbtn .share-group-list {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 1025px) {
	.tours-detail-itinerary .block-content-wrap .box-image-inner {
		position: sticky;
		top: 140px;
	}
}
.tours-detail-gallery-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.tours-detail-gallery-inner .item {
	display: block;
}
.tours-detail-gallery-inner .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto 3/2;
}
@media (max-width: 767.98px) {
	.tours-detail-gallery-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}
.tours-detail-inner {
	max-width: 1025px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px;
}
@media (min-width: 1025px) {
	.tours-detail-inner {
		padding-left: 80px;
		padding-right: 80px;
	}
}
.tours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}
.tours-grid .tours-item {
	position: relative;
	display: block;
	width: 100%;
	transition: all 280ms 0ms ease-in-out;
}
.tours-grid .tours-item+.tours-item{
	margin-top:0 !important;
}
.tours-grid .tours-item .tours-item-inner {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
.tours-grid .tours-item .tours-item-inner .box-image {
	position: relative;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
}
.tours-grid .tours-item .tours-item-inner .box-image::after {
	position: absolute;
	display: block;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: transparent;
	content: " ";
	transition: all 125ms 0ms cubic-bezier(0, 0.005, 1, 1);
}
.tours-grid .tours-item .tours-item-inner .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto 3/2;
	transition: all 280ms 0ms ease-in-out;
}
.tours-grid .tours-item .tours-item-inner .box-image .mta-meta {
	position: absolute;
	display: block;
	z-index: 10;
	top: 10px;
	left: 10px;
}
.tours-grid .tours-item .tours-item-inner .box-image .mta-meta .mta-item {
	position: relative;
	display: block;
	padding: 5px 10px;
	font-size: 12px;
	text-align: center;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	background-color: var(--second-color);
}
.tours-grid .tours-item .tours-item-inner .box-content {
	position: relative;
	margin-top: -20px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #fff;
	z-index: 5;
	top: 0;
	padding-left: 20px;
	padding-right: 20px;
	right: 0;
	width: calc(100% - 20px);
	transition: all 500ms 0ms cubic-bezier(0, 0, 0.025, 1.02);
	display: flex;
	flex-direction: column;
	flex: 1;
}
.tours-grid .tours-item .tours-item-inner .box-content::before {
	position: absolute;
	display: block;
	width: 50%;
	height: 1px;
	top: 0;
	left: 0;
	content: "";
	background-color: #d78720;
}
.tours-grid .tours-item .tours-item-inner .box-content .box-title {
	font-size: 1.5625em;
	font-weight: bold;
}
.tours-grid .tours-item .tours-item-inner .box-content .box-title a {
	color: var(--primary-color);
	width: 100%;
	padding: 10px 0;
	display: block;
}
.tours-grid .tours-item .tours-item-inner .box-content .box-desc {
	flex: 1;
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
	margin-top: 10px;
}
.tours-grid .tours-item .tours-item-inner .box-content .box-grbtn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.tours-grid .tours-item .tours-item-inner:hover .box-image img {
	transform: scale(1.03);
}
.tours-grid .tours-item .tours-item-inner:hover .box-content {
	right: -20px;
}
.tours-grid .tours-item .tours-item-inner:hover .box-grbtn .btn {
	color: var(--second-color);
}
.tours-grid .tours-item .tours-item-inner:hover .box-grbtn .btn::after {
	left: 0;
	width: calc(100% - 0px);
}
@media (min-width: 1025px) {
	.tours-grid {
		gap: 40px;
	}
}
@media (max-width: 767.98px) {
	.tours-grid {
		grid-template-columns: 1fr;
	}
}

#ancre-included {
	scroll-margin-top: 100px;
}

.bg-contact {
	position: relative;
}
.bg-contact-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 280ms 0ms ease-in-out;
	overflow: hidden;
	min-width: 100%;
	z-index: 0;
}
.bg-contact-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
}
.bg-contact-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bg-contact .box-wrap {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
	text-align: center;
}
.bg-contact .box-wrap .title {
	color: #fff;
	margin-bottom: 30px;
}
.bg-contact .box-wrap .gr-btn {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 20px;
}
@media (min-width: 800px) {
	.bg-contact .box-wrap .gr-btn .btn {
		width: 250px;
	}
}
@media (min-width: 1025px) {
	.bg-contact .box-wrap {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

.blogs {
	position: relative;
	padding-bottom: 60px;
}
.blogs-list-item {
	position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-bottom: 30px;
}
.blogs-list-item .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3/2;
}
.blogs-list-item .box-content {
	padding: 15px;
}
.blogs-list-item .box-content .box-title {
	font-size: 1.5625em;
	font-weight: bold;
	margin-bottom: 10px;
}
.blogs-list-item .box-content .box-title a {
	color: var(--primary-color);
}
.blogs-list-item .box-content .box-meta {
	font-size: 14px;
	color: #878787;
}
.blogs-list-item .box-content .box-desc {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
}
.blogs-sidebar {
	position: sticky;
	top: 130px;
}
.blogs-sidebar .widget + .widget {
	margin-top: 20px;
}
.blogs-sidebar .widget-title {
	font-weight: bold;
	font-size: 20px;
	color: var(--primary-color);
}
.blogs-sidebar .widget-categories .widget-content ul li {
	display: block;
	border-bottom: 1px solid #000;
}
.blogs-sidebar .widget-categories .widget-content ul li a {
	display: block;
	padding: 7px 10px;
	transition: all 0.3s ease-in-out;
}
.blogs-sidebar .widget-categories .widget-content ul li a:hover {
	transform: translateX(5px);
	color: var(--second-color);
	transition: all 0.3s ease-in-out;
}
.blogs-detail {
	position: relative;
	padding: 70px 0;
}
.blogs-detail-slide {
	margin-bottom: 20px;
}
.blogs-detail-slide .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 6/4;
	max-height: 500px;
}
.blogs-detail-title {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
	color: var(--primary-color);
}
.blogs-detail-meta {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}
.blogs-detail-content {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 29.6px;
}

.buildtour {
	position: relative;
	padding: 80px 0;
}
.buildtour-wrap {
	background-color: var(--second-color);
	padding: 40px;
}
.buildtour-form .form-group label {
	color: #fff;
	font-weight: 600;
}
.buildtour-form .type-airport-transfer {
	display: flex;
	align-items: center;
	flex-wrap:wrap;
	gap: 40px;
}
@media(max-width:550px){
	.buildtour-form .type-airport-transfer{
		gap:20px;
	}
}
.buildtour-form .type-airport-transfer label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.buildtour-form .type-airport-transfer input[type=checkbox] {
	width: 20px;
	height: 20px;
}
.buildtour-form .type-airport-transfer input[type=checkbox]:checked:before {
	background-color: var(--primary-color);
}

.booking {
	position: relative;
	padding-bottom: 70px;
}
.booking-form-inner {
	border: 1px solid var(--second-color);
	padding: 40px;
}
@media(max-width:576px){
	.booking-form-inner{
		padding:20px;
	}
}
.booking-form .form-group > label {
	font-weight: 700;
}
.booking-form .preferable-contact > label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: 30px;
	cursor: pointer;
}
.booking-form .preferable-contact > label input[type=radio] {
	width: 20px;
	height: 20px;
}
.booking-form .preferable-contact > label input[type=radio]:checked::before {
	background-color: red;
}
.booking-form .numbers-of-guests{
	width:100%;
	max-width:700px;
}
.booking-form .numbers-of-guests .item {
	display: flex;
	align-items: center;
}
.booking-form .numbers-of-guests .item + .item {
	margin-top: 10px;
}
.booking-form .numbers-of-guests .item .item-input {
	width: 50px;
	padding: 0;
	height: 40px;
	text-align: center;
}
.booking-form .numbers-of-guests .item .label-text {
	flex: 1;
	padding-left: 10px;
	padding-right: 10px;
	height: 40px;
	line-height: 40px;
	border: 1px solid var(--second-color);
	border-left: 0;
	font-size:14px;
}
.booking-form .numbers-of-guests .item .price {
	height: 40px;
	width: 80px;
	line-height: 40px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid var(--second-color);
	border-left: 0;
	font-weight: 600;
	background-color: #e3e1e1;
	color: currentColor;
	font-size:14px;
}
@media(max-width:480px){
	.booking-form .numbers-of-guests .item .price{
		display:none;
	}
}
.booking-form .tour-guide > label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: 30px;
	cursor: pointer;
}
.booking-form .tour-guide > label input[type=radio] {
	width: 20px;
	height: 20px;
}
.booking-form .tour-guide > label input[type=radio]:checked::before {
	background-color: red;
}
.booking-form .total-group .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.booking-form .total-group .item:not(:last-child) {
	border-bottom: 1px solid #ededed;
}
.booking-form .total-group .item .item-name {
	flex: 1;
	padding: 5px;
	font-weight: 600;
	text-align: right;
}
.booking-form .total-group .item .item-value {
	flex: 0 1 250px;
	padding: 5px;
	font-weight: 600;
	text-align: right;
}
.booking-form .total-group .item.total-over {
	font-size: 20px;
	color: var(--second-color);
}
.booking-form .total-group .item.total-over .item-name {
	font-weight: bold;
}
.booking-form .total-group .item.total-over .item-value {
	font-weight: bold;
}
.booking-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 60px;
}
.booking-gallery .item {
	display: block;
}
.booking-gallery .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto 3/2;
}

.flatpickr-day.booked {
	background-color: #ccc;
	color: #000;
}

/* Ngày không thể chọn - đỏ */
.flatpickr-day.disabled-date {
	background-color: #f44336 !important;
	color: white !important;
	cursor: not-allowed;
}

.checkout {
	position: relative;
	padding-bottom: 70px;
}
.checkout-tour-info .item-title {
	font-size: 1.25em;
	font-weight: 700;
}
.checkout-tour-info .item-date {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}
.checkout-tour-info .item-time {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}
.checkout-tour-promo {
	position: relative;
	margin-top: 60px;
	margin-bottom: 30px;
}
.checkout-tour-promo label {
	font-weight: 700;
	color: var(--second-color);
}
.checkout-tour-promo .promogroup {
	display: flex;
	align-items: center;
	gap: 10px;
}
.checkout-tour-promo .promogroup input {
	flex: 0 1 300px;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}
.checkout-tour-promo .promogroup button {
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
}
.checkout-tour-total .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ededed;
}
.checkout-tour-total .item .item-name {
	padding: 5px;
}
.checkout-tour-total .item .item-value {
	padding: 5px;
	font-weight: 600;
}
.checkout-tour-total .item.total-over {
	font-size: 20px;
	color: var(--second-color);
	font-weight: bold;
}
.checkout-tour-total .item.total-over .item-value {
	font-weight: bold;
}

.payment {
	position: relative;
	padding-bottom: 70px;
}
.payment-wrap-inner .head-note {
	background-color: var(--second-color);
	color: #fff;
	padding: 10px;
}
.payment-wrap-inner-content {
	border: 1px solid var(--second-color);
	padding: 20px 10px 30px;
}
.payment-wrap-inner-content .item {
	margin-bottom: 20px;
}
.payment-wrap-inner-content .item-head {
	font-size: 20px;
	font-weight: 700;
	border-bottom: 1px solid var(--second-color);
	margin-bottom: 10px;
	color: var(--primary-color);
}
.payment-wrap-inner-content .item-content .detail-tour-title {
	font-size: 18px;
	margin-bottom: 10px;
}
.payment-wrap-inner-content .item-content .text-info {
	color: currentColor !important;
	display: block;
	margin-bottom: 5px;
}
.payment-wrap-inner-content .item-content .box-info {
	display: block;
	margin-bottom: 5px;
}
.payment-wrap-inner-content .item-content .box-info span:first-child {
	font-weight: 700;
}
.payment-wrap-inner-content .item-content .type-payment-persent {
	margin-bottom: 10px;
}
.payment-wrap-inner-content .item-content .type-payment-persent > label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: 30px;
	cursor: pointer;
}
.payment-wrap-inner-content .item-content .item-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 20px;
	border-bottom: 1px solid #ededed;
}
.payment-wrap-inner-content .item-content .item-total .item-name,
.payment-wrap-inner-content .item-content .item-total .item-value {
	padding: 5px;
}
.payment-wrap-inner-content .item-content .note-text {
	background-color: red;
	color: #fff;
	padding: 10px;
	margin-top: 20px;
}

.faqs {
	position: relative;
	padding-bottom: 70px;
}
.faqs-list {
	position: relative;
	width: 100%;
}
.faqs-item {
	border-top: 2px solid var(--primary-color);
}
.faqs-item:last-child {
	border-bottom: 2px solid var(--primary-color);
}
.faqs-item .item-head {
	font-size: 20px;
	color: var(--primary-color);
	font-family: var(--primary-font);
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
	font-weight: 500;
}
.faqs-item .item-head .icon-arrow {
	width: 20px;
	transition: all 0.3s ease-in-out;
	justify-self: right;
	display: flex;
	align-self: center;
}
.faqs-item .item-head.active .icon-arrow {
	transform: rotate(180deg);
	transition: all 0.3s ease-in-out;
}
.faqs-item .item-content {
	display: none;
	padding-bottom: 20px;
}

.contact {
	position: relative;
	padding: 70px 0;
}
.contact-wrap-inner {
	background-color: var(--second-color);
	padding: 20px;
	color: #fff;
}
.contact-wrap-inner a {
	color: inherit;
}
@media (min-width: 1025px) {
	.contact-wrap-inner {
		padding: 40px;
	}
}
.contact-wrap-info {
	padding: 20px;
	width: 100%;
	height: 100%;
}
@media (min-width: 1025px) {
	.contact-wrap-info {
		padding: 40px;
	}
}

.footer {
	position: relative;
	background-color: #fff;
	padding: 30px 0;
	color: inherit;
	border-top: 1px solid #efefef;
}
.footer-info {
	text-align: center;
}
.footer-info a {
	color: inherit;
}
.footer-info p:last-child {
	margin-bottom: 0;
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
.footer-social a {
	display: inline-block;
	font-size: 38px;
	color: var(--second-color);
}
.footer-logo img{
	max-width:250px;
	margin:0 auto;
}
/*# sourceMappingURL=style.css.map */
@media(max-width:991.98px){
	.footer-logo{
		margin-bottom:20px;
		text-align:center;
	}
	.footer-social{
		margin-top: 20px;
		justify-content: center;
	}
}

.team-list .item .item-image img{
	aspect-ratio: 1/1;
	width:100%;
	height:100%;
	object-fit:cover;
}
.team-list .item .item-title{
	font-size: 1.5625em;
	font-weight: bold;
	margin-top:20px;
}
.team-list .item .line {
	width: 30%;
	height: 1px;
	background: #d78720;
	display: inline-block;
}
.team-list .item .item-desc{
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-top:10px;
}