/* GOOGLE FONT LINK */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* RESET DEAFULT CSS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none;
    /* overflow-x: hidden; */
}
a{
  text-decoration: none;
}
input:focus{
  border: none !important;
}
/* BODY STYLING */
body{
    font-family: Montserrat, sans-serif !important;
    background: #f9f9f9;
    max-width: 99%;
}

/* MAIN NAVIGATION STYLE */
header .row{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 25px 35px;
    background-color: #fff;
}
header .logo,
header .dropdown{
    display: inline-block;
    width: auto;
}

header .logo{
    width: 70px;
}
header .logo-container{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
header span{
  display: inline-block;
  width:  auto !important;
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
/* HERO BANNER SECTION STYLING */
.hero-banner{
    background: url(./img/bg.webp);
    /* filter: blur(0.5px); */
    height: 570px;
    border-radius: 0 0 40px 40px;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: top;
    width: 100%;
    position: relative;
    z-index: 0;
    /* background-position: 0px -150px; */
    background-repeat: no-repeat;
}
/* BANNER CONTENT AREA */
.banner-text-content{
    margin: auto;
    padding: 72px 0;
    max-width: 1248px;
}
.hero-banner .banner-text-content h1,
.hero-banner .banner-text-content h4{
    color: #fff;
}
.hero-banner .banner-text-content h1{
        font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    /* text-transform: uppercase; */
    letter-spacing: 0;
    text-align: left;
    color: #fff;
    margin: 0;
    /* box-shadow: 0 4px 11px 0 rgba(24, 40, 15, .08); */
}
.hero-banner .banner-text-content h4{
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0;
    text-align: left;
    color: #fff;
    margin: 0;
    /* box-shadow: 0 4px 11px 0 rgba(24, 40, 15, .08); */
}
/* BANNER FORM AREA */
.banner-form form{
    justify-content: center;
}
.banner-form::before{
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 10px 27.6px rgba(0, 0, 0, .25);
    will-change: -webkit-backdrop-filter;
}
.banner-form{
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: max-content;
    /* max-height: 88px; */
    border-radius: 24px;
}
.banner-form form{
    position: relative;
    z-index: 5;
    padding: 5px 25px;
}
.banner-form form select{
    width: 130px ;
}
.banner-form form select,
.banner-form form #departure-date,
.banner-form form #return-date,
.banner-form form #class-type,
.banner-form form #num-adults{
    /* padding: 12px 15px; */
    border: 1px solid #fff;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: transparent;
    /* color: #000; */
    
}
.banner-form form #departure-date,
.banner-form form #return-date{
    border-bottom-left-radius:0;
}
.banner-form form #departure-date,
.banner-form form #return-date,
.banner-form form #class-type,
.banner-form form #num-adults{
    /* width: 135px; */
    height: 25px !important;
    color: #fff;
    font-weight: 700;
}
.input-group-text{
    background: transparent;
}
select option{
  
  background-color: #ffffff;
  color: #000;
}
.button-wrapper{
    display: flex;
    height: auto;
    flex: 1 1 auto;
    margin: 8px;
    justify-content: center;
    max-width: 209px;
    width: 100%;
    z-index: 2;
}
.search-button{
      background-color: #eca502;
    box-shadow: none;
    color: #484848;
    flex: 1 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    height: 75px;
    cursor: pointer;
}
/* FORM INPUT STYLE */
.input-border-bottom{
    border: none !important;
    /* border-bottom: 1px solid #fff !important; */
}
/* PROVIDER SECTINO */
section#provider{
    margin: 48px 0;
}
section#provider h2 {
    text-align: center;
    font-size: 24px;
    margin: 0 auto;
}
section#provider .wrapper {
    max-width: 628px;
    margin: 0 auto;
}
#provider .img-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}
#provider .img-grid img {
    max-width: 24%;
    height: auto;
    margin-bottom: 18px;
    padding: 10px;
}
/* POPULAR DESTINATION SECTION  */
#destination.destination{
    padding: 56px 96px;
    background-color: #fff;
}

#destination h3{
    max-width: 1248px;
    margin: 0 auto 16px;
}
#destination .destination-card{
    margin: 0 auto;
    max-width: 1248px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#destination .destination-card .card{
    flex: 1 1 30%;
    margin: 0 16px;
    border: none;
    
}
#destination .destination-card .card:first-child, 
#destination .destination-card .card:nth-of-type(4){
    margin-left: 0;
}
#destination .destination-card .card:first-child{
    margin-bottom: 48px;
}
#destination .destination-card .card img{
    width: 100%;
    height: 248px;
    border-radius: 20px;
    transition: 0.4s;
}
#destination .destination-card .card:hover img{
  transform: scale(1.05);
}
#destination .destination-card .card a{
    text-decoration: none;
}
#destination .destination-card .card h5{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-top: 12px;
    margin-bottom: 0;
    color: #000;

}
#destination .destination-card .card p{
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    margin-top: 4px;
    color: #000;
}

/* HOME PAGE END */
/* ABOUT US PAGE STYLING */
.aboutus .container,
.term-of-use .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.aboutus .container .row h1,
.term-of-use .container .row h1{
  font-size: 32px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0;
  margin-block-start: 1em;
  margin-block-end: .25em;
} 
.aboutus .container .row h2,
.term-of-use .container .row h2{
      font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0;
    margin-block-start: 1em;
    margin-block-end: .25em;
}
.term-of-use .container .row h3{
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0;
    margin-block-start: 1em;
    margin-block-end: .25em;
}
.aboutus .container .row p,
.term-of-use .container .row p{
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0;
  margin-top: 0;
}

.aboutus .container .row .contactus-section{
  text-align: center;
}
.aboutus .container .row .contactus-section a.button {
  display: inline-block;
  padding: 12px 24px;
  text-transform: uppercase;
  color: #fff;
  background-color: #0289e4;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .3);
  transform: scale(1);
  transition: background-color .15s 
  ease-in-out;
}
.aboutus .container .row .contactus-section a.button:hover{
  background-color: #036cb3;
  
}
/* PRIVACY POLICY PAGE */
section.privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
section.privacy-policy .container .row h1{
  margin-top: 52px;
}
section.privacy-policy .container .row h2{
    font-size: 32px;
    line-height: 48px;
    /* margin-block-start: 0.83em; */
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
section.privacy-policy .container .row h3 {
    font-size: 24px;
    line-height: 36px;
    /* margin-block-start: 1em; */
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
section.privacy-policy .container .row p{
    display: block;
    /* margin-block-start: 1em; */
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

section.privacy-policy .container .row ul{
  display: block;
  list-style-type: disc;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
section.privacy-policy .container .row li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    font-size: 16px;
    line-height: 28px;
}
section.privacy-policy .container .row li p{
  margin-bottom: 16px;
}
/* CONTACT US SECTION */
.contactus .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.contactus .container .row h1{
  margin-top: 40px;
}
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form label {
    display: block;
    margin-bottom: 10px;
}
.contact-form input[type=email], .contact-form input[type=text], .contact-form textarea{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form textarea {
    resize: none;
    height: 150px;
    min-height: 150px;
}
.g-recaptcha {
    margin-bottom: 20px;
}
.contact-form button{
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
/* FOOTER SECTION */
footer#footer.footer{
    border-top: 1px solid #d1d4cf;
    margin-top: 122px;
    background-color: #f9f9f9;
}
footer .wrapper{
    height: 100%;
    padding: 32px;
    padding-bottom: 16px;
    max-width: 100% !important;
}
footer .footer-links{
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left;
    align-items: center;
}
footer .footer-links li{
    margin: 0 16px;
    color: #333;
    margin-bottom: 16px;
    font-size: 12px;
}
footer .footer-links li a{
    color: #333;
    text-decoration: none;
}


/* FORM STYLING */
.input-group{
  align-items: center;
  border-right: 1px solid #f9f9f9;
}
.input-group-text.input-border-bottom{
  display: flex;
  flex-direction: column;
  align-items: start;
}
.input-group-text.input-border-bottom label{
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    color: #ffffffcc;
}
.input-group-text.input-border-bottom input{
    border: none;
    display: block;
    position: relative;
    width: 100%;
    z-index: 9;
    background: 0 0;
    padding: 0;
    height:25px !important;
    /* padding-left: 40px; */
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    color: #fff;
    padding-left: 0px;
}
/* AIRPORT INPUT DORPDOWN */
/* body {
  margin: 50px;
} */

.form-group {
  margin-bottom: 20px;
}
.control-label {
  display: block;
}
.input-group img{
  width: 25px;
  height: 25px;
}
.autocomplete-wrapper {
  position: relative;
}
input.autocomplete-wrapper  {
  width: 100%;
}
.input-group-text.input-border-bottom input::placeholder{
  color: #fff;
}
.input-group-text.input-border-bottom input::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}
.autocomplete-results {
  outline: none;
  text-align: left;
  position: absolute;
  background: white;
  z-index: 1;
  top: 100%;
  left: 0;
  font-size: 13px;
  
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.input-group.seats{
  border-right: none;
}
.autocomplete-result {
  padding: 12px 15px;
  /* border-bottom: solid 1px #eee; */
  cursor: pointer;
  border: none !important;
}

.autocomplete-result:last-child {
  border-bottom-width: 0;
}

.autocomplete-location {
  opacity: 0.8;
  font-size: smaller;
}

.autocomplete-results[data-highlight="0"] > :nth-child(1) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="1"] > :nth-child(2) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="2"] > :nth-child(3) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="3"] > :nth-child(4) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="4"] > :nth-child(5) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="5"] > :nth-child(6) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="6"] > :nth-child(7) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}

.autocomplete-results[data-highlight="7"] > :nth-child(8) {
  color: white;
  background: #26c9ff;
  border-bottom-color: #26c9ff;
  outline: solid 1px #00b6f2;
}
.autocomplete-wrapper {
  position: relative;
  width: 100%;
}
.autocomplete-results {
  position: absolute;
  background: white;
  /* border: 1px solid #ccc; */
  width: 100%;
  z-index: 1000;
  border: none !important;
}
.autocomplete-result:hover {
  background-color: #f1f1f1;
}
/* Added ON 05-11-2025 */
.input-group.seats{
  position: relative;
}
.traveller-container{
    width: 350px;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 75px;
    left: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.adult,.children{
      display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    
}
.adult p,
.children p{
  margin: 10px 0;
}
.hidden{
  display: none;
}
.adult-wrapper,
.children-wrapper{
  height: 40px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);

}
.adult-wrapper span,
.children-wrapper span{
  width: 100%;
  text-align: center;
  font-size:16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.adult-wrapper span.adult-num,
.children-wrapper span.children-num{
  font-size: 14px;
  border-right: 2px solid rgba(0,0,0,0.2);
  border-left: 2px solid rgba(0,0,0,0.2);
  pointer-events: none;
}
#adult-seats-display-span,
#adult-seats-display,
#children-seats-display,
#children-seats-display-span{
      font-size: 14px;
    margin-bottom: 0px;
    color: #fff;
    font-weight: bold;
    width: 90px;
    text-align: left;
}




/* RESPONSIVE MEDIA QUERY */
@media screen and (max-width: 1366px) {
    .banner-form form {
    padding: 5px 10px;
}
}
@media screen and (max-width: 1024px) {
    .hero-banner{
        height: 530px;
    }
}
/* TABLET */
@media screen and (max-width: 768px) {
  body {
    /* background-color: lightgreen; */
  }
  .hero-banner{
    height: auto;
    padding-bottom: 70px;
    background-position: 0px 0px;
  }
  .banner-form form #departure-date,
  .banner-form form #return-date{
    width: 100%;
  }
  .banner-form form #class-type,
  .banner-form form #num-adults{
    width: 100%;
  }
  .hero-banner .banner-text-content h1{
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  .hero-banner .banner-text-content h4{
    font-size: 22px;
    line-height: 26px;
  }
  #destination .destination-card .card:first-child,
  #destination .destination-card .card{
    margin-bottom: 20px;
    margin-left: 16px;
  }
  .input-group{
    border-right: none;
  }
  .input-group-text.input-border-bottom{
    width: 90%;
  }
  .button{
    padding-left: 20px;
  }
  .button-wrapper{
    max-width: 100%;
  }

}
/* MOBILE 575px */
@media screen and (max-width: 575px) {
  body {
    /* background-color: lightgreen; */
  }
  header h4.logo{
    width: 100px;
  }
  .banner-text-content{
    padding: 25px 0;
  }
  .hero-banner .banner-text-content h1{
    font-size: 24px;
  }
  .hero-banner .banner-text-content h4{
    font-size: 18px;
  }
  .hero-banner .banner-text-content h1,
  .hero-banner .banner-text-content h4{
    padding: 0 25px;
    box-shadow: 0 2px 6px 0 rgba(24, 40, 15, 0.08); 
  }

   .banner-form form #class-type, .banner-form form #num-adults{
    width: 100%;
  }
  .banner-form form #departure-date, .banner-form form #return-date{
    width: 100%;
  }
  #destination.destination{
    padding: 30px;
  }

  #destination .destination-card .card{
    flex: 1 100%;
  }
  #destination .destination-card .card:first-child, #destination .destination-card .card:nth-of-type(4){
    margin-left: 16px;
  }
  #destination .destination-card .card:first-child,
  #destination .destination-card .card{
    margin-bottom: 20px;
  }

  .banner-form{
    width: 100%;
    max-width: 510px;
  }
  .banner-form form #departure-date, .banner-form form #return-date{
    width: 90%;
  }
  footer .footer-links{
    flex-direction: column;
  }
  
  .button {
      padding-right: 15px;
  }

}
@media screen and (max-width: 480px) {
  .aboutus .container{
    padding: 0 20px;
  }
    .banner-form{
    max-width: 400px;
    padding: 0;
  }
  .banner-form form #departure-date, .banner-form form #return-date{
    width: 100%;
  }
  /* ABOUT US PAGE */
  .aboutus .container .row p{
    font-size: 14px;
    line-height: 24px;
  }
  .traveller-container {
    width: 250px;
    padding: 0 0;
  }
  .button{
    padding-left: 0;
  }
}
@media screen and (max-width: 425px) {
  .banner-form {
    max-width: 340px;
    padding: 0;
}

  .banner-form form #departure-date, .banner-form form #return-date{
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
    .banner-form {
        max-width: 350px;
        padding: 0 0;
    }
        .banner-form form #departure-date, .banner-form form #return-date {
        width: 100%;
    }
}
@media screen and (max-width: 320px) {
        .banner-form {
        max-width: 300px;
        padding: 0 0;
    }
    .banner-form form #departure-date, .banner-form form #return-date {
        width: 100%;
    }
}

/* POPUP STYLING */
.preloader{
  width: 100%;
  height: 100vh;
  overflow: hidden;
   position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.preloader-container{
  /* width: 550px;
  position: relative;
  top: 50%;
  left: 50%; */
  transform: translate(-50%, -50%);
  position: absolute;
    left: 50%;
    top: 50%;
    width: 550px;
    /* height: 50px; */
    font-size: 0;

    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
   
}
.preloader-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
}
.preloader-content p{
  font-size: 24px;
}
.preloader-icon-1{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.preloader-dots{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot-loader{
  width: 20%;
      text-align: center;
    /* height: auto; */
    rotate: 90deg;
    transform: rotate(90deg);
}
.dot-loader .dot:nth-last-child(1) {animation: bounce 1.2s .05s ease-in-out infinite;}
.dot-loader .dot:nth-last-child(2) {animation: bounce 1.2s .1s ease-in-out infinite;}
.dot-loader .dot:nth-last-child(3) {animation: bounce 1.2s .15s ease-in-out infinite;}
.dot-loader .dot:nth-last-child(4) {animation: bounce 1.2s .2s ease-in-out infinite;}
.dot-loader .dot:nth-last-child(5) {animation: bounce 1.2s .25s ease-in-out infinite;}
.dot-loader .dot:nth-last-child(6) {animation: bounce 1.2s .3s ease-in-out infinite;}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 4px 0;
    border-radius: 12px;
    background-color: black;
      
}

@keyframes bounce {
    0% {transform: translate(0,0);}
    50% {background-color: #ffa620;transform: translate(0,15px);}
    100% {transform: translate(0,0);}
}
.preloader.fadeOut {
  display: none;
}