.cta {
    position: relative;
    z-index: 5;
    margin-bottom: 40px;
    display: flex;
    align-items: stretch;
}

.cta_image {
    width: 350px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    background-color: var(--green);
    overflow: hidden;
}

.cta_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.cta_content {
    width: calc(100% - 350px - 40px);
    background-color: var(--grey);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.cta h3 {
    font-size: 40px;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 25px;
}

.cta p {
    width: 750px;
    margin: 0;
    text-align: left;
}

.cta .buttons_container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px 0 0;
}

.cta .buttons_container .button,
.cta .buttons_container .button_2 {
    margin-right: 20px;
}

.cta .buttons_container .button_2:last-of-type {
    margin-right: 0;
}

@media (max-width: 1250px) {
    .cta_image {
        margin-right: 20px;
    }

    .cta_content {
        width: calc(100% - 350px - 20px);
    }
}

@media (max-width: 1200px) {
    .cta_image {
        width: 450px;
    }

    .cta_content {
        width: calc(100% - 450px - 20px);
    }

    .cta p {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .cta {
        flex-direction: column;
    }

    .cta_image {
        display: none;
    }

    .cta_content {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .cta_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta_content h3,
    .cta_content p {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .cta_content {
        padding: 40px 20px 20px;
    }

    .cta_content h3 {
        font-size: 30px;
    }

    .cta .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .cta .buttons_container .button,
    .cta .buttons_container .button_2 {
        margin: 0 auto 20px;
    }

    .cta .buttons_container .button_2:last-of-type {
        margin-right: auto;
        margin-bottom: 0;
    }

    .cta .buttons_container .button,
    .cta .buttons_container .button_2 {
        width: 100%;
    }
}