body {
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
}

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

.inactivar {
    pointer-events: none;
}

/* --------- BARRA HORIZONTAL movil ----------- */
.barra-horizontal {
    color: #000000;
    min-width: 100%;
    height: 60px;
    padding-left: 25px;
    padding-right: 25px;
    /*background: #F9F9F9;*/
    background: #F9F9F9;
}

.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;
    /*color: #515151;*/
    margin-left: 5px;
}

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

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

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;
    position: relative;
}

.texto-construccion-366 {
    font-weight: 550;
    background-color: black;
    text-decoration: none;
    color: #FFC300;
    font-family: 'Source Sans Pro', sans-serif;
}

.galeria img {
    max-width: 100%;
    height: auto;
}

.galeria {
    max-width: 1900px;
    margin: auto;
}

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: #FFC300;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

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

.iconos {
    margin: 15px;
}

.btnIG:hover {
    fill: #E7E7D9;
}

.btnMenuMovil:hover {
    fill: #E7E7D9;
}

/* MAIN */

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

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

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

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

.espacio-texto-imagen {
    margin-bottom: 60px;
}

/* --------- DIV MENSAJE IMAGENES -----------  */
.contenedor-imagen {
    position: relative;
    /*width: 50%;*/
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
}

.contenedor-imagen img {
    opacity: 0;
    transform: scale(0.9);
    transition: .7s ease-in-out all;
}

.contenedor-imagen img.izquierda {
    transform: translateX(-15px);
}

.contenedor-imagen img.derecha {
    transform: translateX(15px);
}

.contenedor-imagen img.visible {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.image {
  opacity: 1;
  display: block;
  /*width: 100%;*/
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.contenedor-imagen:hover .image {
  opacity: 0.6;
  animation: zoom-in-zoom-out 1.8s ease;
  animation-fill-mode: forwards;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.008, 1.004);
  }
}

/* --------- VENTANA MODAL -----------  */
.modal.custom .modal-dialog {
    min-width:100%;
    min-height:100%;
    margin:0 auto;
    background: rgba(255, 255, 255, 1);
}

.modal-content {
    border: none;
    background: rgba(255, 255, 255, 0.01);
}

.iconoArrow {
    text-decoration: none;
    margin-left: 15px;
    margin-right: 15px;
}

.divImgWidth {
    width: 100%;
    /*background: green;*/
}

.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);
}

.btnClose {
    margin-bottom: 5px;
}


/*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; }
}
