:root {
  --color-hd-top: rgba(16, 16, 16, 0.80);
  --color-hd-bot: rgba(16, 16, 16, 0.30);
  --color-text: #000;
  --color-2: #999;
  --color-white: #fff;
  --color-main: #B81D24;
  --color-text-menu: #F5F5F1;
  --color-bg: #515151;
  --color-text-2: #999;
  --color-333: #333;
  --color-3: #2A2A2A;
  --color-4: #404041;
  --color-5: #D9D9D9;
  --color-6: #FFF3F4;
  --color-7: #ccc;
  --color-8: #B8ABAB;
  --color-9: #f7f5f0;
  --fs-text-5: 1rem;
  --fs-text-9: 1.1rem;
  --fs-text-3: 1.2rem;
  --fs-text-2: 1.3rem;
  --fs-text: 1.5rem;
  --fs-text-8: 1.6rem;
  --fs-text-6: 1.8rem;
  --fs-text-7: 2rem;
  --fs-text-13: 2.3rem;
  --fs-text-12: 2.4rem;
  --fs-text-4: 3.2rem;
  --fs-text-11: 4.8rem;
  --fs-text-banner: 6.4rem;
  --fs-text-banner2: 9.6rem;
  --w-container: 1210px;
  --h-height-hd-top: 30px;
  --h-height-hd-bot: 60px;
}

@media (max-width: 1200px) {
  :root {
    --w-container: 960px;
  }
}
@media (max-width: 991px) {
  :root {
    --fs-text-banner: 4.8rem;
    --fs-text-11: 4rem;
    --fs-text: 1.3rem;
    --w-container: 720px;
  }
}
@media (max-width: 767px) {
  :root {
    --fs-text-banner: 4rem;
    --fs-text-11: 2.5rem;
    --w-container: 540px;
  }
}
@media (max-width: 576px) {
  :root {
    --w-container: 100%;
  }
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.5;
}

body {
  font-size: var(--fs-text);
  color: var(--color-text);
}
body.no-scroll {
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  width: var(--w-container);
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: var(--color-text);
  font-size: var(--fs-text);
  text-decoration: none;
}
a:hover {
  color: var(--color-main);
}

.btn-main {
  background: var(--color-main);
  color: var(--color-white);
}
.btn-main:hover {
  background: var(--color-text-menu);
  color: var(--color-text-2);
}

button {
  border: 0;
  outline: none;
}

.title-main,
.title-main a {
  text-align: center;
  font-size: var(--fs-text-4);
  font-weight: 700;
  margin-bottom: 10px;
}

.max-60 {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .max-60 {
    max-width: 100%;
  }
}

.max-70 {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .mb-30 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .mb-30 {
    margin-bottom: 15px;
  }
}

.text-center {
  text-align: center;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.img {
  display: block;
  overflow: hidden;
}
.img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
}
.img.hover:hover img {
  transform: scale(1.05);
}

.bg-color {
  background-color: var(--color-text-menu);
}

.bg-color-2 {
  background-color: var(--color-5);
}

.updating {
  padding: 30px 0;
  text-align: center;
}

.hide {
  display: none;
}

.py-block {
  padding-top: 20px;
  padding-bottom: 20px;
}

.image-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-center img {
  max-width: 100%;
  height: auto;
}

img {
  max-width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

.no-image {
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.py-block {
  padding-top: 20px;
  padding-bottom: 20px;
}

.flex-center-y {
  align-items: center;
}

.mb-50 {
  margin-bottom: 50px;
}

.border-5 {
  border: 1px solid var(--color-5);
}

.border-radius-5 {
  border-radius: 5px;
}

.hide {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid var(--color-text-2);
  position: relative;
  background-color: var(--color-text-menu);
}
.checkbox:after {
  display: none;
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: url("../images/check.png") no-repeat;
  background-position: center center;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked ~ .checkbox {
  border-color: var(--color-main);
  background-color: var(--color-main);
}
input[type=checkbox]:checked ~ .checkbox:after {
  display: block;
}

form label.error {
  display: none !important;
}
form .error {
  border: 1px solid red !important;
}

.pb-30 {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .pb-30 {
    padding-bottom: 15px;
  }
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--color-text);
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-weight: 700;
}
.detail-content h2 {
  font-size: 20px;
}
.detail-content h3 {
  font-size: 18px;
}
.detail-content p {
  line-height: 1.5;
  margin-bottom: 15px;
}
.detail-content figure {
  margin-bottom: 15px;
}
.detail-content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-content figure figcaption {
  text-align: center;
  padding: 5px 15px;
  font-size: var(--fs-text-min);
  font-style: italic;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  padding-bottom: 5px;
  line-height: 1.5;
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul li::marker,
.detail-content ol li::marker {
  color: var(--color-text);
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
  color: var(--color-text);
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
.detail-content .image-center img {
  margin: auto;
}
.detail-content .image-left {
  float: left;
  margin-bottom: 15px;
}
.detail-content .image-right {
  float: right;
  margin-bottom: 15px;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a:hover {
  color: var(--color-main);
}
.detail-content table {
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
}
.detail-content table tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-top-color: var(--color-main);
}
.detail-content table tr th:first-child {
  border-left-color: var(--color-main);
}
.detail-content table tr th:last-child {
  border-right-color: var(--color-main);
}
.detail-content table tr th,
.detail-content table tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 5px;
}
.detail-content iframe {
  max-width: 100%;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
header .hd-top {
  background-color: var(--color-hd-top);
  height: var(--h-height-hd-top);
  transition: all 0.3s ease;
}
header .hd-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
header .hd-top .container .social-hd {
  height: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}
header .hd-top .container .social-hd a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 15px;
  text-decoration: none;
  font-size: var(--fs-text-2);
}
header .hd-top .container .social-hd a svg {
  max-height: 100%;
  max-width: 100%;
}
header .hd-top .container .social-hd a:hover svg path {
  stroke: var(--color-main);
}
header .hd-top .container .phone-hd {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  header .hd-top .container .phone-hd {
    margin-right: 0;
  }
}
header .hd-top .container .phone-hd a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: var(--fs-text-2);
}
header .hd-top .container .phone-hd a span:first-child {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .hd-top .container .phone-hd a:hover {
  color: var(--color-main);
}
header .hd-top .container .lang-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
header .hd-top .container .lang-hd span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}
header .hd-top .container .lang-hd .item {
  color: var(--color-white);
  font-size: var(--fs-text-3);
}
header .hd-top .container .lang-hd .item:hover {
  color: var(--color-main);
}
header .hd-top .container .lang-hd a {
  text-decoration: none;
  font-size: var(--fs-text-3);
  color: var(--color-white);
}
header .hd-top .container .lang-hd a:hover {
  color: var(--color-main);
}
header .hd-bot {
  height: var(--h-height-hd-bot);
  background-color: var(--color-hd-bot);
  backdrop-filter: blur(2.5px);
}
header .hd-bot .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .hd-bot .container .logo-hd {
  height: 45px;
  aspect-ratio: 235/45;
  display: block;
}
@media (min-width: 768px) {
  header .hd-bot .container .menu {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin-left: auto;
    margin-right: 45px;
  }
  header .hd-bot .container .menu li a {
    font-size: var(--fs-text-2);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-menu);
  }
  header .hd-bot .container .menu li a:hover {
    color: var(--color-main);
  }
  header .hd-bot .container .menu .menu-about,
  header .hd-bot .container .menu .menu-detination,
  header .hd-bot .container .menu .menu-tour {
    position: absolute;
    top: calc(100% + 15px);
    right: calc((100vw - var(--w-container)) / 2 + 15px);
    width: 660px;
    background-color: var(--color-text-menu);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s;
  }
  header .hd-bot .container .menu .menu-about:after,
  header .hd-bot .container .menu .menu-detination:after,
  header .hd-bot .container .menu .menu-tour:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 44%;
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--color-text-menu);
    width: 20px;
    height: 20px;
    z-index: -1;
  }
  header .hd-bot .container .menu .menu-about:before,
  header .hd-bot .container .menu .menu-detination:before,
  header .hd-bot .container .menu .menu-tour:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
  }
  header .hd-bot .container .menu .menu-about .img,
  header .hd-bot .container .menu .menu-detination .img,
  header .hd-bot .container .menu .menu-tour .img {
    width: 100%;
    aspect-ratio: 640/250;
    margin-bottom: 15px;
  }
  header .hd-bot .container .menu .menu-about .img img,
  header .hd-bot .container .menu .menu-detination .img img,
  header .hd-bot .container .menu .menu-tour .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  header .hd-bot .container .menu .menu-about .sub-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
  }
  header .hd-bot .container .menu .menu-about .sub-menu li > a, header .hd-bot .container .menu .menu-about .sub-menu li > div {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-text-2);
    border-radius: 5px;
  }
  header .hd-bot .container .menu .menu-about .sub-menu li > a:hover, header .hd-bot .container .menu .menu-about .sub-menu li > div:hover {
    background-color: var(--color-main);
    color: var(--color-white) !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .hd-bot .container .menu .menu-about:after {
    left: 60%;
  }
}
@media (min-width: 768px) {
  header .hd-bot .container .menu .menu-detination:after {
    left: 10%;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    max-height: 385px;
    overflow-y: auto;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li {
    width: calc((100% - 10px) / 2);
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li a {
    display: block;
    position: relative;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li a p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 3;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li a .video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li a .video video, header .hd-bot .container .menu .menu-detination .sub-menu li a .video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  header .hd-bot .container .menu .menu-detination .sub-menu li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
  }
  header .hd-bot .container .menu .menu-detination .menu-sub-more {
    margin-top: 10px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    display: block;
    color: var(--color-text);
  }
  header .hd-bot .container .menu .menu-detination .menu-sub-more:hover {
    color: var(--color-white);
    background: var(--color-main);
    font-weight: 700;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .hd-bot .container .menu .menu-detination:after {
    left: 35%;
  }
}
@media (min-width: 768px) {
  header .hd-bot .container .menu .menu-tour:after {
    left: 29%;
  }
  header .hd-bot .container .menu .menu-tour .sub-menu {
    display: flex;
    gap: 27px;
    list-style: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  header .hd-bot .container .menu .menu-tour .sub-menu {
    max-height: 400px;
    overflow-y: auto;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
  }
  header .hd-bot .container .menu .menu-tour .sub-menu::-webkit-scrollbar {
    display: none; /* Older Safari and Chromium */
  }
}
@media (min-width: 768px) {
  header .hd-bot .container .menu .menu-tour .sub-menu > li {
    width: auto;
  }
  header .hd-bot .container .menu .menu-tour .sub-menu > li > a, header .hd-bot .container .menu .menu-tour .sub-menu > li > div {
    margin-bottom: 10px;
    white-space: nowrap;
    color: var(--color-white);
    text-transform: none;
    display: block;
    width: 100%;
    font-weight: 700;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--color-2);
    font-size: var(--fs-text-2);
    border-radius: 5px;
  }
  header .hd-bot .container .menu .menu-tour .sub-menu > li > a:hover, header .hd-bot .container .menu .menu-tour .sub-menu > li > div:hover {
    background: var(--color-main);
  }
  header .hd-bot .container .menu .menu-tour .sub-menu-2 {
    list-style: none;
  }
  header .hd-bot .container .menu .menu-tour .sub-menu-2 li a {
    color: var(--color-2);
    text-transform: none;
    font-size: var(--fs-text-2);
    font-weight: 600;
    line-height: 20px;
    padding: 10px 5px;
    display: block;
  }
  header .hd-bot .container .menu .menu-tour .sub-menu-2 li a:hover {
    color: var(--color-main);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .hd-bot .container .menu .menu-tour:after {
    left: 48%;
  }
}
@media (min-width: 768px) {
  header .hd-bot .container .menu > li:hover .menu-about,
  header .hd-bot .container .menu > li:hover .menu-detination,
  header .hd-bot .container .menu > li:hover .menu-tour {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  header .hd-bot .container .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    margin-left: 15px;
    list-style: none;
    display: none;
    max-height: calc(100vh - var(--h-height-hd-bot));
    overflow-y: auto;
  }
  header .hd-bot .container .menu li {
    position: relative;
    list-style: none;
  }
  header .hd-bot .container .menu li a {
    height: 40px;
    line-height: 40px;
    display: block;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .hd-bot .container .menu li a.menu-sub-more {
    justify-content: center;
  }
  header .hd-bot .container .menu li a.menu-sub-more:hover {
    background-color: var(--color-main);
    color: var(--color-white);
  }
  header .hd-bot .container .menu li .icon {
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 15px;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .hd-bot .container .menu li .icon svg {
    transition: all 0.3s;
  }
  header .hd-bot .container .menu li.active > a {
    color: var(--color-main);
  }
  header .hd-bot .container .menu li.active > .icon svg {
    transform: rotate(180deg);
  }
  header .hd-bot .container .menu li.active > .icon svg path {
    fill: var(--color-main);
  }
  header .hd-bot .container .menu li .quote-hd {
    font-weight: 400;
    border-radius: 0;
  }
  header .hd-bot .container .menu .sub-menu {
    list-style: none;
  }
  header .hd-bot .container .menu .sub-menu li {
    list-style: none;
  }
  header .hd-bot .container .menu .sub-menu li a {
    padding-left: 25px;
    text-transform: none;
    font-weight: 400;
  }
  header .hd-bot .container .menu .sub-menu .menu-about {
    padding: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-about .img {
    margin-bottom: 10px;
    aspect-ratio: 388/150;
  }
  header .hd-bot .container .menu .sub-menu .menu-about .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  header .hd-bot .container .menu .sub-menu .menu-about .list-menu a {
    padding: 10px;
    display: block;
    background: var(--color-text-2);
    color: var(--color-white);
    font-weight: 700;
    line-height: unset;
    border-radius: 5px;
    text-align: center;
  }
  header .hd-bot .container .menu .sub-menu .menu-about .list-menu a:first-child {
    margin-bottom: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour {
    padding: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .sub-menu-2 {
    display: none;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li > a, header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li > div {
    background: var(--color-text-2);
    color: var(--color-text-menu);
    padding: 10px;
    font-weight: 700;
    font-size: var(--fs-text-2);
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li > a:not(:last-child), header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li > div:not(:last-child) {
    margin-bottom: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li .icon {
    background: transparent;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li .icon svg path {
    fill: var(--color-text-menu);
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li .sub-menu-2 {
    padding-top: 0;
    margin-bottom: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li.active a, header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li.active div {
    background: var(--color-text-menu);
    margin-bottom: 0;
    color: var(--color-text-2);
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li.active > a, header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li.active > div {
    color: var(--color-main);
  }
  header .hd-bot .container .menu .sub-menu .menu-tour .list-menu > li.active > .icon svg path {
    fill: var(--color-main);
  }
  header .hd-bot .container .menu .sub-menu .menu-detination {
    padding: 10px;
  }
  header .hd-bot .container .menu .sub-menu .menu-detination .list-menu a {
    height: 100px;
    display: block;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
  header .hd-bot .container .menu .sub-menu .menu-detination .list-menu a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  header .hd-bot .container .menu .sub-menu .menu-detination .list-menu a p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--fs-text-2);
    font-weight: 500;
  }
  header .hd-bot .container .menu .sub-menu .menu-detination .menu-sub-more {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: var(--fs-text-2);
    font-weight: 500;
  }
}
header .hd-bot .quote-hd {
  padding: 7px 30px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: var(--fs-text-2);
  width: 187px;
  transition: all 0.3s;
  text-align: center;
}
header .hd-bot .quote-hd:hover {
  font-weight: 700;
  background: var(--color-main);
}
header.mini .hd-top {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
header .btn-mb {
  display: none;
}
@media (max-width: 991px) {
  header .hd-bot .container .menu {
    gap: 15px;
    margin-right: 15px;
  }
  header .hd-bot .container .logo-hd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
  }
  header .hd-bot .container .logo-hd img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  header .hd-bot .quote-hd {
    padding: 10px;
    width: auto;
  }
}
@media (max-width: 767px) {
  header .hd-top {
    display: none;
  }
  header .hd-bot {
    background: transparent;
    backdrop-filter: none;
  }
  header .hd-bot .container .quote-hd {
    display: none;
  }
  header .hd-bot .container .menu {
    background: var(--color-white);
  }
  header .hd-bot .container .menu .sub-menu {
    display: none;
  }
  header .btn-mb {
    display: block;
  }
  header .btn-mb svg:nth-child(1) {
    display: block;
  }
  header .btn-mb svg:nth-child(2) {
    display: none;
  }
  header .btn-mb.active svg:nth-child(1) {
    display: none;
  }
  header .btn-mb.active svg:nth-child(2) {
    display: block;
  }
  header.mini {
    background-color: var(--color-hd-bot);
    backdrop-filter: blur(2.5px);
  }
}

.banner-index-simple {
  width: 100%;
  position: relative;
  height: 100vh;
}
.banner-index-simple video,
.banner-index-simple iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-index-simple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .banner-index-simple {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .banner-index-simple {
    aspect-ratio: 440/746;
  }
}

.slide-banner-index {
  width: 100%;
  height: 100vh;
}
.slide-banner-index .item {
  width: 100%;
  height: 100%;
}
.slide-banner-index .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .slide-banner-index {
    height: 100%;
  }
}

.block-banner-index {
  position: relative;
  width: 100%;
  height: 100vh;
}
.block-banner-index:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.block-banner-index .block-search-index {
  position: relative;
  z-index: 5;
}
.block-banner-index .block-info-banner {
  position: absolute;
  top: calc(var(--h-height-hd-bot) + var(--h-height-hd-top));
  left: 0;
  width: 100%;
  height: calc(100% - var(--h-height-hd-bot) - var(--h-height-hd-top) - 94px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.block-banner-index .block-info-banner .block-text {
  height: 96px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.block-banner-index .block-info-banner .block-text .block-text-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.block-banner-index .block-desc-banner h2 {
  font-size: var(--fs-text-11);
  font-weight: 700;
  line-height: 131%;
  text-transform: uppercase;
  color: var(--color-text-menu);
  opacity: 0;
  transform: translateY(20px);
}
.block-banner-index .block-desc-banner h2:nth-of-type(1) {
  transition: all 1s;
}
.block-banner-index .block-desc-banner h2:nth-of-type(2) {
  transition: all 1s 1.3s;
}
.block-banner-index .block-desc-banner h2 span {
  font-size: var(--fs-text-banner2);
}
.block-banner-index .block-desc-banner h2.open {
  opacity: 1;
  transform: translateY(0);
}
.block-banner-index .block-desc-banner p {
  margin-top: 20px;
  color: var(--color-text-menu);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s 1.6s;
}
.block-banner-index .block-desc-banner p.open {
  opacity: 1;
  transform: translateY(0);
}
.block-banner-index .block-text-banner {
  text-align: right;
  font-size: var(--fs-text-banner);
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 33.33%, rgba(153, 153, 153, 0.64) 73.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s;
}
.block-banner-index .block-text-banner.open {
  opacity: 1;
  transform: translateX(0);
}
.block-banner-index .block-text-banner.close {
  opacity: 0;
  transform: translateX(-20px);
}
@media (max-width: 1200px) {
  .block-banner-index .block-desc-banner h2 {
    font-size: var(--fs-text-12);
    line-height: 0.9;
  }
  .block-banner-index .block-desc-banner h2 span {
    font-size: var(--fs-text-banner);
  }
  .block-banner-index .block-desc-banner p {
    margin-top: 15px;
  }
  .block-banner-index .block-info-banner .block-text {
    height: 72px;
  }
  .block-banner-index .block-text-banner {
    font-size: var(--fs-text-11);
  }
}
@media (max-width: 991px) {
  .block-banner-index {
    height: auto;
    aspect-ratio: 1024/702;
  }
  .block-banner-index .block-info-banner {
    height: calc(100% - var(--h-height-hd-bot) - var(--h-height-hd-top));
  }
}
@media (max-width: 767px) {
  .block-banner-index {
    aspect-ratio: 440/746;
  }
  .block-banner-index .block-desc-banner p {
    margin-top: 15px;
    text-align: justify;
  }
  .block-banner-index .block-desc-banner p br {
    display: none;
  }
  .block-banner-index .block-text-banner {
    text-align: center;
  }
}

.search-tour .tab-search {
  display: flex;
  gap: 30px;
}
.search-tour .tab-search .item-tab {
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-bg);
  font-size: var(--fs-text-2);
  border-radius: 5px;
  cursor: pointer;
  min-width: 105px;
  text-align: center;
}
.search-tour .tab-search .item-tab:hover, .search-tour .tab-search .item-tab.active {
  background: var(--color-main);
  font-weight: 700;
}
.search-tour .content-form {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  padding: 10px;
  width: 77%;
}
.search-tour .content-form .form-box {
  display: none;
}
.search-tour .content-form .form-box.active {
  display: block;
}
.search-tour .content-form.active {
  max-width: 590px;
}
.search-tour .content-form form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-tour .content-form form .select {
  width: calc((100% - 30px - 180px) / 3);
  position: relative;
}
.search-tour .content-form form .select .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}
.search-tour .content-form form button {
  width: 180px;
  height: 40px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
}
.search-tour .content-form .form-box:nth-child(2) {
  max-width: 590px;
}
.search-tour .content-form .form-box:nth-child(2) form {
  flex-wrap: wrap;
}
.search-tour .content-form .form-box:nth-child(2) form input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: #FFF;
  overflow: hidden;
  padding-left: 10px;
}
.search-tour .content-form .form-box:nth-child(2) form textarea {
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-top: 10px;
  border-radius: 5px;
  resize: none;
}
.search-tour .content-form .form-box:nth-child(2) form textarea, .search-tour .content-form .form-box:nth-child(2) form input {
  outline: none;
  border: 0;
}
.search-tour .content-form .form-box:nth-child(2) .form-group {
  width: 100%;
  display: flex;
  gap: 10px;
}
.search-tour .content-form .form-box:nth-child(2) .form-group .it {
  width: calc((100% - 10px) / 2);
}
.search-tour .content-form .form-box:nth-child(2) button {
  margin-top: 10px;
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  width: 100%;
  font-size: var(--fs-text-2);
}
.search-tour .content-form .form-box:nth-child(2) .block-capthcha {
  gap: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.search-tour .content-form .form-box:nth-child(2) .block-capthcha input {
  width: calc((100% - 56px - 24px) / 2);
}
.search-tour .content-form .form-box:nth-child(2) .block-capthcha .reset-captcha {
  width: 24px;
}
.search-tour .content-form .form-box:nth-child(2) .block-capthcha .code-captcha {
  height: 40px;
  width: calc((100% - 56px - 24px) / 2);
  background: var(--color-white);
  border-radius: 5px;
}
.search-tour .content-form .form-box:nth-child(2) p {
  font-weight: 500;
  font-size: var(--fs-text-2);
  color: var(--color-white);
  padding: 10px;
}
@media (max-width: 991px) {
  .search-tour .tab-search {
    gap: 15px;
  }
  .search-tour .content-form {
    width: 100%;
  }
  .search-tour .content-form.active {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .search-tour {
    width: 241px;
    margin-left: auto;
    margin-right: auto;
  }
  .search-tour .tab-search {
    margin-right: 10px;
    margin-left: 10px;
    gap: 16px;
  }
  .search-tour .tab-search .item-tab {
    width: calc((100% - 16px) / 2);
    padding: 10px;
    text-align: center;
  }
  .search-tour .content-form form {
    flex-wrap: wrap;
  }
  .search-tour .content-form form .select,
  .search-tour .content-form form .btn-search,
  .search-tour .content-form form .btn-main {
    width: 100%;
  }
}

.block-discover-index {
  position: relative;
  z-index: 4;
  margin-bottom: 15px;
}
.block-discover-index .wrapper {
  margin-top: -94px;
  border-radius: 10px;
  background: var(--color-text-menu);
  padding: 10px;
}
.block-discover-index .wrapper .desc,
.block-discover-index .wrapper .desc p {
  font-weight: 500;
  text-align: center;
}
.block-discover-index .wrapper .desc {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .block-discover-index .wrapper {
    margin-top: 15px;
  }
}

.list-discover-index {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 15px;
}
.list-discover-index .item {
  width: calc((100% - 160px) / 6);
}
@media (max-width: 1200px) {
  .list-discover-index {
    gap: 15px;
  }
  .list-discover-index .item {
    width: calc((100% - 75px) / 6);
  }
}
@media (max-width: 767px) {
  .list-discover-index {
    gap: 32px;
  }
  .list-discover-index .item {
    width: calc((100% - 32px) / 2);
  }
}

.it-discover-index {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.it-discover-index .img {
  max-width: 100%;
  width: 46px;
  height: 46px;
  aspect-ratio: 1;
  margin-bottom: 10px;
}
.it-discover-index .img img {
  max-width: 100%;
  object-fit: contain;
}
.it-discover-index .info h3,
.it-discover-index .info p {
  font-size: var(--fs-text-2);
}
.it-discover-index .info h3 {
  font-weight: 700;
}
.it-discover-index .info p {
  font-weight: 500;
}

.list-product-index {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.list-product-index .item {
  width: calc((100% - 96px) / 4);
}
@media (max-width: 1200px) {
  .list-product-index {
    gap: 15px;
    margin-bottom: 30px;
  }
  .list-product-index .item {
    width: calc((100% - 45px) / 4);
  }
}
@media (max-width: 900px) {
  .list-product-index .item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .list-product-index {
    gap: 32px;
  }
  .list-product-index .item {
    width: 100%;
  }
}

.item-tour {
  background-color: var(--color-text-menu);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.item-tour .img {
  display: block;
  width: 100%;
  aspect-ratio: 272/220;
  border-radius: 10px;
  overflow: hidden;
}
.item-tour .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item-tour .info {
  padding: 10px;
}
.item-tour .info h3 {
  margin-bottom: 15px;
}
.item-tour .info h3 a {
  font-size: var(--fs-text);
  color: var(--color-main);
  font-weight: 700;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-tour .info .add {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 5px;
  font-size: var(--fs-text-5);
  flex: 1;
}
.item-tour .info .add svg {
  width: 17px;
}
.item-tour .info .add span {
  flex: 1;
}
.item-tour .info .list-tag-tour {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.item-tour .info .list-tag-tour .it {
  width: auto;
  font-size: var(--fs-text-5);
  color: var(--color-white);
  font-weight: 500;
  background-color: var(--color-bg);
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  white-space: nowrap;
}
.item-tour .info .list-tag-tour .it:hover {
  background-color: var(--color-main);
}
@media (max-width: 1200px) {
  .item-tour .info .list-tag-tour {
    gap: 5px;
  }
  .item-tour .info .list-tag-tour .it {
    width: auto;
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 767px) {
  .item-tour .info .list-tag-tour {
    gap: 14px;
  }
  .item-tour .info .list-tag-tour .it {
    padding: 5px;
  }
}
.item-tour .info .desc {
  font-size: var(--fs-text-2);
}
.item-tour .info .desc ul {
  padding-left: 20px;
  font-size: var(--fs-text-2);
}
.item-tour .info .desc ul li {
  font-size: var(--fs-text-2);
}
.item-tour .info .action-price {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-tour .info .action-price .price {
  font-size: var(--fs-text-2);
}
.item-tour .info .action-price .price strong {
  font-size: var(--fs-text-6);
  font-weight: 700;
}
.item-tour .info .action-price .detail-btn {
  height: 40px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: var(--fs-text);
}
.item-tour .info .action-price .detail-btn:hover {
  background: var(--color-bg);
  color: var(--color-white);
}
.item-tour:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .item-tour .img {
    aspect-ratio: 408/220;
  }
}

.block-destination-index {
  display: flex;
  gap: 33px;
  width: 100%;
  margin-bottom: 15px;
}
.block-destination-index .item {
  width: calc((60% - 99px) / 3);
  height: 400px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.block-destination-index .item .img {
  width: 100%;
  height: 100%;
}
.block-destination-index .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block-destination-index .item .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}
.block-destination-index .item .info {
  position: absolute;
  bottom: -125px;
  left: 0;
  right: 0;
  padding: 15px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  text-align: center;
  transition: all 0.3s;
  max-height: 184px;
  z-index: 2;
}
.block-destination-index .item .info h3 {
  text-transform: uppercase;
  color: var(--color-white);
  font-size: var(--fs-text-7);
  margin-bottom: 5px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.block-destination-index .item .info .desc {
  color: var(--color-text-menu);
  font-size: var(--fs-text-2);
  margin-bottom: 15px;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  opacity: 0;
  pointer-events: none;
}
.block-destination-index .item .info .desc p {
  color: var(--color-text-menu);
  font-size: var(--fs-text-2);
}
.block-destination-index .item .info .btn-find {
  background: var(--color-bg);
  padding: 10px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  gap: 7px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
}
.block-destination-index .item .info .btn-find:hover {
  background: var(--color-main);
}
.block-destination-index .item.active {
  width: 40%;
}
.block-destination-index .item.active .info {
  bottom: 0;
}
.block-destination-index .item.active .info .desc {
  opacity: 1;
  pointer-events: all;
}
.block-destination-index .item.active .info .btn-find {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1200px) {
  .block-destination-index {
    gap: 15px;
  }
  .block-destination-index .item {
    width: calc((60% - 45px) / 3);
  }
}
@media (max-width: 991px) {
  .block-destination-index .item {
    width: calc((50% - 30px) / 2);
  }
  .block-destination-index .item.active {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .block-destination-index {
    gap: 16px;
    flex-wrap: wrap;
    height: 816px;
    overflow: hidden;
    position: relative;
  }
  .block-destination-index .item {
    width: calc((100% - 16px) / 2);
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
  }
  .block-destination-index .item:nth-child(1) {
    transform: translate(0, 0);
  }
  .block-destination-index .item:nth-child(2) {
    transform: translate(0, 416px);
  }
  .block-destination-index .item:nth-child(3) {
    transform: translate(calc((100vw - 30px) / 2 + 8px), 416px);
  }
  .block-destination-index .item.active {
    width: 100%;
  }
  .block-destination-index .item .link {
    display: none;
  }
  .block-destination-index .item .info {
    min-height: 184px;
  }
}

.travel-theme {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 15px;
}
.travel-theme .item {
  width: calc((100% - 160px) / 6);
  aspect-ratio: 170/290;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.travel-theme .item .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.travel-theme .item .img {
  width: 100%;
  height: 100%;
}
.travel-theme .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.travel-theme .item h3 {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 60px;
  line-height: 60px;
  color: var(--color-white);
  font-size: var(--fs-text-8);
  display: none;
}
.travel-theme .item .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s linear;
}
.travel-theme .item .info .title {
  font-size: var(--fs-text-8);
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding: 18px 0 18px;
}
.travel-theme .item .info .title:after {
  content: "";
  position: absolute;
  width: 32%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  background: var(--color-main);
  opacity: 0;
}
.travel-theme .item .info .desc {
  color: var(--color-white);
  font-size: var(--fs-text-2);
  opacity: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.travel-theme .item:hover .info {
  height: 290px;
  justify-content: center;
}
.travel-theme .item:hover .info .title {
  color: var(--color-main);
  padding-bottom: 10px;
}
.travel-theme .item:hover .info .title:after {
  opacity: 1;
}
.travel-theme .item:hover .info .desc {
  opacity: 1;
}
@media (max-width: 767px) {
  .travel-theme .item:hover .info {
    height: 321px;
  }
}
@media (max-width: 1200px) {
  .travel-theme {
    gap: 15px;
  }
  .travel-theme .item {
    width: calc((100% - 75px) / 6);
  }
}
@media (max-width: 991px) {
  .travel-theme .item {
    width: calc((100% - 45px) / 4);
  }
}
@media (max-width: 767px) {
  .travel-theme {
    gap: 8px;
  }
  .travel-theme .item {
    width: calc((100% - 8px) / 2);
  }
}

.our-local-exper-index {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--color-text-menu);
  margin-bottom: 20px;
}

.customer-review-index {
  margin-bottom: 20px;
}

.list-our-exper-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.list-our-exper-content .item {
  width: calc((100% - 160px) / 6);
}
@media (max-width: 1200px) {
  .list-our-exper-content {
    gap: 15px;
  }
  .list-our-exper-content .item {
    width: calc((100% - 75px) / 6);
  }
}
@media (max-width: 991px) {
  .list-our-exper-content .item {
    width: calc((100% - 45px) / 4);
  }
}
@media (max-width: 767px) {
  .list-our-exper-content {
    align-items: flex-start;
    gap: 16px;
  }
  .list-our-exper-content .item {
    width: calc((100% - 16px) / 2);
  }
}

.item-our-local-content {
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-start;
}
.item-our-local-content .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.item-our-local-content .img {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-2);
  margin-bottom: 20px;
  max-width: 150px;
  transition: all 0.3s;
}
.item-our-local-content .img img {
  object-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-our-local-content .info {
  text-align: center;
}
.item-our-local-content .info h3 {
  font-size: var(--fs-text-8);
  font-weight: 700;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-our-local-content .info p {
  font-size: var(--fs-text-5);
  color: var(--color-2);
  font-weight: 500;
}
.item-our-local-content:hover .img {
  border-color: var(--color-main);
}

.item-customer {
  padding: 20px;
  background: var(--color-text-menu);
  border-radius: 10px;
  border: 2px solid transparent;
}
.item-customer h3 {
  font-weight: 700;
  font-size: var(--fs-text);
  margin-bottom: 5px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-customer .rate {
  margin-bottom: 5px;
}
.item-customer .desc {
  font-size: var(--fs-text-2);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 5px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  min-height: 78px;
}
.item-customer .author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.item-customer .author .img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-customer .author .img.logo {
  background: #fff;
}
.item-customer .author .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-customer .author .img img.logo {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.item-customer .author .name {
  width: calc(100% - 95px);
  font-size: var(--fs-text-2);
  font-style: italic;
}
.item-customer .author .name strong {
  display: block;
}
.item-customer .author .name br {
  display: none;
}
.item-customer:hover {
  border-color: var(--color-main);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.block-book-your-tour-index {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.block-book-your-tour-index:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.block-book-your-tour-index .container {
  position: relative;
  z-index: 2;
}
.block-book-your-tour-index .container h2 {
  color: var(--color-white);
}
.block-book-your-tour-index .list-book-your-tour {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
}
.block-book-your-tour-index .list-book-your-tour .item {
  width: calc((100% - 184px) / 5);
}
@media (max-width: 1200px) {
  .block-book-your-tour-index .list-book-your-tour {
    gap: 15px;
  }
  .block-book-your-tour-index .list-book-your-tour .item {
    width: calc((100% - 60px) / 5);
  }
}
@media (max-width: 991px) {
  .block-book-your-tour-index .list-book-your-tour .item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .block-book-your-tour-index .list-book-your-tour .item {
    width: 100%;
  }
}

.item-book-your-tour {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
.item-book-your-tour .num {
  font-size: var(--fs-text-4);
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: 10px;
}
.item-book-your-tour .img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.item-book-your-tour .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.item-book-your-tour h3 {
  font-size: var(--fs-text);
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 5px;
}
.item-book-your-tour .desc {
  font-size: var(--fs-text-2);
  color: var(--color-white);
  font-weight: 500;
  position: relative;
  padding-top: 10px;
  margin-top: 10px;
}
.item-book-your-tour .desc:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  height: 1px;
  background: var(--color-white);
  width: 50%;
  transform: translateX(-50%);
}

footer {
  background-color: var(--color-333);
}
footer .ft-top {
  padding-top: 10px;
  padding-bottom: 20px;
}
footer .ft-top .container {
  display: flex;
  flex-wrap: wrap;
  color: var(--color-2);
  gap: 32px;
}
footer .ft-top .container a,
footer .ft-top .container p {
  color: var(--color-2);
}
footer .ft-top .container .ft-it {
  width: calc((70% - 128px) / 4);
}
footer .ft-top .container .ft-it:first-child {
  width: 30%;
  padding-left: 10px;
  padding-right: 10px;
}
footer .ft-top .container .ft-it:first-child .desc {
  margin-bottom: 18px;
  font-size: var(--fs-text-2);
}
footer .ft-top .container .ft-it:last-child .desc {
  font-size: var(--fs-text-2);
  margin-bottom: 20px;
}
footer .ft-top .container .ft-it .tit-menu,
footer .ft-top .container .ft-it .tit-ft {
  color: var(--color-main);
  padding-top: 10px;
  font-weight: 700;
  font-size: var(--fs-text-7);
  margin-bottom: 20px;
}
footer .ft-top .container .ft-it .tit-menu a,
footer .ft-top .container .ft-it .tit-ft a {
  color: var(--color-main);
  font-weight: 700;
  font-size: var(--fs-text-7);
}
footer .ft-top .container .ft-it p a {
  font-size: var(--fs-text-2);
  line-height: 28px;
}
footer .ft-top .container .ft-it p a:hover {
  color: var(--color-main);
}
footer .ft-top .container .logo-ft {
  width: 236px;
  padding-top: 10px;
  aspect-ratio: 236/45;
  overflow: hidden;
  height: 45px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .ft-top .container .logo-ft img {
  max-width: 100%;
  object-fit: contain;
}
footer .ft-top .container .social-ft {
  display: flex;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
footer .ft-top .container .social-ft .item:hover svg path {
  stroke: var(--color-main);
}
footer .ft-top .container .makeAnEnquiry-ft {
  padding: 10px 20px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--fs-text-2);
  text-transform: uppercase;
}
footer .ft-top .container .makeAnEnquiry-ft:hover {
  background: var(--color-main);
}
@media (max-width: 1200px) {
  footer .ft-top .container {
    gap: 15px;
  }
  footer .ft-top .container .ft-it {
    width: calc((70% - 60px) / 4);
  }
  footer .ft-top .container .makeAnEnquiry-ft {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  footer .ft-top .container {
    column-gap: 32px;
    row-gap: 0;
  }
  footer .ft-top .container .ft-it {
    width: calc((100% - 96px) / 4);
  }
  footer .ft-top .container .ft-it:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  footer .ft-top .container .ft-it:first-child .logo-ft {
    width: 53%;
    aspect-ratio: unset;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding-top: 0;
    margin-top: 15px;
  }
  footer .ft-top .container .ft-it:first-child .desc {
    width: calc(100% - 132px);
  }
  footer .ft-top .container .ft-it:first-child .tripadvisor-ft {
    width: 132px;
  }
}
@media (max-width: 767px) {
  footer .ft-top .container p {
    color: var(--color-text-menu);
  }
  footer .ft-top .container .ft-it {
    width: 100%;
    color: var(--color-white);
  }
  footer .ft-top .container .ft-it:first-child {
    padding: 0;
  }
  footer .ft-top .container .ft-it:first-child .desc {
    width: calc(100% - 90px);
    text-align: justify;
    padding-right: 15px;
  }
  footer .ft-top .container .ft-it:first-child .tripadvisor-ft {
    width: 90px;
  }
  footer .ft-top .container .ft-it:first-child .tripadvisor-ft img {
    width: 100%;
    height: auto;
  }
  footer .ft-top .container .ft-it .tit-menu,
  footer .ft-top .container .ft-it .tit-ft {
    margin-bottom: 0px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }
  footer .ft-top .container .ft-it .tit-menu a,
  footer .ft-top .container .ft-it .tit-ft a {
    color: var(--color-white);
  }
  footer .ft-top .container .ft-it .tit-menu .icon,
  footer .ft-top .container .ft-it .tit-ft .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  footer .ft-top .container .ft-it .tit-menu .icon svg,
  footer .ft-top .container .ft-it .tit-ft .icon svg {
    transition: all 0.3s;
  }
  footer .ft-top .container .ft-it .tit-menu .icon.active svg,
  footer .ft-top .container .ft-it .tit-ft .icon.active svg {
    transform: rotate(180deg);
  }
  footer .ft-top .container .ft-it .tit-menu .icon.active svg path,
  footer .ft-top .container .ft-it .tit-ft .icon.active svg path {
    fill: var(--color-main);
  }
  footer .ft-top .container .ft-it .tit-menu.active,
  footer .ft-top .container .ft-it .tit-ft.active {
    color: var(--color-main);
  }
  footer .ft-top .container .ft-it .tit-menu.active a,
  footer .ft-top .container .ft-it .tit-ft.active a {
    color: var(--color-main);
  }
  footer .ft-top .container .ft-it .content {
    padding: 10px;
    display: none;
    background: var(--color-text-2);
    border-radius: 5px;
  }
  footer .ft-top .container .ft-it .content p a {
    color: var(--color-text-menu);
    font-weight: 500;
  }
}
footer .ft-send-email {
  background-color: var(--color-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .ft-send-email form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
  gap: 5px;
  height: 100%;
}
footer .ft-send-email form input {
  width: 396px;
  height: 40px;
  outline: none;
  display: block;
  border-radius: 5px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background: var(--color-text-menu);
  padding-left: 10px;
  font-size: var(--fs-text-2);
  font-weight: 500;
  color: var(--color-text);
}
footer .ft-send-email form input::placeholder {
  font-size: var(--fs-text-2);
  font-weight: 500;
  color: var(--color-2);
}
footer .ft-send-email form button {
  height: 40px;
  border: 0;
  outline: none;
  display: block;
  background-color: var(--color-main);
  border-radius: 5px;
  padding: 10px 25px;
  color: var(--color-text-menu);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
footer .ft-send-email form button:hover {
  background-color: var(--color-bg);
}
@media (max-width: 767px) {
  footer .ft-send-email form {
    width: var(--w-container);
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .ft-send-email form input {
    width: auto;
    flex: 1;
  }
  footer .ft-send-email form button {
    padding: 10px 10px;
  }
}
footer .copyright {
  color: var(--color-2);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: var(--color-3);
}

.banner-content {
  aspect-ratio: 1440/280;
  position: relative;
}
.banner-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}
.banner-content .img {
  height: 100%;
  width: 100%;
}
.banner-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-content h1,
.banner-content h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--fs-text-11);
  color: var(--color-white);
  z-index: 2;
}
@media (max-width: 991px) {
  .banner-content {
    aspect-ratio: 1440/500;
  }
}
@media (max-width: 767px) {
  .banner-content {
    aspect-ratio: 16/9;
  }
  .banner-content h1 {
    top: 50%;
  }
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--fs-text-2);
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 5px;
  color: var(--color-bg);
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb a {
  font-size: var(--fs-text-2);
  color: var(--color-bg);
}

.desc-review {
  padding-bottom: 30px;
}
.desc-review h2 {
  margin-bottom: 15px;
  font-size: var(--fs-text-4);
}

.review-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.review-action .btn-main {
  padding: 10px 25px;
  border-radius: 5px;
  font-size: var(--fs-text-7);
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
}
.review-action .btn-main a {
  font-size: var(--fs-text-7);
  font-weight: 700;
  color: var(--color-white);
}
.review-action .btn-main:hover {
  background: var(--color-white);
  color: var(--color-2);
}
.review-action .btn-main:hover a {
  color: var(--color-2);
}
@media (max-width: 767px) {
  .review-action {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .review-action .btn-main {
    width: 100%;
    text-align: center;
  }
}

.list-review {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 32px;
}
.list-review .item {
  width: calc((100% - 64px) / 3);
}
.list-review .item .view-more {
  background: var(--color-text-2);
  display: block;
  margin-top: 10px;
  font-size: var(--fs-text);
  color: var(--color-text-menu);
  font-weight: 700;
  text-align: center;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
}
.list-review .item .view-more:hover {
  color: var(--color-white);
  background: var(--color-main);
}
@media (max-width: 991px) {
  .list-review .item {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 767px) {
  .list-review {
    gap: 15px;
    padding-top: 15px;
  }
  .list-review .item {
    width: 100%;
  }
}

.detai-review-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 65%;
  max-width: 880px;
  background: var(--color-text-menu);
  z-index: 11;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .detai-review-popup {
    z-index: 120;
  }
}
.detai-review-popup.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.detai-review-popup .close {
  width: 45px;
  padding: 5px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  right: 0;
  z-index: 11;
  cursor: pointer;
}
.detai-review-popup .close:hover svg path {
  fill: var(--color-main);
}
.detai-review-popup h2 {
  font-size: var(--fs-text-12);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--color-main);
}
.detai-review-popup h3 {
  font-size: var(--fs-text);
  margin-bottom: 15px;
}
.detai-review-popup .block-content {
  display: flex;
  gap: 20px;
}
.detai-review-popup .block-content .img {
  width: 40%;
  height: 50vh;
}
.detai-review-popup .block-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.detai-review-popup .block-content .content {
  flex: 1;
  max-height: 50vh;
  overflow-y: auto;
}
.detai-review-popup .block-content .content p, .detai-review-popup .block-content .content * {
  font-size: var(--fs-text-2);
  margin-bottom: 20px;
  color: var(--color-333);
}
.detai-review-popup .block-content .content ul, .detai-review-popup .block-content .content ol {
  padding-left: 30px;
}
.detai-review-popup .block-content .content ul li, .detai-review-popup .block-content .content ol li {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .detai-review-popup {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .detai-review-popup {
    width: 100%;
    height: calc(100% - 60px);
    padding: 10px;
    bottom: 0;
    border-radius: 0;
    transform: translate(0) scale(0);
    top: 60px;
    left: 0;
  }
  .detai-review-popup.active {
    transform: translate(0) scale(1);
  }
  .detai-review-popup .close {
    top: -53px;
    right: 12px;
    background: var(--color-bg);
    border-radius: 5px;
  }
  .detai-review-popup .wrapper {
    max-height: calc(100vh - 60px);
    overflow: auto;
  }
  .detai-review-popup .block-content {
    flex-direction: column;
  }
  .detai-review-popup .block-content .img,
  .detai-review-popup .block-content .content {
    width: 100%;
  }
  .detai-review-popup .block-content .content {
    max-height: unset;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.list-image-about {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.list-image-about .img {
  width: calc((52% - 96px) / 3);
  height: 360px;
  transition: all 0.5s;
}
.list-image-about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.list-image-about .img.active {
  width: 48%;
}
@media (max-width: 767px) {
  .list-image-about {
    gap: 15px;
    flex-wrap: wrap;
  }
  .list-image-about .img {
    width: calc((100% - 15px) / 2);
    height: 250px;
  }
  .list-image-about .img.active {
    width: calc((100% - 15px) / 2);
  }
}

.block-about {
  padding-bottom: 20px;
}
.block-about h2 {
  padding: 10px;
  text-align: center;
  font-size: var(--fs-text-4);
  font-weight: 700;
  color: var(--color-main);
}
.block-about h3 {
  font-size: var(--fs-text-13);
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 15px;
  font-style: italic;
}
.block-about .desc p {
  color: var(--color-333);
  margin-bottom: 20px;
  text-align: center;
}
.block-about .btn-main {
  width: 171px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin: auto;
  border-radius: 5px;
  font-size: var(--fs-text-7);
}
.block-about .btn-main:hover {
  background: var(--color-white);
  color: var(--color-2);
}

.about-2 {
  padding-top: 20px;
  padding-bottom: 30px;
}

.list-why-travel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.list-why-travel .item {
  width: calc((100% - 64px) / 3);
}
.list-why-travel .item .info .img {
  margin-bottom: 5px;
}
.list-why-travel .item .info .img img {
  filter: brightness(0) invert(1);
}
.list-why-travel .item .info p {
  font-size: var(--fs-text-2);
}
@media (max-width: 767px) {
  .list-why-travel {
    gap: 15px;
  }
  .list-why-travel .item {
    width: 100%;
  }
}

.item-why-travel {
  aspect-ratio: 373/328;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.item-why-travel .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s;
}
.item-why-travel .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.item-why-travel .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-why-travel .bg img:nth-child(1) {
  display: block;
}
.item-why-travel .bg img:nth-child(2) {
  display: none;
}
.item-why-travel .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: var(--color-text-menu);
  font-size: var(--fs-text-2);
  transition: all 0.1s;
}
.item-why-travel .info .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.item-why-travel .info .icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.item-why-travel .info h3 {
  color: var(--color-text-menu);
  font-weight: 700;
  font-size: var(--fs-text-2);
}
.item-why-travel .info2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s;
}
.item-why-travel .info2 .info, .item-why-travel .info2 .desc {
  height: 50%;
}
.item-why-travel .info2 .desc {
  padding: 20px 10px;
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: justify;
  overflow-y: auto;
  /* Custom scrollbar */
}
.item-why-travel .info2 .desc::-webkit-scrollbar {
  width: 8px;
}
.item-why-travel .info2 .desc::-webkit-scrollbar-track {
  background: var(--color-main);
}
.item-why-travel .info2 .desc::-webkit-scrollbar-thumb {
  background: #888;
}
.item-why-travel .info2 .desc::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.item-why-travel .info2 .info {
  position: unset;
}
.item-why-travel:hover .bg {
  bottom: 50%;
}
.item-why-travel:hover .bg img:nth-child(1) {
  display: none;
}
.item-why-travel:hover .bg img:nth-child(2) {
  display: block;
}
.item-why-travel:hover .info2 {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.item-why-travel:hover > .info {
  opacity: 0;
}
.item-why-travel.item-2 {
  aspect-ratio: 372/552;
}
.item-why-travel.item-2 .info2 .info {
  height: 30%;
}
.item-why-travel.item-2 .info2 .desc {
  height: 70%;
}
.item-why-travel.item-2:hover .bg {
  bottom: 70%;
}
.item-why-travel.item-2:hover .bg img:nth-child(1) {
  display: none;
}
.item-why-travel.item-2:hover .bg img:nth-child(2) {
  display: block;
}
.item-why-travel.item-2:hover .info2 {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.item-why-travel.item-2:hover > .info {
  opacity: 0;
}

.about-3 {
  padding-bottom: 30px;
}

.about-2 h2,
.about-3 h2,
.about-4 h2,
.about-5 h2 {
  padding: 10px;
  text-align: center;
  font-size: var(--fs-text-4);
  font-weight: 700;
}

@media (max-width: 767px) {
  .about-3 h2 {
    padding-bottom: 40px;
  }
}

.item-travel-specialists {
  position: relative;
  aspect-ratio: 272/400;
  border-radius: 10px;
  overflow: hidden;
}
.item-travel-specialists .img {
  width: 100%;
  height: 100%;
}
.item-travel-specialists .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-travel-specialists .info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2.5px);
  text-align: center;
  padding: 10px;
  transition: all 0.3s;
}
.item-travel-specialists .info h3 {
  font-weight: 700;
  font-size: var(--fs-text);
  color: var(--color-main);
  text-transform: uppercase;
}
.item-travel-specialists .info p {
  color: var(--color-white);
}
.item-travel-specialists .info2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2.5px);
  text-align: center;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.item-travel-specialists .info2 > p {
  margin-bottom: 15px;
}
.item-travel-specialists .info2 h3 {
  color: var(--color-main);
  font-size: var(--fs-text-8);
  font-weight: 700;
}
.item-travel-specialists .info2 p {
  font-size: var(--fs-text-2);
}
.item-travel-specialists .info2 .desc {
  margin-bottom: 30px;
}
.item-travel-specialists .info2 .btn-main {
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.item-travel-specialists .info2 .btn-main:hover {
  background: var(--color-bg);
  color: var(--color-white);
}
.item-travel-specialists:hover .info {
  opacity: 0;
}
.item-travel-specialists:hover .info2 {
  opacity: 1;
  pointer-events: all;
}

.list-our-local-guides {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 15px;
}
.list-our-local-guides .item {
  width: calc((100% - 96px) / 4);
}
.list-our-local-guides .item .info h3 {
  font-size: var(--fs-text);
}
.list-our-local-guides .item .info p {
  font-size: var(--fs-text-2);
}
@media (max-width: 991px) {
  .list-our-local-guides .item {
    width: calc((100% - 64px) / 3);
  }
}
@media (max-width: 767px) {
  .list-our-local-guides {
    gap: 15px;
  }
  .list-our-local-guides .item {
    width: calc((100% - 15px) / 2);
  }
}

.about-4 {
  padding-bottom: 20px;
}

.list-office {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 20px;
}
.list-office .item {
  width: calc((100% - 32px) / 2);
}
@media (max-width: 767px) {
  .list-office {
    gap: 15px;
  }
  .list-office .item {
    width: 100%;
  }
}

.item-office {
  border-radius: 10px;
  background: var(--color-white);
  overflow: hidden;
}
.item-office .img {
  aspect-ratio: 576/251;
  border-radius: 10px;
  overflow: hidden;
}
.item-office .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-office .img p, .item-office .img iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.item-office .info {
  padding: 20px 10px;
}
.item-office .info h3 {
  font-size: var(--fs-text);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-main);
}
.item-office .info p {
  font-size: var(--fs-text);
  color: var(--color-333);
  font-weight: 700;
  margin-bottom: 5px;
}
.item-office .info .add-phone .it {
  font-size: var(--fs-text-2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.item-office .info .add-phone .it svg {
  width: 17px;
}
.item-office .info .add-phone .it a {
  font-size: var(--fs-text-2);
}

.service-1 {
  padding: 20px 0;
}
.service-1 .wrapper {
  display: flex;
  gap: 32px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-text-menu);
}
.service-1 .wrapper .left,
.service-1 .wrapper .right {
  width: calc((100% - 32px) / 2);
}
.service-1 .wrapper .left .video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.service-1 .wrapper .left .video video,
.service-1 .wrapper .left .video iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.service-1 .wrapper .right {
  padding-top: 20px;
  padding-right: 20px;
}
.service-1 .wrapper .right h2 {
  font-size: var(--fs-text-4);
  color: var(--color-main);
  width: 60%;
  padding-bottom: 20px;
}
.service-1 .wrapper .right .desc {
  border-top: 1px solid var(--color-main);
  padding-top: 20px;
  color: var(--color-333);
  text-align: justify;
}
@media (max-width: 1600px) {
  .service-1 .wrapper .right h2 {
    width: 65%;
  }
}
@media (max-width: 1400px) {
  .service-1 .wrapper .right {
    padding-bottom: 20px;
  }
  .service-1 .wrapper .right h2 {
    width: 78%;
  }
}
@media (max-width: 991px) {
  .service-1 .wrapper .right h2 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-1 .wrapper {
    flex-direction: column;
    gap: 0;
  }
  .service-1 .wrapper .left,
  .service-1 .wrapper .right {
    width: 100%;
  }
  .service-1 .wrapper .right {
    padding: 15px;
  }
}

.service-2 {
  padding-bottom: 20px;
}
.service-2 h2 {
  padding-top: 10px;
  font-size: var(--fs-text-4);
  text-align: center;
  font-weight: 700;
}
.service-2 .sub {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}

.list-service-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.list-service-2 .item {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 991px) {
  .list-service-2 .item {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 767px) {
  .list-service-2 .item {
    width: 100%;
  }
}

.item-service-2 {
  aspect-ratio: 373/554;
  position: relative;
  border-radius: 10px;
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.item-service-2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.item-service-2 .img {
  width: 100%;
  height: 100%;
}
.item-service-2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-service-2 > h3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--fs-text-12);
  z-index: 1;
  transition: opacity 0.3s;
}
.item-service-2 .info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.item-service-2 .info h3 {
  height: 42%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--fs-text-12);
}
.item-service-2 .info .desc {
  height: 58%;
  overflow-y: auto;
  padding: 10px;
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: justify;
}
.item-service-2:hover > h3 {
  opacity: 0;
}
.item-service-2:hover .info {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ft-contact {
  background: url("/html/assets/images/bg-ft-contact.webp");
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.ft-contact.bg-2 {
  background: url("/html/assets/images/roinuoc.webp");
  background-size: cover;
  background-position: top;
}
.ft-contact:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.ft-contact .desc {
  padding: 10px;
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: var(--fs-text-4);
  text-align: center;
  font-weight: 700;
}
.ft-contact .desc .btn-main {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: var(--fs-text-7);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
}
.ft-contact .desc .btn-main:hover {
  color: var(--color-text-2);
}
@media (max-width: 767px) {
  .ft-contact .desc {
    font-size: var(--fs-text-7);
  }
}

.overview-block h2 {
  font-size: var(--fs-text-4);
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
.overview-block .block-overview {
  display: flex;
  margin-bottom: 20px;
}
.overview-block .block-overview .left {
  width: 40%;
}
.overview-block .block-overview .left p {
  margin-bottom: 20px;
}
.overview-block .block-overview .right {
  width: 60%;
  height: 380px;
  padding-left: 32px;
  gap: 32px;
  display: flex;
  align-items: flex-start;
}
.overview-block .block-overview .right .main {
  aspect-ratio: 474/380;
  width: 70%;
}
.overview-block .block-overview .right .main .img {
  width: 100%;
  height: 100%;
}
.overview-block .block-overview .right .seconds {
  width: calc(30% - 32px);
}
@media (max-width: 1200px) {
  .overview-block .block-overview .right .seconds {
    width: calc(30% - 30px);
  }
}
.overview-block .block-overview .right .seconds .img {
  aspect-ratio: 171/174;
}
.overview-block .block-overview .right .seconds .img:first-child {
  margin-bottom: 32px;
}
.overview-block .block-overview .right .img {
  border-radius: 10px;
  overflow: hidden;
}
.overview-block .block-overview .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .overview-block .block-overview {
    flex-direction: column;
  }
  .overview-block .block-overview .left {
    width: 100%;
  }
  .overview-block .block-overview .right {
    width: 100%;
    gap: 0;
    padding-left: 0;
  }
  .overview-block .block-overview .right .seconds {
    width: 30%;
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .overview-block .block-overview {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .overview-block .block-overview .left,
  .overview-block .block-overview .right {
    width: 100%;
  }
  .overview-block .block-overview .right {
    flex-direction: column;
    height: auto;
  }
  .overview-block .block-overview .right .main {
    width: 100%;
    margin-bottom: 15px;
  }
  .overview-block .block-overview .right .seconds {
    width: 100%;
    padding-left: 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  .overview-block .block-overview .right .seconds .img {
    width: calc((100% - 15px) / 2);
  }
  .overview-block .block-overview .right .seconds .img:first-child {
    margin-bottom: 15px;
  }
}

.see-detail {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  align-items: center;
  font-weight: 700;
  padding: 10px;
}
.see-detail .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.see-detail:hover {
  color: var(--color-main);
}
.see-detail:hover .icon svg path {
  stroke: var(--color-main);
}

.destination-tag {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 10px;
  justify-content: center;
}
.destination-tag .it {
  cursor: pointer;
  padding: 10px 37.5px;
  display: inline-block;
  background: var(--color-white);
  border-radius: 8px;
  color: var(--color-bg);
  font-size: var(--fs-text);
}
.destination-tag .it:hover {
  background: var(--color-main);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .destination-tag .it {
    padding: 5px 10px;
  }
}

.block-tour {
  padding-top: 20px;
  padding-bottom: 20px;
}
.block-tour .desc {
  text-align: center;
  max-width: 60%;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .block-tour .desc {
    max-width: 100%;
  }
}
.block-tour .list-product-index {
  margin-bottom: 20px;
}

.where-to-go-block .where {
  background: var(--color-6);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.where-to-go-block .where .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .where-to-go-block .where .container {
    flex-direction: column;
  }
}
.where-to-go-block .where img {
  width: 100%;
}
.where-to-go-block .where .left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.where-to-go-block .where .left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.where-to-go-block .where .right {
  width: 47%;
}
.where-to-go-block .where .right h3 {
  font-size: var(--fs-text-4);
  font-weight: 500;
  padding: 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .where-to-go-block .where .right h3 {
    text-align: center;
  }
}
.where-to-go-block .where .right .list-add {
  display: flex;
  flex-wrap: wrap;
  column-gap: 197px;
  row-gap: 25px;
}
.where-to-go-block .where .right .list-add .it {
  width: calc((100% - 197px) / 2);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1400px) {
  .where-to-go-block .where .right .list-add {
    column-gap: 150px;
    row-gap: 20px;
  }
  .where-to-go-block .where .right .list-add .it {
    width: calc((100% - 150px) / 2);
  }
}
@media (max-width: 991px) {
  .where-to-go-block .where .right .list-add {
    column-gap: 50px;
    row-gap: 15px;
  }
  .where-to-go-block .where .right .list-add .it {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .where-to-go-block .where .right .list-add {
    column-gap: 15px;
    row-gap: 15px;
  }
  .where-to-go-block .where .right .list-add .it {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  .where-to-go-block .where .left, .where-to-go-block .where .right {
    width: 100%;
  }
}

.slide-customer-review .item {
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}

.item-cuisine {
  position: relative;
  aspect-ratio: 272/330;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.item-cuisine:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.63%, rgba(0, 0, 0, 0.7) 100%);
}
.item-cuisine:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 20px;
  border: 5px solid var(--color-text-menu);
  opacity: 0;
  transition: opacity 0.5s;
}
.item-cuisine .img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.item-cuisine .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-cuisine h3 {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  text-align: center;
  color: var(--color-white);
  font-size: var(--fs-text-7);
}
.item-cuisine:hover:before {
  opacity: 1;
}

.dot-slide .owl-dots {
  margin-top: 10px;
}
.dot-slide .owl-dot.active span {
  background: var(--color-main) !important;
}

.block-travel-tips {
  display: flex;
  gap: 32px;
}
.block-travel-tips .left,
.block-travel-tips .right {
  width: calc((100% - 32px) / 2);
}
.block-travel-tips .right .img {
  aspect-ratio: 576/448;
  border-radius: 10px;
  overflow: hidden;
}
.block-travel-tips .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .block-travel-tips {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .block-travel-tips .left,
  .block-travel-tips .right {
    width: 100%;
  }
  .block-travel-tips .right .img {
    aspect-ratio: 16/9;
  }
}

.item-tip {
  margin-bottom: 5px;
}
.item-tip .tit {
  padding: 10px;
  border-radius: 5px;
  background: var(--color-text-menu);
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-text);
  color: var(--color-333);
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 5px;
}
.item-tip .tit .icon svg {
  transition: all 0.3s;
}
.item-tip .tit.active {
  color: var(--color-main);
}
.item-tip .tit.active .icon svg {
  transform: rotate(180deg);
}
.item-tip .tit.active .icon svg path {
  stroke: var(--color-main);
}
.item-tip .anser {
  padding: 10px;
  border-radius: 5px;
  display: none;
  background: var(--color-text-menu);
}
.item-tip .anser ul, .item-tip .anser ol {
  padding-left: 16px;
}
.item-tip .anser p {
  font-size: var(--fs-text-2);
  text-align: justify;
  color: var(--color-333);
}
.item-tip .anser table {
  width: 100%;
}
.item-tip.max .tit,
.item-tip.max .anser {
  padding: 20px;
}

.list-module-product {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
}
.list-module-product .item {
  width: calc((100% - 32px) / 2);
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}
.list-module-product .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.list-module-product .item span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--fs-text-7);
  text-transform: uppercase;
  z-index: 2;
}
.list-module-product .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}
.list-module-product .item:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .list-module-product {
    gap: 15px;
  }
  .list-module-product .item {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  .list-module-product .item {
    width: 100%;
  }
}

.block-search-tour {
  margin-bottom: 20px;
}
.block-search-tour form {
  display: flex;
  gap: 32px;
}
.block-search-tour form .btn-main {
  width: calc((100% - 96px) / 4);
  border: 1px solid var(--color-text-2);
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.block-search-tour form .select {
  width: calc((100% - 96px) / 4);
  background-color: var(--color-text-menu);
}
.block-search-tour form .select .custom-select-trigger {
  border: 1px solid var(--color-text-2);
}
.block-search-tour form .select .custom-select-trigger.active {
  border: 2px solid var(--color-main);
}
.block-search-tour form .btn-main {
  padding-left: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 0;
}
@media (max-width: 991px) {
  .block-search-tour form {
    gap: 15px;
  }
  .block-search-tour form .select,
  .block-search-tour form .btn-main {
    width: calc((100% - 45px) / 4);
  }
}
@media (max-width: 767px) {
  .block-search-tour form {
    flex-wrap: wrap;
  }
  .block-search-tour form .select,
  .block-search-tour form .btn-main {
    width: calc((100% - 15px) / 2);
  }
}

.list-tours {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.list-tours .item {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 991px) {
  .list-tours {
    gap: 15px;
  }
  .list-tours .item {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  .list-tours .item {
    width: 100%;
  }
}

.img-map-tour {
  width: 100%;
  height: 465px;
  padding: 4px;
  background: var(--color-9);
  margin-bottom: 5px;
}
.img-map-tour #map {
  display: block;
  width: 100%;
  height: 100%;
}
.img-map-tour img {
  width: 100%;
  height: auto;
}

.overview-block {
  padding-top: 30px;
  padding-bottom: 30px;
}
.overview-block .desc {
  text-align: center;
  margin-bottom: 30px;
}
.overview-block .blog-img {
  display: flex;
}
.overview-block .blog-img .left {
  width: 40%;
  aspect-ratio: 475/300;
  border-radius: 10px;
  overflow: hidden;
}
.overview-block .blog-img .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.overview-block .blog-img .right {
  width: 60%;
  padding-left: 42px;
}
.overview-block .blog-img .right h3 {
  font-size: var(--fs-text-12);
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: 10px;
}
.overview-block .blog-img .right li {
  font-weight: 600;
  line-height: 32px;
  font-size: var(--fs-text);
}
.overview-block .blog-img .right ul {
  padding-left: 25px;
}
@media (max-width: 991px) {
  .overview-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .overview-block {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .overview-block .blog-img {
    flex-direction: column;
  }
  .overview-block .blog-img .left,
  .overview-block .blog-img .right {
    width: 100%;
  }
  .overview-block .blog-img .left {
    aspect-ratio: 16/9;
  }
  .overview-block .blog-img .right {
    padding-left: 0;
    padding-top: 15px;
  }
  .overview-block .blog-img .right h3 {
    padding-left: 20px;
  }
  .overview-block .blog-img .right ul {
    padding-left: 25px;
  }
}

.when-to-go-block .weather img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.list-section.fixed {
  position: fixed;
  top: var(--h-height-hd-bot);
  left: 0;
  right: 0;
  z-index: 10;
}
.list-section.fixed .destination-tag {
  padding: 5px 0;
}
.list-section.fixed .destination-tag .it {
  padding: 5px 10px;
}
@media (max-width: 767px) {
  .list-section.fixed .destination-tag {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .list-section.fixed .destination-tag .it {
    white-space: nowrap;
  }
}

.form-book-tour form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.form-book-tour form .w-3 {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 32px;
}
.form-book-tour form .w-3 .i {
  width: calc((100% - 32px) / 3);
}
.form-book-tour form .gender {
  height: 40px;
}
.form-book-tour form .form-group {
  width: calc((100% - 32px) / 2);
}
.form-book-tour form .form-group label {
  font-size: var(--fs-text);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.form-book-tour form .form-group label sup {
  color: var(--color-main);
}
.form-book-tour form .form-group .block-check label {
  font-size: var(--fs-text-2);
  margin-bottom: 0;
}
.form-book-tour form .form-group.w-100 {
  width: 100%;
}
.form-book-tour input,
.form-book-tour select,
.form-book-tour textarea {
  width: 100%;
  height: 40px;
  border: 1px solid var(--color-5);
  border-radius: 5px;
  padding-left: 15px;
  background-color: var(--color-text-menu);
  outline: none;
}
.form-book-tour input::placeholder,
.form-book-tour select::placeholder,
.form-book-tour textarea::placeholder {
  font-size: var(--fs-text-2);
}
.form-book-tour label.error {
  display: none !important;
}
.form-book-tour .error {
  border: 1px solid red;
}
.form-book-tour textarea {
  height: 200px;
  resize: none;
  padding-top: 15px;
}
.form-book-tour select {
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
  padding-left: 5px;
}
.form-book-tour select option {
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
}
.form-book-tour select:focus {
  border: 2px solid var(--color-main);
}
.form-book-tour .custom-select-trigger {
  border: 1px solid var(--color-5);
}
.form-book-tour .custom-select-trigger.active {
  border: 2px solid var(--color-main);
}
.form-book-tour .w-2 {
  display: flex;
  gap: 32px;
}
.form-book-tour .w-2 .it {
  width: calc((100% - 32px) / 2);
}
.form-book-tour .w-4 {
  display: flex;
  gap: 32px;
}
.form-book-tour .w-4 .it {
  width: calc((100% - 96px) / 4);
}
.form-book-tour .w-4 .it p {
  font-size: var(--fs-text-2);
  padding-top: 10px;
  color: var(--color-text-2);
}
.form-book-tour .block-phone {
  display: flex;
  gap: 32px;
}
.form-book-tour .block-phone .custom-select-wrapper {
  width: 100px;
}
.form-book-tour .block-phone .custom-select-wrapper .custom-select-trigger .name {
  white-space: nowrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.form-book-tour .block-phone .custom-select-wrapper .custom-options {
  width: 100px;
}
.form-book-tour .block-phone select {
  width: 70px;
}
.form-book-tour .block-phone input {
  flex: 1;
}
.form-book-tour .list-checkbox {
  height: 40px;
}
.form-book-tour .block-check {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-book-tour .block-check input {
  width: 20px;
  height: 20px;
}
.form-book-tour .block-check label {
  font-size: var(--fs-text-2);
}
.form-book-tour .block-code {
  height: 100px;
  background: var(--color-8);
  border-radius: 5px;
  padding: 17px 12px;
  margin-bottom: 50px;
}
.form-book-tour button {
  background-color: var(--color-main);
  display: block;
  width: 100%;
  border-radius: 5px;
  height: 50px;
  cursor: pointer;
  font-size: var(--fs-text-7);
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 700;
}
.form-book-tour button:hover {
  background-color: var(--color-bg);
}
@media (max-width: 991px) {
  .form-book-tour form {
    gap: 15px;
  }
  .form-book-tour form .form-group {
    width: calc((100% - 15px) / 2);
  }
  .form-book-tour .block-phone {
    gap: 15px;
  }
  .form-book-tour .w-2 {
    gap: 15px;
    flex-wrap: wrap;
  }
  .form-book-tour .w-2 .it {
    width: 100%;
  }
  .form-book-tour .w-4 {
    gap: 15px;
    flex-wrap: wrap;
  }
  .form-book-tour .w-4 .it {
    width: calc((100% - 15px) / 2);
  }
  .form-book-tour .block-code {
    margin-bottom: 0;
  }
  .form-book-tour button {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .form-book-tour form .form-group {
    width: 100%;
  }
  .form-book-tour .list-checkbox {
    height: auto;
  }
}

.block-news-post {
  margin-bottom: 50px;
}
.block-news-post .container {
  display: flex;
  gap: 32px;
}
.block-news-post .container .block {
  background-color: var(--color-text-menu);
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
}
.block-news-post .container .left {
  width: calc(100% - 373px - 32px);
}
.block-news-post .container .left h1 {
  font-size: var(--fs-text-4);
  padding: 20px 10px;
}
.block-news-post .container .left .auth-time-share {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
}
.block-news-post .container .left .auth-time-share .it {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
}
.block-news-post .container .left .auth-time-share .author {
  margin-right: auto;
  margin-left: 20%;
}
.block-news-post .container .left .auth-time-share .share {
  gap: 10px;
}
.block-news-post .container .left .auth-time-share .share a:hover svg path {
  stroke: var(--color-main);
}
.block-news-post .container .left .detail-content {
  font-family: inherit;
}
.block-news-post .container .left .detail-content * {
  font-family: inherit;
}
.block-news-post .container .left .detail-content h3 {
  padding: 10px;
  font-family: inherit;
}
.block-news-post .container .left .detail-content p {
  font-family: inherit;
  padding: 10px;
  color: var(--color-333);
}
.block-news-post .container .left .detail-content figure {
  padding: 10px;
  font-family: inherit;
  background: var(--color-5);
  border-radius: 5px;
}
.block-news-post .container .left .detail-content figure img {
  border-radius: 5px;
  height: auto;
}
.block-news-post .container .left .detail-content figure figcaption {
  text-align: center;
  color: var(--color-text-2);
  font-family: inherit;
}
.block-news-post .container .left .tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block-news-post .container .left .tags .block-tag {
  display: flex;
  gap: 10px;
}
.block-news-post .container .left .tags .block-tag strong {
  padding: 10px;
  font-size: var(--fs-text-2);
  font-weight: 700;
}
.block-news-post .container .left .tags .block-tag .list-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.block-news-post .container .left .tags .block-tag .list-tag a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: var(--fs-text-5);
  color: var(--color-333);
  background: var(--color-5);
  border-radius: 5px;
}
.block-news-post .container .left .tags .block-tag .list-tag a:hover {
  color: var(--color-white);
  background: var(--color-main);
  font-weight: 700;
}
.block-news-post .container .left .tags .share {
  display: flex;
  align-items: center;
  gap: 16px;
}
.block-news-post .container .left .tags .share a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-news-post .container .left .tags .share a:hover svg path {
  stroke: var(--color-main);
}
.block-news-post .container .left .action-prev-next-post {
  display: flex;
  gap: 32px;
}
.block-news-post .container .left .action-prev-next-post .it {
  cursor: pointer;
  width: calc((100% - 32px) / 2);
  height: 50px;
  background: var(--color-text-menu);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 120px;
  padding: 10px;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .block-news-post .container .left .action-prev-next-post .it {
    gap: 70px;
  }
}
.block-news-post .container .left .action-prev-next-post .it svg {
  transition: all 0.3s;
}
.block-news-post .container .left .action-prev-next-post .it:hover {
  color: var(--color-white);
  background: var(--color-main);
}
.block-news-post .container .left .action-prev-next-post .it:hover svg path {
  fill: var(--color-white);
}
.block-news-post .container .left .action-prev-next-post .it:hover:first-child svg {
  margin-right: 110px;
}
.block-news-post .container .left .action-prev-next-post .it:hover:last-child svg {
  margin-left: 140px;
}
@media (max-width: 1400px) {
  .block-news-post .container .left .action-prev-next-post .it:hover:first-child svg {
    margin-right: 34px;
  }
  .block-news-post .container .left .action-prev-next-post .it:hover:last-child svg {
    margin-left: 64px;
  }
}
.block-news-post .container .left .action-prev-next-post .it:first-child {
  justify-content: flex-end;
}
.block-news-post .container .left .action-prev-next-post .it.disable {
  pointer-events: none;
  opacity: 0.4;
}
.block-news-post .container .right {
  width: 373px;
}
.block-news-post .container .right .block {
  margin-bottom: 60px;
}
.block-news-post .container .right h2 {
  color: var(--color-main);
  font-size: var(--fs-text-7);
  font-weight: 700;
  padding: 10px;
  text-transform: uppercase;
}
.block-news-post .container .right ul {
  list-style: none;
}
.block-news-post .container .right ul li {
  list-style: none;
}
.block-news-post .container .right ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  height: 45px;
  background-color: var(--color-white);
  border-radius: 5px;
  cursor: pointer;
}
.block-news-post .container .right ul li:last-child a {
  margin-bottom: 0;
}
.block-news-post .container .right ul li:hover a, .block-news-post .container .right ul li.active a {
  color: var(--color-white);
  background: var(--color-main);
}
.block-news-post .container .right ul li:hover a svg path, .block-news-post .container .right ul li.active a svg path {
  fill: var(--color-white);
}
.block-news-post .container .right .post-other h2 {
  font-size: var(--fs-text);
  margin-bottom: 10px;
}
.block-news-post .container .right .it-post-other {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.block-news-post .container .right .it-post-other .img {
  width: 155px;
  height: 140px;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.block-news-post .container .right .it-post-other .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.block-news-post .container .right .it-post-other .info {
  width: calc(100% - 155px);
  padding: 5px 5px 5px 22px;
}
.block-news-post .container .right .it-post-other .info h3 {
  margin-bottom: 5px;
}
.block-news-post .container .right .it-post-other .info h3 a {
  font-size: var(--fs-text-2);
  color: var(--color-333);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.block-news-post .container .right .it-post-other .info h3 a:hover {
  color: var(--color-main);
}
.block-news-post .container .right .it-post-other .info .desc {
  font-size: var(--fs-text-5);
  color: var(--color-text-2);
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.block-news-post .container .right .it-post-other .info .desc p {
  font-size: var(--fs-text-5);
  color: var(--color-text-2);
}
.block-news-post .container .right .it-post-other:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.block-news-post .container .right .it-post-other:hover .info h3 a {
  color: var(--color-main);
}
@media (max-width: 991px) {
  .block-news-post {
    margin-bottom: 15px;
  }
  .block-news-post .container {
    flex-wrap: wrap;
    gap: 15px;
  }
  .block-news-post .container .left,
  .block-news-post .container .right {
    width: 100%;
  }
  .block-news-post .container .left .tags {
    flex-direction: column;
    gap: 15px;
  }
  .block-news-post .container .left .tags .block-tag .list-tag a {
    padding: 5px;
  }
  .block-news-post .container .left .action-prev-next-post .it {
    gap: 15px;
  }
  .block-news-post .container .right .block {
    margin-bottom: 15px;
  }
  .block-news-post .container .right .block:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .block-news-post .container .left h1 {
    font-size: var(--fs-text-7);
    padding: 5px 0;
  }
  .block-news-post .container .left .auth-time-share {
    margin-bottom: 0;
  }
  .block-news-post .container .left .auth-time-share .author {
    margin-left: auto;
  }
}

.list-news-block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 32px;
}
.list-news-block .item {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 767px) {
  .list-news-block {
    gap: 15px;
  }
  .list-news-block .item {
    width: 100%;
  }
}

.item-module-news {
  background: var(--color-text-menu);
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
.item-module-news .img {
  aspect-ratio: 16/9;
}
.item-module-news .info {
  padding: 10px;
}
.item-module-news .info h3 {
  margin-bottom: 10px;
}
.item-module-news .info h3 a {
  font-weight: 700;
  font-size: var(--fs-text);
  color: var(--color-333);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-module-news .info .date-auth {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-module-news .info .date-auth .it {
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.item-module-news .info .desc {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
}

.ppage {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.ppage a,
.ppage span,
.ppage div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-text-menu);
  border-radius: 5px;
  font-weight: 700;
  font-size: var(--fs-text-2);
}
.ppage a:hover, .ppage a.active-page,
.ppage span:hover,
.ppage span.active-page,
.ppage div:hover,
.ppage div.active-page {
  background: var(--color-main);
  color: var(--color-white);
}
.ppage a:hover svg path, .ppage a.active-page svg path,
.ppage span:hover svg path,
.ppage span.active-page svg path,
.ppage div:hover svg path,
.ppage div.active-page svg path {
  fill: var(--color-white);
}
.ppage .hidden {
  display: none;
}

.block-contact .desc {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}
.block-contact .block h2 {
  font-size: var(--fs-text-4);
  color: var(--color-main);
  text-transform: uppercase;
  background: var(--color-text-menu);
  margin-bottom: 10px;
  padding-left: 10px;
  font-weight: 700;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block-contact .block h2 {
    font-size: var(--fs-text-12);
  }
}

.form-contact-tour .label,
.form-contact-tour .form-group > label,
.form-contact-tour .block-select > label {
  padding-left: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}
.form-contact-tour .label sup,
.form-contact-tour .form-group > label sup,
.form-contact-tour .block-select > label sup {
  color: var(--color-main);
}
.form-contact-tour .block {
  margin-bottom: 32px;
}
.form-contact-tour .block .form-group {
  margin-bottom: 32px;
}
.form-contact-tour .custom-select-trigger {
  border: 1px solid var(--color-5);
}
.form-contact-tour .custom-select-trigger.active {
  border: 2px solid var(--color-main);
}
.form-contact-tour .block-code {
  height: 100px;
  background: var(--color-8);
  border-radius: 5px;
  padding: 17px 12px;
}
.form-contact-tour select:focus {
  border: 2px solid var(--color-main);
}
.form-contact-tour button {
  background-color: var(--color-main);
  display: block;
  width: 100%;
  border-radius: 5px;
  height: 50px;
  cursor: pointer;
  font-size: var(--fs-text-7);
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 700;
}
.form-contact-tour button:hover {
  background-color: var(--color-bg);
}
.form-contact-tour .block-phone {
  display: flex;
  gap: 32px;
}
.form-contact-tour .block-phone .custom-select-wrapper {
  width: 100px;
}
.form-contact-tour .block-phone .custom-select-wrapper .custom-select-trigger .name {
  white-space: nowrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.form-contact-tour .block-phone .custom-select-wrapper .custom-options {
  width: 100px;
}
.form-contact-tour .block-phone select {
  width: 70px;
}
.form-contact-tour .block-phone input {
  flex: 1;
}
.form-contact-tour .block-checkbox {
  display: flex;
  column-gap: 30px;
  row-gap: 15px;
  flex-wrap: wrap;
}
.form-contact-tour .block-checkbox label {
  font-weight: 500;
  color: var(--color-333);
}
.form-contact-tour .block-checkbox .it {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-contact-tour .block-checkbox .it input {
  width: 20px;
  height: 20px;
  background: var(--color-text-menu);
}
.form-contact-tour .block-checkbox .it label sup {
  color: var(--color-main);
}
.form-contact-tour .select,
.form-contact-tour .input,
.form-contact-tour .textarea {
  height: 40px;
  width: 100%;
  border: 1px solid var(--color-5);
  background: var(--color-text-menu);
  outline: none;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
}
.form-contact-tour .select::placeholder,
.form-contact-tour .input::placeholder,
.form-contact-tour .textarea::placeholder {
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
}
.form-contact-tour .checkbox {
  display: block;
}
.form-contact-tour .block-check {
  display: flex;
  gap: 15px;
}
.form-contact-tour .textarea {
  height: 200px;
  resize: none;
  padding-top: 15px;
}
.form-contact-tour .block-input p {
  font-size: var(--fs-text-2);
  color: var(--color-text-2);
  font-style: italic;
  margin-top: 5px;
}
.form-contact-tour .w-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.form-contact-tour .w-2 .i {
  width: calc((100% - 32px) / 2);
}
.form-contact-tour .w-3 {
  display: flex;
  width: 100%;
  gap: 32px;
}
.form-contact-tour .w-3 .i {
  width: calc((100% - 32px) / 3);
}
.form-contact-tour .w-6 {
  display: flex;
  gap: 32px;
}
.form-contact-tour .w-6 .i {
  width: calc((100% - 160px) / 6);
}
.form-contact-tour label.error {
  display: none !important;
}
.form-contact-tour .error {
  border-color: red;
}
@media (max-width: 991px) {
  .form-contact-tour .block-checkbox .it {
    width: calc((100% - 90px) / 4);
  }
  .form-contact-tour .form-group:nth-of-type(2) > .i {
    width: 100%;
  }
  .form-contact-tour .form-group:nth-of-type(3) .w-6 .i {
    width: calc((100% - 90px) / 4);
  }
  .form-contact-tour .block-2 .form-group > .i {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .form-contact-tour .block-checkbox .it {
    width: calc((100% - 30px) / 2);
  }
  .form-contact-tour .form-group:nth-of-type(3) .w-6 {
    flex-wrap: wrap;
  }
  .form-contact-tour .form-group:nth-of-type(3) .w-6 .i {
    width: calc((100% - 32px) / 2);
  }
  .form-contact-tour .block-2 .form-group > .i:nth-child(2) > .i {
    width: 100%;
  }
}

.block-request-confirm {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.block-request-confirm .wrapper {
  border: 3px solid var(--color-main);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.block-request-confirm .wrapper .check {
  height: 243px;
  aspect-ratio: 142/117;
}
.block-request-confirm .wrapper .check img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.block-request-confirm .wrapper h2 {
  font-size: var(--fs-text-11);
  color: var(--color-main);
  margin-bottom: 15px;
}
.block-request-confirm .wrapper .desc {
  color: var(--color-333);
}
.block-request-confirm .wrapper .desc p {
  margin-bottom: 15px;
}
.block-request-confirm .wrapper .action {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.block-request-confirm .wrapper .action .it {
  background: var(--color-main);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
}
.block-request-confirm .wrapper .action .it:hover {
  background: var(--color-text-menu);
  color: var(--color-tedxt-2);
}
@media (max-width: 991px) {
  .block-request-confirm {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .block-request-confirm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .block-request-confirm .wrapper .check {
    height: 150px;
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #ccc rgba(0, 0, 0, 0);
  animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #f03355 rgba(0, 0, 0, 0);
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}
.loading-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.loading-block.active {
  opacity: 1;
  pointer-events: all;
}

#ReceiverEmailFrm label.error {
  display: none !important;
}
#ReceiverEmailFrm .error {
  border-color: red;
}

.custom-select-wrapper {
  position: relative;
  z-index: 5;
}
.custom-select-wrapper.active {
  z-index: 6;
}
.custom-select-wrapper .custom-select-trigger {
  color: var(--color-text-2);
  font-size: var(--fs-text-2);
  background: var(--color-text-menu);
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  cursor: pointer;
}
.custom-select-wrapper .custom-select-trigger .name.active {
  color: var(--color-333);
}
.custom-select-wrapper .custom-select-trigger svg {
  transition: all 0.3s;
}
.custom-select-wrapper .custom-select-trigger.active {
  color: var(--color-333);
  font-weight: 500;
}
.custom-select-wrapper .custom-select-trigger.active svg {
  transform: rotate(180deg);
}
.custom-select-wrapper .custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  min-width: 150px;
  background: var(--color-text-menu);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 10;
  max-height: 400px;
  overflow-y: auto;
}
.custom-select-wrapper .custom-options.active {
  z-index: 10;
}
.custom-select-wrapper .custom-options .custom-search {
  width: 100%;
  padding: 10px 15px;
  outline: none;
  border-color: transparent;
}
.custom-select-wrapper .custom-options .custom-option {
  color: var(--color-333);
  font-size: var(--fs-text-2);
  padding: 10px 15px;
  font-weight: 500;
  cursor: pointer;
}
.custom-select-wrapper .custom-options .custom-option:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.search-center {
  position: relative;
  z-index: 7;
}
.search-center .search-tour {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.social-fix {
  position: fixed;
  right: 15px;
  bottom: 70px;
  z-index: 17;
}
.social-fix .item-block {
  margin-bottom: 10px;
  position: relative;
}
.social-fix .item-block a {
  width: 50px;
  height: 50px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(124deg, #CC2036 -20.52%, #C21E34 -0.71%, #A91A31 31.93%, #82152D 70.39%);
}
@media (max-width: 767px) {
  .social-fix .item-block a {
    width: 35px;
    height: 35px;
    padding: 7px;
  }
}
.social-fix .item-block .text {
  position: absolute;
  top: 0;
  right: calc(100% + 16px);
  transform: translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  bottom: 0;
  width: 190px;
  background: var(--color-white);
  padding: 10px;
  border-radius: 8px;
}
.social-fix .item-block .text .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -11px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-fix .item-block .text h3 {
  text-transform: uppercase;
  font-size: var(--fs-text-9);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 600;
}
.social-fix .item-block .text p {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-size: var(--fs-text-5);
  color: var(--color-text-2);
}
.social-fix .item-block:hover .text {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.search-tour-main .content-form {
  width: 100%;
}

.nav-slide {
  position: relative;
}
.nav-slide .owl-nav {
  margin-top: 0;
  position: absolute;
  top: -36px;
  right: 0;
  display: flex;
  align-items: center;
}
.nav-slide .owl-nav .owl-next, .nav-slide .owl-nav .owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white) !important;
}
.nav-slide .owl-nav .owl-next:hover svg path, .nav-slide .owl-nav .owl-prev:hover svg path {
  stroke: var(--color-main) !important;
}

input:focus {
  border: 2px solid var(--color-main) !important;
}

.grecaptcha-badge {
  display: none;
}

.block-our-destination-index .title-main {
  margin-bottom: 35px;
}

/*# sourceMappingURL=main.css.map */
