.services-section {
    background: #046A53;
    background: linear-gradient(45deg, #00281F 4%, #075645 24%, #046A53 33%, #0A4437 44%, #084E3F 62%, #065B48 69%, #046A53 77%, #075645 83%, #00281F 98%);
    color: #DEDEDE;
}

.services-section .explore-all-services {
    display: none;
}

@media screen and (min-width: 768px) {
    .services-section .explore-all-services {
        display: flex;
    }
}

.services-section h1 {
    margin-top: 0;
}

.service {
    width: 100%;
    display: flex;
    margin-top: 50px;
    flex-flow: column;
}

@media screen and (min-width: 768px) {
    .service {
        flex-flow: row;
    }
}

.service .service-image {
    width: 100%;
    padding-right: 0;
}

@media screen and (min-width: 768px) {
    .service .service-image {
        width: 55%;
        padding-right: 30px;
    }
}

.service .service-image:nth-child(2) {
    padding-left: 30px;
    padding-right: 0;
}

.service .service-image img {
    border-radius: 9px;
}

.service .service-content {
    width: 100%;
    padding: 0;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .service .service-content {
        width: 45%;
        padding: 0 20px;
        margin-top: 0;
    }
}

.service .service-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service .service-cta {
    margin-top: 20px;
    font-size: 20px;
}

.service:nth-child(2n) {
    flex-direction: column;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .service:nth-child(2n) {
        flex-direction: row-reverse;
    }
}

.service:nth-child(2n) .service-image {
    padding: 0;
}

@media screen and (min-width: 768px) {
    .service:nth-child(2n) .service-image {
        padding-right: 0;
        padding-left: 30px;
    }
}

.booking-steps-section .section-header {
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.booking-steps-section .section-header h1 {
    color: #046A53;
    margin-bottom: 0;
}

.booking-steps-section .booking-steps-grid {
    display: block;
    margin-top: 50px;
}

@media screen and (min-width: 768px) {
    .booking-steps-section .booking-steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 50px;
    }
}

.booking-steps-section .booking-steps-grid .booking-step {
    display: flex;
    flex-direction: column;
    padding: 50px;
    border-radius: 0 60px 0 60px;
    background-color: #B7C6C3;
    color: #046A53;
    height: max-content;
}

.booking-steps-section .booking-steps-grid .booking-step .booking-step-number h2 {
    font-weight: 600;
}

.booking-steps-section .booking-steps-grid .booking-step .booking-step-content .text-s-medium {
    font-weight: 700;
}

.booking-steps-section .booking-steps-grid .booking-step:nth-child(2n) {
    background-color: #DEDEDE;
}

.booking-steps-section .booking-steps-grid .booking-step img {
    display: block;
    margin: 80px auto;
}

.booking-steps-section .booking-steps-grid .slick-next {
    right: -10px;
}

.booking-steps-section .booking-steps-grid .slick-prev {
    left: -10px;
}

.testimonials-section {
    color: #DEDEDE;
    overflow: hidden;
}

.testimonials-section .testimonial-author {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.testimonials-section .testimonial-author::before {
    content: "";
    width: 30px;
    border-bottom: 1px solid #DEDEDE;
    margin-right: 5px;
}

.testimonials-section .testimonial-author p {
    margin: unset;
}

.testimonials-section .slider {
    max-width: 100%;
    margin: 20px auto 0;
}

.testimonials-section .slick-list {
    overflow: visible !important;
    /* Allow shadows to be visible */
}

.testimonials-section .slick-slide {
    transition: transform 0.3s ease-in-out;
    opacity: 1;
    /* Dim inactive slides */
    padding: 50px 70px;
    border-radius: 80px 115px 115px 0;
    box-shadow: inset 0 0 0 1px #DEDEDE;
    width: auto;
    /* Allow slides to have different widths */
    margin: 0 30px;
    /* Adjust the space between slides */
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .testimonials-section .slick-slide {
        padding: 70px 84px;
        margin: 0 15px;
        opacity: 0.5;
    }
}

.testimonials-section .slick-slide.slick-current {
    background-color: #046A53;
    border: none;
    box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
}

.testimonials-section .slick-center {
    opacity: 1;
    /* Highlight the active slide */
    padding: 123px 84px;
    margin-top: 0;
}

.brands-section {
    background-color: #DEDEDE;
    padding: 40px 0;
}

.brands-section .section-header h1 {
    font-size: 30px;
}

@media screen and (min-width: 768px) {
    .brands-section .section-header h1 {
        font-size: 42px;
    }
}

.brands-section .container {
    display: flex;
    flex-flow: column;
}

@media screen and (min-width: 768px) {
    .brands-section .container {
        flex-flow: row;
    }
}

.brands-section .container>div {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .brands-section .container>div {
        width: 50%;
    }
}

.brands-section .brands-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
}

@media screen and (min-width: 768px) {
    .brands-section .brands-grid {
        flex-flow: row;
    }
}

.brands-section .brands-grid .brands {
    display: flex;
    /* Flexbox container */
    flex-wrap: wrap;
    /* Allow items to wrap on multiple lines */
    gap: 10px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .brands-section .brands-grid .brands {
        margin-bottom: 0;
    }
}

.brands-section .brands-grid .brands .brand {
    width: 75px;
    height: 75px;
}

.brands-section .brands-grid .brands .brand img {
    filter: grayscale(100%);
}

.partnership-section {
    display: flex;
    flex-flow: column;
    color: #DEDEDE;
    background-color: #121212;
}

@media screen and (min-width: 768px) {
    .partnership-section {
        flex-flow: row;
    }
}

.partnership-section>div {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .partnership-section>div {
        width: 50%;
    }
}

.partnership-section h3 {
    font-weight: normal;
}

.partnership-section .partnership-content {
    padding: 50px 30px;
}

@media screen and (min-width: 768px) {
    .partnership-section .partnership-content {
        padding: 30px 100px;
    }
}

.partnership-section .partnership-image {
    overflow: hidden;
}

.partnership-section .partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomImage 5s ease-in-out forwards;
}

.partnership-section .site-button {
    margin-top: 50px;
}

.meet-ceo-section {
    background-size: cover;
    background-position: center;
    color: #DEDEDE;
    position: relative;
    background-color: #046A53;
    background: linear-gradient(108.12deg, rgba(0, 40, 31, 0.95) 0.49%, rgba(1, 45, 35, 0.95) 8.45%, rgba(2, 52, 40, 0.95) 31.84%, rgba(4, 66, 52, 0.95) 48.75%, rgba(2, 53, 42, 0.95) 52.73%, rgba(0, 42, 32, 0.95) 73.63%, rgba(0, 42, 32, 0.95) 81.09%, rgba(4, 66, 52, 0.95) 87.06%, rgba(0, 42, 32, 0.95) 100%);
}

.meet-ceo-section .meet-ceo-content {
    display: flex;
    flex-flow: column-reverse;
}

.meet-ceo-section .meet-ceo-content>div {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .meet-ceo-section .meet-ceo-content {
        display: flex;
        flex-flow: row;
    }

    .meet-ceo-section .meet-ceo-content>div {
        width: 50%;
    }
}

.meet-ceo-section .meet-ceo-content .ceo-name {
    margin-top: 20px;
}

.meet-ceo-section .meet-ceo-content .meet-ceo-left {
    text-align: left;
}

.meet-ceo-section .meet-ceo-content .meet-ceo-right {
    padding: 0px;
}

.meet-ceo-section .meet-ceo-content .meet-ceo-right img {
    width: 100%;
    box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
    border-radius: 9px;
}

@media screen and (min-width: 768px) {
    .meet-ceo-section .meet-ceo-content .meet-ceo-right {
        padding: 20px;
    }

    .meet-ceo-section .meet-ceo-content .meet-ceo-right img {
        width: auto;
    }
}

.meet-ceo-section .parallax-bg {
    opacity: 0.1;
}

.meet-ceo-section p {
    margin-bottom: 20px;
}

.meet-ceo-section h4 {
    font-weight: normal;
    margin-bottom: 20px;
}

.mile-stone-section .mile-stone-content {
    position: relative;
}

.mile-stone-section .mile-stone-content::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #B7C6C3;
    position: absolute;
    display: block;
    left: 50px;
    top: 20px;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content::before {
        left: 50%;
    }
}

.mile-stone-section .mile-stone-content::after {
    content: "";
    width: 2px;
    height: var(--scroll-progress, 0%);
    /* Default height is 0% */
    background-color: #046A53;
    position: absolute;
    left: 51px;
    top: 20px;
    transform: translateX(-50%);
    transition: height 0.3s ease-out;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content::after {
        left: calc(50% + 1px);
    }
}

.mile-stone-section .mile-stone-content .mile-stone-outter {
    width: 100%;
    display: flex;
    text-align: left;
}

.mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) {
    flex-direction: row;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) {
        flex-direction: row-reverse;
        text-align: right;
    }
}

.mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) .mile-stone-item:nth-child(even)::after {
    left: 0;
    right: auto;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) .mile-stone-item:nth-child(even)::after {
        left: auto;
        right: -21px;
    }
}

.mile-stone-section .mile-stone-content .mile-stone-outter.active .mile-stone-item::after {
    background-color: #046A53;
    box-shadow: 0 0 8px #046A53;
}

.mile-stone-section .mile-stone-content .mile-stone-item {
    width: 50%;
    padding: 20px 50px;
    position: relative;
}

.mile-stone-section .mile-stone-content .mile-stone-item p {
    margin-bottom: 20px;
}

.mile-stone-section .mile-stone-content .mile-stone-item img {
    width: 100%;
    margin-top: 20px;
    box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
    border-radius: 9px;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content .mile-stone-item img {
        max-width: 80%;
    }
}

.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(odd) {
    width: 50px;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content .mile-stone-item:nth-child(odd) {
        width: 50%;
        padding: 20px 50px;
    }
}

.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even) {
    width: calc(100% - 50px);
}

.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even)::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #B7C6C3;
    border-radius: 50%;
    position: absolute;
    display: block;
    left: 1px;
    top: 32px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even) {
        width: 50%;
    }
}

.transport-solution-section .transport-solution-content {
    display: flex;
    flex-flow: column;
}

@media screen and (min-width: 768px) {
    .transport-solution-section .transport-solution-content {
        flex-flow: row;
    }
}

.transport-solution-section .transport-solution-content>div {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .transport-solution-section .transport-solution-content>div {
        width: 50%;
    }
}

.transport-solution-section .transport-solution-content .transport-solution-left {
    padding: 0 50px;
}

.transport-solution-section .transport-solution-content .transport-solution-left h4 {
    font-weight: normal;
}

.transport-solution-section .transport-solution-content .transport-solution-right .image-outter {
    margin-right: 0;
}

.transport-solution-section .transport-solution-content .transport-solution-right img {
    width: 100%;
}

.transport-solution-section .transport-solution-content .image-outter {
    border-radius: 12px 0 0 12px;
    padding: 50px 0 50px 50px;
}

.transport-solution-section .transport-solution-content .image-outter img {
    border-radius: 9px 0 0 9px;
}

.image-outter {
    margin: auto;
    width: fit-content;
    background-color: #046A53;
    padding: 30px;
    border-radius: 12px;
}

.image-outter img {
    border-radius: 9px;
}

.driven-services-section .driven-service {
    text-align: center;
}

.driven-services-section .driven-service-content {
    border: 1px solid #B7C6C3;
    padding: 40px 5px;
    border-radius: 0 0 60px 60px;
    width: calc(100% - 40px);
    max-width: 375px;
    margin: auto;
    margin-top: -10px;
}

.driven-services-section .driven-service-image {
    z-index: 1;
    position: relative;
    padding: 0 10px;
}

.driven-services-section button,
.driven-services-section a {
    margin-top: 20px;
}

.driven-services-section .slick-arrow {
    top: 40%;
}

.driven-services-section .slick-next {
    right: 0;
}

.driven-services-section .slick-prev {
    left: 0;
}

.driven-services-section .slick-dots {
    position: absolute;
    bottom: -25px;
    /* Adjust position */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #B7C6C3;
    /* Background color */
    border-radius: 4px;
    margin-top: 30px;
}

.driven-services-section .slick-dots li {
    flex: 1;
    /* Make dots stretch like a line */
    height: 4px;
    /* Thickness of the line */
    margin: 0;
    /* Small gap between */
    transition: background 0.3s ease-in-out;
    border-radius: 4px;
    padding: 0;
}

.driven-services-section .slick-dots li button {
    display: none;
}

.driven-services-section .slick-dots li.slick-active {
    background: #046A53;
    /* Highlight active slide */
}

.fleet-content-outter {
    padding-bottom: 50px;
}

.fleet-slider {
    border-radius: 60px;
    margin-bottom: 50px;
}

.fleet-slider .fleet-slide-inner {
    display: flex;
    flex-flow: column;
}

@media screen and (min-width: 768px) {
    .fleet-slider .fleet-slide-inner {
        flex-flow: row;
    }
}

.fleet-slider .fleet-slide-inner .fleet-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 60px 60px 0 0;
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 768px) {
    .fleet-slider .fleet-slide-inner .fleet-image {
        width: 55%;
        height: auto;
        border-radius: 60px 0 0 60px;
        background-size: cover;
        background-position: center;
    }
}

.fleet-slider .fleet-slide-inner .fleet-content {
    width: 100%;
    border: 1px solid #B7C6C3;
    border-radius: 0 0 60px 60px;
    border-top: none;
}

@media screen and (min-width: 768px) {
    .fleet-slider .fleet-slide-inner .fleet-content {
        width: 45%;
        border: 1px solid #B7C6C3;
        border-radius: 0 60px 60px 0;
        border-left: none;
    }
}

.fleet-slider .fleet-content-inner {
    padding: 50px;
}

.fleet-slider .fleet-content-inner .fleet-tags {
    display: flex;
    gap: 10px;
    margin: 20px auto;
}

.fleet-slider .fleet-content-inner .fleet-tags span {
    background-color: #B7C6C3;
    padding: 8px 20px;
    border-radius: 32px;
}

.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag {
    flex: 1;
}

.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag .tag-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #046A53;
}

.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag .tag-icon p {
    font-size: 16px;
    margin-left: 5px;
}

.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag .tag-icon img {
    height: 18px;
}

.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag p {
    font-size: 10px;
    line-height: 10px;
    margin-top: 5px;
}

.fleet-slider .slick-prev,
.fleet-slider .slick-next {
    bottom: -25px;
    top: auto;
    left: auto;
    right: auto;
    background-color: #B7C6C3;
}

.fleet-slider .slick-next {
    right: 20%;
}

@media screen and (min-width: 768px) {
    .fleet-slider .slick-next {
        left: 30%;
        right: auto;
    }
}

.fleet-slider .slick-prev {
    left: 20%;
}

.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner {
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner {
        flex-direction: row-reverse;
    }
}

.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-content {
    border-radius: 0 0 60px 60px;
    border: 1px solid #B7C6C3;
    border-top: none;
}

@media screen and (min-width: 768px) {
    .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-content {
        border-radius: 60px 0 0 60px;
        border: 1px solid #B7C6C3;
        border-right: none;
    }
}

.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-image {
    border-radius: 60px 60px 0 0;
}

@media screen and (min-width: 768px) {
    .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-image {
        border-radius: 0 60px 60px 0;
    }
}

.fleet-slider:nth-child(2n) .slick-next {
    right: 20%;
    left: auto;
}

.fleet-slider:nth-child(2n) .slick-prev {
    right: auto;
    left: 20%;
}

@media screen and (min-width: 768px) {
    .fleet-slider:nth-child(2n) .slick-prev {
        right: 30%;
        left: auto;
    }
}

.stay-update-section {
    height: 100vh;
}

.stay-update-section h1 {
    color: #046A53;
    font-size: 48px;
    background: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mask-image: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
    -webkit-mask-image: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
    font-weight: 600;
    margin-top: 0;
}

.stay-update-section p {
    color: #03B48C;
    font-weight: 400;
    max-width: 930px;
}

.parallax-section {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -10vh;
    left: 0;
    width: 100%;
    height: 120vh;
    /* Slightly larger to create a parallax effect */
    background-size: cover;
    background-attachment: fixed;
    /* Enables the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    padding: 180px 0;
}

.appear .overlay {
    opacity: 1;
}

.appear .content {
    opacity: 1;
    transform: translateY(0);
}

.user-section {
    display: flex;
    flex-direction: column;
    color: #DEDEDE;
}

.user-section.section-padding {
    padding-top: 100px;
}

@media screen and (min-width: 768px) {
    .user-section {
        flex-direction: row;
    }

    .user-section.section-padding {
        padding-top: 50px;
    }
}

.user-section h1,
.user-section h4 {
    font-weight: normal;
}

.user-section h1 b,
.user-section h4 b {
    color: #068C6E;
}

.user-section h4 {
    margin-bottom: 20px;
}

.user-section>div {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .user-section>div {
        width: 50%;
    }
}

.user-section>div .um-login,
.user-section>div .un-register {
    max-width: 100%;
    margin-top: 20px;
}

.user-section>div label,
.user-section>div span,
.user-section>div a {
    color: #DEDEDE !important;
}

.user-section>div.login-section,
.user-section>div.registration-section {
    padding: 0;
}

@media screen and (min-width: 768px) {

    .user-section>div.login-section,
    .user-section>div.registration-section {
        padding: 0 50px;
    }
}

.user-section>div .um-center {
    text-align: left;
}

.user-section>div .um-link-alt {
    color: #046A53 !important;
}

.user-section>div .um-field-area input[type=text],
.user-section>div .um-field-area input[type=email],
.user-section>div .um-field-area input[type=password],
.user-section>div .um-field-area input[type=text]:focus,
.user-section>div .um-field-area input[type=email]:focus,
.user-section>div .um-field-area input[type=password]:focus {
    background-color: #046A53;
    background: linear-gradient(45deg, #068C6E, #00372b);
    color: #DEDEDE;
    border: 1px solid #068C6E !important;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;
}

.user-section>div .um-field-error {
    background-color: transparent;
    color: red;
    margin: 0;
    padding: 0;
}

.user-section>div .um-field-error .um-field-arrow {
    display: none;
}

.user-section>div button {
    margin-top: 30px;
}

.user-section .login-section {
    border-right: 0;
}

@media screen and (min-width: 768px) {
    .user-section .login-section {
        border-right: 1px solid #DEDEDE;
    }
}

.user-section .um-form input[type=submit].um-button {
    font-size: 14px;
    font-weight: 700 !important;
    padding: 0px 50px 0 20px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    color: #DEDEDE;
    text-transform: uppercase !important;
    background-color: #046A53;
    background: radial-gradient(28.12% 78.97% at 50% 50%, #057B61 50%, #046A53 100%), linear-gradient(270deg, rgba(4, 106, 83, 0.2) 29%, rgba(4, 106, 83, 0.2) 70.5%);
    border: none;
    box-shadow: 0px 0px 2.5px 1px #046A53;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 150px;
    --angle: 36.47deg;
    border: 1px solid #068C6E !important;
}

.user-section .um-form input[type=submit].um-button .arrow {
    position: absolute;
    right: 7px;
}

.user-section .um-form input[type=submit].um-button:hover::before {
    animation: spinBGColor 1.5s ease-in-out infinite;
    /* Start animation */
}

.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i {
    color: #068C6E !important;
}

.book-a-ride-form {
    margin: auto;
}

.book-a-ride-form .steps-button {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 640px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
}

.book-a-ride-form .steps-button .line {
    width: 100%;
    height: 2px;
    background: #B7C6C3;
    position: absolute;
    top: 15px;
    z-index: -1;
}

.book-a-ride-form .steps-button .line::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #068C6E;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.book-a-ride-form .steps-button[current-step="2"] .line::after {
    width: 50%;
}

.book-a-ride-form .steps-button[current-step="3"] .line::after {
    width: 100%;
}

.book-a-ride-form .steps-button .step-button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B7C6C3;
    border-radius: 50%;
    background: #B7C6C3;
    color: #068C6E;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 20.1px 0px rgba(4, 106, 83, 0.6);
}

.book-a-ride-form .steps-button .step-button:hover,
.book-a-ride-form .steps-button .step-button.active {
    background: #068C6E;
    color: #DEDEDE;
    border: 1px solid #068C6E;
}

.book-a-ride-form .step-1,
.book-a-ride-form .step-2 {
    max-width: 640px;
    margin: auto;
}

.book-a-ride-form .step-3 .step-3-form-group {
    display: flex;
    position: relative;
    flex-flow: column;
    gap: 100px;
}

.book-a-ride-form .step-3 .step-3-form-group>div {
    flex: 1;
}

@media screen and (min-width: 768px) {
    .book-a-ride-form .step-3 .step-3-form-group {
        flex-flow: row;
    }
}

.book-a-ride-form .step-3 .step-3-form-group .details-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 100%;
    background: #B7C6C3;
    display: none;
}

@media screen and (min-width: 768px) {
    .book-a-ride-form .step-3 .step-3-form-group .details-left::after {
        display: block;
    }
}

.book-a-ride-form .step-3 .step-3-form-group .car-image {
    border-radius: 60px 0 60px 0;
}

.book-a-ride-form select,
.book-a-ride-form input[type=date],
.book-a-ride-form input[type=text],
.book-a-ride-form input[type=email],
.book-a-ride-form input[type=password],
.book-a-ride-form input[type=text]:focus,
.book-a-ride-form input[type=email]:focus,
.book-a-ride-form input[type=password]:focus {
    width: 100%;
    padding: 10px;
    border: 1px solid #068C6E;
    border-radius: 5px;
    background: transparent;
    padding: 10px;
}

.book-a-ride-form .form-group {
    margin-top: 5px;
    margin-bottom: 20px;
}

.book-a-ride-form .form-group label {
    margin-bottom: 5px;
    display: block;
}

.book-a-ride-form .form-group.flex {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .book-a-ride-form .form-group.flex {
        flex-flow: row;
    }
}

.book-a-ride-form .form-group-inner {
    flex: 1;
}

.book-a-ride-form button {
    margin-top: 20px;
}

.book-a-ride-form .form-group .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    gap: 10px;
    user-select: none;
}

.book-a-ride-form .form-group .custom-checkbox p {
    font-weight: 400;
    display: flex;
    flex-flow: column;
}

.book-a-ride-form .form-group .custom-checkbox p span {
    color: #757575;
    font-size: 14px;
}

/* Hide default checkbox */
.custom-checkbox input {
    display: none;
}

/* Custom checkbox shape */
.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #046A53;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    background-color: #046A53;
    border-color: #046A53;
}

/* Checkmark animation */
.custom-checkbox input:checked+.checkmark {
    background-color: #046A53;
    border-color: #046A53;
}

/* Checkmark icon */
.custom-checkbox input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: opacity 0.3s ease-in-out;
}

.cars-slider .slick-list {
    border-radius: 60px 0 60px 0;
}

.cars-slider .slick-next,
.cars-slider .slick-prev {
    margin-top: unset;
    top: 90%;
}

.cars-slider .slick-next {
    right: 35%;
}

.cars-slider .slick-prev {
    left: 35%;
}

.step-2 {
    display: none;
}

.step-3 {
    display: none;
}