:root {
  --primary-color: rgba(243, 204, 75, 1);
  --secondary-color: #fff;
  --white-color: #fff;
  --black-color: #000;
  --background-color: #f5f5f5;
  --text-color: #333;
  --second-text-color: #666;
  --third-text-color: #999;
}
/* header start */
.hq-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
}
.hq-header {
  background-color: rgba(0, 0, 0, 0.5);
}
.index .hq-header {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 1000;
}
.hq-header-box-logo-img {
  width: 140px;
  height: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hvr-underline-from-left::before {
  height: 1px;
  background-color: var(--background-color);
}
.menu-a-level-1 {
  color: var(--background-color);
  font-size: clamp(0.92rem, 0.3693rem + 0.8597vw, 1.1rem);
  font-family: var(--title-font);
  text-transform: uppercase;
}
.menu-a-level-1:hover {
  color: var(--background-color);
}
/* dropdown language start */
.language-dropdown-box i {
  color: var(--background-color);
}
.menu-li-level-1 .dropdown-toggle::after {
  display: none;
}
.menu-li-level-1 .dropdown-menu {
  min-width: 150px;
  /* background: var(--background-color); */
  box-shadow: none !important;
  border: none !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.menu-li-level-1 .dropdown-item {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--normal-font);
}
.menu-li-level-1 .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-li-level-1 .dropdown-menu li:first-of-type .dropdown-item:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.menu-li-level-1 .dropdown-menu li:last-of-type .dropdown-item:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* dropdown language end */
.menu-li-level-1 {
  position: relative;
}
.menu-li-level-1.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--background-color);
  left: 0;
  bottom: 0px;
}
.hq-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, background-color 0.8s ease;
}

.hq-header.hidden {
  transform: translateY(-100%);
}

.hq-header.active {
  position: fixed;
  width: 100vw;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  animation: fadeIn 0.6s ease forwards, slideDown 0.6s ease forwards;
  -webkit-animation: fadeIn 0.6s ease forwards, slideDown 0.6s ease forwards;
  backdrop-filter: blur(10px);
}
.hq-header.active .hq-header-box-logo-img {
  width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index .hq-header.active-bandau {
  position: absolute;
  width: 100vw;
  top: 0;
  background: transparent;
  transform: translateY(0);
  animation: fadeIn 0.6s ease forwards, slideDown 0.6s ease forwards;
  -webkit-animation: fadeIn 0.6s ease forwards, slideDown 0.6s ease forwards;
}

.hq-header.active-bandau .hq-header-box-logo-img {
  width: 140px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* Animation cho header khi xuất hiện */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Animation khi header ẩn đi */
.hq-header.hidden {
  animation: fadeOut 0.6s ease forwards, slideUp 0.6s ease forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
/* sub menu level 2 */
.sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(7px);
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.menu-a-level-2 {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 8px 10px;
  min-width: 150px;
  color: var(--text-color);
  font-family: var(--normal-font);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-a-level-2:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-header.active .sub-menu {
  background: rgba(255, 255, 255, 0.9);
}
.hq-header.active .menu-li-level-1 .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.9);
}
.menu-li-level-1:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 110%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.vanhiep-padding-top {
  padding-top: 0px !important;
}
/* header end */

/* menu mobile start */
.hq-menu-mobile {
  position: fixed;
  width: 100%;
  top: 0;
  height: auto;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index .hq-menu-mobile {
  background: rgba(0, 0, 0, 0.8);
}
.logo-header-img-mobile {
  width: 70px;
  height: auto;
}

.menu-mobile-language-box .dropdown-toggle::after {
  display: none;
}
.menu-mobile-language-box .dropdown-menu {
  min-width: 150px;
  /* background: var(--background-color); */
  box-shadow: none !important;
  border: none !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.menu-mobile-language-box .dropdown-item {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--normal-font);
}
.menu-mobile-language-box .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-mobile-language-box .dropdown-menu li:first-of-type .dropdown-item:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.menu-mobile-language-box .dropdown-menu li:last-of-type .dropdown-item:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* bar start */

.burger {
  position: relative;
  width: 35px;
  height: 23px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--background-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input.toggle-open ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}
/* bar end */

.hc-nav-trigger.hc-nav-1 {
  opacity: 0;
}
.hc-offcanvas-nav h2 {
  background-color: var(--main-color) !important;
}
.hq-menu-mobile {
  transition: all 0.6s ease-in-out;
}

.hq-menu-mobile.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.hq-menu-mobile.active {
  backdrop-filter: blur(10px);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* menu mobile end */

/* slider start */

svg {
  color: #fff;
}
:root {
  --width-default: min(1200px, 90vw);
  --diameter: 1432px;
}
.logo img {
  width: 50px;
}
.slider {
  /* background-color: red; */
  color: #eee;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}
.black-bg-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}
.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
.slider .list .item .content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 400px);
  text-align: left;
  gap: 200px;
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: Poppins-Regular;
  text-shadow: 0 0 80px #000;
}
.slider .list .item .content h2 {
  font-size: 9em;
  font-family: BebasNeue-Regular;
  line-height: 0.9em;
  transform: translateY(-100%);
  transition: transform 1s;
  grid-row-start: 1;
  grid-row-end: 3;
}
.slider .list .item .content p {
}
.slider .list .item .content p:last-child {
  display: flex;
  justify-content: start;
  align-items: end;
  padding-bottom: 25px;
}
/* item default */
.slider .list .item .image {
  flex-shrink: 0;
  width: var(--diameter);
  height: var(--diameter);
  background-image: var(--url);
  background-size: var(--diameter) var(--diameter);
  background-position: center;
  border-radius: 50%;
  transform: rotate(-60deg);
  position: relative;
  transition: 1s;
}
.slider .list .item .image::before,
.slider .list .item .image::after {
  position: absolute;
  width: 70%;
  height: 70%;
  content: "";
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-120deg);
  background-image: linear-gradient(to right, #0004, #0004), var(--url);
  background-size: var(--diameter) var(--diameter);
  background-position: center;
  transition: 1s;
}
.slider .list .item .image::after {
  width: 30%;
  height: 30%;
  background-image: var(--url);
  border: 3px solid #fff2;
  transform: translate(-50%, -50%) rotate(-170deg);
}

/* default  */
.slider .list .item .image {
  filter: blur(30px);
}

.slider .list .item {
  pointer-events: none;
  opacity: 0;
}
/* item active */
.slider .list .item.active {
  pointer-events: auto;
  opacity: 1;
}
.slider .item.active .image {
  filter: blur(0px);
  transform: rotate(0deg) scale(1.1);
  -webkit-transform: rotate(0deg) scale(1.1);
  -moz-transform: rotate(0deg) scale(1.1);
  -ms-transform: rotate(0deg) scale(1.1);
  -o-transform: rotate(0deg) scale(1.1);
}
.slider .item.active .image::before,
.slider .item.active .image::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.slider .list .item.active .content h2 {
  transform: translateY(0);
}

/* item phía sau */
.slider .list .item.active ~ .item {
  opacity: 0;
}
.slider .item.active ~ .item .image {
  transform: rotate(60deg);
}
.slider .item.active ~ .item .image::before {
  transform: translate(-50%, -50%) rotate(120deg);
}
.slider .item.active ~ .item .image::after {
  transform: translate(-50%, -50%) rotate(170deg);
}
.slider .list .item.active ~ .item .content h2 {
  transform: translateY(100%);
}
/* arrows */
.arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: var(--width-default);
  display: flex;
  justify-content: space-between;
}
.arrows button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid var(--background-color);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.arrows button:hover {
  background-color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.slider .list::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: min(1000px, 100vw);
  height: 70%;
  left: 50%;
  transform: translateX(-50%) translateY(var(--y-position, 0))
    scale(var(--scale));
  background-image: var(--url-modal);
  background-size: cover;
  background-position: top;
  pointer-events: none;
  animation: showModel 1s ease-in-out 1 forwards;
  -webkit-transform: translateX(-50%) translateY(var(--y-position, 0))
    scale(var(--scale));
  -moz-transform: translateX(-50%) translateY(var(--y-position, 0))
    scale(var(--scale));
  -ms-transform: translateX(-50%) translateY(var(--y-position, 0))
    scale(var(--scale));
  -o-transform: translateX(-50%) translateY(var(--y-position, 0))
    scale(var(--scale));
}
@keyframes showModel {
  from {
    transform: translateX(-50%) scale(1.3) translateY(88px);
  }
}

.arrows button.d-none {
  opacity: 0;
  pointer-events: none;
}
@keyframes arrowShake {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    -o-transform: translateX(-3px);
  }
  50% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  75% {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

#next svg {
  animation: arrowShake 2.5s linear infinite;
  -webkit-animation: arrowShake 2.5s linear infinite;
}
#prev svg {
  animation: arrowShake 2.5s linear infinite;
  -webkit-animation: arrowShake 2.5s linear infinite;
}

/* slider end */

/* trang chủ start */

/* giới thiệu start */
.hq-index-introduce {
  position: relative;
}
.blue-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--text-color);
}
.hq-index-introduce .container {
  position: relative;
  z-index: 5;
}
.hq-index-introduce-box {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.hq-index-introduce-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hq-index-introduce-box-video {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.hq-index-introduce-box-video a,
.hq-index-introduce-box-video img,
.hq-index-introduce-box-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.black-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}
.hq-index-introduce-box-noi-dung {
  position: relative;
  z-index: 5;
}
.hq-index-introduce-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 120%;
}
.hq-index-introduce-item-image a,
.hq-index-introduce-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-index-introduce-item-image-box {
  border: 10px solid var(--background-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-bottom: 30px solid var(--background-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.hq-index-introduce-box {
  padding: 150px 30px;
}
.hq-index-introduce-item-image-box-trai {
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}
.hq-index-introduce-item-image-box-phai {
  position: relative;
  z-index: 5;
  transform: translateY(50px) translateX(-20px) rotate(10deg);
  -webkit-transform: translateY(50px) translateX(-20px) rotate(10deg);
  -moz-transform: translateY(50px) translateX(-20px) rotate(10deg);
  -ms-transform: translateY(50px) translateX(-20px) rotate(10deg);
  -o-transform: translateY(50px) translateX(-20px) rotate(10deg);
}
.hq-index-introduce-item-noi-dung-subitem-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hq-index-introduce-item-noi-dung {
  color: var(--background-color);
}
.hq-index-introduce-button {
  /* background: var(--main-color); */
  /* color: var(--background-color); */
  font-family: var(--title-font);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 13px 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  min-width: 200px;
  width: max-content;
  text-align: center;
  border-radius: 5px;
  background: linear-gradient(90deg, #f3cc4b 0%, #8e6314 100%);
  color: var(--white-color);
}
.hinh-may-bay-img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.hq-index-introduce-item-noi-dung-title {
  font-family: lato-b;
  /* font-size: clamp(1.7rem, 1.6077rem + 0.4615vw, 2rem); */
  color: var(--background-color);
  text-transform: uppercase;
  text-shadow: 0 5px 10px #0004;
  font-size: clamp(1.06rem, -0.2863rem + 2.1015vw, 1.5rem);
}
.hq-index-introduce-item-noi-dung-content {
  color: var(--background-color);
  font-family: var(--normal-font);
  line-height: 1.9;
  text-shadow: 0 5px 10px #0004;
  margin-top: -20px;
}
.anh-may-bay-trai-img {
  position: absolute;
  top: -90px;
  left: -60px;
  width: 300px;
  height: auto;
}
.hq-index-introduce-button i {
  animation: arrowShake 2s linear infinite;
  -webkit-animation: arrowShake 2s linear infinite;
}
.hq-index-introduce-button:hover {
  background-color: var(--background-color);
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* giới thiệu end */

/* tour nổi bật start */
.hq-tour-title {
  /* color: var(--main-color); */
  font-size: 2rem;
  text-transform: uppercase;
  font-family: lato-b;
  /* text gradient */
  color: transparent;
  background: linear-gradient(90deg, #f3cc4b 0%, #8e6314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* tour item start */
.hq-tour-item-image {
  overflow: hidden;
}
.hq-tour-item-image a,
.hq-tour-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-tour-item-content-price {
  color: var(--second-text-color);
}
.hq-tour-item-content {
  background: #f6f4f4;
}
.hq-tour-item-content-title a {
  font-family: var(--normal-font);
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-weight: 600;
}
.hq-tour-item-content-title a:hover {
  color: var(--second-text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-tour-item-content-box {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
.hq-tour-item-content-title-a {
  display: inline-flex;
}
.hq-tour-special-content-box .swiper-pagination-bullet {
  height: 16px !important;
  width: 16px !important;
}
.hq-tour-special-content-box .swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
  border: 1px solid #133e87;
}
.hq-tour-item-image-box {
  position: relative;
  z-index: 1;
}
/* tour item end */

/* tour nổi bật end */

/* banner start */
.hq-banner-index-item-image {
  overflow: hidden;
}
.hq-banner-index-item-image a,
.hq-banner-index-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next-banner-index {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--background-color);
  font-size: 1.7rem;
  background-color: var(--main-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.swiper-button-next-banner-index:hover {
  background-color: #133e87;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.swiper-button-prev-banner-index {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--background-color);
  font-size: 1.7rem;
  background-color: var(--main-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.swiper-button-prev-banner-index:hover {
  background-color: #133e87;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.swiper-button-prev-banner-index.swiper-button-disabled,
.swiper-button-next-banner-index.swiper-button-disabled {
  opacity: 0.5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* banner end */

/* địa điểm nổi bật strat */
.hq-dia-diem-noi-bat-content-image {
  overflow: hidden;
  min-height: 100%;
}
.hq-dia-diem-noi-bat-content-image a,
.hq-dia-diem-noi-bat-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hq-dia-diem-noi-bat-content-item-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.hq-dia-diem-noi-bat-content-item-content a {
  font-size: clamp(1.15rem, 0.8885rem + 1.3077vw, 2rem);
  font-family: lato-b;
  /* color: #0b3054; */
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  color: transparent;
  background: linear-gradient(90deg, #f3cc4b 0%, #8e6314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hq-dia-diem-noi-bat-content-item-content a:hover {
  color: var(--second-text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* địa điểm nổi bật end */

/* tin tức nổi bật start */
.hq-new-item {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
.hq-new-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 150%;
}
.hq-new-item-image a,
.hq-new-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-black-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hq-new-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 5;
}
.hq-new-item-content-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--background-color);
}
.hq-new-item-content-icon-first {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.05rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.hq-new-item-content-icon-last {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.05rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item:hover .hq-new-item-content-icon-first {
  left: 0%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item:hover .hq-new-item-content-icon-last {
  left: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item-content-icon:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item-content-icon:hover .hq-new-item-content-icon-first {
  color: var(--main-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item-content-icon:hover .hq-new-item-content-icon-last {
  color: var(--main-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hq-new-item-content-title-cate {
  font-family: var(--normal-font);
  font-size: 1rem;
  color: var(--main-color);
}
.hq-new-item-content-title-name {
  font-size: clamp(1.15rem, 1.1038rem + 0.2308vw, 1.3rem);
  color: var(--background-color);
  font-weight: 600;
  font-family: var(--normal-font);
}
.hq-new-item-content-des-text-label {
  color: var(--background-color);
  font-family: var(--normal-font);
}
/* tin tức nổi bật end */

/* đối tác start */
.hq-partners-content-logo-image {
  overflow: hidden;
}
.hq-partners-content-logo-image a,
.hq-partners-content-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* đối tác end */

/* khách hàng đánh giá start */
.customer-feedback-item-avatar-image {
  overflow: hidden;
  min-width: 60px;
  max-width: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.customer-feedback-item-avatar-image a,
.customer-feedback-item-avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customer-feedback-item {
  background-color: var(--background-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  overflow: hidden;
}
.customer-feedback-item-start i {
  color: #f3cc4b;
}
.customer-feedback-item-name {
  font-family: lato-b;
}
.swiper-pagination-customer .swiper-pagination-bullet {
  height: 16px !important;
  width: 16px !important;
}
.swiper-pagination-customer .swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
  border: 1px solid #133e87;
}
/* khách hàng đánh giá end */

/* trang chủ end */

/* footer start */
.bg-footer-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.bg-footer-black-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.hq-footer .container {
  position: relative;
  z-index: 5;
}
.social-footer-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hq-footer-title {
  font-size: clamp(1.3rem, 1.2385rem + 0.3077vw, 1.5rem);
  color: var(--background-color);
  font-family: lato-b;
  text-transform: uppercase;
}
.hq-footer-des {
  font-family: var(--normal-font);
  color: var(--background-color);
  line-height: 1.9;
}
.thuong-hieu-box-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hq-footer-category-content ul li a {
  color: var(--background-color);
  font-family: var(--normal-font);
}
.hq-footer-album-item-image {
  overflow: hidden;
}
.hq-footer-album-item-image a,
.hq-footer-album-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-footer-register-form .form-control {
  background: transparent;
  border-color: var(--background-color);
  color: var(--background-color);
}
.hq-footer-register-form .form-control::placeholder {
  color: var(--background-color);
}
.hq-footer-register-form .input-group-text {
  background: transparent;
  border-color: var(--background-color);
  color: var(--background-color);
}
.hq-footer-payment-image-box {
  min-width: 50px;
  max-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: var(--background-color);
}
.hq-footer-payment-image {
  overflow: hidden;
}
.hq-footer-payment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-copyright-box {
  color: var(--background-color);
  font-size: clamp(0.8rem, 0.7385rem + 0.3077vw, 1rem);
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, #f3cc4b 0%, #8d772c 100%);
}
.footer-copyright-box a {
  color: var(--background-color);
}
/* footer end */

/* banner start */
.hq-banner-image {
  overflow: hidden;
  --bs-aspect-ratio: calc(9 / 30 * 100%);
}
.hq-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding-top: 50px;
}
.hq-banner-content-title {
  font-family: var(--normal-font);
  font-weight: 600;
  color: var(--background-color);
  /* font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem); */
  font-size: clamp(1.2rem, 0.6462rem + 2.7692vw, 3rem);
  text-transform: uppercase;
}
.hq-banner-content-title .char {
  opacity: 0;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}
.hq-banner-content-breadcrumb nav li a {
  color: var(--background-color);
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  color: var(--background-color);
}
.hq-banner-content-breadcrumb .breadcrumb-item.active {
  color: var(--background-color);
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  position: relative;
}
.hq-banner-content-breadcrumb .breadcrumb-item.active span {
  position: relative;
}
.hq-banner-content-breadcrumb .breadcrumb-item.active span::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--background-color);
}
.hq-banner-content-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--main-color);
  opacity: 1;
}
/* banner end */

/* trang cố định start */
.hq-page-gioi-thieu-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  color: var(--white-color);
}
.page-item.active .page-link {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}
/* trang cố định end */

/* trang sản phẩm chi tiết start */
.banner-tour-detail-item-image {
  overflow: hidden;
}
.banner-tour-detail-item-image a,
.banner-tour-detail-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-tour-detail-item-title {
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1.0385rem + 2.3077vw, 3rem);
}
.hq-tour-detail-item-thongtin i {
  color: var(--main-color);
}
.tour-thong-tin-title {
  font-weight: 600;
}
.hq-tour-detail-item-thongtin-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  opacity: 0.7;
}
.hq-tour-detail-item-thongtin-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  opacity: 0.7;
}
.hq-tour-detail-item-tour-button-dat-tour-btn {
  background-color: var(--main-color);
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  text-align: center;
  padding: 8px 10px;
  text-transform: capitalize;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 0.125rem 0.625rem rgba(22, 170, 255, 0.4),
    0 0.0625rem 0.125rem rgba(22, 170, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-tour-detail-item-tour-button-dat-tour-btn:hover {
  background: var(--second-background-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-tour-detail-item-price-label {
  font-weight: 600;
  text-transform: capitalize;
  font-size: clamp(1.2rem, 1.1692rem + 0.1538vw, 1.3rem);
}
.hq-tour-detail-item-price-cost {
  color: var(--second-text-color);
  font-size: clamp(1.4rem, 1.2769rem + 0.6154vw, 1.8rem);
}
.hq-tour-detail-item-noi-dung-line-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #f7f7f8;
  opacity: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.btn-nhanxet {
  background-color: var(--main-color) !important;
  color: var(--background-color) !important;
  font-size: 0.9rem;
}
.btn-guibl {
  background-color: var(--main-color) !important;
  color: var(--background-color) !important;
}
.content-nhanxet {
  width: 90% !important;
  background-color: #f7f7f8 !important;
}
.san-pham-detail .form-control {
  resize: none;
}
.san-pham-detail .accordion-button {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  padding: 0.5rem 1.25rem;
}
.san-pham-detail .accordion-button.collapsed {
  background-color: var(--main-color) !important;
  color: var(--background-color) !important;
}
.san-pham-detail .accordion-button:not(.collapsed) {
  background-color: var(--second-background-color) !important;
  color: var(--background-color) !important;
}
.hq-tour-detail-info-book-tour-label {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  color: var(--text-color);
  font-family: var(--normal-font);
  font-weight: 600;
}
.hq-tour-detail-info-book-tour-name {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--main-color);
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
}
.hq-tour-detail-info-book-tour-form .form-control {
  border-color: var(--second-background-color);
}
.hq-tour-detail-info-book-tour-form .form-label {
  font-weight: 600;
}
.btn-dat-tour {
  background-color: var(--second-background-color);
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  text-align: center;
  padding: 8px 10px;
  text-transform: capitalize;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 0.125rem 0.625rem rgba(22, 170, 255, 0.4),
    0 0.0625rem 0.125rem rgba(22, 170, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: none;
}
.btn-dat-tour:hover {
  background-color: var(--second-text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: 0 0.125rem 0.625rem rgba(191, 35, 35, 0.4),
    0 0.0625rem 0.125rem rgba(191, 35, 35, 0.5);
}
.hq-tour-detail-info-tour-related-image {
  overflow: hidden;
}
.hq-tour-detail-info-tour-related-image a,
.hq-tour-detail-info-tour-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-tour-detail-info-tour-related-image img {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}
.hq-tour-detail-info-tour-related-content {
  background-color: #f7f7f8;
}
.hq-tour-detail-info-tour-related-content-title a {
  color: var(--main-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-tour-detail-info-tour-related-content-title a:hover {
  color: var(--second-background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-tour-detail-info-tour-related-content-time {
  font-size: 0.9rem;
}
.hq-tour-detail-info-tour-related-content-title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--second-background-color);
}
.hq-tour-detail-info-tour-related-content-time-label {
  font-weight: 600;
}
.hq-tour-detail-info-tour-related-content-time-label i {
  color: var(--main-color);
}
.gia-tour-lien-quan {
  color: var(--second-text-color);
  font-size: clamp(1.05rem, 1.0346rem + 0.0769vw, 1.1rem);
  font-weight: 600;
}
.hq-tour-detail-info-tour-related-item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;
}
/* trang sản phẩm chi tiết end */

/* trang dịch vụ start */
.hq-dich-vu-page-dich-vu-item-image {
  overflow: hidden;
}
.hq-dich-vu-page-dich-vu-item-image-img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.hq-dich-vu-page-dich-vu-item-title {
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1692rem + 0.1538vw, 1.3rem);
  text-transform: capitalize;
  color: var(--white-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-dich-vu-page-dich-vu-item-title:hover {
  color: var(--main-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-dich-vu-page-dich-vu-item {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  color: var(--text-color);
}
.hq-dich-vu-page-dich-vu-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.btn-load-more {
  margin: 20px auto;
  background-color: var(--main-color);
  color: var(--background-color);
  border: none;
  width: 120px;
  padding: 8px 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
/* trang dịch vụ end */

/* trang liên hệ start */
.hq-contact-page-section-title-item {
  font-size: clamp(2rem, 1.3846rem + 3.0769vw, 4rem);
  text-transform: uppercase;
  color: var(--text-color);
}
.hq-contact-page-section-title-item:nth-child(4) {
  color: var(--main-color);
  font-style: italic;
}
.hq-contact-page-introduce-image {
  overflow: hidden;
  --bs-aspect-ratio: 140%;
  z-index: 1;
}
.hq-contact-page-introduce-image a,
.hq-contact-page-introduce-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-contact-page-introduce-title {
  color: var(--text-color);
  font-size: clamp(2rem, 1.8462rem + 0.7692vw, 2.5rem);
  font-weight: 600;
  font-family: var(--normal-font);
  text-transform: capitalize;
}
.hq-contact-page-introduce-content {
  z-index: 5;
  background-color: var(--background-color);
}
.hq-contact-page-introduce-item-line {
  height: 100px;
  width: 1px;
  background-color: var(--text-color);
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: -20px;
}
.btn-gui-lien-he-lh-page {
  background-color: var(--main-color);
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  text-align: center;
  padding: 8px 10px;
  text-transform: capitalize;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 0.125rem 0.625rem rgba(22, 170, 255, 0.4),
    0 0.0625rem 0.125rem rgba(22, 170, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: none;
}
.btn-gui-lien-he-lh-page:hover {
  background-color: var(--second-background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hq-contact-page-form {
  max-width: 600px;
  margin: 0 auto;
}
.hq-contact-page-form .form-control {
  border-color: var(--second-background-color);
  resize: none;
}
.hq-contact-page-form .form-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.2rem;
}
/* trang liên hệ end */

/* bổ sung web start */

#toTop {
  background-color: var(--second-background-color) !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
}

/* sửa web */
.hq-tour-special-section {
  background: #000;
}
section {
  background: #000;
  overflow: hidden;
}
footer {
  overflow: hidden;
}
.vanhiep-padding-top {
  background: #000;
}
.slider-main-swiper-item {
  /* height: 100vh; */
}
.slider-main-swiper-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-main-swiper-item a {
  width: 100%;
  height: 100%;
}

.slider-main-swiper-pagination {
  bottom: 10px;
}
.slider-main-swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--text-color);
  opacity: 0.5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.slider-main-swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  height: 15px;
  background-color: var(--second-main-color);
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.slider-main-swiper-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Search Modal Styles */
.hd-do-choi-thu-cung-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.hd-do-choi-thu-cung-search-modal.active {
  display: block;
}

.hd-do-choi-thu-cung-search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hd-do-choi-thu-cung-search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  background-color: var(--background-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hd-do-choi-thu-cung-search-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hd-do-choi-thu-cung-search-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hd-do-choi-thu-cung-search-input-group {
  position: relative;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-search-input {
  width: 100%;
  height: 60px;
  padding: 10px 70px 10px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s;
}

.hd-do-choi-thu-cung-search-input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hd-do-choi-thu-cung-search-btn:hover {
  color: var(--red);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}

.hd-do-choi-thu-cung-search-popular-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-do-choi-thu-cung-search-tag {
  display: inline-block;
  padding: 8px 15px;
  background-color: #eee;
  color: #333;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.hd-do-choi-thu-cung-search-tag:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}
.hydro-sailun-tin-tuc-deail-hero-image {
  overflow: hidden;
  max-height: 600px;
}
.hydro-sailun-tin-tuc-deail-hero-image img,
.hydro-sailun-tin-tuc-deail-hero-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tin-tuc-detail .hydro-tin-tuc-item {
  opacity: 1;
}
.btn-search i {
  color: var(--white-color);
  font-size: 17px;
}
.btn-search:hover i {
  color: var(--primary-color);
}

.tb-new-item-card-content-button {
  border-radius: 5px;
  background: linear-gradient(90deg, #f3cc4b 0%, #8d772c 100%);
  min-width: 140px;
  width: max-content;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.tb-new-item-card-content-button:hover {
  background: var(--second-background-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.tb-new-item-card-content {
  background: var(--background-color);
  max-width: 90%;
  position: relative;
  z-index: 5;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.tb-new-item-card-content-title a {
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-transform: uppercase;
}
.tb-new-item-card-image-box {
  overflow: hidden;
}
.tb-new-item-card-image-box a,
.tb-new-item-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tb-album-video-item-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.tb-album-video-item-image img,
.tb-album-video-item-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-album-video-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.tb-album-video-item-play img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 70px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.tb-album-video-item-play img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  filter: brightness(1.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-filter: brightness(1.1);
}
.album-video-swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--white-color);
  opacity: 0.5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.album-video-swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* item swiper slide next và prev nhỏ hơn item active */
.tb-album-video-item {
  transform-origin: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.album-video-swiper .swiper-slide-prev .tb-album-video-item,
.album-video-swiper .swiper-slide-next .tb-album-video-item {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.album-video-swiper .swiper-slide-active .tb-album-video-item {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hq-footer {
  padding-top: 30px;
}
.footer-copyright-logo-item {
  width: max-content;
  height: auto;
  background: var(--white-color);
  margin: 0 auto;
}
.footer-copyright-logo-item img {
  max-width: 65px;
}
.hq-product-page-section,
.hq-dich-vu-page,
.hq-news-section-page,
.hq-san-pham-detail-page {
  padding-top: 0;
}
.hq-tour-detail-info-book-tour,
.hq-tour-detail-item,
.hq-tour-detail-item-title {
  color: var(--white-color);
}
.hq-tour-detail-item-price-cost {
  color: var(--white-color);
}
.quantity-comment,
.item-progress .rating-num-total {
  color: var(--white-color);
}
.hq-tour-detail-info-tour-related-content {
  background: transparent;
}
.gia-tour-lien-quan {
  color: var(--primary-color);
}
.content-nhanxet {
  background: #202020 !important;
}
.hq-tour-detail-info-book-tour-label {
  color: var(--primary-color);
}
.hq-dich-vu-page-dich-vu-item-char,
.vh-news-details-right-random-item a,
.vh-news-detail-content-detail,
.vh-news-detail-content-item-name {
  color: var(--white-color);
}
.hq-dich-vu-page-dich-vu-item-date,
.hq-dich-vu-page-dich-vu-item-time,
.vh-news-detail-content-item-name,
.vh-news-details-right-random-item a:hover,
.vh-news-details-right-random-title {
  color: var(--primary-color);
}
.hq-dich-vu-page-dich-vu-item-des,
.vh-news-detail-author-date {
  /* color gray */
  color: var(--third-text-color);
}

/* trang liên hệ start */
/* Main container */
.hydrosite-contact-container {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Contact info container */
.hydrosite-contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact card */
.hydrosite-contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.hydrosite-contact-card:hover {
  transform: translateY(-5px);
}

/* Icon container */
.hydrosite-contact-icon {
  background-color: rgba(243, 204, 75, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hydrosite-contact-icon i {
  color: #f3cc4b;
  font-size: 20px;
}

/* Text content */
.hydrosite-contact-text h3 {
  color: #f3cc4b;
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.hydrosite-contact-text p {
  color: #000000;
  margin: 0;
  font-size: 16px;
}

/* Form container */
.hydrosite-contact-form-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hydrosite-contact-form-container h2 {
  color: #f3cc4b;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hydrosite-contact-subtitle {
  color: #666666;
  margin-bottom: 24px;
  font-size: 14px;
}

/* Form elements */
.hydrosite-contact-form-group {
  margin-bottom: 16px;
}

.hydrosite-contact-input,
.hydrosite-contact-textarea {
  width: 100%;
  background-color: #f7f7f7;
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
}

.hydrosite-contact-input:focus,
.hydrosite-contact-textarea:focus {
  outline: 1px solid #f3cc4b;
}

.hydrosite-contact-textarea {
  resize: none;
}

/* Submit button */
.hydrosite-contact-submit-btn {
  background-color: #f3cc4b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hydrosite-contact-submit-btn:hover {
  background-color: #e3bd3b;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hydrosite-contact-info-container {
    margin-bottom: 24px;
  }

  .hydrosite-contact-form-container {
    padding: 24px;
  }
}

.hydrosite-contact-map-content {
  overflow: hidden;
  max-height: 400px;
}
.hydrosite-contact-map-content iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}
/* trang liên hệ end */

.du-lich-xau-slider-image {
  overflow: hidden;
}
.du-lich-xau-slider-image a,
.du-lich-xau-slider-image img,
.du-lich-xau-slider-image video,
.du-lich-xau-slider-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pnvn-menu-mobile {
  position: sticky;
  background: var(--black-color);
}
.dlx-video-introduct-box {
  overflow: hidden;
}
.dlx-video-introduct-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}
.dlx-video-introduct-about {
  border: 5px solid var(--white-color);
  border-top-right-radius: 20%;
  border-bottom-left-radius: 20%;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

/* sửa */
.hq-news-hot-box-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  z-index: 10;
  color: var(--text-color);
  font-size: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: var(--main-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.hq-news-hot-box-navigation:hover {
  background: var(--primary-color);
  color: var(--background-color);
  transform: translateY(-50%) scale(0.9);
  -webkit-transform: translateY(-50%) scale(0.9);
  -moz-transform: translateY(-50%) scale(0.9);
  -ms-transform: translateY(-50%) scale(0.9);
  -o-transform: translateY(-50%) scale(0.9);
}
.hq-news-hot-box-navigation-prev {
  left: 0;
}
.hq-news-hot-box-navigation-next {
  right: 0;
}
.hq-news-hot-box-navigation.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-phone {
  position: fixed;
  left: auto;
  bottom: 50%;
  z-index: 99;
  right: 10px;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.btn-phone a svg {
  font-size: 24px;
  color: #fff;
}

.btn-phone a {
  background: #18bfe9;
  border-radius: 50%;
  box-shadow: -2px 0px 8px -3px black;
  display: block;
  line-height: 37px;
  text-align: center;
  width: 35px;
  height: 35px;
  font-size: 1rem;
  color: #fff;
}

.btn-phone a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-animation: pulse-animation 1.5s cubic-bezier(0.24, 0, 0.38, 1)
    infinite;
  animation: pulse-animation 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: -1;
}

span.number-phone {
  position: absolute;
  background: #c01627;
  bottom: 0;
  left: 55%;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  padding: 0 15px 0 30px;
  z-index: -1;
  border-radius: 0 25px 25px 0;
  height: 81%;
  line-height: 37px;
  perspective: 1000px;
  transition: all 600ms cubic-bezier(0.04, 0.94, 0.21, 1.22);
  transform-origin: left;
  top: 6px;
  width: 164px;
  font-size: 20px;
}

.touch span.number-phone.no-hover,
span.number-phone {
  transform: scaleX(0);
}

.btn-phone:hover span.number-phone,
.btn-phone:focus span.number-phone {
  transform: scaleX(1);
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  40% {
    transform: scale(1.3);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.ctrlq.fb-button {
  z-index: 999;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEyOCAxMjgiIGhlaWdodD0iMTI4cHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjggMTI4IiB3aWR0aD0iMTI4cHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxnPjxyZWN0IGZpbGw9IiMwMDg0RkYiIGhlaWdodD0iMTI4IiB3aWR0aD0iMTI4Ii8+PC9nPjxwYXRoIGQ9Ik02NCwxNy41MzFjLTI1LjQwNSwwLTQ2LDE5LjI1OS00Niw0My4wMTVjMCwxMy41MTUsNi42NjUsMjUuNTc0LDE3LjA4OSwzMy40NnYxNi40NjIgIGwxNS42OTgtOC43MDdjNC4xODYsMS4xNzEsOC42MjEsMS44LDEzLjIxMywxLjhjMjUuNDA1LDAsNDYtMTkuMjU4LDQ2LTQzLjAxNUMxMTAsMzYuNzksODkuNDA1LDE3LjUzMSw2NCwxNy41MzF6IE02OC44NDUsNzUuMjE0ICBMNTYuOTQ3LDYyLjg1NUwzNC4wMzUsNzUuNTI0bDI1LjEyLTI2LjY1N2wxMS44OTgsMTIuMzU5bDIyLjkxLTEyLjY3TDY4Ljg0NSw3NS4yMTR6IiBmaWxsPSIjRkZGRkZGIiBpZD0iQnViYmxlX1NoYXBlIi8+PC9zdmc+)
    center no-repeat #0084ff;
  width: 40px;
  height: 40px;
  text-align: center;
  bottom: 90px;
  border: 0;
  outline: 0;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  -webkit-transition: box-shadow 0.2s ease;
  background-size: 80%;
  transition: all 0.2s ease-in-out;
  position: fixed;
  left: 27px;
}

.ctrlq.fb-button:focus,
.ctrlq.fb-button:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09), 0 4px 40px rgba(0, 0, 0, 0.24);
}

.btn-phone.phone-hotline {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
.btn-phone.messenger-hotline {
  transform: translateY(200%);
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  -ms-transform: translateY(200%);
  -o-transform: translateY(200%);
}

.btn-xem-them-tour {
  font-family: lato-b;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
      90deg,
      rgb(243, 204, 75) 0%,
      rgb(142, 99, 20) 100%
    )
    text;
}

.du-lich-xau-slider-image iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.tb-index-introduce-row {
  padding: 0 4%;
}