/**
 * Layout: cta_green
 *
 * Enqueued automatically when a page has a `cta_green` row
 * in designer_page_sections. Depends on the `designer-base` handle.
 */

.cta-green .content-container {
    padding-top: 140px;
}

.cta-green__container {
    position: relative;
}

.cta-green__content {
    display: flex;
    justify-content: space-between;
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    background: #93c704;
    overflow: hidden;
}

.cta-green__image {
    width: 254px;
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: 10;
}

.cta-green__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 271px;
}

.cta-green__info-quote {
    display: flex;
    flex-direction: column;
}

.cta-green__info-quote h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84%;
    margin-bottom: 12px;
}

.quote-line {
    display: block;
    width: 175px;
    height: 1px;
    background-color: #fff;
}

.cta-green__info-bottom {
    display: flex;
    justify-content: space-between;
}

.cta-green__info-bottom .info-bottom__container {
    display: flex;
    flex-direction: column;
}

.cta-green__person {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    margin: 18px 0 8px;
}

.cta-green__contacts {
    display: flex;
    gap: 12px;
}

.cta-green__link {
    width: 25px;
    height: 25px;
    position: relative;
}

.cta-green__link-icon {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    fill: #E4F2BC;
    color: #E4F2BC;
}

.cta-green__link-icon:hover {
    color: #fff;
    fill: #fff;
}

.cta-green__bg-img {
    max-width: 734px;
    width: 100%;
    position: absolute;
    top: -50px;
    right: 143px;
    z-index: 1;
}

.cta-green .btn-white {
    width: 376px;
    margin-bottom: 0;
    position: relative;
    z-index: 100;
    align-self: end;
}

@media (max-width:1442px) {
    .cta-green__info-quote h3 {
        font-weight: 900;
        font-size: 32px;
    }

    .cta-green__bg-img {
        max-width: 534px;
        top: -30px;
        right: 103px;
        z-index: 1;
    }

    .cta-green__image {
        width: 184px;
    }
}

@media(max-width:1202px) {
    .cta-green__info {
        margin-left: 200px;
    }

    .cta-green .btn-white {
        width: 270px;
    }
}

@media(max-width:480px) {
    .cta-green .content-container {
        padding-top: 40px;
    }

    .cta-green__content {
        display: flex;
        flex-direction: column;
        padding-right: 0;
    }

    .cta-green__info {
        margin-left: 0;
    }

    .cta-green__info-bottom {
        flex-direction: column;
        gap: 203px;
    }

    .cta-green__info-bottom .btn-main {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        position: relative;
        right: -2px;
        z-index: 100;
        height: 48px;
    }

    .cta-green__bg-img {
        width: 479px;
        top: auto;
        right: auto;
        left: 40%;
        bottom: -50%;

        transform: translate(-50%, 0);
    }

    .cta-green__image {
        left: auto;
        right: 18px;
        bottom: 74px;
        z-index: 10;
    }

    .cta-green__info-quote h3 {
        font-weight: 900;
        font-size: 24px;
        line-height: 133%;
    }
}

