/* Service Detail hero START */
.servd-new-hero {
    width: 100%;
    /* min-height: 540px; */
    position: relative;
    padding: 85px 50px 0;
    padding-block: 112px;
    padding-bottom: 80px;
    background-image: url("../../images/sd-new-hero.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: visible;
}
.servd-new-hero__content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}
.servd-new-hero__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background-color: #edd4b183;
    color: #171515;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-new-hero h1 {
    margin: 0;
    color: #000;
    font-size: 50px;
    max-width: 540px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.8px;
}
.servd-new-hero h1 span {
    color: #F55822;
}
.servd-new-hero__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.servd-new-hero__tags span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 17px;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.25);
    color: #171515;
    font-size: 11px;
    font-weight: 500;
    line-height: 100%;
}
.servd-new-hero p {
    max-width: 495px;
    margin: 24px 0 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-new-hero .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}
.servd-new-hero .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;
}
.servd-new-hero .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-new-hero .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-new-hero .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-new-hero .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
.servd-new-hero__benefits {
    width: min(820px, calc(100% - 40px));
    min-height: 80px;
    position: absolute;
    left: 50%;
    bottom: -40px;
    z-index: 3;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 17px 22px;
    border: 1.5px solid #F55822;
    border-radius: 18px;
    background-color: #fff;
}
.servd-new-hero__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #171515;
    font-size: 13px;
    font-weight: 600;
    line-height: 100%;
    white-space: nowrap;
}
.servd-new-hero__benefit span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(245, 88, 34, 0.12);
}
.servd-new-hero__benefit svg {
    width: 24px;
    height: 24px;
}
@media (max-width: 992px) {
    .servd-new-hero {
        min-height: 600px;
        padding: 70px 30px 75px;
        padding-block: 80px;
        background-position: 62% center;
    }

    .servd-new-hero h1 {
        max-width: 510px;
        font-size: 34px;
    }

    .servd-new-hero__benefits {
        width: calc(100% - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        bottom: -50px;
        gap: 18px 24px;
    }

    .servd-new-hero__benefit {
        white-space: normal;
    }
}
@media (max-width: 768px) {
    .servd-new-hero {
        min-height: auto;
        /* padding: 60px 20px 110px; */
        background-position: 68% center;
    }

    .servd-new-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(255, 255, 255, 0.35);
        pointer-events: none;
    }

    .servd-new-hero h1 {
        font-size: 40px;
    }

    .servd-new-hero p {
        font-size: 13px;
    }

    .servd-new-hero__benefits {
        bottom: -105px;
        /* grid-template-columns: 1fr; */
        justify-content: stretch;
        padding: 18px;
    }
}
@media (max-width: 480px) {
    /* .servd-new-hero {
        padding: 45px 16px 140px;
    } */

    .servd-new-hero h1 {
        font-size: 30px;
    }

    .servd-new-hero__tags {
        gap: 7px;
    }

    .servd-new-hero__tags span {
        padding-inline: 12px;
        font-size: 10px;
    }

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

    .servd-new-hero .glb-btns-new .btn {
        width: 100%;
    }

    .servd-new-hero__benefits {
        width: calc(100% - 24px);
        bottom: -85px;
        border-radius: 14px;
    }
}
/* Service Detail hero END */



/* Service Detail Why Sell With Us Start */
.servd-why-sell {
    width: 100%;
    padding: 115px 50px 96px;
    background-color: #fff;
    padding-bottom: 112px;
}
.servd-why-sell__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 560px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.servd-why-sell__media {
    width: 100%;
}
.servd-why-sell__media img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
}
.servd-why-sell__content {
    width: 100%;
}
.servd-why-sell__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-why-sell h2 {
    max-width: 520px;
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-why-sell__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.servd-why-sell__tags span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #F55822;
    border-radius: 6px;
    background-color: #fff;
    color: #F55822;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}
.servd-why-sell__text {
    margin-top: 30px;
}
.servd-why-sell__text p {
    max-width: 660px;
    margin: 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}
.servd-why-sell__text p + p {
    margin-top: 24px;
}
.servd-why-sell .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}
.servd-why-sell .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;
}
.servd-why-sell .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-why-sell .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-why-sell .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-why-sell .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
.servd-why-sell__testimonial {
    max-width: 350px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-top: -18px;
    margin-left: 70px;
    position: relative;
    z-index: 2;
}
.servd-why-sell__quote-mark {
    position: absolute;
    left: -32px;
    top: -8px;
    color: #F55822;
    font-size: 42px;
    font-weight: 800;
    line-height: 100%;
}
.servd-why-sell__avatar {
    width: 62px !important;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}
.servd-why-sell__testimonial-content h4 {
    margin: 0;
    color: #171515;
    font-size: 14px;
    font-weight: 800;
    line-height: 120%;
}
.servd-why-sell__testimonial-content p {
    margin: 2px 0 2px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
}
.servd-why-sell__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
}
.servd-why-sell__testimonial-content small {
    display: block;
    color: #454545;
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
}
@media (max-width: 1100px) {
    .servd-why-sell {
        padding: 115px 30px 80px;
    }

    .servd-why-sell__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .servd-why-sell__media {
        max-width: 560px;
        margin: 0 auto;
    }

    .servd-why-sell__content {
        max-width: 720px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .servd-why-sell {
        padding: 135px 20px 70px;
        padding-top: 112px;
    }

    .servd-why-sell h2 {
        font-size: 32px;
    }

    .servd-why-sell__tags span {
        font-size: 11px;
    }

    .servd-why-sell__text p {
        font-size: 13px;
    }
}
@media (max-width: 560px) {
    .servd-why-sell {
        padding: 120px 16px 60px;
        padding-top: 152px;
    }

    .servd-why-sell h2 {
        font-size: 28px;
    }

    .servd-why-sell .glb-btns-new {
        gap: 10px;
    }

    .servd-why-sell .glb-btns-new .btn {
        width: 100%;
    }
    .servd-why-sell__testimonial{
        margin-top: 20px !important;
    }
}
/* Service Detail Why Sell With Us End */


/* Service Detail Why Choose Start */
.servd-why-choose {
    width: 100%;
    padding: 88px 50px 95px;
    padding-block: 112px;
    background-color: #FFF8F4;
}
.servd-why-choose__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.servd-why-choose__head {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}
.servd-why-choose__head span {
    display: block;
    margin-bottom: 7px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-why-choose__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-why-choose__head p {
    max-width: 660px;
    margin: 18px auto 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-why-choose .glb-btns-new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}
.servd-why-choose .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;
}
.servd-why-choose .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-why-choose .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-why-choose .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-why-choose .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
.servd-why-choose__main {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 500px);
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.servd-why-choose__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
}
.servd-why-choose__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.servd-why-choose__card {
    min-height: 175px;
    padding: 30px 30px;
    border-radius: 7px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);
    box-shadow: none;
}
.servd-why-choose__card h3 {
    max-width: 210px;
    margin: 0 0 18px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}
.servd-why-choose__card p {
    max-width: 290px;
    margin: 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-why-choose__image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding: 20px 22px 20px 0;
}
.servd-why-choose__image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    height: 100%;
    border-radius: 0 56px 0 56px;
    background-color: #FF8B40;
}
.servd-why-choose__image img {
    width: 100%;
    height: 520px;
    position: relative;
    z-index: 2;
    display: block;
    object-fit: cover;
    border-radius: 0 56px 0 56px;
}
@media (max-width: 1100px) {
    .servd-why-choose {
        padding: 80px 30px;
    }

    .servd-why-choose__main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .servd-why-choose__image {
        max-width: 620px;
        margin: 0 auto;
    }

    .servd-why-choose__image img {
        height: 450px;
    }
}
@media (max-width: 768px) {
    .servd-why-choose {
        padding: 70px 20px;
    }

    .servd-why-choose__head h2 {
        font-size: 32px;
    }

    .servd-why-choose__head p {
        font-size: 13px;
    }

    .servd-why-choose__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .servd-why-choose__card {
        min-height: auto;
        padding: 28px 24px;
    }

    .servd-why-choose__card h3 {
        font-size: 18px;
    }

    .servd-why-choose__card p {
        font-size: 13px;
    }

    .servd-why-choose__image img {
        height: 380px;
    }
}
@media (max-width: 560px) {
    .servd-why-choose {
        padding: 90px 16px;
    }

    .servd-why-choose__head {
        margin-bottom: 30px;
    }

    .servd-why-choose__head h2 {
        font-size: 28px;
    }

    .servd-why-choose .glb-btns-new {
        gap: 10px;
    }

    .servd-why-choose .glb-btns-new .btn {
        width: 100%;
    }

    .servd-why-choose__image {
        padding: 14px 14px 14px 0;
    }

    .servd-why-choose__image::before {
        border-radius: 0 34px 0 34px;
    }

    .servd-why-choose__image img {
        height: 310px;
        border-radius: 0 34px 0 34px;
    }
}
/* Service Detail Why Choose End */



/* Service Detail How Work Start */
.servd-how-work {
    width: 100%;
    padding: 95px 50px 92px;
    background-color: #fff;
}
.servd-how-work__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.servd-how-work__head {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.servd-how-work__head span {
    display: block;
    margin-bottom: 7px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-how-work__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-how-work__head p {
    max-width: 890px;
    margin: 18px auto 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-how-work__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 17px;
}
.servd-how-work__tags span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #F55822;
    border-radius: 6px;
    background-color: #fff;
    color: #F55822;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}
.servd-how-work__steps {
    max-width: 980px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.servd-how-work__step {
    min-height: 270px;
    position: relative;
    padding: 56px 20px 22px;
    border-radius: 8px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background-color: #454545;
    text-align: center;
}
.servd-how-work__num {
    width: 58px;
    height: 58px;
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F55822;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 100% !important;
    text-transform: none !important;
}
.servd-how-work__step h3 {
    max-width: 150px;
    margin: 0 auto 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.1;
}
.servd-how-work__step strong {
    display: block;
    margin-bottom:12px;
    color: #FF8B40;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-how-work__step p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-how-work .glb-btns-new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 46px;
}
.servd-how-work .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;
}
.servd-how-work .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-how-work .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-how-work .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-how-work .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
@media (max-width: 1100px) {
    .servd-how-work {
        padding: 85px 30px;
    }

    .servd-how-work__steps {
        max-width: 620px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 55px 20px;
    }
}
@media (max-width: 768px) {
    .servd-how-work {
        padding: 70px 20px;
    }

    .servd-how-work__head h2 {
        font-size: 32px;
    }

    .servd-how-work__head p {
        font-size: 13px;
    }

    .servd-how-work__steps {
        margin-top: 62px;
    }
}
@media (max-width: 560px) {
    .servd-how-work {
        padding: 60px 16px;
    }

    .servd-how-work__head h2 {
        font-size: 28px;
    }

    .servd-how-work__tags span {
        font-size: 11px;
    }

    .servd-how-work__steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .servd-how-work .glb-btns-new {
        gap: 10px;
    }

    .servd-how-work .glb-btns-new .btn {
        width: 100%;
    }
}
/* Service Detail How Work End */



/* Service Detail Submit Car Start */
.servd-submit-car {
    width: 100%;
    padding: 28px 20px;
    background-color: #F3C8AD;
}
.servd-submit-car__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 34px 52px 40px;
    padding-block: 50px;
    border-radius: 16px;
    background-color: #fff;
}
.servd-submit-car__head {
    text-align: center;
}
.servd-submit-car__head-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-submit-car__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-submit-car__head p {
    margin: 10px auto 0;
    max-width: 520px;
    color: #6A6A6A;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-submit-car .glb-btns-new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}
.servd-submit-car .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.servd-submit-car .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-submit-car .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-submit-car .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-submit-car .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
.servd-submit-car__head-image {
    margin-top: 20px;
}
.servd-submit-car__head-image img {
    width: 100%;
    max-width: 1040px;
    height: 185px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 14px;
}
.servd-submit-car__body {
    margin-top: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 470px);
    align-items: center;
    gap: 34px;
}
.servd-submit-car__content {
    max-width: 560px;
}
.servd-submit-car__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-submit-car__content h2 {
    margin: 0;
    color: #282828;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.14;
}
.servd-submit-car__content > p {
    margin: 14px 0 0;
    color: #5C5C5C;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 465px;
}
.servd-submit-car__divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 18px;
    background-color: #E7E7E7;
}
.servd-submit-car__label {
    margin: 0 0 12px;
    color: #282828;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
}
.servd-submit-car__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}
.servd-submit-car__chips span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 13px;
    border: 1px solid #F55822;
    border-radius: 6px;
    background-color: #fff;
    color: #F55822;
    font-size: 11px;
    font-weight: 500;
    line-height: 100%;
    white-space: nowrap;
}
.servd-submit-car__chips svg {
    flex-shrink: 0;
}
.servd-submit-car__testimonial {
    max-width: 350px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-top: 18px;
    margin-left: 18px;
    position: relative;
    z-index: 2;
}
.servd-submit-car__media {
    width: 100%;
}
.servd-submit-car__media img {
    width: 100%;
    max-width: 470px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .servd-submit-car {
        padding: 22px 16px;
    }

    .servd-submit-car__inner {
        padding: 32px 28px 36px;
    }

    .servd-submit-car__body {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .servd-submit-car__content {
        max-width: 100%;
    }

    .servd-submit-car__media {
        max-width: 540px;
        margin: 0 auto;
        order: 2;
        display: none;
    }
}
@media (max-width: 768px) {
    .servd-submit-car__inner {
        padding: 28px 20px 30px;
        
    }

    .servd-submit-car__head h2 {
        font-size: 31px;
    }

    .servd-submit-car__head-image img {
        height: 150px;
    }

    .servd-submit-car__content h2 {
        font-size: 28px;
    }

    .servd-submit-car__content > p {
        font-size: 13px;
    }
}
@media (max-width: 560px) {
    .servd-submit-car {
        padding: 18px 12px;
    }

    .servd-submit-car__inner {
        padding: 24px 16px 26px;
        border-radius: 12px;
        padding-block: 40px;
    }

    .servd-submit-car__head h2 {
        font-size: 27px;
    }

    .servd-submit-car .glb-btns-new {
        gap: 10px;
    }

    .servd-submit-car .glb-btns-new .btn {
        width: 100%;
    }

    .servd-submit-car__head-image img {
        height: 120px;
        border-radius: 10px;
    }

    .servd-submit-car__content h2 {
        font-size: 24px;
    }

    .servd-submit-car__chips span {
        white-space: normal;
        justify-content: flex-start;
    }

    .servd-submit-car__testimonial {
        margin-left: 0;
        margin-top: 20px;
    }
}
/* Service Detail Submit Car End */


/* Service Detail Cars For Sale Start */
.servd-cars-sale {
    width: 100%;
    padding-block: 112px;
    background-color: #fff;
    overflow: hidden;
}
.servd-cars-sale__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.servd-cars-sale__head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}
.servd-cars-sale__head span {
    display: block;
    margin-bottom: 10px;
    color: #979797;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-cars-sale__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-cars-sale__head p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-cars-sale__slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 390px;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 0 34px;
    scrollbar-width: thin;
    scrollbar-color: #F55822 #F0F0F0;
}
.servd-cars-sale__slider::-webkit-scrollbar {
    height: 6px;
}
.servd-cars-sale__slider::-webkit-scrollbar-track {
    max-width: 380px;
    border-radius: 999px;
    background-color: #F0F0F0;
}
.servd-cars-sale__slider::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background-color: #F55822;
}
.servd-cars-sale__slider::-webkit-scrollbar-thumb:hover {
    background-color: #df4617;
}
.servd-cars-sale__card {
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid #DADADA;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 6px 14px rgba(23, 21, 21, 0.12);
    cursor: pointer;
}
.servd-cars-sale__media {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    background-color: #F2F2F2;
}
.servd-cars-sale__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.servd-cars-sale__media img.is-placeholder {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.servd-cars-sale__body {
    padding: 25px;
}
.servd-cars-sale__badge {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 7px 18px;
    border: 1px solid #F55822;
    border-radius: 6px;
    background-color: #fff;
    color: #F55822;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}
.servd-cars-sale__badge svg {
    flex-shrink: 0;
}
.servd-cars-sale__body h3 {
    margin: 0;
    color: #171515;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.servd-cars-sale__body p {
    margin: 8px 0 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}
.servd-cars-sale__cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.servd-cars-sale__cta .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.servd-cars-sale__cta .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-cars-sale__cta .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
@media (max-width: 1240px) {
    .servd-cars-sale {
        padding-inline: 30px;
    }
}
@media (max-width: 768px) {
    .servd-cars-sale {
        padding-block: 112px;
        padding-inline: 20px;
    }

    .servd-cars-sale__head h2 {
        font-size: 32px;
    }

    .servd-cars-sale__slider {
        grid-auto-columns: 330px;
        gap: 20px;
    }

    .servd-cars-sale__media {
        height: 240px;
    }

    .servd-cars-sale__body {
        padding: 20px;
    }

    .servd-cars-sale__body h3 {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .servd-cars-sale {
        padding-block: 112px;
        padding-inline: 16px;
    }

    .servd-cars-sale__head h2 {
        font-size: 28px;
    }

    .servd-cars-sale__slider {
        grid-auto-columns: 88%;
    }

    .servd-cars-sale__media {
        height: 210px;
    }

    .servd-cars-sale__cta .btn {
        width: 100%;
    }
}
/* Service Detail Cars For Sale End */


/* Service Detail Owner Cars Start */
.servd-owner-sale {
    width: 100%;
    padding-block: 112px;
    padding-top: 40px;
    background-color: #fff;
    overflow: hidden;
}
.servd-owner-sale__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.servd-owner-sale__head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}
.servd-owner-sale__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-owner-sale__head p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-owner-sale__slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 390px;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 0 34px;
    scrollbar-width: thin;
    scrollbar-color: #F55822 #F0F0F0;
}
.servd-owner-sale__slider::-webkit-scrollbar {
    height: 6px;
}
.servd-owner-sale__slider::-webkit-scrollbar-track {
    border-radius: 999px;
    background-color: #F0F0F0;
}
.servd-owner-sale__slider::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background-color: #F55822;
}
.servd-owner-sale__slider::-webkit-scrollbar-thumb:hover {
    background-color: #df4617;
}
.servd-owner-sale__card {
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid #DADADA;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 6px 14px rgba(23, 21, 21, 0.12);
}
.servd-owner-sale__media {
    position: relative;
    width: 100%;
    height: 275px;
    overflow: hidden;
    background-color: #F2F2F2;
}
.servd-owner-sale__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.servd-owner-sale__media img.is-placeholder {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.servd-owner-sale__body {
    padding: 25px;
}
.servd-owner-sale__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}
.servd-owner-sale__badges span {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 14px;
    border: 1px solid #F55822;
    border-radius: 6px;
    background-color: #fff;
    color: #F55822;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}
.servd-owner-sale__badges svg {
    flex-shrink: 0;
}
.servd-owner-sale__body h3 {
    margin: 0;
    color: #171515;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.servd-owner-sale__location {
    margin: 8px 0 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}
.servd-owner-sale__desc {
    min-height: 64px;
    margin: 24px 0 0;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.servd-owner-sale__learn {
    width: fit-content;
    display: block;
    margin: 20px auto 0;
    color: #F55822;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}
.servd-owner-sale__learn:hover {
    color: #df4617;
}
.servd-owner-sale__cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.servd-owner-sale__cta .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.servd-owner-sale__cta .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-owner-sale__cta .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
@media (max-width: 1240px) {
    .servd-owner-sale {
        padding-inline: 30px;
    }
}
@media (max-width: 768px) {
    .servd-owner-sale {
        padding-block: 112px;
        padding-inline: 20px;
    }

    .servd-owner-sale__head h2 {
        font-size: 32px;
    }

    .servd-owner-sale__slider {
        grid-auto-columns: 330px;
        gap: 20px;
    }

    .servd-owner-sale__media {
        height: 240px;
    }

    .servd-owner-sale__body {
        padding: 20px;
    }

    .servd-owner-sale__body h3 {
        font-size: 18px;
    }

    .servd-owner-sale__learn {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .servd-owner-sale {
        padding-block: 112px;
        padding-inline: 16px;
    }

    .servd-owner-sale__head h2 {
        font-size: 28px;
    }

    .servd-owner-sale__slider {
        grid-auto-columns: 88%;
    }

    .servd-owner-sale__media {
        height: 210px;
    }

    .servd-owner-sale__cta .btn {
        width: 100%;
    }
}
/* Service Detail Owner Cars End */


/* Service Detail FAQ Start */
.servd-faq {
    width: 100%;
    padding-block: 112px;
    background: linear-gradient(110deg, #fff 0%, #fff 60%, #FFE3D0 100%);
    overflow: hidden;
}
.servd-faq__inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.servd-faq__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}
.servd-faq__head span {
    display: block;
    margin-bottom: 10px;
    color: #979797;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.servd-faq__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.servd-faq__head p {
    max-width: 620px;
    margin: 14px auto 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.servd-faq__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 27px;
}
.servd-faq__tabs button {
    min-height: 28px;
    padding: 7px 20px;
    border: 0;
    border-radius: 999px;
    background-color: #FFF0EC;
    color: #F55822;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    cursor: pointer;
    transition: 180ms ease;
}
.servd-faq__tabs button.is-active,
.servd-faq__tabs button:hover {
    background-color: #F55822;
    color: #fff;
}
.servd-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 34px;
    align-items: start;
}
.servd-faq__item {
    overflow: hidden;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(23, 21, 21, 0.05);
}
.servd-faq__question {
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border: 0;
    background-color: #fff;
    color: #181532;
    text-align: left;
    cursor: pointer;
}
.servd-faq__plus {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #181532;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    transition: 180ms ease;
}
.servd-faq__question strong {
    color: #181532;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}
.servd-faq__answer {
    display: none;
}
.servd-faq__answer p {
    margin: 0;
    padding: 0 28px 22px 68px;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.servd-faq__answer ul,
.servd-faq__answer ol {
    list-style: none;
    margin: 0;
    padding: 0 28px 22px 68px;
}
.servd-faq__answer li {
    margin: 0;
    padding: 0;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.servd-faq__item.is-open .servd-faq__answer {
    display: block;
}

.servd-faq__item.is-open .servd-faq__plus {
    transform: rotate(45deg);
}
.servd-faq__plus {
    display: inline-flex;
    transition: 180ms ease;
}
.servd-faq__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
    margin-top: 32px;
}
.servd-faq__testimonial {
    max-width: 350px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-left: 30px;
    position: relative;
    z-index: 2;
}
.servd-faq__cta {
    min-width: 360px;
}
.servd-faq__cta h3 {
    margin: 0 0 17px;
    color: #282828;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
}
.servd-faq .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.servd-faq .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.servd-faq .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.servd-faq .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
}
.servd-faq .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.servd-faq .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
}
@media (max-width: 1160px) {
    .servd-faq {
        padding-inline: 30px;
    }
}
@media (max-width: 900px) {
    .servd-faq__grid {
        grid-template-columns: 1fr;
    }

    .servd-faq__bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servd-faq__cta {
        min-width: 0;
    }
}
@media (max-width: 768px) {
    .servd-faq {
        padding-block: 112px;
        padding-inline: 20px;
    }

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

    .servd-faq__tabs {
        gap: 10px;
    }

    .servd-faq__question {
        padding: 18px 20px;
    }

    .servd-faq__answer p,
    .servd-faq__answer ul,
    .servd-faq__answer ol {
        padding: 0 20px 20px 60px;
    }
}
@media (max-width: 480px) {
    .servd-faq {
        padding-block: 112px;
        padding-inline: 16px;
    }

    .servd-faq__head h2 {
        font-size: 28px;
    }

    .servd-faq__tabs button {
        width: 100%;
    }

    .servd-faq__question {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    .servd-faq__answer p,
    .servd-faq__answer ul,
    .servd-faq__answer ol {
        padding-left: 52px;
    }

    .servd-faq__testimonial {
        margin-left: 0;
    }

    .servd-faq .glb-btns-new .btn {
        width: 100%;
    }
}
/* Service Detail FAQ 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: 1120px;
    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 */