.popupholder {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    min-height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 100;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.popup {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.leftpopup {
    width: 40%;
}

.rightpopup {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.leftpopup img {
    width: 100%;
}

.rightpopup h2 {
    width: 100%;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #764014;
    text-align: center;
}

.rightpopup div {
    line-height: 150%;
    color: #6b6b6b;
    text-align: center;
}

.rightpopup a {
    display: inline-block;
    padding: 12px 35px;
    margin-top: 15px;
    color: white;
    background-color: #764014;
    border: 2px solid #764014;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s;
    cursor: pointer;
}

.rightpopup a:hover {
    background-color: transparent;
    color: #764014;
}

.closer {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    cursor: pointer;
}

.overclicker {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.menu-block {
    overflow: hidden;
}

@media all and (max-width: 680px) {
    .leftpopup {
        display: none;
    }
    .rightpopup {
        width: 100%;
        padding: 80px 20px;
    }
}