/* import variables */

@import url("./fonts.css");
@import url("./root.css");

.vidz_button {
  border-radius: 5px;
  text-align: center;
  padding: 0.3em 1.2em;h
  font-weight: 500;

  color: var(--body_color);
  cursor: pointer;
  background: transparent;
  z-index: 10;
  column-gap: 10px;
  span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--body_color);

    transition: all 0.35s ease;
    svg {
      width: 20px;
      height: 20px;
      path {
        fill: var(--body_color);
      }
    }
  }
  p {
    font-size: var(--size_1p0rem);
    font-weight: 600;
    padding: 0;
    margin: 0;
    margin-bottom: 0;
  }
  &:hover {
    span {
      border: 1px solid var(--text_color);
      background-color: var(--text_color);
    }
  }
}
.title {
  font-family: var(--heading_family);
  font-size: 3em;
}
.display_none {
  display: none;
}
.sub_title {
  font-size: var(--size_2p0rem);
  font-family: var(--heading_family);
  font-weight: 400;
}
.sub_sub_title {
  font-size: var(--size_1p8rem);
  font-family: var(--subhead_family);
}
.script_title {
  font-size: var(--size_1p8rem);
  font-family: var(--script_family);
}
.desc_para {
  font-size: var(--size_1p4rem);
  text-transform: uppercase;
  line-height: 1.6;
  transition: all 0.45s ease-in-out;
  transform: translateY(60%);
  opacity: 0;
}

.call_btn {
  background-color: var(--text_color);
  border-radius: 5px;
  text-align: center;
  padding: 0.3em 1.2em;
  outline: none;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--size_1p2rem);
  color: var(--body_color);
  transition: all 0.35s ease;
  border: 1px solid var(--text_color);
  &:hover {
    border: 1px solid var(--body_color);
    background-color: var(--body_color);
    color: var(--text_color);
  }
}
.gen_btn {
  background-color: transparent;
  padding: 0.6em 1.4em;
  border: 1px solid var(--text_color);
  border-radius: 5px;
  transition: all 0.35s ease;
  font-weight: 400;
  font-size: var(--size_1p0rem);
  text-transform: uppercase;
  &:hover {
    background-color: var(--text_color);
    color: var(--body_color);
  }
  &.btn_filled {
    background-color: var(--text_color);
    color: var(--body_color);
    &:hover {
      background-color: var(--body_color);
      color: var(--text_color);
    }
  }
}

.image_layer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.gallery_card {
  width: var(--width_100);
  position: relative;
  .photos_grid {
    width: var(--width_100);
    max-height: 540px;
    overflow-y: scroll;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    .one_photo {
      width: var(--width_100);
      position: relative;
      cursor: pointer;
      height: 260px;
      border-radius: 8px;
      border: 0;
      outline: none;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      .photo_layer {
        width: 100%;
        height: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 10;
        background-color: rgba(32, 39, 47, 0.75);
        border-radius: 8px;
        transition: all 0.25s ease;
        h4 {
          width: var(--width_100);
          text-align: center;
          font-weight: 400;
          color: var(--orange_color);
          font-size: var(--size_1p0rem);
          transition: all 0.25s ease;
          opacity: 0;
        }
      }
      &:hover {
        .photo_layer {
          height: 100%;
          h4 {
            opacity: 1;
          }
        }
      }
    }
  }
}
.hidden_gallery {
  width: var(--width_100);
  height: 100vh;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.35s ease-in-out;
  .image_layer {
    background-color: rgba(32, 39, 47, 0.85);
    z-index: 1;
    cursor: pointer;
    .close_btn {
      position: absolute;
      right: 50px;
      top: 30px;
      width: 30px;
      height: 30px;
      display: flex;
      z-index: 10;
      border: 0;
      outline: none;
      opacity: 0;
      pointer-events: none;
      transition: 0.25s ease;
      cursor: pointer;
      justify-content: center;
      align-items: center;
      .image_layer {
        display: none;
      }
      svg {
        width: 100%;
        height: 100%;
        path {
          fill: var(--body_color);
        }
      }
    }
    &:hover {
      .close_btn {
        opacity: 1;
        pointer-events: initial;
      }
    }
  }
  .big_image {
    position: relative;
    z-index: 10;
    width: var(--width_70);
    height: var(--width_80);
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    .arrow_btns {
      width: 115%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      row-gap: 15px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.25s ease;
      .arrow {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid var(--body_color);

        position: relative;
        transition: all 0.3s ease;
        .image_layer {
          display: none;
        }
        img {
          display: none;
        }
        svg {
          width: 20px;
          height: 20px;
          path {
            fill: var(--body_color);
          }
        }
        &:hover {
          border: 2px solid var(--body_color);
          background-color: var(--body_color);
          svg {
            path {
              fill: var(--text_color);
            }
          }
        }
      }
    }
    &:hover {
      .arrow_btns {
        opacity: 1;
        pointer-events: initial;
      }
    }
  }
  &.visible {
    opacity: 1;
    pointer-events: initial;
  }
}

/* mobile -> max 600px */
/* nave */
.home_nav {
  width: var(--width_100);
  padding: 1em 5%;
  margin: auto;
  position: relative;
  z-index: 5000;
  transition: all 0.4s ease;

  .logo {
    .link_btn {
      column-gap: 1em;
      background-color: transparent;
      cursor: pointer;
      outline: none;
      border: 0;
      img {
        width: 60px;
        object-fit: cover;
      }
      h2 {
        color: var(--orange_color);
        font-family: var(--heading_family);
        /* font-family: 'Harper'; */
        /* font-family: 'Playthings'; */
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 2px;
        font-size: var(--size_1p2rem);
      }
    }
  }
  .home_left {
    column-gap: 2em;
    button {
      img {
        width: 32px;
        object-fit: cover;
      }
      &.call_btn {
        display: none;
      }
    }
  }
  &.nav_standalone {
    width: var(--width_100);
    background-color: #001f2b;
    padding: 1em 5%;

    .home_left {
      .call_btn {
        background-color: var(--body_color);
        border: 1px solid var(--body_color);
        color: var(--text_color);
        &:hover {
          border: 1px solid var(--body_color);
          background-color: var(--text_color);
          color: var(--body_color);
        }
      }
    }
  }
  &.fixed {
    width: var(--width_100);
    background-color: var(--text_color);
    border-bottom: 2px solid var(--body_color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
  }
}
/* hero */
.video_player {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 10%;
  left: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  pointer-events: none;
  opacity: 0;
  .layer {
    background: rgba(0, 31, 43, 0.9);
    cursor: pointer;
  }
  .video {
    width: 90vw;
    height: 40vh;
    border-radius: 10px;
    position: relative;
    z-index: 10;
    video {
      width: var(--width_100);
      height: var(--width_100);
      border-radius: 10px;
      object-fit: cover;
    }
  }
  /* .video {
    width: 80vw;
    height: 85vh;
    border-radius: 10px;
    position: relative;
    z-index: 10;
    video {
      width: var(--width_100);
      height: var(--width_100);
      border-radius: 10px;
      object-fit: cover;
    }
  } */
  &.visible {
    top: 0;
    pointer-events: initial;
    opacity: 1;
  }
}

.hero {
  width: var(--width_100);
  min-height: 55vh;
  position: relative;
  /* animation: name duration timing-function delay iteration-count direction fill-mode; */
  /* transition: all 0.5s ease-in-out;
  animation: scale_bg 10s linear infinite both; */
  .home_nav {
    position: absolute;
    top: 0;
    left: 0;
    &.fixed {
      position: fixed;
      z-index: 5000;
    }
  }

  .main_hero {
    width: 100%;
    min-height: 55vh;
    background-color: rgba(0, 31, 43, 0.55);
    position: relative;

    z-index: 7;
    overflow: hidden;

    .hero_slider {
      width: var(--width_100);
      grid-template-columns: repeat(6, 100%);
      position: absolute;
      transition: all 0.45s ease;
      left: 0;
      top: 0;
      z-index: 10;
      min-height: 55vh;
      /* .hero_slide{
        
      } */

      .hero_image {
        min-width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 55vh;
        position: relative;
        transform: translateY(0);
        transition: all 0.35s ease;

        /* padding: 0 5%; */
        .layer {
          z-index: 2;
        }

        .hero_left_content {
          width: var(--width_100);
          padding: 2% 5%;
          position: relative;
          z-index: 10;
          margin-top: 12%;
          .title {
            width: var(--width_100);
            margin-top: 2em;
            color: var(--orange_color);
            font-weight: 400;
            font-family: var(--heading_family);
            margin-bottom: 0.6rem;
            text-align: center;
            font-size: var(--size_2p2rem);
            text-transform: uppercase;
            transition: all 0.45s ease-in-out;
            transform: translateY(60%);
            opacity: 0;

            &.break {
              display: none;
            }
          }
          p {
            width: var(--width_100);
            color: var(--body_color);
            width: var(--width_90);
            margin: auto;
            font-weight: 300;
            margin-bottom: 3rem;
            text-align: center;
            font-family: var(--text_family);
            font-size: var(--size_1p2rem);
          }
          .vidz_button {
            min-width: 120px;
            span {
              min-width: 28px;
              min-height: 28px;
            }
            p {
              margin-bottom: 0;
              font-size: var(--size_0p95rem);
            }
          }
          .actions {
            width: 100%;
            column-gap: 0.5em;
          }
          .btn {
            padding: 0.3em 3em;
            &:hover {
              background-color: var(--body_color);
              color: var(--text_color);
              border-color: var(--body_color);
            }

            &:last-child {
              padding: 0.3em 2em;
              &:hover {
                background-color: transparent;
                color: var(--body_color);
                span {
                  background-color: var(--body_color);
                  svg {
                    path {
                      fill: var(--green_color);
                    }
                  }
                }
              }
            }
            span {
              display: block;
              width: 30px;
              height: 30px;
              min-width: 30px;
              min-height: 30px;
              border-radius: 50%;
              border: 1px solid var(--body_color);
              margin-right: 1em;
              transition: all 0.25s ease;

              svg {
                width: 18px;
                height: 18px;
                path {
                  fill: var(--body_color);
                }
              }
            }
          }
        }

        &.current {
          animation: scale_bg 10s linear infinite both;
          .hero_left_content {
            .title {
              transform: translateY(0);
              opacity: 1;
            }
            .desc_para {
              transform: translateY(0);
              opacity: 1;
            }
          }
        }
      }
    }

    .hero_left {
      width: var(--width_100);

      min-height: 60vh;
      /* background: rgba(0, 31, 43, 0.15); */
      /* backdrop-filter: blur(1px); */
      position: absolute;
      left: 0;
      top: 0;
      z-index: 5;
      .hero_left_content {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        /* position: relative;*/
        .title {
          margin-top: 2em;
          color: var(--orange_color);
          font-weight: 400;

          font-family: var(--heading_family);
          margin-bottom: 0.6rem;
          text-align: center;
          font-size: var(--size_2p2rem);
          text-transform: uppercase;
          transition: all 0.35s ease-in-out;
          transform: translateY(0);
          animation: flick 10s linear infinite both;

          &.break {
            display: none;
          }
        }
        p {
          color: var(--body_color);
          width: var(--width_80);
          margin: auto;
          font-weight: 300;
          margin-bottom: 3rem;
          text-align: center;
          font-family: var(--text_family);
          font-size: var(--size_1p2rem);
        }
        .vidz_button {
          min-width: 120px;
          span {
            min-width: 28px;
            min-height: 28px;
          }
          p {
            margin-bottom: 0;
            font-size: var(--size_0p95rem);
          }
        }
        .actions {
          width: 100%;
          column-gap: 0.5em;
        }
        .btn {
          padding: 0.3em 3em;
          &:hover {
            background-color: var(--body_color);
            color: var(--text_color);
            border-color: var(--body_color);
          }

          &:last-child {
            padding: 0.3em 2em;
            &:hover {
              background-color: transparent;
              color: var(--body_color);
              span {
                background-color: var(--body_color);
                svg {
                  path {
                    fill: var(--green_color);
                  }
                }
              }
            }
          }
          span {
            display: block;
            width: 30px;
            height: 30px;
            min-width: 30px;
            min-height: 30px;
            border-radius: 50%;
            border: 1px solid var(--body_color);
            margin-right: 1em;
            transition: all 0.25s ease;

            svg {
              width: 18px;
              height: 18px;
              path {
                fill: var(--body_color);
              }
            }
          }
        }

        .slider_arrows {
          position: absolute;
          bottom: 5%;
          left: 50%;
          transform: translateX(-50%);
          column-gap: 10px;
          opacity: 1;
          transition: all 0.35s ease;
          pointer-events: initial;

          .arrow {
            flex: 1;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;

            position: relative;
            transition: all 0.3s ease;
            .image_layer {
              display: none;
            }
            img {
              display: none;
            }
            svg {
              width: 28px;
              height: 28px;
              path {
                fill: var(--body_color);
              }
            }
            &:hover {
              background-color: var(--body_color);
              svg {
                path {
                  fill: var(--text_color);
                }
              }
            }

            &:first-child {
              svg {
                margin-right: 5px;
              }
            }
            &:last-child {
              svg {
                margin-left: 5px;
              }
            }
          }
        }
      }
      &:hover {
        .hero_left_content {
          .slider_arrows {
            opacity: 1;
            pointer-events: initial;
          }
        }
      }
    }

    .slider {
      display: none;
      width: var(--width_50);
      position: absolute;
      bottom: 1em;
      z-index: 16;
      right: 2.5%;
      padding: 2.5% 1%;
      column-gap: 2em;

      .slider_images {
        flex: 2;
        .slide {
          position: relative;
          border: 0;
          width: 60px;
          height: 40px;
          border-radius: 4px;
          opacity: 0.5;
          border-radius: 6px;
          transition: all 0.25s ease;
          &:not(:last-child) {
            margin-right: 1em;
          }

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.25s ease;
          }
          &:hover {
            opacity: 1;

            img {
              border: 1px solid var(--body_color);
            }
          }
          &.current {
            width: 70px;
            height: 50px;
            opacity: 1;

            img {
              border: 1px solid var(--body_color);
            }
          }
        }
      }
    }
  }
}

@keyframes scale_bg {
  0% {
    background-size: 200%;
  }
  50% {
    background-size: 220%;
  }
  100% {
    background-size: 200%;
  }
}
@keyframes zoomed {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes flick {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}

/* nav */
.main_nav {
  width: var(--width_100);
  position: fixed;
  background: var(--body_color);
  right: 8%;
  top: 0;
  height: 100vh;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;

  .nav_links {
    width: var(--width_full);

    column-gap: 10%;
    padding: 10% 5%;
    margin-top: 3em;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    .call_btn {
      display: block;
      border: 1px solid var(--text_color);
      &:hover {
        background-color: var(--body_color);
        color: var(--text_color);
      }
    }

    .nav_img {
      img {
        width: 400px;
      }
    }

    .nav_items {
      .nav_list {
        margin-bottom: 2em;
        padding-top: 2em;
        .nav_item {
          width: 100%;

          display: inline-block;

          &:not(:last-child) {
            margin-right: 1em;
          }

          .nav_link {
            width: 100%;
            display: block;
            color: var(--text_color);
            background-color: transparent !important;
            border: 0;
            outline: none;
            cursor: pointer;
            font-size: var(--size_2p4rem);
            text-transform: uppercase;
            font-weight: 500;
            font-family: var(--heading_family);
            text-align: right;
            transition: all 0.35s ease;
            position: relative;
            z-index: 3;
            &:hover {
              color: var(--text_color);
              opacity: 0.7;
            }
          }

          &.main_item {
            width: var(--width_100);
            position: relative;
            .nested_list {
              background: var(--body_color);
              position: absolute;
              width: 60%;
              left: -15%;
              top: 15%;
              z-index: 20;
              border-right: 3px solid var(--text_color);
              transition: all 0.45s ease;
              opacity: 0;
              pointer-events: none;
              /* &.visible{
                  opacity: 1;
                  pointer-events: initial;
                  left: 35%;
                } */
              .pointer_arrow {
                position: absolute;
                width: 36px;
                height: 36px;
                right: -36px;
                top: 0;
                svg {
                  width: 100%;
                  height: 100%;
                  path {
                    fill: var(--text_color);
                  }
                }
              }
              .sub_list {
                width: 100%;
                padding: 1em 2em;
                .sub_item {
                  width: var(--width_100);
                  margin-bottom: 0.8em;
                  .sub_link {
                    width: 100%;
                    display: block;
                    outline: none;
                    background-color: transparent;
                    border: 0;
                    cursor: pointer;
                    color: var(--text_color);
                    font-weight: 500;
                    transition: all 0.35s ease;
                    text-transform: uppercase;
                    font-size: var(--size_1p0rem);
                    text-align: right;
                    &:hover {
                      color: var(--orange_color);
                      opacity: 0.75;
                    }
                  }
                }
              }
            }
            &:hover {
              .nested_list {
                opacity: 1;
                pointer-events: initial;
                left: -26%;
              }
            }
          }
        }
      }
      .other_list {
        width: 100%;
        position: relative;

        background: transparent;
        column-gap: 15px;
        margin-top: 12%;
        .col {
          width: var(--width_50);
        }

        .nav_item {
          width: 100%;
          margin-bottom: 0.15em;
          display: inline-block;
          .nav_link {
            display: block;
            width: 100%;
            color: var(--orange_color);
            font-size: var(--size_1p0rem);
            text-transform: none;
            font-weight: 600;
            text-align: right;
            cursor: pointer;
            border: 0;
            outline: none;
            transition: all 0.35s ease;
            font-family: var(--text_family);
            text-transform: uppercase;
            background-color: transparent;
            &:hover {
              color: var(--dark_color);
            }
          }
        }
      }
    }
  }
  .nav_left {
    button {
      width: 30px;
      height: 30px;
      margin-right: 2em;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  &.visible {
    opacity: 1;
    pointer-events: initial;
    right: 0;
  }
}

/* bridge */

.bridge {
  width: var(--width_100);
  margin: auto;
  padding: 4em 5%;
  background-color: var(--text_color);
  position: relative;
  z-index: 3;

  h2 {
    width: var(--width_100);
    text-align: justify;
    font-weight: 500;
    font-size: var(--size_1p2rem);
    font-family: var(--heading_family);
    color: var(--body_color);
    line-height: 1.6;
  }
  .gen_btn {
    width: var(--width_75);
    display: block;
    margin: auto;
    margin-top: 2em;
    border: 1px solid var(--body_color);
    font-family: var(--heading_family);
    font-size: var(--size_1p2rem);
  }
  &.no_back {
    margin: var(--size_3p4rem) auto;
    background-color: transparent;
    &::before {
      display: none;
    }
    h2 {
      color: var(--text_color);
      margin-bottom: 1.4em;
    }
    .btns {
      width: 100%;
      column-gap: 4em;
    }
  }
  &.bridge_at_destination {
    margin: 2em auto;
    padding: 2em 5%;
    background-color: transparent;
    &::before {
      display: none;
    }
    h2 {
      color: var(--text_color);
      margin-bottom: unset;
      font-size: var(--size_1p2rem);
      text-align: justify;
    }
  }
}
.section_head {
  width: var(--width_100);
  text-align: center;
  .mixed {
    width: var(--width_100);
    text-align: center;
    column-gap: 0.8em;
    margin-bottom: 1.2em;
    h2 {
      color: var(--text_color);
      font-weight: 400;
    }
    .normal {
      font-family: var(--heading_family);
      font-size: var(--size_2p6rem);
    }
    .scripted {
      font-family: var(--script_family);
      font-size: var(--size_3p0rem);
    }
  }
  &.feature_head {
    p {
      display: none;
    }
  }
  p {
    width: var(--width_100);
    margin: auto;
    text-align: justify;
    font-size: var(--size_1p2rem);
    font-family: var(--heading_family);
  }
  /* &.section_header {
    margin-bottom: var(--size_2p5rem);
  } */
  &.tour_head_section {
    margin-top: 4em;
    margin-bottom: 4em;
  }
}

.page_section {
  width: var(--width_90);
  margin: 4em auto;

  .tour_styles {
    margin-top: 3em;
    justify-content: space-between;
    gap: 2em;

    .tour_card {
      overflow: hidden;
      /* border-width: 2px;
      border-style: solid; */
      border-radius: 10px;
      position: relative;
      display: flex;
      flex-direction: column;
      .card_img {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 260px;
        padding: 1em;
        position: relative;
        margin-bottom: 1em;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        overflow: hidden;

        h3 {
          color: var(--body_color);
          font-size: var(--size_1p0rem);
          flex-basis: 100%;
          margin-top: 0.7em;
          font-weight: 300;
        }
        p {
          opacity: 0.85;
        }
      }
      .section_head {
        position: relative;
        z-index: 5;
        .mixed {
          h2 {
            color: var(--body_color);
          }
          .normal {
            font-size: var(--size_2p8rem);
          }
          .scripted {
            font-size: var(--size_3p2rem);
          }
        }
        p {
          display: none;
        }
      }
      .head_row {
        width: calc(var(--width_100) - 2em);
        position: relative;
        z-index: 5;
        column-gap: var(--size_2p0rem);
        margin-bottom: var(--size_1p2rem);
        flex-wrap: wrap;
        position: absolute;
        bottom: 2%;
        left: 1em;

        h4 {
          font-size: var(--size_1p2rem);

          font-family: var(--heading_family);
          text-transform: uppercase;
          color: var(--body_color);
        }
      }
      h3 {
        position: relative;
        z-index: 5;
        font-weight: 500;
        text-align: justify;
        font-family: var(--heading_family);
        font-size: var(--size_1p0rem);
        margin-bottom: 1rem;
      }
      .gen_btn {
        margin-top: 1em;

        margin: 2em auto;
        margin-left: 0;
        position: relative;
        bottom: 0;
        width: 70%;
      }
      p {
        width: var(--width_100);
        margin: auto;
        text-align: justify;
        font-size: var(--size_1p0rem);
        flex: 2;
      }

      &.card_left {
        border-color: var(--orange_color);
        .section_head {
          .mixed {
            h2 {
              color: var(--orange_color);
            }
          }
        }
        p {
          color: var(--text_color);
        }
        .gen_btn {
          border: 1px solid var(--orange_color);
          color: var(--orange_color);
          &:hover {
            background-color: var(--orange_color);

            color: var(--body_color);
          }
        }
      }
    }
  }

  .two_columns {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    row-gap: 2em;
    .grid_col {
      .col_img {
        position: relative;
        width: var(--width_100);
        height: var(--width_100);
        min-height: var(--width_100);
        background-size: cover;
        border-radius: 8px;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 300px;
      }
      .section_head {
        margin-bottom: 0.9em;

        .mixed {
          justify-content: flex-start;
          .normal {
            font-size: var(--size_2p6rem);
          }
          .scripted {
            font-size: var(--size_3p0rem);
          }
        }
        p {
          width: 100%;
          text-align: center;
          font-size: var(--size_1p0rem);
          margin-bottom: 0;
        }
      }
      p {
        text-align: justify;
        font-size: var(--size_1p0rem);
        margin-bottom: 2.2em;
        margin-top: 0;
      }
    }
    &.why {
      .grid_col {
        .section_head {
          .mixed {
            flex-direction: column;
            h2 {
              display: block;
              width: 100%;
              text-align: center;
            }
            .normal {
              text-transform: uppercase;
            }
          }
        }
      }
      .gen_btn {
        display: block;
        margin: auto;
        width: var(--width_75);
      }
    }
    &.re-order {
      .col_content {
        order: 1;
      }
      .col_left {
        order: 2;
      }
    }
  }
}

.values {
  width: var(--width_100);
  margin: var(--width_5) auto;
  background-color: rgba(59, 77, 37, 0.1);

  .values_slider {
    overflow-x: scroll;
    width: var(--width_90);
    padding: 3em 0;
    margin: auto;
    grid-template-columns: repeat(7, minmax(45%, 1fr));
    align-items: center;
    justify-items: center;
    justify-content: start;
    gap: 20px;

    .value {
      img {
        margin-bottom: var(--size_0p8rem);
        width: 36px;
      }
      span {
        font-weight: 500;
        text-align: center;
        width: 100%;
        text-transform: uppercase;
        font-size: var(--size_0p75rem);
      }
    }
  }
}

.two_cols {
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  grid-gap: 6%;
  .grid_col {
    .col_img {
      position: relative;
      width: var(--width_100);
      height: var(--width_100);
      min-height: var(--width_100);
      background-size: cover;
      border-radius: 8px;
      background-position: center;
      background-repeat: no-repeat;
    }
    .section_head {
      margin-bottom: 0.9em;

      .mixed {
        justify-content: flex-start;
        .normal {
          font-size: var(--size_3p6rem);
        }
        .scripted {
          font-size: var(--size_5p2rem);
        }
      }
      p {
        width: 100%;
        text-align: left;
        font-size: var(--size_1p2rem);
        margin-bottom: 0;
      }
    }
    p {
      text-align: justify;
      font-size: var(--size_1p2rem);
      margin-bottom: 2.2em;
      margin-top: 0;
    }
  }
  &.why {
    .grid_col {
      .section_head {
        .mixed {
          flex-direction: column;
          h2 {
            display: block;
            width: 100%;
            text-align: left;
          }
          .normal {
            text-transform: uppercase;
          }
        }
      }
    }
  }
  &.re-order {
    .col_content {
      order: 1;
    }
    .col_left {
      order: 2;
    }
  }
}
.layer {
  width: var(--width_100);
  height: var(--width_100);
  background: rgba(0, 31, 43, 0.36);
  position: absolute;
  top: 0;
  left: 0;

  z-index: 2;
  .btn {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
    svg {
      width: 24px;
    }
  }
  &:hover {
    .btn {
      pointer-events: initial;
      opacity: 1;
    }
  }
}

.tour_slide {
  border-radius: 8px;
  border: 1px solid var(--text_color);

  .tour_img {
    width: 100%;
    min-height: 240px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom: 0.6px solid var(--text_color);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .tour_content {
    width: var(--width_100);
    padding: 1em 1.2em;
    flex: 1;
    justify-content: space-evenly;
    h3 {
      width: var(--width_100);
      text-align: left;
      text-transform: uppercase;
      font-size: var(--size_1p0rem);
      font-weight: 500;
    }
    p.t_txt {
      width: var(--width_100);
      text-align: justify;
      font-size: var(--size_1p0rem);
    }
    h1 {
      width: 100%;
      text-align: left;
      font-weight: 400;
      font-family: var(--heading_family);
      color: var(--text_color);
      font-size: var(--size_1p5rem);
    }
    .route {
      width: var(--width_100);
      margin-bottom: 0.4em;

      img {
        width: 16px;
        margin-right: 0.5em;
        opacity: 0.6;
      }
      h5 {
        color: var(--text_color);
        opacity: 0.6;
        font-size: var(--size_0p8rem);
        text-transform: uppercase;
      }
    }
    .price {
      width: var(--width_100);
      margin: 1em 0;
      margin-bottom: 20px;
      align-items: center;
      gap: 2em;
      p {
        width: auto;
        opacity: 0.7;
        color: var(--text_color);
        font-size: var(--size_1p0rem);
        flex: 1;
        margin-bottom: 0 !important;
      }
      h2 {
        flex: 1;
        font-family: var(--heading_family);
        font-weight: 400;
        text-align: right;

        span {
          font-family: var(--heading_family);
          text-transform: uppercase;
          font-size: var(--size_0p7rem);
          padding-right: 1em;
        }
      }
    }
    .gen_btn {
      display: block;
      position: relative;
      margin-left: var(--width_60);
      margin-top: 0.6em;
      padding: 0.4em 1em;
      font-weight: 400;
      text-align: center;
      color: var(--body_color);
      background-color: var(--text_color);
      width: var(--width_40);
      font-size: var(--size_1p0rem);
      border-width: 1px;
      &:hover {
        background-color: var(--body_color);
        color: var(--text_color);
      }
    }
  }
}

.featured_tours {
  width: var(--width_100);
  padding: 3em 5%;
  margin: auto;
  background-color: rgba(59, 77, 37, 0.1);

  .feature_buttons {
    width: var(--width_100);
    margin-bottom: 2em;
    column-gap: 2em;
    button {
      border: 0;
      font-weight: 600;
      font-size: var(--size_1p0rem);
      text-transform: uppercase;
      position: relative;
      color: var(--text_color);
      transition: all 0.35s ease;

      &::after {
        content: "";
        height: 2px;
        width: 0;
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
        transition: all 0.35s ease;
      }

      &:hover,
      &.current {
        color: var(--orange_color);
        &::after {
          background-color: var(--orange_color);
          width: var(--width_100);
        }
      }
    }
  }

  .featured_container {
    width: var(--width_100);
    overflow-x: hidden;

    .featured_col {
      position: relative;
      width: var(--width_100);

      &.featured_col_left {
        display: flex;
        flex-direction: column;
      }

      .section_head {
        .mixed {
          h2 {
            text-align: center;
          }
          .normal {
            font-size: var(--size_2p6rem);
          }
          .scripted {
            font-size: var(--size_3p0rem);
          }
        }
      }
      p {
        width: var(--width_100);
        text-align: justify;
        flex: 1;
        font-size: var(--size_1p0rem);
        margin-bottom: 1em;
      }
      .arrow_btns {
        position: absolute;
        bottom: 0;
        right: 0;
        gap: 15px;
        .arrow {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          border: 1px solid var(--text_color);

          position: relative;
          transition: all 0.3s ease;
          .image_layer {
            display: none;
          }
          img {
            display: none;
          }
          svg {
            width: 20px;
            height: 20px;
            path {
              fill: var(--text_color);
            }
          }
          &:hover {
            border: 1px solid var(--text_color);
            background-color: var(--text_color);
            svg {
              path {
                fill: var(--body_color);
              }
            }
          }
        }
      }

      .gen_btn {
        display: block;
        width: 60%;
        margin-left: 0;
        text-align: center;
        font-size: var(--size_1p0rem);
      }
      .tour_slider {
        .tour_slide {
          .tour_content {
            .gen_btn {
              width: 40%;
              margin-left: 60%;
            }
          }
        }
      }

      &.featured_col_right {
        .tour_slider {
          width: 100%;
          min-width: 100%;
          overflow-x: scroll;
          margin-bottom: 2em;
          grid-template-columns: repeat(3, 100%);
          gap: 2%;
          cursor: grab;
        }
      }
    }
    .featured_slider {
      width: calc(3 * var(--width_100));
      flex-wrap: nowrap;
    }
    .container_slider {
      width: calc(var(--width_100) / 3);
      min-width: calc(var(--width_100) / 3);
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      &.popular {
        z-index: 10;
      }
      &.gorilla {
        z-index: 6;
      }
      &.traveler {
        z-index: 3;
      }
    }
  }
}

.dest_nations {
  .section_head {
    margin-bottom: 2em;
    p {
      text-align: center;
      max-width: var(--width_85);
    }
  }
  .destinatin_controller {
    width: var(--width_100);
  }
  .dest_nation_btns {
    width: var(--width_100);
    margin: auto;
    margin-bottom: 2em;
    column-gap: 1em;
    flex-wrap: nowrap;

    button {
      border: 0;
      min-width: 10%;
      font-weight: 600;
      font-size: var(--size_0p95rem);
      text-transform: uppercase;
      position: relative;

      &::after {
        content: "";
        height: 2px;
        width: 0;
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
        transition: all 0.35s ease;
      }

      &:hover,
      &.current {
        color: var(--orange_color);
        &::after {
          width: var(--width_100);
          background-color: var(--orange_color);
        }
      }
    }
  }
  .destinations_container {
    width: var(--width_100);
    position: relative;
    min-height: 450px;

    .arrow_btns {
      width: var(--width_100);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);

      .arrow {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--text_color);

        position: relative;
        transition: all 0.3s ease;
        .image_layer {
          display: none;
        }
        img {
          display: none;
        }
        svg {
          width: 20px;
          height: 20px;
          path {
            fill: var(--text_color);
          }
        }
        &:hover {
          border: 1px solid var(--text_color);
          background-color: var(--text_color);
          svg {
            path {
              fill: var(--body_color);
            }
          }
        }
      }
    }

    .destinations_slider {
      width: var(--width_100);
      margin: auto;
      height: var(--width_100);
      margin-bottom: 8em;
      flex-wrap: nowrap;
      /* overflow: hidden; */

      .destination {
        width: var(--width_100);
        min-width: var(--width_100);
        min-height: 450px;
        border-radius: 8px;
        position: absolute;
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        .layer {
          border-radius: 8px;
        }
        .destination_preview {
          width: var(--width_90);
          background-color: var(--text_color);
          border: 1px solid var(--body_color);
          padding: 1em 2.5%;
          position: absolute;
          gap: 10%;
          flex-direction: column;
          bottom: -15%;
          left: 5%;
          z-index: 10;
          overflow: hidden;

          h2 {
            text-align: left;
            font-weight: 400;
            font-family: var(--script_family);
            color: var(--body_color);
            font-size: var(--size_3p0rem);
            margin-bottom: 0.1em;
          }
          p {
            color: var(--body_color);
            text-align: left;
            font-size: var(--size_1p0rem);
            margin-bottom: 2em;
          }
          .gen_btn {
            border-color: var(--body_color);
            color: var(--body_color);

            &:hover {
              background-color: var(--body_color);
              color: var(--text_color);
            }
          }
        }

        &.first {
          position: relative;
        }
        &.current {
          opacity: 1;
          pointer-events: initial;
        }
      }
    }
  }
}

.featured_hotels {
  width: var(--width_100);
  padding: 4em 5%;
  margin: 2em auto;
  position: relative;
  padding-bottom: 6em;
  background: rgba(59, 77, 37, 0.1);
  .section_head {
    margin-bottom: 2em;
    .mixed {
      justify-content: flex-start;
      flex-direction: column;
    }
  }

  .hotels_preview {
    width: 100%;
    min-width: 100%;
    overflow-x: scroll;
    margin-bottom: 2em;
    grid-template-columns: repeat(3, 100%);
    gap: 2%;
    cursor: grab;
    .tour_slide {
      position: relative;

      .tour_img {
        height: 240px;
        border: 0;
      }

      .tour_content {
        p.t_txt {
          margin-bottom: 1em;
        }

        .route {
          margin-bottom: 0.6em;

          &.route2 {
            display: none;
          }
        }
        .price {
          display: none;
        }
        .gen_btn {
          display: block;
          margin-right: 0;
          width: var(--width_40);
          padding: 0.4em 1em;
          text-align: center;

          &:hover {
            background-color: var(--body_color);
            color: var(--text_color);
          }
        }
      }
    }
  }

  .arrow_btns {
    position: absolute;
    bottom: 10%;
    right: 5%;
    gap: 15px;
    .arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--text_color);

      position: relative;
      transition: all 0.3s ease;
      .image_layer {
        display: none;
      }
      img {
        display: none;
      }
      svg {
        width: 20px;
        height: 20px;
        path {
          fill: var(--text_color);
        }
      }
      &:hover {
        border: 1px solid var(--text_color);
        background-color: var(--text_color);
        svg {
          path {
            fill: var(--body_color);
          }
        }
      }
    }
  }

  .gen_btn {
    display: block;
    width: 65%;
    text-align: center;
    font-size: var(--size_1p0rem);
  }

  &.hotels_at {
    position: relative;
    margin-top: 0;
    .arrow_btns {
      display: none;
      left: 10%;
      bottom: 5em;
      column-gap: 2em;
    }
    .hotels_preview {
      justify-content: start;
      flex-wrap: wrap;
      gap: 20px !important;
    }
  }

  &.hotels_at_tours {
    margin-bottom: 0 !important;
    .arrow_btns {
      display: none;
    }
  }
  &.hotels_at_destination {
    margin: 0 auto;
    .section_head {
      .mixed {
        justify-content: flex-start;
        flex-direction: row;
      }
    }
    .hotels_preview {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.2em;
      margin-bottom: 2em;
      .tour_slide {
        position: relative;
        .tour_content {
          justify-content: space-between;
        }
      }
    }
  }
}
.pagination {
  width: var(--width_100);
  gap: 10px;
  &.top {
    margin-bottom: 1em;
  }
  h3 {
    font-family: var(--heading_family);
    font-size: var(--size_1p2rem);
  }
  .pagination_buttons {
    gap: 10px;

    .arrow {
      background-color: transparent;
      border: 1px solid var(--text_color);
      padding: 4px 10px;
      border-radius: 4px;
      color: var(--text_color);
      transition: all 0.25s ease;
      &:hover {
        background-color: var(--text_color);
        color: var(--body_color);
      }
    }
  }
}
.cards_container {
  width: var(--width_100);
  position: relative;
  padding: 5%;
  padding-bottom: 3em;
  background: rgba(59, 77, 37, 0.1);

  .hotels_preview {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2em;
    margin-bottom: 2em;
    .tour_slide {
      position: relative;
      .tour_content {
        justify-content: space-between;
      }
    }
  }
}

.the_plan {
  margin: 4rem auto;
  margin-top: 6rem;
  .section_head {
    margin-bottom: 2em;
    .mixed {
      flex-direction: column;
      h2 {
        text-align: center;
      }
    }

    p {
      text-align: center;
      max-width: var(--width_85);
    }
  }
  .plan_container {
    width: var(--width_100);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2%;
    .plan_card {
      padding: 20px;
      border-radius: 8px;
      background: rgba(59, 77, 37, 0.1);

      h2,
      h3 {
        width: var(--width_100);
        text-align: center;
        font-weight: 400;
      }
      h3 {
        font-size: var(--size_2p6rem);
        font-family: var(--script_family);
      }
      h2 {
        font-size: var(--size_1p6rem);
        font-family: var(--heading_family);
        text-transform: uppercase;
        margin-bottom: 0.4em;
      }
      p {
        width: var(--width_100);
        font-weight: 400;
        text-align: center;
        font-size: var(--size_1p0rem);
      }
    }
  }
}

.reviews {
  width: var(--width_100);
  background: rgba(59, 77, 37, 0.1);
  padding: 4em 5%;
  margin-bottom: 0;

  .review_grid {
    width: var(--width_100);
    gap: 2%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    .grid_col {
      position: relative;
      .col_img {
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        .col_content {
          width: var(--width_100);
          height: var(--width_100);
          background-color: rgba(0, 31, 43, 0.4);
          position: relative;
          border-radius: 8px;
          .review_tit {
            width: var(--width_100);
            position: absolute;
            bottom: 2%;
            padding: 4%;
            .section_head {
              width: var(--width_100);
              margin-bottom: 1em;

              .mixed {
                flex-direction: column;
                h2 {
                  width: var(--width_100);
                  text-align: center;
                  color: var(--body_color);
                }
                .normal {
                  text-transform: uppercase;
                  font-size: var(--size_2p6rem);
                }
                .scripted {
                  font-size: var(--size_3p0rem);
                }
              }
              p {
                width: 100%;
                text-align: left;
                font-size: var(--size_1p2rem);
                margin-bottom: 0;
              }
            }
            .gen_btn {
              display: block;
              width: var(--width_70);
              margin: auto;
              border-color: var(--body_color);
              color: var(--body_color);
              text-align: center;
              font-size: var(--size_1p1rem);
              &:hover {
                background-color: var(--body_color);
                color: var(--text_color);
              }
            }
          }
        }
      }
      &.col_left {
        min-height: 320px;
        margin-bottom: 2em;
      }

      .review_slider {
        overflow-x: scroll;
        column-gap: 20px;
        .review_card {
          min-width: 100%;
          .stars {
            width: var(--width_100);
            margin-bottom: 0.6em;
            img {
              width: 100px;
              object-fit: cover;
              margin-bottom: 0.6em;
            }
          }

          h3 {
            width: var(--width_100);
            text-align: justify;
            font-weight: 400;
            font-size: var(--size_1p8rem);
            font-family: var(--heading_family);
            margin-bottom: 0.6em;
          }
          h4,
          h5 {
            text-transform: uppercase;
          }
          h4 {
            font-weight: 600;
            font-size: var(--size_1p0rem);
          }
          h5 {
            font-weight: 400;
            font-size: var(--size_1p0rem);
          }
        }
      }

      .review_btns {
        position: absolute;
        right: 0;
        bottom: 2%;
        column-gap: 1em;

        .arrow {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          border: 1px solid var(--text_color);
          position: relative;
          transition: all 0.3s ease;
          .image_layer {
            display: none;
          }
          img {
            display: none;
          }
          svg {
            width: 20px;
            height: 20px;
            path {
              fill: var(--text_color);
            }
          }
          &:hover {
            border: 1px solid var(--text_color);
            background-color: var(--text_color);
            svg {
              path {
                fill: var(--body_color);
              }
            }
          }
        }
      }
    }
  }
  .two_cols {
    .grid_col {
      position: relative;
      .col_img {
        .col_content {
          width: var(--width_100);
          height: var(--width_100);
          background-color: rgba(0, 31, 43, 0.4);
          position: relative;
          border-radius: 8px;
          .review_tit {
            width: var(--width_100);
            position: absolute;
            bottom: 2%;
            padding: 4%;
            .section_head {
              width: var(--width_100);
              margin-bottom: 1em;

              .mixed {
                flex-direction: column;
                h2 {
                  width: var(--width_100);
                  text-align: center;
                  color: var(--body_color);
                }
                .normal {
                  text-transform: uppercase;
                }
                .scripted {
                  font-size: var(--size_6p0rem);
                }
              }
              p {
                width: 100%;
                text-align: left;
                font-size: var(--size_1p2rem);
                margin-bottom: 0;
              }
            }
            .gen_btn {
              display: block;
              width: var(--width_50);
              margin: auto;
              border-color: var(--body_color);
              color: var(--body_color);
              text-align: center;
              &:hover {
                background-color: var(--body_color);
                color: var(--text_color);
              }
            }
          }
        }
      }

      .review_slider {
        .review_card {
          .stars {
            width: var(--width_100);
            margin-bottom: 1em;
            img {
              width: 150px;
              object-fit: cover;
              margin-bottom: 1em;
            }
          }

          h3 {
            width: var(--width_100);
            text-align: justify;
            font-weight: 400;
            font-size: var(--size_2p8rem);
            font-family: var(--heading_family);
            margin-bottom: 1em;
          }
          h4,
          h5 {
            text-transform: uppercase;
          }
          h4 {
            font-weight: 600;
            font-size: var(--size_1p2rem);
          }
          h5 {
            font-weight: 400;
            font-size: var(--size_1p0rem);
          }
        }
      }

      .review_btns {
        position: absolute;
        right: 0;
        bottom: 2%;
        column-gap: 1em;

        .arrow {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          border: 1px solid var(--text_color);
          position: relative;
          transition: all 0.3s ease;
          .image_layer {
            display: none;
          }
          img {
            display: none;
          }
          svg {
            width: 20px;
            height: 20px;
            path {
              fill: var(--text_color);
            }
          }
          &:hover {
            border: 1px solid var(--text_color);
            background-color: var(--text_color);
            svg {
              path {
                fill: var(--body_color);
              }
            }
          }
        }
      }
    }
  }
}

.news_letter {
  width: var(--width_100);
  gap: 3em;
  padding: 1em 5%;
  margin: 3em auto;
  flex-direction: column;

  h3 {
    font-weight: 400;
    font-family: var(--heading_family);
    font-size: var(--size_2p0rem);
    text-align: center;
  }
  .gen_btn {
    display: block;
    width: var(--width_70);
    text-align: center;
  }
}

.footer {
  width: var(--width_100);
  padding: 3em 5%;
  padding-top: 6em;
  background-color: var(--text_color);
  .footer_columns {
    width: var(--width_100);
    gap: 2em;
    padding-bottom: 3em;
    border-bottom: 1px solid var(--body_color);
    position: relative;
    flex-direction: column;
    .footer_column {
      width: 100%;
      &.col1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid var(--body_color);
        padding-bottom: 3em;
        h2 {
          text-align: center;
        }
      }
      .logo {
        width: var(--width_100);
        margin-bottom: 1em;
        img {
          width: 80px;
          margin: auto;
        }
      }
      h2 {
        display: block;
        width: var(--width_100);
        text-align: left;
        color: var(--body_color);
        font-weight: 600;
        font-size: var(--size_1p0rem);
        span {
          color: var(--body_color);
          font-weight: 300;
        }
      }
      .gen_btn {
        display: block;
        width: var(--width_70);
        text-align: center;
        position: relative;
        margin-top: 1em;
        margin-bottom: 2em;
        border-color: var(--body_color);
        color: var(--body_color);
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
        }
      }
      .socials {
        width: var(--width_100);
        column-gap: 0.6em;
        .social_link {
          width: 30px;
          height: 30px;
          border-radius: 50%;
          outline: none;
          border: 0;
          cursor: pointer;
        }
        svg {
          width: 26px;
          path {
            fill: var(--orange_color);
          }
        }
      }

      .big_link,
      .normal_link {
        display: block;
        width: var(--width_100);
        text-align: left;
        outline: none;
        border: 0;
        background-color: transparent;
        color: var(--body_color);
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1.6px;
        font-size: var(--size_1p0rem);
        transition: all 0.35s ease;
        &:hover {
          opacity: 0.65;
        }
      }
      .big_link {
        font-size: var(--size_2p0rem);
        font-family: var(--heading_family);
        font-weight: 400;
      }
      .normal_link {
        &:not(:last-child) {
          margin-bottom: 0.3em;
        }
      }
    }
    .policy_links {
      position: absolute;
      bottom: 2px;
      right: 0;
      gap: 1em;
      .normal_link {
        color: var(--body_color);
        font-weight: 400;
        font-size: var(--size_0p9rem);
        transition: all 0.35s ease;
        outline: none;
        cursor: pointer;
        border: 0;
        background-color: transparent;

        &:first-child {
          padding-right: 1em;
          border-right: 1px solid var(--body_color);
        }
        &:hover {
          opacity: 0.65;
        }
      }
    }
  }
  .footer_bottom {
    padding: 2em 0;
    width: var(--width_100);
    flex-direction: column;
    gap: 2em;
    .f_col {
      flex: 1;
      h4 {
        display: block;
        width: var(--width_100);
        font-weight: 500;
        text-transform: uppercase;
        color: var(--body_color);
        font-size: var(--size_1p0rem);
        margin-bottom: 1em;
      }
      img {
        width: 40px;
      }
      .agencies,
      .payments {
        gap: 2em;
      }
    }
    /* .payments{
        flex: 1;
      } */
  }
  .copy {
    display: block;
    width: var(--width_100);
    color: var(--body_color);
    text-align: center;
    font-size: var(--size_1p0rem);
    padding: 2em 0;
  }
}

.destinations {
  width: var(--width_100);
  .one_destination {
    width: var(--width_100);
    .destination_hero {
      width: var(--width_100);
      min-height: 50vh;
      position: relative;
      overflow: hidden;
      
      
      .hero_image {
        width: var(--width_100);
        position: absolute;
        top: 0;left: 0;
        min-height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        animation: zoomed 10s linear infinite both;
        transition: all 0.5s ease-in-out;
      }
      .layer {
        background: rgba(0, 31, 43, 0.45);
      }
      .home_nav {
        width: var(--width_100);
        margin-bottom: 1em;
      }

      .hero_area {
        width: var(--width_100);
        padding-bottom: 4em;
        z-index: 7;
        position: absolute;
        left: 0%;
        bottom: -5%;

        .hero_left {
          width: var(--width_100);
          h1,
          h2 {
            width: 100%;
            text-align: center;
            font-weight: 400;
          }
          h1 {
            text-transform: none;
            font-family: var(--heading_family);
            font-size: var(--size_2p6rem);
            margin-bottom: 0.2em;
            color: var(--orange_color);
          }
          h2 {
            text-transform: none;
            font-family: var(--script_family);
            font-size: var(--size_2p4rem);
            margin-bottom: 0.5em;
            color: var(--body_color);
          }

          .call_btns {
            flex-direction: column;
            .gen_btn {
              position: relative;
              margin-bottom: 0.8em;
              text-align: center;
              color: var(--body_color);
              border-color: var(--body_color);
              font-size: var(--size_1p0rem);
              font-weight: 400;
              &:hover {
                background-color: var(--body_color);
                color: var(--text_color);
              }
              &:first-child {
                border: none;
              }
            }
          }
        }
      }
    }

    .destination_info {
      width: var(--width_90);
      margin: 3em auto;
      .detail {
        width: var(--width_100);
        margin-bottom: 1.8em;
        .sub_detail {
          margin-bottom: 1.4em;
          h2 {
            margin-bottom: 1em;
          }

          .sub_detail_image {
            width: var(--width_100);
            min-height: 300px;
            border-radius: 8px;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            margin-bottom: 0.8em;
          }
        }
        h1 {
          width: var(--width_100);
          font-weight: 400;
          font-size: var(--size_1p8rem);
          font-family: var(--heading_family);
        }
        h2 {
          font-size: var(--size_1p0rem);
          text-transform: uppercase;
          margin-top: 10px;
          font-weight: 500;
        }
        p {
          width: var(--width_100);
          text-align: justify;
          font-size: var(--size_1p0rem);
          font-weight: 400;
        }
      }
    }
  }
}
.tour_below {
  width: var(--width_100);
  .section_head {
    margin: 3em auto;
    .mixed {
      flex-direction: column;
      h2 {
        text-align: center;
      }
    }
    p {
      text-align: center;
      max-width: var(--width_90);
      font-size: var(--size_1p2rem);
    }
  }
}

.why_section {
  width: var(--width_100);
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  .reasons {
    position: relative;
    width: 100%;
    margin: auto;
    flex-direction: column;
    /* position: absolute;
      right: 10%;
      height: 800px; */

    background-color: var(--text_color);
    border-radius: 8px;
    padding: 1em;

    .section_head {
      margin-bottom: 2em;
      position: relative;

      .mixed {
        .normal {
          font-size: var(--size_2p6rem);
          color: var(--body_color);
        }
        .scripted {
          font-size: var(--size_3p2rem);
          color: var(--body_color);
        }
      }

      p {
        width: 100%;
        text-align: justify;
        color: var(--body_color);
        margin: 0;
        padding: 0;
      }
    }
    .why_list {
      width: var(--width_100);
      margin-bottom: 2em;
      padding-left: 1em;
      .why_item {
        width: var(--width_100);
        list-style: none;
        margin-bottom: 0.8em;
        h2 {
          width: var(--width_100);
          text-align: left;
          font-weight: 400;
          font-size: var(--size_1p0rem);
          color: var(--body_color);
          position: relative;
          line-height: 1.2;
          &::before {
            content: "";
            position: absolute;
            left: -1em;
            top: 4px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--text_color);
          }
          span {
            font-weight: 300;
            font-size: var(--size_1p0rem);
            margin-left: 0.1em;
            text-align: justify;
            color: var(--body_color);
          }
        }
      }
    }
    .gen_btn {
      font-size: var(--size_1p0rem);
    }
    .reasons_left {
      .gen_btn {
        display: block;
        width: var(--width_40);
        margin-left: 0;
      }
    }
  }

  &.tour_detail_why {
    padding: 5%;
    .reasons {
      gap: 25px;
      .reasons_left {
        width: var(--width_100);
        .arrow_btns {
          display: none;
        }
        .gen_btn {
          display: block;
          margin-right: 0;
          width: 60%;
          font-weight: 400;
          padding: 8px;
          color: var(--body_color);
          border: 1px solid var(--body_color);
          &:hover {
            color: var(--text_color);
            background-color: var(--body_color);
          }
        }
      }
      .reasons_right {
        width: var(--width_100);
        .sliding_cards {
          width: 100%;
          .card_slider {
            cursor: grabbing;
            overflow-x: scroll;
            width: 100%;
            gap: 2.5%;
            grid-template-columns: repeat(3, minmax(100%, 1fr));

            .tour_slide {
              border: 1px solid var(--body_color);
              background-color: var(--body_color);

              .tour_img {
                border-bottom: 0.6px solid var(--body_color);
              }
            }
          }
        }
      }
    }
  }

  &.destination_why {
    padding: 5%;
    .reasons {
      display: block;
      width: var(--width_100);
      .intro {
        p {
          text-align: justify;
          color: var(--body_color);
          font-weight: 300;
        }
      }
      .gen_btn {
        display: block;
        width: var(--width_40);
        margin-left: 0;
        border: 1px solid var(--body_color);
        color: var(--body_color);
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
        }
      }
    }
  }
}

.safari_why {
  width: var(--width_100);
  padding: 4em 5%;
  background-color: rgba(59, 77, 37, 0.1);

  .reasons {
    width: var(--width_100);
    margin: 0;
    padding: 0;
    background-color: transparent;
    flex-direction: column;
    gap: 2em;
    .section_head {
      .mixed {
        .normal {
          color: var(--text_color);
        }
        .scripted {
          color: var(--text_color);
        }
      }

      p {
        color: var(--text_color);
      }
    }

    .reasons_left {
      .arrow_btns {
        display: none;
      }
    }
    .reasons_right {
      width: var(--width_100);
      .sliding_cards {
        width: 100%;
        .card_slider {
          cursor: grabbing;
          overflow-x: scroll;
          width: 100%;
          gap: 2.5%;
          grid-template-columns: repeat(4, minmax(100%, 1fr));
        }
      }
    }
  }
}
.tour_itenary_container {
  width: var(--width_100);
  padding: 4em 5%;
  position: relative;
  z-index: 4;

  .tour_itenary_details {
    width: var(--width_100);
    position: relative;
    .it_btn_toggle {
      position: absolute;
      right: 0;
      top: 0.75%;
      z-index: 15;
      width: 33px;
      height: 33px;
      outline: 0;
      cursor: pointer;
      background-color: var(--text_color);
      border: 0;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      img {
        width: 22px;
        height: 22px;
        object-fit: cover;
      }
    }
    .col_left {
      width: var(--width_90);
      border-radius: 8px;
      border: 1px solid var(--text_color);
      background-color: var(--body_color);
      position: absolute;
      left: 0;
      top: 5%;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
      transition: all 0.35s ease;
      overflow: hidden;
      &.visible{
        top: 0;
            opacity: 1;
      pointer-events: initial;
      }
      h2 {
        width: var(--width_100);
        text-align: left;
        font-size: var(--size_1p4rem);
        text-transform: uppercase;
        font-weight: 400;
        color: var(--orange_color);
        font-family: var(--heading_family);
        margin-left: 1em;
        margin-top: 2em;
      }

      .gen_btn {
        display: block;
        position: relative;
        width: var(--width_90);
        text-align: center;
        background-color: var(--text_color);
        color: var(--body_color);
        font-size: var(--size_1p0rem);
        margin: 1em auto;
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
        }
      }

      .itenary_btn {
        width: var(--width_100);
        background-color: var(--body_color);
        border: 0;
        padding: 0.4em 1em;
        color: var(--text_color);
        text-transform: uppercase;
        font-weight: 400;
        text-align: left;
        font-family: var(--heading_family);
        font-size: var(--size_1p8rem);
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.35s ease;
        &:first-child {
          border-top-right-radius: 6px;
          border-top-left-radius: 6px;
          border-top: 1px solid var(--text_color);
        }
        &:hover,
        &.current {
          background-color: var(--text_color);
          color: var(--body_color);
        }
      }
    }
    .col_right {
      width: var(--width_100);
      overflow-x: hidden;
      max-height: 650px;
      overflow-y: scroll;
      position: relative;
      z-index: 4;

      .cards_slider {
        flex-wrap: nowrap;
        width: calc(6 * 100%);
      }
      .hotel_slider {
        flex-wrap: nowrap;
        width: calc(3 * 100%);
        .safari_card {
          min-width: calc(100% / 3);
        }
      }

      .safari_card {
        min-width: calc(100% / 6);
        /* min-height: var(--width_100); */
        position: relative;
        .card_content {
          width: var(--width_100);

          h2 {
            width: var(--width_100);
            text-align: left;
            font-size: var(--size_2p2rem);
            font-family: var(--heading_family);
            margin-bottom: 0.5em;
            font-weight: 400;
            background-color: var(--body_color);
            position: sticky;
            z-index: 10;
            top: 0;
            left: 0;
          }
          p {
            width: 100%;
            text-align: justify;
            font-size: var(--size_1p0rem);
            margin-bottom: 1em;
            font-weight: 400;
          }
          &.highlights {
            h3 {
              text-transform: uppercase;
              margin-bottom: 0.5em;
              font-weight: 600;
            }
            p {
              margin-bottom: 0.5em;
              position: relative;
              font-size: var(--size_1p0rem);
              span {
                width: 8px;
                height: 8px;
                display: inline-block;
                background-color: var(--text_color);
                position: relative;
                margin-right: 8px;
                border-radius: 50%;
              }
            }
          }

          .it_day {
            width: var(--width_100);
            margin-bottom: 0.5em;
            position: relative;
            z-index: 4;
            .day_btn {
              display: block;
              width: var(--width_100);
              color: var(--text_color);
              font-family: var(--heading_family);
              border: 1px solid var(--body_color);
              border-bottom: 2px solid var(--text_color);
              text-align: left;
              position: relative;
              font-size: var(--size_1p5rem);
              padding: 0.3em 0.5em;
              margin-bottom: 0.5em;

              &.open,
              &:hover {
                background-color: var(--text_color);
                color: var(--body_color);
                border: 1px solid var(--text_color);
                span {
                  svg {
                    path {
                      fill: var(--body_color);
                    }
                  }
                }
              }

              span {
                width: 30px;
                height: 30px;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                transition: all 0.35s ease;
                svg {
                  width: 26px;
                  height: 26px;
                  path {
                    fill: var(--text_color);
                  }
                }
                &.rotate {
                  right: 5px;
                  transform: translateY(-50%) rotate(180deg);
                }
              }
            }
            .day_content {
              width: var(--width_100);
              transition: all 0.35s ease-in-out;
              max-height: 0;
              overflow-y: hidden;
              will-change: max-height;

              .day_image {
                width: var(--width_100);
                height: 280px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                border-radius: 4px;
                margin-bottom: 1em;
              }

              .day_desc {
                width: var(--width_100);
                margin-bottom: 1em;
                p {
                  margin-bottom: 0.5em;
                }
              }
              .day_extras {
                width: var(--width_100);
                border-radius: 8px;
                padding: 2em;
                background-color: rgba(59, 77, 37, 0.1);

                .day_extra {
                  width: var(--width_100);
                  margin-bottom: 1em;
                  h3 {
                    width: var(--width_100);
                    color: var(--text_color);
                    font-weight: 500;
                    font-size: var(--size_1p0rem);
                    text-transform: uppercase;
                    margin-bottom: 0.5em;

                    img {
                      width: 22px;
                      margin-right: 1em;
                    }
                  }
                  h4 {
                    text-align: left;
                    width: var(--width_100);
                    font-weight: 400;
                    font-size: var(--size_1p0rem);
                    margin-bottom: 0.3em;
                    display: flex;
                    align-items: center;

                    span {
                      display: block;
                      position: relative;
                      width: 7px;
                      height: 7px;
                      font-size: 2px;
                      border-radius: 50%;
                      background-color: var(--text_color);
                      margin-right: 3em;
                    }
                  }
                }
              }
            }
          }
        }

        .photo_gallery {
          min-width: 100%;
          &.card_gallery {
            h2 {
              font-family: var(--heading_family);
            }
          }
          h2 {
            width: var(--width_100);
            text-align: left;
            font-size: var(--size_3p0rem);
            margin-bottom: 0.5em;
            font-weight: 400;
          }
        }
      }
    }

    &.hotel_details {
      .col_right {
        max-height: 350px;
      }
    }
  }
}

.destination_highlights {
  width: var(--width_100);
  margin: 3em auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
  .section_head {
    margin-bottom: 2em;
    .mixed {
      .normal {
        font-size: var(--size_2p6rem);
      }
      .scripted {
        font-size: var(--size_3p2rem);
      }
    }
  }
}

.main_image_slider {
  width: var(--width_100);
  .image_slider {
    width: var(--width_100);
    min-height: 28em;
    position: relative;

    .slider_btns {
      width: var(--width_100);
      position: absolute;
      z-index: 15;
      left: 50%;
      top: 50%;
      padding: 1em 3em;
      transform: translate(-50%, -50%);
      justify-content: space-between;

      .arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--body_color);

        position: relative;
        transition: all 0.3s ease;
        .image_layer {
          display: none;
        }
        img {
          display: none;
        }
        svg {
          width: 20px;
          height: 20px;
          path {
            fill: var(--body_color);
          }
        }
        &:hover {
          border: 1px solid var(--body_color);
          background-color: var(--body_color);
          svg {
            path {
              fill: var(--text_color);
            }
          }
        }
      }
    }

    .main_image {
      width: var(--width_100);
      min-height: 28em;
      position: relative;
      border-radius: 8px;
      z-index: 10;
      cursor: pointer;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      .layer {
        background-color: rgba(0, 31, 43, 0.1);
      }
      h2 {
        width: var(--width_100);
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        padding: 0.4em;
        font-family: var(--heading_family);
        background: var(--text_color);
        font-weight: 400;
        text-transform: uppercase;
        font-size: var(--size_1p6rem);

        color: var(--body_color);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
      }
    }
    .image_big {
      width: 100vw;
      height: 100vh;
      position: fixed;
      opacity: 0;
      pointer-events: none;
      transition: all 0.45s ease;
      top: 0;
      left: 0;
      z-index: 100;
      & > .layer {
        background-color: rgba(0, 31, 43, 0.8);
        border-radius: 0;
      }
      .main_image {
        background-color: #ececec;
        width: var(--width_80);
        height: var(--width_80);
        h2 {
          background: transparent;
          color: var(--text_color);
        }
      }
      &.visible {
        opacity: 1;
        pointer-events: initial;
      }
      .close_btn {
        position: absolute;
        right: 50px;
        top: 30px;
        width: 26px;
        height: 26px;
        display: flex;
        z-index: 10;
        border: 0;
        outline: none;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        svg {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}

.filter_row {
  width: var(--width_100);
  padding: 1em auto;
  margin-bottom: 1.5em;

  .filter {
    width: var(--width_100);
    h2 {
      text-align: left;
      text-transform: uppercase;
      font-size: var(--size_1p2rem);
      font-weight: 500;
      margin-bottom: 1em;
    }
    .select_filters {
      gap: 15px;
      .select_element {
        gap: 10px;
      }
    }
    .custom_select {
      width: var(--width_100);
      position: relative;
      .selected {
        width: var(--width_100);
        border-radius: 6px;
        position: relative;
        border: 1px solid var(--text_color_light);
        input {
          width: 100%;
          padding: 0.5em;
          text-align: left;
          font-size: var(--size_1p0rem);
          color: var(--text_color);
          font-weight: 500;
          border: 0;
          cursor: pointer;
          outline: none;
          background: transparent;
          &::placeholder {
            color: #20272f;
            opacity: 0.6;
            font-weight: 300;
            font-size: var(--size_0p95rem);
          }
        }
      }
      .select_options {
        width: var(--width_100);
        position: absolute;
        background-color: var(--body_color);
        top: 130%;
        left: 0;
        z-index: 5;
        transition: all 0.4s ease;
        opacity: 0;
        pointer-events: none;
        border: 0.5px solid rgba(0, 31, 43, 0.4);
        border-radius: 8px;
        &.visible {
          top: 110%;
          opacity: 1;
          pointer-events: initial;
        }

        .option_btn {
          display: block;
          width: 100%;
          border: 0;
          outline: none;
          color: var(--text_color);
          font-size: var(--size_1p0rem);
          cursor: pointer;
          text-align: left;
          background: transparent;
          padding: 0.2em 0.8em;
          margin-bottom: 0.4em;
          transition: all 0.35s ease;
          &:hover {
            background-color: var(--text_color);
            color: var(--body_color);
          }
        }
      }
    }
  }
}
.close_btn {
  position: absolute;
  right: 50px;
  top: 30px;
  width: 26px;
  height: 26px;
  display: flex;
  z-index: 10;
  border: 0;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  .image_layer {
    display: none;
  }
  svg {
    width: 100%;
    height: 100%;
    path {
      fill: var(--body_color);
    }
  }
}
.tour_preview {
  width: var(--width_100);

  flex-direction: column;
  .preview_col {
    width: var(--width_100);
    min-height: 100%;

    .container {
      width: 100%;
      min-height: 24em;
      overflow-x: hidden;
      position: relative;
      &::after {
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 31, 43, 0.25);
        z-index: 1;
      }
      .slider_container {
        min-width: 100%;
        min-height: 24em;
        overflow: hidden;
      }
      .slider {
        min-width: 100%;
        min-height: 24em;
        flex-direction: row;
        flex-wrap: nowrap;
        transform: translateX(0);
        transition: all 0.35s ease-in-out;
        .image {
          min-height: 24em;
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          transition: all 0.35s ease-in-out;
          transform: translateY(0);
          &.current {
            animation: zoomed 8s linear infinite both;
          }
        }
      }
      .arrow_btns {
        position: absolute;
        width: var(--width_100);
        padding: 0 2em;
        left: 0;
        z-index: 5;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: row;
        justify-content: space-between;
        .arrow {
          width: 34px;
          height: 34px;
          border-radius: 50%;
          border: 1px solid var(--body_color);

          position: relative;
          transition: all 0.3s ease;
          .image_layer {
            display: none;
          }
          img {
            display: none;
          }
          svg {
            width: 16px;
            height: 16px;
            path {
              fill: var(--body_color);
            }
          }
          &:hover {
            border: 1px solid var(--text_color);
            background-color: var(--text_color);
            svg {
              path {
                fill: var(--body_color);
              }
            }
          }
        }
      }

      .vidz_button {
        position: absolute;
        bottom: 2em;
        left: 1%;
        p {
          color: var(--body_color);
        }
      }
    }
  }
  .preview_right {
    padding: 1em 5%;
    h4 {
      display: block;
      width: 100%;
      text-align: left;
      text-transform: uppercase;
      font-size: var(--size_1p0rem);
    }
    h1 {
      display: block;
      width: 100%;
      text-align: left;
      font-weight: 400;
      font-family: var(--heading_family);
      font-size: var(--size_2p0rem);
    }
    h3 {
      width: 100%;
      text-align: left;
      text-transform: uppercase;
      font-weight: 500;
      font-size: var(--size_1p0rem);
      margin-bottom: 0.5em;

      img {
        width: 20px;
        object-fit: cover;
        margin-right: 0.6em;
      }
      span {
        text-transform: uppercase;
        font-weight: 400;
        font-size: var(--size_1p0rem);
      }
    }
    h2 {
      display: block;
      width: 100%;
      margin-top: 1em;
      text-align: left;
      font-weight: 400;
      text-transform: uppercase;
      font-family: var(--heading_family);
      font-size: var(--size_1p4rem);
      margin-bottom: 2em;
    }
    .link_btns {
      column-gap: 2em;
      .gen_btn {
        background-color: var(--text_color);
        color: var(--body_color);
        &:hover {
          background-color: transparent;
          color: var(--text_color);
        }
        &.btn_bdnbgless {
          background: transparent;
          color: var(--text_color);
          border: 0;
          &:hover {
            background-color: transparent;
            color: var(--text_color);
            border: 0;
          }
        }
      }
    }
  }
}
.captcha {
  .captcha_img {
    width: 180px;
    user-select: none;
    position: relative;
    height: 50px;
    margin-right: 1em;
    .captcha_bg {
      position: absolute;
      width: var(--width_100);
      height: var(--width_100);
      left: 0;
      top: 0;
      background-position: center;
      background-size: cover;
      padding: 1rem;
      background-repeat: no-repeat;
      user-select: none;
      z-index: 5;
    }
    .captcha_code {
      outline: none;
      border: 0 !important;
      background: transparent;
      width: var(--width_100);
      text-align: center;
      letter-spacing: 4px;
      text-decoration: line-through;
      font-style: italic;
      font-size: var(--size_1p6rem) !important;
      font-family: var(--distorted);
      position: relative;
      z-index: 1;
      font-weight: 400;
      transform: skewX(42deg);
    }
  }
  .refresh_btn {
    background: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    &:active {
      svg {
        transform: scale(0.85) rotate(180deg);
      }
    }
    svg {
      width: 26px;
      height: 26px;
      transition: all 0.15s ease;
      path {
        fill: var(--text_color);
      }
    }
  }
}
.custom_select_input {
  width: var(--width_100);
  position: relative;
  .selected {
    width: var(--width_100);
    border-radius: 6px;
    position: relative;
    border: 1px solid var(--text_color);
    input {
      width: 100%;
      padding: 0.3em 0.5em;
      text-align: left;
      font-size: var(--size_1p0rem);
      color: var(--text_color);
      font-weight: 400;
      border: 0;
      cursor: pointer;
      outline: none;
      background: transparent;
    }
  }
  .select_options {
    width: var(--width_100);
    position: absolute;
    background-color: var(--body_color);
    top: 130%;
    left: 0;
    z-index: 5;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
    border: 0.5px solid rgba(0, 31, 43, 0.4);
    border-radius: 6px;
    &.visible {
      top: 110%;
      opacity: 1;
      pointer-events: initial;
    }

    .option_btn {
      display: block;
      width: 100%;
      position: relative;
      z-index: 5;
      border: 0;
      outline: none;
      color: var(--text_color);
      font-size: var(--size_1p0rem);
      cursor: pointer;
      text-align: left;
      background: transparent;
      padding: 0.2em 0.8em;
      margin-bottom: 0.4em;
      transition: all 0.35s ease;
      &:hover {
        background-color: var(--text_color);
        color: var(--body_color);
      }
    }

    &.horizontal {
      flex-wrap: wrap;
      padding: 0.8em;
      .option_btn {
        width: 32%;
        display: inline;
        text-align: center;
        border-radius: 6px;
        text-align: left;
      }
    }
    &.scrollable {
      max-height: 150px;
      overflow-y: scroll;
    }
  }
}
.hidden_palette {
  width: var(--width_100);
  height: 100vh;
  position: fixed;
  background-color: var(--body_color);
  left: 50%;
  transform: translateX(-50%);
  top: -5%;
  z-index: 50;
  padding-top: 30%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;

  &.visible {
    pointer-events: initial;
    opacity: 1;
    top: 0;
  }

  .counted {
    width: 90%;
    margin: auto;
    margin-top: 2em;
    font-weight: 400;
    font-size: var(--size_1p0rem);
    opacity: 0;
    text-align: center;
    pointer-events: none;
    transition: all 0.25s ease;
    span {
      width: var(--width_100);
      font-weight: 500;
      text-align: center;
    }
    &.dest_counted {
      position: absolute;
      top: 12%;
      left: -10%;
    }
    &.visible {
      opacity: 1;
      pointer-events: initial;
    }
  }

  .close_btn {
    right: 5%;
    top: 13%;
    cursor: pointer;
    svg {
      path {
        fill: var(--text_color);
      }
    }
  }
  &:hover {
    .close_btn {
      opacity: 1;
      pointer-events: initial;
    }
  }

  .upload_manager {
    width: var(--width_90);
    padding: 1em;
    margin: auto;
    border: 1px solid rgba(0, 31, 43, 0.4);
    border-radius: 6px;
    &.manage_booking {
      width: var(--width_50);
      padding-top: 2.5em;

      .progress_btn {
        display: block;
        width: 60%;
      }
    }

    .upload_form {
      margin-bottom: 1em;
      flex-direction: column;
      width: var(--width_100);
      .input_line {
        width: var(--width_100);

        .input_group {
          position: relative;
          width: var(--width_100);
          margin-bottom: 1em;

          .input_label {
            display: block;
            width: var(--width_100);
            text-align: left;
            color: var(--text_color);
            margin-bottom: 0.4em;
            font-size: var(--size_1p0rem);
          }
          input,
          textarea {
            width: var(--width_100);
            border: 1px solid var(--text_color);
            font-size: var(--size_1p0rem);
            padding: 8px 10px;
            border-radius: 5px;
            outline: none;
            background-color: transparent;
            &::placeholder {
              color: #20272f;
              opacity: 0.5;
              font-weight: 300;
              font-size: var(--size_0p9rem);
            }
          }

          &.upload {
            position: relative;
            input {
              background: var(--text_color);
              position: relative;
              cursor: pointer;
              &::after {
                border: 1px solid var(--text_color);
                pointer-events: none;
                content: "Select Image";
                position: absolute;
                left: 0;
                width: var(--width_100);
                height: var(--width_100);
                background-color: var(--text_color);
                color: var(--body_color);
                text-align: center;
                font-size: var(--size_1p0rem);
              }
            }
          }
          &.place_holder {
            opacity: 0;
            pointer-events: none;
          }
        }
      }
      .progress_buttons {
        width: var(--width_100);
        .progress_btn {
          padding: 5px 0.6em;
        }
      }
    }
    .progress_buttons.larger {
      .progress_btn {
        display: block;
        width: 60%;
        text-align: center;
        margin-left: 40%;
      }
    }

    .uploads {
      width: var(--width_100);
      h3 {
        width: var(--width_100);
        text-transform: uppercase;
        font-family: var(--heading_family);
        margin-bottom: 0.3em;
        font-size: var(--size_1p5rem);
      }
      p {
        margin-bottom: 0.6em;
        width: var(--width_100);
        padding-bottom: 0.6em;
        border-bottom: 1px solid rgba(32, 39, 47, 0.65);
      }
      .note {
        font-size: var(--size_0p9rem);
        margin-bottom: 1em;
        color: var(--fail_color);
        b {
          font-weight: 600;
        }
      }
    }
  }
}

.main_form {
  width: var(--width_100);
  position: relative;
  .input_line {
    position: relative;
    width: var(--width_100);
    h3 {
      display: block;
      width: var(--width_100);
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 0.5em;
    }
    .input_group {
      position: relative;
      width: var(--width_100);
      margin-bottom: 1em;

      .input_label {
        display: block;
        width: var(--width_100);
        text-align: left;
        color: var(--text_color);
        margin-bottom: 0.4em;
        font-size: var(--size_1p0rem);
      }
      input,
      .text_area {
        width: var(--width_100);
        border: 1px solid var(--text_color);
        font-size: var(--size_1p0rem);
        padding: 8px 10px;
        border-radius: 5px;
        outline: none;
        background-color: transparent;
        &::placeholder {
          color: #20272f;
          opacity: 0.5;
          font-weight: 300;
          font-size: var(--size_0p9rem);
        }
      }
      .text_area {
        &.input {
          min-height: 30px;
        }
      }
      &.upload {
        position: relative;
        input {
          background: var(--text_color);
          position: relative;
          cursor: pointer;
          &::after {
            border: 1px solid var(--text_color);
            pointer-events: none;
            content: "Select Image";
            position: absolute;
            left: 0;
            width: var(--width_100);
            height: var(--width_100);
            background-color: var(--text_color);
            color: var(--body_color);
            text-align: center;
            font-size: var(--size_1p0rem);
          }
          &.multiple {
            &::after {
              border: 1px solid var(--text_color);
              pointer-events: none;
              content: "Select Images";
              position: absolute;
              left: 0;
              width: var(--width_100);
              height: var(--width_100);
              background-color: var(--text_color);
              color: var(--body_color);
              text-align: center;
              font-size: var(--size_1p0rem);
            }
          }
        }
      }
      &.place_holder {
        opacity: 0;
        pointer-events: none;
      }
      .manage_btn {
        width: var(--width_100);
        border: 1px solid var(--text_color);
        font-size: var(--size_1p0rem);
        padding: 6px 10px;
        border-radius: 6px;
        outline: none;
        background-color: var(--text_color);
        position: relative;
        cursor: pointer;
        color: var(--body_color);
        text-align: center;
      }
    }
  }

  .note {
    width: var(--width_100);
    text-align: left;
    font-style: italic;
    span {
      font-weight: 600;
    }
  }
}

.preview_image_container {
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  background-color: rgba(0, 31, 43, 0.6);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  .display_img {
    width: var(--width_90);
    min-height: 400px;
    border-radius: 8px;
    background-color: rgba(0, 31, 43, 1);
    .preview_image {
      width: var(--width_100);
      margin: auto;
      height: 340px;
      overflow: hidden;
      user-select: none;
      padding: 1em;
      position: relative;
      z-index: 10;
      img {
        position: relative;
        z-index: 2;
        width: var(--width_100);
        height: var(--width_100);
        object-fit: cover;
        border-radius: 6px;
        user-select: none;
      }
    }
    .decision_btns {
      width: var(--width_100);
      border: 6px solid rgba(0, 31, 43, 1);
      border-top: 0;
      height: 60px;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
      padding: 8px 1em;
      background-color: var(--body_color);
      position: relative;
      z-index: 10;
      .progress_btn {
        outline: none;
        border: 0;
        cursor: pointer;
        border-radius: 8px;
        font-size: var(--size_1p1rem);
        padding: 4px 2em;
        transition: all 0.25s ease;
        &.back_btn {
          background-color: rgba(59, 77, 37, 0.1);
          color: var(--text_color);
          border: 0.5px solid rgba(59, 77, 37, 0.1);
        }

        &.next_btn {
          background-color: var(--text_color);
          color: var(--body_color);
          border: 0.5px solid var(--text_color);
        }
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
          border: 0.5px solid rgba(0, 31, 43, 0.4);
        }
      }
    }
    &.visible {
      opacity: 1;
      pointer-events: initial;
      top: 50%;
    }
  }

  .display_images {
    width: 1500px;
    height: 800px;
    border-radius: 8px;
    background-color: rgba(0, 31, 43, 1);

    .preview_images {
      width: var(--width_100);
      margin: auto;
      height: 740px;
      overflow-y: scroll;

      user-select: none;
      padding: 1em;
      position: relative;
      z-index: 2;
      gap: 20px;
      img {
        position: relative;
        z-index: 2;
        width: 480px;
        height: 300px;
        object-fit: cover;
        border-radius: 6px;
        user-select: none;
      }
    }
    .decision_btns {
      position: relative;
      z-index: 10;
      width: var(--width_100);
      border: 6px solid rgba(0, 31, 43, 1);
      border-top: 0;
      height: 60px;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
      padding: 8px 1em;
      background-color: var(--body_color);
      .progress_btn {
        outline: none;
        border: 0;
        cursor: pointer;
        border-radius: 8px;
        font-size: var(--size_1p1rem);
        padding: 4px 2em;
        transition: all 0.25s ease;
        &.back_btn {
          background-color: rgba(59, 77, 37, 0.1);
          color: var(--text_color);
          border: 0.5px solid rgba(59, 77, 37, 0.1);
        }

        &.next_btn {
          background-color: var(--text_color);
          color: var(--body_color);
          border: 0.5px solid var(--text_color);
        }
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
          border: 0.5px solid rgba(0, 31, 43, 0.4);
        }
      }
    }
  }
  &.visible {
    opacity: 1;
    pointer-events: initial;
    top: 0;
  }
}

.err_box {
  position: fixed;
  max-width: 400px;
  min-width: 300px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 3000;
  transition: all 0.35s ease;
  opacity: 0;
  pointer-events: none;
  background-color: var(--body_color);
  padding: 0.4em;
  border-radius: 6px;
  &.err_failure {
    border-top: 4px solid var(--fail_color);
    .err_message {
      color: var(--fail_color);
    }
    .error_btn {
      width: 20px;
      height: 20px;
    }
  }
  &.err_success {
    border-top: 4px solid var(--success_color);
    .err_message {
      color: var(--success_color);
    }
    .error_btn {
      width: 22px;
      height: 22px;
    }
  }
  .err_message {
    font-weight: 500;
    font-style: italic;
    color: var(--text_color);
    font-size: var(--size_1p0rem);
    text-align: left;
  }
  .error_btn {
    border-radius: 50%;
    display: block;
    margin-right: 0.4em;
    border: 0;
    background-color: transparent;
    cursor: pointer;

    svg {
      width: 100%;
      height: 100%;
    }
  }
  &.visible {
    opacity: 1;
    pointer-events: initial;
  }
}
.bookings {
  position: relative;
  overflow-y: scroll;
  height: 100vh;

  .booking_header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: var(--width_100);

    padding: 1em 5%;
    background-color: rgba(59, 77, 37, 0.1);
    background-color: #ececec;
    &::after {
      content: "";
      width: var(--width_100);
      height: var(--width_100);
      background-color: rgba(59, 77, 37, 0.1);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    .menu_btn {
      position: relative;
      z-index: 10;
      display: block;
      img {
        width: 32px;
        object-fit: cover;
      }
    }

    .auth_menu {
      width: var(--width_60);
      position: fixed;
      top: 5em;
      right: 5%;
      height: 92vh;
      opacity: 0;
      pointer-events: none;
      border-left: 4px solid var(--text_color);

      /* border-bottom: 1px solid var(--text_color); */
      flex-direction: column;
      background-color: var(--body_color);
      transition: all 0.35s ease;
      &.visible {
        right: 0;
        pointer-events: initial;
        opacity: 1;
      }
      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -2%;
        width: 102%;
        height: 8px;
        background-color: var(--body_color);
      }

      .links {
        margin-top: 3em;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        width: var(--width_100);
        margin-bottom: 1em;
        .nav_item {
          width: var(--width_100);
          padding: 0 1em;
          .nav_link {
            width: var(--width_100);
            padding: 4px 1em;
            background-color: transparent;
            color: var(--text_color);
            text-align: left;
            border: 0;
            font-size: var(--size_1p4rem);
            text-transform: uppercase;
            transition: all 0.35s ease;
            font-family: var(--heading_family);
            &:hover {
              color: var(--orange_color);
            }
          }
          &.current {
            .nav_link {
              color: var(--orange_color);
            }
          }
        }
      }

      .log_btn {
        width: 50%;

        position: absolute;
        bottom: 4%;
        left: 15%;
      }
    }

    .logo {
      position: relative;
      z-index: 10;
      pointer-events: none;
      img {
        width: 50px;
        object-fit: cover;
      }
    }
    .contacts {
      h2 {
        color: var(--text_color);
        font-weight: 500;
        &:first-child {
          padding-right: 0.6em;
          margin-right: 0.6em;
          border-right: 2px solid var(--text_color);
        }
        span {
          font-weight: 400;
        }
      }
    }
    .log_btn {
      position: relative;
      z-index: 10;
      outline: none;

      background-color: var(--text_color);
      color: var(--body_color);
      text-align: center;
      border-radius: 6px;
      cursor: pointer;
      font-size: var(--size_1p0rem);
      padding: 6px 1.5em;
      transition: all 0.35s ease;
      border: 1px solid var(--text_color);
      &:hover {
        background-color: var(--body_color);
        color: var(--text_color);
      }
      &#logout_btn {
        display: none;
      }
    }
  }

  .management_title {
    width: var(--width_90);
    margin: 2em auto;
    flex-direction: column;

    h1 {
      font-size: var(--size_2p0rem);
      font-weight: 500;
      font-family: var(--heading_family);
    }
    h2 {
      font-size: var(--size_1p2rem);
      font-weight: 400;
      font-family: var(--heading_family);
      span {
        font-family: var(--heading_family);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
    }
    .left {
      margin-bottom: 1em;
      p {
        font-size: var(--size_1p0rem);
      }
    }
  }
  .form_container {
    width: var(--width_90);
    margin: 1em auto;
    position: relative;
    z-index: 4;
    .permanent_note {
      width: var(--width_100);
      text-align: left;
      color: var(--fail_color);
      font-weight: 500;
      font-size: var(--size_1p0rem);
      font-style: italic;
      margin-bottom: 0.6em;
    }
    .payment_form {
      width: var(--width_100);
      border-radius: 8px;
      padding: 1em;
      background-color: rgba(59, 77, 37, 0.1);
      margin-bottom: 1.5em;

      .progress_line {
        width: var(--width_100);
        margin-bottom: 1em;
        span {
          position: relative;
          flex: 1;
          border-radius: 2px;
          height: 4px;
          background-color: rgba(59, 77, 37, 0.2);
          &.current {
            background-color: var(--orange_color);
          }
          &:not(&:last-child),
          &:not(&:first-child) {
            border-right: 2px solid var(--body_color);
            border-left: 2px solid var(--body_color);
          }
          &:first-child {
            border-right: 4px solid var(--body_color);
          }
          &:last-child {
            border-left: 4px solid var(--body_color);
          }
        }
      }
      .book_steps {
        position: relative;
        width: var(--width_100);
        flex-direction: row;
        flex-wrap: wrap;

        /* overflow-x: hidden; */
        .step {
          width: var(--width_100);
          position: relative;
          /* min-width: var(--width_100); */
          h1 {
            width: var(--width_100);
            text-align: left;
            font-size: var(--size_1p8rem);
            font-weight: 400;
            font-family: var(--heading_family);
          }
          p {
            margin-bottom: 1em;
            font-size: var(--size_1p0rem);
            font-weight: 300;
            span {
              font-weight: 600;
            }
          }
          .tour_info {
            margin-bottom: 1em;
            &.book_start {
              width: var(--width_100);
              padding-bottom: 1em;
              border-bottom: 1px solid rgba(59, 77, 37, 0.25);
              gap: 3em;
              .link_btn {
                flex: 1;
              }
            }
            p {
              margin-bottom: 0.3em;
              span {
                font-weight: 600;
              }
            }
            .link_btn {
              display: block;
              outline: none;
              border: 0;
              cursor: pointer;
              border-radius: 8px;
              font-size: var(--size_1p2rem);
              padding: 8px 1em;
              background-color: var(--text_color);
              color: var(--body_color);
              border: 0.5px solid var(--text_color);
              transition: all 0.25s ease;
              margin-top: 1em;
              width: 200px;
              text-align: center;
              font-weight: 400;
              font-family: var(--heading_family);

              &:hover {
                background-color: var(--body_color);
                color: var(--text_color);
                border: 0.5px solid rgba(0, 31, 43, 0.4);
              }
            }
            &.flex_center {
              padding-bottom: 1em;
              border-bottom: 1px solid rgba(59, 77, 37, 0.25);
              p {
                &:last-child {
                  margin-left: 2em;
                }
              }
            }
            &.card_detail {
              border-top: 1px solid rgba(59, 77, 37, 0.2);
              margin-top: 0.6em;
              padding-top: 0.6em;
              h4 {
                font-size: var(--size_1p0rem);
                font-family: var(--heading_family);
                font-weight: 500;
              }
              span {
                font-family: var(--text_family);
                font-weight: 400;
                margin-left: 0.6em;
              }
            }
          }

          .final_notification {
            position: fixed;
            z-index: 5000;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            .notification {
              width: 500px;
              background-color: var(--body_color);
              border-radius: 6px;
              border: 0.6px solid var(--text_color);
              padding: 1em;
              img {
                width: 30px;

                margin-right: 1em;
              }
              p {
                text-align: left;
                margin: 0;

                &.success {
                  color: var(--success_color);
                }
                &.failure {
                  color: var(--fail_color);
                }
              }
            }
          }
          .terms {
            width: var(--width_100);
            display: flex;
            .custom_check_box {
              margin-right: 0.8em;
              width: 20px;
              height: 20px;
              margin-top: 0;
              position: relative;
              .check_mark {
                width: var(--width_100);
                height: var(--width_100);
                cursor: pointer;
                position: relative;
                z-index: 1;
                border-radius: 50%;
                opacity: 0;
              }
              label {
                position: absolute;
                z-index: 5;
                background-color: var(--body_color);
                border: 0.5px solid rgba(59, 77, 37, 0.25);
                width: var(--width_90);
                height: var(--width_90);
                border-radius: 4px;
                cursor: pointer;
                svg {
                  width: var(--width_70);
                }
                &.checked {
                  background-color: var(--text_color);
                  border: 0.5px solid var(--text_color);
                }
              }
            }
            .btn {
              color: var(--text_color);
              font-size: var(--size_1p0rem);
              border: 0;
              transition: all 0.25s ease;
              &:hover {
                text-decoration: underline;
              }
            }
          }

          .payment_frame {
            width: var(--width_100);
            min-width: var(--width_100);
            height: 100%;
            min-height: 100%;
            position: relative;
            .pesapal {
              display: block;
              height: 100%;
              min-height: 500px;
              max-height: 100%;
              width: 100%;
              position: relative;
              iframe {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                min-width: 100%;
                min-height: 100%;
              }
            }
          }
        }
        .main_form {
          .input_line {
            margin-bottom: 1em;
            .input_group {
              width: var(--width_100);
              .input_label {
                display: block;
                width: var(--width_100);
                text-align: left;
                color: var(--text_color);
                margin-bottom: 0.4em;
                font-size: var(--size_1p0rem);
                position: relative;
                z-index: 2;
              }
              .custom_select_input {
                .selected {
                  input {
                    pointer-events: none;
                    border: 0;
                  }
                }
              }
            }
          }
        }
      }
    }
    .progress_buttons {
      width: var(--width_100);
      .progress_btn {
        outline: none;
        border: 0;
        cursor: pointer;
        border-radius: 5px;
        font-size: var(--size_1p0rem);
        padding: 8px 1em;
        transition: all 0.25s ease;
        &.back_btn {
          background-color: rgba(59, 77, 37, 0.1);
          color: var(--text_color);
          border: 0.5px solid rgba(59, 77, 37, 0.1);
        }
        &.invisible {
          opacity: 0;
          pointer-events: none;
        }
        &.next_btn {
          background-color: var(--text_color);
          color: var(--body_color);
          border: 0.5px solid var(--text_color);
        }
        &:hover {
          background-color: var(--body_color);
          color: var(--text_color);
          border: 0.5px solid rgba(0, 31, 43, 0.4);
        }
      }
    }
  }
  .footer_bottom {
    padding: 2em 10%;
    width: var(--width_100);
    position: relative;

    z-index: 2;
    column-gap: 5%;
    background-color: var(--body_color);
    &::after {
      content: "";
      width: var(--width_100);
      height: var(--width_100);
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(59, 77, 37, 0.1);
      z-index: -1;
    }
    .f_col {
      h4 {
        font-weight: 600;
        text-transform: uppercase;
        color: var(--text_color);
        font-size: var(--size_1p0rem);
        margin-right: 1em;
      }
      img {
        width: 45px;
      }
      .agencies,
      .payments {
        gap: 2em;
      }

      .normal_link {
        border: 0 !important;
        outline: 0 !important;
        cursor: pointer;
        font-size: var(--size_1p0rem);
        &:first-child {
          padding-right: 0.6em;
          border-right: 1px solid var(--text_color);
          margin-right: 0.6em;
        }
      }
    }
    /* .payments{
        flex: 1;
      } */
  }
  &.management {
    margin: 0 5%;
    overflow: hidden;
    .form_container {
      padding-top: 4em;
      width: var(--width_100);
    }
  }
}

.custom_table {
  width: var(--width_100);
  .table {
    width: var(--width_100);
    border-collapse: collapse;
    th,
    td {
      padding: 8px;
      text-align: center;
      &:nth-child(1),
      &:nth-child(2) {
        text-align: left;
      }

      /* border: 1px solid #666464; */
    }
    th {
      color: var(--body_color);
      background-color: var(--orange_color);
    }
    tfoot {
      /* background-color: var(--body_color); */
      border-top: 1px solid rgba(59, 77, 37, 0.25);
      td {
        font-weight: 500;
        font-size: var(--size_1p0rem);
      }
      .total {
        td {
          font-weight: 600;
          font-family: var(--heading_family);
          font-size: var(--size_1p1rem);
        }
      }
    }
  }
}

/* responsive design */
/* use: max-width - exact or smaller for desktop first approach*/
/* use: min-width - exact or larger for mobile first */
/* my screen resolution - 1366px x 768px
  standard media screen resolution
  
  Some standard display resolutions and their market names/acronyms:
  1280 x 720 (720p, HD, HD Ready, Standard HD)
  1920 x 1080 (1080p, Full HD, FHD)
  2560 x 1440 (1440p, Wide Quad HD, Quad HD, WQHD, QHD)
  3840 x 2160 (4K, Ultra HD, UHD, 4K UHD)
  7680 x 4320 (8K, 8K UHD)
  
  
  
  Some common aspect ratios for displays:
  4:3 (Fullscreen)
  16:9 (Widescreen)
  21:9 (Ultrawide)
   */

/* responsive breakpoints 

   320px - 600px -> mobile
   600px - 1024px -> tablet
   1024px - 1440px -> tablet
   
   */
/* mobile smaller */
@media (max-width: 450px) {
  /* nave */
  .home_nav {
    padding: 1em 5%;
    .logo {
      .link_btn {
        img {
          width: 50px;
        }
        h2 {
          display: none;
        }
      }
    }
    .home_left {
      column-gap: 1.5em;
    }
  }
}

/* tablet -> here and below*/
@media (max-width: 1024px) {
}
/* desktop - here and above */
@media (min-width: 1024px) {
  .home_nav {
    padding: 1em 12.5%;

    .logo {
      .link_btn {
        column-gap: 2em;

        img {
          width: 80px;
        }
        h2 {
          font-size: var(--size_1p8rem);
        }
      }
    }
    .home_left {
      button {
        font-size: var(--size_1p4rem);
        img {
          width: 38px;
        }
        &.call_btn {
          display: block;
        }
      }
    }
    &.nav_standalone {
      padding: 1em 12.5%;
    }
  }

  /* nav */
  .main_nav {
    width: var(--width_50);

    .nav_links {
      padding-right: 20%;
      .call_btn {
        display: none;
      }

      .nav_items {
        .nav_list {
          .nav_item {
            .nav_link {
              font-size: var(--size_2p8rem);
            }

            &.main_item {
              .nested_list {
                width: 50%;
                left: 20%;
                .sub_list {
                  padding: 1em 2em;
                  .sub_item {
                    .sub_link {
                      font-size: var(--size_1p2rem);
                    }
                  }
                }
              }
              &:hover {
                .nested_list {
                  left: 10%;
                }
              }
            }
          }
        }
        .other_list {
          width: 60%;
          position: relative;
          margin-left: 40%;

          .col {
            width: var(--width_50);
          }

          .nav_item {
            .nav_link {
              font-size: var(--size_1p0rem);
              font-weight: 400;
            }
          }
        }
      }
    }
  }

  .video_player {
    .video {
      width: 80vw;
      height: 85vh;
    }
  }

  /* hero */
  .hero {
    min-height: 100vh;

    .main_hero {
      min-height: 100vh;

      .hero_slider {
        min-height: 100vh;

        .hero_image {
          min-height: 100vh;
          padding: 0 12.5%;

          .hero_left_content {
            width: var(--width_55);
            padding: 2% 0;
            margin-top: 18%;

            /* position: relative;*/
            .title {
              text-align: left;
              font-size: var(--size_3p6rem);
            }
            p {
              width: var(--width_100);
              text-align: justify;
              font-size: var(--size_1p2rem);
            }
            .vidz_button {
              min-width: 120px;
              span {
                min-width: 28px;
                min-height: 28px;
              }
              p {
                margin-bottom: 0;
                font-size: var(--size_0p95rem);
              }
            }
            .actions {
              width: 100%;
              column-gap: 0.5em;
              justify-content: flex-start;
            }
            .btn {
              padding: 0.3em 3em;
              &:hover {
                background-color: var(--body_color);
                color: var(--text_color);
                border-color: var(--body_color);
              }

              &:last-child {
                padding: 0.3em 2em;
                &:hover {
                  background-color: transparent;
                  color: var(--body_color);
                  span {
                    background-color: var(--body_color);
                    svg {
                      path {
                        fill: var(--green_color);
                      }
                    }
                  }
                }
              }
              span {
                display: block;
                width: 30px;
                height: 30px;
                min-width: 30px;
                min-height: 30px;
                border-radius: 50%;
                border: 1px solid var(--body_color);
                margin-right: 1em;
                transition: all 0.25s ease;

                svg {
                  width: 18px;
                  height: 18px;
                  path {
                    fill: var(--body_color);
                  }
                }
              }
            }
          }
        }
      }

      .hero_left {
        width: var(--width_55);
        min-height: 100vh;
        /* background: rgba(0, 31, 43, 0.15); */
        /* backdrop-filter: blur(1px); */

        .hero_left_content {
          padding-left: 25%;
          padding-right: 5%;
          /* position: relative;*/
          .title {
            margin-top: 2em;
            margin-bottom: 0.6rem;
            text-align: left;
            font-size: var(--size_3p6rem);

            &.break {
              display: none;
            }
          }
          p {
            width: var(--width_100);
            margin: auto;
            margin-bottom: 3rem;
            text-align: left;
            font-size: var(--size_1p4rem);
          }
          .vidz_button {
            min-width: 160px;
            span {
              min-width: 30px;
              min-height: 30px;
            }
            p {
              margin-bottom: 0;
              font-size: var(--size_1p2rem);
            }
          }
          .actions {
            width: 100%;
            column-gap: 0.5em;
            justify-content: flex-start;
            .btn {
              font-size: var(--size_1p2rem);
            }
          }
          .btn {
            padding: 0.3em 3em;

            &:last-child {
              padding: 0.3em 2em;
              &:hover {
                background-color: transparent;
                color: var(--body_color);
                span {
                  background-color: var(--body_color);
                  svg {
                    path {
                      fill: var(--green_color);
                    }
                  }
                }
              }
            }
          }

          .slider_arrows {
            display: none;
          }
        }
      }

      .slider {
        display: flex;
      }
    }
  }

  .bridge {
    padding: 4em 12.5%;

    h2 {
      font-size: var(--size_2p0rem);
    }

    .gen_btn {
      width: var(--width_30);
      margin-left: 0;
    }
    &.bridge_at_destination {
      padding: 2em 12.5%;
      h2 {
        font-size: var(--size_2p2rem);
      }
    }
  }
  .section_head {
    .mixed {
      justify-content: flex-start;
      h2 {
        text-align: center;
      }
      .normal {
        font-size: var(--size_3p2rem);
      }
      .scripted {
        font-size: var(--size_3p8rem);
      }
    }
    &.feature_head {
      p {
        display: none;
      }
    }
    p {
      font-size: var(--size_1p4rem);
      text-align: justify;
    }
  }

  .page_section {
    width: var(--width_75);
    margin: 4em auto;

    .tour_styles {
      .tour_card {
        .card_img {
          min-height: 320px;

          h3 {
            color: var(--body_color);
          }
          p {
            opacity: 0.85;
          }
        }
        .section_head {
          position: relative;
          z-index: 5;
          margin-bottom: 60px;
          .mixed {
            h2 {
              color: var(--body_color);
            }
            .normal {
              font-size: var(--size_2p8rem);
            }
            .scripted {
              font-size: var(--size_3p4rem);
            }
          }
          p {
            display: none;
          }
        }

        h3 {
          font-size: var(--size_1p2rem);
        }
        .gen_btn {
          width: 60%;
        }
        p {
          font-size: var(--size_1p2rem);
        }
      }
    }

    .two_columns {
      grid-template-columns: repeat(2, minmax(48%, 1fr));
      gap: 2em;
      .grid_col {
        .col_img {
          min-height: 320px;
        }
        .section_head {
          margin-bottom: 0.9em;

          .mixed {
            justify-content: unset;
            .normal {
              font-size: var(--size_3p2rem);
            }
            .scripted {
              font-size: var(--size_3p8rem);
            }
          }
          p {
            width: 100%;
            text-align: left;
            font-size: var(--size_1p6rem);
            margin-bottom: 0;
          }
        }
        p {
          font-size: var(--size_1p2rem);
        }
      }
      &.why {
        .grid_col {
          .section_head {
            .mixed {
              h2 {
                display: block;
                width: 100%;
                text-align: left;
              }
              .normal {
                text-transform: uppercase;
              }
            }
          }
        }
        .gen_btn {
          display: block;
          margin: unset;
          width: var(--width_60);
        }
      }
      &.re-order {
        .col_content {
          order: 1;
        }
        .col_left {
          order: 2;
        }
      }
    }
  }

  .values {
    .values_slider {
      width: var(--width_80);

      grid-template-columns: repeat(7, minmax(16%, 1fr));

      .value {
        img {
          width: 40px;
        }
        span {
          font-size: var(--size_0p95rem);
        }
      }
    }
  }

  .dest_nations {
    .section_head {
      p {
        text-align: left;
        max-width: var(--width_100);
      }
    }
    .dest_nation_btns {
      button {
        min-width: 12%;
        font-size: var(--size_1p2rem);
      }
    }
    .destinations_container {
      min-height: 550px;

      .arrow_btns {
        width: var(--width_100);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        .arrow {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          border: 1px solid var(--text_color);

          position: relative;
          transition: all 0.3s ease;
          .image_layer {
            display: none;
          }
          img {
            display: none;
          }
          svg {
            width: 20px;
            height: 20px;
            path {
              fill: var(--text_color);
            }
          }
          &:hover {
            border: 1px solid var(--text_color);
            background-color: var(--text_color);
            svg {
              path {
                fill: var(--body_color);
              }
            }
          }
        }
      }

      .destinations_slider {
        /* margin-bottom: 4em; */
        .destination {
          min-height: 550px;

          .destination_preview {
            width: var(--width_80);
            padding: 1em 2.5%;
            gap: 10%;
            bottom: -10%;
            left: 10%;

            h2 {
              text-align: left;
              font-size: var(--size_3p6rem);
            }
            p {
              font-size: var(--size_1p2rem);
            }
            .gen_btn {
              border-color: var(--body_color);
              color: var(--body_color);
            }
          }
        }
      }
    }
  }

  .featured_tours {
    padding: 3em 12.5%;

    .feature_buttons {
      button {
        font-size: var(--size_1p2rem);
      }
    }

    .featured_container {
      width: var(--width_100);

      .featured_col {
        position: relative;
        width: var(--width_100);

        &.featured_col_left {
          display: flex;
          flex-direction: column;
        }

        .section_head {
          .mixed {
            flex-direction: row;
            justify-content: flex-start;
            h2 {
              width: auto;
              display: auto;
            }
            .normal {
              font-size: var(--size_3p2rem);
            }
            .scripted {
              font-size: var(--size_3p6rem);
            }
          }
        }
        p {
          font-size: var(--size_1p2rem);
        }
        .arrow_btns {
          .arrow {
            width: 36px;
            height: 36px;
          }
        }

        .gen_btn {
          margin-left: 0;
          width: 30%;
        }

        &.featured_col_right {
          .tour_slider {
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 1.5%;
          }
        }
      }
    }
  }

  .featured_hotels {
    padding: 4em 12.5%;
    .section_head {
      margin-bottom: 2em;
      .mixed {
        justify-content: flex-start;
      }
    }

    .hotels_preview {
      grid-template-columns: repeat(3, minmax(300px, 1fr));
      gap: 2%;
      .tour_slide {
        .tour_img {
          height: 220px;
        }
      }
    }

    .arrow_btns {
      display: none;
    }

    .gen_btn {
      display: block;
      width: 30%;
      text-align: center;
      margin-left: 0;
      font-size: var(--size_1p0rem);
    }
  }
  .the_plan {
    min-width: var(--width_100);

    margin: 4rem auto;
    margin-top: 8rem;
    .section_head {
      p {
        text-align: center;
        max-width: var(--width_85);
      }
    }
    .plan_container {
      width: var(--width_75);
      margin: auto;
      grid-template-columns: repeat(3, minmax(300px, 1fr));
      gap: 2%;
      .plan_card {
        h3 {
          font-size: var(--size_2p8rem);
          font-family: var(--script_family);
        }
        h2 {
          font-size: var(--size_2p0rem);
        }
        p {
          text-align: justify;
          font-size: var(--size_1p1rem);
        }
      }
    }
  }

  .reviews {
    min-width: var(--width_100);
    padding: 4em 12.5%;

    .review_grid {
      grid-template-columns: repeat(2, minmax(300px, 1fr));
      width: var(--width_100);

      .grid_col {
        .col_img {
          .col_content {
            .review_tit {
              .section_head {
                .mixed {
                  .normal {
                    text-transform: uppercase;
                    font-size: var(--size_2p8rem);
                  }
                  .scripted {
                    font-size: var(--size_3p2rem);
                  }
                }
                p {
                  font-size: var(--size_1p2rem);
                }
              }
              .gen_btn {
                width: var(--width_60);
                font-size: var(--size_1p2rem);
              }
            }
          }
        }
        &.col_left {
          min-height: 360px;
          margin-bottom: 0;
        }

        .review_slider {
          overflow-x: scroll;
          column-gap: 20px;
          .review_card {
            .stars {
              img {
                width: 120px;
              }
            }

            h3 {
              font-size: var(--size_2p0rem);
            }

            h4 {
              font-weight: 600;
              font-size: var(--size_1p2rem);
            }
            h5 {
              font-weight: 400;
              font-size: var(--size_1p2rem);
            }
          }
        }

        .review_btns {
          position: absolute;
          right: 0;
          bottom: 2%;
          column-gap: 1em;

          .arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--text_color);
            position: relative;
            transition: all 0.3s ease;
            .image_layer {
              display: none;
            }
            img {
              display: none;
            }
            svg {
              width: 20px;
              height: 20px;
              path {
                fill: var(--text_color);
              }
            }
            &:hover {
              border: 1px solid var(--text_color);
              background-color: var(--text_color);
              svg {
                path {
                  fill: var(--body_color);
                }
              }
            }
          }
        }
      }
    }
    .two_cols {
      .grid_col {
        position: relative;
        .col_img {
          .col_content {
            width: var(--width_100);
            height: var(--width_100);
            background-color: rgba(0, 31, 43, 0.4);
            position: relative;
            border-radius: 8px;
            .review_tit {
              width: var(--width_100);
              position: absolute;
              bottom: 2%;
              padding: 4%;
              .section_head {
                width: var(--width_100);
                margin-bottom: 1em;

                .mixed {
                  flex-direction: column;
                  h2 {
                    width: var(--width_100);
                    text-align: center;
                    color: var(--body_color);
                  }
                  .normal {
                    text-transform: uppercase;
                  }
                  .scripted {
                    font-size: var(--size_6p0rem);
                  }
                }
                p {
                  width: 100%;
                  text-align: left;
                  font-size: var(--size_1p2rem);
                  margin-bottom: 0;
                }
              }
              .gen_btn {
                display: block;
                width: var(--width_50);
                margin: auto;
                border-color: var(--body_color);
                color: var(--body_color);
                text-align: center;
                &:hover {
                  background-color: var(--body_color);
                  color: var(--text_color);
                }
              }
            }
          }
        }

        .review_slider {
          .review_card {
            .stars {
              width: var(--width_100);
              margin-bottom: 1em;
              img {
                width: 150px;
                object-fit: cover;
                margin-bottom: 1em;
              }
            }

            h3 {
              font-size: var(--size_2p4rem);
            }
            h4,
            h5 {
              text-transform: uppercase;
            }
            h4 {
              font-weight: 600;
              font-size: var(--size_1p2rem);
            }
            h5 {
              font-weight: 400;
              font-size: var(--size_1p0rem);
            }
          }
        }

        .review_btns {
          position: absolute;
          right: 0;
          bottom: 2%;
          column-gap: 1em;

          .arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--text_color);
            position: relative;
            transition: all 0.3s ease;
            .image_layer {
              display: none;
            }
            img {
              display: none;
            }
            svg {
              width: 20px;
              height: 20px;
              path {
                fill: var(--text_color);
              }
            }
            &:hover {
              border: 1px solid var(--text_color);
              background-color: var(--text_color);
              svg {
                path {
                  fill: var(--body_color);
                }
              }
            }
          }
        }
      }
    }
  }

  .news_letter {
    padding: 1em 12.5%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;

    h3 {
      font-weight: 400;
      font-family: var(--heading_family);
      font-size: var(--size_2p4rem);
      text-align: center;
    }
    .gen_btn {
      display: block;
      width: var(--width_15);
      text-align: center;
    }
  }

  /* footer */
  .footer {
    padding: 3em 12.5%;
    padding-top: 6em;

    .footer_columns {
      margin: auto;
      gap: 2em;
      padding-bottom: 3em;
      flex-direction: row;
      justify-content: space-between;
      .footer_column {
        width: 100%;
        &.col1 {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          border-bottom: none;
          padding-bottom: 0;
          h2 {
            text-align: left;
          }
        }
        .logo {
          margin-bottom: 1em;
          img {
            width: 120px;
            margin: unset;
          }
        }
        h2 {
          font-size: var(--size_1p2rem);
        }
        .gen_btn {
          width: var(--width_75);
          margin-bottom: 2em;
        }
        .socials {
          justify-content: start;
        }

        .big_link,
        .normal_link {
          font-size: var(--size_1p2rem);
        }
        .big_link {
          font-size: var(--size_2p8rem);
        }
      }
      .policy_links {
        .normal_link {
          font-size: var(--size_1p0rem);
        }
      }
    }
    .footer_bottom {
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 4em;
      .f_col {
        flex: none;
        h4 {
          font-size: var(--size_1p2rem);
        }
        img {
          width: 50px;
        }
        .agencies,
        .payments {
          gap: 2em;
        }
      }
      /* .payments{
        flex: 1;
      } */
    }
    .copy {
      font-size: var(--size_1p2rem);
    }
  }

  .filter_row {
    .filter {
      width: var(--width_50);
      h2 {
        font-size: var(--size_1p4rem);
        font-weight: 500;
        margin-bottom: 1em;
      }
    }
  }

  .cards_container {
    width: var(--width_100);

    padding: 5% 12.5%;
    .hotels_preview {
      grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
  }

  .why_section {
    .reasons {
      padding: 2em;

      .why_list {
        .why_item {
          h2 {
            font-size: var(--size_1p3rem);
            span {
              font-size: var(--size_1p2rem);
              text-align: justify;
            }
          }
        }
      }
      .tour_slider {
        .tour_slide {
          .tour_content {
            .gen_btn {
              width: 40%;
              margin-left: 60%;
            }
          }
        }
      }
      .gen_btn {
        font-size: var(--size_1p2rem);
      }
    }

    &.tour_detail_why {
      padding: 5% 12.5%;
      .reasons {
        gap: 25px;
        .reasons_left {
          .gen_btn {
            width: 30%;
          }
        }
        .reasons_right {
          width: var(--width_100);
          .sliding_cards {
            .card_slider {
              gap: 2%;
              grid-template-columns: repeat(3, minmax(300px, 1fr));
            }
          }
        }
      }
    }

    &.destination_why {
      padding: 5% 12.5%;
      .reasons {
        width: var(--width_80);
        margin-left: 20%;
        .section_head {
          .mixed {
            .normal {
              font-size: var(--size_3p2rem);
            }
            .scripted {
              font-size: var(--size_3p8rem);
            }
          }
        }
        .intro {
          p {
            font-size: var(--size_1p2rem);
          }
        }
      }
    }
  }

  .tour_preview {
    flex-direction: row;
    align-items: flex-start;
    .preview_col {
      width: var(--width_50);

      .container {
        min-height: 28em;

        .slider {
          min-height: 28em;
          .image {
            min-height: 28em;
          }
        }
        .arrow_btns {
          width: var(--width_70);
          padding: 0 2em;
          padding-right: 10%;
          left: 20%;
        }

        .vidz_button {
          bottom: 2em;
          left: 22.5%;
        }
      }
    }
    .preview_right {
      padding: 2em 2%;
      padding-right: 12.5%;

      h4 {
        font-size: var(--size_1p2rem);
        margin-bottom: 1em;
      }
      h1 {
        font-size: var(--size_2p2rem);
        margin-bottom: 1em;
      }
      h3 {
        font-size: var(--size_1p2rem);
      }
    }
  }

  .tour_itenary_container {
    padding: 4em 12.5%;
    .tour_itenary_details {
      gap: 2em;
      .it_btn_toggle {
        display: none;
      }

      .col_left {
      width: var(--width_30);
      position: relative;
      left: initial;
      top: initial;
      opacity: 1;
      pointer-events: all;
      &.visible{
        top: initial;
            opacity: 1;
      pointer-events: all;
      }
      
      h2 {
          font-size: var(--size_1p5rem);
        }

        .gen_btn {
          font-size: var(--size_1p2rem);
        }

        .itenary_btn {
          font-size: var(--size_2p0rem);
        }
    }

      
      
      .col_right {
        width: var(--width_70);
        max-height: 750px;

        .safari_card {
          .card_content {
            width: var(--width_100);

            h2 {
              font-size: var(--size_2p4rem);
            }
            p {
              font-size: var(--size_1p2rem);
              font-weight: 300;
            }
            &.highlights {
              p {
                font-size: var(--size_1p2rem);
              }
            }

            .it_day {
              .day_btn {
                font-size: var(--size_1p5rem);
              }
              .day_content {
                .day_image {
                  height: 320px;
                }

                .day_extras {
                  .day_extra {
                    h3 {
                      font-size: var(--size_1p0rem);
                    }
                    h4 {
                      font-size: var(--size_1p0rem);
                    }
                  }
                }
              }
            }
          }

          .photo_gallery {
            h2 {
              font-size: var(--size_3p2rem);
            }
          }
        }
      }

      &.hotel_details {
        .col_right {
          max-height: 400px;
        }
      }
    }
  }

  .safari_why {
    padding: 4em 12.5%;

    .reasons {
      .reasons_right {
        .sliding_cards {
          .card_slider {
            gap: 2.5%;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
          }
        }
      }
    }
  }

  .destinations {
    .one_destination {
      .destination_hero {
        min-height: 100vh;
        .hero_image {
        min-height: 100vh;
      }

        .hero_area {
          width: var(--width_100);
          padding-bottom: 4em;
          z-index: 7;
          position: absolute;
          left: 0%;
          padding-left: 12.5%;
          bottom: -4%;

          .hero_left {
            h1,
            h2 {
              text-align: left;
            }
            h1 {
              font-size: var(--size_3p6rem);
            }
            h2 {
              font-size: var(--size_3p2rem);
            }

            .call_btns {
              flex-direction: row;
              .gen_btn {
                margin-bottom: 0.8em;
                font-size: var(--size_1p2rem);
                font-weight: 400;
              }
            }
          }
        }
      }

      .destination_info {
        width: var(--width_75);
        .detail {
          width: var(--width_100);
          margin-bottom: 1.8em;
          .sub_detail {
            .sub_detail_image {
              min-height: 500px;
            }

            h1 {
              font-size: var(--size_2p2rem);
            }
            h2 {
              font-size: var(--size_1p2rem);
            }
            p {
              font-size: var(--size_1p2rem);
            }
          }

          h1 {
            font-size: var(--size_2p4rem);
          }
          h2 {
            font-size: var(--size_1p2rem);
          }
          p {
            font-size: var(--size_1p2rem);
          }
        }
      }
    }
  }
  .destination_highlights {
    padding: 0 12.5%;

    .section_head {
      margin-bottom: 2em;
      .mixed {
        justify-content: flex-start;
        .normal {
          font-size: var(--size_3p2rem);
        }
        .scripted {
          font-size: var(--size_3p8rem);
        }
      }
    }
  }

  .main_image_slider {
    .image_slider {
      min-height: 35em;
      .main_image {
        min-height: 42em;

        h2 {
          font-size: var(--size_2p0rem);
        }
      }
    }
  }
  .hidden_palette {
    padding-top: 15%;
    .close_btn {
      right: 20%;
      top: 20%;
    }
    .upload_manager {
      width: var(--width_60);

      .upload_form {
        align-items: flex-end;
        flex-direction: row;
        width: var(--width_100);
        .input_line {
          width: var(--width_50);

          .input_group {
            margin-bottom: 0;

            .input_label {
              font-size: var(--size_1p2rem);
            }
            input {
              font-size: var(--size_1p2rem);
            }

            &.upload {
              position: relative;
              input {
                &::after {
                  font-size: var(--size_1p2rem);
                }
              }
            }
          }
        }
        .progress_buttons {
          width: var(--width_25);
          .progress_btn {
            padding: 8px 15px;
          }
        }
      }
      .progress_buttons.larger {
        .progress_btn {
          width: 25%;
          margin-left: 75%;
        }
      }
    }
    .counted {
      width: 75%;
      font-size: var(--size_1p2rem);
    }
  }
  .bookings {
    .booking_header {
      padding: 1em 12.5%;

      .menu_btn {
        position: relative;
        z-index: 10;
        display: block;
        img {
          width: 32px;
          object-fit: cover;
        }
      }

      .auth_menu {
        width: var(--width_25);
        height: 92vh;
        .links {
          .nav_item {
            .nav_link {
              font-size: var(--size_2p2rem);
            }
          }
        }
        &::before {
          top: 0;
          height: 18px;
        }

        .log_btn {
          display: none;
        }
      }

      .logo {
        flex: 1;
        img {
          width: 60px;
        }
      }

      .log_btn {
        font-size: var(--size_1p2rem);
        &#logout_btn {
          display: block;
          margin-left: 1em;
        }
      }
    }

    .management_title {
      width: var(--width_75);
      flex-direction: row;
      justify-content: space-between;

      h1 {
        font-size: var(--size_2p2rem);
      }
      h2 {
        font-size: var(--size_1p2rem);
      }
      .left {
        margin-bottom: 1em;
        p {
          font-size: var(--size_1p2rem);
        }
      }
    }
    .form_container {
      width: var(--width_75);

      .payment_form {
        .book_steps {
          .step {
            h1 {
              font-size: var(--size_1p8rem);
            }
            p {
              font-size: var(--size_1p2rem);
            }
          }
          .main_form {
            .input_line {
              .input_group {
                .input_label {
                  font-size: var(--size_1p2rem);
                }
              }
            }
          }
        }
      }
      .progress_buttons {
        .progress_btn {
          font-size: var(--size_1p4rem);
        }
      }
    }

    .main_form {
      .input_line {
        .input_group {
          .input_label {
            font-size: var(--size_1p2rem);
          }
          input,
          .text_area {
            font-size: var(--size_1p2rem);
          }

          &.upload {
            position: relative;
            input {
              &::after {
                font-size: var(--size_1p2rem);
              }
              &.multiple {
                &::after {
                  font-size: var(--size_1p2rem);
                }
              }
            }
          }

          .manage_btn {
            font-size: var(--size_1p2rem);
          }
        }
        &.double_input {
          display: flex;
          align-items: center;
          column-gap: 1em;
        }
        .break_away {
          display: flex;
          align-items: center;
          column-gap: 1em;

          &.left_large {
            display: flex;
            align-items: center;
            column-gap: 1em;
            .input_group {
              &:first-child {
                flex: 3 !important;
              }
              &:last-child {
                flex: 1 !important;
              }
            }
          }
        }

        &.triple {
          display: flex;
          align-items: center;
          column-gap: 1em;
        }
        &.right_large {
          display: flex;
          align-items: center;
          column-gap: 1em;
          .input_group {
            &:first-child {
              flex: 1 !important;
            }
            &:last-child {
              flex: 3 !important;
            }
          }
        }

        &.middle_large {
          .input_group {
            &:first-child {
              flex: 1;
            }
            &:nth-child(2) {
              flex: 3;
            }
            &:last-child {
              flex: 1;
            }
          }
        }
      }

      .note {
        width: var(--width_100);
        text-align: left;
        font-style: italic;
        span {
          font-weight: 600;
        }
      }
    }

    .footer_bottom {
      padding: 2em 10%;
      width: var(--width_100);
      position: relative;

      z-index: 2;
      column-gap: 5%;
      background-color: var(--body_color);
      &::after {
        content: "";
        width: var(--width_100);
        height: var(--width_100);
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(59, 77, 37, 0.1);
        z-index: -1;
      }
      .f_col {
        h4 {
          font-weight: 600;
          text-transform: uppercase;
          color: var(--text_color);
          font-size: var(--size_1p0rem);
          margin-right: 1em;
        }
        img {
          width: 45px;
        }
        .agencies,
        .payments {
          gap: 2em;
        }

        .normal_link {
          border: 0 !important;
          outline: 0 !important;
          cursor: pointer;
          font-size: var(--size_1p0rem);
          &:first-child {
            padding-right: 0.6em;
            border-right: 1px solid var(--text_color);
            margin-right: 0.6em;
          }
        }
      }
      /* .payments{
        flex: 1;
      } */
    }
    &.management {
      margin: 2em auto;
      width: var(--width_45);
      max-width: var(--width_50);
      overflow: hidden;
      .form_container {
        padding-top: 4em;
        width: var(--width_100);
      }
    }
  }

  .preview_image_container {
    .display_img {
      width: var(--width_75);
      min-height: 560px;
      .preview_image {
        min-height: 500px;
      }
    }

    .display_images {
      width: 1500px;
      height: 800px;
      border-radius: 8px;
      background-color: rgba(0, 31, 43, 1);

      .preview_images {
        width: var(--width_100);
        margin: auto;
        height: 740px;
        overflow-y: scroll;

        user-select: none;
        padding: 1em;
        position: relative;
        z-index: 2;
        gap: 20px;
        img {
          position: relative;
          z-index: 2;
          width: 480px;
          height: 300px;
          object-fit: cover;
          border-radius: 6px;
          user-select: none;
        }
      }
      .decision_btns {
        position: relative;
        z-index: 10;
        width: var(--width_100);
        border: 6px solid rgba(0, 31, 43, 1);
        border-top: 0;
        height: 60px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        padding: 8px 1em;
        background-color: var(--body_color);
        .progress_btn {
          outline: none;
          border: 0;
          cursor: pointer;
          border-radius: 8px;
          font-size: var(--size_1p1rem);
          padding: 4px 2em;
          transition: all 0.25s ease;
          &.back_btn {
            background-color: rgba(59, 77, 37, 0.1);
            color: var(--text_color);
            border: 0.5px solid rgba(59, 77, 37, 0.1);
          }

          &.next_btn {
            background-color: var(--text_color);
            color: var(--body_color);
            border: 0.5px solid var(--text_color);
          }
          &:hover {
            background-color: var(--body_color);
            color: var(--text_color);
            border: 0.5px solid rgba(0, 31, 43, 0.4);
          }
        }
      }
    }
  }
}
/* razer resolution: 1536 x 864 */
/* desktop - here and above */
@media (min-width: 1540px) {
  .footer {
    .footer_columns {
      width: var(--width_80);
      min-width: var(--width_80);
    }
  }
}

/* desktop */
@media (max-width: 1440px) {
}
