
.galery-container h1{
    margin: 0;
    color: rgb(211, 17, 69);
    font-size: 34px;
    padding-bottom: 30px;
}
.galeria-three{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
    padding-bottom: 60px;
}
.img-galery{
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    
    
}

.img-galery .sombreado,
.img-galery-1 .sombreado{
    background: linear-gradient(45deg, black 0%, rgba(128, 33, 47, 0) 100%);
    height: 100%;
    z-index: 0;
}

.img1 { 
    grid-area: 1 / 1 / 4 / 3; 
    gap: 0 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.img2 { 
    grid-area: 4 / 1 / 6 / 3; 
}

.img3 { 
    grid-area: 1 / 3 / 6 / 4; 
    height: 700px;
    background-color: blanchedalmond;
}

.img1 .img-galery-1{
    background-size: cover;
    background-repeat: no-repeat;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    position: relative;
    border-radius: 10px;

}

.data-galery {
    margin-left: 20px;
    font-size: 22px;
    text-align: left;
    color: #fff;
}
.data-galery h3 {
    margin-bottom: 5px;
}
.data-galery a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px;
    margin-bottom: 30px;
    max-width: 134px;
    max-height: 42px;
    background: #BA0C2F;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 21px;
    transition: 0.5s ease-in-out;
    position: relative;
    /*font-family: 'Alright Sans Black';*/
    text-transform: uppercase;

}

.data-galery img{
    width: 20px;
    height: 13px;
    margin-left: 11px;
}

@media (max-width: 768px) {
    .galeria-three {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr; 
    }
    
    .img1 { grid-area: 1 / 1 / 3 / 2; }
    .img2{ grid-area: 3 / 1 / 5 / 2; }
    .img3 { grid-area: 5 / 1 / 7 / 2; } 

    .img-galery{
        height: 250px;
        background-position: center;
    }
}

@media (max-width: 600px){
    .img1{
        flex-wrap: wrap;
        gap: 15px 0;
    }
    .img1 .img-galery-1{
        width: 100%;
        height: 250px;
    }
}