
/* PLANTILLA CALENDARIOS */

.plantillaCalendarios{
    display: flex;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: auto;
    margin-top: 100px;
    gap: 50px;
}


.contenidosCalendarios{
    width: 65%;
    /* margin: 0 20px; */
}

.sidebarCalendarios{
    width: 30%;
    text-align: center;
    /* position: sticky; */
    height: fit-content;
    top: 20px;
}

.sidebarCalendarios h2{
    font-size: 18px;
    background-color: #8C0000;
    border-radius: 5px;
    transition: all .8s;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.sidebarCalendarios h2:hover{
    background-color: #8C0000;
}

.sidebarCalendarios p{
    font-size: 16px;
}

.sidebarCalendarios p a{
    display: inline-block;
    position: relative;
    color: black;
    text-decoration: none;
}

.sidebarCalendarios h2 a{
    display: inline-block;
    position: relative;
    color: white;
    text-decoration: none;
    transition: all .8s;

}

.sidebarCalendarios a:after {
    content: "";
    display: block;
    margin: auto;
    height: 2px;
    width: 0px;
    transition: all .8s;
    }

.sidebarCalendarios p a:hover:after{
    width: 100%;
    background: #8C0000;
}

.sidebarCalendarios p a:hover{
    color: #8C0000;
    transition: all .8s;

}

.sidebarCalendarios h2:hover a{
    color: whitesmoke;
    transition: all .8s;

}


/* anuncios */

.divAnuncioAncho{
    display: flex;
    margin: auto;
}


.divAnuncioAncho iframe{
    margin: auto;
}


.anunciodivGrande{
    background: #FFF;
    padding: 50px;
    border: 1px rgba(0,0,0,0.2) solid;
    border-radius: 5px;
    box-shadow: 0 0 8px 1px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.anunciodivGrande a{
    font-size: 32px;
    font-weight: bold;
    background-color: #00CF00;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all .8s;
    padding: 20px;
    margin: 0;
    text-align: center;
    width: 80%;
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
    margin: auto;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3)
}

.anunciodivGrande .enlaceUnaColumna a:hover{
    background-color: #00FF00;
    color: white;
}

.enlaceUnaColumna{
    display: flex;
}



.bloqueEslogans{
    margin-top: 50px;
}

.bloqueEslogans blockquote{
    border-left: 8px solid #8C0000;
    padding: 30px;
    background-color: whitesmoke;
    margin-bottom: 50px;
    font-style: oblique;
    font-weight: bold;
    font-size: 21px;
}



@media (max-width:1050px){

    .plantillaCalendarios{
        flex-wrap: wrap;
        margin: 30px;
    }
    
    .contenidosCalendarios{
        width: 100%;
        /* margin: 0 20px; */
    }

    .sidebarCalendarios{
        width: 100%;
    }

}

@media (max-width:767px){
    
/* PLANTILLA CALENDARIOS */

    
.anunciodivGrande{
    padding: 20px 0;
}

.anunciodivGrande .enlaceUnaColumna a{
    width: 80%;
}

.anunciodivGrande a{
    font-size: 22px;
}


}