body {
    background: #ffffff;
    /*font-size: 16px;*/
    /*font-family: 'Barlow', sans-serif;
    /*font-family: 'Barlow Condensed', sans-serif;
    font-family: 'Titillium Web', sans-serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.centrar {
    max-width: 1600px;
    margin: auto;
}

/* --------- BARRA HORIZONTAL ----------- */
.logoSmall {
    color: #515151;
    margin-top: 12px;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 200;
    text-align: right;
    
}

/*menu movil*/
.menuMovil a {
    display: block;
    height: auto;
    text-decoration: none;
    padding: 20px 0;
    /*background: green;
    padding-bottom: 20px;
    font-family: 'Barlow', sans-serif;*/
    /*font-family: 'Titillium Web', sans-serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #A2A2A2;
}

.btnCloseMenu {
    margin-top: 15px;
    padding: 0 10px;
}

.btnMenuMovil {
    margin-bottom: 7px;
}

/*logo*/
.logo {
    font-family: 'Fjalla One', sans-serif;
    padding: 20px 0;
    text-align: right;
    margin: 0;
    margin-left: 5px;
}

.logo a {
    color: white;
    display: block;
    font-family: 'Fjalla One', sans-serif;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: none;
    color: #FFC300;
}

header {
    width: 100%;
    /*background: rgba(0,0,0,0.6);*/
    background: rgba(0,0,0,1);
    z-index: 2;
    position: inherit;
    height: 0;
    top: 0;
    display: block;
    transition: top 2.5s ease;
}

/* --- MEDIAQUERIES ---  */
/* Dispositivo md */
@media screen and (max-width: 766px) {
    header {
        width: 100%;
        z-index: 2;
        background: black;
        /*background: rgba(0,0,0,0.2);*/
        
        position: inherit;/*debe ser fixed hasta que se haga el onload, antes debe ser inherit*/
        top: 0;
        display: block;
        transition: top 2.5s ease;
        height: 0;
    }
}

.topImagenPortada {
    margin-top: 80px !important;
}

header .logo {
    display: inline-block;
}

/* menu */
.menu-horizontal {
    /*color: #A2A2A2;*/
    color: #7A7A7A;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.menu-horizontal a {
    /*color: #A2A2A2;*/
    color: white;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.menu-horizontal a:hover {
    text-decoration: none;
    color: #FFC300;
    font-weight: 400;
}

.iconos {
    margin: 15px;
}

.btnIG:hover {
    fill: #FFC300;
}

.btnMenuMovil:hover {
    fill: #FFC300;
}

/* MAIN */

.imagen-portada {
    margin-top: 0px;
    margin-left: 0px;
    padding: 0px;
}

.titulo-seccion {
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
    color: black;
}

.texto-contenido {
    text-align: justify;
    margin-bottom: 25px;
    color: black;
}

.divLoader {
    min-width:100%;
    min-height:100%;
    margin:0 auto;
    padding: 0;
    z-index: 4;
    position: fixed;
    /*background: rgba(255, 255, 255, 0.67);*/
    background: rgba(255, 255, 255, 1);
}


/*mensaje loader*/
.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1.6s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

