:root{
    --white: #fff;
    --black: #000;
    --gray: #f0f0f0;
    --fechaColor1: #9b9c9e;
    --fechaColor2: #963232;
    --fechaColor3: #9d9b98;
    --greenVideo: #1d2c2c;
    --greenB: #2c4343;
    --greenL: #3e7c00;
    --footerbg: #446666;
    --color_textoGeneral: #1e2e3a;
    --color_texto: #85b200;
    --bgNoticia: rgba(22, 39, 46, 40%);
    --robotoSlab: 'Roboto Slab', serif;
    --roboto: 'Roboto', sans-serif;
  }
/* globales */
html {
    box-sizing: border-box;
    font-size: 62.5%;
}
  *, *:before, *:after {
    box-sizing: inherit;
}
body{
    margin: 0;
    font-family: var(--roboto);
    color: var(--color_textoGeneral);
}
section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rel_cont{
    position: relative;
}
.flex{
    display: flex;
}
.cont4{
    max-width: 40rem;
    width: 100%;
}
.cont8{
    max-width: 80rem;
    width: 100%;
}
.cont12{
    max-width: 120rem;
    width: 100%;
}
.border_right{
    border-right: .1rem solid var(--greenL);
}
.marginB15{
    margin-bottom: 1.5rem;
}
.marginB25{
    margin-bottom: 2.5rem;
}
.grid4C{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.grid3C{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid2C{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.treinta3{  width: 33%; float: left; position: relative; display:grid; padding-left: 10px;}
.tdnon{ text-decoration: none;}
.solodesk{ display: inline;}

@media (max-width: 1000px) {
    .grid4C{
        grid-template-columns: 100% !important;
    }
    .grid3C{
        display: grid;
        grid-template-columns: 100% !important;
    }
    .grid2C{
        display: grid;
        grid-template-columns: 100% !important;
    }
}
.white_color{
    color: var(--white);
}
.white_color a{
    color: var(--white);
	text-decoration: none;
}
.greenL_color{
    color: var(--greenL);
}
.greenL_color a{
    color: var(--greenL);
	text-decoration: none;
}
.green_color{
    color: var(--color_texto);
}
.black_color{
    color: var(--black)
}
.black_color a{
    color: var(--black);
	text-decoration: none;
}
.color_textoG{
    color: var(--color_textoGeneral);
}
.text_center{
    text-align: center;
}
/* header */
.header_cont{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header_bg{
    background-image: url("../src21/images/nav_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 17rem;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}
nav{
    width: 100%;
    height: 4.5rem;
    background-color: var(--gray);
    justify-content: center;
}
.nav_cont{
    justify-content: flex-start;
    align-items: center;
    /* gap: 2.5rem; */
}
.link_nav{
    font-family: var(--robotoSlab);
    font-size: 1.59rem;
    font-weight: 400;
    text-decoration: none;
    margin: 0 1.25rem;
    color: var(--color_textoGeneral);
}
.link_cont{
    width: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.barra{
    display: none;
    position: absolute;
    width: 100%;
    height: .5rem;
    background-color: var(--greenL);
    bottom: -.5rem;
}
.link_cont.active{
    background-color: var(--greenB);
}
.link_cont.active .link_nav{
    color: var(--white);
}
.link_cont.active .barra{
    display: block;
}
.link_cont:hover{
    cursor: pointer;
    background-color: var(--greenB);
}
.link_cont:hover > .link_nav{
    color: var(--white);
}
.link_cont:hover > .barra{
    display: block;
}
/* Banner Primer Informe */
.primer_cont{
    width: 100%;
    height: 10rem;
    justify-content: center;
    align-items: center;
}
.primer_informe_fechacont{
    position: absolute;
    height: 10rem;
    width: 95rem;
    margin: 0 auto;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.primer_informe_fechacont.uno{
    background-image: url(../src21/images/primer_informe1.png);
}
.primer_informe_fechacont.dos{
    background-image: url(../src21/images/primer_informe2.png);
}
.primer_informe_fechacont.tres{
    background-image: url(../src21/images/primer_informe3.png);
}
.fecha_cont{
    position: absolute;
    top: 4.5rem;
    left: 20.5rem;
}

.fecha_pi{
    color: var(--fechaColor1);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 0;
    padding: 0 1rem 0 1rem;
    border-right: .1rem solid var(--fechaColor1);
}
@media (max-width: 1000px) {
    .primer_cont{
        height: 5rem;
        
    }
    .primer_informe_fechacont{
        height: 5rem;
        width: 98%;
    }  
    .fecha_cont{
        position: absolute;
        top: 2rem;
        left: 19%;
    }
    .fecha_pi{
        font-size: .8rem;
        padding: 0 .2rem 0 .2rem;
    }
}
.fecha_pi:last-child{
    border-right: none;
}
.fecha_pi.fecha_color1{
    color: var(--fechaColor1);
}
.fecha_pi.fecha_color2{
    color: var(--fechaColor2);
}
.fecha_pi.fecha_color3{
    color: var(--fechaColor3);
}
/* Noticias Principales */
.np_section{
    justify-content: center;   
    align-items: center;
}
.noticias_principales_cont{
    width: 100%;
    align-items: center;
    justify-items: center;
    gap: 1rem;
}
/* Noticia principal */
.noticia_principal_cont{
    position: relative;
    width: 100%;
    height: 100%;
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    overflow: hidden;
}
.noticia_principal_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    transition: all 1s;
}
.noticia_principal_bg:hover,
.noticia_principalMini_bg:hover
{
    transform: scale(1.2);
}
.noticia_principal{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: all 1s;
}
.noticia_principal:hover{
    transition: all 1s;
    /* background-size: 120%; */
    animation: zoomin 10s linear;
}
.noticia_principal_texto{
    position: absolute;
    width: 66.66%;
    background-color: var(--bgNoticia);
    bottom: 5%;
    left: 0;
    padding: 1.5rem 3rem;
    z-index: 1;
}
.noticia_principal_nivel,
.noticia_principal_titulo,
.noticia_principal_fecha{
margin: .6rem 0;
}

.noticia_principal_nivel{
    font-size: 1.7rem;
    text-transform: uppercase;
}
.noticia_principal_titulo{
    font-size: 3.2rem;
}
.noticia_principal_fecha{
    font-size: 1.3rem;  
}
.overflow_hidden{
    overflow: hidden;
}
/* Noticia principal Mini con texto sobre imagen */
.noticia_principalMini_cont{
    width: 100%;
    height: 100%;
    position: relative;
}
.noticia_principalMini_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all 1s;
}
.noticia_principalMini{
    width: 100%;
    height: 25rem;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.noticia_principalMini_texto{
    position: absolute;
    width: 100%;
    background-color: var(--bgNoticia);
    bottom: 0;
    left: 0;
    padding: 1.5rem .7rem;
    z-index: 1;
}
.noticia_principalMini_nivel,
.noticia_principalMini_titulo,
.noticia_principalMini_fecha{
    margin: .6rem 0;
}

.noticia_principalMini_nivel{
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-right: .5rem;
    border-right: 1px white solid;
}
.noticia_principalMini_titulo{
    font-size: 1.7rem;
}
.noticia_principalMini_fecha{
    font-size: 1.2rem;  
}
/* Noticia principal Mini con texto debajo de la imagen */
.noticia_principalMini2_cont{
    width: 100%;
    height: 100%;
}
.noticia_principalMini2{
    width: 100%;
    height: 19rem;
    background-position: center;
    background-size: cover;
}
.noticia_principalMini2_texto{
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 0;
}
.noticia_principalMini2_nivel,
.noticia_principalMini2_titulo,
.noticia_principalMini2_fecha{
    margin: .6rem 0;
}

.noticia_principalMini2_nivel{
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-right: .5rem;
    border-right: 1px black solid;
}
.noticia_principalMini2_titulo{
    font-size: 2.1rem;
}
.noticia_principalMini2_fecha{
    font-size: 1.2rem;  
}
/* Noticia principal Mini con texto a la derecha de la imagen */
.noticia_destacada2_cont{
    width: 100%;
    height: 100%;
}
.noticia_destacada2{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    margin-right: 1rem;
}
.noticia_destacada2_texto{
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 0;
}
.noticia_destacada2_nivel,
.noticia_destacada2_titulo,
.noticia_destacada2_fecha{
    margin: .6rem 0;
}

.noticia_destacada2_nivel{
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-right: .5rem;
    border-right: 1px black solid;
}
.noticia_destacada2_titulo{
    font-size: 2.1rem;
}
.noticia_destacada2_fecha{
    font-size: 1.2rem;  
}
/* Noticia cartel*/
.noticia_cartel_cont{
    width: 100%;
    height: 100%;
    min-height: 24rem;
}
.noticia_cartel_img{
    width: 100%;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}
.comentarios_cont{
    width: 100%;
    height: 100%;
}
.titulo_cont{
    width: 100%;
    position: relative;
    align-items: flex-end;
}
.titulo{
    margin: -0.7rem 0 .5rem 0;
    font-size: 3.5rem;
    font-family: var(--robotoSlab);
    font-weight: normal;
}
.titulo_barra{
    width: 100%;
    height: .6rem;
    background-color: var(--color_textoGeneral);
    margin-bottom: 1.2rem;
    margin-left: 1.3rem;
}
.titulo_barra.green{
    background-color: var(--greenL);
}
.titulo_barra.w100{
    width: 100%;
}
.titulo_barra.w70{
    width: 70%;
}
.titulo_barra.w50{
    width: 50%;
}
.titulo_barra.w30{
    width: 27%;
}
.comentarios_texto_cont{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;

}
.comentarios_texto_titulo{
    margin: 0;
    font-size: 1.9rem;
}
.comentarios_texto_fecha{
    margin: .5rem 0;
    font-size: 1.4rem;
}
.comentarios_texto{
    margin: 0;
    font-size: 1.4rem;
}
@media (max-width: 1170px) {
    .comentarios_titulo{
        font-size: 3.0rem;
    }
}

/* Sección de videos */
.video_section{
    width: 100%;
    /* height: 90vh;
    max-height: 80rem; */
    padding: 4rem 0;
    background-color: var(--greenVideo);
    display: flex;
    justify-content: center;
    align-items: center;
}
.videos_section_cont{
    display: grid;
    height: 80%;
    grid-template-columns: 60% 40%;
    gap: 2rem;
}
.video_cont{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lista_cont{
    flex-direction: column;
    height: 100%;
    width: 95%;
    justify-content: space-between;
    margin: auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.zi1{
    z-index: 1;
}
.card_video_cont{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* gap: 1.5rem; */
    justify-self: center;
    align-self: center;
    gap: 1.5rem;
}
.card_video_cont a{
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card_video_img{
    width: 100%;
    /* height: 100%; */
    max-width: 16rem;
    
}
.card_video_nombre{
    font-size: 1.4rem;
    /* max-width: 16rem; */
    width: 90%;
    text-align: center;
}

/* Noticias destacadas */
.noticias_destacadas{
    flex-direction: column;
    background-color: var(--gray);
    padding: 2.4rem 0;
}
.noticias_destacadas .titulo_barra{
    width: 70%;
}
.noticias_destacadas_cont{
    gap: 3rem;
}
.noticia_destacada_cont{
    width: 100%;
    height: 100%;
}
.noticia_destacada{
    width: 100%;
    height: 25rem;
    background-position: center;
    background-size: cover;
}
.noticia_destacada.v2{
    height: 100%;
    min-height: 25rem;
}
.noticia_destacada_texto{
    position: absolute;
    width: 100%;
    background-color: var(--bgNoticia);
    bottom: 0;
    left: 0;
    padding: 0 .7rem;
}
.noticia_destacada_titulo{
    font-size: 2.2rem;
    margin: .6rem 0;
    max-width: 100%;
}

/* secciones con side-bar */
.sections_cont{
    width: 100%;
    justify-content: center;
    align-items: center;
}
.sections_72_28{
    display: grid;
    grid-template-columns: 72% 28%;
}
@media (max-width: 1000px) {
    .sections_72_28{
        grid-template-columns: 100%;
    }  
    .sections_72{
        width: 100%;
        padding-right: 0!important;
    }
    .sections_28{
        width: 100%;
        padding: 0 1rem;
    }
}
.sections_72{
    width: 100%;
    padding-right: 2rem;
}
.sections_28{
    width: 100%;
    padding-left: 2rem;
}
.noticias_zonacentro{
    gap: 1rem;
}
.noticias_textoderecha_cont{
    flex-direction: column;
    gap: 1rem;
}
.barra_noticia{
    width: 100%;
    height: .2rem;
    background-color: var(--greenL);
}

@media (max-width: 1100px) {
   .card_video_img{
    max-width: 12rem;
    /* max-height: 6rem; */
   }
}
/* sidebar */
.noticia_cartel_cont.sidebar{
    min-height: unset;
    height: auto;
}
.noticia_cartel_img.sidebar{
    width: 100%;
    height: auto;
}

/* columnistas */
.noticias_textoderecha_cont.sidebar{
    width: 100%;
}
.columnista_imagen{
    width: 65px;
    height: 65px;
}
.columnista_texto1,
.columnista_texto2,
.columnista_autor{
    font-size: 1.4rem;
    margin: 0 0 .4rem .4rem;
}
.columnista_texto1{
    font-family: var(--robotoSlab);
}
.barra_noticia.columnista{
    width: 95%;
    background-color: var(--black);
    height: .1rem;
    margin-left: 1rem;
}
/* caricatura */
.caricatura_img{
    width: 100%;
    height: auto;
}
/* lo más leído */
.noticia_destacada2_cont.masleido{
    align-items: center;
}
.circulo{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--color_textoGeneral);
    justify-content: center;
    align-items: center;
}
.blk{ text-decoration:none; color: #000000;}
.blk a{ text-decoration:none; color: #000000;}
.solomovtoppad{ padding-top:0px;}
.numero_circulo{
    color: var(--white);
    font-size: 1.4rem;
}
/* Historias y tradiciones de Veracruz */
.titulo_cont.historias{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.titulo.historias{
    font-size: 2.2rem;
    font-weight: bold;
}
.historias_img{
    width: 12rem;
    height: auto;
}
footer{
    width: 100%;
    height: 10.5rem;
    background-color: var(--footerbg);
}
/* indice */
.indice{
    width: 90%;
    justify-content: center;
    align-items: center;
}
.indice_btn{
    text-decoration: none;
    color: var(--color_textoGeneral);
    font-size: 2rem;
    padding: 0 .5rem;
}
@media (max-width: 1000px) {
    .indice{
        width: 100%;
    }
}
.noticias_destacadas.interior{
    background-color: unset;
}
/* Nota */
.titulo_nota{
    font-size: 4rem;
}
.descripcion_nota{
    font-weight: 300;
    font-style: italic;
}
.img_nota{
    width: 100%;
    height: auto;
}
.pieImg_nota{
    font-size: 1.6rem;
    text-align: center;
    margin: 0;
}
.autor_redes_cont{
    align-items: center;
    justify-content: space-between;
}
.autor_nota{
    
}
.seccion_nota{
    font-size: 1.8rem;
    margin: 1rem 0;
}
.autor_nota{
    font-size: 1.8rem;
    margin: 1rem 0;
}
.titulo_barra.nota{
    margin-left: 0;
    height: .4rem;
}
.texto_nota{
    font-size: 1.8rem;
    line-height: 1.8;
}
.texto_nota p{
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 0;
}
.temas_nota{
    font-size: 1.8rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-weight: 700;
}
.temas_nota:first-child{
    padding-left: 0;
}
.redes_btn{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    background-color: black;
    padding: .3rem 1rem;
    margin: 0 .5rem;
}
.redes_btn.fb{
    background-color: #465994!important;
}
.redes_btn.tw{
    background-color: #5ea0ef!important;
}
.redes_btn.wa{
    background-color: #7cc052!important;
}
.redes_btn.email{
    background-color: #838383!important;
}
.icon_redes{
    width: 16px;
    height: 16px;
    margin: 0 .8rem;
    filter:  brightness(0) invert(1);
}
.redes_text{
    font-weight: bold;
    color: var(--white);
}

/* Media Queries */
/* Media Queries */
/* Media Queries */
/* Media Queries */
/* Media Queries */

/* header */
/* icono menú Hamburguesa */
.movil_display_block{
    display: block;
}
@media (max-width: 1000px) {
   .movil_display_none{
       display: none!important;
   }
   .movil_display_block{
    display: block!important;
}
}
.burguerIcon{
    display: none;
  }
  @media (max-width: 1000px) {
    section.main-header{
      position: fixed;
    }
    .burguerIcon {
      width: max-content;
      display:block;
      position: absolute;
      top: 33%;
      left: 3%;
      z-index: 3;
      cursor: pointer;
    }
    .bar1, .bar2, .bar3 {
      width: 35px;
      height: 5px;
      background-color: var(--white);
      margin: 6px 0;
      transition: 0.4s;
    }
    .blackBar{
      background-color: var(--gray);
    }
    
    .change .bar1 {
      transform: rotate(-45deg) translate(-9px, 6px);
    }
    
    .change .bar2 {opacity: 0;}
    
    .change .bar3 {
      transform: rotate(45deg) translate(-8px, -8px);
    }
  }
@media (max-width: 1000px) {
    .header_bg{
        height: 10rem;
    }
    .header_img{
        display: flex;
    }
   .nav_logo{
        width: 80%;
        margin: 0 0 0 auto;
   }
   #nav{
       display: none!important;
       visibility: none;
       height: auto;
       padding: 1rem 0;
    }
    #nav.active{
        display: block!important;
        visibility: visible;
        position: fixed;
        top: 10rem;
        z-index: 3;
   }
   #nav.active .nav_cont{
       flex-direction: column;
       gap:1rem;
       height: auto;
   }
   #nav.active .link_cont{
        width: 100%;
   }
   .sombraHamburguesa{
    display: none;
    width: 100%;
    height: auto;
    top: 10rem;
    bottom: 0;
    left: 0;
    position: fixed;
    background-color: rgba(65, 65, 62, 0.5);
    transition: .4s;
    z-index: 1;
  }
  .sombraHamburguesa.active{
    display: block;
  }
}

/* noticias principales */
.contenido_movil{
    display: none;
    padding: 0 1rem 0 1rem;
}
.barra_movil{
    display: none;
}
@media (max-width: 1000px) {
    .noticia_principal_cont{
        grid-column: auto;
        grid-row: auto;
        height: 30rem;
        
    }  
    .noticia_principal_texto{
        width: 100%;
        bottom: 0;
        padding: 1rem 2rem;
    }
    .noticia_principal_titulo,
    .noticia_principal_fecha{
        display: none;
    }
    .contenido_movil{
        display: block;
    }
    .noticia_principal_tituloM{
        font-size: 3rem;
        margin: 0;
    }
	 
    .noticia_principal_fechaM{
        font-size: 1.3rem;
    }
    .barra_movil{
        display: block;
        width: 90%;
        height: .2rem;
        margin: 0 auto;
        background-color: var(--black);
    }
    .noticia_principalMini_nivel{
        border-right: none;
        font-size: 1.7rem;
        font-weight: bold;
    }
}
/* Noticias Mini v2 */
@media (max-width: 1000px) {
    .noticia_principalMini2_cont{
        display: flex;
    }
    .noticia_principalMini2{
        min-height: 12rem;
        height: 100%;
    }
    .noticia_principalMini2_texto{
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-start;
        padding-left: 1rem;
    }
    .noticia_principalMini2_nivel{
        border-right: none;
        font-weight: bold;
    }
    .noticia_principalMini2_titulo{
        font-size: 1.6rem;
    }
    /* comentarios */
    .titulo.comentarios{
        text-align: center;
        width: 100%;
    }
}
/* videos */
@media (max-width: 1000px) {
    .video_section{
        height: 50vh;
    }
    .videos_section_cont{
        grid-template-columns: 1fr;
    }
    .lista_cont{
        display: none;
    }
}

/* nota */
@media (max-width: 1000px) {
   .nota_cont{
       padding: 0 1rem;
   }
   .temas_cont{
       flex-direction: column;
   }
   .temas_nota{
       margin: .2rem 0;
       border-right: none;
   }
}
@media (max-width:600px){
	.treinta3{  width: 100%; float: left; position: relative; display:block;}
	.solomovtoppad{ padding-top:90px;}
	.solodesk{ display:none;}
}

/*dropdown menu*/
.dropdown_menu{
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: absolute;
    background-color: var(--gray);
    left: 0;
    top: calc(100% + 0.5rem);
    z-index: 3;
}
.dropdown_menu .link_cont{
    width: 100%;
    padding: 1rem 0;
}
.dropdown_menu .link_cont a{
    text-align: center;
}

nav .nav_cont .link_cont:hover > .dropdown_menu {
    display:flex;
}

.nota_cont{
    /* font-size: 1.8rem; */
}
/* .nota_cont p{
    margin: 0;
}
.temas_cont p{
    margin: unset;
} */