.section-modal {
    padding: var(--section-padding-24) 0;
}
.section-modal .quote-holder {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.section-modal .subtitle {
    font-size: var(--h6-size);
    color: var(--main-color);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 125%;
    text-align: center;
}
.section-modal h2 {
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--gray-black);
    text-align: center;
}
.section-modal .big-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 60px 80px;
    border-radius: 90px;
    background: var(--main-color) url('img/button-bg.svg') center / cover no-repeat;
    margin: 0 auto;
    max-width: 685px;
    width: 100%;
    font-family: var(--main-family);
    font-size: var(--h1-size-24);
    font-weight: 700;
    line-height: 100%;
    color: var(--white-color);
}
.section-modal .big-btn img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.section-modal .modal {
    display: none;
}
.section-modal .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;
}
.section-modal .modal.visible {
    opacity: 1;
    transform: translateY(-50%);
}
.section-modal .modal .modal-holder {
    position: relative;
    height: 100%;
    padding: 42px;
    border-radius: 20px;
    background-color: var(--main-color);
    overflow: hidden;
    z-index: 2;
}
.section-modal .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: 991px) {
    .section-modal .big-btn {
        padding: 36px 40px;
        gap: 16px;
    }
    .section-modal .big-btn img {
        width: 48px;
        height: 48px;
    }
}
@media screen and (max-width: 768px) {
    .section-modal .big-btn {
        padding: 28px 12px;
        gap: 8px;
    }
    .section-modal .big-btn img {
        width: 40px;
        height: 40px;
    }
}