@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --mainColor: #113d48;
  --secondColor: #1ca8cb;
  --lightColor: #8fbec4;
  --shadow: rgba(145, 158, 171, 0.2) 0px 4px 5px -1px,
    rgba(145, 158, 171, 0.14) 0px 4px 5px 0px,
    rgba(145, 158, 171, 0.12) 0px 4px 5px 0px;
  --font-family: "Kanit", sans-serif;
  --dancingFont: "Dancing Script", cursive;
  --ratingColor: #ffc908;
  --eeeColor: #eee;
}
body,
html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(250, 244, 244);
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 20px;
}

.dancingFont {
  font-family: var(--dancingFont);
}
.mainColor,
.textMainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}
.bgSecondColor {
  background-color: var(--secondColor);
}
.textSecondColor {
  color: var(--secondColor);
}

.lightColor,
.textLightColor {
  color: var(--lightColor);
}

.bgLightColor {
  background-color: var(--lightColor);
}
.bgEEE {
  background-color: var(--eeeColor);
}

.ratingColor {
  color: var(--ratingColor);
}
.bg-azura {
  background-color: rgba(203, 229, 229, 0.679);
}

.mainBtn {
  border: unset;
  color: #fff;
  padding: 13px 35px;
  position: relative;
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  overflow: hidden;
  transition: all 1s;
  &.bg-transparent{color: var(--mainColor);}
  &:hover {
    color: #fff;
  }
  &::after {
    content: "";
    position: absolute;
    width: 0%;
    inset: 0;
    transition: all 1s;
    z-index: -1;
  }
  &:hover::after {
    width: 100%;
    background-color: var(--secondColor);
  }
}
.secBtn {
  border: unset;
  color: #fff;
  padding: 13px 35px;
  position: relative;
  background-color: var(--secondColor);
  overflow: hidden;
  transition: all 1s;
  &:hover {
    color: #fff;
  }
  &::after {
    content: "";
    position: absolute;
    width: 0%;
    inset: 0;
    transition: all 1s;
    z-index: -1;
  }
  &:hover::after {
    width: 100%;
    background-color: var(--mainColor);
  }
}

.specialBtn{
  padding: 10px 20px;
  background-color: #cef2fa;
  color: var(--mainColor);
  transition: all 1s;

  &:focus{
    color: #fff;
    background-color: var(--secondColor);
  }
}

a,
a:hover {
  text-decoration: none;
  color: #000;
  transition: 0.8s all;
}

.font-sm {
  font-size: 12px;
}
.cPointer {
  cursor: pointer;
}
.slick-dots {
  bottom: -45px;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  font-size: 17px;
  color: var(--secondColor);
}

.h120 {
  height: 120px;
}

.title {
  width: 400px;
}

.icon {
  width: 3rem;
  height: 3rem;
  background-color: #E9F6F9;
  border-radius: 50%;
  color: var(--secondColor);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  i {
    transition: all 0.5s;
  }
  &:hover {
    color: #fff;
    background-color: var(--mainColor);
    i {
      rotate: 360deg;
    }
  }
}

::marker,
::selection {
  color: #fff;
  background-color: var(--mainColor);
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--mainColor);
  height: 16px;
  width: 16px;
}

.heightFit {
  height: fit-content;
}

/* end global style */

/* header */
header {
  .topHeader {
    select.form-control {
      width: fit-content;
    }
  }
}

/* navbar */
nav {
  .navbar {
    --bs-navbar-padding-y: 0;
  }
  .navbar-brand {
    width: 260px;
    height: 80px;
    background-color: var(--secondColor);
   
  }

  .nav-link {
    position: relative;
    transition: all 1s;
  }
  .nav-link::after {
    content: "";
    background-color: var(--secondColor);
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: all 1s;
    width: 0%;
    height: 2px;
  }

  .nav-link:focus::after,
  .nav-link:hover::after {
    width: 100%;
    color: var(--secondColor);
  }
  .nav-link:focus,
  .nav-link:hover {
    margin-left: 30px;
    width: fit-content;
  }
}
@media screen and (max-width: 500px) {
  nav .navbar-brand {
    figure {
      width: 150px;
    }
    width: 200px;
  }
  .title {
    width: auto;
  }
}

/* main section */

main {
  /* padding-top: 100px; */

  .carousel-item {
    position: relative;
  }
  .caption {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 50%;
  }

  & .carousel-control-next,
  & .carousel-control-prev {
    left: 90%;
    width: fit-content;
    height: fit-content;
  }
  & .carousel-control-next {
    top: 35%;
  }
  & .carousel-control-prev {
    top: 75%;
  }
  & .carousel-control-next-icon,
  & .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 15px;
    background-color: var(--mainColor);
    background-size: 70% 70%;
    background-image: none;
    padding-top: 10px;
  }

  & .carousel-indicators {
    top: 45%;
    right: unset;
    bottom: unset;
    left: 91%;
    flex-direction: column;
    margin-right: unset;
    margin-left: unset;
  }

  & .carousel-indicators [data-bs-target] {
    border-radius: 55px;
    border-top: unset;
    border-bottom: unset;
    margin-bottom: 20px;
    height: 40px;
    width: 7px;
    background-color: var(--mainColor);
  }

  & form {
    width: 70%;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%);
  }

  @media screen and (max-width: 992px) {
    & form {
      bottom: -100px;
      z-index: 9999;
    }
  }
  @media screen and (max-width: 767px) {
    .caption {
      width: 75%;
    }

    & .carousel-control-next,
    & .carousel-control-prev {
      left: 85%;
    }
    & .carousel-indicators {
      left: 88%;
    }
  }
  @media screen and (max-width: 600px) {
    & form {
      bottom: -37%;
    }
    & {
      margin-bottom: 200px;
    }
  }
}

/* tour categories */
.tourCategories {
  background: url("../img/category_bg_1.png") center no-repeat;
  background-size: cover;
  .item {
    height: 250px;
    margin-inline: 20px;
  }
  .slick-slide[data-slick-index="0"] {
    rotate: -6deg;
    transform: translateY(24px);
  }
  .slick-slide[data-slick-index="1"] {
    rotate: -3deg;
    transform: translateY(5px);
  }
  .slick-slide[data-slick-index="3"] {
    rotate: 3deg;
    transform: translateY(5px);
  }
  .slick-slide[data-slick-index="4"] {
    rotate: 6deg;
    transform: translateY(25px);
  }
  .slick-dots {
    bottom: 5px;
  }
  .item figure {
    height: 200px;
    img {
      transition: all 1s;
    }
  }
  .item:hover img {
    scale: 1.1;
  }
  .item:hover figcaption {
    transform: translateY(0%);
  }
  .item figcaption {
    transform: translateY(-100%);
    transition: all 1s;
  }
}

/* destination  */
.destination {
  /* .card{height: 100%;} */

  .swiper-slide {
    filter: blur(3px);
  }
  .swiper-slide.swiper-slide-next {
    filter: blur(0px);
  }
  @media screen and (max-width: 992px) {
    .swiper-slide.swiper-slide-next,
    .swiper-slide.swiper-slide-active {
      filter: blur(0px);
    }
  }
}

/* recent gallery */
.gallery {
  .parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 14px;
  }

  .div1 {
    grid-area: 2 / 1 / 4 / 2;
  }
  .div2 {
    grid-area: 1 / 2 / 3 / 3;
  }
  .div3 {
    grid-area: 3 / 2 / 5 / 3;
  }
  .div4 {
    grid-area: 1 / 3 / 5 / 4;
  }
  .div5 {
    grid-area: 1 / 4 / 3 / 5;
  }
  .div6 {
    grid-area: 3 / 4 / 5 / 5;
  }
  .div7 {
    grid-area: 2 / 5 / 4 / 6;
  }

  .cart {
    figcaption {
      transform: translateX(-100%);
      transition: all 1s;
    }

    &:hover {
      figcaption {
        transform: translateX(0%);
      }
    }
  }
}
.galleryLayer {
  min-height: 100vh;
  z-index: 99998;
  cursor: crosshair;
  figure {
    height: 500px;
    cursor: pointer;
  }
}

/* popular tour  */
.popularTour,
.team {
  background: url("../img/tour_bg_1.jpg") center no-repeat;
  background-size: cover;

  .tour {
    transition: all 1s;
    &:hover {
      transform: translateY(-5px) scale(1.03);
    }
  }
}

/* team */
.team {
  .cart {
    margin-inline: 10px;
    figure {
      width: 120px;
      height: 120px;
      top: 3%;
      left: 50%;
      transform: translate(-50%, -50%);
      img {
        transition: all 1s;
      }
    }
    figcaption {
      background-color: #cef2fa;
      a {
        color: var(--secondColor);
        border: 1px solid var(--secondColor);
        width: 2rem;
        height: 2rem;
        transition: all 1s;
      }
      transition: all 1s;
    }
    &:hover {
      figure img {
        scale: 1.03;
        rotate: 13deg;
      }
      figcaption {
        background-color: var(--secondColor);
        color: #fff;
        a {
          color: #fff;
          border: 1px solid #fff;
        }
      }
    }
  }
}

/* testmonial */
.testmonial {
  .slick-slide.slick-current.slick-active.slick-center {
    transform: translateY(-25px);
    .quote {
      background-color: var(--mainColor);
    }
  }
  .cart {
    background-color: #cef2fa;

    figure {
      width: 80px;
      height: 80px;
    }

    .quote {
      bottom: -24%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
    }
  }
}

/* news */
.news {
  background-color: #cef2fa;
  margin-top: 100px;
  h5 {
    transition: all 0.8s;
  }
  figure {
    height: 300px;
    img {
      transition: all 1s;
    }
  }
  .item:hover {
    img {
      scale: 1.3;
      rotate: 5deg;
    }
    h5 {
      color: var(--secondColor);
    }
  }
}

/* counterDesc */
.counterDesc {
  /* .row{height: 500px;} */
  .col-lg-4:nth-child(odd) {
    margin-top: 120px;
  }
  @media (max-width: 567px) {
    .col-lg-4:nth-child(odd) {
      margin-top: 20px;
    }
    .countBox {
      margin-inline: auto;
    }
  }
  .countBox {
    width: 240px;
    height: 240px;
    .countContent {
      background-color: #cef2fa;
      width: 200px;
      height: 200px;
    }
  }
  .countBox::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    background-color: var(--secondColor);
    top: -2%;
    left: 50%;
    animation: spin 2.2s ease 0s infinite normal none;
    animation: wave 2.2s ease 0s infinite normal none;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg) translate(-165px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-165px) rotate(-360deg);
  }
}

@keyframes wave {
  0%,
  80%,
  100% {
    /* transform: scale(1); */
    box-shadow: 0 0 0 9px #1ca8cb21;
  }
  20%,
  70% {
    /* transform: scale(1.2); */
    box-shadow: 0 0 0 9px #1ca8cb60;
  }
  40%,
  60% {
    /* transform: scale(1.3); */
    box-shadow: 0 0 0 9px #1ca8cb89;
  }
  50%,
  55%,
  59% {
    box-shadow: 0 0 0 9px #1ca8cbb1;
  }
}

footer {
  margin-top: 90px;
  .social-links .icon:hover {
    background-color: var(--mainColor);
    color: #fff;
  }
  .contactLink a {
    color: var(--mainColor);
    transition: all 0.8s;
  }

  .contactLink a:hover {
    color: var(--secondColor);
  }

  figure.profile {
    img,
    figcaption {
      transition: all 1s;
    }
    figcaption {
      transform: translateX(-100%);
    }
  }
  figure.profile:hover {
    img {
      rotate: 6deg;
      scale: 1.08;
    }
    figcaption {
      transform: translateX(0%);
    }
  }
  .copyright {
    margin-inline: -12px;
    background: url("../img/copyright_bg_1.jpg") center no-repeat;
    background-size: cover;
  }
}


/* about */
/* section banner  */
.banner{
  overflow: hidden;
  /* padding-top: 80px; */
   figure {
    height: 60vh;
    transition: all 1s;
  }

   figcaption {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -80%);
  }

   figure:hover {
    transform: scale(1.1);
  }
}

.services{
  .item{
    transition: all 1s;
    figure{
      height: 250px;
      img{transition: all 1s;}
      &:hover img{
        transform: rotate(4deg) scale(1.1);
      }
    }
    figcaption{background-color: #E9F6F9;}

    &:hover{transform: translateY(-14px);}
  }
}

/* faq */
/* more question */
.moreQuestion{
  background: url('../img/tour_bg_1.jpg') center no-repeat;
  background-size: cover;
  margin-top: 100px;
  form .row{
    i{
      top: 20%;
      right: 40px;
    }
  }
}

/* services page */
.experience{
  .controls button {
    transition: 0.8s all;
  }

  .controls button:focus {
    background-color: #fff;
    box-shadow: var(--shadow);
    color: var(--mainColor);
    border: 1px solid var(--mainColor);
  }

}

/* tour details */
.tourDetails{
  .mainImgSlider img{height: 500px;}

  .imgSlider .col-3{
    height: 120px;
  }

  .slick-prev, .slick-next{
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50px;
    z-index: 9;
    background-size: cover;

  }
  .slick-prev{
    background: url('../img/left-arrow.svg') center no-repeat;
    left: 5%;
  }
  .slick-next{
    background: url('../img/right-arrow.svg') center no-repeat;
    right: 5%;
  }
  .slick-prev:before, .slick-next:before{
    color: var(--mainColor);
    font-size: 40px;
    content: '';

  }

  .clientImg{
    width: 120px;
    height: 120px;
  }

  .searchBar{background-color: #cef2fa;}
  .asideBar{
    a{color: var(--mainColor);transition: all 1s;}
    a:hover{color: var(--secondColor);}
    .support{
      background: url('../img/hero_bg_1_1.jpg') 58%  no-repeat;
      background-size: cover;
    }
  }

}

/* end */


/* spacial box for icon */

.discount .splash::after {
  content: "free 50%";
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
}

.signUp .spanLine::before {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #bbb;
  position: absolute;
  top: 20px;
  left: 50px;
}

.populerTag .pTags a button {
  /* width: 100px; */
  margin-bottom: 10px;
}

.pagination a:focus,
.pagination a:hover:not(:focus) {
  background-color: var(--mainColor);
  color: white;
}

/* help center */
.headSec {
  height: 70vh;
}
.searchBox {
  width: 60%;
}
.searchBtn {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-2%, -50%);
}

@media screen and (max-width: 600px) {
  .searchBox {
    width: 95%;
  }
}

.termsHeader li {
  transition: all 0.3s;
  border-radius: 5px;
  cursor: pointer;

  &:hover {
    border-left: 3px solid var(--mainColor);
    background-color: #fff;
    color: var(--mainColor);
  }
}

/* user profile */
.userProfile figure + ul li {
  margin-block: 5px;
  background-color: var(--mainColor);
  border-radius: 10px;
  transition: all 0.8s;
}
.userProfile figure + ul li:hover,
.userProfile figure + ul li:focus {
  background-color: #204764;
  margin-left: 25px;
  border-radius: 10px;
}

/* calender 'tour details */

#calender-popup {
  @import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

  :root {
    --text-color: #1d1d1d;
  }
  & .container {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  & .calendar {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
  }
  & .calendar .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ccc;
  }
  & .calendar .header .month {
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color);
  }
  & .calendar .header .btns {
    display: flex;
    gap: 10px;
  }
  & .calendar .header .btns .btn {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  & .calendar .header .btns .btn:hover {
    background: var(--mainColor);
    transform: scale(1.05);
  }
  & .calendar .weekdays {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  & .calendar .weekdays .day {
    width: calc(100% / 7 - 10px);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
  & .calendar .days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  & .calendar .days .day {
    width: calc(100% / 7 - 10px);
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s;
    user-select: none;
    /* box-shadow: var(--shadow); */
  }
  /* & .calendar .days .day:not(.next):not(.prev):hover {
    color: #fff;
    background: var(--mainColor);
    transform: scale(1.05);
  } */
  /* & .calendar .days .day.next,
  & .calendar .days .day.prev {
    color: #f11616;
  } */
  & .calendar .days .day.today {
    color: #fff;
    background: #ccc;
    /* background: #0D6EFD; */
    transition: all 1s;
  }
  & .calendar .days .day.avaliable {
    color: #000;
    border: #00000030 solid 1px;
    /* background: #198754; */
    transition: all 1s;
  }
  & .calendar .days .day.avaliable:hover,
  & .calendar .days .day.today:hover {
    color: #fff;
    background: var(--mainColor);
    transform: scale(1.1);
  }
  & .calendar .days .day.unavaliable {
    color: #fff;
    background: #dc3545;
  }
}

/* sign up */

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(2, 0, 0, 0.6);
  z-index: 9999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.9;
}

.login-register-popup.active {
  visibility: visible;
  opacity: 1;
}

.login-register-popup {
  background: #ffffff;
  position: absolute;
  position: fixed;
  top: 58%;
  left: 50%;
  width: 65%;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9999998;
  -webkit-box-shadow: 0px 2px 69px #97a1b238;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 10px;
}

.login-register-popup-wrap .shape-thumb {
  position: absolute;
  top: -44px;
  left: -9px;
  z-index: 8;
}

.login-form-wrap {
  background: #ffffff;
  margin: 20px 50px 20px 80px;
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  -webkit-box-shadow: -1px 12px 21px #071c5526;
  box-shadow: -1px 12px 21px #071c5526;
}
.login-form-wrap:after {
  content: "";
  position: absolute;
  left: -27px;
  right: 0;
  top: 5%;
  bottom: 0;
  height: 90%;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.95;
}
.login-form-wrap h4 {
  font-weight: 700;
  margin-bottom: 40px;
}
.login-form-wrap .single-input-wrap {
  position: relative;
}
.login-form-wrap .single-input-wrap input {
  font-weight: 200;
  margin-bottom: 10px;
}

.login-form-wrap .single-input-wrap .single-input-title {
  font-weight: 400;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3px;
  height: 79%;
  width: 45px;
  text-align: center;
  border-left: 1px solid #cfd3de;
  font-weight: 200;
}
.login-form-wrap .single-input-wrap .btn {
  margin-top: 20px;
  height: 40px;
}

.login-form-wrap .social-wrap p {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .login-register-popup {
    width: 100%;
  }
  .login-form-wrap {
    margin: 10px;
  }
}

/* make trip */
.pointer,
input,
input + label {
  cursor: pointer;
}

/* #makeTrip figcaption {
  transform: translateY(0%);
  overflow: hidden;
} */

.tourDestinationCard .card_data {
  background-color: antiquewhite;
}

#makeTrip figure i {
  transform: translateX(300%);
  transition: all 1s;
}

#makeTrip figure img,
#makeTrip figure .card_data {
  transition: all 1s;
}
#makeTrip figure:hover img {
  transform: scale(1.1);
}

/* @media (max-width: 767px) {
  #makeTrip figcaption {
    justify-content: center;
  }
  #makeTrip figcaption h3 {
    font-size: 40px;
  }
} */

#makeTrip #main input[type="radio"],
#makeTrip #main input[type="checkbox"],
#makeTrip input[name="date_approximate_start"] {
  visibility: hidden;
}
#makeTrip figure:hover i,
#makeTrip input:checked + label figure i {
  transform: translateY(0);
}
#makeTrip figure:hover .card_data,
#makeTrip input:checked + label .card_data {
  background-color: var(--mainColor);
  color: white;
}

#makeTrip input[type="radio"]:checked + label,
#makeTrip input[type="radio"]:checked {
  accent-color: var(--mainColor);
  color: var(--mainColor);
}

#makeTrip #secondSec button,
#makeTrip #lastSec button {
  margin-inline: 5px;
}

#makeTrip input:not([type="range"]) {
  border: #dee2e6 1px solid;
  width: unset;
}

#makeTrip #lastSec textarea {
  outline: 0;
  width: 100%;
}

#makeTrip input.w-20 {
  width: 20px;
}
followMain,
.destinations {
  padding-top: 50px;
  background: url(../img/bottom-shape2.webp);
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;

  .row div:hover .iconBox {
    animation: myAnim 4s ease 0s infinite normal forwards;
  }
  .imageBox {
    height: 500px;
  }
  .imageBox .figLayer {
    transform: scale(0);
    transition: 1s all;
  }
  .imageBox .figLayer2 {
    transform: scale(0);
    transition: 1s 0.5s all;
  }
  .imageBox:hover .figLayer,
  .imageBox:hover .figLayer2 {
    transform: scale(1);
  }

  .imageBox img {
    transition: 1s all;
  }
  .imageBox:hover img {
    transform: scale(1.2);
  }
}

.shortLife figure.imageBox {
  animation: myAnim 8s ease 0s infinite normal forwards;
}

.exploration {
  .cartLayer {
    position: absolute;
    inset: 0;
    background-color: var(--mainColor);
    opacity: 0;
    transform: translateY(-100%);
    transition: 1s all;
  }

  .cart img {
    height: 300px;
    transition: 1s all;
  }
  .cart:hover img {
    transform: rotate(5deg) scale(1.1);
  }
  .cart:hover .cartLayer {
    transform: translateY(0);
    opacity: 0.3;
  }
  .cart:hover {
    border-color: var(--mainColor);
  }
  .cart figcaption.bg-dark{
    height: 60px;
  }
}

.startJourney {
  .row.x{
    height: 280px;
  }
  .desc {
    background: url("../img/wc-bg2.webp") center center no-repeat;
    background-size: cover;
  }
  .layer {
    width: 350px;
    top: 34%;
    left: 40%;
  }
}

.specialOffer {
  background: url("../img/dis-bg.webp") center center no-repeat;
  background-size: cover;
  h3 {
    font-size: 150px;
    font-weight: bolder;
  }
  .layer {
    animation: myAnim 6s ease 0s infinite normal forwards;
    width: 200px;
    top: -20%;
    bottom: -20%;
    left: 40%;
    transform: translate(-50%, 0);
  }
}


.review {
  .carousel-indicators {
    right: -100px;
    bottom: -10px;
    left: 250px;
  }
  .carousel-indicators button {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    border-radius: 50%;
  }
  .carousel-indicators .active {
    opacity: 1;
    border: 5px solid red;
    transform: scale(1.1);
  }
}

.favVideos {
  background: url("../img/exp-bg.webp") center center no-repeat;
  background-size: cover;

  .videoLayer {
    width: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 1s all;
  }
  .imageBox .figLayer {
    transform: scale(0);
    transition: 1s all;
  }
  .imageBox .figLayer2 {
    transform: scale(0);
    transition: 1s 0.5s all;
  }
  .imageBox:hover .figLayer,
  .imageBox:hover .figLayer2 {
    transform: scale(1);
  }

  .imageBox img {
    transition: 1s all;
  }
  .imageBox:hover img {
    transform: scale(1.2);
  }
  .imageBox:hover .videoLayer {
    opacity: 1;
  }
}

.favTour{
    min-height: 100vh;
    & .x{
      background: url('../img/fv-bg.webp') center center no-repeat;
      background-size: cover;
      padding-top: 70px;
    }
    & .y{
      background: url('../img/fv-img1.webp');
      background-size: cover;
      background-attachment: fixed;
      padding-top: 70px;
    }
}

/* end */

/* popular destination */

.destinationCard:hover .destinationLayer {
  transform: translateY(0%);
}

.destinationLayer {
  inset: 0;
  background-color: #00000060;
  transform: translateY(100%);
  transition: all 1s;
}

/* trending destinations*/

.trending {
  .card {
    transition: all 1s;
  }
  .card:hover {
    transform: translateY(-20px);
    border: 1px solid var(--secondColor);
  }
}

.destinationCard:hover .destinationLayer {
    transform: translateY(0%);
  }

  .destinationLayer {
    inset: 0;
    background-color: #00000060;
    transform: translateY(100%);
    transition: all 1s;
  }

  /* trending destinations*/

  .trending {
    .card {
      transition: all 1s;
    }
    .card:hover {
      transform: translateY(-20px);
      border: 1px solid var(--secondColor);
    }
  }
  @media (min-width: 767px) {
    .destinationSlider {
      display: none;
    }
  }

@media (max-width: 650px) {

    main .caption {
    width: 100%;
    }

    .specialInquire{
      display: unset;
    }

    .destinations {
      .imageBox{height: 400px;}
      .row>div{
        width: 70%;
      }
    }
    form.row > div{
        width: 48%;
      }

  }

  .bg-dark.text-white.content.position-absolute.dess.px-3.py-2.rounded-pill {
    left: 32% !important;
    bottom: -3%;
  }

  .dropdown-item {
    color: #fff;
}


