.galeria {
    margin-top: 40px;
    
}


.galeria .titulo-grupo {
    font-size: 30px;
}


.img-galeria {
    object-fit: cover;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.img-galeria:hover {
    transform: scale(1.02);
}

.img-galeriagrande {
    height: 400px;
   padding: 5px;
}

.img-galeriachica {
    height: 200px;
    padding: 5px;
}

.galeria .contenedor {
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 30px;
}

.modal {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none;
}

.contenido-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.img-modal {
    width: 90%;
}

.modal-btn {
    position: absolute;
    top: 70px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 60px;
    height: 60px;
    line-height: 60px;
    /*    font-size: 50px;*/
    background-color: #ff4037;
    font-size: 32px;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
}

.modal-open {
    display: block;
}

@media screen and (min-width:480px) {
    .img-modal {
        width: 50%;
    }

    .galeria .titulo-grupo {
        font-size: 40px;
    }
}
