/* quoteCtaSec */
.quoteCtaSec {
    position: relative;
    background-color: var(--secondaryBrand);
    overflow: hidden;
}

.quoteCtaSec::before {
    content: "";
    position: absolute;
    top: 100%;
    right: 0px;
    width: 780px;
    height: 780px;
    filter: blur(300px);
    background-color: var(--secondaryBrand500);
    transform: translate(50%, -25%);
    border-radius: 50%;
}

.quoteCtaBox {
    width: 1040px;
    max-width: 100%;
    margin: 0px auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.quoteCtaBox > img {
    display: block;
    margin: 0px auto;
}

.quoteCtaBox .headingL {
    margin-top: 32px;
    color: var(--white);
}

.quoteCtaBox .headingXS {
    margin-top: 40px;
    color: var(--white);
}

/* Responsive - 575px */
@media (max-width: 575px) {
    .quoteCtaBox > img {
        width: 60px;
    }

    .quoteCtaBox .headingL {
        margin-top: 24px;
        font-size: 20px;
        line-height: 30px;
    }

    .quoteCtaBox .headingXS {
        margin-top: 30px;
        font-size: 16px;
        line-height: 26px;
    }
}