.cta .card {
    border: 8px solid var(--color-section);
    border-radius: 49px;
    overflow: hidden;
    display: flex;
    margin-top: 140px;
    margin-bottom: 155px;
}
.cta img {
    margin-top: 20px;
    width: 272px;
}
.cta .right {
    padding-left: 40px;
}
.cta h2 {
    font-size: 59px;
    font-weight: 900;
    color: var(--color-section);
    margin-bottom: 0;
}
.cta p {
    font-size: 21px;
    font-family: var(--font-osans);
    color: #222222;
    max-width: 660px;
}
.cta a {
    width: 220px;
    height: 59px;
    background: var(--color-section);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 42px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: var(--font-rubrik);
    text-decoration: none;
    transition: 0.2s;
}
.cta a:hover {
    filter: brightness(0.85);
}

@media screen and (max-width: 768px) {
    .cta h2 {
        font-size: 49px;
        line-height: 1;
    }
}

@media screen and (max-width: 700px) {
    .cta .card {
        flex-direction: column;
    }
    .cta .right {
        padding: 0 40px;
    }
}
