/* elemenst gral */

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

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

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

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    font-family: "LibreFranklin-VariableFont_wght";
    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: 1280px;
    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: "LibreFranklin-VariableFont_wght";
    font-size: 20px;
    color: #004b77;
}

h1.tituloColumnas {
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
}

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

p {
    font-family: "LibreFranklin-VariableFont_wght";
    font-weight: 100;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
}

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

a {
    color: #000000;
    text-decoration: none;
    font-family: "LibreFranklin-VariableFont_wght";
}

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

span {
    font-family: "LibreFranklin-VariableFont_wght";
    font-weight: bold;
    color: #8bd505;
}

p.capital-letter:first-letter {
    float: left;
    font-size: 155px;
    line-height: 135px;
    margin-right: 5px;
    font-family: "LibreFranklin-VariableFont_wght";
    font-weight: 500;
    color: #000000;
}

mark {
    background-color: #00b1d4;
    color: #fff;
}

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

.paddingBottom {
    padding-bottom: 40px;
}

.paddingLados {
    padding: 0 100px;
}

.paddingLeft {
    padding-left: 100px;
}

.paddingRight {
    padding-right: 100px;
}

.paddingArribaAbajo {
    padding: 30px 0;
}

.paddingArribaAbajoLados {
    padding: 30px 100px;
}

.marginTop {
    margin-top: 100px;
}

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

    .paddingLeft {
        padding-left: 0;
    }
    
    .paddingRight {
        padding-right: 0;
    }

    .marginTop {
        margin-top: 0;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
}

.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%;
        margin-top: -20px;
    }
    .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;
    align-items: center;
    justify-content: center;
}

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

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

.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{
    background-color: #eaf7fd;
}

#section-1 .contenedor{
    padding: 50px 0 350px;
}

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

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

#section-2{
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0 0 50px;
}

#section-2 .contenedor {
    position: relative;
    padding: 150px 0 0;
}

#section-2 img{
    margin-top: -450px;
}

#section-2 .contenedortxt {
    background-color: #fff;
    padding: 20px;
    display: inline-flex;
    margin-right: 300px;
    margin-top: -66px;
    margin-left: -50px;
}

#section-2 p{
    color: #8bd505;
}

#section-2 h1{
    color: #004b87;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 10px;
}

#section-2 mark{
    background-color: #b5e2f7;
    color: #004b87;
    line-height: 55px;
}


img.img2 {
    margin-top: 40px;
}

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

    #section-2 .contenedor {
        position: relative;
        padding: 0;
    }

    #section-2 img{
        margin-top: 0;
    }

    #section-2 .contenedortxt {
        margin: 0;
        padding: 10px 20px;
    }

    #section-2 .contenedortxt p{
        font-size: 16px !important;
        margin: 0;
        padding: 0;
    }

    #section-2 h1{
        font-size: 22px;
        padding: 0;
    }

    #section-2 mark {
        line-height: 32px;
    }
}

#section-3{
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

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

#section-3 .columna50{
    padding-right: 230px;
}

#section-3 p{
    font-family: "LibreFranklin-VariableFont_wght";
    font-weight: 100;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

#section-3 span{
    font-weight: bold;
    color: #fff;
}

@media (max-width: 768px) {
    #section-3 .contenedorancho{
        position: relative;
    }

    #section-3 p,
    #section-3 span {
        color: #000;
    }

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

#section-4video {
    padding: 15px 0 50px;
    background-image: url(../img/img-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#section-4video h1{
    color: #fff;
    font-size: 30px;
    font-weight: lighter;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 768px) {
    #section-4video h1{
        font-size: 22px;
    }
}

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

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

#section-6 {
    padding: 100px 0 100px;
}

#section-6 h1{
    color: #004b87;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

#section-6 mark{
    background-color: #b5e2f7;
    color: #004b87;
    line-height: 55px;
}

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

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

    #section-6 h1{
        font-size: 22px;
        padding: 0;
    }

    #section-6 mark {
        line-height: 32px;
    }
}

#section-7{
    background-color: #eaf7fd;
    flex-flow: column;
    align-items: center;
    padding: 50px 100px;
    z-index: 2;
}

#section-7 .contenedor{
}

#section-7 .contenedortxt {
    background-color: #fff;
    position: relative;
    padding: 20px;
    display: inline-flex;
    margin-right: 300px;
    margin-top: -66px;
    margin-left: -50px;
}

#section-7 p.efigrafe{
    color: #8bd505;
}


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

    #section-7 .contenedortxt {
        margin: 0;
        padding: 10px 20px;
    }

    #section-7 .contenedortxt p{
        font-size: 16px !important;
        margin: 0;
        padding: 0;
    }
}

#section-8{
    position: relative;
    flex-flow: column;
    align-items: center;
    padding: 50px 100px;
    z-index: 2;
}

#section-8 img.ovalo{
    position: absolute;
    top: 170px;
    left: -70px;
    width: 70%;
}

#section-8 .contenedortxt {
    background-color: #fff;
    position: relative;
    padding: 20px;
    display: inline-flex;
    margin-right: 300px;
    margin-top: -66px;
    margin-left: -50px;
}

#section-8 p.efigrafe{
    color: #8bd505;
}

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

    #section-8 img.ovalo{
        top: 20px;
        left: -10px;
        width: 70%;
    }

    #section-8 .contenedortxt {
        margin: 0;
        padding: 10px 20px;
    }

    #section-8 .contenedortxt p{
        font-size: 16px !important;
        margin: 0;
        padding: 0;
    }
}

#section-9 {
    background-color: #eaf7fd;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 50px;
}

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

#section-9 h1{
    color: #004b87;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

#section-9 mark{
    background-color: #b5e2f7;
    color: #004b87;
    line-height: 55px;
}

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

    #section-9 .video {
        margin-bottom: 20px;
    }

    #section-9 h1{
        font-size: 22px;
        padding: 0;
    }

    #section-9 mark {
        line-height: 32px;
    }
}

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

#section-10 .contenedortxt {
    background-color: #fff;
    position: relative;
    padding: 20px;
    display: inline-flex;
    margin-right: 300px;
    margin-top: -66px;
    margin-left: -50px;
}

#section-10 p.efigrafe{
    color: #8bd505;
}

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

    #section-10 .contenedortxt {
        margin: 0;
        padding: 10px 20px;
    }

    #section-10 .contenedortxt p{
        font-size: 16px !important;
        margin: 0;
        padding: 0;
    }
}

.logoMarca {
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    padding: 7px 40px;
    /* background-color: rgba(0, 0, 0, .1); */
}

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

@media (max-width: 768px) {
    .logoMarca {
        margin-top: 20px;
    }
    .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;
    }
}