/**
 * IDE: PhpStorm.
 * Autor: Flavio Laura
 * Email: flaurac@gmail.com
 * Data: 19/10/22
 * --- Provincia Italiana di San Francesco d'Assisi dei Frati Minori Conventuali ----
 */
.titulo_side_banner {
    font-size: 1.4rem;
    font-weight: 300;
    color: #f9f9f9;
    margin: 0;
    opacity: 0;
    transition: 1s;
}
.boton_side_banner {
    outline: none;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    margin: 0;
    padding: 0.5rem 1rem;
    background: #428bca;
    color: #f9f9f9;
    font-size: 1.3rem;
    transition: 0.3s transform cubic-bezier(0.55, -0.87, 0.44, 1.91);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.boton_side_banner:hover {
    transform: scale(1.2);
}
.contenedor_imagen_side {
    max-width: 600px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
}
.contenedor_imagen_side img {
    width: 100%;
}
/*====================================
Hover Effect
=====================================*/
.contenedor_imagen_side .overlay {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.35s;
}
.contenedor_imagen_side:hover .overlay {
    left: 0;
}
.contenedor_imagen_side .overlay:hover .titulo_side_banner {
    opacity: 1;
}
/*====================================
Hover Effect
=====================================*/
