/* elemenst gral */

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

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

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

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

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

section {
    position: relative;
}

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

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

h1 {
    font-family: "ArialBlack";
    font-size: 24px;
}

h3 {
    font-size: 17px;
}

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

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

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

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

span {
    font-family: "ArialBlack";
    color: #002d64;
    /* font-family: "Arial";
    font-weight: 900; */
}

.desk {
    display: block;
}

.mobile {
    display: none;
}

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

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

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

.fondoAzul {
    background-color: #0f356d;
    padding: 40px 0;
}

.fondoAzul p {
    color: #fff;
}

p.parrafoDestacado {
    font-family: "LouisGlobal2-Bold";
    font-size: 22px;
}

.columnas50 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.columna50 {
    width: 50%;
}

.columna50 h3 {
    font-family: "LouisGlobal2-Bold";
    text-transform: uppercase;
}

p.parrafoColumn50 {
    position: relative;
    padding: 0 50px;
    color: #0f356d;
}

p.parrafoColumn50 img {
    position: absolute;
    width: 25px;
    bottom: -10px;
    right: 20px;
}

@media (max-width: 768px) {
    .columnas50 {
        flex-flow: column;
    }
    .columna50 {
        width: 100%;
    }
    p.parrafoColumn50 {
        padding: 0;
    }
    p.parrafoColumn50 img {
        right: 0;
    }
}

.contenedorVideo {
    width: 100%;
    padding: 40px 0;
    background: url(../img/fondoVideo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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


/* Íconos */

.columnasIconos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 75px 0 40px;
}

.columna33 {
    width: 31%;
}

@media (max-width: 768px) {
    .columnasIconos {
        flex-flow: column;
    }
    .columna33 {
        width: 100%;
    }
}

.icono {
    text-align: center;
    color: #0f356d;
    width: 95%;
    margin-bottom: 40px;
}

.icono img {
    width: 100px;
    margin: 0 auto;
}

.icono h3 {
    font-family: "LouisGlobal2-Bold";
    text-transform: uppercase;
}

.icono p {
    color: #0f356d;
    font-size: 16px;
}

.lineaDivisoria {
    width: 3%;
    height: 350px;
    margin-top: 95px;
}

.lineaDivisoria img {
    width: 1px;
    height: 350px;
}

img.marginTopLinea {
    width: 100%;
    margin-top: 24px;
}


/* Destacado Gris */

.destacadoGris {
    position: relative;
    background-color: #a4a3a7;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.destacadoGris h3 {
    font-family: "LouisGlobal2-Bold";
    color: #fff;
    margin: 20px;
    font-size: 21px;
    letter-spacing: 1px;
    margin-left: 30px;
    z-index: 99999999;
}

.destacadoGris .InicioTxtBco {
    position: absolute;
    width: 35px;
    top: 20px;
    left: 20px;
}

.destacadoGris .cierreTxtBco {
    position: absolute;
    width: 35px;
    bottom: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .destacadoGris {
        width: 100%;
    }
    .destacadoGris h3 {
        font-size: 20px;
        margin-left: 15px;
    }
    .destacadoGris .InicioTxtBco {
        top: 10px;
        left: 10px;
    }
    .destacadoGris .cierreTxtBco {
        bottom: 10px;
        right: 10px;
    }
}

.columnas4060 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.columnas4060 h3 {
    font-family: "LouisGlobal2-Bold";
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    line-height: 2;
    letter-spacing: 2px;
}

.columnas4060 p {
    margin: 0 0 30px;
}

.columnas4060 p:last-child {
    margin: 0;
}

.columnasIz {
    width: calc(45% - 20px);
}

.columnasIz img {
    width: 100%;
}

.columnasDa {
    width: calc(55% - 20px);
}

.columnasDa h3.tituloFondoAzul {
    margin-bottom: 35px;
    line-height: 2;
}

@media (max-width: 768px) {
    .columnas4060 {
        flex-flow: column;
    }
    .columnasIz img {
        margin-bottom: 50px;
    }
    .columnasIz,
    .columnasDa {
        width: 100%;
    }
    .columnas4060 p:last-child {
        margin: 0;
    }
}

.parrafoCentrado p {
    color: #0f356d;
    text-align: center;
    margin-top: 40px;
    padding: 0 100px;
}

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

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

.footer .columna50 p {
    color: #0f356d;
}

.footer .columna50 a {
    color: #0f356d;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer .columnas50 {
        margin-bottom: 0;
    }
    .footer .columna50 {
        width: 100%;
    }
}

.logoMarca {
    height: auto;
    margin-top: 50px;
    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 img {
        width: 200px;
    }
}

.footer-bottom .footer-copyright {
    font-family: "Arial";
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

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