.pop-up{
    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;
    z-index: 10;
    visibility: hidden;
}

.pop-wrap{
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 900px;
    transform: scale(0.6);
    opacity: 0;
    transition: .3s ease all;
}

.pop-up-title{
    flex-basis: 0;
    flex-grow: 1.5;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../img/popup/Fondo.jpg);
    background-size: 165%;
    background-position: center;
    background-repeat: no-repeat;
}

.pop-up-title::after{
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.70);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.pop-up-title::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, .3);
    z-index: -1;
}

.pop-up-title h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: 500;
    padding: 10px;
    z-index: 10;
    
}

.pop-up-title img{
    z-index: 10;
}

.pop-up-content{
    background: white;
    flex-basis: 0;
    flex-grow: 2;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
}

.line{
    width: 100%;
    height: 20px;
    background: #ff5f13;
}


#close{
    position: absolute;
    max-width: 30px;
    max-height: 30px;
    top: 40px;
    right: 25px;
    cursor: pointer;
}

.pop-up-subcontent{
   width: 80%;
}

.pop-up-subcontent h2{
   color: black;
   margin-bottom: 15px;
}

.parrafo1{
    color: black;
    margin-bottom: 15px;
}

.parrafo2{
    margin-bottom: 15px;
}

.parrafo1 b{
    color: black;
}

.parrafo2 b{
    color: black;
}

.padre-parrafo2{
    background-color: #e32727;
    padding: 10px;
    border-radius: 5px;
}

.redes-sociales{
    margin-top: 30px;
}

.red1,
.red2,
.red3{
    padding: 15px;
}

.pop-up.show{
    visibility: visible;
}

.pop-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){
    .pop-up-subcontent h2{
        font-size: 30px;
    }
}
