.gallery__img{
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.5s;
}
.gallery__img:hover{
    transform: scale(1.02);
}
.gallery__img--big{
    height: 300px;
}
.gallery__img--medio{
    height: 200px;
}
.gallery__img--small{
    height: 150px;
}
.modal{
    width: 100%;
    min-height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
}
.modal__content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.modal__img{
    width: 50%;
}
.modal__boton{
    position: absolute;
    top:10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: red;
    font-size: 2em;
    text-align: center;
    border-radius: 50%;
}
.modal--open{
    display: block;
}
.container .esquemas__img{
    margin-bottom: 30px; 
}
.documentacion__img{
    width: 30%;
    margin:auto;
}
.esquemas__title{
   text-align: center;
}