@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
	--normal-font: "Poppins", sans-serif;
	--normal-color: #0f0f0f;
	/*--primary-color: #ea5b31;*/
	--primary-color: #017f44;
	--grey-color: #979797;
	--second-color: #ea5b31;
}

*,
*: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;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-family: var(--normal-font);
	font-size: 1.5rem;
	font-style: normal;
	line-height: 1.5;
	position: relative;
	color: var(--normal-color);
}

.ov-hidden {
	overflow: hidden;
}

.container {
	max-width: 1360px;
}

a {
	color: var(--normal-color);
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: none;
	color: var(--normal-color);
}

p:last-child {
	margin-bottom: 0;
}

button {
	border-color: transparent;
	outline: 0;
}

.row-collapse {
	margin-left: 0;
	margin-right: 0;
}
.row-collapse > div[class~=col], .row-collapse > div[class^=col-] {
	padding-left: 0;
	padding-right: 0;
}

.row-small {
	margin-left: -10px;
	margin-right: -10px;
}
.row-small > div[class~=col], .row-small > div[class^=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.tb-space {
	padding: 70px 0;
}

.tb-space-top {
	padding-top: 70px;
}

.tb-space-bottom {
	padding-bottom: 70px;
}

.heading-title {
	margin-bottom: 30px;
}
.heading-title .sectitle {
	margin-bottom: 10px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 600;
}
.heading-title .subtitle {
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-color);
}
.heading-title .grbtn {
	margin-top: 10px;
}
@media (max-width: 1350px) {
	.heading-title .sectitle {
		font-size: 3.8rem;
	}
}
@media (max-width: 576px) {
	.heading-title .sectitle {
		font-size: 3rem;
	}
}

.btn,
button {
	cursor: pointer;
	border: 0;
	padding: 10px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: inherit;
	word-break: break-all;
	font-size: 2rem;
}

.btn-view {
	display: inline-block;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border: 0;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
}

.slick-prev {
	left: 10px;
}

.slick-next {
	right: 10px;
}

.btn-more {
	display: inline-block;
	width: fit-content;
	background-color: #fff;
	padding: 12px 25px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.btn-more i {
	margin-left: 10px;
}

.btn-more-border {
	border: 1px solid #000;
}

.btn-details {
	display: inline-block;
	width: fit-content;
	padding: 6px 28px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	background-color: #1d872e;
	transition: all 0.3s ease;
}
.btn-details:hover {
	background-color: var(--primary-color);
	color: #fff;
	transition: all 0.3s ease;
}

.btn-expand {
	cursor: pointer;
}
.btn-expand .cta-close {
	display: none;
}
.btn-expand.active .cta-expand {
	display: none;
}
.btn-expand.active .cta-close {
	display: block;
}

.hidden-desktop {
	display: block;
}
@media (max-width: 576px) {
	.hidden-desktop {
		display: none;
	}
}

.hidden-mobile {
	display: none;
}
@media (max-width: 576px) {
	.hidden-mobile {
		display: block;
	}
}

@media (min-width: 1200px) {
	.col-xl-25 {
		max-width: 20%;
		flex: 0 0 20%;
	}
}
@media (min-width: 992px) {
	.col-lg-25 {
		max-width: 20.8333333333%;
		flex: 0 0 20.8333333333%;
	}

	.col-lg-24 {
		max-width: 20%;
		flex: 0 0 20%;
	}

	.col-lg-35 {
		max-width: 29.1666666667%;
		flex: 0 0 29.1666666667%;
	}
}
.btn-filter,
.close-filter {
	display: none;
}

@media (max-width: 991.98px) {
	.btn-filter {
		text-transform: uppercase;
		padding: 8px;
		border: 1px solid gray;
		text-align: center;
		font-size: 15px;
		margin-bottom: 12px;
		border-radius: 5px;
		display: block;
	}

	.close-filter {
		display: flex;
		position: absolute;
		right: 0;
		top: 0;
		height: 25px;
		width: 25px;
		align-items: center;
		justify-content: center;
		background-color: #1f2d5a;
		border-radius: 2px;
	}
}
.header {
	position: relative;
	z-index: 999;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	background-image: url("../images/bg-header.jpg");
}
.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	display: flex;
	align-items: center;
}
/*@media (max-width: 991.98px) {
	.header-logo {
		flex: 1;
	}
}*/
@media(max-width:576px){
	.header-logo{
		flex: 1;
		justify-content: center;
	}
}
.logo-header{
	max-width: 110px;
	margin: 4px 0;
}
.header .list-bar {
	margin-right: 30px;
	cursor: pointer;
}
.header .list-bar .bar {
	width: 28px;
	height: 2px;
	background: #000;
	margin: 6px 0px;
}
@media (max-width: 1200px) {
	.header .list-bar {
		display: none;
	}
}
.header .list-bar-mobile {
	display: none;
}
@media (max-width: 1200px) {
	.header .list-bar-mobile {
		display: block;
		flex: 1;
		margin-right: 0;
	}
}
@media(max-width:576px){
	.header .list-bar-mobile{
		flex: none;
	}
}
.header-menu {
	display: flex;
	align-items: center;
}
.header-menu nav ul {
	display: flex;
	align-items: center;
}
.header-menu nav ul li {
	position: relative;
}
.header-menu nav ul li a {
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 26px 20px;
	display: block;
	color: var(--normal-color);
}
.header-menu nav ul li a i {
	margin-left: 4px;
}
.header-menu nav ul li .sub-menu {
	position: absolute;
	top: 100%;
	min-width: 240px;
	padding: 3px 0px;
	background-color: #3c3a3a;
	display: none;
}
.header-menu nav ul li .sub-menu li:not(:last-child) {
	border-bottom: 1px solid #828282;
}
.header-menu nav ul li .sub-menu li a {
	font-size: 1.4rem;
	text-transform: unset;
	color: #fff;
	padding: 5px 10px;
	font-weight: 400;
}
.header-menu nav ul li .sub-menu li a:hover {
	color: var(--primary-color);
}
.header-menu nav ul li:hover .sub-menu {
	display: block;
}
@media (max-width: 1200px) {
	.header-menu {
		display: none;
	}
}
.header .hotline {
	font-size: 16px;
	margin-left: 15px;
	font-weight: 600;
}
.header .hotline-link {
	display: flex;
	align-items: center;
	gap: 6px;
}
.header .hotline i {
	color: #25D366;
	font-size: 2.6rem;
}
.header-btn-plan .btn-plan {
	color: white;
	background-color: var(--primary-color);
	font-size: 17px;
	padding: 8px 24px;
	font-weight: 600;
	border-radius: 5px;
}
.header-btn-plan .btn-whatsapp {
	color: white;
	background-color: #346c40;
	font-size: 17px;
	padding: 8px 24px;
	font-weight: 600;
	border-radius: 5px;
	display: none;
}
@media (max-width: 1200px) {
	.header-btn-plan {
		flex: 1;
		display: flex;
		justify-content: right;
	}
}
@media (max-width: 576px) {
	.header-btn-plan {
		display: none;
	}
}
.header.fixed {
	position: fixed;
	animation: to 0.7s ease-in-out;
}

@keyframes to {
	from {
		transform: translateY(-100px);
	}
	to {
		transform: translateY(0px);
	}
}
.menu-fixed {
	position: fixed;
	z-index: 999999;
	height: 100%;
	width: 430px;
	top: 0;
	left: 0;
	background: #fff;
	transition: all 200ms linear 0s;
	transform: translateX(-100%);
	padding: 20px;
	background-image: url("../images/bg_nav.jpg");
	background-repeat: no-repeat;
	background-position: top left;
	background-repeat: no-repeat;
	overflow-y: scroll;
}
.menu-fixed ul {
	padding: 0;
	margin: 0;
}
.menu-fixed ul li a {
	font-size: 1.6rem;
	font-weight: 400;
	padding: 10px 0px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
	width: 100%;
	line-height: normal;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	text-transform: none;
}
.menu-fixed .close-menu {
	overflow: hidden;
	border-bottom: 1px solid #fff;
}
.menu-fixed .close-menu > a {
	float: right;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	position: absolute;
	right: 15px;
	top: 10px;
}
.menu-fixed .close-menu > a svg {
	color: #222;
	height: 16px;
}
.menu-fixed .contact-desktop {
	padding: 30px 15px;
}
.menu-fixed .contact-desktop-top {
	margin-bottom: 40px;
}
.menu-fixed .contact-desktop__img {
	text-align: center;
}
.menu-fixed .contact-desktop__img img{
	max-width: 150px;
}
.menu-fixed .contact-desktop-desc {
	font-size: 1.6rem;
	color: #686868;
	margin-top: 10px;
}
.menu-fixed .contact-desktop-picture .row {
	margin-left: -7px;
	margin-right: -7px;
}
.menu-fixed .contact-desktop-picture .row > div[class=col], .menu-fixed .contact-desktop-picture .row > div[class^=col-] {
	padding-left: 7px;
	padding-right: 7px;
}
.menu-fixed .contact-desktop-picture .picture-box {
	margin-bottom: 14px;
	border-radius: 8px;
	overflow: hidden;
}
.menu-fixed .contact-desktop-picture .picture-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.menu-fixed .contact-desktop-info h2 {
	color: var(--normal-color);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 40px;
}
.menu-fixed .contact-desktop-info ul li {
	margin-bottom: 40px;
}
.menu-fixed .contact-desktop-info ul li label {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 12px;
}
.menu-fixed .contact-desktop-info ul li p {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: 0px;
	color: var(--grey-color);
	padding-bottom: 0px;
	margin-bottom: 0;
}
.menu-fixed .contact-desktop-social ul {
	display: flex;
}
.menu-fixed .contact-desktop-social ul li {
	margin-right: 10px;
	margin-bottom: 0;
}
.menu-fixed .contact-desktop-social ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: var(--primary-color);
	border-radius: 4px;
	padding: 0;
	color: #fff;
	font-size: 1.6rem;
}
@media (max-width: 1200px) {
	.menu-fixed .contact-desktop {
		display: none;
	}
}
.menu-fixed .nav-main {
	display: none;
}
.menu-fixed .nav-main li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-fixed .nav-main li .sub-menu {
	display: none;
}
.menu-fixed .nav-main li .sub-menu li {
	border-bottom: 1px solid #cdcdcd9c;
	padding-left: 10px;
}
.menu-fixed .nav-main li .sub-menu li a {
	font-size: 1.4rem;
}
@media (max-width: 1200px) {
	.menu-fixed .nav-main {
		display: block;
	}
}
.menu-fixed .header-btn-plan {
	display: none;
}
@media (max-width: 1200px) {
	.menu-fixed .header-btn-plan {
		display: flex;
	}
}
@media (max-width: 576px) {
	.menu-fixed .header-btn-plan {
		gap: 10px;
		margin-top: 20px;
	}
	.menu-fixed .header-btn-plan .btn-whatsapp {
		display: block;
	}
	.menu-fixed .header-btn-plan .btn-plan {
		width: 50%;
		text-align: center;
		font-size: 1.4rem;
		padding: 8px 9px;
	}
}
.menu-fixed.show {
	transform: translateX(0);
}
@media (max-width: 1200px) {
	.menu-fixed {
		width: 100%;
	}
}

.banner {
	position: relative;
}

.banner-page {
	position: relative;
}
.banner-page-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.banner-page-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-page-head {
	position: relative;
	padding: 150px 0;
	background-color: #00000069;
}
.banner-page-title {
	color: #fff;
	font-size: 3.4rem;
	text-align: center;
}
.banner-page-meta {
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-page-meta li a {
	color: #fff;
	padding: 0 25px;
	display: block;
	font-weight: 500;
	margin-top: 20px;
}

.service {
	position: relative;
	background-image: url("../images/bg_service.webp");
	background-repeat: no-repeat;
}
.service-card {
	position: relative;
}
.service-card__img {
	border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	height: 80px;
	width: 80px;
	background-color: #f9f4f0;
	padding: 14px;
	margin: 0 auto;
	text-align: center;
}
.service-card__content {
	text-align: center;
}
.service-card__content .title {
	font-size: 2rem;
	font-weight: 500;
	margin: 10px 0 5px 0;
}
.service-card__content .desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-color);
}

.destinations-list-wrap {
	display: flex;
	flex-wrap: wrap;
}
.destinations-list-wrap li {
	width: 50%;
	margin-top: 3px;
}
.destinations-list-wrap li a {
	font-size: 1.5rem;
	color: var(--normal-color);
	margin-bottom: 1px;
	display: block;
}
.destinations-list-wrap li a span {
	color: var(--grey-color);
}
.destinations-list-wrap li a:hover {
	color: var(--primary-color);
}
@media (max-width: 991.98px) {
	.destinations-list-wrap li a {
		text-align: center;
	}
}
.destinations-slide .item {
	padding: 0 15px;
}
.destinations-slide .item-inner {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.destinations-slide .item-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4/6;
}
@media (max-width: 576px) {
	.destinations-slide .item-inner img {
		aspect-ratio: unset;
		height: 370px;
	}
}
.destinations-slide .item-inner .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-content: end;
	padding: 20px;
	padding: 25px;
	border-radius: 10px;
	background: #20346c;
	background: linear-gradient(0deg, #0d2b07 5%, rgba(255, 255, 255, 0) 48%);
}
.destinations-slide .item-inner .content .title {
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
}
@media (max-width: 1700px) {
	.destinations-slide .item-inner .content .title {
		font-size: 1.6rem;
	}
}
.destinations-slide .item-inner .content .desc {
	color: #fff;
	font-size: 1.3rem;
}
@media (max-width: 1700px) {
	.destinations-slide .item-inner .content {
		padding: 15px;
	}
}
@media (max-width: 1200px) {
	.destinations-slide .item {
		padding: 0 5px;
	}
}
@media (max-width: 991.98px) {
	.destinations-slide {
		margin-top: 15px;
	}
}
@media (max-width: 576px) {
	.destinations .heading-title {
		text-align: center;
	}
}

.hover-effect_1 {
	position: relative;
	overflow: hidden;
}
.hover-effect_1 img {
	transform: scale(1);
	transition: transform 0.6s ease-in-out;
}
.hover-effect_1:after {
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	content: "";
	z-index: 1;
}
.hover-effect_1:hover img {
	transform: scale(1.1);
	transition: transform 0.6s ease-in-out;
}
.hover-effect_1:hover:after {
	height: 250%;
	transition: all 0.6s linear;
	background-color: transparent;
}

.video-wrap {
	position: relative;
	padding: 70px;
	overflow: hidden;
	border-radius: 20px;
}
.video-wrap::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: black;
	opacity: 0.5;
}
.video-wrap .heading-title .sectitle {
	color: #fff;
}
.video-wrap .heading-title .subtitle {
	color: #fff;
}
@media (max-width: 991.98px) {
	.video-wrap {
		padding: 50px;
	}
}
@media (max-width: 576px) {
	.video-wrap {
		padding: 30px;
	}
}
.video-box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	line-height: 1;
}
.video-box .play-btn {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
}
@media (max-width: 991.98px) {
	.video-box {
		margin-top: 20px;
		margin-bottom: 15px;
	}
}
.video-btn {
	display: flex;
	position: relative;
	margin: 0 auto;
}
.video-btn .play {
	position: relative;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 24px;
	line-height: 70px;
	border: 2px solid #fff;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-btn .play svg {
	height: 24px;
	fill: white;
	width: 24px;
}
.video-btn::after {
	content: "";
	background-color: #fff;
	height: 70px;
	width: 70px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 1;
	opacity: 0.4;
	animation: pulse-border 1500ms linear infinite;
}
.video-card .video-title {
	font-size: 15px;
	display: block;
	font-weight: 400;
	margin-top: 10px;
}
@media (max-width: 767.98px) {
	.video-card {
		margin-bottom: 15px;
	}
}
.video .gr-btn {
	text-align: center;
	margin-top: 20px;
}

@keyframes pulse-border {
	80% {
		opacity: 0.4;
	}
	100% {
		height: 90px;
		width: 90px;
		opacity: 0;
	}
}
.tours-card {
	box-shadow: rgba(0, 0, 0, 0.13) 0 1px 3px;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
	background-color: #fff;
}
.tours-card__img {
	position: relative;
}
.tours-card__img a {
	display: inline-block;
}
.tours-card__img .best_selling {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary-color);
	padding: 5px 15px;
	border-radius: 25px;
	font-size: 13px;
	color: #fff;
}
.tours-card__content {
	padding: 10px 10px 20px 10px;
}
.tours-card__content .title {
	font-size: 2rem;
	color: var(--normal-color);
	font-weight: 600;
}
.tours-card__content .title a {
	color: inherit;
}
.tours-card__content .meta {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1px;
	margin: 3px 0 10px;
	display: flex;
}
.tours-card__content .meta li {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1.4rem;
	padding: 0 5px;
	position: relative;
	text-transform: capitalize;
}
.tours-card__content .meta li:first-child {
	padding-left: 0;
}
.tours-card__content .meta li:not(:last-child)::before {
	content: " ";
	position: absolute;
	right: 0;
	height: 55%;
	width: 1px;
	background-color: #989994;
	top: 23%;
}
.tours-card__content .desc {
	font-size: 1.5rem;
	color: var(--grey-color);
	margin-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: 72px;
}
.tours-card__content .gr-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tours-card__content .gr-btn .btn-map {
	color: #108fe3;
	font-size: 1.4rem;
	font-weight: 400;
}
.tours-card__content .gr-btn .btn-map span {
	display: flex;
	align-items: center;
	gap: 10px;
}
.tours-card__content .gr-btn .btn-map span img {
	height: 30px;
}
.tours-detail-slide {
	padding-top: 15px;
	background-color: #f9f4f0;
}
.tours-detail-slide .item {
	padding-inline: 10px;
}
.tours-detail-top {
	padding: 30px 0px 25px 0px;
	background-color: #f9f4f0;
}
.tours-detail-top .tour-detail-title {
	font-size: 30px;
	margin-bottom: 10px;
}
.tours-detail-top .tour-detail-meta {
	display: flex;
	align-items: center;
}
.tours-detail-top .tour-detail-meta li {
	color: #0f0f0f;
	font-weight: 400;
	font-size: 14px;
	padding: 0px 10px;
	padding-left: 10px;
	position: relative;
}
.tours-detail-top .tour-detail-meta li:first-child {
	padding-left: 0;
}
.tours-detail-top .tour-detail-meta li:not(:last-child)::before {
	content: " ";
	position: absolute;
	right: 0;
	height: 55%;
	width: 1px;
	background-color: #989994;
	top: 23%;
}
.tours-detail-body {
	padding-top: 50px;
}
.tours-detail-body .tour-detail-content_box {
	margin-bottom: 25px;
}
.tours-detail-body .tour-detail-content_box img {
	width: 100%;
	border-radius: 10px;
}
.tours-detail-body .tour-detail-content_box .box-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tours-detail-body .tour-detail-content_box .box-desc {
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--grey-color);
}
.tours-detail-body .tour-detail-content_box .box-desc ul {
	list-style: disc;
	margin-left: 20px;
}
.tours-detail-body .tour-detail-content_box .maps img,
.tours-detail-body .tour-detail-content_box .maps iframe {
	width: 100%;
	border-radius: 10px;
}
.tours-detail-body .tour-detail-content_title {
	font-size: 23px;
	margin-bottom: 20px;
	font-weight: 600;
}
.tours-detail-body .tour-detail-download {
	background: #0e2a0a;
	padding: 30px 55px;
	border-radius: 10px;
	color: #fff;
}
@media (max-width: 767.98px) {
	.tours-detail-body {
		padding-top: 30px;
	}
}
.tours-related-slide .item {
	padding-inline: 10px;
}

.createtrip-item {
	box-shadow: rgba(0, 0, 0, 0.12) 0 5px 15px;
	padding: 15px 25px;
	border-radius: 15px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.createtrip-item__img img {
	height: 60px;
	margin-right: 30px;
}
.createtrip-item__content {
	flex: 1;
}
.createtrip-item__content .title {
	font-size: 1.9rem;
	font-weight: 400;
	margin-bottom: 2px;
}
.createtrip-item__content .desc {
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--grey-color);
}
.createtrip .gr-btn {
	margin-top: 30px;
}

.reviews {
	background-color: #f9f4f0;
}
.reviews-slide .item {
	text-align: center;
	padding: 0 15px;
}
@media (min-width: 1200px) {
	.reviews-slide .slick-prev {
		left: -70px;
	}
	.reviews-slide .slick-next {
		right: -70px;
	}
}
.reviews-card__img img {
	height: 80px;
	width: 80px;
	border-radius: 100%;
	margin: 0 auto;
}
.reviews-card__content {
	padding-top: 15px;
	text-align: center;
}
.reviews-card__content .title {
	font-size: 2rem;
	font-weight: bold;
}
.reviews-card__content .rating {
	display: flex;
	justify-content: center;
	gap: 5px;
}
.reviews-card__content .rating svg {
	fill: #f39c12;
	width: 20px;
	height: 20px;
}
.reviews-card__content .rating i {
	color: #f39c12;
	font-size: 1.6rem;
}
.reviews-card__content .desc {
	font-size: 1.6rem;
	color: var(--grey-color);
	margin-bottom: 10px;
	margin-top: 10px;
}
.reviews-card__content .btn-link {
	font-weight: 500;
	font-size: 1.5rem;
	color: #2f78f5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.partner {
	padding: 20px 0;
	background-color: #f7eae1;
}
.partner-box img {
	height: 80px;
	object-fit: contain;
	margin: 0 auto;
}
.partner-second-wrap {
	background-color: #d4d4d4;
	padding: 20px 0;
}
.partner-second .partner-box img {
	filter: brightness(0);
	-webkit-filter: brightness(0);
}

.blogs-slide .item {
	padding: 0 15px;
}
.blogs-card__img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.blogs-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/0.6;
	border-radius: 10px;
}
.blogs-card__content .blogs-category {
	background-color: var(--primary-color);
	text-transform: uppercase;
	color: #fff;
	width: fit-content;
	padding: 1px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	margin: 10px 0;
}
.blogs-card__content .title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 48px;
	line-height: 1.3;
}
.blogs-card__content .title a {
	color: inherit;
}
.blogs-card__content .desc {
	font-size: 16px;
	color: var(--grey-color);
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 72px;
}
.blogs-card__content .btn-link {
	padding: 0;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 10px;
	display: block;
	color: var(--normal-color);
}
.blogs-detail-head .blog-detail-title {
	font-size: 38px;
	margin-bottom: 18px;
	font-weight: 600;
}
.blogs-detail-head .blog-detail-list {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.blogs-detail-head .blog-detail-list li {
	color: #747474;
	font-size: 14px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.blogs-detail-head .blog-detail-list li svg {
	height: 13px;
	fill: var(--primary-color);
	margin-right: 5px;
}
.blogs-detail-head .blog-detail-list li:first-child {
	padding: 2px 15px;
	background-color: var(--primary-color);
	color: white;
	font-size: 13px;
	font-weight: 500;
	border-radius: 4px;
	text-transform: uppercase;
}
.blogs-detail .toc {
	background-color: #f9f4f0;
	border-radius: 10px;
	padding: 15px 25px;
	margin-bottom: 15px;
	margin-top: 15px;
}
.blogs-detail .toc-head {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
	justify-content: space-between;
	margin-bottom: 0;
	cursor: pointer;
}
.blogs-detail .toc-head::after {
	content: "-";
	font-size: 1.8rem;
	width: 24px;
	height: 24px;
	border: 1px solid var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	color: var(--primary-color);
}
.blogs-detail .toc-head span i {
	margin-right: 10px;
}
.blogs-detail .toc-head.open::after {
	content: "+";
}
.blogs-detail .toc-list {
	margin-top: 10px;
}
.blogs-detail .toc-list.hidden {
	display: none;
}
.blogs-detail-content h2,
.blogs-detail-content h3,
.blogs-detail-content h4 {
	margin-bottom: 15px;
}
.blogs-detail-content img {
	margin: auto;
	display: block;
	text-align: center;
	padding: 10px 0;
}
.blogs-detail-content p img {
	margin: auto;
	text-align: center;
	display: block;
	padding: 10px 0;
	height: auto !important;
}
.blogs-detail .social--share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}
@media(max-width:576px){
	.blogs-detail .social--share {
		gap: 6px;	
	}
}
/*.blogs-detail .social--share li {
	margin-right: 15px;
}*/
.blogs-detail .social--share li a {
	padding: 6px 15px;
	background-color: var(--primary-color);
	color: white;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.photos-slide .item {
	padding: 0 15px;
}
.photos-slide .slick-prev {
	left: 0;
}
.photos-slide .slick-prev {
	right: 0;
}
.photos-card__info {
	display: block;
	background: #f9f4f0;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	hyphens: auto;
	box-shadow: rgba(0, 0, 0, 0.13) 0 1px 3px;
}
.photos-card__info:hover .icons {
	opacity: 1;
}
.photos-card__img {
	display: block;
	position: relative;
	overflow: hidden;
}
.photos-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}
.photos-card__img .icons {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	color: white;
	background: rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s;
}
.photos-card__content {
	padding: 10px;
	gap: 10px;
	flex-wrap: nowrap;
	display: flex;
	justify-content: space-between;
}
.photos-card__content .title {
	font-size: 1.4rem;
	font-weight: 700;
}

.photos-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
}

.photos-modal.show {
	display: flex;
}

.photos-modal__content {
	background: #fff;
	padding: 30px 20px;
	max-width: 900px;
	max-height: 95vh;
	width: 90%;
	position: relative;
}

.photos-modal__close {
	position: absolute;
	right: 10px;
	top: 0px;
	cursor: pointer;
	font-size: 2.4rem;
}

.about-page-inner {
	padding: 60px 160px;
	border: 1px solid #a4a4a4;
	background-color: white;
	margin-top: -100px;
	position: relative;
}
@media(max-width:767.98px){
	.about-page-inner{
		padding: 40px 30px;
	}
}
.about-page-inner .desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-color);
}

.section-image-text {
	background-color: #f9f4f0;
}
.section-image-text .item:nth-child(2n+1) .row {
	flex-direction: row-reverse;
}
.section-image-text .item + .item {
	margin-top: 60px;
}
.section-image-text .item .title-section {
	margin-bottom: 10px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 600;
}
.section-image-text .item .desc {
	text-align: justify;
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-color);
}

.products-card {
	box-shadow: rgba(0, 0, 0, 0.13) 0 1px 3px;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
	background-color: #fff;
}
.products-card a {
	display: inline-block;
	position: relative;
	top: 0;
	right: 0;
}
.products-card a img {
	width: 100%;
}
.products-card__img {
	width: 100%;
}
.products-card__img img {
	width: 100%;
	aspect-ratio: 1/0.6;
}
.products-card__content {
	padding: 5px 10px 20px 10px;
}
.products-card__content .title {
	font-size: 2rem;
	color: #000;
	font-weight: 600;
}
.products-card__content .title a {
	color: inherit;
}
.products-card__content .meta {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1px;
	margin: 3px 0 10px;
	display: flex;
}
.products-card__content .meta li {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1.4rem;
	padding: 0 5px;
	position: relative;
	text-transform: capitalize;
}
.products-card__content .meta li:first-child {
	padding-left: 0;
}
.products-card__content .meta li:not(:last-child)::before {
	content: " ";
	position: absolute;
	right: 0;
	height: 55%;
	width: 1px;
	background-color: #989994;
	top: 23%;
}
.products-card__content .desc {
	font-size: 1.5rem;
	color: var(--grey-color);
	margin-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: 72px;
}
.products-card__content .gr-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.products-card__content .gr-btn .btn-details2 {
	width: fit-content;
	background-color: #fff;
	padding: 0px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	display: block;
	height: unset;
	margin: 10px 0px;
}

.teams-box {
	background-color: #f2f2f2;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 30px;
}
.teams-box .team-img img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.teams-box .team-text .title {
	font-size: 19px;
	font-weight: 600;
	text-align: center;
	margin: 25px 0px 3px 0px;
}
.teams-box .team-text .desc {
	font-size: 12px;
	text-align: center;
	color: var(--grey-color);
	padding-bottom: 10px;
}

.tours-page-heading .sectitle {
	font-size: 3rem;
}

.filter-sidebar .filter-box {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}
.filter-sidebar .filter-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.6rem;
	margin-bottom: 15px;
	color: #212735;
	font-weight: 600;
}
.filter-sidebar .filter-title svg {
	height: 16px;
}
.filter-sidebar ul li {
	margin-bottom: 5px;
}
.filter-sidebar .filter_title {
	color: black;
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.filter-sidebar .filter-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.filter-sidebar .filter-item label {
	font-size: 1.5rem;
	font-weight: 400;
	color: #000;
	padding: 0 8px;
	padding-left: 8px;
	padding-left: 8px;
	position: relative;
	padding-left: 25px;
}
.filter-sidebar .filter-item label input {
	position: absolute;
	opacity: 0;
	height: 100%;
	width: 100%;
	left: 0;
	z-index: 9;
}
.filter-sidebar .filter-item label input + .fa::before {
	content: "";
	margin-right: 5px;
	border-radius: 2px;
	font-size: 1.8rem;
	line-height: 40px;
	position: absolute;
	top: -13px;
	height: 14px !important;
	width: 14px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3px;
}
.filter-sidebar .filter-item label input:checked + .fa::before {
	border-color: #1f91b1;
	background: #1f91b1;
}
.filter-sidebar .filter-item label input:checked + .fa::after {
	content: "";
	color: #fff;
	position: absolute;
	width: 14px;
	height: 14px;
	line-height: 15px;
	top: -13px;
	font-size: 10px;
	left: 0;
	background-image: url(//bizweb.dktcdn.net/100/426/581/themes/823696/assets/check-symbol.svg?1709525188976);
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.filter-sidebar .filter-item label i {
	height: 16px;
	width: 16px;
	border: 1px solid #1f2d5a;
	border-radius: 3px;
	top: 5px;
	position: absolute;
	left: 0;
}
.filter-sidebar .tag-box ul {
	display: flex;
	flex-wrap: wrap;
}
.filter-sidebar .tag-box ul li {
	position: relative;
	padding-left: 0px;
	font-size: 15px;
	color: #5e5e5e;
}
.filter-sidebar .tag-box ul li a {
	color: #666;
	border: 1px solid #e8e8e8;
	padding: 2px 13px;
	border-radius: 41px;
	display: block;
	margin-bottom: 5px;
	margin-right: 10px;
}
@media (max-width: 991.98px) {
	.filter-sidebar {
		padding: 35px 15px 0 15px;
		position: fixed;
		width: 300px;
		background: #fff;
		top: 0 !important;
		bottom: 0;
		right: 0;
		overflow: hidden;
		overflow-y: hidden;
		overflow-y: auto;
		z-index: 9999;
		visibility: hidden;
		-webkit-transition: all 0.35s ease;
		-o-transition: all 0.35s ease;
		transition: all 0.35s ease;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
	.filter-sidebar.active {
		visibility: visible;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%);
	}
	.filter-sidebar .close-filter {
		display: flex;
		position: absolute;
		right: 0;
		top: 0;
		height: 25px;
		width: 25px;
		align-items: center;
		justify-content: center;
		background-color: #1f2d5a;
		border-radius: 2px;
	}
	.filter-sidebar .close-filter svg {
		height: 17px;
		fill: white;
	}
}

.progress-box .range-box {
	max-width: 300px;
	font-family: Arial, sans-serif;
}
.progress-box .range-values {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 5px;
	color: #555;
}
.progress-box input[type=range] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	background: #1a2a57;
	border-radius: 2px;
	outline: none;
}
.progress-box input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	background: #ddd;
	cursor: pointer;
	border: 1px solid #aaa;
}
.progress-box input[type=range]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 3px;
	background: #ddd;
	cursor: pointer;
	border: 1px solid #aaa;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
.pagination .page-item .page-link {
	height: 35px;
	width: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	margin: 0 1px;
	border: 1px solid #dee2e6;
	color: #000;
}
.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.pagination .page-item.disable .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
}

.faqs-item {
	position: relative;
	padding: 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #d3d2da;
}
.faqs-item-head {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.faqs-item-title {
	font-size: 1.7rem;
	font-weight: 600;
}
.faqs-item-icon {
	transition: all 0.3s ease;
}
.faqs-item-content {
	display: none;
	margin-top: 6px;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--grey-color);
}

.modal-detail-tour .box-image-map iframe {
	width: 100%;
	height: 100%;
}
.modal-detail-tour .box-image-map img {
	width: 100%;
	height: auto;
}
.modal-detail-tour .itinerary-list .item-title {
	font-size: 1.4rem;
}

.box-content-tour .line-title-form {
	line-height: 1.4;
	margin-bottom: 20px;
	font-size: 2.2rem;
	position: relative;
}
.box-content-tour .line-title-form::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #000;
	bottom: -5px;
}
.box-content-tour .tour-title-itinerary {
	font-size: 1.9rem;
	line-height: 1.4;
	margin-bottom: 15px;
}
.box-content-tour .btn-detail-itinerary {
	margin-bottom: 15px;
}
.box-content-tour .btn-detail-itinerary a {
	background: #1d872e;
	width: fit-content;
	padding: 6px 28px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	display: block;
	height: unset;
}
.box-content-tour .itinerary-list {
	padding-left: 15px;
}
.box-content-tour .itinerary-list .item {
	position: relative;
	padding-left: 40px;
}
.box-content-tour .itinerary-list .item:not(:last-child)::before {
	position: absolute;
	content: "";
	left: -3px;
	width: 1px;
	height: 100%;
	background-color: #d3d2da;
	top: 20px;
}
.box-content-tour .itinerary-list .item .item-circle {
	position: absolute;
	border-radius: 100%;
	border: 2px solid #d3d2da;
	padding: 4px;
	left: -15px;
	top: -1px;
	background-color: white;
	width: 24px;
	height: 24px;
}
.box-content-tour .itinerary-list .item .item-circle-item {
	height: 100%;
	width: 100%;
	border-radius: 100%;
}
.box-content-tour .itinerary-list .item .item-top {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.box-content-tour .itinerary-list .item .item-top .item-title {
	font-size: 1.7rem;
	font-weight: 600;
}
.box-content-tour .itinerary-list .item .item-top .item-icon {
	transition: all 0.3s ease;
}
.box-content-tour .itinerary-list .item .item-content {
	border-bottom: 1px solid #d3d2da;
	margin-bottom: 8px;
	padding-bottom: 8px;
}
.box-content-tour .itinerary-list .item .item-content .desc {
	display: none;
	margin-top: 5px;
}
.box-content-tour .itinerary-list .item.active .item-circle-item {
	background-color: var(--primary-color);
}
.box-content-tour .itinerary-list .item.active .item-icon {
	transform: rotate(180deg);
}
.box-content-tour .itinerary-list .item.active .item-content .desc {
	display: block;
}
@media (max-width: 767.98px) {
	.box-content-tour .itinerary-list .item {
		padding-left: 20px;
	}
}

.form-book {
	position: sticky;
	top: 100px;
	border: 0;
}
.form-book form {
	border: 1px solid #00000017;
	border-radius: 10px;
	overflow: hidden;
}
.form-book-top {
	background-color: #f9f4f0;
	padding: 20px 25px 20px 25px;
	line-height: 1.1;
}
.form-book-top h2 {
	margin: 10px 0 15px 0;
	font-size: 2rem;
}
.form-book-top span {
	font-size: 14px;
	color: #8b8b8b;
}
.form-book-top .note-icon {
	font-size: 24px;
	cursor: pointer;
	position: relative;
}
.form-book-top .note-icon svg {
	width: 16px;
	height: 16px;
	margin-left: 5px;
	margin-bottom: -2px;
}
.form-book-top .note-icon svg path {
	fill: var(--primary-color);
}
.form-book-top .note-content {
	display: none;
	position: absolute;
	top: 39px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	left: 50%;
	width: 339px;
	transform: translateX(-50%);
	z-index: 100;
}
.form-book-top .note-content .content-note {
	padding: 15px;
	background: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
}
.form-book-body {
	padding: 5px 15px;
}
.form-book-body .row {
	margin-left: -7px;
	margin-right: -7px;
}
.form-book-body .row > div[class~=col], .form-book-body .row > div[class^=col-] {
	padding-left: 7px;
	padding-right: 7px;
}
.form-book-body .col-item {
	flex: 1 0 auto;
}
.form-book-body select,
.form-book-body input,
.form-book-body textarea {
	background-color: transparent;
	border: 0;
	padding: 5px 5px;
	color: #a1a398;
	font-size: 14px;
	width: 100%;
	opacity: 1;
	border-bottom: 1px solid #cacaca;
	height: 40px;
}
.form-book-body select::placeholder,
.form-book-body input::placeholder,
.form-book-body textarea::placeholder {
	color: #999;
}
.form-book-body textarea {
	height: auto;
	padding-left: 9px;
}
.form-book-body .custum-travaldate {
	border-bottom: 1px solid #cacaca;
	display: none;
}
.form-book-bottom {
	padding: 0px 25px 30px 20px;
}
.form-book-bottom button {
	background-color: var(--primary-color);
	width: 100%;
	color: white;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 15px;
	border-radius: 4px;
	margin-top: 10px;
	text-transform: uppercase;
	border: 0;
}

.sidebar-box {
	box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 9px;
	border-radius: 20px;
	margin-bottom: 15px;
}
.sidebar-box .box-head {
	font-size: 18px;
	padding: 18px 35px 16px 35px;
	border-bottom: 1px solid #e5e5e5;
	font-weight: 600;
}
.sidebar-box ul {
	padding: 18px 35px 16px 35px;
}
.sidebar-box ul li {
	position: relative;
	padding-left: 25px;
	font-size: 15px;
	color: #5e5e5e;
}
.sidebar-box ul li a {
	font-size: 16px;
	color: #404040;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sidebar-box ul li svg {
	height: 15px;
	fill: var(--primary-color);
	position: absolute;
	left: 0;
}
.sidebar-box ul li span {
	height: 20px;
	width: 20px;
	background-color: #e1e1e1;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: gray;
}
@media (max-width: 991.98px) {
	.sidebar-box ul {
		padding: 15px;
	}
}

.sidebar-box--sc {
	padding: 15px;
}

.sidebar-item {
	border: 1px solid #cecece;
	padding: 30px 10px;
	border-radius: 20px;
}
.sidebar-item .sidebar-content h3 {
	padding: 0px;
	text-align: center;
	border: 0;
	font-size: 21px;
	margin-bottom: 15px;
	font-weight: 600;
}
.sidebar-item .sidebar-content a {
	background-color: var(--primary-color);
	padding: 10px 20px;
	color: white;
	font-size: 14px;
	border-radius: 5px;
	margin-top: 15px;
}

.news-page-head .title {
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 600;
}
.news-page-head .desc {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
.news-page-content .col-item {
	margin-bottom: 15px;
}
.news-card {
	box-shadow: rgba(0, 0, 0, 0.04) 0px 5px 15px;
	height: 100%;
}
.news-card-image {
	position: relative;
	display: block;
}
.news-card-image img {
	height: 260px;
	width: 100%;
	object-fit: cover;
}
.news-card-image .news-categories {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: black;
	color: white;
	font-size: 13px;
	padding: 5px 11px;
	font-weight: 500;
}
.news-card-content .title {
	text-align: center;
	display: block;
	font-size: 22px;
	font-weight: 500;
	padding: 20px 15px 15px 15px;
	color: var(--normal-color);
}
.news-card-content .title a {
	color: inherit;
}
.news-card-content .date {
	color: #6a6a6a;
	font-size: 14px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.news-related-item img {
	width: 100px;
	margin-right: 10px;
}
.news-related-content {
	flex: 1;
}
.news-related ul li {
	padding: 0;
}
.news-related ul li .title {
	font-size: 17px;
	font-weight: 400;
	color: black;
	margin-bottom: 5px;
}
.news-related ul li .date {
	color: #acacac;
	font-size: 14px;
}

.title-page-head {
	border-top: 1px solid #e5e5e5;
	padding-top: 13px;
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 14px;
	font-weight: 600;
}
.title-page-head::before {
	height: 6px;
	width: 30px;
	content: "";
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	display: block;
	position: absolute;
}

.introduction-card ul li a {
	color: #979797;
	font-size: 15px;
	padding-top: 8px;
	border-top: 1px solid #dfdfdf;
	margin-top: 8px;
	display: block;
	align-items: center;
}
.introduction-card ul li a svg {
	height: 15px;
	fill: var(--primary-color);
	position: relative;
	top: 2px;
	margin-right: 5px;
}
.introduction-card ul li a:hover {
	color: var(--primary-color);
}
@media (max-width: 767.98px) {
	.introduction-card {
		margin-bottom: 15px;
	}
}
.introduction-img a {
	position: relative;
	display: block;
}
.introduction-img a a {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.introduction-title {
	font-size: 15px;
	display: block;
	font-weight: 400;
	margin-top: 10px;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	overflow: hidden;
	padding: 0;
	line-height: 1.5;
	text-overflow: ellipsis;
	text-align: justify;
	min-height: 90px;
}

.register-subscribe {
	background-color: #0d2b07;
	background-color: var(--primary-color);
	padding: 30px 40px;
	border-radius: 10px;
	margin: 40px 0px;
}
@media(max-width:576px){
	.register-subscribe{
		padding: 20px;
	}
}
.register-subscribe h3 {
	font-size: 22px;
	color: white;
}
.register-subscribe p {
	color: white;
	padding: 0px;
	margin-top: 5px;
}
.register-subscribe form {
	background-color: #fff;
	border-radius: 13px;
	padding: 15px 30px;
	margin-top: 10px;
}
@media(max-width:576px){
	.register-subscribe form{
		padding: 15px;
	}
}
.register-subscribe form input {
	height: 45px;
	padding: 0px 25px;
	font-size: 14px;
	border: 1px solid #e6e6e6;
	border-radius: 100px;
	width: 100%;
}
.register-subscribe form button {
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 100px;
	color: white;
	font-size: 14px;
	padding: 10px 35px;
	border: 0;
}

.comment {
	margin-bottom: 20px;
}
.comment .comment-title {
	font-size: 35px;
}
.comment .comment-form label {
	display: block;
	font-size: 16px;
	font-weight: 400;
}
.comment .comment-form input,
.comment .comment-form textarea {
	width: 100%;
	border: 1px solid #cecece;
	border-radius: 5px;
	margin-bottom: 15px;
	padding: 0 10px;
}
.comment .comment-form input {
	height: 40px;
}
.comment .comment-form textarea {
	padding: 5px 10px;
}
.comment .comment-form button[type=submit] {
	width: fit-content;
	background-color: var(--primary-color);
	padding: 10px 25px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
	color: white;
	display: block;
	height: unset;
	margin-top: 20px;
}

.buildtour-form {
	background: #f2efe700;
	padding: 70px 100px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 5px;
}
.buildtour-form .form-head {
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}
.buildtour-form .form-group {
	margin-bottom: 18px;
}
.buildtour-form .form-group input[type=checkbox],
.buildtour-form .form-group input[type=radio] {
	border: 0;
	width: 14px;
	height: 14px;
	background-color: white;
	padding: 0px;
	position: relative;
	top: -1px;
	margin-bottom: 0px;
}
.buildtour-form .form-group input,
.buildtour-form .form-group select {
	height: 40px;
	border: 1px solid #c1c1c1;
	width: 100%;
	background-color: #fff;
	padding: 0px 10px;
	font-size: 14px;
}
.buildtour-form .form-group textarea {
	width: 100%;
	border: 1px solid #c1c1c1;
	font-size: 14px;
	padding: 10px;
}
.buildtour-form .form-title {
	font-size: 1.7rem;
	font-weight: 500;
	color: #171717;
	margin-bottom: 10px;
}
.buildtour-form .group-checked {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.buildtour-form .group-checked .item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.buildtour-form .group-checked .item label {
	margin-bottom: 0;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.buildtour-form .group-checked {
		gap: 10px 20px;
	}
}
.buildtour-form .group-radio {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}
.buildtour-form .group-radio .item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.buildtour-form .group-radio .item label {
	margin-bottom: 0;
	cursor: pointer;
}
.buildtour-form .note-container {
	margin-bottom: 20px;
}
.buildtour-form .note-container .form-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 0px;
	font-weight: 400;
	font-size: 14px;
	color: #373737;
}
.buildtour-form .note-container .note-icon {
	font-size: 24px;
	cursor: pointer;
	position: relative;
	z-index: 20;
}
.buildtour-form .note-container .note-icon svg {
	width: 16px;
	height: 16px;
	margin-left: 5px;
	margin-bottom: 7px;
}
.buildtour-form .note-container .note-icon svg path {
	fill: var(--primary-color);
}
.buildtour-form .note-container .note-content {
	display: none;
	position: absolute;
	top: 39px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	left: 50%;
	width: 339px;
	transform: translateX(-50%);
}
.buildtour-form .note-container .note-content .content-note {
	padding: 15px;
	background: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
}
.buildtour-form .note-container .note-content.active {
	display: block;
	font-size: 1.4rem;
}
.buildtour-form .note-container .note-content.active::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	bottom: 96%;
	border: 1px solid #cdcdcd;
	transform: rotate(45deg);
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	z-index: -2;
	left: 45%;
	right: unset;
}
.buildtour-form .btn-submit {
	background-color: var(--primary-color);
	color: white;
	width: 100%;
	border-radius: 5px;
	font-size: 16px;
	padding: 9px 0px 8px 0px;
}
.buildtour-form .form-footer-note, .buildtour-form .form-footer-contact {
	text-align: center;
	color: #373737;
	margin: 20px 0px;
}
.buildtour-form .form-footer-contact {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.buildtour-form .form-footer-contact .item-hotline {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 600;
	gap: 5px;
}
.buildtour-form .form-footer-contact .item-hotline i {
	color: #25D366;
	font-size: 2.6rem;
}
@media (max-width: 1200px) {
	.buildtour-form {
		margin-bottom: 10px;
	}
}
@media (max-width: 768px) {
	.buildtour-form {
		padding: 20px 25px;
	}
}

.sidebar-plan {
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 40px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sidebar-plan-item:not(:last-child) {
	border-bottom: solid 1px #ccc;
	margin-bottom: 15px;
}
.sidebar-plan-item a {
	color: white;
	/* background-color: #ea5b31; */
	font-size: 17px;
	padding: 8px 24px;
	font-weight: 600;
	border-radius: 5px;
	width: 100%;
	display: block;
	text-align: center;
	margin-top: 10px;
}
.sidebar-plan-item .box-head {
	font-size: 21px;
	margin-bottom: 15px;
	padding: 0 15px;
	text-align: center;
	font-weight: 600;
}
.sidebar-plan-item .video-box:not(:last-child) {
	margin-bottom: 15px;
}
.sidebar-plan-item .gr-btn a {
	color: #222;
}

.process-content {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 295px;
}
@media (max-width: 1200px) {
	.process-content {
		height: unset;
		background-image: unset !important;
	}
}
.process-icon {
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background-color: #d67b4c;
	border-radius: 100%;
}
.process-icon img,
.process-icon svg {
	height: 28px;
	width: 28px;
	/*margin-left: 20px;*/
}
.process-icon i {
	font-size: 2.4rem;
}
.process-text {
	margin-top: 20px;
	padding: 0px 25px;
}
.process-title {
	text-align: center;
	font-size: 1.9rem;
	color: #2b2b2b;
	font-weight: 500;
	margin-bottom: 1px;
}
.process .desc {
	color: var(--grey-color);
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 1200px) {
	.process-icon {
		height: 50px;
		width: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		background-color: #d67b4c;
		border-radius: 100%;
	}
	.process-icon svg {
		margin-left: 0;
	}
	.process-text {
		padding: 0 2px;
	}
	.process-title {
		text-align: center;
		font-size: 16px;
	}
	.process .desc {
		font-size: 1.5rem;
	}
}

.experts .heading-title .subtitle {
	color: var(--normal-color);
}
.experts-box .box-img {
	text-align: center;
}
.experts-box .box-img img {
	height: 124px;
	width: 124px;
	border-radius: 100%;
	margin: 0 auto;
	margin-bottom: 5px;
}
.experts-box .box-content .title {
	font-size: 17px;
	text-decoration: underline;
	margin-bottom: 4px;
	text-align: center;
}
.experts-box .box-content .position {
	color: #606060;
	font-size: 13px;
	text-align: center;
	display: block;
	text-transform: uppercase;
}
.experts .note {
	text-decoration: underline;
	margin-top: 30px;
	text-align: center;
}

.modal-detail-experts .experts-popup .modal-dialog {
	max-width: 900px;
}
.modal-detail-experts .experts-popup .modal-dialog .modal-content {
	border-radius: 12px;
}
.modal-detail-experts .experts-popup .box-image img {
	border-radius: 10px;
	width: 100%;
	object-fit: cover;
}
.modal-detail-experts .experts-popup .box-content .title {
	font-size: 3.8rem;
	color: #3e3e3e;
}
.modal-detail-experts .experts-popup .box-content .position {
	color: #5b5b5b;
	margin-bottom: 10px;
	display: block;
}
.modal-detail-experts .experts-popup .box-content .desc {
	padding-top: 10px;
	padding-bottom: 22px;
	text-align: justify;
	font-size: 1.4rem;
	font-weight: 400;
	color: #3e3e3e;
}

.whybook {
	margin-bottom: 40px;
}
.whybook-wrap {
	background-color: #ffffffc7;
	padding-top: 70px;
}
.whybook-box {
	margin-bottom: 30px;
	display: flex;
}
.whybook-icon {
	/*height: 30px;*/
	width: 100px;
}
.whybook-icon svg {
	width: 100%;
	height: 100%;
}
.whybook-icon svg path {
	fill: #e57022;
}
.whybook-icon i {
	font-size: 2rem;
}
.whybook-content {
	margin-left: 10px;
}
.whybook-content .title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.whybook-content .desc {
	font-size: 1.5rem;
}

.gallery-wrap .video-box {
	margin-bottom: 30px;
}

.contact-tour-guide {
	background-color: #fff;
}
.contact-tour-guide-text .title {
	font-size: 30px;
	font-weight: 400;
	color: #393939;
	margin-bottom: 10px;
	text-align: center;
}
.contact-tour-guide-text .desc {
	text-align: center;
	color: #646464;
	font-size: 17px;
	font-weight: 300;
	margin-bottom: 10px;
}
.contact-tour-guide-text .gr-btncontact {
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-tour-guide-text .gr-btncontact li {
	padding: 0px 10px;
}
.contact-tour-guide-text .gr-btncontact li .item-hotline {
	font-size: 16px;
	margin-left: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}
.contact-tour-guide-text .gr-btncontact li .item-hotline svg {
	height: 26px;
	fill: #25D366;
	width: 26px;
}
.contact-tour-guide-text .plan-btn {
	color: white;
	background-color: var(--primary-color);
	font-size: 15px;
	padding: 5px 20px;
	font-weight: 600;
	border-radius: 5px;
	display: inline-block;
}
.contact-tour-guide-img .item {
	text-align: center;
}
.contact-tour-guide-img .item img {
	max-height: 150px;
	max-width: 150px;
	border-radius: 100%;
	display: block;
	margin: 0 auto;
}
.contact-tour-guide-img .item .title {
	font-size: 18px;
	font-weight: 400;
	color: var(--primary-color);
	margin-top: 10px;
}
.contact-tour-guide-img .item .position {
	color: #555;
}

.recruitment-wrap {
	position: relative;
}
.recruitment-item {
	background: #eaeaea52;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media(max-width:576px){
	.recruitment-item{
		gap: 20px;
		flex-direction: column;
	}
}
.recruitment-item:not(:last-child) {
	margin-bottom: 15px;
}
.recruitment-item__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	flex: 1;
}
@media(max-width:576px){
	.recruitment-item__info{
		flex: none;
	}
	
}
.recruitment-item__img {
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	width: 30%;
	max-width: 200px;
}
.recruitment-item__img::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.recruitment-item__img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.recruitment-item__content {
	flex: 1;
}
@media(max-width:576px){
	.recruitment-item__content{
		flex: none;
		width: 100%;
	}
}
.recruitment-item__title {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 10px;
}
@media(max-width:576px){
	.recruitment-item__title{
		font-size: 2rem;
	}
}
.recruitment-item__meta {
	margin-bottom: 10px;
}
.recruitment-item__meta .recruitment-meta {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recruitment-item__meta .recruitment-meta__ttl {
	font-weight: 600;
	width: 120px;
	margin-bottom: 0;
}
.recruitment-item__meta .recruitment-meta__ct {
	color: #333333;
	width: calc(100% - 120px);
	margin-bottom: 0;
}
@media(max-width:576px){
	.recruitment-item__meta .recruitment-meta__ttl {
		width: 100%;	
	}
	.recruitment-item__meta .recruitment-meta__ct {
		width: 100%;	
	}
}
.recruitment-item__desc {
	color: #333333;
	margin-bottom: 0;
}
.recruitment-item__action {
	text-align: center;
}
.recruitment-item__action .btn-view {
	border: 1px solid #ccc;
	padding: 10px 15px;
	color: var(--primary-color);
}
.recruitment-item__action .btn-view:hover {
	background-color: var(--primary-color);
	color: #fff;
	border-color: transparent;
}
.recruitment-detail__info {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 35px;
	align-items: center;
	background-color: #EFEFEF;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}
.recruitment-detail__info .info-left {
	flex: 1;
}
@media (max-width: 767.98px) {
	.recruitment-detail__info .info-left {
		flex: auto;
		width: 100%;
		margin-bottom: 20px;
	}
}
.recruitment-detail__info .recruitment-title {
	font-size: 3.8rem;
	font-weight: 600;
	margin-bottom: 20px;
}
@media (max-width: 991.98px) {
	.recruitment-detail__info .recruitment-title {
		font-size: 2.8rem;
	}
}
.recruitment-detail__info .recruitment-block .title {
	font-weight: 600;
}
.recruitment-detail__info .recruitment-block .text {
	color: #333;
}
.recruitment-detail__info .recruitment-description {
	color: #333;
}
.recruitment-detail__info .btn-view {
	border: 1px solid #ccc;
	padding: 10px 20px;
	color: var(--primary-color);
}
.recruitment-detail__info .btn-view:hover {
	background-color: var(--primary-color);
	color: #fff;
	border-color: transparent;
}
.recruitment-detail__desc {
	background-color: #FBFAF8;
	padding: 40px 35px;
	font-size: 1.6rem;
	font-weight: normal;
	color: var(--grey-color);
}
.recruitment-detail__desc h2 {
	font-size: 25px;
	color: gray;
}
.recruitment-detail__desc h2:not(:last-child) {
	margin-bottom: 5px;
}
.recruitment-detail__desc ul {
	list-style: disc;
	margin-left: 20px;
}
.recruitment-detail__desc ul:not(:last-child) {
	margin-bottom: 20px;
}
.recruitment-detail__desc ul li {
	margin-bottom: 10px;
}
.recruitment-detail__footer {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background-color: var(--primary-color);
	height: 100px;
	display: grid;
	place-content: center;
}
.recruitment-detail__footer .btn-view {
	border: 1px solid #eee;
	padding: 10px 20px;
	color: var(--primary-color);
	background-color: #fff;
}

.other-recruitment {
	margin-top: 38px;
}
.other-recruitment .title-section {
	color: #333333;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 10px;
}
.other-recruitment .recruitment-list-item {
	border: 1px solid #eee;
	list-style: none;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	margin-left: 0;
	flex-wrap: wrap;
	gap: 10px;
}
.other-recruitment .recruitment-list-item .recruitment-content {
	display: flex;
}
.other-recruitment .recruitment-list-item .recruitment-title {
	margin-bottom: 0;
	padding-bottom: 0;
	margin-left: 16px;
}
.other-recruitment .recruitment-list-item .link {
	color: var(--primary-color);
	font-size: 14px;
}

.contact-form {
	background: #f2efe700;
	padding: 70px 100px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 5px;
}
@media(max-width:767.98px){
	.contact-form{
		padding: 40px;
	}
}
.contact-form .form-group > label {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: #171717;
	margin-bottom: 10px;
}
.contact-form .form-group input,
.contact-form .form-group select {
	height: 30px;
	border: 1px solid #c1c1c1;
	width: 100%;
	background-color: #fff;
	padding: 0px 10px;
	margin-bottom: 10px;
	font-size: 1.4rem;
}
.contact-form .form-group textarea {
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #c1c1c1;
	font-size: 14px;
	padding: 10px;
}
.contact-form button[type=submit] {
	background-color: var(--primary-color);
	color: white;
	width: 100%;
	border-radius: 5px;
	font-size: 16px;
	padding: 9px 0px 8px 0px;
}

.backtotop {
	position: fixed;
	bottom: 15px;
	left: 15px;
	z-index: 100;
	display: none;
}
.backtotop span {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #DCFCE7;
	padding: 8px;
	border-radius: 8px;
	color: var(--primary-color);
	font-size: 1.8rem;
	cursor: pointer;
}
.backtotop.show {
	display: block;
}

.footer {
	background: linear-gradient(0deg, #333333 27%, #5c5c5c 76%);
	padding: 40px 0 10px 0;
}
.footer-top {
	margin-bottom: 40px;
	padding-bottom: 20px;
}
@media (max-width: 991.98px) {
	.footer-top {
		margin-bottom: 0;
	}
}
.footer-tags {
	display: flex;
	flex-wrap: wrap;
}
.footer-tags li a {
	background-color: #6f6f6f;
	display: block;
	padding: 1px 8px;
	border-radius: 3px;
	margin-right: 3px;
	margin-bottom: 4px;
	font-size: 1.3rem;
	color: #d7d4d4;
	font-weight: 400;
}
.footer .footer-address .tt-up {
	color: #e1e1e1;
	font-weight: 300;
	font-size: 2.3rem;
	margin-bottom: 18px;
	text-transform: uppercase;
}
.footer .footer-address .desc {
	font-size: 1.3rem;
	color: #e1e1e1;
	padding-bottom: 0;
}
.footer .footer-address ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer .footer-address ul li {
	padding-bottom: 10px;
	padding-top: 10px;
}
.footer .footer-address ul li:nth-child(1), .footer .footer-address ul li:nth-child(2) {
	width: 50%;
}
.footer .footer-address ul li:nth-child(3) {
	width: 100%;
}
.footer .footer-address ul li a {
	font-size: 1.3rem;
	color: #e1e1e1;
}
.footer-social {
	margin-top: 5px;
	display: flex;
	align-items: center;
}
.footer-social li a {
	height: 32px;
	width: 32px;
	line-height: 34px;
	border-radius: 50px;
	color: #000;
	text-align: center;
	display: block;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	background-color: rgba(255, 255, 255, 0.5);
}
.footer-social li a svg {
	height: 16px;
	fill: #000;
}
.footer-infomation .footer-head {
	display: block;
	margin-bottom: 20px;
	font-size: 1.7rem;
	color: #868686;
	text-align: center;
	text-transform: uppercase;
}
.footer-infomation .footer-list {
	margin-bottom: 5px;
}
.footer-infomation .footer-list li {
	margin-bottom: 10px;
}
.footer-infomation .footer-list li a {
	background-color: #69695d;
	display: block;
	padding: 2px 10px 3px 10px;
	border-radius: 14px;
	margin-right: 3px;
	font-size: 13px;
	color: #fff;
	font-weight: 300;
	text-align: center;
}

.coppyright {
	background-color: #353535;
	padding: 16px 0 14px 0;
	border-top: 1px solid #666;
	color: #d9d5d5;
	font-size: 13px;
	margin-top: 20px;
}

/*# sourceMappingURL=style.css.map */
.photos-wrapper__for img{
	max-height: 60vh;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 6 / 4;
}
.photos-wrapper__nav img{
	height: 100px;
	aspect-ratio: 6 / 4;
    object-fit: cover;
	cursor: pointer;
}
.news-page-head{
	margin-bottom: 10px;
}