/* elemenst gral */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


@font-face {
    font-family: "Abril_Text_Light";
    src: url('../fonts/Abril_Text_Light.otf');
}

@font-face {
    font-family: "Abril_Text_LightItalic";
    src: url('../fonts/Abril_Text_LightItalic.otf');
}

@font-face {
    font-family: "Abril_Text_SemiBoldItalic";
    src: url('../fonts/Abril_Text_SemiBoldItalic.otf');
}

@font-face {
    font-family: "Abril_Text_ExtraBold";
    src: url('../fonts/Abril_Text_ExtraBold.otf');
}

@font-face {
    font-family: "FFDINforPUMA-Light";
    src: url('../fonts/FFDINforPUMA-Light.ttf');
}

@font-face {
    font-family: "FFDINforPUMA-Regular";
    src: url('../fonts/FFDINforPUMA-Regular.ttf');
}

@font-face {
    font-family: "FFDINforPUMA-Bold";
    src: url('../fonts/FFDINforPUMA-Bold.ttf');
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    font-family: "Abril_Text_Light";
    font-style: normal;
}

.fondoNegro {
    background-color: #000000;
    width: 100%;
}

section {
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding-bottom: 0px;
    }
}

.logoFlotante {
    position: fixed;
    top: 24px;
    width: 156px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: var(--static-shadow);
    transition: all 0.1s cubic-bezier(.25, .8, .25, 1);
    padding: 12px 12px 6px 12px;
    overflow: hidden;
    background-color: #fff;
    z-index: 99999999;
}

.logoFlotante img {
    width: 100%;
    height: auto;
    max-height: 24px;
}

@media (max-width: 768px) {
    .logoFlotante {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        padding: 8px;
        box-shadow: var(--static-shadow);
        transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    }
}

.contenedor {
    position: relative;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.contenedorAncho {
    position: relative;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .contenedor,
    .contenedorAncho {
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
}

.contenedorRight {
    position: relative;
    width: 85%;
    margin-left: 15%;
}

@media (max-width: 768px) {
    .contenedorRight {
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
}

h1 {
    font-family: "Abril_Text_Light";
    font-size: 54px;
    color: #fff;
    line-height: 1;
}

h2 {
    font-family: "Abril_Text_LightItalic";
    color: #0054a5;
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-family: "Abril_Text_LightItalic";
    color: #0054a5;
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
}

h4 {
    font-family: "FFDINforPUMA-Light";
    color: #f0532a;
    font-size: 30px;
    line-height: 1.1;
    margin: 0;
}

h5 {
    font-family: "Abril_Text_SemiBoldItalic";
    color: #0054a5;
    font-size: 22px;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }
}

p {
    font-family: "Abril_Text_Light";
    color: #000;
    font-size: 18px;
    line-height: 1.5;
}

b {
    font-family: "Abril_Text_ExtraBold";
    color: #f0532a;
}

a {
    font-family: "FFDINforPUMA-Bold";
    color: #fff;
    text-transform: uppercase;
}

img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

mark {
    background-color: #829af4 !important;
    color: #fff !important;
}

.desk {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .desk {
        display: none !important;
    }
}

.flexBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.marginBottom {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .flexBox {
        flex-flow: column;
        margin-left: 0px !important;
    }

    .marginNegativoMobile {
        margin-top: -20px;
    }

    .marginBottom {
        margin-bottom: 0;
    }
}

.paddingTop {
    padding-top: 40px;
}

.paddingBottom {
    padding-bottom: 40px;
}

.paddingLadosAncho {
    padding: 0 100px;
}

.paddingLados {
    padding: 0 240px;
}

.paddingArribaAbajo {
    padding: 30px 0;
}

.paddingArribaAbajoLados {
    padding: 30px 100px;
}

@media (max-width: 768px) {
    .paddingLados {
        padding: 0;
    }

    .paddingArribaAbajo {
        padding: 0;
    }

    .paddingArribaAbajoLados {
        padding: 0;
    }

    .paddingLadosAncho {
        padding: 0;
    }
}

header {
    position: relative;
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0 0 100px;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }
}

.img-hero {
    display: flex;
    justify-content: center;
}

.columnas {
    display: flex;
    justify-content: space-between;
}

.columna70 {
    width: calc(70% - 20px);
}

.columna66 {
    width: calc(66% - 20px);
}

.columna60 {
    width: calc(60% - 20px);
}

.columna50 {
    width: calc(50% - 20px);
}

.columna40 {
    width: calc(40% - 20px);
}

.columna33 {
    width: calc(33% - 20px);
}

.columna30 {
    width: calc(30% - 20px);
}

.columna25 {
    width: calc(25% - 20px);
}

.marginBottom50 {
    margin-bottom: 50px !important;
}

@media (max-width: 768px) {
    .columnas {
        flex-flow: column;
        z-index: 9999999;
    }

    .columna70,
    .columna60,
    .columna66,
    .columna50,
    .columna40,
    .columna33,
    .columna30,
    .columna25 {
        width: 100%;
    }

    .marginBottomMobile {
        margin-bottom: 20px;
    }

    .marginMenos20Mobile {
        margin-top: -20px;
    }

    .marginBottom50 {
        margin-bottom: 0;
    }

    img.img-3 {
        margin-bottom: 50px;
    }
}

.fondoimgfull {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.contenedorparrafoimgfull {
    position: absolute;
    max-width: 1024px;
}

.contenedorparrafoimgfull p,
.contenedorparrafoimgfull span {
    color: #000;
}

.contenedorparrafoimgfull mask {
    background-color: #fff;
    text-transform: uppercase;
    font-size: 30px;
}

.contenedorVideo {
    position: absolute;
    max-width: 1024px;
    width: 100%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .fondoimgfull {
        flex-flow: column;
    }

    .contenedorparrafoimgfull {
        position: relative;
        left: 0;
        width: 100%;
        padding: 0 20px;
        bottom: 0;
    }

    .contenedorparrafoimgfull mask {
        background-color: #fff;
        font-size: 22px;
    }

    .contenedorparrafoimgfull p,
    .contenedorparrafoimgfull span {
        color: #000;
    }
}

#section-1 {
    position: relative;
    padding: 100px 0 50px;
}

#section-1 b {
    font-family: "FFDINforPUMA-Bold";
}

@media (max-width: 768px) {
    #section-1 {
        position: relative;
        padding: 20px 0;
    }
}

#section-2 {
    position: relative;
    padding: 50px 0;
}

@media (max-width: 768px) {
    #section-2 {
        position: relative;
        padding: 20px 0 0;
    }
}

#section-3 {
    margin-top: -120px;
}

#section-3 p {
    position: relative;
    padding-left: 70px;
}

#section-3 p::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 330px;
    background-color: #f0532a;
    left: 50px;
    bottom: 0;
}

#section-3 img.img2 {
    padding-left: 100px;
    margin-top: 230px;
}

@media (max-width: 768px) {
    #section-3 {
        padding: 0;
        margin-top: auto;
    }

    #section-3 p {
        position: relative;
        padding-left: 20px;
    }

    #section-3 p::before {
        width: 2px;
        height: 100%;
        left: 0px;
    }

    #section-3 img.img2 {
        padding-left: 0;
        margin: 20px 0;
    }
}

#section-4 {
    padding: 50px 0;
    margin: 50px 0;
    background-image: url(../img/fondo-cuadricula.jpg);
    background-size: contain;
}

#section-4 img {
    margin-bottom: 30px;
}

#section-4 h5 {
    padding: 0 38px;
}

#section-4 h5.epigrafe {
    font-family: "FFDINforPUMA-Bold";
    color: #f0532a;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #section-4 {
        margin: 20px 0;
    }

    #section-4 img {
        margin-bottom: 20px;
    }
    
    #section-4 h5 {
        padding: 0;
    }

    #section-4 .columna33,
    #section-4 .columna25 {
        margin-bottom: 40px;
    }

    #section-4 .columna33:last-child,
    #section-4 .columna25:last-child {
        margin-bottom: 0;
    }
}

#section-5 {
    padding: 50px 0 0;
}

@media (max-width: 768px) {
    #section-5 {
        padding: 20px 0 0;
    }
}

#section-6 {
    overflow: hidden;
    padding: 0 0 50px;
}

#section-6 .contenedorAncho {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

#section-6 .parrafoSec6 {
    width: 355px;
    margin-left: 80px;
}

#section-6 .parrafoDestSec6 {
    position: relative;
    width: 615px;
}

#section-6 span {
    font-family: "Abril_Text_Light";
}

#section-6 .parrafoDestSec6::after {
    position: absolute;
    content: '';
    width: 200%;
    height: 30px;
    background-color: #f0532a;
    left: 0;
    bottom: -50px;
}

@media (max-width: 768px) {
    #section-6 {
        padding: 0 0 50px;
    }
    
    #section-6 .contenedorAncho {
        flex-flow: column;
    }

    #section-6 .parrafoSec6 {
        width: 100%;
        margin-left: auto;
    }
    
    #section-6 .parrafoDestSec6 {
        width: 100%;
    }

    #section-6 .parrafoDestSec6::after {
        width: 100%;
        height: 10px;
        bottom: -20px;
    }
}

#section-7 {
    padding: 50px 0 0;
}

#section-7 .columnas {
    align-items: center;
}

#section-7 p {
    padding: 0 50px;
}

@media (max-width: 768px) {
    #section-7 {
        padding: 20px 0 0;
    }

    #section-7 p {
        padding: 0;
    }
}

#section-8 {
    padding: 50px 0;
    margin: 50px 0;
    background-image: url(../img/fondo-cuadricula.jpg);
    background-size: contain;
}

#section-8 .contenedor{
    /* padding: 50px;
    background-color: #fff; */
}

#section-8 .paddingLados{
    padding: 0 240px;
}

#section-8 p{
    padding: 30px 40px;
    background-color: #fff;
}

@media (max-width: 768px) {
    #section-8 {
        padding: 0 20px;
    }
}

#section-9 {
    padding: 50px 0;
}

#section-9 .contenedorAncho {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#section-9 img {
    width: 500px;
}

#section-9 .parrafoDestSec9 {
    position: relative;
    width: 600px;
}

#section-9 .parrafoDestSec9 h3 {
    text-align: right;
}

#section-9 span {
    font-family: "Abril_Text_Light";
}

#section-9 .parrafoDestSec9::after {
    position: absolute;
    content: '';
    width: 200%;
    height: 30px;
    background-color: #f0532a;
    right: 0;
    bottom: -50px;
}

@media (max-width: 768px) {
    #section-9 {
        padding: 20px 0;
    }

    #section-9 .contenedorAncho {
        flex-flow: column;
    }

    #section-9 .parrafoDestSec9 {
        width: 100%;
    }

    #section-9 .parrafoDestSec9 h3 {
        text-align: left;
    }

    #section-9 .parrafoDestSec9::after {
        width: 100%;
        height: 10px;
        bottom: -20px;
    }

    #section-9 img {
        width: 80%;
        margin-top: 70px;
    }
}

#section-10 {
    padding: 50px 0;
}

@media (max-width: 768px) {
    #section-10 {
        padding: 0 20px;
    }
}

#section-11 {
    padding: 40px 0;
    background-color: #f0532a;
}

#section-11 h4 {
    color: #fff;
    text-align: center;
}

#section-11 span {
    font-family: "FFDINforPUMA-Bold";
}

@media (max-width: 768px) {
    #section-11 {
        padding: 20px 0;
    }
}

.logoMarca {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 50px 40px 7px;
}

.logoMarca img {
    width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .logoMarca {
        margin-top: 20px;
        padding: 0px 40px 7px;
    }

    .logoMarca img {
        width: 200px;
    }
}

/* footer-bottom */

.footer-bottom {
    width: 100%;
    padding: 12px 0;
}

.footer-bottom .footer-copyright {
    font-family: "acumin-pro", sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom .footer-copyright {
        font-size: 9px;
    }
}