.cta {
    margin-top: 108px;
}

.cta__wrapper {
    border: 1px solid #E2E2E2;
    border-radius: 56px;
    height: 346px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta__wrapper .img-wrapper {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.cta__wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);

}

.cta__wrapper .text-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 33px 40px;
    position: relative;
    z-index: 2;
}

.cta__wrapper .text-section .text-section-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 780px;
}

.cta__wrapper .text-section .text-section-info h3 {
    font-family: Ermilov;
    font-weight: 700;
    font-style: Bold;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 80px;
    letter-spacing: -3%;
    color: white;
}

.cta__wrapper .text-section .text-section-info h4 {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: -2%;
    color: white;
}

.text-section-btn {
    background: white;
    padding: 15px 32px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    color: black;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 40px;
    text-decoration: none;
}

.cta-svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);

}

@media screen and (max-width: 1024px) {
    .cta {
        margin-top: 56px;
    }

    .cta__wrapper {
        border-radius: 32px;
        height: 401px;
        width: 100%;
    }

    .cta__wrapper .text-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 36px;
        padding: 24px;
        position: relative;
        z-index: 2;
    }

    .cta__wrapper .text-section .text-section-info {
        display: flex;
        flex-direction: column;
        gap: 7px;
        max-width: 100%;
    }

    .cta__wrapper .text-section .text-section-info h3 {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -3%;
    }

    .cta__wrapper .text-section .text-section-info h4 {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -2%;

    }

    .text-section-btn {
        height: 44px;
        background: white;
        padding: 0 20px;
        font-size: 14px;
        gap: 12px;
        border-radius: 32px;
    }

    .cta-svg {
        position: absolute;
        bottom: 0;
        height: 161px;
        left: 50%;
        width: 100%;
        z-index: 2;
        transform: translateX(-50%);

    }
}