﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Viaoda+Libre&display=swap");
:root {
  --hand-font: "Caveat", cursive;
  --brand-blue: #00a2d3;
  --brand-yellow: #f69320;
}

.w-100 {
  width: 100% !important;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.w-full {
  width: 100%;
}

img {
  line-height: 0;
}

.map {
  margin: 1rem 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .map {
    width: 50%;
  }
}

.bg-red {
  background: var(--brand-yellow);
}

h3.bg-blue {
  padding: 1rem !important;
}

.bg-blue {
  border-radius: 0 0 16px 0;
  background: var(--brand-blue);
}
.bg-blue.not-important {
  background: #aab5ba !important;
  color: #323232 !important;
}

.d-none {
  display: none !important;
}

a {
  transition: all 0.35s ease-in-out;
  color: darkblue;
}
a:hover {
  color: var(--brand-yellow);
}

.color-white {
  color: #fff;
}

.color-light-grey {
  color: #f2f2f2;
}

html {
  scroll-behavior: smooth;
  background-color: #fcf7e7;
}

a,
a:hover {
  text-decoration: none;
}

.overlay-hidden {
  overflow: hidden;
}

.wrapper {
  background-color: #fff;
  box-shadow: 1px 1px 8px #eee;
}
@media (min-width: 1200px) {
  .wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 24px;
  }
}

header {
  position: relative;
  transition: all 0.35s ease-in-out;
}
header.fade-in {
  position: fixed;
  animation: smoothScroll 1s forwards;
}

.programe {
  position: relative;
  z-index: 2000;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smoothScrollBottom {
  0% {
    transform: translateX(-50%) translateY(40px);
  }
  100% {
    transform: translateX(-50%) translateY(0px);
  }
}
.bgr-header {
  padding: 0 1rem;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 12px 12px 0 0;
}

.tophead {
  position: relative;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}
.tophead .slogan {
  margin-right: auto;
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.acount-user {
  padding: 0.75rem 1rem 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 12px 12px 0 0;
}
.acount-user svg {
  vertical-align: middle;
  margin-right: 4px;
}

header .logo {
  margin-left: -2rem;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 1200px) {
  header .logo {
    margin-left: 0;
  }
}
header .logo img {
  height: auto;
  width: 68%;
}
@media (min-width: 1200px) {
  header .logo img {
    width: 60%;
    height: auto;
  }
}

.day-hightlight h3 {
  font-size: 1em;
}

/***********************/
/* HAMBURGER MENU ANIMATION */
/***********************/
.hamburger-menu {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (min-width: 1200px) {
  .hamburger-menu {
    right: 1.5rem;
  }
}

.menu-bar1,
.menu-bar2,
.menu-bar3 {
  width: 2.2rem;
  height: 0.1rem;
  background-color: #666;
  margin: 0.4rem 0;
  transition: 0.4s;
}

.menu-when-scroll {
  display: none;
}
.menu-when-scroll.d-block {
  display: block;
}

.menu-bar2 {
  width: 1.5rem;
  margin-left: auto;
}

/* ROTATE FIRST BAR */
.active .menu-bar1 {
  /* transform: rotate(-45deg) translate(-7px, 8px); */
  transform: rotate(-45deg) translate(-0.4rem, 0.35rem);
}

/* FADE OUT SECOND BAR */
.active .menu-bar2 {
  opacity: 0;
}

/* ROTATE LAST BAR */
.active .menu-bar3 {
  /* transform: rotate(45deg) translate(-6px, -8px); */
  transform: rotate(45deg) translate(-0.3rem, -0.35rem);
}

.sticky-menu.fade-in {
  position: fixed;
  top: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.sticky-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brand-blue);
}
.sticky-menu li a {
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  transition: all 0.35s ease-in-out;
  color: #fff;
  display: block;
}
.sticky-menu li a.active {
  background: var(--brand-yellow);
  color: #fff;
}
.sticky-menu li a:hover {
  background: #fff;
  color: var(--brand-yellow);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03a9f4;
  mix-blend-mode: overlay;
}

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

.justify-content-end {
  justify-content: flex-end;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  transform: translateX(-100vw);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all ease-in-out 0.3s;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #fff;
}
.menu button {
  background-color: transparent;
  border: 0;
  padding: 1rem 2rem;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #888;
}
.menu button:hover {
  color: var(--brand-blue);
}
.menu.active {
  transform: translateX(0);
  background-color: #fff;
}
.menu .sale {
  padding: 2rem;
  padding-bottom: 8rem;
  color: #454545;
  background: #e2e2e2;
  border-top: 1px solid #ddd;
}
.menu .sale .info * {
  font-size: 90%;
}

.text-welcome {
  color: #666;
  text-transform: uppercase;
  padding: 1.5rem;
  background: #e2e2e2;
  text-align: center;
  margin: 0.5rem;
  margin-top: auto;
  width: 100%;
}

.menu ul {
  display: block;
  position: relative;
  background-color: #e2e2e2;
  border: 0.5rem #fff solid;
  width: 100%;
  height: 100%;
  padding: 0rem 0 8rem;
}

.menu ul li {
  list-style: none;
}
.menu ul li .box-client span {
  color: #666;
}

.menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #454545;
  padding: 1rem 3rem;
  display: block;
  border-bottom: 1px solid white;
  text-transform: uppercase;
}

.menu ul li a:hover {
  color: #03a9f4;
  background: #fff;
}

@media (max-width: 991px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
}
.name-tour {
  background: var(--brand-yellow);
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0.5rem 1.25rem !important;
  border-bottom-right-radius: 16px;
  line-height: 1.3;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .name-tour {
    padding: 0.75rem 2rem !important;
    position: absolute;
    font-size: 2rem;
    margin-top: 0;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: auto;
    height: auto !important;
    top: auto !important;
  }
}

@media (min-width: 1200px) {
  .item-day img {
    margin-top: 0 !important;
  }
  .day-content {
    margin-top: 1rem;
    align-items: start;
    display: flex;
    gap: 24px;
  }
  .day-hightlight {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
  }
  .day-hightlight span {
    width: 58%;
    text-align: justify;
  }
  .day-hightlight img {
    width: 40% !important;
  }
  .day-hightlight h3 {
    width: 100% !important;
  }
}
.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.flex {
  display: flex;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

@media (min-width: 1200px) {
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .itinerary .box-client {
    width: 50%;
  }
}

.box-client {
  padding: 1.5rem !important;
}
.box-client ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.box-client ul li::marker {
  color: var(--brand-yellow);
}

.item-day .day {
  color: #666 !important;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.day-title {
  font-size: 120%;
}

.price ul {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
.price ul li::marker {
  color: #03a9f4;
}

.btn {
  border: 0;
  padding: 0.5rem 1rem;
  line-height: 1;
  letter-spacing: 1;
  font-size: 80%;
  border-radius: 0.25rem;
}
.btn svg {
  margin-left: 8px;
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  transition: all 0.35s ease-in-out;
}
.btn-primary:hover {
  background: var(--brand-yellow);
  color: #fff;
}

.info {
  margin-left: 0;
}
.info.box-client {
  padding: 0 1rem !important;
}
.info p {
  margin-bottom: 8px;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio {
  position: relative;
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.banner {
  margin: 0 1rem;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.banner .img {
  line-height: 0;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  top: 0;
  left: 0;
}
.banner .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1rem 2rem;
}
.video-area .ratio {
  width: 100%;
  background: #000;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .video-area .ratio {
    max-width: calc(33.3333333333% - 0.7rem);
    flex-basis: calc(33.3333333333% - 0.7rem);
  }
}
.video-area .ratio:hover img {
  opacity: 1;
}
.video-area img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.video-area .play-icon {
  width: 40px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.fw-normal {
  font-weight: normal;
}

.footer {
  background: #02689d;
  padding: 3rem 1rem;
  border-radius: 0 0 24px 24px;
  color: #fff;
}
.footer .top-about {
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer h3 {
  color: #fff;
  letter-spacing: 1px;
  font-size: 86%;
  font-weight: 700;
}

.modal-header {
  display: flex;
  justify-content: space-between;
}
.modal-header .close span {
  font-weight: 100;
  font-size: 28px;
}

.modal-title {
  font-size: 20px;
  font-weight: 400;
}

.fb-100 {
  flex-basis: 100% !important;
}

.fixed-chat {
  position: fixed;
  bottom: 60px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1010;
}
.fixed-chat a {
  background-color: #fff;
  color: #aaa;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
}
.fixed-chat a svg {
  fill: #aaa;
}
.fixed-chat a:nth-child(1):hover {
  background: #25d366;
  color: #fff;
}
.fixed-chat a:nth-child(1):hover svg {
  fill: #fff;
}

.sticky-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--brand-blue);
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 2;
}
.sticky-btn svg {
  fill: var(--brand-blue);
}
.sticky-btn:hover svg, .sticky-btn:focus svg {
  fill: var(--brand-yellow);
  color: var(--brand-yellow);
}

.position-sticky {
  position: sticky;
  z-index: 10000;
}

/* menu toogle */
.menu-toggle {
  display: none;
  cursor: pointer;
  transform: translateY(8px);
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--brand-blue);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle.dark {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.menu-toggle.dark .bar {
  background-color: var(--brand-blue);
}

.nav {
  opacity: 0;
  display: none;
  background-color: #fff;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.05);
  margin: 0;
}
.nav .hamburger-menu {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  margin-right: 1rem;
}
.nav a {
  padding: 0.75rem 1rem;
  color: var(--brand-blue);
  display: block;
}
.nav a.active {
  background: var(--brand-blue);
  color: #fff;
}

.nav.position-sticky {
  top: 0;
  justify-content: space-between;
  opacity: 1;
  display: flex;
  align-items: center;
  animation: smoothScroll 0.5s forwards;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.nav.position-sticky .menu-toggle {
  display: block;
  margin-right: 0.5rem;
}

.fix-btn {
  display: none;
  opacity: 0;
  width: 100%;
  background: #fff;
  animation: smoothScrollBottom 0.5s forwards;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05);
}
.fix-btn.position-fixed {
  opacity: 1;
  display: flex;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  width: 100%; /* full width */
  /* match wrapper */
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  border-radius: 16px 16px 0 0; /* optional */
  overflow: hidden;
}
@media (min-width: 1200px) {
  .fix-btn.position-fixed {
    max-width: 1200px;
  }
}
.fix-btn a {
  color: var(--gray-body);
  padding: 0.5rem 1rem;
}
.fix-btn a:first-child {
  color: #25d366;
}
.fix-btn a:nth-child(2) {
  color: #249ee4;
}
.fix-btn a:last-child {
  background: #008000;
  color: #fff;
  margin-left: auto;
}

.btn-edit {
  background: transparent;
  border: 0;
  transform: translateX(-50%) translateY(30px);
  transition: all ease-in-out 0.3s;
  opacity: 0;
  height: 0;
  position: absolute;
  left: 50%;
  width: 100%; /* full width */
}
@media (min-width: 1200px) {
  .btn-edit {
    max-width: 1200px;
  }
}
.btn-edit.fix-edit-button {
  position: fixed;
  /* top sẽ được set bằng JS dựa theo height nav */
  z-index: 1000;
  display: inline-flex !important;
  transform: translateX(-50%) translateY(0);
  height: auto;
  bottom: 10px;
  opacity: 1;
}
.btn-edit span {
  white-space: nowrap;
  background: var(--brand-yellow);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 24px;
  gap: 6px;
}

.item-jour {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .item-jour {
    flex-wrap: nowrap;
  }
}
.item-jour:last-childp {
  margin-bottom: 0;
}

.arrow-red {
  background: url(../images/arrow-red.png) no-repeat 100% 1px;
  padding-right: 20px;
}

.day {
  color: var(--brand-blue);
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.jour-day {
  width: 100%;
  float: left;
}
@media (min-width: 1200px) {
  .jour-day {
    width: 20%;
  }
}
.jour-day .small {
  font-size: 90%;
  font-style: italic;
  margin-bottom: 5px;
}

.jour-detail {
  width: 100%;
  color: #232323;
}
@media (min-width: 1200px) {
  .jour-detail {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .flex-lg-column {
    flex-direction: column;
  }
}
.box-hightlight {
  background: url(images/bgr-hightlight.jpg) no-repeat center center;
  padding: 20px 25px 15px;
  margin: 1.5em 0;
  border-radius: 6px;
  overflow: hidden;
}

.row-grid {
  margin: 0 -3px;
  display: flex;
  flex-direction: column;
}
.row-grid > * {
  width: 100%;
}
@media (min-width: 1200px) {
  .row-grid {
    display: inherit;
    flex-direction: inherit;
  }
  .row-grid > * {
    width: 50%;
  }
}
.row-grid .row-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row-grid .row-grid .grid {
  width: 50%;
}

.row-grid .grid {
  display: inline;
  float: left;
  padding: 6px;
  box-sizing: border-box;
  line-height: 1;
}

.row-grid .grid img {
  line-height: 1;
  border-radius: 15px;
}

.box-hightlight h3 {
  color: #F69320;
  font-size: 16px;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.box-hightlight p {
  overflow: hidden;
  margin-bottom: 0.5em;
  text-align: justify;
}

.box-hightlight {
  background: url(/images/bgr-hightlight.jpg) no-repeat center center;
  padding: 20px 25px 15px;
  margin: 1.5em 0;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
}

.nopading {
  padding: 0 6px !important;
}

img, video {
  max-width: 100%;
  height: auto;
}

.contact-agent {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .contact-agent {
    flex-direction: row;
  }
}
.contact-agent blockquote {
  font-style: italic;
  margin-top: 2rem;
}/*# sourceMappingURL=main.css.map */