

/* VENTANA MODAL */

.pop-upform{
    background: rgba(48, 48, 48, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 302;
}

.pop-up-wrapform{
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 950px;
    transform: scale(0.6);
    opacity: 0;
    transition: .3s ease all;
}

.pop-up-titleform{
    flex-basis: 0;
    flex-grow:1.5;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('../img/office.jpg');
    background-size: 165%;
    background-position: center;
    background-repeat: no-repeat;
}

.pop-up-titleform::after{
    content: '';
    position: absolute;
    background: rgb(248, 255, 250);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.pop-up-titleform::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.subcriptionform::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.pop-up-titleform h2,
.pop-up-titleform p{
    z-index: 10;
    color: #fff;
}

.pop-up-titleform h2{
    font-family: 'Chiller';
    font-size: 80px;
}


.pop-up-titleform p{
    font-size: 20px;
    font-weight: 300;
}

.subcriptionform{
    background: #fff;
    flex-basis: 0;
    flex-grow: 2;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
}

.sub-contentform{
    width: 75%;
}

.sub-contentform h2{
    font-weight: 500;
    font-size: 40px;
    color: #1F4068;
    margin-bottom: 15px;
}

.sub-contentform p{
    font-weight: 500;
    color: #1bc59b;
    margin-bottom: 30px;
}

.subs-emailform{
    width: 100%;
    padding: 15px;
    border: none;
    background: #ccc;
    margin-bottom: 15px;
}

.subs-sendform{
    width: 100%;
    padding: 15px;
    border: none;
    background: #E43F5A;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: .25s ease background;
}

.subs-sendform:hover{
    background: #1bc59b;
}

.lineform{
    width: 100%;
    height: 20px;
    background: #1F4068;
}

#closeform{
    position: absolute;
    top: 40px;
    right: 25px;
    font-size: 25px;
    color: #1bc59b;
    cursor: pointer;
}

.pop-upform.show{
    visibility: visible;
}

.pop-up-wrapform.show{
    transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width: 980px){
    .pop-up-titleform{
        display: none;
    }

}

@media only screen and (max-width: 320px){
    .sub-contentform h2{
        font-size: 30px;
    }