.Promo {
    padding-bottom: 3.6458333333vw;
    padding-top: 2.8645833333vw;
}

.Promo .container {
    height: 100%;
    margin: 0 auto;
    max-width: 80%;
    position: relative;
}

.Promo .container h1 {
    line-height: 100%;
    margin-bottom: 3.125vw;
    font-size: calc(3.125vw + 12px);
}

.promo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2%;
    row-gap: 50px;
    width: 100%;
}

.promo-item .promo-item-img-container {
    margin-bottom: 27px;
    transition: transform .3s linear;
}

.promo-item-title, .promo-item-popup-title {
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-weight: 500;
    line-height: 29.05px;
    margin-bottom: 6px;
}

.promo-item-period, .promo-item-popup-period {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin-bottom: 28px;
}

.main-button-open {
    padding: .4166666667vw 2.0833333333vw;
}

.promo-item-buttons-container {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

.popup-item {
    background-color: rgba(0, 0, 0, .8);
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 99991;
    opacity: 0;
    display: flex;
    visibility: hidden;
    transition: opacity,visibility .3s linear;
}

.popup-item.active {
    opacity: 1;
    visibility: visible;
}

.promo-item-popup {
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    display: flex;
    position: relative;
    width: 600px;
    padding: 40px;
    max-width: 100%;
    margin: auto 25px;
    height: max-content;
}
.promo-item-popup .close {
    height: 25px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
}






@media screen and (max-width: 960px) {
    .Promo .container h1 {
        font-size: 36px;
    }

    .Promo .container {
        max-width: 94%;
    }
}

@media screen and (max-width: 767px) {
    .promo {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-button {
        font-size: 14px;
    }
}