#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#popup-promo {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    z-index: 9999;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    transition-delay: 0.2s;
}

.popup-container__column-img img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.popup-container__column-content h1 {
    font-size: 26px;
    margin: 15px 0;
    color: #fff;
}

.popup-container__column-content p {
    margin: 15px 0;
    color: #fff;
}

.popup-container__column-content button {
    display: block;
    width: 100%;
    padding: 0.5em;
    background: #ff9900;
    color: #000 !important;
    border: none;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
}

.popup-container__column-content button a {
    color: #1a1919;
    text-decoration: none;
    font-weight: 600;
}

.popup-container {
    display: flex;
    gap: 50px;
    justify-content: flex-end;
}

.popup-container__column-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
#popup-close:hover
{
    color: #ff9900;
}
@media screen and (max-width: 600px){
    #popup-promo {
        width: 350px;
        height: 250px;
        background-size: 100% 100%;
    }
    .popup-container__column-content h1 {
        font-size: 16px;
        margin: 5px 0;
        color: #fff;
    }
    .popup-container__column-content p {
        margin: 5px 0;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
    }
    .popup-container__column-content button {
        font-size: 14px;
    }
}