.banner-bottom {
    border-radius: var(--radius-60) var(--radius-60) 0 0;
    background: 
        linear-gradient(180deg, rgba(250, 250, 251, 0) 50%, #fafafb 150%),
        url('img/banner-bottom.svg') right top / cover no-repeat,
        var(--main-color);
    padding: 128px 0;
}
.banner-bottom .banner-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 762px;
    width: 100%;
    margin: 0 auto;
}
.banner-holder .banner-title {
    color: var(--white-color);
    font-size: var(--c2-size);
    font-weight: 700;
    line-height: 100%;
    text-align: center;
}
.banner-holder .banner-subtitle {
    font-size: var(--h6-size);
    font-weight: 600;
    color: var(--white-color);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.banner-holder .btn {
    margin: 40px auto 0;
    padding: 15px 36px;
    font-size: var(--p2-size);
    color: var(--white-color);
    font-weight: 600;
    line-height: 125%;
    width: fit-content;
    border-radius: 38px;
    background-color: var(--gray-black);
}
.banner-bottom .modal {
    display: none;
}
.banner-bottom .modal.open {
    display: block;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 508px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(-45%);
    opacity: 0;
    z-index: 55;
    transition: .15s ease-out;
}
.banner-bottom .modal.visible {
    opacity: 1;
    transform: translateY(-50%);
}
.banner-bottom .modal .modal-holder {
    position: relative;
    height: 100%;
    padding: 42px;
    border-radius: 20px;
    background-color: var(--main-color);
    overflow: hidden;
    z-index: 2;
}
.banner-bottom .modal-holder .close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: url('img/close-modal.svg') center / contain no-repeat;
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .banner-bottom {
        padding: 40px 0;
    }
    .banner-bottom .banner-holder {
        max-width: 452px;
    }
    .banner-holder .banner-subtitle {
        margin-bottom: 8px;
    }
    .banner-holder .btn {
        margin-top: 24px;
    }
}
@media screen and (max-width: 578px) {
    .banner-bottom {
        padding: 32px 0 40px;
    }
}