
@font-face {
  font-family: 'SukhumvitSet-Text';
  src: url('../plugin/font/SukhumvitSet-Text.ttf');
}

/* Theme Color
  - #023366 :
  - #017bff :
*/

:root {
  --theme-bus: #023366;
  --theme-bus-hover: #1e3e61;
  
  --theme-btn-color: #ecb200;

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 20px;
  --fs-xl: 24px;

  --fz-title: 30px;

  --fw-sm: 400;
  --fw-md: 500;
  --fw-lg: 700;
  --fw-title: bold;

  --text-color: #333333;
  --muted-color: #999999;
  --gray-color: #cccccc;
  --bg-color: #f9f9f9;

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;

  --box-shadow-1: 0 5px 5px -5px #1f6fb463, 0 5px 5px -2px #1f6fb400;
  --box-shadow-2: 0 10px 10px -10px #1f6fb463, 0 10px 10px -5px #1f6fb400;
}

* {
  a {
    text-decoration: none !important;
  }
}

body {
  font-family: 'SukhumvitSet-Text', sans-serif;
  font-size: var(--fs-md);
  font-weight: var(--fw-md);
  color: var(--text-color);
  background-color: var(--bg-color);
}
.btn-search {
  font-size: 20px !important;
}
.header-v0 {
  position: sticky;
  top: 0;
  z-index: 10;

  .card-logo {
    background-color: var(--bg-color);
    padding: 5px 0;

    .wrap {
      width: 100%;
      padding: 0px 20px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;

      .logo {
        max-width: 160px;
        width: 100%;

        a {
          img {
            width: 100%;
            height: auto;
          }
        }
      }

      .manage {
        ul {
          display: flex;
          align-items: center;
          justify-content: center;
          list-style: none;
          margin: 0;
          padding: 0;

          li {
            margin-left: 15px;

            &.social {
              a {
                color: var(--text-color);
                font-size: var(--fs-lg);
                text-decoration: none;

                &:hover {
                  color: var(--theme-bus);
                }
              }
            }

            &.language {
              a {
                display: flex;
                align-items: center;
                color: var(--text-color);
                font-size: var(--fs-md);
                text-decoration: none;

                &:first-child {
                  &:before {
                    content: "";
                    display: inline-block;
                    width: 1.5px;
                    height: 20px;
                    background-color: var(--gray-color);
                    margin-right: 15px;
                  }
                }

                img {
                  width: 20px;
                  height: auto;
                  margin-right: 5px;
                }

                span {
                  font-size: var(--fs-md);
                  font-weight: var(--fw-lg);
                }

                &:hover {
                  color: var(--theme-bus-hover);
                }
              }
            }
          }
        }
      }
    }
  }

  .navbar {
    background-color: var(--theme-bus);

    .container-fluid {
      max-width: 1100px;
      width: 100%;
      padding: 0;

      .navbar-brand {
        display: none;

        img {
          width: 120px;
          height: auto;
          filter: brightness(0) invert(1);
        }
      }

      .navbar-toggler {
        border: none;
        color: var(--bg-color);

        i {
          font-size: var(--fs-xl);
        }

        &:hover {
          color: none;
        }

        &:focus {
          box-shadow: none;
        }
      }

      .navbar-collapse {
        justify-content: flex-end;

        .navbar-nav {
          .nav-item {
            .nav-link {
              color: var(--bg-color);
              font-size: var(--fs-md);
              font-weight: 500;
              text-decoration: none;
              padding: 10px 15px;

              &.active {
                text-decoration: underline;
              }

              &:hover {
                text-decoration: underline;
              }
            }
          }
        }
      }

      .card-language {
        display: none;
        align-items: center;

        a {
          display: flex;
          align-items: center;
          color: var(--bg-color);
          font-size: var(--fs-md);
          text-decoration: none;
          margin-left: 15px;

          img {
            width: 20px;
            height: auto;
            margin-right: 5px;
          }

          span {
            font-size: var(--fs-md);
            font-weight: var(--fw-lg);
          }
        }
      }
    }
  }

  @media (max-width: 991px) {
    & {
      .card-logo {
        display: none;
      }

      .navbar {
        .container-fluid {
          max-width: 100%;
          padding: 0 15px;

          .navbar-brand {
            display: block;
          }

          .navbar-collapse {
            .navbar-nav {
              .nav-item {
                .nav-link {
                  padding: 10px;
                }
              }
            }
          }

          .card-language {
            display: flex;
          }
        }
      }
    }
  }

  @media (max-width: 575px) {
    & {
      .navbar {
        .container-fluid {
          .navbar-collapse {
            .navbar-nav {
              .nav-item {
                .nav-link {
                  font-size: var(--fs-sm);
                }
              }
            }
          }

          .card-language {
            a {
              span {
                font-size: var(--fs-sm);
              }
            }
          }
        }
      }
    }
  }
}

.banner-inc {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;

  .banner-img {
    width: 100%;
    height: 100%;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }

  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;

    @media (max-width: 520px) {
      width: 90% !important
    } 

    .text-title {
      color: #fff;
      font-size: var(--fz-title);
      font-weight: var(--fw-title);
      margin: 0;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .shot-menu {
      margin-top: 15px;

      ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin: 0;
        gap: 15px;

        li {

          a {
            color: #fff;
            font-size: var(--fs-md);
            font-weight: var(--fw-md);
            text-decoration: none;

            &:hover {
              text-decoration: underline;
            }
          }

          span {
            color: #fff;
            font-size: var(--fs-md);
            font-weight: var(--fw-md);
          }

        }
      }
    }
  }

  @media (max-width: 768px) {
    & {

      .banner-text {
        .text-title {
          font-size: var(--fs-lg);
        }

        .shot-menu {
          ul {
            gap: 10px;

            li {
              a {
                font-size: var(--fs-md);
              }

              span {
                font-size: var(--fs-md);
              }
            }
          }
        }
      }
    }
  }
}

.main {
  .section-hero {
    position: relative;
    padding: 0;
    margin: 0;

    .banner-scroll-view {
      .owl-carousel {
        .item {
          width: 100%;
          height: 350px;
          overflow: hidden;

          @media (max-width: 880px) {
            height: auto;
          }

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 31%;

            @media (max-width: 880px) {
              height: auto;
            }
          }
        }
      }
    }

    .wrap-search-form {
      background-color: var(--theme-bus);

      .search-title {
        text-align: center;
        padding: 30px 15px 15px 15px;

        @media (max-width: 500px) {
          padding: 30px 0 10px 0;
        }

        h1 {
          font-size: var(--fz-title);
          font-weight: var(--fw-title);
          color: #fff;
          margin: 0;
          text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

          @media (max-width: 500px) {
              font-size: var(--fs-xl) !important;
          }
        }
      }

      .search-form {
        max-width: 1100px;
        margin: 0 auto;
        padding-bottom: 20px;

        .container-search {
          .box-centent {
            background-color: unset;
            box-shadow: unset;

            .form-search-trip {

              .card-origin,
              .card-destination,
              .card-date .group-date .card-departure,
              .card-date .group-date .card-return,
              .card-passengers-button .group-passengers .card-passenger {
                background-color: #fff;
              }
            }
          }
        }
      }
    }
  }
  .our-services,
  .section-news,
  .section-popular-routes {
    padding: 30px 15px;

    .container {
      max-width: 1100px;
      margin: 0 auto;

      .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;

        h2.title {
          font-size: var(--fs-xl);
          font-weight: var(--fw-title);
          color: var(--text-color);
          margin: 0;
        }

        .card-more {
          a {
            font-size: var(--fs-md);
            font-weight: var(--fw-md);
            color: var(--theme-bus);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;

            i {
              font-size: var(--fs-sm);
            }
          }
        }
      }
    }
  }

   .our-services {
    .card-header {
      h2.title {
        position: relative;
      }
    }

    .card-content {
      .our-service {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;

        .service-card {
          overflow: hidden;
          border: 1px solid #dbe4ef;
          border-radius: 8px;
          background-color: #fff;
          box-shadow: 0 8px 22px rgba(2, 51, 102, 0.08);

          &:hover {
            .service-image {
              img {
                transform: scale(1.05);
              }
            }
          }

          .service-image {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 8.4;
            overflow: hidden;
            background-color: #e9eef5;

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center;
              transition: transform 0.3s ease;
            }
          }

          .service-body {
            padding: 14px 18px 18px;

            h3 {
              color: var(--theme-bus);
              /* font-size: var(--fs-md); */
              font-size: 18px;
              font-weight: var(--fw-title);
              line-height: 1.35;
              margin: 0 0 8px;
            }

            ul {
              min-height: 72px;
              margin: 0 0 14px;
              padding-left: 18px;
              color: #4b5563;

              li {
                font-size: var(--fs-sm);
                font-weight: var(--fw-md);
                line-height: 1.45;
                margin-bottom: 4px;

                &::marker {
                  color: var(--theme-bus);
                  font-size: 0.75em;
                }
              }
            }

            .service-link {
              width: 100%;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              min-height: 34px;
              padding: 7px 16px;
              border: 1px solid #023366;
              border-radius: 6px;
              color: #fff;
              background-color: #023366;
              font-size: var(--fs-sm);
              font-weight: var(--fw-lg);
              text-decoration: none;
              transition: background-color 0.2s ease, color 0.2s ease;

              &:hover {
                color: #fff;
                background-color: var(--theme-bus);
                opacity: .9;
              }
            }
          }
        }

        @media (max-width: 768px) {
          & {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 550px) {
          & {
            grid-template-columns: 1fr;

            .service-card {
              .service-body {
                ul {
                  min-height: unset;
                }
              }
            }
          }
        }
      }
    }
  }

  .section-news {
    .card-content {
      .wrap-news {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;

        .item-news {
          height: 200px;
          width: 100%;
          overflow: hidden;
          border-radius: 10px;

          &:hover {
            img {
              transform: scale(1.05);
            }
          }

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
          }
        }

        @media (max-width: 768px) {
          & {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 550px) {
          & {
            grid-template-columns: 1fr;

            .item-news {
              height: 300px;
            }
          }
        }
      }
    }
  }

  .section-popular-routes {
    background-color: var(--bg-color);

    .card-content {
      .wrap-popular-routes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;

        .item-route {
          display: flex;
          flex-direction: column;
          border-radius: 10px;
          overflow: hidden;
          text-decoration: none;

          .route-image {
            width: 100%;
            height: 250px;
            overflow: hidden;

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center;
              transition: transform 0.3s ease;
            }

            &:hover {
              img {
                transform: scale(1.05);
              }
            }
          }

          .route-info {
            background-color: var(--theme-bus);
            color: #fff;
            padding: 15px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;

            .route-name {
              font-size: var(--fs-md);
              font-weight: var(--fw-lg);
              margin: 0;
            }

            .route-price {
              font-size: var(--fs-md);
              font-weight: var(--fw-lg);
              margin: 0;
            }
          }
        }

        @media (max-width: 768px) {
          & {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 550px) {
          & {
            grid-template-columns: 1fr;

            .item-route {
              .route-image {
                height: 300px;
              }
            }
          }
        }
      }
    }
  }
}

.content-page {
  padding: 30px 15px;

  .wrap {
    max-width: 1100px;
    margin: 0 auto;

    .content {

      &.about {
        .about-article {
          max-width: 960px;
          margin: 0 auto;
          color: var(--text-color);
          background-color: transparent;

          hr {
            border: 0;
            border-top: 1px solid #dddddd;
            margin: 34px 0;
            opacity: 1;
          }
        }

        .about-title {
          color: var(--text-color);
          font-size: 28px;
          font-weight: var(--fw-title);
          line-height: 1.45;
          margin: 0 0 22px;
        }

        .about-section {
          margin: 0;

          p {
            color: var(--text-color);
            font-size: var(--fs-md);
            font-weight: var(--fw-md);
            line-height: 1.85;
            margin: 0 0 16px;
          }

          strong {
            font-weight: var(--fw-title);
          }

          p:last-child {
            margin-bottom: 0;
          }

          h3 {
            color: var(--text-color);
            font-size: var(--fs-xl);
            font-weight: var(--fw-title);
            line-height: 1.45;
            margin: 0 0 18px;
          }
        }

        .about-certificate {
          margin: 30px 0 26px;
          padding: 26px;
          box-shadow: var(--box-shadow-1);
        }

        .certificate-content {
          display: grid;
          grid-template-columns: 1fr;
          gap: 22px;
          align-items: start;
        }

        .certificate-copy {
          max-width: 760px;
          margin: 0 auto;
          text-align: center;

          h3 {
            margin-bottom: 12px;
          }

          p {
            margin-bottom: 0;
          }
        }

        .certificate-figure {
          max-width: 420px;
          margin: 0;
          margin-left: auto;
          margin-right: auto;
        }

        .certificate-image-frame {
          overflow: hidden;
          background-color: #ffffff;
          border: 1px solid #dddddd;
          border-radius: 4px;
          box-shadow: var(--box-shadow-2);

          img {
            display: block;
            width: 112%;
            max-width: none;
            height: auto;
          }
        }

        .certificate-figure {
          figcaption {
            color: #666666;
            font-size: var(--fs-sm);
            font-weight: var(--fw-md);
            line-height: 1.6;
            margin-top: 10px;
            text-align: center;
          }
        }

        .about-list {
          margin: 0 0 20px 32px;
          padding: 0;
          color: var(--text-color);
          font-size: var(--fs-md);
          font-weight: var(--fw-md);
          line-height: 1.85;
          list-style: disc;
        }

        .about-list li {
          margin-bottom: 2px;
        }

        .mission-list {
          display: grid;
          gap: 18px;
        }

        .mission-item {
          padding: 0;

          h4 {
            color: var(--text-color);
            font-size: var(--fs-md);
            font-weight: var(--fw-title);
            line-height: 1.65;
            margin: 0 0 2px;
          }

          p {
            margin: 0 0 20px 10px;
            padding-left: 10px;
            position: relative;
          }

          p::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
          }
        }

        @media (max-width: 768px) {
          & {
            .about-title {
              font-size: 24px;
            }

            .about-article {
              hr {
                margin: 28px 0;
              }
            }

            .certificate-content {
              grid-template-columns: 1fr;
            }

            .certificate-figure {
              max-width: 360px;
              margin: 0 auto;
            }
          }
        }

        @media (max-width: 600px) {
          & {
            .about-section {
              p {
                font-size: var(--fs-sm);
              }
            }

            .about-section {
              h3 {
                font-size: var(--fs-lg);
              }
            }

            .about-certificate {
              margin: 24px 0 22px;
              padding: 18px;
            }

            .about-list {
              font-size: var(--fs-sm);
              margin-left: 24px;
            }

            .mission-item {
              h4 {
                font-size: var(--fs-sm);
              }
            }
          }
        }

      }

      &.timetables {
        .timetables-list {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 18px;
          max-width: 980px;
          margin: 0 auto;

          .item-timetable {
            min-width: 0;

            .timetable-route-title {
              display: flex;
              align-items: center;
              gap: 8px;
              margin-bottom: 4px;

              h3 {
                color: var(--theme-bus);
                font-size: var(--fs-md);
                font-weight: var(--fw-lg);
                margin: 0;
                line-height: 1.35;
              }

              .route-icon {
                color: var(--theme-bus);
                display: inline-grid;
                grid-template-columns: 12px 16px;
                align-items: end;
                gap: 1px;
                flex: 0 0 auto;
                font-size: 18px;
                position: relative;
                line-height: 1;

                .bi-geo-alt-fill {
                  font-size: 16px;
                  position: absolute;
                  top: -8px;
                  right: -1px;
                }

                .bi-bus-front-fill {
                  font-size: 19px;
                  transform: translateY(2px);
                }
              }
            }

            .timetable-note {
              color: var(--text-color);
              font-size: var(--fs-xs);
              font-weight: var(--fw-md);
              line-height: 1.45;
              min-height: 18px;
              margin: 0 0 10px;
            }

            .timetable-table-wrap {
              width: 100%;
              overflow-x: auto;
            }

            .timetable-table {
              width: 100%;
              min-width: 360px;
              border-collapse: collapse;
              table-layout: fixed;
              color: var(--theme-bus);
              background-color: transparent;
              font-size: var(--fs-xs);
              font-weight: var(--fw-lg);

              th,
              td {
                border: 1px solid var(--theme-bus);
                text-align: center;
                vertical-align: middle;
                padding: 6px 12px;
                height: 31px;
                line-height: 1.2;
              }

              thead {
                th {
                  background-color: var(--theme-bus);
                  border-color: var(--theme-bus);
                  color: #ffffff;
                  font-weight: var(--fw-lg);
                }
              }

              tbody {
                tr:nth-child(odd) {
                  background-color: #f4f4f4;
                }

                tr:nth-child(even) {
                  background-color: #ffffff;
                }
              }
            }
          }

          .no-data {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            border-radius: 10px;
            background-color: var(--bg-color);
            border: 1px solid var(--gray-color);

            img {
              width: 100px;
              height: auto;
              margin-bottom: 15px;
            }

            p {
              font-size: var(--fs-md);
              font-weight: var(--fw-md);
              color: var(--text-color);
              margin: 0;
            }
          }

          @media (max-width: 768px) {
            & {
              grid-template-columns: 1fr;
              max-width: 520px;
            }
          }

          @media (max-width: 420px) {
            & {
              .item-timetable {
                .timetable-table {
                  min-width: 300px;

                  th,
                  td {
                    padding: 6px 8px;
                  }
                }
              }
            }
          }
        }
      }
    }

  }
}

.contact-us {
  .contact-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .btn-contact {
    background-color: var(--theme-btn-color);
    color: #FFF;
    &:hover {
      opacity: .9;
      transition: .5s;
    }
  }


  .contact-channel-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 12px;
    min-height: 170px;
    padding: 18px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    color: var(--text-color);
    box-shadow: 0 8px 22px rgba(2, 51, 102, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;

    &:hover {
      transform: translateY(-2px);
      border-color: #c9d6e8;
      box-shadow: 0 14px 30px rgba(2, 51, 102, 0.12);
    }

    .channel-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 8px;
      color: #fff;
      font-size: 24px;
      flex-shrink: 0;
    }

    .channel-content {
      min-width: 0;
      text-align: center;

      strong {
        display: block;
        color: #172033;
        font-size: var(--fs-md);
        font-weight: var(--fw-title);
        line-height: 1.3;
        margin-bottom: 4px;
      }

      small {
        display: block;
        color: #64748b;
        font-size: var(--fs-sm);
        font-weight: var(--fw-md);
        line-height: 1.45;
        overflow-wrap: anywhere;
      }
    }

    &.call-center {
      .channel-icon {
        background-color: var(--theme-bus);
      }
    }

    &.facebook {
      .channel-icon {
        background-color: #1877f2;
      }
    }

    &.email {
      .channel-icon {
        background-color: #023366;
      }
    }

    &.line {
      .channel-icon {
        background-color: #06c755;
      }
    }

    &.fax {
      .channel-icon {
        background-color: #64748b;
      }
    }
  }

  @media (max-width: 991px) {
    .contact-channels {
      grid-template-columns: 1fr;
    }

    .contact-channel-card {
      grid-template-columns: 52px minmax(0, 1fr);
      align-items: center;
      min-height: 92px;
      padding: 18px;
    }
  }

  @media (max-width: 575px) {
    .contact-channel-card {
      grid-template-columns: 46px minmax(0, 1fr);
      min-height: 84px;
      padding: 14px;

      .channel-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
      }
    }
  }
}

.footer-v0 {
  background-color: var(--theme-bus);
  color: #fff;

  .card-footer {
    padding: 40px 0;

    .container {
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;

      .wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;

        .branding {

          img {
            width: 200px;
            height: auto;
            filter: brightness(0) invert(1);
          }

          .name {
            font-size: var(--fs-lg);
            font-weight: var(--fw-lg);
            margin-top: 10px;
          }

          .address {
            margin-top: 5px;

            a {
              color: #fff;
              text-decoration: none;
              font-size: var(--fs-md);
              font-weight: var(--fw-md);

              &:hover {
                text-decoration: underline;
              }
            }
          }

          .telephone {
            margin-top: 5px;

            a {
              color: #fff;
              text-decoration: none;
              font-size: var(--fs-md);
              font-weight: var(--fw-md);

              &:hover {
                text-decoration: underline;
              }
            }
          }
        }

        .menu {
          .title {
            font-size: var(--fs-lg);
            font-weight: var(--fw-lg);
            margin-bottom: 15px;
          }

          ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            padding: 0;

            li {
              margin-bottom: 10px;

              a {
                color: #fff;
                text-decoration: none;
                font-size: var(--fs-md);
                font-weight: var(--fw-md);

                &:hover {
                  text-decoration: underline;
                }
              }
            }
          }
        }

        .payment-channel {
          text-align: end;

          .title {
            font-size: var(--fs-lg);
            font-weight: var(--fw-lg);
            margin-bottom: 15px;
          }

          ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;

            li {
              max-width: 35px;
              width: 100%;

              img {
                width: 100%;
                height: auto;
              }
            }
          }
        }
      }
    }
  }

  .card-copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    text-align: center;

    ul {
      list-style: none;
      padding: 0;
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2px;

      li {
        font-size: var(--fs-sm);
        font-weight: var(--fw-md);

        a {
          color: #fff;
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    .card-footer {
      .container {
        max-width: 100%;
        padding: 0 20px;

        .wrap {
          grid-template-columns: 1fr;
          gap: 0px;

          .branding {
            img {
              width: 150px;
            }

            .name {
              font-size: var(--fs-md);
            }

            .address {
              a {
                font-size: var(--fs-sm);
              }
            }

            .telephone {
              a {
                font-size: var(--fs-md);
              }
            }
          }

          .menu {
            margin-top: 15px;

            .title {
              font-size: var(--fs-md);
            }

            ul {
              grid-template-columns: 1fr;

              li {
                a {
                  font-size: var(--fs-sm);
                }
              }
            }
          }

          .payment-channel {
            margin-top: 15px;
            text-align: left;

            .title {
              font-size: var(--fs-md);
            }

            ul {
              justify-content: flex-start;

              li {
                max-width: 45px;
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 480px) {
    .card-footer {
      .container {
        .wrap {
          .branding {
            img {
              width: 120px;
            }

            .name {
              font-size: var(--fs-sm);
            }

            .address {
              a {
                font-size: var(--fs-xs);
              }
            }

            .telephone {
              a {
                font-size: var(--fs-sm);
              }
            }
          }

          .menu {
            margin-top: 15px;

            .title {
              font-size: var(--fs-sm);
            }

            ul {
              grid-template-columns: 1fr;

              li {
                a {
                  font-size: var(--fs-xs);
                }
              }
            }
          }

          .payment-channel {
            margin-top: 15px;
            text-align: left;

            .title {
              font-size: var(--fs-sm);
            }

            ul {
              justify-content: flex-start;

              li {
                max-width: 40px;
              }
            }
          }
        }
      }
    }
  }
}


/* Contact Us Page */
.contact-company {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

.contact-us .contact-message {
  height: 100px;
}

/* News Page */
.news {
  .news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    .news-item {
      width: 100%;
      height: auto;
      border: 1px solid var(--gray-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s ease;

      a {
        display: flex;
        flex-direction: column;
        color: inherit;
        text-decoration: none;
      }

      &:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      .news-img {
        width: 100%;
        height: 230px;
        flex: 0 0 230px;
        overflow: hidden;
        background-color: var(--bg-color);

        img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.3s ease;
          object-position: top;

          &:hover {
            transform: scale(1.05);
          }
        }
      }

      .news-info {
        padding: 12px 15px;

        .news-topic {
          display: -webkit-box;
          font-size: var(--fs-md);
          font-weight: var(--fw-lg);
          line-height: 1.4;
          max-height: calc(var(--fs-md) * 1.4 * 2);
          margin-bottom: 5px;
          overflow: hidden;
          text-overflow: ellipsis;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          word-break: break-word;
        }

        .news-meta {
          font-size: var(--fs-sm);
          color: var(--muted-color);
          margin-bottom: 0;
        }
      }
    }

    .no-data {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px;
      border-radius: 10px;
      background-color: var(--bg-color);
      border: 1px solid var(--gray-color);

      img {
        width: 100px;
        height: auto;
        margin-bottom: 15px;
      }

      p {
        font-size: var(--fs-md);
        font-weight: var(--fw-md);
        color: var(--text-color);
        margin: 0;
      }
    }
  }
}

@media (max-width: 991px) {
  .news .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .news .news-list {
    grid-template-columns: 1fr;
  }

  .news .news-list .news-item {
    height: auto;
  }

  .news .news-list .news-item .news-img {
    height: 240px;
    flex-basis: 240px;
  }
}

/* News Detail Page */
.news-detail {
  .card-image {
    img {
      @media (max-width: 520px) {
        width: 100% !important;
        height: auto !important;
      }
    }
  }
}

.news-detail .view-icon {
  width: 15px !important;
}

/* Bus Rental Page */
.bus-rental-page {
  background: #f6f8fb;
  color: #1f2937;

  .rental-hero {
    position: relative;
    overflow: hidden;
    background: #0f315f;
    color: #fff;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(2, 21, 44, .82), rgba(2, 51, 102, .44), rgba(2, 21, 44, .18));
      z-index: 1;
    }

    img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
  }

  .rental-hero-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;

    .container {
      max-width: 1100px;
    }
  }

  .hero-copy {
    max-width: 660px;
    padding: 36px 0;

    h1 {
      font-size: 40px;
      line-height: 1.25;
      font-weight: 800;
      margin: 0 0 14px;
      color: #fff;
    }

    p {
      font-size: 18px;
      line-height: 1.7;
      margin: 0 0 24px;
      color: rgba(255, 255, 255, .92);
    }
  }

  .hero-eyebrow,
  .section-eyebrow {
    color: #ecb200;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-rental-primary,
  .btn-rental-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;

    &:hover {
      transform: translateY(-1px);
    }
  }

  .btn-rental-primary {
    background: #ecb200;
    color: #122033;
    box-shadow: 0 12px 24px rgba(236, 178, 0, .25);
  }

  .btn-rental-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .08);
  }

  .rental-section {
    padding: 48px 15px;

    .container {
      max-width: 1100px;
    }
  }

  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;

    h2 {
      font-size: 28px;
      font-weight: 800;
      margin: 0;
      color: #172033;
    }

    p {
      font-size: 16px;
      line-height: 1.7;
      margin: 8px 0 0;
      color: #5d6878;
      max-width: 680px;
    }
  }

  .rental-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -36px;
    position: relative;
    z-index: 3;
  }

  .stat-item {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 49, 95, .08);

    i {
      color: #023366;
      font-size: 26px;
      margin-bottom: 10px;
    }

    strong {
      display: block;
      font-size: 18px;
      color: #172033;
      margin-bottom: 4px;
    }

    span {
      color: #64748b;
      font-size: 14px;
    }
  }

  .vehicle-list {
    display: grid;
    gap: 26px;
  }

  .vehicle-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 49, 95, .07);

    &:nth-child(even) {
      grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);

      .vehicle-gallery {
        order: 2;
      }
    }
  }

  .vehicle-gallery {
    min-width: 0;
    background: #dfe6ee;
  }

  .vehicle-carousel,
  .vehicle-carousel .owl-stage-outer,
  .vehicle-carousel .owl-stage,
  .vehicle-carousel .owl-item,
  .vehicle-slide {
    height: 100%;
  }

  .vehicle-slide {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
  }

  .vehicle-carousel {
    .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      display: flex;
      justify-content: center;
      gap: 6px;
    }

    .owl-dot {
      span {
        width: 9px;
        height: 9px;
        background: rgba(255, 255, 255, .72);
        margin: 0;
      }

      &.active span {
        width: 24px;
        background: #ecb200;
      }
    }
  }

  .vehicle-profile {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h3 {
      font-size: 28px;
      font-weight: 800;
      color: #172033;
      margin: 0 0 8px;
    }
  }

  .vehicle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #023366;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;

    i {
      color: #ecb200;
    }
  }

  .vehicle-kicker {
    font-size: 17px;
    font-weight: 700;
    color: #023366;
    margin: 0 0 12px;
  }

  .vehicle-summary {
    font-size: 16px;
    line-height: 1.75;
    color: #526070;
    margin: 0 0 20px;
  }

  .vehicle-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
  }

  .meta-item {
    border-left: 3px solid #ecb200;
    background: #f7f9fc;
    padding: 12px 14px;
    border-radius: 6px;

    span {
      display: block;
      font-size: 13px;
      color: #758195;
      margin-bottom: 3px;
    }

    strong {
      font-size: 16px;
      color: #172033;
    }
  }

  .option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;

    li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 8px 12px;
      border-radius: 6px;
      background: #eef4fb;
      color: #1f3b59;
      font-size: 14px;
      font-weight: 700;
    }

    i {
      color: #023366;
    }
  }

  .rental-process {
    background: #fff;
    border-top: 1px solid #e4e9f1;
    border-bottom: 1px solid #e4e9f1;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .process-item {
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    padding: 20px;
    background: #fff;

    span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #023366;
      color: #fff;
      font-weight: 800;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 8px;
      color: #172033;
    }

    p {
      font-size: 14px;
      line-height: 1.65;
      color: #64748b;
      margin: 0;
    }
  }

  .rental-contact {
    background: #023366;
    color: #fff;
    padding: 34px 15px;

    .container {
      max-width: 1100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    h2 {
      font-size: 26px;
      font-weight: 800;
      margin: 0 0 6px;
      color: #fff;
    }

    p {
      margin: 0;
      color: rgba(255, 255, 255, .86);
    }
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  @media (max-width: 991px) {
    .rental-hero {
      img {
        height: 420px;
      }
    }

    .hero-copy {
      h1 {
        font-size: 32px;
      }
    }

    .rental-stats,
    .process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-card,
    .vehicle-card:nth-child(even) {
      grid-template-columns: 1fr;
    }

    .vehicle-card:nth-child(even) {
      .vehicle-gallery {
        order: 0;
      }
    }

    .vehicle-slide {
      img {
        height: 360px;
      }
    }

    .rental-contact {
      .container {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    .contact-actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 575px) {
    .rental-hero {
      img {
        height: 470px;
      }
    }

    .hero-copy {
      h1 {
        font-size: 28px;
      }

      p {
        font-size: 15px;
      }
    }

    .section-heading {
      grid-template-columns: 1fr;

      p {
        font-size: 15px;
      }
    }

    .rental-section {
      padding: 34px 12px;
    }

    .rental-stats,
    .vehicle-meta,
    .process-grid {
      grid-template-columns: 1fr;
    }

    .vehicle-profile {
      padding: 22px;

      h3 {
        font-size: 24px;
      }
    }

    .vehicle-slide {
      img {
        height: 300px;
      }
    }

    .section-heading h2,
    .rental-contact h2 {
      font-size: 24px;
    }

    .btn-rental-primary,
    .btn-rental-outline {
      width: 100%;
    }
  }
}

/* Rental Detail Page */
.rental-detail-page {
  background: #f6f8fb;
  color: #1f2937;

  .container {
    max-width: 1100px;
  }

  .detail-hero {
    padding: 42px 15px 36px;
    background: #0f315f;
    color: #fff;
  }

  .detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 28px;
    align-items: center;
  }

  .detail-copy {
    h1 {
      font-size: 38px;
      font-weight: 800;
      line-height: 1.25;
      margin: 0 0 14px;
      color: #fff;
    }

    p {
      font-size: 17px;
      line-height: 1.75;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .9);
    }
  }

  .detail-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 18px;

    &:hover {
      color: #ecb200;
    }
  }

  .detail-label,
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ecb200;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .detail-actions,
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-detail-primary,
  .btn-detail-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;

    &:hover {
      transform: translateY(-1px);
    }
  }

  .btn-detail-primary {
    background: #ecb200;
    color: #122033;
  }

  .btn-detail-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .08);
  }

  .detail-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    background: #dfe6ee;

    .detail-media-carousel,
    .detail-media-carousel .owl-stage-outer,
    .detail-media-carousel .owl-stage,
    .detail-media-carousel .owl-item,
    .detail-media-slide {
      height: 100%;
    }

    img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center;
    }

    .owl-nav {
      position: absolute;
      top: 50%;
      left: 14px;
      right: 14px;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      color: #122033;
      pointer-events: auto;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
      transition: background-color .2s ease, color .2s ease;

      &:hover {
        background: #ecb200;
        color: #122033;
      }

      i {
        font-size: 20px;
        line-height: 1;
      }
    }

    .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 36px;
      display: flex;
      justify-content: center;
      gap: 6px;
    }

    .owl-dot {
      span {
        width: 9px;
        height: 9px;
        margin: 0;
        background: rgba(255, 255, 255, .78);
      }

      &.active span {
        width: 24px;
        background: #ecb200;
      }
    }
  }

  .media-badge {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .94);
    color: #172033;
    font-size: 14px;
    font-weight: 800;

    i {
      color: #023366;
      font-size: 20px;
    }
  }

  .detail-section {
    padding: 42px 15px;
  }

  .video-preview-section {
    padding: 42px 15px 0;
    background: #f6f8fb;
  }

  .video-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 49, 95, .07);
  }

  .video-preview-copy {
    h2 {
      font-size: 28px;
      font-weight: 800;
      color: #172033;
      margin: 0 0 10px;
    }

    p {
      font-size: 16px;
      line-height: 1.75;
      color: #526070;
      margin: 0;
    }
  }

  .video-preview-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe6ee;
    box-shadow: 0 16px 34px rgba(15, 49, 95, .12);

    img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center;
      transition: transform .25s ease;
    }

    &:hover img {
      transform: scale(1.03);
    }
  }

  .video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(2, 21, 44, .06), rgba(2, 21, 44, .38));

    i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 66px;
      height: 66px;
      border-radius: 50%;
      color: #122033;
      background: #ecb200;
      font-size: 34px;
      box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
    }
  }

  .detail-layout {
    /* max-width: 860px; */
    display: grid;
    gap: 22px;
    margin: 0 auto;
  }

  .detail-panel {
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 49, 95, .07);
  }

  .detail-panel {
    padding: 28px;

    h2 {
      font-size: 28px;
      font-weight: 800;
      color: #172033;
      margin: 0 0 20px;
    }
  }

  .detail-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;

    li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      padding: 16px;
      border-radius: 8px;
      background: #f7f9fc;
      color: #526070;
      font-size: 16px;
      line-height: 1.7;
    }

    i {
      color: #023366;
      font-size: 22px;
      margin-top: 2px;
    }
  }

  .equipment-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;

    li {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      align-items: center;
      gap: 12px;
      min-height: 72px;
      padding: 14px;
      border: 1px solid #e5ebf3;
      border-radius: 8px;
      background: #f7f9fc;
      color: #344256;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.45;
    }

    i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: #0f315f;
      color: #ecb200;
      font-size: 21px;
    }
  }

  .detail-cta {
    padding: 34px 15px;
    background: #023366;
    color: #fff;

    .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    h2 {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      margin: 0 0 6px;
    }

    p {
      max-width: 620px;
      margin: 0;
      color: rgba(255, 255, 255, .86);
      line-height: 1.7;
    }
  }

  @media (max-width: 991px) {
    .detail-hero-grid,
    .video-preview-grid {
      grid-template-columns: 1fr;
    }

    .equipment-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-cta {
      .container {
        align-items: flex-start;
        flex-direction: column;
      }
    }
  }

  @media (max-width: 575px) {
    .detail-hero {
      padding: 30px 12px;
    }

    .detail-copy h1 {
      font-size: 28px;
    }

    .detail-copy p,
    .detail-list li {
      font-size: 15px;
    }

    .detail-section {
      padding: 30px 12px;
    }

    .video-preview-section {
      padding: 30px 12px 0;
    }

    .video-preview-grid {
      padding: 18px;
    }

    .video-preview-copy h2 {
      font-size: 23px;
    }

    .detail-panel {
      padding: 20px;

      h2 {
        font-size: 23px;
      }
    }

    .equipment-list {
      grid-template-columns: 1fr;

      li {
        min-height: 64px;
      }
    }

    .detail-media img {
      aspect-ratio: 4 / 3;
    }

    .btn-detail-primary,
    .btn-detail-outline {
      width: 100%;
    }
  }
}

/* Agreement */
.card-agreement {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #2b2b2b;
}

.card-agreement .wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.card-agreement .wrapper .body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.card-agreement .wrapper .body p {
  color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.card-agreement .wrapper .body a {
  color: #159AFB;
  text-decoration: none;
}

.card-agreement .wrapper .close {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-agreement .wrapper .close .btn-close-agreemen {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #f9f9f9;
  font-size: 30px;
  padding: 0px 10px;
  cursor: pointer;
}

.card-agreement .wrapper .close .btn-close-agreemen:hover {
  color: f0f0f0;
}

@media (max-width: 600px) {
  .card-agreement .wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .card-agreement .wrapper .close {
    justify-content: start !important;
  }

  .card-agreement .wrapper .close .btn-close-agreemen {
    padding: 0 !important;
  }
}

/* Loader */
.dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background: #ffcb0b !important;
}

.preloader {
  background: #ffffffad;
  margin-top: 0px;
  z-index: 10000;
}

/* Update Multilang Page */
.update-multilang-page a {
  color: var(--theme-bus);
  text-decoration: none;
}

.update-multilang-page .pointer {
  cursor: pointer;
}

.update-multilang-page table thead th {
  font-size: 16px;
  color: var(--title-color);
  background-color: #eee;
  text-align: center;
}

.update-multilang-page .text-title {
  color: var(--title-color) !important;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.update-multilang-page .btn-contact,
.update-multilang-page .btn-bus-submit {
  background-color: var(--theme-bus);
  color: #fff;
  border: 1px solid var(--theme-bus);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s;
}
