/* Fast About Section START */
.section-fast-about-so {
    width: 100%;
    position: relative;
    padding: 112px 50px 38px;
    padding-bottom: 25px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url("../../images/about-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}
.section-fast-about-so__inner {
    width: 100%;
    max-width: 1200px;
    /* min-height: 520px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.section-fast-about-so__content {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 38px;
}
.section-fast-about-so__content h1 {
    margin: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}
.section-fast-about-so__content p {
    max-width: 590px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}
.section-fast-about-so .glb-btns-new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}
.section-fast-about-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.section-fast-about-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.section-fast-about-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}
.section-fast-about-so__cards {
    width: 100%;
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.section-fast-about-so__card {
    min-height: 126px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 7px;
    background-color: rgba(69, 69, 69, 0.78);
    backdrop-filter: blur(3px);
}
.section-fast-about-so__card img {
    width: 90px;
    height: 78px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}
.section-fast-about-so__card h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.section-fast-about-so__card p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}
@media (max-width: 1100px) {
    .section-fast-about-so {
        padding: 90px 30px 38px;
    }

    .section-fast-about-so__inner {
        min-height: auto;
    }

    .section-fast-about-so__cards {
        gap: 18px;
    }

    .section-fast-about-so__card {
        grid-template-columns: 78px minmax(0, 1fr);
        padding: 18px;
    }

    .section-fast-about-so__card img {
        width: 78px;
        height: 70px;
    }
}
@media (max-width: 900px) {
    .section-fast-about-so {
        padding: 80px 30px 50px;
    }

    .section-fast-about-so__cards {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
    }

    /* .section-fast-about-so__card {
        grid-template-columns: 90px minmax(0, 1fr);
    } */

    .section-fast-about-so__card img {
        width: 90px;
        height: 78px;
    }
}
@media (max-width: 768px) {
    .section-fast-about-so {
        padding: 70px 20px 45px;
    }

    .section-fast-about-so__content h2 {
        font-size: 32px;
    }

    .section-fast-about-so__content p {
        font-size: 14px;
    }
}
@media (max-width: 560px) {
    .section-fast-about-so {
        padding: 60px 16px 38px;
        padding-top: 95px;
    }

    .section-fast-about-so__content h1 {
        font-size: 38px;
    }

    .section-fast-about-so__content h2 br {
        display: none;
    }

    .section-fast-about-so .glb-btns-new {
        gap: 10px;
    }

    .section-fast-about-so .glb-btns-new .btn {
        width: 100%;
    }

    .section-fast-about-so__cards {
        margin-top: 38px;
    }
/* 
    .section-fast-about-so__card {
        grid-template-columns: 1fr;
        text-align: center;
    } */

    .section-fast-about-so__card img {
        margin: 0 auto;
    }
}
/* Fast About Section END */



/* About Intro Section START */
.section-about-intro-so {
    width: 100%;
    padding: 112px 50px;
    background-color: #F5F3EF;
}

.section-about-intro-so__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 620px);
    /* align-items: center; */
    justify-content: space-between;
    gap: 80px;
}

.section-about-intro-so__note {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 5px;
}

.section-about-intro-so__note p {
    max-width: 260px;
    margin: 0;
    color: #282828;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-about-intro-so__content {
    width: 100%;
}

.section-about-intro-so__content h2 {
    max-width: 650px;
    margin: 0;
    color: #282828;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.3px;
}

.section-about-intro-so .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.section-about-intro-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}

.section-about-intro-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}

.section-about-intro-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}

@media (max-width: 1100px) {
    .section-about-intro-so {
        padding: 90px 30px;
    }

    .section-about-intro-so__inner {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        gap: 55px;
    }

    .section-about-intro-so__content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .section-about-intro-so {
        padding: 70px 20px;
    }

    .section-about-intro-so__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-about-intro-so__note p {
        max-width: 100%;
        font-size: 13px;
    }

    .section-about-intro-so__content h2 {
        max-width: 100%;
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .section-about-intro-so {
        padding: 60px 16px;
    }

    .section-about-intro-so__content h2 {
        font-size: 20px;
        line-height: 1.45;
    }

    .section-about-intro-so .glb-btns-new {
        gap: 10px;
    }

    .section-about-intro-so .glb-btns-new .btn {
        width: 100%;
    }
}
/* About Intro Section END */




/* Dealer Reach Section START */
.section-dealer-reach-so {
    width: 100%;
    padding: 112px 50px;
    background-color: #fff;
    overflow: hidden;
}

.section-dealer-reach-so__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 500px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.section-dealer-reach-so__content {
    width: 100%;
}

.section-dealer-reach-so h2 {
    max-width: 540px;
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.section-dealer-reach-so__content > p {
    max-width: 560px;
    margin: 22px 0 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-dealer-reach-so__points {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.section-dealer-reach-so__point {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    align-items: flex-start;
    gap: 12px;
}

.section-dealer-reach-so__point span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.section-dealer-reach-so__point p {
    margin: 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-dealer-reach-so__point strong {
    color: #282828;
    font-weight: 700;
}

.section-dealer-reach-so .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.section-dealer-reach-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}

.section-dealer-reach-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}

.section-dealer-reach-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}

.section-dealer-reach-so .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}

.section-dealer-reach-so .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
    color: #F55822;
}

.section-dealer-reach-so__testimonial {
    max-width: 350px;
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-top: 28px;
    margin-left: 28px;
}

.section-dealer-reach-so__quote {
    position: absolute;
    left: -28px;
    top: -8px;
    color: #F55822;
    font-size: 42px;
    font-weight: 800;
    line-height: 100%;
}

.section-dealer-reach-so__testimonial img {
    width: 62px;
    height: 62px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.section-dealer-reach-so__testimonial h4 {
    margin: 0;
    color: #171515;
    font-size: 14px;
    font-weight: 800;
    line-height: 120%;
}

.section-dealer-reach-so__testimonial small {
    display: block;
    margin-top: 2px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
}

.section-dealer-reach-so__stars {
    margin-top: 2px;
}

.section-dealer-reach-so__stars span {
    display: block;
    color: #F55822;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1;
}

.section-dealer-reach-so__testimonial p {
    max-width: 260px;
    margin: 5px 0 0;
    color: #454545;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
}

.section-dealer-reach-so__media {
    width: 100%;
}

.section-dealer-reach-so__media img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .section-dealer-reach-so {
        padding: 90px 30px;
    }

    .section-dealer-reach-so__inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .section-dealer-reach-so__content {
        max-width: 720px;
        margin: 0 auto;
    }

    .section-dealer-reach-so__media {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-dealer-reach-so {
        padding: 70px 20px;
    }

    .section-dealer-reach-so h2 {
        font-size: 32px;
    }

    .section-dealer-reach-so__content > p,
    .section-dealer-reach-so__point p {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .section-dealer-reach-so {
        padding: 60px 16px;
    }

    .section-dealer-reach-so h2 {
        font-size: 28px;
    }

    .section-dealer-reach-so h2 br {
        display: none;
    }

    .section-dealer-reach-so .glb-btns-new {
        gap: 10px;
    }

    .section-dealer-reach-so .glb-btns-new .btn {
        width: 100%;
    }

    .section-dealer-reach-so__testimonial {
        margin-left: 0;
    }
}
/* Dealer Reach Section END */


/* Stress Free Section START */
.section-stress-free-so {
    width: 100%;
    padding: 112px 50px;
    background-color: #FFF;
    overflow: hidden;
}
.section-stress-free-so__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-stress-free-so__head {
    max-width: 620px;
    margin: 0 auto 45px;
    text-align: center;
}
.section-stress-free-so__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}
.section-stress-free-so__head p {
    margin: 10px auto 0;
    color: #777;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}
.section-stress-free-so__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.section-stress-free-so__card {
    min-height: 168px;
    padding: 28px 22px;
    border: 1px solid #DADADA;
    border-radius: 8px;
    background-color: #fff;
}
.section-stress-free-so__card h3 {
    margin: 0 0 14px;
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.section-stress-free-so__card p {
    margin: 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.section-stress-free-so .glb-btns-new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 50px;
}
.section-stress-free-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.section-stress-free-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.section-stress-free-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}
.section-stress-free-so .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.section-stress-free-so .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
    color: #F55822;
}
@media (max-width: 1100px) {
    .section-stress-free-so {
        padding: 90px 30px;
    }

    .section-stress-free-so__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .section-stress-free-so {
        padding: 70px 20px;
    }

    .section-stress-free-so__head {
        margin-bottom: 34px;
    }

    .section-stress-free-so__head h2 {
        font-size: 32px;
    }

    .section-stress-free-so__head p {
        font-size: 14px;
    }

    .section-stress-free-so__card {
        min-height: auto;
        padding: 24px 20px;
    }

    .section-stress-free-so__card h3 {
        margin-bottom: 14px;
    }
}
@media (max-width: 560px) {
    .section-stress-free-so {
        padding: 60px 16px;
    }

    .section-stress-free-so__head h2 {
        font-size: 28px;
    }

    .section-stress-free-so__head p {
        font-size: 14px;
    }

    .section-stress-free-so__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-stress-free-so .glb-btns-new {
        gap: 10px;
        margin-top: 34px;
    }

    .section-stress-free-so .glb-btns-new .btn {
        width: 100%;
    }
}
/* Stress Free Section END */


/* Highest Price Section START */
.section-highest-price-so {
    width: 100%;
    padding: 112px 50px;
    background-color: #F5F3EF;
    overflow: hidden;
}
.section-highest-price-so__inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 580px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.section-highest-price-so__media {
    width: 100%;
}
.section-highest-price-so__media img {
    width: 100%;
    max-width: 440px;
    height: 385px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}
.section-highest-price-so__content {
    width: 100%;
}
.section-highest-price-so__content h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}
.section-highest-price-so__content > p {
    max-width: 560px;
    margin: 10px 0 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.section-highest-price-so__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}
.section-highest-price-so__card {
    min-height: 128px;
    padding: 20px 18px;
    border: 1px solid #DADADA;
    border-radius: 8px;
    background-color: #fff;
}
.section-highest-price-so__card--active {
    background-color: #454545;
    border-color: #454545;
}
.section-highest-price-so__card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-highest-price-so__card-title span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #454545;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 100%;
}
.section-highest-price-so__card--active .section-highest-price-so__card-title span {
    background-color: #F55822;
}
.section-highest-price-so__card-title h3 {
    margin: 0;
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.section-highest-price-so__card--active .section-highest-price-so__card-title h3 {
    color: #fff;
}
.section-highest-price-so__card p {
    margin: 15px 0 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.section-highest-price-so__card--active p {
    color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 1100px) {
    .section-highest-price-so {
        padding: 90px 30px;
    }

    .section-highest-price-so__inner {
        grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
        gap: 45px;
    }
    .section-highest-price-so__media {
        max-width: 100% !important;
    }
    .section-highest-price-so__media img {
        height: 330px;
        width: 100%;
    }
}
@media (max-width: 900px) {
    .section-highest-price-so__inner {
        grid-template-columns: 1fr;
    }

    .section-highest-price-so__media {
        max-width: 520px;
        margin: 0 auto;
    }

    .section-highest-price-so__media img {
        max-width: 100%;
    }

    .section-highest-price-so__content {
        max-width: 720px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .section-highest-price-so {
        padding: 70px 20px;
    }

    .section-highest-price-so__content h2 {
        font-size: 32px;
    }

    .section-highest-price-so__content > p {
        font-size: 14px;
    }

    .section-highest-price-so__grid {
        grid-template-columns: 1fr;
    }

    .section-highest-price-so__media img {
        height: 300px;
    }
}
@media (max-width: 560px) {
    .section-highest-price-so {
        padding: 60px 16px;
    }

    .section-highest-price-so__content h2 {
        font-size: 28px;
    }

    .section-highest-price-so__content > p {
        font-size: 14px;
    }

    .section-highest-price-so__media img {
        height: 250px;
    }

    .section-highest-price-so__card {
        min-height: auto;
    }

    .section-highest-price-so__card p {
        margin-top: 14px;
    }
}
/* Highest Price Section END */


/* Dealer Driveway Section START */
.section-dealer-driveway-so {
    width: 100%;
    position: relative;
    padding: 112px 50px;
    background-color: #fff;
    overflow: hidden;
    border-top: 1px solid hsla(0, 0%, 0%, 0.11);
}


.section-dealer-driveway-so__inner {
    width: 100%;
    max-width: 1200px;
    /* min-height: 580px; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 580px) minmax(0, 440px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.section-dealer-driveway-so__content {
    width: 100%;
}

.section-dealer-driveway-so__content h2 {
    max-width: 560px;
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.section-dealer-driveway-so__content p {
    max-width: 570px;
    margin: 22px 0 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-dealer-driveway-so__content strong {
    display: block;
    max-width: 560px;
    margin-top: 22px;
    color: #454545;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.section-dealer-driveway-so .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.section-dealer-driveway-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}

.section-dealer-driveway-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}

.section-dealer-driveway-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}

.section-dealer-driveway-so .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}

.section-dealer-driveway-so .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
    color: #F55822;
}

.section-dealer-driveway-so__media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.section-dealer-driveway-so__media img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .section-dealer-driveway-so {
        padding: 90px 30px;
    }

    .section-dealer-driveway-so__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
        gap: 45px;
    }

    .section-dealer-driveway-so__media img {
        max-width: 360px;
    }
}

@media (max-width: 900px) {
    .section-dealer-driveway-so__inner {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .section-dealer-driveway-so__content {
        max-width: 720px;
        margin: 0 auto;
    }

    .section-dealer-driveway-so__media {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-dealer-driveway-so {
        padding: 70px 20px;
    }

    .section-dealer-driveway-so::before {
        height: 80px;
    }

    .section-dealer-driveway-so__content h2 {
        font-size: 32px;
    }

    .section-dealer-driveway-so__content p,
    .section-dealer-driveway-so__content strong {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .section-dealer-driveway-so {
        padding: 60px 16px;
    }

    .section-dealer-driveway-so__content h2 {
        font-size: 28px;
    }

    .section-dealer-driveway-so__content h2 br {
        display: none;
    }

    .section-dealer-driveway-so .glb-btns-new {
        gap: 10px;
    }

    .section-dealer-driveway-so .glb-btns-new .btn {
        width: 100%;
    }

    .section-dealer-driveway-so__media img {
        max-width: 100%;
    }
}
/* Dealer Driveway Section END */



/* Service Detail CTA Banner Start */
.servd-cta-banner {
    width: 100%;

    background-color: #fff;
}

.servd-cta-banner__inner {
    width: 100%;
    /* max-width: 1280px; */
    min-height: 192px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 112px 30px;
    background-image: url("../../images/cta-new-sd.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.servd-cta-banner__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.servd-cta-banner__content h2 {
    margin: 0;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}

.servd-cta-banner__content p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.servd-cta-banner__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.servd-cta-banner__tags span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.servd-cta-banner__tags span svg {
    flex-shrink: 0;
}

.servd-cta-banner .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.servd-cta-banner .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}

.servd-cta-banner .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}

.servd-cta-banner .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}

.servd-cta-banner .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}

.servd-cta-banner .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}

@media (max-width: 1240px) {
    /* .servd-cta-banner {
        padding: 0 20px 112px;
    } */
}

@media (max-width: 768px) {
    /* .servd-cta-banner {
        padding: 0 16px 112px;
    }

    .servd-cta-banner__inner {
        min-height: auto;
        padding: 28px 20px;
        background-position: 68% center;
    } */

    .servd-cta-banner__content h2 {
        font-size: 32px;
    }

    .servd-cta-banner__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .servd-cta-banner__content h2 {
        font-size: 28px;
    }

    .servd-cta-banner__tags {
        gap: 8px;
    }

    .servd-cta-banner__tags span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .servd-cta-banner .glb-btns-new {
        gap: 10px;
    }

    .servd-cta-banner .glb-btns-new .btn {
        width: 100%;
    }
}
/* Service Detail CTA Banner End */