@import url("./general-css.css");
/* xs */
/* css general home page */
body {
  position: relative;
}
.main-container {
  width: 100%;
}
.sections {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
}
.row {
  width: 100%;
  max-width: 488px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-container--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading-1 {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-normal);
  font-family: var(--font-YesevaOne);
  font-size: var(--font-h1-xs);
}
.heading-2 {
  font-size: var(--font-h1-xs);
  color: var(--color-text-dark);
  font-family: var(--font-YesevaOne);
  font-weight: var(--font-weight-normal);
}
.heading-3 {
  font-size: var(--font-h3-sm);
  color: var(--color-text-bg-green);
  font-family: var(--font-YesevaOne);
  font-weight: var(--font-weight-normal);
}
.description {
  font-size: var(--font-body-defult);
  color: var(--color-text-dark);
  font-family: var(--font-popins);
  font-weight: var(--font-weight-normal);
  width: 88%;
}
.btn-text {
  background-color: var(--color-text-bg-green);
  color: var(--color-text-white);
  font-weight: var(--font-weight-bolder);
  font-family: var(--font-popins);
  font-size: var(--font-btn-defult);
  display: flex;
  justify-content: center;
  transition: 0.6s ease-in;
}
.btn-text:hover {
  background-color: #008785;
}
.btn-container {
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* section header */
.container {
  width: 100%;
}
#main {
  transition: 0.5s;
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 15px;
  z-index: 98;
  background-color: var(--color-text-white);
}
.header-placeholder {
  display: none;
}
.header.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.3s ease-in-out;
  z-index: 97;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header__logo {
  width: 70%;
  height: 100%;
}
.header__logo__img {
  width: 170px;
  height: 50px;
}
.header__hamburger {
  width: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.header__bar {
  width: 100%;
  height: 2px;
  background-color: #00a2a0;
  border-radius: 5px;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 2em;
  padding: 20px 20px;
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 99;
  top: 0;
  right: -250px;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
}
.sidebar__cross {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
.sidebar__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 2.5em;
}
.sidebar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.buy-now {
  width: 100%;
  padding: 12px 20px;
  background-color: #00a2a0;
  border-radius: 20px;
  border: none;
  color: var(--color-text-white);
  font-size: var(--font-btn-default);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}
.buy-now:hover {
  background-color: #089d9b;
}
.nav-link {
  font-family: var(--font-popins);
  color: var(--color-text-bg-green);
  font-size: var(--font-body-default);
  transition: 0.5s ease;
  cursor: pointer;
}
.nav-link.sidebarColor {
  color: #9da6a6;
  transition: 0.1s ease;
}
.nav-link.sidebarColor:hover {
  color: var(--color-text-white);
}
.nav-link.active {
  color: var(--color-text-white);
}
.nav-link:hover {
  color: var(--color-text-dark);
}
.overlay {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.overlay.active {
  opacity: 0.5;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}
.header__desktop {
  display: none;
}
.desktop__links {
  display: none;
}
/* bannner*/
.banner {
  min-height: 530px;
  background: url("../assets/images/img/image-home-page/bg-banner-pages.png");
  background-attachment: scroll;
  background-size: cover;
  background-position: 52% top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.card--banner {
  min-height: 264px;
  width: clamp(240px, 2.5vw, 300px);
}
@keyframes animationBannner {
  0% {
    left: 80px;
  }
  50% {
    left: 0;
  }
}
.heading-1--banner {
  padding-bottom: 24px;
  font-size: 2rem;
  position: relative;
  animation-name: animationBannner;
  animation-duration: 2s;
  user-select: none

}
.banner__buttons {
  display: flex;
  max-width: 240px;
  position: relative;
  animation-name: animationBannner;
  animation-duration: 3s;
}
.banner__buttons--green,
.banner__buttons--gray {
  width: 50%;
}
.banner__buttons--green {
  padding-right: 4px;
}
.banner__buttons--gray {
  padding-left: 4px;
}
.banner__buttons-link--gray,
.banner__buttons-link--green {
  border-radius: 16px;
  padding: 8px 10px;
  font-weight: 1200;
  font-family: "Poppins";
}
.banner__buttons-link--gray {
  color: var(--color-text-gray);
  background-color: var(--color-btn);
}
.banner__buttons-link--gray:hover {
  background-color: #ded0be;
}
.banner__caption--hide-sm {
  display: none;
}
/* section process */
.process {
  text-align: center;
  height: auto;
  background: url("../assets/images/img/image-home-page/bg-section-process.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 80px;
}
.heading-2--process {
  padding-bottom: 32px;
}
.card--process-first,
.card--process-third,
.card--process-second {
  padding: 0 16px;
}
.card--process-first {
  padding-bottom: 80px;
}
.card--process-third {
  padding-bottom: 0;
}
.card--process-second {
  padding-bottom: 32px;
}
.process__badge {
  width: 72px;
  padding: 4px 0;
  border-radius: 24px;
  color: var(--color-badge);
  background-color: var(--color-btn);
  font-family: var(--font-YesevaOne);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-btn-defult);
}
.process__picture {
  padding-top: 32px;
}
.heading-3--process {
  padding: 16px 0;
}
.btn-text--process,
.btn-text--Tours-destinations {
  border-radius: 24px;
  padding: 12px 30px;
  font-weight: var(--font-weight-normal);
}
.description--process {
  line-height: 24px;
}
/* section Tours-destinations */
.Tours-destinations__header {
  padding-top: 40px;
  background: url("../assets/images/img/image-home-page/bg-Tours-destinations.png");
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  overflow: visible;
}
.row--Tours-destinations {
  height: auto;
  background: url("../assets/images/img/image-home-page/img-Tours-destinations.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 180px 32px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Tours-destinations__btn-play,
.Tours-destinations__btn-play--hover-mode {
  width: 180px;
  height: 180px;
  cursor: pointer;
    transition: all .4s ease-in-out;

}
.Tours-destinations__btn-play--hover-mode {
  display: none;
  transition: all .4s ease-in-out;

}
.Tours-destinations__btn-play:hover
  + .Tours-destinations__btn-play--hover-mode {
  display: flex;
    transition: all .4s ease-in-out;


}
.Tours-destinations__btn-play:hover {
  display: none;
}
.Tours-destinations__content {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 16%,
    rgba(0, 162, 160, 1) 16%,
    rgba(0, 162, 160, 1) 100%
  );
  padding-top: 120px;
  text-align: center;
}
.heading-2--Tours-destinations {
  color: var(--color-text-white);
  padding-bottom: 32px;
}
.Tours-destinations__country-map {
  padding: 32px 0;
}
.heading-3--Tours-destinations {
  padding-bottom: 24px;
  color: var(--color-text-white);
}
.description--Tours-destinations {
  padding-bottom: 32px;
  line-height: 24px;
  color: var(--color-text-white);
  text-align: center;
  width: 70%;
}
.Tours-destinations__country-image-container {
  width: 100%;
  overflow: hidden;
}
.Tours-destinations__country-image {
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.Tours-destinations__country-image:hover {
  transform: scale(1.1);
}
.btn-container--Tours-destinations {
  padding-bottom: 80px;
}
/* sestion tour-guides */
.row--tour-guides {
  text-align: center;
  border-top: 1px solid var(--color-line);
  padding-top: 64px;
  padding-bottom: 72px;
}
.heading-2--tour-guides {
  padding-bottom: 24px;
}
.description--tour-guides {
  line-height: 24px;
  padding-bottom: 48px;
}
.card--tour-guides {
  padding: 0 16px;
}
.tour-guides__image {
  width: 100%;
  padding: 32px 0;
}
.heading-3--tour-guides {
  padding-bottom: 16px;
}
.card-description--tour-guides {
  padding-bottom: 32px;
  line-height: 24px;
}
/*float iframe */
.video-container {
  display: flex;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  display: none;
  /* aspect-ratio: 16 / 9; */
}
.close-icone {
  display: none;
}
.icon-close-wrapper {
  padding-bottom: 16px;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: flex-end;
}
.video {
  width: 100%;
  max-width: 900px;
  height: 280px;
  box-shadow: 5px 5px 8px #9da2a722, -5px -5px 8px #9da2a722;
}
.caver {
  z-index: 20;
  background-color: #0b0b0b;
  opacity: 0.8;
  width: 100%;
  height: 2800px;
  position: absolute;
  top: 0;
  display: none;
}
/* footer */
.footer {
  background-image: url("../assets/images/img/image-home-page/journey2-footerbg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ece1da;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.row--footer {
  padding: 100px 0;
}
.footer__social-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
}
.description--footer {
  padding: 50px 0;
  width: 60%;
  line-height: 26px;
}
.footer__icons {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-text-bg-green);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.footer__icons:hover {
  background-color: #047876;
}
.footer__line {
  width: 100%;
  height: 1px;
  background-color: #51504f46;
}
.row--footer-copyright {
  padding: 50px 0;
}
.footer__links {
  color: var(--color-text-bg-green);
  cursor: pointer;
}
.footer__links:hover {
  text-decoration: underline;
}
/* sm */
@media (min-width: 576px) {
  /* css general home page */
  .heading-1 {
    font-size: var(--font-h1-sm);
  }
  .banner {
    padding-top: 144px;
    padding-bottom: 150px;
    background-position: 46%;
    padding-left: 48px;
  }
  /* section header */
  .header__desktop {
    display: none;
  }
  .desktop__links {
    display: none;
  }
  /* section banner */
  .card--banner {
    width: 50vw;
    min-height: 250px;
  }
  .banner__buttons {
    max-width: 270px;
  }
  .heading-1--banner {
    max-width: 100%;
  }
  .video {
    height: 360px;
  }
}

/* md */
@media (min-width: 768px) {
  /* css general home page */
  .sections {
    padding-left: 64px;
    padding-right: 64px;
  }
  .row {
    max-width: 800px;
  }
  .card-container--horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .heading-2 {
    font-size: var(--font-h1-md);
  }
  .heading-3 {
    font-size: var(--font-h3-md);
  }
  /* section header */
  .header {
    padding: 30px 28px;
    background-color: transparent;
  }
  .header.sticky {
    padding: 5px 28px;
    height: 60px;
    box-shadow: 1px 1px 5px rgb(223, 219, 219);
    opacity: 0.9;
    background-color: var(--color-text-white);
  }
  .header__logo__img.sticky {
    width: 120px;
    height: 35px;
    margin-top: 12px;
  }
  .header__logo {
    width: 60%;
    height: 100%;
  }
  .header__hamburger {
    width: 10%;
    align-items: flex-end;
  }
  .header__bar {
    width: 25px;
  }
  .header__logo__img {
    width: 205px;
    height: 100%;
  }
  .header__desktop {
    width: 30%;
    display: flex;
    justify-content: flex-end;
  }
  .desktop__buy-now {
    width: 155px;
    padding: 8px 20px;
    background-color: #00a2a0;
    border-radius: 20px;
    border: none;
    font-family: var(--font-popins);
    color: var(--color-text-white);
    font-size: var(--font-btn-default);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
  }
  .desktop__buy-now:hover {
    background-color: #089d9b;
  }
  .desktop__links {
    display: none;
  }
  /* section banner */
  .card--banner {
    width: 56vw;
  }
  .banner {
    min-height: 720px;
    padding-left: 110px;
  }
  .banner__caption--hide-sm {
    line-height: 32px;
    width: 450px;
    padding-left: 28px;
    display: flex;
    border-left: 3px solid #ffdab2;
    font-size: 0.95rem !important;
    font-family: "Poppins";
    color: #1a404ac0;
    position: relative;
    animation-name: animationBannner;
    animation-duration: 3s;
    user-select: none

  }
  .banner__buttons {
    max-width: 290px;
    padding-top: 28px;
  }
  .banner__buttons-link--gray,
  .banner__buttons-link--green {
    border-radius: 48px;
    font-weight: 900;
    font-size: var(--font-btn-defult);
    padding: 12px 10px;
  }
  /* section process */
  .card-container--process {
    align-items: center;
  }
  .card--process-first,
  .card--process-third {
    padding-bottom: 120px;
    align-self: flex-start;
  }

  .card--process-second {
    padding-bottom: 0px;
  }
  .btn-container--process {
    padding-top: 32px;
  }
  /* section Tours-destinations */
  .Tours-destinations__content {
    background: rgb(255, 255, 255);
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 33%,
      rgba(0, 162, 160, 1) 33%,
      rgba(0, 162, 160, 1) 100%
    );
  }
  .Tours-destinations__country-image-container {
    height: 170px;
  }
  .description--Tours-destinations {
    padding-bottom: 60px;
  }
  /* section tour-guide */
  .card-container--tour-guides {
    padding: 0 32px;
    width: 90%;
  }
  .description--tour-guides {
    width: 54%;
  }
  .video {
    height: 400px;
  }
}
/* lg */
@media (min-width: 1240px) {
  /* css general home page */
  .row {
    min-width: 1050px;
  }
  .heading-1 {
    font-size: var(--font-h1-lg);
  }
  .heading-2 {
    font-size: var(--font-h1-lg);
  }
  .heading-3 {
    font-size: var(--font-h3-lg);
  }
  .description {
    font-size: var(--font-body-defult);
  }
  /* section header */
  .header {
    padding: 30px 32px;
    background-color: transparent;
  }
  .header__hamburger {
    display: none;
  }
  .desktop__links {
    display: flex;
    gap: 40px;
    width: 55%;
  }
  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-family: "Poppins";
    font-weight: 900 !important;
  }
  .nav-link.activ {
    color: var(--color-text-dark);
  }
  .header__logo {
    width: 280px;
    height: 100%;
  }
  /* section banner */
  .banner {
    background-position: 50%;
    padding-left: 210px;
  }
  .card--banner {
    width: 44vw;
    min-height: 300px;
  }
  .banner__buttons {
    max-width: 320px;
  }
  /* section Tours-destinations */
  .Tours-destinations__country-image-container {
    height: 220px;
  }
  .desktop__links.sticky { 
    display: flex; 
    gap: 40px; 
    width: 100%; 
  }
    .video {
    height: 490px;
  }
}
