.cta-service-pricing {
    position: relative;
}
.cta-service--box {
    background: #404F4F;
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 45% 30% 15%;
    align-items: center;
    gap: 50px;
}
.cta-service--box .b2-link {
    width: auto;
}
.cta-service--heading h2 {
    color: #EDDEC4;
}
.cta-service--heading p {
    color: #F0F0F0;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height:  16px;
    letter-spacing: 0.5px;
}
.cta-service--price p {
    color: #F0F0F0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-service--price p > span {
    color: #F0F0F0;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.5px;
}
/* Consignment Page */
.page-id-224 .cta-service-pricing::after {
    content: '';
    background: #F5EEE1;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -1px;
    height: 30px;
    z-index: -1;
}

/* Parts and Service Page */
.page-id-225 .cta-service-pricing {
    margin-top: 80px;
}

.page-id-225 .cta-service-pricing::after {
    content: '';
    background: #F5EEE1;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -1px;
    height: 30px;
    z-index: -1;
}


@media only screen and (max-width: 1700px) {
    .cta-service--box {
        grid-template-columns: 45% 35% 15%;
    }
}

@media only screen and (max-width: 1440px) {
    .cta-service--box {
        grid-template-columns: 30% 40% 20%;
    }
}

@media only screen and (max-width: 1280px) {
    .cta-service--box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
        text-align: center;
    }
    .cta-service--price {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 767px) {
    .cta-service--price p > span {
        font-size: 18px;
        line-height: 18px;
    }
}