@charset "UTF-8";
/*----------------------------------------------------------------------
    Template Name: Ravelo - Travel & Tour Booking HTML Template
    Template URI: https://webtend.net/demo/html/ravelo/
    Author: WebTend
    Author URI:  https://webtend.net/
    Version: 1.0

    Note: This is Main Style CSS File. */
/*----------------------------------------------------------------------
	CSS INDEX
	----------------------

    ## Default Style
    ## Common Classes
    ## Repeat Style
    ## Padding Margin
    ## Custom Animation
    ## Header style
    ## Hero Area
    ## Banner Area
    ## Destinations Area
    ## Counter Area
    ## About Area
    ## Features Area
    ## Mobile App
    ## Testimonials
    ## Instagram
    ## Newsletter
    ## Team Area
    ## CTA Area
    ## Benefit Area
    ## Products
    ## Client Logo
    ## Contact Forms
    ## Videos
    ## Gallery
    ## Blog Area
    ## FAQs Area
    ## 404 Error
    ## Pricing
    ## Skillbar
    ## Activity Area
    ## Sidebar Widgets
    ## Main Footer */
/* -------------------------------------------------------------- */
/*******************************************************/
/******************* ## Default Style ******************/
/*******************************************************/

/* Container to handle grid layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* For full-width elements */
.full-width {
  grid-column: span 2;
}

/* Styling for personal and booking info sections */
.personal-info, .booking-info {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

/* Ensure labels are inline */
.label {
  font-weight: bold;    /* Make it bold */
  display: inline;      /* Prevent stacking */
  margin-right: 5px;    /* Add spacing between label and text */
}

/* Adjust the list layout */
ul.list-style-one.check li {
  display: flex;        /* Use flex to keep items aligned */
  align-items: baseline;
}

ul.list-style-one.check li i {
  margin-right: 10px;   /* Add spacing between the icon and text */
}


/*******************************************************/
/**************** ## Destinations Area ****************/
/*******************************************************/
.destination-item {
  color: var(--base-color);
  margin-bottom: 30px;
  background: #ECECEC;
  border-radius: 10px;
  border: 1px solid var(--border-color); }
  .destination-item .image {
    margin: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 10px; }
    .destination-item .image img {
      width: 100%;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .destination-item .image .ratting {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
      color: white;
      font-size: 18px;
      padding: 30px 50px 20px;
      background: var(--secondary-color);
      -webkit-transform: rotate(-45deg) translate(-30px, -40px);
      -ms-transform: rotate(-45deg) translate(-30px, -40px);
      transform: rotate(-45deg) translate(-30px, -40px); }
      .destination-item .image .ratting i {
        color: white;
        font-size: 16px;
        margin: 0 5px 0 0; }
    .destination-item .image .heart {
      z-index: 2;
      position: absolute;
      right: 10px;
      top: 10px;
      width: 40px;
      height: 40px;
      background: white;
      line-height: 40px;
      border-radius: 50%;
      text-align: center;
      color: var(--secondary-color); }
  .destination-item .content {
    padding: 18px 40px 40px; }
    @media only screen and (max-width: 1599px) {
      .destination-item .content {
        padding-left: 22px;
        padding-right: 22px; } }
    .destination-item .content .location {
      display: block;
      margin-bottom: 3px; }
      .destination-item .content .location i {
        margin-right: 5px; }
    @media only screen and (max-width: 375px) {
      .destination-item .content h5 {
        font-size: 22px; } }
    .destination-item .content h5 a {
      color: var(--heading-color); }
      .destination-item .content h5 a:hover {
        text-decoration: underline; }
  .destination-item .destination-footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 40px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 1599px) {
      .destination-item .destination-footer {
        padding-left: 22px;
        padding-right: 22px; } }
    .destination-item .destination-footer .price {
      font-size: 14px;
      margin-bottom: 5px; }
      .destination-item .destination-footer .price span {
        color: white;
        font-size: 24px;
        font-weight: 500; }
    .destination-item .destination-footer .read-more {
      color: var(--base-color);
      margin-bottom: 5px; }
  .destination-item:hover .image img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15); }
  .destination-item.style-two {
    background: white;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid var(--border-color); }
    .destination-item.style-two .image {
      display: inline-block; }
      .destination-item.style-two .image .heart {
        width: 30px;
        height: 30px;
        font-size: 13px;
        line-height: 30px; }
      .destination-item.style-two .image .location {
        position: absolute;
        right: 10px;
        bottom: 10px;
        font-size: 14px;
        padding: 0 10px;
        font-weight: 500;
        background: white;
        border-radius: 7px;
        color: var(--heading-color); }
        .destination-item.style-two .image .location i {
          margin-right: 5px; }
    .destination-item.style-two .content {
      position: relative;
      padding: 15px 45px 20px 30px; }
      @media only screen and (max-width: 1299px) {
        .destination-item.style-two .content {
          padding-left: 20px;
          padding-right: 35px; } }
      .destination-item.style-two .content h6 {
        margin-bottom: 0; }
        @media only screen and (max-width: 375px) {
          .destination-item.style-two .content h6 {
            font-size: 18px; } }
      .destination-item.style-two .content .time {
        font-size: 14px; }
      .destination-item.style-two .content .more {
        color: #ADADAD;
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
        @media only screen and (max-width: 1299px) {
          .destination-item.style-two .content .more {
            right: 20px; } }
    .destination-item.style-two:hover .more {
      color: var(--heading-color); }
    .destination-item.style-two.bgc-lighter {
      background: var(--lighter-color); }
      .destination-item.style-two.bgc-lighter .content {
        padding: 10px 35px 15px; }
  .destination-item.style-three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .destination-item.style-three {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .destination-item.style-three .image {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      max-width: 48%; }
      @media only screen and (max-width: 767px) {
        .destination-item.style-three .image {
          max-width: none;
          width: calc(100% - 20px); } }
    .destination-item.style-three .content {
      padding: 30px 50px 25px 40px; }
      @media only screen and (min-width: 1400px) and (max-width: 1599px) {
        .destination-item.style-three .content {
          padding-left: 15px;
          padding-right: 25px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .destination-item.style-three .content {
          padding-left: 25px;
          padding-right: 35px; } }
      @media only screen and (max-width: 767px) {
        .destination-item.style-three .content {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          padding-left: 50px;
          padding-right: 50px; } }
      @media only screen and (max-width: 479px) {
        .destination-item.style-three .content {
          padding-left: 35px;
          padding-right: 35px; } }
      @media only screen and (max-width: 375px) {
        .destination-item.style-three .content {
          padding-left: 20px;
          padding-right: 20px; } }
      @media only screen and (min-width: 1600px) {
        .destination-item.style-three .content:first-child {
          padding-left: 50px;
          padding-right: 40px; } }
      @media only screen and (min-width: 1400px) and (max-width: 1599px) {
        .destination-item.style-three .content:first-child {
          padding-left: 25px;
          padding-right: 15px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .destination-item.style-three .content:first-child {
          padding-left: 35px;
          padding-right: 25px; } }
      .destination-item.style-three .content h5 {
        max-width: 320px; }
      .destination-item.style-three .content .list-style-one {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 25px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .destination-item.style-three .content .list-style-one li:nth-child(odd) {
          width: 55%; }
        .destination-item.style-three .content .list-style-one li:nth-child(even) {
          width: 42%; }
      .destination-item.style-three .content .destination-footer {
        margin-top: 20px;
        padding: 20px 0 0; }
    .destination-item.style-three.bgc-lighter {
      color: var(--base-color);
      background: var(--lighter-color);
      border: 1px solid var(--border-color); }
      .destination-item.style-three.bgc-lighter .image .badge {
        position: absolute;
        left: 10px;
        top: 10px;
        z-index: 2;
        font-size: 16px;
        font-weight: 500;
        padding: 5px 12px;
        border-radius: 10px;
        background: var(--secondary-color); }
        .destination-item.style-three.bgc-lighter .image .badge.bgc-pink {
          background: #FD4C5C; }
        .destination-item.style-three.bgc-lighter .image .badge.bgc-primary {
          background: var(--primary-color); }
      @media only screen and (min-width: 992px) {
        .destination-item.style-three.bgc-lighter .content {
          padding-left: 30px;
          padding-right: 40px; } }
      .destination-item.style-three.bgc-lighter .content .destination-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .destination-item.style-three.bgc-lighter .content .destination-header .location {
          margin-right: 20px;
          margin-bottom: 5px; }
        .destination-item.style-three.bgc-lighter .content .destination-header .ratting {
          padding: 5px 10px;
          background: white;
          margin-bottom: 5px;
          border-radius: 30px; }
          .destination-item.style-three.bgc-lighter .content .destination-header .ratting i {
            font-size: 10px; }
      .destination-item.style-three.bgc-lighter .content h5 {
        max-width: none; }
        .destination-item.style-three.bgc-lighter .content h5 a {
          color: var(--heading-color); }
      .destination-item.style-three.bgc-lighter .content p {
        margin-top: 12px; }
      .destination-item.style-three.bgc-lighter .content .destination-footer {
        border-top-color: var(--border-color); }
        .destination-item.style-three.bgc-lighter .content .destination-footer .price span {
          color: var(--heading-color); }
        .destination-item.style-three.bgc-lighter .content .destination-footer .read-more {
          color: var(--base-color);
          text-decoration: underline; }
          .destination-item.style-three.bgc-lighter .content .destination-footer .read-more i {
            background: var(--secondary-color); }
        .destination-item.style-three.bgc-lighter .content .destination-footer .theme-btn.style-three {
          margin-bottom: 5px;
          padding: 5px 20px;
          font-size: 14px; }
    .destination-item.style-three.tour-grid {
      display: block; }
      .destination-item.style-three.tour-grid .image {
        max-width: none; }
      .destination-item.style-three.tour-grid .content {
        padding: 20px 30px 30px; }
        @media only screen and (max-width: 375px) {
          .destination-item.style-three.tour-grid .content {
            padding-left: 20px;
            padding-right: 20px; } }
        .destination-item.style-three.tour-grid .content .destination-footer {
          margin-top: 15px;
          border-top: none; }
          .destination-item.style-three.tour-grid .content .destination-footer .theme-btn.style-three:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color); }
  .destination-item.style-four {
    color: var(--base-color);
    background: var(--lighter-color);
    border: 1px solid var(--border-color); }
    .destination-item.style-four .content h5 a,
    .destination-item.style-four .destination-footer .read-more,
    .destination-item.style-four .destination-footer .price span {
      color: var(--heading-color); }
    @media only screen and (min-width: 576px) {
      .destination-item.style-four.image-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .destination-item.style-four.image-left .image {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }
      @media only screen and (min-width: 576px) {
        .destination-item.style-four.image-left .image {
          max-width: 46%; } }
    .destination-item.style-four.image-left .content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 50px 30px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      @media only screen and (max-width: 575px) {
        .destination-item.style-four.image-left .content {
          padding-top: 30px;
          padding-bottom: 40px; } }
      .destination-item.style-four.image-left .content .price {
        display: block;
        font-size: 14px;
        margin-top: auto;
        margin-bottom: 15px; }
        .destination-item.style-four.image-left .content .price span {
          font-size: 24px;
          font-weight: 500;
          color: var(--heading-color); }
      .destination-item.style-four.image-left .content .theme-btn {
        font-size: 14px;
        padding: 4px 20px; }
    .destination-item.style-four.no-border {
      border: none;
      margin-bottom: 50px;
      background: transparent; }
      .destination-item.style-four.no-border .image {
        margin: 0 0 22px; }
        .destination-item.style-four.no-border .image .badge {
          position: absolute;
          left: 10px;
          top: 10px;
          z-index: 2;
          font-size: 16px;
          font-weight: 500;
          padding: 5px 12px;
          border-radius: 10px;
          background: var(--secondary-color); }
          .destination-item.style-four.no-border .image .badge.bgc-pink {
            background: #FD4C5C; }
          .destination-item.style-four.no-border .image .badge.bgc-primary {
            background: var(--primary-color); }
      .destination-item.style-four.no-border .content {
        padding: 0; }
      .destination-item.style-four.no-border .destination-footer {
        border-top: none;
        padding: 18px 0 10px; }
      .destination-item.style-four.no-border .theme-btn.style-three {
        font-size: 14px;
        padding: 4px 20px; }

.text-white .destination-item.style-four.no-border .image .heart i {
  color: var(--secondary-color); }

.text-white .destination-item.style-four.no-border .content .location,
.text-white .destination-item.style-four.no-border .content .location i {
  color: #92A498; }

.text-white .destination-item.style-four.no-border .destination-footer .price span {
  color: white; }

.text-white .destination-item.style-four.no-border .theme-btn.style-three:not(:hover) {
  color: #92A498;
  border-color: #92A498; }
  .text-white .destination-item.style-four.no-border .theme-btn.style-three:not(:hover) i, .text-white .destination-item.style-four.no-border .theme-btn.style-three:not(:hover) span {
    color: #92A498; }

.popular-destinations-wrap {
  border: 1px solid var(--border-color); }

.destination-active {
  margin-left: -5px;
  margin-right: -5px; }
  .destination-active .destination-item.style-two {
    padding: 30px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px; }
    .destination-active .destination-item.style-two .image {
      margin: 0 0 25px;
      border-radius: 50%; }
      .destination-active .destination-item.style-two .image img {
        border-radius: 50%;
        display: inline-block; }
    .destination-active .destination-item.style-two .content {
      padding: 0; }
  .destination-active .slick-dots {
    margin-top: 50px; }

.destinations-page-area .destination-item.style-two .content {
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (max-width: 375px) {
    .destinations-page-area .destination-item.style-two .content {
      padding-left: 0;
      padding-right: 0; } }

.hot-deals-active {
  margin-left: -15px;
  margin-right: -15px; }
  .hot-deals-active .destination-item.style-four.no-border {
    margin-left: 15px;
    margin-right: 15px; }
  .hot-deals-active .slick-list {
    padding-top: 40px; }
  .hot-deals-active .slick-dots {
    margin-top: 10px; }

@media only screen and (min-width: 1200px) {
  .destination-left-content {
    margin-top: 65px; } }

.destinations-nav {
  padding: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border-color); }
  .destinations-nav li {
    cursor: pointer;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 30px; }
    @media only screen and (max-width: 991px) {
      .destinations-nav li {
        font-size: 18px; } }
    @media only screen and (max-width: 767px) {
      .destinations-nav li {
        font-size: 16px;
        padding: 5px 15px; } }
    .destinations-nav li.active {
      color: white;
      background: var(--primary-color); }
  .destinations-nav.style-two li {
    font-size: 16px;
    padding: 1px 15px; }
    .destinations-nav.style-two li.active {
      background: var(--secondary-color); }

.text-white .destinations-nav {
  border-color: rgba(255, 255, 255, 0.1); }
  .text-white .destinations-nav li:not(.active) {
    color: #92A498; }

