@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --theme-main: #007BBE;
    --text-gray: #7F7F7F;
    --text-dark: #161616;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    font-family: "Onest", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a[href="https://silktide.com/consent-manager"] {
    display: none !important;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0px;
}

a,
.transition,
input[type="submit"] {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

a,
a:hover {
    color: var(--blue-light);
    cursor: pointer;
    text-decoration: none;
}

input[type="submit"] {
    backface-visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    cursor: pointer;
}

textarea,
input,
select {
    border-radius: 0;
    resize: none;
    box-sizing: border-box;
    width: 100%;
}

table,
tr,
td,
th {
    border-spacing: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

body {
    width: 100%;
    counter-reset: gap;
    overflow-x: hidden;
    background-color: var(--white);
    font-family: "Onest", sans-serif;
    line-height: 100%;
    position: relative;
}

.header {
    padding: 24px 0;
    border-bottom: 1px solid #E3E3E3;
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 9999;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.header-menu .header-logo img {
    height: 50px;
}

.header-menu .header-logo {
    position: relative;
}

header {
    transition: all 0.3s ease;
}

.header.active {
    padding: 20px 0;
}

.header.active .header-menu .header-logo img {
    height: 30px;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2px;
    height: 40px;
    background-color: #00AEEA;
    margin: 0 auto;
}

.header-menu .support-link {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 120%;
    /* color: #00AEEA; */
    color: #29a71a;
    font-weight: 500;
    /* border: 2px solid #00AEEA; */
    border: 2px solid #29a71a;
    padding: 10px 20px;
    border-radius: 100px;
}

.header.active .header-menu .support-link {
    right: 140px;
}

.preloader {
    background-color: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}

.loader {
    width: 35px;
    aspect-ratio: 1;
    --_g: no-repeat radial-gradient(farthest-side, #00AEEA 94%, #fff);
    background: var(--_g) 0 0, var(--_g) 100% 0, var(--_g) 100% 100%,
        var(--_g) 0 100%;
    background-size: 40% 40%;
    animation: spine 0.5s infinite;
}

@keyframes spine {
    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0;
    }
}


.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    background-color: #00000096;
}

.banner-section {
    padding: 90px 0 64px;
    margin-top: 0;
}

.title {
    font-size: 40px;
    line-height: 120%;
    color: var(--theme-main);
    font-weight: 500;
    text-align: center;
}

.sub-text {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
}

.btn-primary {
    font-size: 16px;
    color: #fff;
    background-color: #007BBE;
    line-height: 150%;
    font-weight: 400;
    padding: 12px 25px;
    border-radius: 60px;
    text-align: center;
    border: 0;
}

.btn-primary:focus,
.btn-primary:hover {
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    background-color: #007BBE !important;
}

.hero {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    height: 730px;
    background: url("../images/banner.png") no-repeat center center/cover;
    /* Replace with your image */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    border-radius: 20px;
    /* padding: 0 45px; */
    padding: 0 85px;
    margin-top: 60px;
    object-fit: cover;
}

.booking-form {
    width: 100%;
    background: var(--white);
    padding: 18px 20px;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 2px 2px 9px 0px #00000040;
    position: relative;
    top: -40px;

}

.booking-form input,
.booking-form select,
.booking-form button {
    padding: 10px 20px;
    border: 1px solid #C7C7C7;
    border-radius: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    font-weight: 500;
    /* width: 100%; */
}

.input-wrap {
    width: 20%;
    display: flex;
    align-items: center;
    position: relative;
}

.iti {
    width: 100%;
}

.booking-form input::placeholder,
.form-control-custom::placeholder {
    color: #959595;
}

.form-control-custom {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #C7C7C7;
    border-radius: 24px;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

textarea.form-control-custom {
    height: 100px;
}

.custom-modal .modal-content {
    border-radius: 20px;
    border: 0;
}

.custom-modal .modal-title {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: #000;
    font-family: var(--font-regular-sf);
}

.btn-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

.custom-modal .modal-footer {
    margin-top: 0;
}

.custom-modal .modal-body {
    padding-bottom: 0;
}

.booking-form button {
    /* max-width: 155px;
    width: 100%; */
    background-color: #007BBE;
    color: var(--white);
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 60px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #007BBE;
}

.booking-form button:hover {
    background-color: #005B8C !important;
    border-color: #005B8C !important;
    outline: none !important;
    box-shadow: none !important;
}

.container-2 {
    padding: 0 60px;
}

.section {
    padding: 64px 0;
}

.minime-portfolio {
    overflow-x: hidden;
}

.ride-section {
    padding-bottom: 0;
}

.faq-section {
    padding-top: 0;
}

.ride-wrap {
    min-height: 270px;
    max-height: 270px;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(144, 227, 255, 0.6), rgba(144, 227, 255, 0.6)),
    radial-gradient(56.11% 59.63% at 57.24% 39.07%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); */
    border-radius: 20px;
    padding: 18px 0 18px 20px;
    overflow-x: hidden;
    background-image: url(../images/transparent-bg.png);
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    /* margin-top: 45px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.ride-cards {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ride-cards .ride-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.ride-wrap h3 {
    max-width: 250px;
    width: 100%;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
    color: #000;
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 1;
}

.mobile-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.ride-wrap ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 20px;
    bottom: 18px;
}

.ride-wrap .car-img {
    width: 100%;
    margin-bottom: 0;
    height: 175px;
    object-fit: cover;
    margin-top: 20px;
}

.ride-wrap ul li {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #FFFFFFCC;
    border-radius: 9px;
    font-size: 14px;
    color: #161616;
    line-height: 120%;
    letter-spacing: 0;
    font-weight: 500;
}

.ride-wrap ul li img {
    margin-right: 5px;
}

.book-ride-section {
    height: 860px;
    background-image: url(../images/book-ride-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    position: relative;
}

.book-ride-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000026;
    background-blend-mode: multiply;
}

.rides-wrapper {
    display: flex;
    align-items: center;
}

.rides-wrapper .slick-track {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rides-wrapper .rides-item img {
    /* max-width: 415px; */
    width: 100%;
    height: 234px;
    /* margin-top: 10px; */
    border-radius: 20px;
    object-fit: cover;
}

.rides-wrapper-slider {
    margin: 0 0 15px;
}

.rides-wrapper-slider-reverse {
    direction: rtl;
}

.driveSlider .slick-slide {
    padding: 0 20px;
    /* 15px on left and right = 30px total between items */
    box-sizing: border-box;
}

.driveSlider .slick-list {
    margin: 0 -20px;
    /* Negative margin to offset the slide padding */
}

.driveSlider2 .slick-slide {
    padding: 0 16px;
    /* 15px on left and right = 30px total between items */
    box-sizing: border-box;
}

.mobile-section-ride {
    display: none !important;
}

.driveSlider2 .slick-list {
    margin: 0 -16px;
    /* Negative margin to offset the slide padding */
}

.personal-card {
    height: 470px;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    /* margin-top: 80px; */
}

.personal-card.drive-card {
    height: 540px;
    /* height: 420px; */
    padding: 40px 15px;
}

.personal-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.43%, rgba(0, 0, 0, 0.75) 100%);
    border-radius: 20px;
}

.personal-card .per-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.driveSlider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    bottom: -40px;

}

.driveSlider.slick-dotted.slick-slider {
    margin-bottom: 60px;
}

.driveSlider {
    /* margin-left: 4rem; */
    /* margin-left: 6.2rem; */
    margin-left: 3.2rem;
}

.driveSlider2 {
    margin-left: 4rem;
}

.driveSlider .slick-dots li button {
    display: none;
}

.driveSlider .slick-dots li {
    width: 8px;
    height: 8px;
    background-color: #007BBE4D;
    border-radius: 100px;
    margin: 0;
}

.driveSlider .slick-dots li.slick-active {
    transform: scale(1.3);
    background-color: #007BBE;
}

.driveSlider .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #00AEEA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    bottom: -65px;
    position: absolute;
    top: auto;
    transform: none;

}

.driveSlider .slick-next {
    right: 80px;
}

.driveSlider .slick-prev {
    right: 30px;
    left: auto;
}

.driveSlider .slick-arrow svg path {
    fill-opacity: 1;
    fill: #00AEEA;
}

.driveSlider .slick-arrow:disabled {
    border: 1px solid #00AEEA4D;
}

.driveSlider .slick-arrow:disabled svg path {
    fill: #00AEEA;
    fill-opacity: 0.3;
}

.driveSlider .slick-arrow::before {
    display: none;
}

.personal-card .per-content span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background-color: #fff;
    border-radius: 100px;
    margin: 0 auto 8px;
}

.personal-card .per-content span img {
    width: 24px;
}

.personal-card .per-content h4 {
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 12px;
}

.personal-card.drive-card .per-content h4 {
    font-size: 32px;
}

.personal-card .per-content p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 120%;
}

.accordion-header .accordion-button {
    font-size: 20px;
    line-height: 120%;
    color: #007BBE;
    font-weight: 600;
    padding: 25px 0;
    border: 0;
    border-radius: 0 !important;
}

.scroll-item {
    height: 640px;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-top: 40px;
}

.pin-spacer {
    inset: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-wrapper {
    width: 100%;
    position: relative;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);

}

.banner-section .hero-wrapper.active {
    /* width: 80%;
    position: fixed;
    top: 120px; */
    z-index: 9;
    transition: all 0.5s ease;
    transform: translateY(0);
    z-index: 9;
}

.hero-content .inner-content {
    padding-top: 160px;
    position: static;
    transform: none !important;
    filter: none !important;
}

.hero-content .inner-content .subtitle {
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: 400;
    width: max-content;
    position: relative;
}

.hero-content .inner-content .subtitle::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 75px;
    width: 2px;
    height: 160px;
    background-color: #fff;
    /* transform: translateX(-50%); */
}

.hero-content .inner-content h3 {
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    font-weight: 400;
}

.hero-content .inner-content .cta-button {
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 16px;
    line-height: 150%;
    color: #007BBE;
    text-align: center;
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 60px;
    margin-top: 20px;
    position: relative;
}

.cta-button {
    position: relative;
}

.hero-content .inner-content .cta-button::after {
    content: "";
    position: absolute;
    bottom: -230px;
    left: 50%;
    /* background-image: url(../images/vector-line.svg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    object-fit: cover;
    bottom: -260px;
    width: 285px;
    height: 240px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    /* border-left: 0; */
    border-right: 0;
    border-top: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}

.accordion .accordion-item:first-child .accordion-button {
    border-top: 1px solid #8BE1FF;
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #8BE1FF;
}

.accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: #fff;
}

.accordion .accordion-body {
    padding: 0;
}

.accordion .accordion-body p {
    font-size: 18px;
    line-height: 26px;
    color: #7F7F7F;
    font-weight: 400;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/dropdown.svg);
}

.accordion-button::after {
    background-image: url(../images/down.svg);
}

.footer {
    /* background: #90E3FF4D; */
    background: #fff;
    padding-top: 80px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    /* margin-bottom: 15px; */
}

.social-link li a img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.footer-logo {
    text-align: center;
    padding-bottom: 30px;

}

.line {
    width: 100%;
    height: 1px;
    background-color: #007BBE;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 30px;

}

.footer-bottom p,
.footer-bottom ul li a {
    font-size: 14px;
    color: #007BBE;
    font-weight: 500;
    line-height: 150%;
}

.footer-bottom ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* .scroll-container {
    display: flex;
    height: 100vh;
    width: 500vw; 
  } */

/* .scroll-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
.scroll-item{

  height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: background 0.5s ease;
} */

.scroll-container {
    display: flex;
    width: 500%;
    /* 5 panels × 100% */
    height: 100vh;
    z-index: 9;
    top: 20px !important;
    overflow: hidden;
}

.scroll-item {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-size: cover;
    background-position: center !important;
    position: relative;
    opacity: 1;
    object-fit: cover;
    /* transition: opacity 0.3s ease; */
}



.right-section-animation {
    /* background-size:cover !important; */
    background-repeat: no-repeat !important;
    background-image: url(../images/mobile-mask-2.png) !important;
    /* width: 100%; */
    /* bottom: -108px; */

    height: 650px;
    /* width: 85%; */
    /* bottom: -108px; */
    width: 410px;
    /* bottom: 5-22%; */
    bottom: -8%;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

/* .right-section-animation::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/left-animation.png) !important;
} */
.bar-code {
    /* max-width: 200px; */
    margin-top: 20px;
}

.bar-code h5 {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 120%;
    margin-top: 10px;
}

.count-head {
    position: absolute;
    left: -3px;
    background: #bceeff;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

header.active .menu-btn {
    display: block;
}

.menu-btn .line {
    display: block;
    height: 3px;
    border-radius: 10px;
    width: 25px;
    margin: 7px 0;
    background-color: #00AEEA;
}

.menu-btn .line:nth-child(2) {
    width: 20px;
}

.book-now {
    background-color: #007BBE;
    color: var(--white);
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 60px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #007BBE
}

.book-now:hover,
.book-now:focus,
.btn-download:hover,
.btn-download:focus,
.btn-primary:hover,
.btn-primary:focus {
    background-color: #005B8C !important;
    border-color: #005B8C !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

.btn-download {
    width: 100%;
    background-color: rgba(0, 123, 190, 1);
    color: var(--white);
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 60px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #007BBE;
    margin: 0 auto;
    text-align: center;
    display: none !important;
}

.datepicker td,
.datepicker th {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
    background: #007bbe;
    background-color: #007bbe;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-top-90 {
    margin-top: 90px;
}

.ui-datepicker-month,
.ui-datepicker-year {
    padding: 3px 8px;
}

.ui-widget-header {
    /* border: 1px solid #007bbe;
    background: #007bbe;
    color: #fff; */
    font-weight: bold;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 8px;
    right: 8px;
    background-color: #fff !important;
    border-color: #fff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 8px;
}

.ui-datepicker-next.ui-corner-all.ui-state-hover.ui-datepicker-next-hover {
    background-color: #fff !important;
    border-color: #fff !important;
}

.ui-datepicker .ui-datepicker-header {
    background: #007bbe;
    border-radius: 10px;
}

.ui-datepicker .ui-datepicker-title select {
    border-radius: 6px;
    margin-right: 3px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #007bbe;
    background: #007bbe;
    font-weight: normal;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 5px;
}

.ui-widget.ui-widget-content {
    border: 1px solid #007bbe;
    border-radius: 10px;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    background: #fff !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background-color: #005B8C !important;
    border-color: #005B8C !important;
    outline: none !important;
    box-shadow: none !important;
}

a.ui-state-default.ui-state-highlight {
    background: #00AEEA;
    border-color: #00AEEA;
}

a.ui-state-default.ui-state-highlight.ui-state-hover {
    background: #00AEEA !important;
    border-color: #00AEEA !important;
}

.daterangepicker .drp-calendar {
    max-width: 100%;
}

.daterangepicker {
    padding: 20px;
    border-radius: 20px;
    border: 0;
    box-shadow: 2px 2px 9px 0px #00000040;
    padding-bottom: 0;
    margin-top: 20px;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    min-width: 40px;
    width: 40px;
    height: 40px;
    /* font-size: 16px; */
}

/* .daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: #007bbe !important;
} */
.daterangepicker {
    max-height: 80vh !important;
    overflow-y: auto !important;
}

.drp-selected {
    display: none !important;
}

.daterangepicker td.start-date {
    border-radius: 100px !important;
}

.daterangepicker td.end-date {
    border-radius: 100px;
}

.drp-buttons {
    padding: 20px 0 !important;
}

.daterangepicker td.in-range {
    background: #007bbe2b;
}

.daterangepicker td.active {
    background-color: #007bbe;
}

.power-section {
    margin-top: 64px;
}

.ev-section {
    /* padding-top: 20px; */
}

td.off.available {
    visibility: hidden;
    /* display: none; */

}

.lightpick {
    padding: 20px;
    border-radius: 20px;
    /* border: 0; */
    box-shadow: 2px 2px 9px 0px #00000040;
    padding-bottom: 0;
    margin-top: 20px;
}

.lightpick__apply-action,
.lightpick__reset-action {
    padding: 8px 15px;
}

.lightpick__day.is-start-date.is-in-range,
.lightpick__day.is-end-date.is-in-range.is-flipped {
    border-radius: 100px;
}

.lightpick__day.is-end-date.is-in-range,
.lightpick__day.is-start-date.is-in-range.is-flipped {
    border-radius: 100px;
}

.lightpick__footer {
    padding: 10px;
}

/* .lightpick__day {
    height: 34px;
    line-height: 34px;
} */
.is-next-month,
.is-previous-month {
    visibility: hidden;
}

/* Disable hover highlight on disabled days */
.lightpick__day.is-disabled:hover {
    background: none;
    cursor: not-allowed;
}

.parsley-required,
.parsley-custom-error-message,
.parsley-length {
    color: red !important;
}

/* .active.start-date.available{
    background-color: #007bbe !important;
} */
/* .active.end-date.in-range.available{
    background-color: #007bbe;
} */

/* Mobile-specific styles */
.mobile-device {
    overflow-x: hidden;
    touch-action: pan-y;
}

.mobile-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bar-code img {
    width: 130px;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
    max-width: 244px;
    width: 100%;
}

.iti__selected-country {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.iti__country-container .iti__selected-country:focus,
.iti__country-container .iti__selected-country:hover {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.iti .iti__selected-dial-code {
    color: #959595;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
    background-color: transparent !important;
}

.iti__search-input {
    width: 100% !important;
    border-radius: 5px !important;
    padding: 5px 10px !important;
}

.iti__dropdown-content {
    padding: 0 10px;
}

.iti input.iti__tel-input {
    padding-left: 60px !important;
}

.iti__country-container {
    left: 10px !important;
}

.iti__arrow {
    position: absolute;
    right: -12px;
    border-top-color: #959595 !important;
}

.iti__arrow--up {
    border-bottom-color: #959595 !important;
}

.iti__flag {
    display: none !important;
}

.iti .iti__selected-dial-code {
    margin-left: -15px !important;
    font-weight: 500;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.ev-section-slider {
    height: 600px !important;
    max-height: 600px !important;
    background: #bceeff;
    padding: 0 80px 0 110px;
    border-radius: 20px;
}

.slider-mob {
    height: 600px;
    max-width: 100%;
    object-fit: cover;
}

.mobile-scroll-slider {
    position: relative;
}

.ev-section-slider {
    width: 100%;
    /* margin-top: 64px; */

}

.ev-section-slider .row {
    width: 100%;
}

.mobile-scroll-slider {
    position: relative;
    /* Create scroll space */
    /* margin-top: -64px; */
}

.mobile-scroll-slider .pin-spacer {
    margin-top: 64px !important;
}

.ev-section {
    padding-top: 0;
}

/* s */
/* .mobile-scroll-slider .pin-spacer:nth-child(2){
      margin-top: 70px !important;
}
.mobile-scroll-slider .pin-spacer:nth-child(3){
      margin-top: 70px !important;
}
.mobile-scroll-slider .pin-spacer:nth-child(4){
      margin-top: 70px !important;
} */
.ev-section-slider {
    /* height: 700px !important; */
    /* height: 100vh; */
    /* max-height: 100vh !important;
    height: 100vh !important; */
    /* display: flex; */
    /* align-items: center; */
    /* opacity: 1 !important;s */
    /* transform: translateY(100px); */
    top: 120px !important;
    overflow: hidden !important;
    transform: none !important;
    /* transform: translateY(50px) !important; */
    opacity: 1 !important;
}

.ev-section-slider.active {
    opacity: 1;
    /* transform: translateY(0); */
}

.slider-mob.hide-mob {
    display: none;
}


.scroll-container.mobile {
    display: none;
}

.ev-section-slider.is-visible,
.ev-section-extra.is-visible {
    transition: all 0.3s ease;
}

.sliderDriver.desktop {
    display: none;
}

.form-group {
    position: relative;
}

.parsley-errors-list {
    padding: 0;
    font-size: 11px;
    position: absolute;
    bottom: -18px;
    left: 10px;
}

.banner-slider .slick-prev,
.banner-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #fff;
    z-index: 99;
    border-radius: 100px;
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    color: #007bbe;
    font-weight: bold;
}

.banner-slider .slick-prev {
    left: 25px;
}

.banner-slider .slick-next {
    right: 25px;
}

.driveSlider2 .slick-prev,
.driveSlider2 .slick-next {
    display: none !important;
}

.footer-logo img {
    width: 150px;
}

.whatsapp-link {
    position: fixed;
    right: 15px;
    bottom: 200px;
    z-index: 999;
}

.whatsapp-link img {
    width: 50px;
}

section.minime-portfolio.section.mobile-ev-section {
    margin-top: -100px;
}

.asw-menu-btn,
.asw-menu-btn-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    bottom: 75px !important;
    left: 40px !important;
    background-color: #007bbe;
    border-radius: 100px;
    border: 3px solid white !important;
    outline: 5px solid #007bbe !important;
}

/* .asw-widget .asw-menu-btn{
    display: none !important;
} */
.asw-widget .asw-menu-btn-2 {
    display: block !important;
}

.asw-menu-btn svg {
    width: 25px !important;
    height: 25px !important;
    min-height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
}

.footer-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.asw-widget .asw-menu-btn {
    /* position: static !important; */
    position: absolute !important;
    z-index: 9999;
    bottom: 76px !important;
    left: 60px !important;
    border: 3px solid white !important;
    outline: 5px solid #007bbe !important;
    text-decoration: none !important;
    background: #007bbe !important;
    background: linear-gradient(96deg, #007bbe, #007bbe) !important;
}

.sienna-widget-trigger {
    display: none;
}

.video-card {
    max-width: 350px;
    height: 200px;
    width: 100%;
    background-image: url('../images/video-poster.png');
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    position: absolute;
    bottom: 58px;
    left: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.video-card img {
    width: 55px;
}

.video-modal .modal-dialog {
    max-width: 90%;
    background: transparent;
    border: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* Default 16:9 aspect ratio */
    /* OR use your custom height calculation */
    /* padding-bottom: calc(100% * (your-custom-height / your-custom-width)); */
    overflow: hidden;
}

.video-modal video {
    width: 100%;
    height: 640px;
    border-radius: 10px;
    /* aspect-ratio: 16 / 9; */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal .modal-header {
    padding: 0;
    border: 0;
}

.video-modal .modal-content {
    border: 0;
    background: transparent;

}

.video-modal .modal-body {
    padding: 0;
}

.video-btn-close {
    position: absolute;
    z-index: 9;
    background: transparent;
    right: 55px;
    top: -30px;
}

.modal-backdrop {
    z-index: 9999;
}

.video-modal {
    z-index: 99999;
}

.video-btn-close:hover,
.video-btn-close:focus {
    outline: none;
    box-shadow: none;
}


.landing-page {
    display: flex;
    align-items: flex-start;
}

.landing-page .landing-page-content {
    text-align: center;
    /* padding: 65px 120px; */
    text-align: center;
    padding: 40px 120px;
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.landing-page .landing-page-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.landing-page .landing-card {
    margin-top: 48px;
    box-shadow: 2px 2px 9px 0px #00000040;
    padding: 60px 47px;
    background-color: #fff;
    border-radius: 70px;
}

.btn-primary-2 {
    max-width: 280px;
    width: 100%;
    padding: 12px 40px;
    background-color: #007BBE;
    border-color: #007BBE;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-2 img {
    margin-right: 8px;
}

.btn-primary-2:focus,
.btn-primary-2:hover {
    outline: none !important;
    box-shadow: none !important;
    background-color: #007BBE;
    color: #fff;
}

.whatsapp-btn {
    color: #25D366;
    border-color: #25D366;
    background-color: transparent;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
    color: #25D366;
    border-color: #25D366;
    background-color: transparent;
}

.btn-outline {
    background-color: transparent;
    color: #007BBE;
    border-color: #007BBE;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: transparent;
    color: #007BBE;
    border-color: #007BBE;
}

.mb-28 {
    margin-bottom: 28px;
}

.landing-card h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0;
    margin-bottom: 5px;
    color: #007BBE;
    text-align: center;
    margin-top: 55px;
}

.landing-share,
.store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.store-link {
    margin: 40px 0;
}

.landing-share li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

@media (max-width: 890px) {
    .landing-page {
        flex-direction: column;
        height: calc(100vh - 0px);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .landing-page .landing-page-content {
        width: 100%;
        padding: 0;
    }

    .btn-primary-2 {
        padding: 10px 35px;
    }

    .landing-page .landing-card {
        box-shadow: none;
        padding: 25px 27px;
        margin-top: 0;
    }

    .store-link li a img {
        max-width: 183px;
        width: 100%;
    }

    .landing-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px 0;
        border-bottom: 1px solid #E3E3E3;
    }

    .landing-page-img {
        background-image: url('../images/landing/mobile-banner.png') !important;
        height: 100% !important;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0 !important;
    }

    .mb-28 {
        margin-bottom: 17px;
    }

    .landing-card h4 {
        margin-top: 25px;
    }

    .landing-logo img {
        max-width: 155px;
        width: 100%;
    }

    .store-link {
        margin: 25px 0;
    }

    .landing-logo {
        padding: 20px 0;
    }
    .landing-page .landing-page-img{
        background-size: cover;
    }
}

/* .mobile-ev-section{
    margin-top: -120px;
} */
/***********Responsive Css**********/


@media (hover: none) and (pointer: coarse) {
    @supports (-webkit-overflow-scrolling: touch) {
        .scroll-container {
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
        }
    }
}

@media (max-width: 355px) {
    .video-card {
        bottom: 15px !important;
    }

    .header-menu .header-logo img {
        height: 20px !important;
    }
}

@media (max-width: 767px) {

    .booking-form {
        flex-direction: column;
        align-items: center;
        border-radius: 38px;
        top: -110px;
    }

    .asw-widget .asw-menu-btn {
        bottom: 107px !important;
        left: 20px !important;
    }

    .hero.active {
        margin-top: 145px !important;
    }

    .asw-menu-btn {

        bottom: 20px !important;
        left: 20px !important;
    }

    .header-menu .support-link {
        font-size: 14px;
    }

    .custom-modal .modal-title {
        font-size: 18px;
    }

    .personal-card .per-content span {
        margin: 0 auto 8px;
    }

    .personal-card .per-content h4 {
        margin-bottom: 10px;
    }

    .header-menu {
        justify-content: flex-start;
    }

    .sliderDriver.mobile {
        display: none;
    }

    .sliderDriver.desktop {
        display: block;
    }

    .ride-wrap ul {
        position: static;
    }

    .daterangepicker .calendar-table th,
    .daterangepicker .calendar-table td {
        max-width: 35px;
        min-width: 35px;
        width: 35px;
        height: 35px;
        line-height: 35px;

    }

    .daterangepicker {
        padding: 0;
    }

    .drp-buttons {
        padding: 10px 10px !important;
    }

    .banner-section .hero-wrapper {
        /* position: fixed;
        right: -100%;
        top: 189px; */
        /* display: block !important; */
    }

    /* .ev-section-slider{
        top: 75px !important;
    } */

    .banner-section .hero-wrapper.hero-wrapper-active {
        width: 100%;
        display: block !important;
        /* right: 0;
        top: -111px !important;
        padding: 0 !important; */
    }

    .hero-wrapper {
        display: block;
    }

    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type=text],
    .iti input.iti__tel-input[type=tel] {
        max-width: 100%;
    }

    .header-menu.active {
        justify-content: flex-start;
    }

    .minime-portfolio {
        overflow-x: hidden;
        margin-top: auto;
    }

    .minime-portfolio.ev-section {
        padding-top: 0 !important;
    }

    .header-menu.active .support-link {
        display: none;
    }

    .header-menu.active .menu-btn {
        display: block;
    }

    .hero {
        height: 540px;
        padding: 0 25px;
        /* margin-top: 145px; */
        margin-top: 40px;
        background: url("../images/mobile-banner.png") no-repeat center center/cover;
    }

    .booking-form {
        margin: 0;
    }

    .header-menu .header-logo img {
        height: 30px;
    }

    .container-2 {
        padding: 0 20px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
    }

    .booking-form button {
        margin-bottom: 0;
    }

    .banner-section {
        padding: 45px 0 80px;
    }

    .driveSlider.slick-dotted.slick-slider {
        margin-bottom: 40px;
    }

    .title {
        font-size: 28px;
    }

    .driveSlider .slick-arrow {
        display: none !important;
    }

    .driveSlider .slick-dots {
        display: none !important;
    }

    .ride-cards .ride-item h3 {
        font-size: 18px;
    }

    .section {
        padding: 40px 0;
    }

    .mobile-section-ride {
        padding-bottom: 0;
    }

    .ev-section {
        padding-top: 40px;
        /* margin-top: -150px; */
    }

    .personal-card.drive-card .per-content h4 {
        font-size: 28px;
    }

    .personal-card .per-content p {
        font-size: 16px;
    }

    .personal-card .per-content h4 {
        font-size: 22px;
    }

    .personal-card.drive-card {
        height: 495px;
    }

    .booking-form {
        gap: 18px;
    }

    .personal-card {
        margin-top: 24px;
        height: 360px;
    }

    .scroll-item {
        height: 640px !important;
        padding: 0 8px;
        background-repeat: no-repeat;
        background-size: cover;
        transform: none !important;
        /* top: 60px !important; */
    }

    .top-scroll {
        top: 0 !important;
    }

    .scroll-container.mobile .pin-spacer {
        margin-top: 0 !important;
    }

    .ev-section-slider {
        height: auto !important;
        max-height: fit-content !important;
        transform: none !important;
        background-image: url("../images/mob-bg-dr.png");
        object-fit: cover;
        background-size: cover;
        background-color: transparent;
        filter: none !important;
        opacity: 1 !important;
        background-color: #bdeeff;
    }

    .count-wrapper {
        background-color: #a3e7ff;
    }

    .iti .iti__selected-dial-code {
        margin-left: -15px !important;
    }

    .iti__arrow {
        right: -10px;
    }

    .slider-mob {
        height: auto !important;
        object-fit: cover;
        /* width: 300px; */
        display: block;
        margin: 0 auto;
    }

    .slide-img-div {
        margin-top: -50px;
    }

    .col-12.col-md-12:first-child .personal-card {
        margin-top: 0;
    }

    .driveSlider {
        /* margin-left: 15px; */
        margin-left: -24px;
    }

    .sub-text {
        font-size: 16px;
    }

    .hero-content .inner-content .subtitle {
        font-size: 28px;
    }

    .hero-content .inner-content h3 {
        font-size: 16px;
    }

    .hero-content .inner-content .cta-button {
        font-size: 14px;
    }

    .hero-content .inner-content {
        padding-top: 48px;
    }

    .hero-content .inner-content .subtitle::before {
        top: -48px;
        height: 45px;
        /* left: 68px; */
        left: 55px;
    }

    .hero-content .inner-content .cta-button::after {
        background-image: url(../images/verticle-line.svg) !important;
        width: 2px;
        bottom: -255px;
        height: 245px;
        left: 55px;
        transform: none;
    }

    .ride-cards .ride-item .car-img {
        max-width: 100%;
        height: 168px;
        /* width: 90%; */
    }

    .families-wrapper {
        background-image: url(../images/mobile-families-bg.png) !important;
    }

    .business-wrapper {
        background-image: url(../images/mobile-business-travelers-bg.png) !important;
    }

    .adventure-wrapper {
        background-image: url(../images/mobile-adventure-seekers-bg.png) !important;
    }

    .luxury-wrapper {
        background-image: url(../images/mobile-luxury-lovers-bg.png) !important;
    }

    .explorers-wrapper {
        background-image: url(../images/mobile-local-explorers-bg.png) !important;
    }

    .book-ride-section {
        height: 720px;
        background-image: url(../images/book-ride-banner-mob.png) !important;
    }

    /* .mobile-slider .col-12{
        margin: 0 15px;
    } */
    /* Add to your CSS file */
    .mobile-slider .slick-slide {
        padding: 0 18px;
        /* Space between slides */
        box-sizing: border-box;
    }

    .mobile-slider .slick-list {
        margin: 0 -18px;
        /* Offset slide padding */
    }

    .mobile-slider .slick-slide {
        transition: transform 0.3s ease;
    }

    /* For center mode adjustments */
    .mobile-slider .slick-center {
        width: 335px !important;
        transform: scale(1);
        /* Optional: Highlight centered slide */
    }

    .footer-logo img {
        height: 80px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-logo {
        padding-bottom: 30px;
    }

    .footer-bottom ul {
        gap: 10px;
    }

    .footer-bottom p {
        margin-top: 15px;
    }

    .footer-bottom p,
    .footer-bottom ul li a {
        font-size: 12px;
    }

    .accordion-header .accordion-button {
        font-size: 18px;
        padding: 24px 0;
        line-height: 150%;
    }

    .accordion .accordion-body p {
        font-size: 16px;
    }

    .social-link {
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .minime-title h3 {
        font-size: 24px;
        text-align: center;
    }

    .count-wrapper .count-text h4 {
        font-size: 24px;
        text-align: center;
    }

    .count-wrapper .count-text p {
        font-size: 16px;
        text-align: center;
        line-height: 150%;
    }

    .minime-title {
        padding: 0 40px;
    }

    .left-panel,
    .right-panel {
        width: 100% !important;
    }

    .d-flex.slider-2 {
        flex-direction: column;
    }

    section,
    .section {
        overflow-x: hidden;
    }

    .margin-bottom-40 {
        margin-bottom: 25px;
    }

    .margin-top-90 {
        margin-top: 56px;
    }

    .book-ride-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .faq-section {
        margin-bottom: 40px;
    }

    .driveSlider .slick-slide {
        padding: 0 12px;
    }

    .driveSlider2 .slick-slide {
        padding: 0 12px;
    }


    .scroll-container {
        top: 60px !important;
    }

    .count-wrapper .count {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
        height: 48px;
        font-size: 20px;
    }

    .slider-mob {
        display: none;
    }

    .slider-mob.hide-mob {
        display: block;
        position: relative;
        z-index: 9;
    }

    .minime-title-fixed {
        background-color: #a3e7ff;
    }

    .count-wrapper .count-text {
        background: #a3e7ff;
    }

    .count-head {
        background-color: transparent;
    }

    .scroll-container.mobile {
        display: block;
    }

    .scroll-container.desktop {
        display: none;
    }

    .scroll-container {
        height: 100%;
    }

    .ev-section-slider .row {
        width: auto;
    }

    .banner-slider .slick-prev,
    .banner-slider .slick-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 15px;
        transform: none;
    }

    .banner-slider .slick-prev {
        left: 37%;
    }

    .banner-slider .slick-next {
        right: 37%;
    }

    .video-card {
        width: 215px;
        height: 120px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .video-card img {
        width: 42px;
    }

    .video-btn-close {
        right: 25px;
        top: -15px;
    }

    .video-btn-close img {
        width: 40px;
    }

    .video-modal .modal-dialog {
        max-width: 100%;
    }

    /* .video-modal video {
        height: 420px;
    } */
}

@media only screen and (max-width:600px) {
    .scroll-container {
        display: block;
        width: 100%;
    }

    .scroll-item {
        width: 100%;
        height: 100vh;
    }

    .left-panel {
        height: 60vh;
    }

    .right-panel {
        /* height: 420px !important; */
    }

    .image-02 .img2,
    .image-03 .img2,
    .image-04 .img2 {
        padding: 0 0 !important;
    }

    .image-02 .img2,
    .image-03 .img2,
    .image-04 .img2,
    .yellow-color .image-01 .img2 {
        padding: 0 5px !important;
    }

    .rightAnimation {
        top: 0% !important;
    }

    .count-wrapper {
        height: 60vh;
    }

    .count-wrapper {
        height: 55vh !important;
    }


    .right-section-animation {
        /* width: 75% !important;
        height: 75% !important; */
        width: 55% !important;
        height: 55% !important;
        bottom: -10% !important;
    }

    .driveSlider2 {
        margin-left: 0;
    }

    .left-panel {
        height: 65vh !important;
    }

    #magicslider {
        height: 90vh !important;
    }

    .ride-section .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media only screen and (max-width:991px) {
    .minime-title {
        padding: 0 25px;
        top: 0;
    }

    .header-line {
        height: 60px;
    }

    .iti {
        width: 100%;
    }

    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type=text],
    .iti input.iti__tel-input[type=tel] {
        max-width: 100%;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button {
        width: 100%;
    }

    .hero {
        height: 80vh;
    }

    .hero,
    .count-wrapper {
        height: 75vh;
    }

    .hero.active {
        /* margin-top: 145px !important; */
        margin-top: 80px;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .right-panel {
        align-self: center;
    }

    .left-panel {
        height: 55vh;
        width: 100% !important;
    }

    .rightAnimation {
        width: 100%;

    }

    .scrollmagic-pin-spacer {
        min-height: auto !important;
    }

    .right-panel {
        width: 100%;
        padding: 0 0;
        /* height: 70vh; */
    }

    .rightAnimation {
        top: 0%;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .count-wrapper {
        height: 50vh;
    }

    .right-section-animation {
        width: 50%;
        height: 50%;
        bottom: -1%;
    }

    .image-02 .img2,
    .image-03 .img2,
    .image-04 .img2,
    .yellow-color .image-01 .img2 {
        width: 100%;
        padding: 0 15px;
    }

    #magicslider {
        height: 90vh;
        margin-top: 100px !important;
    }

    .d-flex.slider-2 {
        height: auto;
        flex-direction: column;
    }

    .count-head {
        position: static;
        background: transparent
    }

    .count-wrapper {
        border: 0;
        position: relative;
    }

    .count-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        border: 2px solid rgba(0, 123, 190, 1);
        transform: translateX(-50%);
    }

    .count-wrapper .count-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .count-wrapper .count {
        margin: 0 auto;
    }

    .bar-code {
        margin: 15px auto 0;
        display: none;
    }

    .count-item-text {
        margin: 0;
    }

    .count-wrapper .count-text h4 {
        margin-top: 10px;
    }

    .count-wrapper .count-text p {
        margin: 10px 0;
    }

    .btn-download {
        font-size: 14px;
        max-width: max-content;
        display: flex !important;
    }

    .booking-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .header-menu.active {
        justify-content: flex-start;
    }

    .banner-section .hero-wrapper {
        /* position: fixed;
        right: -100%;
        top: 189px; */
        display: block;
    }

    .banner-section .hero-wrapper.hero-wrapper-active {
        /* width: 100%;
        position: absolute;
        right:0;
        top: -112px; */
        display: block !important;
        padding: 0 0px;

    }

    .banner-section .hero-wrapper.active {
        width: 100%;
        position: static;
    }

    .header-menu.active .support-link {
        display: none;
    }

    .header-menu.active .menu-btn {
        display: block;
    }

    .booking-form input,
    .booking-form select {
        width: 100%;
    }

    .minime-title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 90px;

    }

    .minime-title-fixed {
        width: 100%;
        font-size: 24px;
        text-align: center;
        padding: 20px;
        padding-bottom: 10px;
    }

    .ride-section {
        display: none;
    }

    .mobile-section-ride {
        display: block !important;
    }

    .ev-section-slider {
        padding: 0 0 !important;
    }

    .count-wrapper {
        padding: 0 45px;
    }

    .ev-section-slider {
        top: 0;
    }

    .ev-section-slider {
        margin-top: 0px;
    }

    .minime-title-fixed {
        width: 100%;
        font-size: 24px;
        text-align: center;
        padding: 20px;
        padding-bottom: 10px;
    }

    .ev-section-slider {
        height: auto !important;
        max-height: fit-content !important;
        transform: none !important;
        background-image: url(../images/mob-bg-dr.png);
        object-fit: cover;
        background-size: cover;
        background-color: transparent;
        filter: none !important;
        opacity: 1 !important;
        background-color: #bdeeff;
    }

    .slide-img-div {
        margin-top: -50px;
    }

    .count-wrapper {
        background-color: #a3e7ff;
    }

    .minime-title-fixed {
        background-color: #a3e7ff;
    }

    .slider-mob {
        display: none;
        position: relative;
        z-index: 9;
        height: 515px;
    }

    .count-wrapper .count-text {
        background: #a3e7ff;
    }

    .slider-mob.hide-mob {
        display: block;
    }

    .slider-mob {
        display: none;
        margin: 0 auto;
    }

    .input-wrap {
        width: 100%;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .scroll-item {
        height: 640px;
    }

    .hero-content .inner-content {
        padding-top: 80px;
    }

    .hero-content .inner-content .cta-button::after {
        bottom: -222px;
        width: 55px;
        height: 210px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1025px) {
    .ride-cards .ride-item .car-img {
        max-width: 100%;
    }

    .driveSlider,
    .driveSlider2 {
        /* margin-left: 4rem; */
        margin-left: 2rem;
    }

    .section {
        padding: 40px 0;
    }

    .personal-card {
        margin-top: 40px;
    }

    .mobile-slider .slick-slide {
        margin: 0 15px;
    }

    .margin-top-90 {
        margin-top: 60px;
    }

    .col-12.col-md-12:first-child .personal-card {
        margin-top: 0;
    }

    .landing-page .landing-page-content {
        padding: 40px 50px;
    }

    .landing-page .landing-card {
        padding: 40px 30px;
    }

    .landing-page .landing-page-content {
        display: flesx;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (min-width: 1030px) and (max-width: 1366px) {
    .ride-cards .ride-item h3 {
        font-size: 18px;
    }

    .personal-card .per-content h4 {
        font-size: 22px;
    }

    .personal-card .per-content p,
    .count-wrapper .count-text p {
        font-size: 16px;
    }

    .personal-card.drive-card .per-content h4,
    .count-wrapper .count-text h4 {
        font-size: 28px;
    }

    .minime-title h3 {
        font-size: 38px;
    }

    .count-wrapper .count {
        margin-right: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .ev-section {
        padding-top: 20px;
    }

    .ride-section {
        padding-bottom: 0;
    }

    .faq-section {
        padding-top: 0;
    }

    .margin-top-90 {
        margin-top: 60px;
    }

    .personal-card {
        /* margin-top: 60px; */
    }

    .driveSlider,
    .driveSlider2 {
        /* margin-left: 7.1rem; */
        margin-left: 6rem;
    }

    .right-section-animation {
        /* height: 500px;
        width: 70%; */
        bottom: -22%;
    }

    .count-wrapper .count-text {
        padding-left: 50px;
    }

    .bar-code h5 {
        font-size: 14px;
    }

    .bar-code img {
        max-width: 125px;
    }

    /* .right-section-animation{
        right: -14%;
    } */
    .booking-form button {
        font-size: 13px;
        padding: 10px 10px;
    }

    .booking-form {
        gap: 16px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button {
        padding: 10px 10px;
        font-size: 13px;
    }

    .hero-content .inner-content .cta-button::after {
        bottom: -120px;
        width: 240px;
        height: 111px;
    }
}

@media screen and (width: 1280px),
screen and (height: 800px) {
    .right-section-animation {
        /* height: 590px;
        width: 85%; */
        bottom: -20%;
    }
}

@media screen and (width: 1366px),
screen and (height: 768px) {
    .right-section-animation {
        height: 480px;
        width: 55%;
    }

    #magicslider {
        top: 61px;
        height: 90vh;
    }

    .right-section-animation {
        bottom: -28%;
    }

    .image-02 .img2,
    .image-03 .img2,
    .image-04 .img2 {
        width: 100%;
    }

    .yellow-color .image-01 .img2 {
        width: 100%;
    }

    .right-panel {
        width: 55%;
    }

    .rightAnimation {
        top: 0;
    }

    .rightAnimation {
        width: 90%;
    }

}

/* 
@media screen and (width: 1440px),
screen and (height: 809px) {
    .right-panel {
        width: 50%;
    }

    #magicslider {
        height: 90vh;
    }

    .right-section-animation {
        width: 420px;
        bottom: -10%;
    }
} */

@media screen and (width: 1366px),
screen and (height: 809px) {
    .right-section-animation {
        bottom: -21%;
    }
}

@media screen and (width: 1720px),
screen and (height: 1080px) {
    .right-section-animation {
        height: 840px;
        width: 85%;
        bottom: -22%;
    }

    .right-panel {
        height: auto;
    }

    .rightAnimation {
        top: 0;
    }

    #magicslider {
        height: 95vh;
    }
}

@media screen and (width: 1920px) {
    .right-section-animation {
        height: 640px;
        width: 60%;
    }

    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type=text],
    .iti input.iti__tel-input[type=tel] {
        max-width: 100%;

    }

}

@media only screen and (min-width: 1699px) and (max-width: 3599px) {

    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type=text],
    .iti input.iti__tel-input[type=tel] {
        max-width: 100%;

    }
}