/*MODAL-WINDOW*/
    /*-------------------- POPUP --------------------*/
.overlay {
    left: 0;
    opacity: 0;
    position: fixed;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    background-color: rgba(0,0,0,.7);
}
.overlay.active {
    z-index: 9;
    opacity: 1;
    overflow: hidden;
}
.overlay.active-gal {
    background-color: transparent;
}
.popup1 {
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    position: fixed;
    top: 50%;
    z-index: -1;
    -webkit-transition: .4s ease;
    transition: .4s ease;
    max-width: 440px;
    width: 100%;
    background-color: #253844;
    padding: 30px 20px;
}
.popup1.active {
    z-index: 10;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
body.modal .overlay {
    opacity: 1;
    z-index: 9;
    overflow: hidden;
}
body.modal {
    overflow: hidden;
}
.popup1 h5 {
     font-family: acrom, acrom, Segoe UI, SegoeUI, Tahoma, Verdana, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}
.popup-close {
    width: 28px;
    height: 28px;
    position: absolute;
    right: -35px;
    top: -35px;
    cursor: pointer;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}
.popup-close::before,
.popup-close::after {
    content: "";
    width: 2px;
    height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.popup-close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popup-close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popup-close:hover::before,
.popup-close:hover::after {
    opacity: .6;
}
.popup1 input{
    font-family: acrom, acrom, Segoe UI, SegoeUI, Tahoma, Verdana, Arial, sans-serif;
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 20px;
}
.popup1 ul{
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.popup1 ul li{
    margin-bottom: 10px;
}
.popup1 ul li:last-child{
    margin-bottom: 0;
}
.popup1 .popup-btn{
    border: none;
    text-transform: uppercase;
    max-width: 290px;
    margin: 20px auto 0;
    background-color: #fff;
    border: 2px solid #67cf35;
    color: #67cf35;
    -webkit-transition: .4s ease;
    transition: .4s ease;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}
.popup1 .popup-btn:hover{
    background-color:#67cf35;
    color: #fff; 
}
    /*END MODAL WINDOW*/