/* elemenst gral */

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


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

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

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

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

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    font-family: "NouvelR-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: "NouvelR-Extrabold";
    font-size: 80px;
    line-height: .9;
    margin: 0;
}

h2 {
    font-family: "NouvelR-Semibold";
    font-size: 55px;
    line-height: 1;
    margin: 0;
}

h3 {
    font-family: "NouvelR-Extrabold";
    font-size: 30px;
    line-height: 1;
    margin: 0;
}

h4 {
    font-family: "NouvelR-Bold";
    font-size: 28px;
    line-height: 1;
    margin: 0;
}

h5 {
    font-family: "NouvelR-Bold";
    font-size: 22px;
    line-height: 1;
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
        margin: 0;
    }

    h5 {
        font-size: 20px;
        margin: 0;
    }
}

p {
    font-family: "NouvelR-Light";
    color: #000;
    font-size: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    p {
        font-size: 18px !important;
    }
}

a {
    color: #000;
}

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

span {
    font-family: "NouvelR-Bold";
}


mark {
    background-color: #000 !important;
    color: #fff !important;
    text-transform: uppercase;
    line-height: 1.4;
}

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

.hero::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 300px;
    background-color: #000;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero::before {
        display: none;
    }
}

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

.contendroGral {
    padding: 100px 100px 0;
}

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

.lineaHorizontal {
    background-color: #d0d0d0;
}

#section-1 {
    position: relative;
    padding: 50px 0;
    background-color: #d0d0d0;
}

img.deco1 {
    width: 50%;
    margin: 0 0 20px;
}

#section-1 h1 {
    text-transform: uppercase;
}

#section-1 h4 {
    margin-top: 40px;
    text-decoration: underline;
    line-height: 1.1;
}

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

    img.imgSec1 {
        margin: 30px 0;
    }

    #section-1 h4 {
        margin-top: 0;
    }
}

#section-3 {
    position: relative;
    padding: 50px 0;
    background-color: #d0d0d0;
    z-index: 1;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

img.imgCorte {
    position: relative;
    width: 50%;
    margin-left: -50px;
}

#section-3 .contenedor {
    position: absolute;
}

#section-3 .columna50 {
    margin: 0 0 0 50%;
}

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

    img.imgCorte {
        position: relative;
        width: 100%;
        margin-left: auto;
    }

    #section-3 .contenedor {
        position: relative;
    }

    #section-3 .columna50 {
        margin: 0;
    }
}

#section-4 {
    position: relative;
    padding: 0 0 50px;
    background-color: #d0d0d0;
}

#section-4 span {
    font-family: "NouvelR-Light";
    color: #000;
    font-size: 20px;
}

#section-4 b {
    font-family: "NouvelR-Bold";
}

#section-4 img {
    width: 80%;
}

#section-4 .imgbanner {
    width: 100%;
}

#section-4 .columna33 {
    width: calc(35% - 0px);
}

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

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

    #section-4 .columna33 {
        width: 100%;
    }
}

#section-5 {
    position: relative;
    padding: 50px 0;
    background-color: #d0d0d0;
}

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

#section-6 {
    position: relative;
    padding: 50px 0 150px;
    background-color: #d0d0d0;
}

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

#section-7 {
    position: relative;
    padding: 100px 0 50px;
    background-color: #898a8d;
}

img.clip {
    position: absolute;
    width: 50px;
    top: -68px;
    left: calc(50% - 25px);
}

#section-7 p {
    font-family: "NouvelR-Bold";
    color: #fff;
}

#section-7 span {
    font-family: "NouvelR-Extrabold";
    color: #f0de48;
}

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

    img.clip {
        width: 30px;
        top: -40px;
        left: calc(50% - 15px);
    }
}

#section-10 {
    position: relative;
    padding: 100px 0 100px;
    background-color: #d0d0d0;
}

img.deco3 {
    position: absolute;
    width: 210px;
    top: 50px;
    left: 40px;
}

img.deco4 {
    position: absolute;
    width: 210px;
    right: 40px;
    bottom: 50px;
}

#section-10 span {
    font-family: "NouvelR-Light";
    color: #000;
    font-size: 20px;
}

#section-10 b {
    font-family: "NouvelR-Bold";
}

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

    img.deco3,
    img.deco4 {
        display: none;
    }
}

#section-11 {
    position: relative;
    margin-top: -60px;
}

#section-11 .contenedor {
    padding: 0 200px;
}

.cierreDeco {
    position: relative;
    background-color: #fff;
    border: 10px solid #000;
    border-radius: 40px;
    padding: 30px;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.cierreDeco h5 {
    text-transform: uppercase;
    text-align: center;
}

img.decoMano {
    position: absolute;
    width: 100px;
    right: -90px;
}

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

    #section-11 .contenedor {
        padding: 0;
    }

    .cierreDeco {
        border: 5px solid #000;
        padding: 20px;
    }

    img.decoMano {
        display: none
    }
}

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