/* ESPECIAL TEXTO HEADER INICIO */

.special-header-div {
    height: 130px;
    margin-top: 12rem;
}
.special-header-txt-galeria {
    font-family:'Oswald',sans-serif;
    font-weight: 700;
    top: 10%;
    font-size: 25px;
}
.special-header-txt-fotos {
    font-family:'Oswald',sans-serif;
    font-weight: 700;
    font-size: 100px;
}

@media (min-width: 768px) {
    .special-header-md-div {
        height: 600px;
        margin-top: 3rem;
    }
    .special-header-txt-md-galeria {
        font-family:'Oswald',sans-serif;
        font-weight: 700;
        top: 25%;
        font-size: 50px;
    }
    .special-header-txt-md-fotos {
        font-family:'Oswald',sans-serif;
        font-weight: 700;
        font-size: 250px;
    }
}

@media (min-width: 1200px) {
    .special-header-xl-div {
        height: 600px;
        margin-top: 3rem;
    }
    .special-header-txt-xl-galeria {
        font-family:'Oswald',sans-serif;
        font-weight: 700;
        top: 10%;
        font-size: 100px;
    }
    .special-header-txt-xl-fotos {
        font-family:'Oswald',sans-serif;
        font-weight: 700;
        font-size: 450px;
    }
}

/* ESPECIAL TEXTO HEADER FIN */

/* SPECIAL GALLERY INICIO*/

.gallery {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    height: 200px;
}
.gallery img {
    width: 100%;

    height: auto;
    display: block;
    
    transition: transform 0.3s ease;
    transform-origin: center;
}
.gallery img:hover {
    cursor: pointer;

    transform: scale(1.2);
}
.gallery a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SPECIAL GALLERY FIN*/