.cta-big {
    position: relative;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 1199px) {
        padding: 24px 16px;
    }
}

.cta-big .text-row {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-big .text-row h5 {
    padding-right: 32px;
}

.cta-big .pill {
    display: inline-flex;
    border-radius: 100px;
    max-width: fit-content;
    padding: 4px 10px;
    text-align: center;

    @media screen and (max-width: 1199px) {
        margin-bottom: 16px;
    }
}

.cta-big > picture > img {
    z-index: 0;
    position: absolute;
    right: 0;
    top: 50%;
    height: 125px;
    transform: translate(0, -50%);

    @media screen and (max-width: 900px) {
        bottom: 82px;
        transform: unset;
        top: unset;
        height: 82px;
    }
}

.cta-big > .cta-button {
    z-index: 1;
    padding: 12px 24px;
    border-radius: 8px;
    max-width: fit-content;

    @media screen and (max-width: 1000px) {
        max-width: unset;
        width: 100%;
    }
}

.cta-big > .cta-button:hover {
    opacity: 0.8;
}

.cta-big > .cta-button:focus {
    outline: none;
}
