x/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}



.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
  .navbar-light .navbar-brand img {
    max-height: 95px;
    transition: .5s;
}
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}



.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* index style */
form {
    /* max-width: 1100px; */
    width: 100%;
  }
  
  /* Search Form */
  
  .styled-input {
    float: left;
    background: #fff;
    border: 1px solid #EFEFEF;
    border-radius: 3px; 
    width: 100%;  
  }
  
  .styled-input.multi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px 0;
    height: auto;
  }
    
   
  .styled-input .icon--check, 
  .styled-input .icon--error, 
  .styled-input .chevron-down {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 2%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 0;
  }
  
  .styled-input .icon--check,
  .styled-input .icon--error {
    display: none;
  }
   
  
  .styled-input input.success ~ .icon--check, 
  .styled-input input.error ~ .icon--error {
    display: inline-block;
  }
  
  .styled-input label.error,
  .styled-input input:focus ~ label.error, 
  .styled-input input#fn:valid ~ label.error,
  .styled-input input#ln:valid ~ label.error {
    font-size: 15px;
    text-transform: none;
    letter-spacing: normal;
    color: #ff523d;
    top: 53px;
    left: -3px;
  }
   
  
  .styled-input.multi > div { 
    width: 100%;
    border-right: 2px solid #ccc;
  }
   
  .styled-input input:focus, 
  .styled-input textarea:focus, 
  .styled-input select:focus {
    outline: none;
  }
  
  .styled-input input, 
  .styled-input textarea,  
  .styled-input select {
    color: #4A4A4A;
    border: 0;
    width: 90%;
    font-size: 18px;
    padding-top: 10px;
    background: transparent;
  }
  input {
      width:100%;
  }
 
  .styled-input input{
      padding-left:15px !important;
            padding-right:15px !important;

  }
  .styled-input select {
    width: 100%;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
    z-index: 1;
    left: 11px;
    padding-left:15px;
        padding-right:15px;

  }
  
  /* Focus Label */
  
  .styled-input input:focus ~ label, 
  .styled-input input#fn:valid ~ label, 
  .styled-input input#ln:valid ~ label, 
  .styled-input input#city[filled="true"]:valid ~ label, 
  .styled-input #select-state label {
    font-size: 13px;
    letter-spacing: 1.56px;
    color: #86b817;;
    top: -12.8px;
    -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
    -o-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
    transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  }
  
  @media (min-width: 991px) {
    .styled-input.multi {
      height: 55px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 990px) {
    .styled-input.multi {
      height: 60px;
      padding: 8px 0;
    }
    .styled-input.multi > div input {
      padding-top: 18px;
    }
    .styled-input.multi label {
      padding: 7px 0 0;
    }
    .styled-input input#fn:valid ~ label, 
    .styled-input input#ln:valid ~ label, 
    .styled-input input#city[filled="true"]:valid ~ label, 
    .styled-input.multi input:focus ~ label,
    .styled-input #select-state label {
      top: -9px;
    }
    .styled-input.multi.error {
      margin-bottom: 30px;
    }
    .styled-input label.error,
    .styled-input input:focus ~ label.error, 
    .styled-input input#fn:valid ~ label.error,
    .styled-input input#ln:valid ~ label.error {
      font-size: 13px;
      top: 53px;
    }
    .search-area .form-area button.serach-btn {
      height: 60px;
      padding: 0;
    }
  }
  
  @media (max-width: 767.98px) {
    .examples [class^="col-"] {
      padding: 0
    }
    
    .styled-input.multi > div {
      background-color: #fff;
      margin-bottom: 10px;
      display: block;
      border: 1px solid #EFEFEF;
      border-radius: 3px;
      -webkit-box-shadow: inset 0 -1px 4px 0 rgba(0,0,0,0.20);
              box-shadow: inset 0 -1px 4px 0 rgba(0,0,0,0.20);
      width: 100%;
      padding: 16px 16px 8px 11.2px;
      height: 50px;
    }
  
    .styled-input.multi {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border: 0;
      -webkit-box-shadow: none;
              box-shadow: none;
      background: transparent;
      margin-bottom: 0;
    }
  
    .styled-input.multi > div label {
      padding: 12px 0 0 12px;
    }
    .styled-input.multi > div input:valid ~ label,
    .styled-input.multi > div input:focus ~ label,
    .styled-input.multi #select-state > label {
      padding-top: 15px;
    }
  
    .styled-input.multi > div input {
              position: relative;

      padding-left: 0;
      padding-top: 0px; 
      z-index: 2;
      width: 100%;
    }
    .styled-input select { 
      padding-top: 2px;
    } 
    .styled-input.multi.error {
      margin-bottom: 0;
    }
    
    .styled-input.multi > div.error {
      margin-bottom: 30px;
    }
  
    .styled-input.multi > div.error label.error {
        padding-top: 0;
    }
  }
  
  /* Button */
  
  .no-pad-left-10 {
    padding-left: 5px;
  }
  
  @media (max-width: 991px) and (min-width: 768px) {
    .no-pad-left-10 {
      padding-left: 0px;
      margin-left: -5px;
      width: calc(16.66666667% + 5px);
    }
  }
  
  @media (max-width: 767px) {
    .no-pad-left-10 {
      padding-left: 15px;
      margin-left: 0;
    }
  } 
  .form-area button.serach-btn {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border: none;
    font-size: 24px;
    background: #81B44C;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.01px;
    width: 100%;
    height: 55px;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
  }
  
  .form-area button.serach-btn:hover {
      background: #638A3A;
      -webkit-box-shadow: -2px -2px 4px -4px rgba(0, 0, 0, 0.02), 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.14);
      box-shadow: -2px -2px 4px -4px rgba(0, 0, 0, 0.02), 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.14);
  }
  
  .form-area button.serach-btn:focus {
    outline: none;
  }
  
  @media only screen and (max-width: 991px) {
    .form-area button.serach-btn {
      font-size: 20px;
      height: 60px;
      padding: 0;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .form-area button.serach-btn {
      font-size: 22px;
      padding: 7px 20px;
      width: 100%;
      height: 50px;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      margin-top: -12px;
      margin-bottom: 20px;
    }
  }
    


/* package design */
.trip-card {
  background-color: #fff;
  padding: 0.75rem;
  box-shadow: 0 5px 15px rgba(7, 30, 62, 0.15);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.trip-card__thumb {
  position: relative;
  height: 250px;
}
.trip-card__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px; 
}
.trip-card__price {
  box-shadow: 0 5px 15px 2px #86b8173d;
  background-color: #f9a01b;
}
.trip-card__price {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: inline-block;
  padding: 0.3125rem 1.5625rem;
  color: #fff;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px; 
  font-size: 1.25rem;
  font-weight: 600;
}
.trip-card__price span {
  font-size: .875rem;
  font-weight: 400;
}
.trip-card__content {
  padding: 2.1875rem 0.625rem 0.625rem 0.625rem;
}
.trip-card__meta li {
  align-items: center;
  font-size: .875rem;
  list-style-type: none;
  margin-left:-30px;
}
.trip-card__meta li i {
  font-size: 1.125rem;
  width: 30px;
  line-height: 1;
}


 datalist {
  position: absolute; 
max-height: 15em;
  border: 0 none;
  overflow-y: auto; 
  width:300px important;
  background-color: white; 
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }

option {
      position: relative; 
  background-color: white; 
  z-index:100;
  padding:10px 15px;
  color: #000; 
  font-size: 18px;
  cursor: pointer;
  background: #fff;
  text-align:left;  
}
 
.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #000 !important;
}
  