:root {
    --primary-font: "DM Sans", sans-serif;
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #654713;
    --color-secondary: #F3D99C;
    --color-1:#606060;
    --color-2:#EAEAEA;
    --color-3:#181A1F;
    --color-4:#E8EDED;
}
body,html {
    overflow-x: hidden;
}
body {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 1.3;
    color: var(--color-black);
    background: var(--color-white);
}

* {
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 10px;
}

ul,
li,
ol {
    margin-bottom: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: var(--color-primary);
}
img {
    max-width: 100%;
}
p {
    color: var(--color-1);
}
h1 {
    font-weight: 300;
    font-size: 56px;
}
h1 span {
    font-weight: 600;
}
h2 {
    color: var(--color-black);
    font-weight: 600;
    font-size: 32px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
}

ul {
    padding: 0;
}

.btn {
    border-radius: 16px;
    padding: 17px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    gap: 8px;
    border: 1px solid transparent;
    line-height: 0.8;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    min-width: 16px;
    display: inline-block;
    max-width: 16px;
}

.btn:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
    border-radius: 16px;
}
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-outline.black {
    border-color: var(--color-black);
    color: var(--color-black);
}
.btn-outline.black:hover {
    border-color: var(--color-primary);
}
.btn-outline.black img {
    -webkit-filter: invert(100%);
            filter: invert(100%);
}
.btn:hover:after ,.btn:focus:after{
    background: var(--color-secondary);
    width: 100%;
}

.btn:hover,.btn:focus {
    color: var(--color-black);
    border-color: var(--color-3);
    background: transparent;
}
.btn:hover img,.btn:focus img {
    -webkit-filter: invert(100%);
            filter: invert(100%);
}
.btn:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
}
.common-gap {
    padding: 56px 0;
}

.cmmn-hdr {
    margin-bottom: 32px;
}

.cmmn-hdr h2 {
    margin-bottom: 0;
}

.cmmn-hdr p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-4);
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}
.cmmn-hdr.wh p {
    color: var(--color-white);
}
.form-group {
    margin-bottom: 16px;
}
.form-label,.common-form label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}
.form-label span {
    font-weight:400;
    font-style: italic;
}
.form-control,.common-form input {
    height: 46px;
    border-radius: 8px;
    background: rgba(96, 96, 96, 0.1);
    border: 1px solid rgba(96, 96, 96, 0.2);
    padding: 5px 16px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
}
.form-control:focus ,.common-form input:focus{
    background-color: rgba(96, 96, 96, 0.1);
    box-shadow: none;
    border-color: var(--color-primary)!important;
}
.form-control::placeholder ,.common-form input::placeholder{
    color: rgba(96, 96, 96, 0.5);
    font-style: italic;
}
.login-remember {
    margin-bottom: 0;
}
.login-remember input[type="checkbox"] {
  accent-color: var(--color-primary);
}
.login-remember input {
    height: auto;
}
.login-username,.login-password {
    margin-bottom: 16px;
}
.password-wrapper {
    position: relative;
}
.eye {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-container.wh,.checkbox-container.wh a {
    color: var(--color-white);
}
.checkbox-container.wh .checkmark {
    border-color: var(--color-white);
}
.checkbox-container a {
    text-decoration: underline;
    color: var(--color-black);
}
.checkbox-container a:hover {
    color: var(--color-primary);
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid rgba(96, 96, 96, 0.2);
}
.checkbox-container.wh .checkmark {
    top: -2px;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color:var(--color-primary);
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.phone-input {
    display: flex;
    align-items: center;
    background: rgba(27, 27, 27, 0.9);
    border-radius: 8px;
    padding-left: 16px;
}
.phone-input input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent;
}
.country-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    border-right: 1px solid #2d2d2d;
    cursor: pointer;
}
.phone-input .country-code select.form-control {
    background-color: transparent;
    border: 0;
    padding: 0;
    width: 35px;
    background-position: right center;
    cursor: pointer;
}
.country-code img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}
.country-code span {
    color: #bdbdbd;
    font-size: 20px;
}
.country-arrow {
    font-size: 12px !important;
    color: #fff !important;
    width: 10px;
}
.country-arrow img {
    width: auto;
    height: auto;
    border-radius: 0;
}
.phone-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
}

/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 10px 0;
    transition: all 0.7s;
    -ms-transition: all 0.7;
    -webkit-transition: all 0.7s;
    height:180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header:before,.header:after {
    left: 0;
}
.header-wrapper:before,.header-wrapper:after {
    right: 0;
}
.header:before,.header-wrapper:before {
    position: absolute;
    content: '';
    top: 60px;
    height: 1px;
    width: calc(50% - 125px);
    background: rgba(255, 255, 255, 0.23);
}
.header:after ,.header-wrapper:after{
    position: absolute;
    content: '';
    bottom: 60px;
    height: 1px;
    width: calc(50% - 125px);
    background: rgba(255, 255, 255, 0.23);
}
.header-wrapper {
    width: 100%;
}

/* .header.sticky {
    position: fixed !important;
    background: var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: slide-down 0.7s;
    height: 138px;
}
.header.sticky .logo {
    max-width: 170px;
    min-width: 170px;
}
.header.sticky:after,.header.sticky .header-wrapper::after {
    bottom: 40px;
}
.header.sticky:before,.header.sticky .header-wrapper::before {
    top: 40px;
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
} */
.navbar {
    padding: 0;
}
.navbar-toggler,
.close-icon {
    display: none;
}
.sidebar-top {
    display: none;
}
.offcanvas-start {
    width: auto;
    border-right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: static;
    display: block;
    visibility: visible;
    background: transparent;
}
.logo {
    max-width: 250px;
    min-width: 250px;
    position:absolute;
    top:50%;
    -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
            transform:translateY(-50%);
    left: 0;
    right:0;
    margin: 0 auto;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}
.logo img {
    width:100%;
}
.header-otr {
    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;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border: 0;
    border-radius: 5px;
    margin-top: 4px;
    padding: 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
            box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    background: var(--color-secondary);
}

.dropdown-menu:after {
    position: absolute;
    content: '';
    top: -5px;
    height: 5px;
    background: transparent;
    width: 100%;
    left: 0;
    right: 0;
    z-index: -1;
}

.dropdown-menu li a:before{
    display: none;
}
.dropdown-toggle:after {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-2);
    border-bottom: 2px solid var(--color-2);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
    margin-left: 8px;
    vertical-align: .155em;
}
.navbar-nav li a.dropdown-toggle:hover:after,.navbar-nav li a.dropdown-toggle:focus:after,.navbar-nav li.active a.dropdown-toggle:after {
    border-right-color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}
.navbar-nav {
    gap: 49px;
}
.navbar-nav li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-2);
    padding: 0!important;
    position: relative;
}
.navbar-nav li a:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--color-secondary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.navbar-nav li a:hover:before,.navbar-nav li.current_page_item a:before,.navbar-nav li a:focus:before {
    width: 100%;
}
.navbar-nav li a:hover,.navbar-nav li.current_page_item a,.navbar-nav li a:focus {
    color: var(--color-secondary);
}
.dropdown-menu li a {
    color: var(--color-black) !important;
    padding: 10px!important;
}
.dropdown-menu li a:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
}
.tel {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-2);
    gap: 12px;
}
.tel:hover {
    color: var(--color-secondary);
}

/* banner */
.banner {
    position: relative;
}
.banner-slider figure {
    position: relative;
}
.banner-slider figure:after {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.35) 37%, rgba(0, 0, 0, 0.91) 82%);
    content:'';
    position: absolute;
    left: 0;
    top: 0; 
    width: 100%;
    height: 100%;
}
.banner-slider {
  line-height: 0.8;
}
.banner-content {
    margin-bottom: 60px;
}
.banner-content h5 {
    color: var(--color-2);
    font-weight: 400;
    font-size: 16px;
}
.banner-content h1 {
    color: var(--color-white);
    font-weight: 300;
    max-width: 1025px;
    margin-bottom: 32px;
}
.banner-content h1 span {
    font-weight: 600;
}
.ban-wrapper {
    position: relative;
}
.ban-wrapper figure {
    aspect-ratio: 4 / 4;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}
.ban-wrapper figure:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 100%;
}
.ban-wrapper figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.ban-wrapper figure:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.ban-wrapper h3 {
    color: var(--color-white);
    margin-bottom: 0;
    padding: 0 32px 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.ban-slide figure {
    aspect-ratio: 12 / 6.3;
}
.cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.banner-content-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 72px;
}
.slick-prev,.slick-next {
    position: absolute;
    right: 100px;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--color-secondary);
    border: 0;
    z-index: 5;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.slick-prev.slick-disabled ,.slick-next.slick-disabled {
    background: rgba(243, 217, 156, 0.5);
}
.slick-prev:hover,.slick-next:hover {
    background: var(--color-primary);
}
.slick-prev:hover img,.slick-next:hover img {
    -webkit-filter: brightness(100);
            filter: brightness(100);
}
.slick-prev {
    top: -70px
}
.slick-next {
    bottom: -70px;
}
/* make your trip */
.make-your-trip {
    background: rgba(243, 217, 156, 0.3) url('../images/back-shape.png') no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.make-trip-box {
    background: var(--color-white);
    border-radius: 16px;
    padding: 56px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid transparent;
    height: 100%;
}
.make-trip-box p {
    margin-bottom: 0;
}
.make-trip-box:hover{
    -webkit-transform:translateY(-8px);
        -ms-transform:translateY(-8px);
            transform:translateY(-8px);
    border-color:var(--color-primary);
    -webkit-box-shadow:0 20px 40px rgba(0,0,0,.1);
            box-shadow:0 20px 40px rgba(0,0,0,.1);
}
.icon-wrapper {
    display: block;
}
.executive-vehicle-innr {
    -webkit-box-shadow: 0px 10px 40px 0px #0000000D;
            box-shadow: 0px 10px 40px 0px #0000000D;
    background: var(--color-white);
    border-radius: 6px;
    padding: 32px;
}
.mt-32 {
    margin-top: 32px;
}
.mb-32 {
    margin-bottom: 32px;
}
.executive-vehicle-innr ul {
    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;
    max-width: 660px;
    margin: auto;
}
.executive-vehicle-innr ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    color: var(--color-3);
}
.executive-vehicle-innr ul li span {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 48px;
    background: var(--color-4);
}
/* how it works */
.mb-56 {
    margin-bottom: 56px;
}
.how-it-works-sec {
    background: var(--color-black);
    background-image: url('../images/back-line.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
}
h2.wh {
    color: var(--color-white);
}
.how-it-works-list{
    padding-left: 24px;
}
.how-it-works-list li {
    padding-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.how-it-works-list li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid var(--color-secondary);
    display: inline-block;
}
.how-it-works-list li:after {
    position: absolute;
    content: '';
    left: 7px;
    top: 16px;
    bottom: 0;
    margin: auto;
    height: 55%;
    width: 2px;
    border-radius: 10px;
    background: var(--color-secondary);
}
.how-it-works-list li:last-child {
    padding-bottom: 0;
}
.how-it-works-list li h4 {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}
.how-it-works-list li p {
    color: var(--color-white);
    margin-bottom: 0;
}
.how-it-works-list li:last-child:after {
    display: none;
}
.how-it-btn {
    padding-left: 64px;
}
.how-it-img {
  margin-right: -40%;
}
.how-it-img img {
    width: 100%;
}
/* testimonial sec */
.content-wd {
    max-width: 354px;
}
.testimonial-box {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px;
}
.testimonial-img {
    width: 336px;
    height: 336px;
    min-width: 336px;
    border-radius: 12px;
    overflow: hidden;
}
.testimonial-content {
    position: relative;
    z-index: 1;
}
.testimonial-content:after {
    position: absolute;
    content: '';
    left: -32px;
    top: -32px;
    background: url("../images/comma.png") no-repeat;
    background-size: 100% 100%;
    width: 56px;
    height: 56px;
    z-index: -1;
}
.testimonial-content p {
    font-size: 24px;
    margin-bottom: 24px;
}
.testimonial-content h5 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0;
}
.testimonial-content h6 {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0;
}
.testimonial-slider {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-slider .slick-prev,.testimonial-slider .slick-next {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    bottom: 0;
    right: auto;
}
.testimonial-slider .slick-prev {
    left: 392px;
}
.testimonial-slider .slick-next {
    left: 456px;
}
/* services sec */
.services-sec {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}
.services-slide {
    position: relative;
}
.services-content {
    padding: 156px 120px 156px 132px;
    margin-left: auto;
}
.services-content h2 {
    margin-bottom: 16px;
}
.services-content p {
    margin-bottom: 24px;
}
.services-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services-img:after {
    position: absolute;
    content: '';
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.2275) 37%, rgba(0, 0, 0, 0.5915) 82%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.services-slider .slick-dots {
  position: absolute;
  right: 14%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.slick-dots li button {
    border: 1px solid var(--color-3);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--color-white);
    opacity: 0.2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.slick-dots li.slick-active button {
    background: #F3D99C;
    opacity: 1;
}
.services-slider .slick-slide {
    border: 0;
}
/* footer */
.footer-top {
    background: rgba(243, 217, 156, 0.1);
}
.footer-bottom {
    background: rgba(243, 217, 156, 0.3);
}
.ft-contact-details p {
    margin-bottom: 8px;
}
.ft-contact-details address,.ft-contact-details a {
    color: var(--color-3);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.ft-contact-details a:hover {
    color: var(--color-primary);
}
.ft-contact-details li {
    margin-bottom: 16px;
}
.ft-contact-details li:last-child {
    margin-bottom: 0;
}
.ft-content p {
    max-width: 456px;
    margin-bottom: 0;
}
.ft-menu li {
    margin-bottom: 8px;
}
.ft-menu li:last-child {
    margin-bottom: 0;
}
.ft-menu li a {
    color: var(--color-1);
}
.ft-menu li a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    padding: 25px 0;
    background: rgba(243, 217, 156, 0.3);
}
.footer-bottom-wrapper {
    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;
}
.footer-bottom-wrapper p {
    margin-bottom: 0;
    color: var(--color-3);
    font-weight: 600;
}
.footer-bottom-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.footer-bottom-wrapper ul li {
    list-style-type: disc;
}
.footer-bottom-wrapper ul li:first-child {
    list-style-type: none;
}
.footer-bottom-wrapper ul li a {
    font-weight: 600;
    color: var(--color-1);
}
.footer-bottom-wrapper ul li a:hover {
    color: var(--color-primary);
}
/* about page */
.banner.inner-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 240px 0 120px;
    position: relative;
    z-index: 1;
}
.banner.inner-banner .banner-content {
    text-align: center;
    margin-bottom: 0;
    max-width: 1056px;
    margin-left: auto;
    margin-right: auto;
    position: static;
}
.banner.inner-banner .banner-content h1 {
    max-width: 100%;
    margin-bottom: 0;
}
.banner.inner-banner:after {
    position: absolute;
    content: '';
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.35) 37%, rgba(0, 0, 0, 0.91) 82%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.make-your-trip.back-lg {
    background-image: url('../images/back-shape-lg.png');
}
.mt-145 {
    margin-top: 145px;
}
.services-sec.about-innr-sec .services-content {
    padding: 79px 12px 79px 132px;
}
.book-ride {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.service-provider-sec {
    padding: 100px 0;
    background: var(--color-black);
    background-image: url('../images/back-line.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
}
.service-provider-list  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.service-provider-list li {
    color: var(--color-secondary);
    position: relative;
    padding-left: 22px;
}
.service-provider-list li:after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid var(--color-secondary);
    left: 0;
    top: 2px;
}
.serv-slider .slick-list {
    margin: 0 -12px;
}
.serv-slider .slick-slide {
    padding: 0 12px;
}
.cmmn-slider {
    padding-bottom: 60px;
}
.cmmn-slider .slick-prev,.cmmn-slider .slick-next {
    bottom: 0;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    right: 0;
    margin: auto;
}
.cmmn-slider .slick-prev {
    left: -65px;
}
.cmmn-slider .slick-next {
    right: -65px;
}
/* services page */
.services-innr {
    position: relative;
}
.services-innr-sec {
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
.services-innr .services-content {
    padding: 70px 12px 70px 132px;
}
.cmn-list li {
    color: var(--color-1);
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}
.cmn-list li:last-child {
    margin-bottom: 0;
}
.cmn-list li:after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid var(--color-1);
    left: 0;
    top: 2px;
    opacity: 0.8;
}
.services-innr:nth-child(2n) .services-img {
    left: auto;
    right: 0;
}
.services-innr:nth-child(2n) .services-content {
    margin-left: 0;
    padding-left: 12px;
    padding-right: 135px;
}
/* contact page */
.contact-sec {
    background: var(--color-black);
    background-image: url('../images/back-line.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
    position: relative;
    z-index: 1;
}
.contact-sec.common-gap {
    padding-bottom: 100px;
}
.contact-form .form-group {
    margin-bottom: 24px;
}
.contact-form .form-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}
.contact-form .form-control {
    height: 46px;
    border-radius: 8px;
    padding:5px 16px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    background: rgba(27, 27, 27, 0.9);
    border: 0;
}
.contact-form .form-control:focus {
    background-color: rgba(27, 27, 27, 0.9);
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--color-white);
}
.contact-form select.form-control {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url('../images/select-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px;
}
.contact-form textarea.form-control {
    padding-top: 12px;
    height: 92px;
}
.contact-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.contact-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.contact-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.contact-form .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.contact-form {
    padding-left: 16px;
}
.contact-img {
  margin-left: -55%;
  position: relative;
  z-index: -1;
  width: 1100px;
  margin-bottom: -10%;
}
/* auth page */
.auth-left {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.auth-left:after {
    position: absolute;
    content: '';
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.91) 82%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.auth-left-body {
    max-width: 456px;
}
.auth-left-body h1 {
    color: var(--color-white);
}
.auth-left-body p {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 0;
}
.auth-right {
    height: 100vh;
    overflow-y: auto;
    padding: 100px 108px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.auth-right-body {
    max-width: 576px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.forgot-password {
    font-weight: 600;
    color: var(--color-black);
    text-decoration: underline;
}
.auth-bottom-wrapper {
    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;
}
.divider {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(96, 96, 96, 0.18);
}
.google-btn {
    padding: 16px;
    border: 1px solid rgba(224, 224, 233, 1);
    background: var(--color-white);
    -webkit-box-shadow: 0px 18px 30px 0px rgba(131, 119, 198, 0.11);
            box-shadow: 0px 18px 30px 0px rgba(131, 119, 198, 0.11);
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    width: 100%;
}
.bottom-link p {
    color: var(--color-1);
    margin-bottom: 0;
}
.bottom-link p a {
    font-weight: 700;
    color: var(--color-black);
    text-decoration: underline;
}
.bottom-link p a:hover {
    color: var(--color-primary);
}
.eye {
    cursor: pointer;
    width: 24px;
}
.eye-visible {
    display: none;
}
.eye.show .eye-off {
    display: none;
}
.eye.show .eye-visible {
    display: block;
}
.auth-footer {
    position: sticky;
    bottom: 0;
    background: var(--color-white);
    z-index: 1;
    padding: 32px 0;
}
.auth-footer p {
    color: var(--color-3);
    font-weight: 600;
    margin-bottom: 4px;
}
.auth-footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.auth-footer ul li:first-child {
    list-style-type: none;
}
.auth-footer ul li {
    list-style-type: disc;
}
.auth-footer ul li::marker {
    color: var(--color-1);
}
.auth-footer ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-1);
}
.auth-footer ul li a:hover {
    color: var(--color-primary);
}
.otp-box {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 gap: 8px;
	 -webkit-box-pack: center;
	     -ms-flex-pack: center;
	         justify-content: center;
}
 .otp-box input {
	 width: 60px;
	 height: 60px;
	 text-align: center;
	 font-size: 16px;
	 border: 1px solid rgba(96, 96, 96, 0.2);
	 border-radius: 16px;
}
 .otp-box input::-webkit-input-placeholder {
	 color: #bbb1a4;
}
 .otp-box input::-moz-placeholder {
	 color: #bbb1a4;
}
 .otp-box input:-ms-input-placeholder {
	 color: #bbb1a4;
}
 .otp-box input::-ms-input-placeholder {
	 color: #bbb1a4;
}
 .otp-box input::placeholder {
	 color: #bbb1a4;
}
 .otp-box input:focus {
	 border-color: var(--color-primary);
	 outline: none;
}
 .resend {
	 color: var(--color-primary);
	 font-weight: 500;
	 text-decoration: underline;
     background: transparent;
     border: 0;
}
 .resend:hover {
	 opacity: 0.7;
} 
.book-hdr {
    color: #EAEAEA;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 30%;
    text-transform: uppercase;
}
.booking-alert {
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 14px 16px;
}
.booking-alert-success {
    background: rgba(243, 217, 156, 0.18);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}
.booking-alert-error {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
}
.time-zone-note {
    color: rgba(255, 255, 255, 0.75);
    display: block;
    font-size: 13px;
    margin-top: 8px;
}
.lid-datepicker {
    background: var(--color-white);
    border: 1px solid rgba(96, 96, 96, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    display: none;
    padding: 12px;
    position: absolute;
    width: 280px;
    z-index: 9999 !important;
}
.lid-datepicker-header {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.lid-datepicker-header strong {
    color: var(--color-black);
    font-size: 15px;
}
.lid-datepicker-nav {
    background: rgba(243, 217, 156, 0.5);
    border: 0;
    border-radius: 6px;
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 700;
    height: 32px;
    width: 32px;
}
.lid-datepicker-grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(7, 1fr);
}
.lid-datepicker-weekdays {
    color: var(--color-1);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}
.lid-datepicker-day {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--color-black);
    cursor: pointer;
    padding: 7px;
    text-align: center;
}
.lid-datepicker-day:hover,
.lid-datepicker-day:focus {
    background: var(--color-primary);
    color: var(--color-white);
}
.lid-datepicker-day:disabled {
    background: transparent;
    color: #b8b8b8;
    cursor: not-allowed;
}
.thank-you-sec {
    background: rgba(243, 217, 156, 0.3) url('../images/back-shape.png') no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.thank-you-box {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px 0 #0000000D;
    margin: 0 auto;
    max-width: 820px;
    padding: 56px;
}
.thank-you-kicker {
    color: var(--color-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.thank-you-box p {
    font-size: 18px;
    line-height: 1.5;
    margin: 16px auto 0;
    max-width: 640px;
}
.booking-reference {
    color: var(--color-black);
    font-weight: 700;
}
.thank-you-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}
/* modal */
.modal-backdrop.show {
  opacity: .85;
}
.booking-flow-modal .modal-content {
  background-color: rgba(0, 0, 0, 0.85);
  border: 0;
  border-radius: 56px;
  padding: 112px 167px 48px;
  color: var(--color-white);
}
.booking-flow-modal .modal-header {
    border: 0;
    padding: 0;
    display: block;
    text-align: center;
}
.booking-flow-modal .modal-body,.booking-flow-modal .modal-footer {
    border: 0;
    padding: 0;
}
.booking-flow-modal .modal-header h2 {
    color: var(--color-2);
}
.booking-flow-modal .modal-header p{
    color: var(--color-white);
}
.booking-flow-modal .modal-header .btn-close {
    position: absolute;
    top: 48px;
    right: 48px;
    color: var(--color-white);
    opacity: 1;
    padding: 0;
}
.booking-flow-modal .modal-header .btn-close:focus {
    box-shadow: none;
}
.modal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -8px;
}
.modal-list li {
    width: calc(100% / 2);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
    padding: 8px;
}
.modal-list.w-100 li {
    width: 100%;
}
.modal-list li span {
    color: rgba(255, 255, 255, 0.5);
    padding-right: 16px;
}
.or-txt {
    text-align: center;
    margin: 0;
    width: 100%;
}
.or-txt p {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 30%;
    color: var(--color-2);
    font-weight: 600;
}
/* 25-6-2026 */
.mt-180 {
    margin-top: 180px;
}
/* .header-black .navbar-nav li a,.header-black .tel {
    color: var(--color-black);
}
.header-black .tel img {
    filter: invert(100%);
}
.header-black .navbar-nav li a:hover,.header-black .navbar-nav li.current_page_item a,.header-black .navbar-nav li a:focus,.header-black .tel:hover {
  color: var(--color-secondary);
}
.header-black .header::before,.header-black .header-wrapper::before,.header-black .header::after,.header-black .header-wrapper::after {
    background: rgba(0,0,0,0.23);
} */
.header-black .header {
    background: var(--color-black);
}
.login-submit {
    margin-top: 32px;
    text-align: center;
}
.login-submit .button {
    width: 100%;
}
@media (min-width: 992px) {
  .modal-lg{
    max-width: 960px;
  }
}
/* responsive */
@media (min-width: 1400px) {
    .container {
        max-width: 1392px;
    }
}
@media (max-width: 1700px) {
    .ban-slide figure {
    aspect-ratio: 12 / 7.8;
    }
    .slick-prev, .slick-next {
        right: 40px;
    }
    .how-it-img {
    margin-right: -30%;
    }
    .services-slider .slick-dots {
    right: 6%;
    }
    .contact-img {
        width: 850px;
        margin-left: -50%;
    }
    .auth-right {
        padding: 70px 70px 0;
    }
    .services-innr .services-content {
        padding: 70px 12px 70px 90px;
    }
    .services-innr:nth-child(2n) .services-content {
        padding-right: 70px;
    }
}
@media (max-width: 1500px) {
  .how-it-img {
    margin-right: -25%;
  }
  h1 {
    font-size: 48px;
  }
  .banner-content h1 {
  max-width: 900px;
  }
h3,.testimonial-content p,.ft-contact-details address, .ft-contact-details a {
  font-size: 22px;
}
h2 {
    font-size: 29px;
}
.contact-img {
    width: 800px;
}
.banner.inner-banner .banner-content {
  max-width: 750px;
}

}
@media (max-width: 1399px) {
    .logo {
        max-width: 180px;
        min-width: 180px;
    }
    .navbar-nav li a,body,.btn,.banner-content h5 {
  font-size: 14px;
    }
    .tel {
  font-size: 15px;
    }
    .header::before, .header-wrapper::before {
        top: 40px;
    }
    .header::after, .header-wrapper::after {
        bottom: 40px;
    }
    .header::before, .header-wrapper::before,.header::after, .header-wrapper::after {
  width: calc(50% - 90px);
    }
    .header {
        height: 140px;
    }
    .mb-4 {
  margin-bottom: 1.2rem !important;
}
 h1 {
    font-size: 40px;
  }
   .banner-content h1 {
    max-width: 700px;
    margin-bottom: 24px;
  }
   h3, .testimonial-content p, .ft-contact-details address, .ft-contact-details a {
    font-size: 19px;
  }
  .ban-wrapper h3 {
  padding: 0 20px 20px;
  }
  .banner-content {
  margin-bottom: 40px;
}
.banner-content-wrapper {
    bottom: 40px;
}
.slick-prev, .slick-next {
    width: 45px;
    height: 45px;
}
.slick-prev {
  top: -55px;
}
 .slick-next {
    bottom: -55px;
 }
 .make-trip-box {
    padding: 32px;
 }
   h2 {
    font-size: 25px;
  }
  .vehicle-img {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    }
    .services-content {
  padding: 100px 80px 100px 90px;
    }
    .services-slider .slick-dots {
    right: 25px;
  }
  .testimonial-slider {
  max-width: 900px;
  }
.testimonial-slider .slick-next {
  left: 445px;
}
.services-sec.about-innr-sec .services-content {
  padding: 50px 12px 50px 90px;
}
.service-provider-sec {
  padding: 70px 0;
}

.contact-img {
    width: 700px;
    margin-bottom: -5%;
}
.banner.inner-banner {
  padding: 200px 0 100px;
}
.mt-180 {
    margin-top: 143px;
}
}
@media (max-width: 1199px) {
  .logo {
    max-width: 120px;
    min-width: 120px;
  }
  .navbar-nav {
    gap: 30px;
    }
    .btn {
  border-radius: 12px;
  padding: 15px 24px;
    }
     .header::before, .header-wrapper::before, .header::after, .header-wrapper::after {
    width: calc(50% - 70px);
  }
   h1 {
    font-size: 33px;
  }
    h3, .testimonial-content p, .ft-contact-details address, .ft-contact-details a {
    font-size: 17px;
  }
  .ban-slide figure {
    aspect-ratio: 12 / 8.5;
  }
  .common-gap {
  padding: 45px 0;
}
h2 {
    font-size: 22px;
  }
  .cmmn-hdr {
  margin-bottom: 24px;
}
.executive-vehicle-innr {
    padding: 24px;
}
.mb-56 {
  margin-bottom: 35px;
}
.how-it-works-list li h4 {
    font-size: 15px;
    margin-bottom: 12px;
}
.services-content {
    padding: 50px;
  }
  .footer-bottom {
  padding: 15px 0;
  }
  .btn:after {
    border-radius: 12px;
  }
.services-sec.about-innr-sec .services-content {
    padding: 50px 12px 50px 50px;
  }
   .banner.inner-banner {
    padding: 160px 0 80px;
  }
  .services-innr .services-content {
    padding: 50px 12px 50px 50px;
}
.services-innr:nth-child(2n) .services-content {
  padding-right: 50px;
}
 .contact-img {
    width: 540px;
  }
  .auth-right {
    padding: 40px 40px 0;
  }
  .auth-left-body p {
  font-size: 20px;
  }
  .auth-left-body {
  max-width: 320px;
}
.logo-area {
  max-width: 150px;
}
.banner.inner-banner .banner-content {
  max-width: 600px;
}
.mt-180 {
    margin-top: 140px;
}
}
@media (max-width: 991px) {
.navbar-nav {
    gap: 15px;
  }
  .header-right {
    gap: 15px;
  }
   .tel {
    font-size: 14px;
  }
    .header {
    height: 100px;
  }
   .header::before, .header-wrapper::before {
    top: 24px;
  }
   .header::after, .header-wrapper::after {
    bottom: 24px;
  }
   .btn {
    padding: 15px 18px;
   }
   .banner-content h1 {
    max-width: 590px;
   }
     .ban-wrapper h3 {
    padding: 0 10px 10px;
  }
    .ban-slide figure {
    aspect-ratio: 12 / 9.5;
  }
    .make-trip-box {
    padding: 20px;
    min-height: 285px;
  }
    .mb-32 {
    margin-bottom: 24px;
    }
  .service-provider-sec {
    padding: 45px 0;
  }
  .serv-slider {
    margin-top: 30px;
  }
.services-sec.about-innr-sec .services-content {
    padding: 30px 12px 30px 30px;
  }
.mt-145 {
  margin-top: 80px;
}
 .services-innr .services-content {
    padding: 30px 12px 30px 30px;
}
.services-innr:nth-child(2n) .services-content {
  padding-right: 30px;
}
.contact-img {
    width: 100%;
    margin: 0;
    margin-right: -4%;
  }
 .auth-right {
    padding: 40px 20px 0;
  }
.auth-content h2 img {
    width: 24px;
}
.google-btn {
  padding: 12px;
  font-size: 14px;
}
.booking-flow-modal .modal-content {
  padding: 40px 30px 30px;
  border-radius: 30px;
}
.booking-flow-modal .modal-header .btn-close {
  top: 35px;
  right: 35px;
}
.modal-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.modal-list li {
  font-size: 14px;
  width: 100%;
  text-align: center;
}
.mt-180 {
    margin-top: 100px;
}
.tel {
    gap: 4px;
}
 .header-right {
    gap: 10px;
  }
}
@media (max-width: 767px) {
    .banner-content-wrapper {
  position: static;
    }
    .navbar-collapse {
        display: none;
    }

    .navbar-toggler {
        color: var(--color-white);
        background: var(--color-primary);
        font-size: .9375rem;
        border-radius: 30px;
        font-weight: 600;
        padding: .625rem;
    }
    .navbar-toggler:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-toggler-icon,
    .close-icon {
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px;
    }

    .navbar-toggler-icon img,
    .close-icon img {
        width: 20px;
    }

    .navbar-collapse {
        display: none;
    }

    .close-icon {
        cursor: pointer;
        padding: .625rem;
        font-size: .9375rem;
        font-weight: 600;
        line-height: 1.26;
        background-color: var(--color-secondary);
        border-radius: 30px;
    }
    .tel {
        color: var(--color-black);
        font-size: 16px;
        padding-left: 20px;
    }
    .tel img {
        filter: invert(100%);
    }
    .tel:hover {
        color: var(--color-primary);
        }
    .p-20 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sidebar-top {
        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;
        padding: 1rem 20px 1rem;
        border-bottom: 1px solid var(--color-2);
        position: sticky;
        top: 0;
        background: var(--color-white);
        z-index: 1;
    }
    
    .navbar-nav li a {
        color: var(--color-black);
        font-size: 16px;
    }

    .offcanvas {
        background: var(--color-white);
        height: 100vh;
        overflow-y: auto;
        padding-bottom: 30px;
    }

    .navbar-nav {
        padding: 1.5rem 20px 30px;
        gap: 25px;
    }

    .navbar-nav li a:hover,
    .navbar-nav li.current_page_item a,
    .navbar-nav li a:focus {
        color: var(--color-primary);
    }
.header-black .navbar-nav li a:hover, .header-black .navbar-nav li.current_page_item a, .header-black .navbar-nav li a:focus, .header-black .tel:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
    .navbar-nav li a::before {
        background: var(--color-primary);
    }
    .navbar-nav li a::after {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    .navbar-toggler,
    .close-icon {
        display: block;
    }

    .navbar-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .offcanvas-start {
        width: 60%;
        border-right: 1px solid rgba(0, 0, 0, .2);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        position: fixed;
        visibility: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
.header::before, .header-wrapper::before,.header::after, .header-wrapper::after {
    display: none;
}
.logo {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0;
    max-width: 90px;
    min-width: 90px;
}
 .header {
    height: auto;
  }
    .banner-content {
    margin-bottom: 0;
    position: absolute;
    top: 120px;
    left: 0;
    right:0;
    margin: auto;
    text-align: center;
    padding: 0 15px;
  }
   .banner-content h1 {
    max-width: 100%;
  }
 .banner-slider .slick-prev,.banner-slider .slick-next {
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
  }
 .banner-slider .slick-prev {
    right: -60px;
 }
 .banner-slider .slick-next {
    left: -60px;
 }
 .banner-content-wrapper {
    padding: 45px 0;
 }
 .header .btn {
    width: 100%;
 }
 .navbar-nav li a {
    display: inline-block;
 }
 .make-trip-box {
    min-height: auto;
  }
.how-it-img {
    margin-right: -5%;
    text-align: center;
    margin-bottom: 30px;
  }
.services-img {
    background: none!important;
    position: relative;
}
.how-it-works-otr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}
.col-md-6.services-img:after {
    display: none;
}
.services-sec {
    padding-top: 45px;
}
 .services-content {
    padding: 25px 12px 0;
    text-align: center;
  }
.services-slider,.testimonial-slider {
    padding-bottom: 70px;
}
.services-slider .slick-dots {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.testimonial-img {
  width: 200px;
  height: 200px;
  min-width: 200px;
}
.testimonial-box {
    gap: 30px;
}
.testimonial-slider .slick-prev,.testimonial-slider .slick-next {
    left: 0;
    right: 0;
    margin: auto;
}
.testimonial-slider .slick-prev {
    left: -50px;
}
.testimonial-slider .slick-next {
    right: -50px;
}
.testimonial-content::after {
  left: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
}
.footer {
    text-align: center;
}
.ft-content p {
  max-width: 100%;
}
 .ft-contact-details address, .ft-contact-details a {
    font-size: 15px;
  }
.footer-bottom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
}
.make-trip-box {
    text-align: center;
}
 h1 {
    font-size: 27px;
  }
.our-mission-sec {
    text-align: center;
}
.mt-145.text-end {
    text-align: center!important;
    margin-top: 30px;
}
.services-sec.about-innr-sec .services-content {
    padding: 30px 12px 45px;
  }
  .services-innr .services-content {
    padding: 30px 12px;
  }
  .cmn-list {
    text-align: left;
    margin: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    }
.contact-form .form-group ,.form-group{
  margin-bottom: 18px;
  text-align: left;
}
.contact-form .form-label ,.form-label,.common-form label{
  font-size: 14px;
}
.contact-form .form-control,.form-control {
    font-size: 14px;
}
.contact-form {
  padding-left: 0;
}
.contact-sec {
    background-size: contain;
}
.contact-sec.common-gap {
  padding-bottom: 45px;
}
.contact-img {
    margin-top: 30px;
}
.cmmn-hdr p {
  font-size: 14px;
  margin-top: 10px;
}
.contact-sec .cmmn-hdr {
    text-align: center;
}
.contact-form {
    text-align: center;
}
.book-hdr {
  font-size: 14px;
  letter-spacing: 25%;
}
.checkbox-container {
    text-align: left;
    font-size: 14px;
    padding-left: 24px;
}
.checkbox-container .checkmark {
  height: 18px;
  width: 18px;
}
.checkbox-container .checkmark::after {
  left: 6px;
  top: 2px;
}
.checkbox-container.wh .checkmark {
  top: 0;
}
.auth-left {
  height: auto;
  padding: 30px;
  text-align: center;
}
 .auth-left-body p {
    font-size: 16px;
  }
   .logo-area {
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
  }
  .auth-right {
    height: auto;
  }
  .auth-right {
    padding: 30px 20px 0;
  }
  .auth-footer {
    padding: 35px 0 15px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    position: static;
  }
  .auth-footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .eye {
  width: 16px;
}
.otp-box input {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
 .booking-flow-modal .modal-content {
    padding: 30px 15px 30px;
 }
  .banner.inner-banner {
    padding: 120px 0 80px;
  }
  .mt-180 {
    margin-top: 83px;
}
.thank-you-box {
    padding: 30px 20px;
}
}
@media (max-width: 575px) {
.ban-slide figure {
    aspect-ratio: 12 / 15;
  }
    h1 {
    font-size: 25px;
  }
   .banner-content-wrapper ,.common-gap{
    padding: 35px 0;
  }
  h2 {
    font-size: 19px;
  }
  .cmmn-hdr.d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
   .executive-vehicle-innr {
    padding: 15px;
    text-align: center;
  }
  .executive-vehicle-innr ul {
    gap: 15px;
  }
  .executive-vehicle-innr ul li {
    gap: 10px;
  }
  .executive-vehicle-innr ul li span {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .services-sec {
    padding-top: 35px;
  }
  .testimonial-sec {
    text-align: center;
  }
  .testimonial-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
    .testimonial-content::after {
    left: 5px;
    top: -13px;
    width: 30px;
    height: 30px;
  }
  .ban-wrapper h3 {
    padding: 20px 10px;
    text-align: center;
  }
  h3, .testimonial-content p, .ft-contact-details address, .ft-contact-details a {
    font-size: 16px;
  }
    .offcanvas-start {
    width: 100%;
    }

}
@media (max-width: 420px) {
    .service-provider-sec .row .row .col-6 {
        width: 100%;
    }
    .modal-list li span {
    padding-right: 0;
    display: block;
    }
}
@media (max-width: 360px) {
.ban-slide figure {
    aspect-ratio: 12 / 17;
  }
  .executive-vehicle-innr ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.lid-fleet-slider {
    margin-top: 32px;
}

.lid-fleet-slider .slick-list {
    margin: 0 -12px;
}

.lid-fleet-slide {
    padding: 0 12px;
}

.lid-fleet-card {
    cursor: pointer;
    outline: none;
    -webkit-transition: border-color 0.25s, -webkit-box-shadow 0.25s;
    transition: border-color 0.25s, -webkit-box-shadow 0.25s;
    transition: border-color 0.25s, box-shadow 0.25s;
    transition: border-color 0.25s, box-shadow 0.25s, -webkit-box-shadow 0.25s;
}

.lid-fleet-card.is-selected,
.lid-fleet-card:focus-visible {
    border-color: var(--color-primary);
    -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.lid-fleet-card .vehicle-img img {
    max-width: 100%;
}

.lid-fleet-slider .slick-prev,
.lid-fleet-slider .slick-next {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
}

.lid-fleet-slider .slick-prev {
    left: -65px;
    right: auto;
}

.lid-fleet-slider .slick-next {
    left: auto;
    right: -65px;
}

@media (max-width: 991px) {
    .lid-fleet-slider .slick-prev {
        left: 0;
    }

    .lid-fleet-slider .slick-next {
        right: 0;
    }
}
.lid-fare-estimate {
    background: rgba(243, 217, 156, 0.16);
    border: 1px solid rgba(243, 217, 156, 0.7);
    border-radius: 6px;
    color: var(--color-white);
    margin-bottom: 24px;
    padding: 16px 18px;
}

.lid-fare-estimate strong,
.lid-fare-estimate span,
.lid-fare-estimate small {
    display: block;
}

.lid-fare-estimate strong {
    font-size: 24px;
    margin-bottom: 6px;
}

.lid-fare-estimate span {
    color: var(--color-white);
    opacity: 0.9;
}

.lid-fare-estimate small {
    color: var(--color-white);
    margin-top: 6px;
    opacity: 0.75;
}