/* BASE */
.noPadding {
    padding: 0;;
}
a {
    cursor: pointer;
}
/* Fonts */
.fonts {
    /* century gothic */
    font-family: 'Century Gothic';
    font-weight: normal; /* bold or normal */
    font-style: normal;
    /* futura */
    font-family: 'Futura Std';
    font-weight: bold; /* bold or normal */
    font-style: normal;
}

/* Colors */
.colors {
    /* Azul */
    color: #2797cc;
    /* Gris */
    color: #585f60;
}

/* Styles */
/* Styles */
/* Styles */

.esquema {
    display: block;
    margin-top: 30px;
  width: 75%;
}

body {
    font-family: 'Century Gothic';
    font-weight: normal;
    font-style: normal;
    color: #585f60;
}

h2 {
    font-family: 'Century Gothic';
    font-weight: bold;
    font-style: normal;
    color: #2797cc;
    font-size: 2.4em;
    position: relative;
    z-index: 6;
}

/* header */
.header {
    padding: 0em;
    height: 5em;
    position: fixed;
    background: #fff;
    z-index: 7;
}
.header .logoDiv {
    padding-top: 1em;
}
.header .menuDiv {
    padding-top: 1.7em;
    padding-right: 1.5em;
}
.header .imgLogo {
    height: 4em;
    position: relative;
    z-index: 9;
}
.header .imgMenu {
    height: 1.5em;
}
.header::after {
    content: " ";
    width: 92%;
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 0.102em;
    background-color: #abb3b2;
    z-index: 8;
}
.header a {
    opacity: 1;
    transition: opacity 0.3s;
}
.header a:hover {
    opacity: 0.8;
}

/* hero nav */
.nav {
    background-color: rgba(255, 255, 255, 0.6);
    text-align: right;
    height: 2em;
    padding: 0.18em 1em;
}

.nav ul {
    list-style: none;
    padding-left: 0;
    display: inline-block;
}
.nav li {
    padding-left: 1em;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
}
.nav li a {
    color: #585f60;
}

/* hero */
.hero {
    background: url(../img/bg.jpg) no-repeat bottom center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 5em;
    min-height: 30em;
    min-height: 80vh;
    text-transform: uppercase;
    -webkit-animation: animateBackground ease-in-out 8s;
}
@-webkit-keyframes animateBackground {
    0% { background-size: 150% auto; }
    100% { background-size: 100% auto; }
  }

.hero .leyenda {
    padding-top: 12vh;
}
.hero .leyenda p {
    font-size: 1.2em;
}
.hero .leyenda h1, .hero .leyenda span {
    font-size: 3.5em;
}
.hero .iconVideoDiv {
    padding: 2em 0;
    text-align: left;
}
.hero .iconVideo {
    width: 4em;
    padding-bottom: 0.7em;
}
.hero .iconVideoLink {
    opacity: 1;
    text-decoration: none;
    color: #585f60;
    transition: opacity 0.3s, color 0.3s;
}
.hero .iconVideoLink:hover {
    opacity: 0.5;
    color: #abb3b2;
}

/* Button overrides */
/* Button overrides */
/* Button overrides */
button {
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    background: none;
    color: #585f60;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: opacity 250ms ease-in-out, 
                transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button:hover,
button:focus {
    background: #none;
    opacity: 0.7;
}

button:focus {
    outline: 1px solid #fff;
    outline-offset: -4px;
}

button:active {
    transform: scale(0.99);
}

/* section02 bg */
.section02 {
    background: url(../img/bg.jpg) no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.section {
    padding: 7em 0;
}
.section p {
    font-size: 1.3em;
    position: relative;
    z-index: 6;
}

/* que hacemos */
.queHacemos h2 {
    text-align: right;
}

/* contacto */
.contacto input, .contacto textarea {
    width: 100%;
    height: 2.8em;
    background: #fff;
    border: 0;
    margin-bottom: 1em;
    padding: 0.5em 1em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -o-border-radius: 1em;
    border-radius: 1em;
}
textarea {
    resize: none;
}
input:focus, textarea:focus {
    outline: none;
    -webkit-box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
    -moz-box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
    box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
  }
.contacto label {
    font-weight: normal;
    font-size: 1.3em;
}
.dobleColumna {
    padding-right: 0.5em;
}
.dobleColumna2 {
    padding-left: 0.5em;
}
.btn, .btn:visited {
    background-color: #2797cc;
    padding: 0.7em 4em;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -o-border-radius: 1em;
    border-radius: 1em;
    transition: background-color 0.3s;
}
.btn:hover, .btn:focus {
    background-color: #056cc1;
    color: #fff;
}
.btn:focus {
    outline: none;
    -webkit-box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
    -moz-box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
    box-shadow: 0px 0px 13px -4px rgba(0,153,255,1);
}
/* Footer */
.footer {
    padding: 3em 2em;
}
.rightBorder {
    border-right: 1px solid #2797cc;
}
.footerRight {
    text-align: right;
}
.footer a {
    text-decoration: none;
    color: #585f60;
}
.footer a:focus, .footer a:hover {
    text-decoration: underline;
    color: #585f60;
}
.footerLogo img {
    padding-bottom: 2em;
    width: 15em;
}

/* diagonal */
.diagonalDiv {
    position: relative;
}
.imgDiagonal {
    /* display: none; */
    position: absolute;
    left: 0;
    top: 0;
    height: 90%;
    width: 50%;
    z-index: 4;
}



/* Media queries */
/* Media queries */
/* Media queries */
/* Media queries */
/* Media queries */

/* Smartphones */
@media all and (max-width: 480px) {
    .nav {
        padding: 0.2em 0.5em 0 0;
    }
    .nav li {
        font-size: 0.6em;
    }
    .hero {
        min-height: auto;
    }
    .leyenda span {
        font-size: 1.9em !important;
    }
    .dobleColumna {
        padding-right: 0;
    }
    .dobleColumna2 {
        padding-left: 0;
    }
    .btn {
        width: 100%;
        margin-top: 0.7em;
    }
    .rightBorder {
        border: none;
    }
    .footerRight {
        text-align: left;
        padding: 0;
    }

}

/* tablet */
@media only screen and (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .rightBorder {
        border: none;
    }
    .footerRight {
        text-align: left;
    }
    .imgDiagonal {
        display: none;
    }
    .queHacemos h2 {
        text-align: left;
    }
}

/* Only tablet */
@media all and (min-width:768px) and (max-width: 992px) {

}








/* Lightbox video */
/* Lightbox video */
/* Lightbox video */
/* Lightbox video */

.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: scroll;
    position: fixed;
    display: none;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
  }
  .lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 7% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 9999;
  }
  @media screen and (max-width: 768px) {
    .lightbox-container {
      margin-top: 10%;
    }
  }
  @media screen and (max-width: 414px) {
    .lightbox-container {
      margin-top: 13%;
    }
  }
  .lightbox-content {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  }
  .lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -22px;
    right: 3%;
  }
  .video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    height: 0;
  }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
  }
