/* VENTANA MODAL */

.pop-up{
    background: rgba(48, 48, 48, 0);
    position: fixed;
    top: 5%;
    bottom: 0;
    left: 25%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
	opacity: 1;
	z-index:0;

}
.pop-up-wrap{
	display: flex;
    align-items: center;
    width: 150%;
    max-width: 800px;
    opacity: 1;
    transition: .5s ease all;
	flex-direction: column;

}
.pop-up:target {
	visibility:hidden;
    opacity:0;
}

#closemodal{
    line-height: 25px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0px;
    width: 35px;
    text-decoration: none;
    border-radius:3px;
    cursor: pointer;
	content: url(../img/closemodal.png);
}

.pop-up.show{
    visibility: visible;
}

.pop-up-wrap.show{
    transform: scale(1);
    opacity: 1;
}



@media only screen and (max-width: 980px){
    .pop-up-title{
        display: none;
    }

}

@media only screen and (max-width: 320px){
    .sub-content h2{
        font-size: 30px;
    }