/* Fuente primaria */
@font-face {
    font-family: 'anton';
    font-style: normal;
    font-display: swap;
    src: url('../fonts/anton.eot');
    src: url("../fonts/anton.woff") format("woff"), url('../fonts/anton.ttf') format('truetype'), url("../fonts/anton.woff2") format("woff2"), url('../fonts/anton.svg') format('svg');
  }
  
  /* Fuente secundaria */
  @font-face {
    font-family: "roboto";
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  }

  @font-face {
    font-family: "roboto-light";
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Roboto-Light.ttf") format('truetype');
  }
  
  :root {
    /* COLOR */
    --c-blue: #184761;
    --c-yellow: #F2D147;
    --c-red: #D1382c;
    --c-black: #1D1D1B;
    --c-gray: #F5F5F5;
    /* FONT */
    --primary-font: 'anton';
    --secondary-font: 'roboto';
    /* LAYOUT */
    --max-width: min(95%, 1320px);
  }
  
  /* RESETS */
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px
  }
  
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: var(--primary-font);
  }
  
  p, li, a, span {
    font-family: var(--secondary-font);
  }

  /*Estilos menú*/
  header {
    background: var(--c-blue);
    padding: 20px 0;
    position: fixed;
    z-index: 3;
    width: 100%;
}

.dnnEditState header{
    position: inherit;
}

.cabezote {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}

img.logoPollos {
    margin-left: 30%;
}

ul.menuPollos {
    background: var(--c-black);
    border-radius: 7px 0 0 7px;
    padding: 10px;
    margin: 0;
}

ul.menuPollos li {
    list-style: none;
    display: inline-block;
    line-height: 0;
}

ul.menuPollos li a {
    color: var(--c-yellow);
    border-right: 1px solid var(--c-yellow);
    padding: 0 15px;
    line-height: 0;
    font-size: 15px;
    text-transform: uppercase;
}

ul.menuPollos li:last-child a {
    border: 0;
}

.MenuPollos {
    grid-column: 4/4;
}

ul.menuPollos li a:hover {
    font-weight: bold;
    text-decoration: none;
}

/*COKIES*/

.ax-cookies {
    background: rgba(16, 13, 12, 0.64);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 999;
    box-sizing: border-box;
    text-align: center;
    display: none;
}

.ax-cookies p {
    font-size: 16px;
    padding: 27px 40px;
    color: #fff;
}

.ax-cookies a#ocultar {
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    text-decoration: none;
    background: rgb(28, 81, 136);
    background: -moz-linear-gradient(top, rgba(28, 81, 136, 1) 0%, rgba(0, 21, 136, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(28, 81, 136, 1) 0%, rgba(0, 21, 136, 1) 100%);
    background: linear-gradient(to bottom, rgba(28, 81, 136, 1) 0%, rgba(0, 21, 136, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#1c5188', endColorstr='#001588', GradientType=0);
    transition: .5s all ease;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2) inset;
    cursor: pointer;
}

.ax-cookies a#ocultar:hover {
    box-shadow: 0px 60px 0px rgba(0, 0, 0, 0.2) inset;
}

.ax-cookies p a {
    color: #fff;
    padding-left: 5px;
    font-weight: bold;
}

.ax-cookies p a:hover {
    color: #25a6dd;
}

/*Fin Cookies*/

.card-body.content_info {
    padding: 0;
}

.text_intro {
    margin-bottom: 20px;
    margin-top: 40px;
}

.text_intro p,
.text_header{
    color: #25475C;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 10px 0;
}

.text_header {
    display: inline-block;
    margin: 0 0 25px 0;
}

.infographic_image img {
    height: auto !important;
    max-width: 100%;
}

.infographic_image,
.video_source,
.audio_source {
    margin: 0 0 60px 0;
}

.video_source iframe {
    height: 500px;
    width: 100%;
}

@media only screen and (max-width:980px){
    .cabezote {
        grid-template-columns: 1fr 1% 1fr;
    }
}

@media only screen and (max-width:768px){
    .cabezote {
        grid-template-columns: 1fr 1% 1fr;
    }

    .cabezote {
        display: block;
    }
    
    img.logoPollos {
        margin: auto;
        width: 150px;
        display: block;
    }
    
    .MenuPollos {
        position: fixed;
        bottom: 0;
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        max-width: min(95%,420px);
        z-index: 3;
    }
    
    ul.menuPollos {
        border-radius: 7px;
        display: flex;
        justify-content: space-around;
        padding: 10px 0 10px 0;
        text-align: center;
    }
    
    ul.menuPollos li a {
        display: block;
        font-size: 12px;
        line-height: 13px;
        padding: 0 10px;
    }
}

