.no-scroll {
    overflow: hidden;
}

.popup {
    background: rgba(0, 0, 0, 0.75);
    height: 100vh;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    transition: all 550ms ease-in-out;
    width: 100vw;
    z-index: 9999;
}

.popup .popup-holder {
    background: #5F032D;
    border: 4px solid #FFFFFF;
    left: 50%;
    padding: 65px 22px 52px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 84px);
}

.popup .popup-title {
    color: #FFFFFF;
    font-family: '__Playfair Display_5';
    font-size: 35px;
    line-height: 47px;
    text-align: center;
    text-transform: uppercase;
}

.popup .popup-text {
    color: #FFFFFF;
    font-family: '__Source Sans Pro_5';
    font-size: 16px;
    line-height: 23px;
    margin-top: 48px;
    text-align: center;
}

.popup .popup-text strong {
    font-weight: bold;
}

.popup a {
    align-items: center;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    color: #FFFFFF;
    display: flex;
    font-family: '__Source Sans Pro_5';
    font-size: 15px;
    height: 42px;
    justify-content: center;
    line-height: 21px;
    margin: 0 auto;
    margin-top: 46px;
    width: 240px;
}

.popup .hide-popup {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    color: #5F032D;
    display: flex;
    font-family: '__Source Sans Pro_5';
    font-size: 15px;
    height: 42px;
    justify-content: center;
    line-height: 21px;
    margin: 0 auto;
    margin-top: 20px;
    width: 240px;
}

@media (min-width: 768px) {

    .popup .popup-holder {
        max-width: 471px;
        padding: 70px 28px;
        width: 100%;
    }

    .popup .popup-title {
        font-size: 40px;
        line-height: 53px;
    }

    .popup .popup-text {
        font-size: 18px;
        line-height: 26px;
        margin-top: 22px;
    }

    .popup .flex-content {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }

    .popup a {
        background: transparent;
        font-size: 14px;
        height: 30px;
        line-height: 20px;
        margin-top: unset;
        transition: all 550ms ease-in-out;
        width: 201px;
    }

    .popup .hide-popup {
        background: transparent;
        color: #FFFFFF;
        cursor: pointer;
        font-size: 14px;
        height: 30px;
        line-height: 20px;
        margin-top: unset;
        transition: all 550ms ease-in-out;
        width: 201px;
    }

    .popup a:hover, .popup .hide-popup:hover {
        background: #ffffff;
        color: #5F032D;
    }
}