.body-no-scroll {
    overflow: hidden;
}

.modal {
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    margin: 15% auto;
    padding: 30px;
    background-color: var(--default_black);
    width: 100%;
    max-width: 500px;
    max-height: 550px;
    overflow-x: auto;
    color: var(--default_header);
} 

.modal-content::-webkit-scrollbar {
    width: 10px; 
}
.modal-content::-webkit-scrollbar-track {
    background: #776a62; /* цвет зоны отслеживания */
}
.modal-content::-webkit-scrollbar-thumb {
    background-color: #ad9b90; /* цвет бегунка */
}

.modal-content h2,
.modal-content a {
    color: #ffffff;
}

.modal-content h2 {
    font-size: 3rem;
    line-height: 1em;
    letter-spacing: -.02em;
    font-weight: 600;
}

.modal-content .close-modal {
    display: block;
    font-size: 50px;
    text-align: right;
}
.yespass {
    display: flex;
    align-items: center;
    gap: 24px 40px;
    margin: 40px 0;
}
.yespass__item {
    width: calc((100% - 80px) / 3);
}
.yespass__img {
    position: relative;
}
.yespass__img img {
    width: 100%;
}
.yespass__content {
    margin-top: 12px;
}
.yespass__title {
    font-size: 14px; 
}
.yespass__title--mobile {
    display: none;
}
.yespass__title span {
    font-weight: 600;
}
.btn.yespass-btn {
    white-space: normal;
} 
.yespass-bottom {
    margin: 80px 0 80px;
}
@media screen and (max-width: 667px) {
    .yespass {
        flex-direction: column;
    }
    .yespass__item {
        width: 100%;
        display: flex;
        gap: 20px;
    }
    .yespass__content {
        margin-top: 0;
    }
    .yespass__img {
        flex-grow: 1;
    }
    .yespass__title--mobile {
        display: block;
    }
    .yespass-bottom {
        margin: 40px 0;
    }
}