.contact {
    background-color: var(--color-secondary);
    --color-text: var(--color-white);

    border-radius: 3.125rem;

    padding-inline: clamp(1rem, -9.2411rem + 16.5179vw, 5.625rem);
    padding-top: 9rem;
    padding-bottom: 9rem;

    overflow: hidden;
}

.contact-logo img {
    width: auto;
    height: 4.5rem;
    margin-bottom: 2rem;
}

.contact .button-widget {
    margin-top: 1rem;
}

/* Kreis left bottom, Kreis right top, bottom right */
.contact::before {
    content: ' ';
    display: block;
    width: 13.1875rem;
    aspect-ratio: 324 / 162;
    background-image: url('../../assets/images/accent-circle-primary-bottom.svg');
    background-size: contain;
    background-repeat: no-repeat;

    position: absolute;
    z-index: var(--accents-z-index);
    left: 50%;
    bottom: 0;

    transform: translateX(-50%) translateY(40%);

    z-index: 0;
}

.contact::after {
    content: ' ';
    display: block;
    height: 20.25rem;
    aspect-ratio: 93 / 236;
    background-image: url('../../assets/images/accent-circle-primary-right.svg');
    background-size: contain;
    background-repeat: no-repeat;

    position: absolute;
    z-index: var(--accents-z-index);
    right: 0;
    top: 50%;

    transform: translateY(-40%);

    z-index: -1;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

@media screen and (min-width: 62rem) {
    .contact {
        height: 100%;
    }

    .wpb_wrapper:has(> .contact) {
        height: 100%;
    }

    .contact::before {
        width: 24.75rem;
        left: 5%;
        transform: translateY(50%);
    }

    .contact::after {
        top: 15%;
        transform: none;
    }
}