.block-cta {
    background-color: var(--color);
    padding-top: calc(var(--verti-padding) + 45px);
    padding-bottom: var(--verti-padding);
    position: relative;
}

.block-cta h2.section__title {
    color: white;
    margin: 0 0 20px 0;
    max-width: 900px;
}
.block-cta h2.section__title::before {
            top: -45px;
        left: 50%;
        transform: translateX(-50%);
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="76" height="16" viewBox="0 0 76 16" fill="none"> <path d="M62.0387 12.3122C59.5092 8.87198 60.2475 4.03256 63.6878 1.50307C67.128 -1.02642 71.9674 -0.288111 74.4969 3.15213C77.0264 6.59237 76.2881 11.4318 72.8479 13.9613C69.4076 16.4908 64.5682 15.7525 62.0387 12.3122Z" fill="white"/> <path d="M31.0983 12.3122C28.5688 8.87198 29.3071 4.03256 32.7473 1.50307C36.1876 -1.02642 41.027 -0.288111 43.5565 3.15213C46.086 6.59237 45.3477 11.4318 41.9074 13.9613C38.4672 16.4908 33.6278 15.7525 31.0983 12.3122Z" fill="white"/> <path d="M1.50307 12.3122C-1.02642 8.87198 -0.288111 4.03256 3.15213 1.50307C6.59237 -1.02642 11.4318 -0.288111 13.9613 3.15213C16.4908 6.59237 15.7525 11.4318 12.3122 13.9613C8.87198 16.4908 4.03256 15.7525 1.50307 12.3122Z" fill="white"/> </svg>')
}
.section__text {
    color: white;
    max-width: 900px;
    text-align: center;
}

.block-cta .block-default__buttons > a:first-child {
    background: white;
    color: var(--color);
}
.block-cta .block-default__buttons > a:not(:first-child) {
    border-bottom: 2px solid white;
    border-radius: 0;
    color: white;
}

.block-cta .standard-button:hover {
    border: 2px solid white !important;
    transition-duration: 0.3s;
    border-radius: 20px !important;
}

.block-cta .block-default__buttons > a:first-child::after {
    border: 2px solid white;
}

.block-cta > svg:first-child {
    position: absolute;
    height: 80px;
    width: auto;
    top: -80px;
    left: 0;
}

.block-cta > svg:last-child {
    height: 80px;
    width: auto;
    position: absolute;
    bottom: -80px;
    right: 0;
}
@media screen and (max-width: 1200px){
    .block-cta > svg {
        height: 50px !important;
    }
    .block-cta > svg:first-child {
        top: -50px;
    }
    .block-cta > svg:last-child {
        bottom: -50px;
    }
}

