@font-face {
    font-family: 'Basic'; 
    src: url('../fonts/basic.ttf'); 
}
*{
    outline: 0!important;
}
body {
    font-family: 'Work Sans', sans-serif;
    overflow-x:hidden!important;
}
ol, ul {
    list-style: none;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Heebo', sans-serif;
    color: #000;
}
h2{
    font-size: 25px;
    font-weight: 300;
    line-height: 1.4;
}
a, a:hover, a:focus, a:active{
    outline: none;
    text-decoration: none;
}
.ancla{
    padding-top: 100px!important;
}
.hamburger--collapse .hamburger-inner{
    background: #fff;
}
.hamburger--collapse .hamburger-inner:before{
    background: #fff;
}
.hamburger--collapse .hamburger-inner:after{
    background: #fff;
}
.hamburger:hover{
    opacity: 1!important;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{
    background-color: transparent!important;
}
#Home .caption{
    letter-spacing: 10px;
    margin: 0;
}
#Home .slider{
    width: 100%;
    min-height: 700px;
}
#Home #a .caja{
    position: relative;
    z-index: 0;
}
#Home #a{
    background-image: url('../img/slider/4.jpg');
    background-position: bottom center;
    background-size: cover;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#Home #a .caption{
    position: absolute;
    right: 0;
    top: 40%;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home .caja #b{
    position: relative;
}
#Home #b{
    background-image: url('../img/slider/1.jpg');
    background-position: bottom center;
    background-size: cover;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
}
#Home #b .caption{
    position: absolute;
    right:0;
    bottom:10%;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home #c{
    background-image: url('../img/slider/5.jpg');
    background-position: top center;
    background-size: cover;
    height: 350px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
}
#Home #c .caption{
    position: absolute;
    top:0;
    left:10%;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home .caja #d{
    position: absolute;
}
#Home #d{
    background-image: url('../img/slider/6.jpg');
    background-position: bottom center;
    background-size: cover;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
}
#Home #d .caption{
    position: absolute;
    left:10%;
    bottom:0;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home .caja #e{
    position: absolute;
}
#Home #e{
    background-image: url('../img/slider/2.jpg');
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 6;
    width: 50%;
    height: 700px;
}
#Home #e .caption{
    position: absolute;
    top:40%;
    right:0;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home .caja #f{
    position: absolute;
}
#Home #f{
    background-image: url('../img/slider/3.jpg');
    background-position: bottom center;
    background-size: cover;
    position: absolute;
    left: 0;
    z-index: 7;
    width: 50%;
    height: 350px;
}
#Home #f .caption{
    position: absolute;
    right: 0;
    top: 0;
    color:#fff;
    font-family: 'Basic', sans-serif;
    font-size: 120px;
}
#Home .caja #g{
    position: absolute;
}
#Home #g{
    background-image: url('../img/slider/7.jpg');
    background-position: bottom center;
    background-size: cover;
    position: absolute;
    top:0;
    left: 0;    
    z-index: 8;
    width: 100%;
    height: 700px;
}
.active a{
    font-weight: 700!important;
}
.center{
    text-align: center;
}
.titulo-flotante{
    font-size: 120px;
    font-family: 'Basic', sans-serif;
    font-weight: 100;
    background: -webkit-linear-gradient(#f0c82b , #c69f2b );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn{
    border: none;
    border-radius: 0px;
    background-color: rgba(255,255,255,.5);
    padding:10px 0px;
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
}
.btn:hover{
    opacity: .7;
    background-color: #fff;
    color:#65c6bc;
    border:none;
    transition:.2s ease-in-out;
}
p{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}
strong{
    font-weight: 500;
}
section{
    padding:20px 0px;
}
/*ANIMACIONES HVR*/
.animatedd {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: .3s;
  -webkit-animation-delay: .3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.bouncee {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 5s, 8s;
  animation-duration: 5s, 1.5s;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}


/*MENU*/
.navbar{
    transition: .2s ease-in-out;
}
#menu{
    background-color: rgba(35, 31, 32, 0.8)!important;
    border:none;
}
#menu ul li a{
    color:#fff;
    font-weight: 200;
    padding: 30px;
    transition: .2s ease-in-out;
}
#menu ul li:hover{
    text-decoration: underline;
}
.navbar-brand{
    height: auto;
}
.navbar-brand>img{
    max-width: 70%;
}
.navbar-nav{
    margin-top: 10px;
}
/*ESPACIO MARQUEZ*/
#espacio-marquez{
    position: relative;
}
#espacio-marquez p{
    margin:20px;
    margin-bottom: 0;
    text-align: center;
}
#espacio-marquez .items{
    margin:40px auto;
}
#espacio-marquez .item span{
    font-weight: 700;
    font-size: 14px;
    color:#231f20;
    display: block;
}
#espacio-marquez .item img{
    margin:0 auto;
    width: 12%;
}
/*SEGUNDA*/
#segunda{
    background-image: url('../img/segunda-cover.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}
/*SOCIALES*/
#sociales{
    margin:100px auto;
    position: relative;
}
#sociales .titulo-flotante{
    font-size: 120px;
    margin: 10px;
    float: right;
}
#sociales img{
    float: right;
}
#sociales .bloque{
    padding:0px 40px;
    max-width: 50%;
    margin:0 auto;
}
#sociales .bloque p{
    line-height: 2.1;
}
/*CUARTA*/
#cuarta{
    height: 400px;
    position: relative;
}
#cuarta .bloque{
    position: absolute;
    right: 0;
    top: 12%;
    width: 30%;
    padding: 40px;
    color:#fff;
    background: rgba(240,200,43,1);
    background: -moz-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(240,200,43,1)), color-stop(100%, rgba(198,159,43,0.6)));
    background: -webkit-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -o-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -ms-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0c82b', endColorstr='#c69f2b', GradientType=1 );
}
#cuarta .bloque img{
    float: left;
    filter: brightness(0) invert(1);
}
#cuarta .bloque h2{
    color:#fff;
    margin-top: 0px;
    font-weight: 100;
    letter-spacing: 1px;
}
#cuarta .icono{
    padding:0;
}
/*CORPORATIVOS*/
#corporativos{
    margin:100px auto;
    position: relative;
}
#corporativos .bloque{
    padding:0px 40px;
    max-width: 40%;
    margin:0 auto;
    position: relative;
}
#corporativos .bloque p{
    line-height: 2.1;
}
#corporativos .titulo-flotante{
    position: absolute;
    font-size: 150px;
    left: 0;
    z-index: 9;
}
#corporativos img{
    float: left;
}

/*UN LUGAR*/
#sexta{
    height: 400px;
    position: relative;
    margin-bottom: 100px;
}
#sexta .bloque{
    position: absolute;
    right: 0;
    top:10%;
    width: 30%;
    padding: 40px;
    color:#fff;
    background: rgba(240,200,43,1);
    background: -moz-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(240,200,43,1)), color-stop(100%, rgba(198,159,43,0.6)));
    background: -webkit-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -o-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -ms-linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: linear-gradient(45deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0c82b', endColorstr='#c69f2b', GradientType=1 );
}
#sexta .bloque img{
    float: left;
    filter: brightness(0) invert(1);
}
#sexta .bloque h2{
    color:#fff;
    margin-top: 0px;
    font-weight: 100;
    letter-spacing: 1px;
}
#sexta .icono{
    padding:0;
}
/*KIRIA*/
#kiria img{
    margin:0 auto;
}
#kiria .contenedor{
    /*margin-right: 0px;*/
}
#kiria .flotante-derecha{
    margin: 0 auto;
}
#kiria .tres .izquierda img{
    max-width: 70%;
    float: right;
    margin: 0;
}
#kiria .uno{
    margin-top: 50px;
}
#kiria .uno h1{
    font-family: 'Basic', sans-serif;
    font-size: 140px;
    font-weight: 100;
    color: #231f20;
    margin: 0 auto;
}
#kiria .col-sm-6{
    padding-left: 0;
    padding-right: 0;
}
#kiria .col-sm-5{
    padding-left: 0;
    padding-right: 0;
}
#kiria .col-sm-7{
    padding-left: 0;
    padding-right: 0;
}
#kiria .dos .flotante-izquierda{
    float: left;
    font-size: 240px;
    padding-left: 20px;
    margin-bottom: -50px;
}
#kiria .dos .img-dos-tres{
    width: 80%;
    margin:0px;
    z-index: 9;
}
#kiria .tres .flotante-izquierda{
    float: right;
    font-size: 150px;
    margin: 0;
}
/*CLIENTES*/
#clientes{
    margin:50px auto;
}
#clientes #imagenes{
    position: relative;
    height: 400px;
}
#clientes #imagenes img{
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#clientes #imagenes .imagen1{
    z-index: 3;
     -webkit-filter: blur(.5px); /* Safari 6.0 - 9.0 */
    filter: blur(.5px);
}
#clientes #imagenes .imagen2{
    z-index: 2;
     -webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
    filter: blur(1px);
}
#clientes #imagenes .imagen3{
    z-index: 1;
     -webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
    filter: blur(1px);
}
/*CONTACTO*/
#contacto{
    height: 600px;
    position: relative;
    color:#fff;
}
#contacto #video{
    position: absolute;
    top:0;
    right: 0;
    min-width: 100%;
    z-index: -1;
    overflow-x: hidden;
}
#contacto:before{
    content: '';
    height: 100%;
    position: absolute;
    background: rgba(240,200,43,1);
    background: -moz-linear-gradient(225deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(240,200,43,1)), color-stop(100%, rgba(198,159,43,0.6)));
    background: -webkit-linear-gradient(225deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -o-linear-gradient(225deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: -ms-linear-gradient(225deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    background: linear-gradient(225deg, rgba(240,200,43,1) 0%, rgba(198,159,43,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0c82b', endColorstr='#c69f2b', GradientType=1 );
    top: 0;
    bottom: 7%;
    width: 100%;
}
#contacto h2{
    color:#fff;
    font-size: 40px;
}
#contacto .formulario{
    position: relative;
    z-index: 9;
    margin: 50px auto;
}
#contacto .formulario p{
    margin:20px auto;
    font-size: 16px;
    font-weight: 100;
}
#contacto input{
    background-color: transparent;
    border-radius: 0px;
    border: 1px solid #fff!important;
    margin: 10px 0px;
    color: #fff;
}
#contacto .form-group .col-xs-6{
    padding: 0;
}
#contacto .form-group .col-xs-6 input{
    margin-top: 0px;
}
#contacto .form-group .col-xs-6:nth-child(1){
    padding-right: 5px;
}
#contacto .form-group .col-xs-6:nth-child(2){
    padding-left: 5px;
}
#contacto .btn{
    margin: 0 auto;
    width: 100%;
}
#contacto ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
    font-weight: 100;   
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   font-weight: 100;    
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   font-weight: 100;    
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
   font-weight: 100;    
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
   font-weight: 100;    
}

::placeholder { /* Most modern browsers support this now. */
   color:    #fff;
   font-weight: 100;    
}
/*DECIMA*/
#decima{
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}
#once{
    margin:50px auto;
}
#once div{
    text-align: center;
}
#once a{
    color:#000;
}
#once a:hover{
    color:#000;
}
#once img{
    margin: 0 auto!important;
    height: 50px;
}
#doce{
    height: 450px;
    position: relative;
}
#footer{
    background: #3a3a3a;
    padding: 30px 0px;
    position: relative;
}
#footer a{
    color:#eac62f;
    margin: 0px 15px;
    font-size: 14px;
    font-weight: 200;
}
#footer a:hover{
    opacity: .8;
    transition: .2s ease-in-out;
}
#footer ul li{
    float: left;
}
#footer ul li a{
    display: inline-grid;
}
#footer .logo-zeta a{
    margin: 0;
}
#footer .logo-zeta{
    position: absolute;
    right: 0;
    bottom:0;
}
@media  only screen  and (max-width: 480px){
    body{
        overflow-x: hidden!important;
    }
    p{
        line-height: 1.5;
        text-align: justify;
    }
    #Home .slider{
        min-height: 500px;
    }
    #espacio-marquez p{
        text-align: center!important;
    }
    .visible-fb-mobile{
        margin-top: 40px;
    }
    h2{
        font-size: 18px;
    }
    .navbar-brand>img{
        max-width: 70%!important;
    }
    .hamburger{
        padding: 40px 20px!important;
    }
    .hamburger-inner{
        height: 2px!important;
    }
    .hamburger-inner:before{
        height: 2px!important;
    }
    .hamburger-inner:after{
        height: 2px!important;
    }
    .navbar-default .navbar-toggle{
        background-color: transparent;
        border-radius: 0px;
        border: none;
    }
    .navbar-nav{
        text-align: center;
    }
    .navbar-nav li a img{
        margin:0 auto;
    }
    .navbar-default .navbar-collapse{
        border: none;
    }
    .navbar-default .navbar-toggle:hover{
        background-color: transparent;
    }
    .navbar-toggle .icon-bar+.icon-bar{
        margin-top: 6px;
    }
    .navbar-default .navbar-toggle .icon-bar{
        background-color: #fff;
    }
    #menu{
        background-color: rgba(35, 31, 32, 0.9)!important;
    }
    #menu ul li a{
        padding: 10px!important;
    }
    .titulo-flotante{
        font-size: 40px!important;
    }
    #espacio-marquez .items{
        margin: 0 auto;
    }
    #espacio-marquez .item{
        margin:20px auto;
    }
    #segunda{
        background-position: center;
        height: 210px;
    }
    #sociales{
        margin: 0px auto;
    }
    #sociales .bloque{
        max-width: 100%;
        font-size: 12px;
    }
    #sociales .bloque p{
        margin-bottom: 50px;
        line-height: 1.8;
    }
    #sociales br{
        display: none;
    }
    #cuarta{
        background-size: cover;
        background-repeat: no-repeat;
        height: 400px;
    }
    #cuarta .bloque{
        width:80%;
        max-height: 100%;
        top:15%;
        padding: 20px;
    }
    #cuarta .bloque h2{
        font-size: 20px;
    }
    #corporativos{
        margin: 0 auto;
    }
    #corporativos .bloque{
        max-width: 100%;
    }
    #corporativos br{
        display: none;
    }
    #corporativos .bloque p{
        line-height: 1.8;
    }
    #sexta{
        background-size: cover;
        background-repeat: no-repeat;
        margin-bottom: 50px;
        height: 400px;
    }
    #sexta .bloque{
        width: 80%;
        max-height: 100%;
        top:25%;
        padding: 20px;
    }
    #sexta .bloque h2{
        font-size: 20px;
    }
    #kiria{
        margin-top: 50px;
        padding:0px 20px;
        max-width: 100%;
    }
    #kiria h1{
        font-size: 80px;
    }
    #kiria #kiria-mobile-img-90{
        max-width: 100%;
        margin-right: 0px;
    }
    #kiria .uno{
        margin-top: 10px;
    }
    #kiria .col-sm-5{
        padding-left: 0px;
    }
    #kiria .uno h1{
        font-size: 50px;
    }
    #kiria .contenedor .bajada{
        margin: 10px;
    }
    #clientes h2{
        font-size: 18px;
    }
    #clientes{
        margin:0 auto;
    }
    #clientes .carousel-control{
        display: none;
    }
    #contacto h2{
        font-size: 30px;
        text-align:center;
    }
    #contacto .formulario{
        margin: 20px;
    }
    #contacto #video{
        min-height: 100%;
        overflow-x: hidden;
    }
    #once{
        text-align: center;
        margin: 20px auto;
    }
    #once .col-xs-12{
        padding:20px;
    }
    #once ul{
        padding: 0;
    }
    #once ul li{
        display: grid;
        margin-bottom: 30px;
    }
    #once ul li p{
        margin-top: 10px;
        margin-bottom: 0px;
    }
    #once ul li img{
        max-width: 15%;
        margin:0 auto!important;
        margin-bottom: 10px;
    }
    #doce{
        height: 400px;
    }
    #footer{
        padding: 20px 0px 50px 0px;
    }
    #footer a{
        margin-bottom: 0px;
    }
    #footer .links .col-xs-12{
        margin: 5px auto;
    }
    #footer .col-sm-2{
        text-align: center;
        padding: 0;
    }
    #footer ul{
        padding-left: 0;
    }
    #footer ul li{
        float: none;
    }
    #footer ul li:nth-child(4){
        float: left;
    }
    #footer ul li:nth-child(5){
        float: left;
    }
    #footer ul li a{
        font-size: 14px;
        margin:3px auto;
    }
    
    #Home #a .caption{
        font-size: 50px;
    }
    #Home #b .caption{
        font-size: 50px;
    }
    #Home #c .caption{
        font-size: 50px;
    }
    #Home #d .caption{
        font-size: 50px;
    }
    #Home #e .caption{
        top: 80%;
        font-size: 30px;
    }
    #Home #f .caption{
        font-size: 50px;
    }



    #Home .caja #a{
        height: 500px;
    }
    #Home .caja #b{
        height: 250px;
    }
    #Home .caja #c{
        height: 250px;
    }
    #Home .caja #d{
        height: 250px;
    }
    #Home .caja #e{
        max-height: 250px;
    }
    #Home .caja #f{
        position: relative;
        background-position: center;
        max-height: 250px;
    }
    #Home .caja #g{
        height: 500px;
        display: none;
    }
  



    #kiria .dos .img-dos-tres{
        margin-top: 0px;
        margin-left: 0px;
        max-width: 100%;
    }
    #kiria .titulo-flotante{
        margin-bottom: 0px;
    }
    #kiria .dos .flotante-izquierda{
        margin:20px 0px 0px 30px;
    }
    #kiria .tres .izquierda img{
        max-width: 100%;
    }
    #corporativos .titulo-flotante{
        position: relative;
        text-align: center;
        font-size: 60px!important;
        margin: 0;
    }
    .hamburger{
        padding: 20px;
    }
    .hamburger-inner{
        height: 3px;
    }
    
    #clientes #imagenes{
        height: 150px;
    }
    #clientes #imagenes .imagen1{
        z-index: 3;
        -webkit-filter: blur(0px); /* Safari 6.0 - 9.0 */
        filter: blur(0px);
    }
    #clientes #imagenes .imagen2{
        z-index: 2;
        -webkit-filter: blur(0px); /* Safari 6.0 - 9.0 */
        filter: blur(0px);
    }
    #clientes #imagenes .imagen3{
        z-index: 1;
        -webkit-filter: blur(0px); /* Safari 6.0 - 9.0 */
        filter: blur(0px);
    }
}
