.imagen_portada{
    background-image: url(../media/imagenes/eventos2.jpeg);
}
.evento{
    margin: 60px auto;
    display: flex;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px black;
}
.evento-img{
    width: 30%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
.evento-img:nth-of-type(odd){
    border-radius: 20px 0px 0px 20px;

}
.evento-img:nth-of-type(even){
    border-radius: 0px 20px 20px 0px;

}
#img1{
    background-image: url(../media/imagenes/evento1.jpg);
}
#img2{
    background-image: url(../media/imagenes/evento2.jpeg);
}
#img3{
    background-image: url(../media/imagenes/evento3.jpg);
}
#img4{
    background-image: url(../media/imagenes/evento4.jpg);
}
#img5{
    background-image: url(../media/imagenes/evento5.jpg);
}
#img6{
    background-image: url(../media/imagenes/evento6.jpg);
}
.evento-body{
    display: flex;
    width: 70%;
    margin: 20px;
    padding: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.evento-body .titulo,.evento-body .descripcion{
    display: flex;
    align-items: center;
    width: 100%;
    height: 16%;
    background-color: white;
    text-align: center;
    padding: 6px;
    border-radius: 20px;
}

.evento-body .titulo h2{
    margin-bottom: 0px !important;
    text-shadow: none;
    width: 100%;
    font-size: 1.8vw ;    
}
.evento-body .descripcion{
    margin-top: 10px;
    height: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.evento-body .descripcion hr{
    width: 40% !important;
    align-self: flex-start;
    margin: 0px auto!important;
}
.evento-body .descripcion hr:nth-of-type(1){
    width: 100% !important;
    align-self: flex-start;
    margin: 0px auto!important;
}
.evento-body .descripcion p{
    margin: 0px;
    width: 100%;
    font-size: 1vw ;
}
.evento-body .descripcion p:nth-of-type(1){
    opacity: 0.6;
    font-style: italic;
}
.evento-body .descripcion p:nth-of-type(2){
    align-self: flex-start;
}
.datos-evento{
    margin-top:10px ;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.fecha{
    text-decoration: underline;
    color: #8f133a;
}
.leer-mas{
    background-color: #8f133a !important;
    min-width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    background-color: white;
    text-align: center;
    padding: 4px;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 0px 0px 4px black;
}
.leer-mas a{
    color: white !important;
}

@media screen and (max-width:1400px) {
    .evento-body .descripcion p{
        font-size: 1.2vw;
    }
}
@media screen and (max-width:1200px) {
    .evento-body .descripcion p{
        font-size: 1.4vw;
    }
}

@media screen and (max-width:992px) {
    .evento{
        box-shadow: 0px 0px 10px black;
    }
    .evento:nth-of-type(even){
        flex-wrap: wrap;
        height: auto;
    }
    .evento:nth-of-type(odd){
        flex-wrap: wrap-reverse;
        height: auto;
    }

    .evento-img:nth-of-type(odd), .evento-img:nth-of-type(even) {
        height: 400px;
        width: 100%;
        border-radius: 20px 20px 0px 0px;
    }
    .evento-body{
        height: 400px;
        width: 100%;
    }
    .evento-body .titulo h2{
        font-size: 2.6vw ;    
    }
    .evento-body .descripcion p{
        font-size: 1.6vw;
    }
}
@media screen and (max-width:768px) {
    .evento-body .descripcion p{
        font-size: 1.8vw;
    }
}
@media screen and (max-width:576px) {
    .evento-img:nth-of-type(odd), .evento-img:nth-of-type(even) {
        height: 300px;
    }
    .evento-body{
        height: 300px;
    }
    .evento-body .titulo h2{
        font-size: 3.6vw ;    
    }
    .evento-body .descripcion p{
        font-size: 2vw;
    }
    .fecha{
        font-size: 3vw;
    }
}