
.title-content {
    color: white;
    text-align: center;
    padding: 4px;
    border: 1px solid black;
}


.content {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.05vw; 
}
.logo-content{
    background-color: white;
    text-align: center;
}
.content img {
    width: 32%; 
    height: auto; 
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

.mid-content{
    width: 100%;
}
.content_img {
    display: flex;
    gap: 10px; /* Espacio entre las imágenes */
    margin: 0.5vw 0.5vw;
}

.image-content {
    flex: 1;
}
.iframe-wrapper{
    position: relative;
    width: 100%; 
    padding-top: 56.25%; 
    overflow: hidden; 
    background: #000; 
}
iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Elimina el borde del iframe */
}
.image-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.descripcion p{
    color: white;
    padding: 0.75vw 0vw 0vw 0.75vw;
}
/* FORMATO 1450px> */
@media screen and (min-width: 1450px) {
    .title-content{
        margin-top: 50px;
        padding: 8px;
    }
    img{
        width: 1450px;
        height: 1118px;
    }
    .logo-content img{
        width: 1448px;
        height: 541px;
    }
    .logo-content{
        width: 100%;
    }

}
@media screen and (min-width: 830px) and (max-width: 1449.99px) {
    .title-content{
        margin-top: 3.44vw;
        padding: .5vw;
    }
    .mid-content img{
        width: 100%;
        height: 77.1034vw;
    }
    .logo-content img{
        width: 100%;
        height: 37.31vw;
        margin-bottom: 0.5vw;
    }
}

@media screen and (max-width: 829px) {
    .title-content{
        margin-top: 3.44vw;
        padding: .5vw;
    }
    .mid-content{
        padding-top: 70px;
    }
    img{
        width: 100%;
        height: 77.1034vw;
    }
    .logo-content img{
        width: 100%;
        height: 37.31vw;
        margin-bottom: 0.5vw;
    }
}