.cta {
    position: relative;
    background: #f5f5f5;
}

.cta__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.cta__image {
    flex-basis: 34.333333%;
}

.cta__image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.cta__inner-wrapper {
    flex-basis: 46.666667%;
}

.cta__decor {
    background-color: #4a6671;
    border-bottom-left-radius: 6rem;
    content: "";
    height: 50%;
    width: 10%;
    position: absolute;
    right: 0;
    top: 0;
}

.cta__container {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199.98px) {
    .cta__decor {
        width: 15%;
    }
}

@media screen and (max-width: 991.98px) {
    .cta__decor {
        display: none;
    }


    .cta__image,
    .cta__inner-wrapper {
        flex-basis: 100%;
    }

    .cta__wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .cta__image img{
        max-height: 500px;
    }
}