/* elemenst gral */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 
Libre Franklin Thin             100 / font-style: normal;
Libre Franklin Light            300 / font-style: normal;
Libre Franklin Regular          400 / font-style: normal;
Libre Franklin Black            900 / font-style: normal;
Libre Franklin Black Italic     900 / font-style: italic;


font-family: "libre-franklin", sans-serif;
font-weight: 100;
font-style: normal;
*/

@font-face {
    font-family: "Abril_Text_SemiBold";
    src: url('../fonts/Abril_Text_SemiBold.otf');
}

@font-face {
    font-family: "Abril_Text_ExtraBold";
    src: url('../fonts/Abril_Text_ExtraBold.otf');
}

@font-face {
    font-family: "Abril_Text_LightItalic";
    src: url('../fonts/Abril_Text_LightItalic.otf');
}

@font-face {
    font-family: "Abril_Text_Bold";
    src: url('../fonts/Abril_Text_Bold.otf');
}


body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    font-family: "libre-franklin", sans-serif;
    font-weight: 100;
}

.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;
}

.contenedorGrande {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .contenedor,
    .contenedorGrande {
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
}

h1 {
    font-family: "libre-franklin", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-family: "libre-franklin", sans-serif;
    font-weight: 300;
    font-size: 35px;
    color: #00359a;
    margin: 0;
}

h3 {
    font-family: "libre-franklin", sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    margin: 0;
}

h4{
    font-family: "libre-franklin", sans-serif;
    font-weight: 200;
    font-size: 50px;
    color: #7a7979;
    text-align: right;
    text-transform: uppercase;
}

h5 {
    font-family: "libre-franklin", sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: #707070;
    margin: 0;
}

b {
    font-family: "libre-franklin", sans-serif;
    font-weight: bold;
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }
}

p {
    font-family: "libre-franklin", sans-serif;
    font-weight: 100;
    color: #707070;
    font-size: 18px;
    line-height: 1.5;
}

p.grande {
    font-size: 22px;
}

@media (max-width: 768px) {
    p {
        font-size: 18px !important;
    }
}

a {
    color: #fff;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

span {
    font-family: "libre-franklin", sans-serif;
    font-weight: 100;
}

p.capital-letter:first-letter {
    font-family: "libre-franklin", sans-serif;
    font-weight: bold;
    float: left;
    font-size: 85px;
    line-height: 81px;
    margin-right: 5px;
    color: #f68e01;
}

mark {
    background-color: #0090d1;
    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;
}


@media (max-width: 768px) {
    .flexBox {
        flex-flow: column;
        margin-left: 0px !important;
    }
}

.paddingLados {
    padding: 0 90px;
}

.paddingArribaAbajo {
    padding: 30px 0;
}

@media (max-width: 768px) {
    .paddingLados {
        padding: 0;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #00359a;
}

.img-hero {
    display: flex;
    justify-content: center;
    padding-left: 100px;
}

@media (max-width: 768px) {
    .img-hero {
        padding-left: 0;
    }
}

.columnas {
    display: flex;
    justify-content: space-between;
}

.columna70 {
    width: calc(70% - 20px);
}

.columna66 {
    width: calc(66% - 20px);
}

.columna60 {
    width: calc(60% - 20px);
}

.columna55 {
    width: calc(55% - 20px);
}

.columna50 {
    width: calc(50% - 20px);
}

.columna45 {
    width: calc(45% - 20px);
}

.columna40 {
    width: calc(40% - 20px);
}

.columna35 {
    width: calc(35% - 20px);
}

.columna33 {
    width: calc(33% - 20px);
}

.columna30 {
    width: calc(30% - 20px);
}

.columna25 {
    width: calc(25% - 20px);
}

@media (max-width: 768px) {
    .columnas {
        flex-flow: column;
        z-index: 9999999;
    }

    .columna70,
    .columna60,
    .columna66,
    .columna55,
    .columna50,
    .columna45,
    .columna40,
    .columna35,
    .columna33,
    .columna30,
    .columna25 {
        width: 100%;
    }

    .marginBottomMobile {
        margin-bottom: 40px;
    }

    .marginMenos20Mobile {
        margin-top: -20px;
    }
}

.destacadoTop {
    padding: 30px 200px 30px 100px;
    background-color: #f68e01;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.destacadoTop h1 {
    font-size: 48px;
    margin: 0px;
    border-left: 4px solid #fff;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .destacadoTop {
        padding: 20px 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .destacadoTop h1 {
        font-size: 20px;
    }
}

.contenedorVideo {
    width: 100%;
    margin: 40px 0;
}

/* .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
} */

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: auto;
}

#conSecParallax {
    position: relative;
}

.contCentrado {
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 100px;
}

.parrafoConpadding {
    position: relative;
    padding-left: 130px;
}

img.iconoImg4 {
    position: absolute;
    width: 100px;
    top: -70px;
    left: 0;
}

.parallaxParent {
    height: 900px;
    overflow: hidden;
}

.parallaxParent>* {
    height: 150%;
    position: relative;
    top: -80%;
}

.imgParallax1 {
    background-image: url(../img/img-5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.imgParallax2 {
    background-image: url(../img/mar-dunas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.imgParallax3 {
    background-image: url(../img/aventura-relax.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.imgParallax4 {
    background-image: url(../img/treintaytres.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#conSecParallax .contenedor {
    position: absolute;
}

.contTituloParallax{
    position: relative;
    display: flex;
    align-items: center;
    right: 0;
}

.contTituloParallax h4 {
    font-weight: 300;
    color: #fff;
}

img.brujulaTitulo {
    position: relative;
    width: 100px;
    margin: 0 20px 0 0;
    z-index: 1;
}

.contTituloParrafo {
    position: relative;
    z-index: 1;
}

.flechaVolver {
    position: relative;
    width: 50px;
    margin-left: 50px;
}

p.creditoFoto {
    position: absolute;
    color: #fff !important;
    right: 30px;
    bottom: -200px;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contCentrado {
        position: relative;
        bottom: auto;
        background-color: #005091;
    }

    .contCentrado h3,
    .contCentrado p {
        color: #000;
    }

    /* .contCentrado.ContCmobile {
        position: absolute;
        bottom: 20px;
    } */

    .parallaxParent {
        height: 300px;
        overflow: hidden;
    }

    .parrafoConpadding {
        padding-left: 0;
        margin-top: 100px;
    }

    img.iconoImg4 {
        position: absolute;
        width: 70px;
        top: -85px;
        left: 0;
    }

    #conSecParallax .contenedor {
        bottom: 0;
    }

    .contTituloParallax{
       height: 260px;
    }
    
    .contTituloParallax::before {
        top: 0;
        left: -20px;
    }

    img.brujulaTitulo {
        width: 60px;
    }

    p.creditoFoto {
        right: 10px;
        bottom: -10px;
        font-size: 10px !important;
    }

    .imgParallax1 {
        background-position: center;
    }
}

.contieneCarrusel .item {
    position: relative;
}

.contieneCarrusel .item h5 {
    position: absolute;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    left: 20px;
    bottom: 5px;
}

.owl-nav {
    position: absolute !important;
    width: 100%;
    top: calc(50% - 50px);
}

.owl-prev {
    position: absolute !important;
    left: 50px;
}

.owl-next {
    position: absolute !important;
    right: 50px;
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 50px;
}

@media (max-width: 768px) {}

#mapaInteractivo {
}

#mapaInteractivo h5 {
    font-family: "Abril_Text_ExtraBold";
    color: #385772;
}

#mapaInteractivo p {
    color: #385772;
}

#mapaInteractivo b {
    font-family: "Abril_Text_ExtraBold";
}

#mapaInteractivo a {
    font-family: "Abril_Text_ExtraBold";
    color: #a5c47a;
}

#mapaInteractivo .contTxtDot {
    padding: 20px;
}

#mapaInteractivo p.volanta {
    font-family: "Abril_Text_SemiBold";
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


/* Dots */
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.07, 1.07);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0.5; }
    100% { opacity:1; }
}

.contiene-dots {
    position: relative;
}

.LinkMicro a {
    position: absolute;
    background-image: url(../img/icono-micro.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.3%;
    height: 4%;
    animation: flickerAnimation 1.5s ease infinite;
    transition: all .1s;
    cursor: pointer !important;
}

.LinkMicro a:hover {
    background-image: url(../img/icono-micro-hover.png);
    cursor: pointer;
}

.LinkMicro a:nth-of-type(1) {
    top: 34%;
    right: 29%;
}

.LinkMicro a:nth-of-type(2) {
    top: 76.5%;
    left: 67%;
}

.contiene-dots ul {
    margin: 0;
    padding: 0;
    padding: 0;
    padding-inline-start: 0;
    list-style: none;
}

@media (max-width: 768px) {
}


@media (max-width: 768px) {
    .fondoCuadricula {
        background-size: 150%;
    }
}

#section-1 {
    padding: 100px 0;
    background-color: #00359a;
}

img.decoSec1Top {
    position: absolute;
    width: 120px;
    top: -100px;
    left: calc(50% - 40px);
}

img.decoSec1Bottom {
    position: absolute;
    width: 120px;
    bottom: -100px;
    left: calc(50% - 40px);
}

img.decoSec1Left {
    position: absolute;
    width: 25px;
    top: calc(50% - 15.5px);
    left: 50px;
}

#section-1 .columnas {
    position: relative;
    align-items: center;
    margin: 0 100px;
    background-color: #6cd2e5;
}

.contParrafoSec1 {
    position: relative;
    width: 100%;
}

#section-1 p {
    color: #00359a;
    padding: 0 125px;
}

@media (max-width: 768px) {
    #section-1 {
        padding: 0 0 20px;
    } 

    #section-1 .contenedorGrande {
        padding: 0;
    }

    #section-1 .columnas {
        flex-flow: column-reverse;
        margin: 0;
    }

    #section-1 p {
        padding: 20px 20px 70px;
        margin: 0;
    }

    img.decoSec1Top,
    img.decoSec1Left {
        display: none;
    }

    img.decoSec1Bottom {
        width: 100px;
        bottom: 20px;
        left: calc(50% - 50px)
    }
}

#section-2 {
    position: relative;
    padding: 100px 0;
    background-color: #0076c2;
}

#section-2::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 100%;
    background-color: #6cd2e5;
    top: 0;
    right: 0;
}

.contTituloSec2 {
    position: relative;
}

img.deco3 {
    position: absolute;
    width: 40px;
    top: -10px;
    left: calc(100% - 1140px);
}

#section-2 h1 {
    background-color: #6cd2e5;
    width: 980px;
    padding: 30px;
    margin-left: calc(100% - 1080px);
    margin-bottom: 50px;
}

#section-2 .contenedor {
    position: relative;
}

img.deco4 {
    position: absolute;
    width: 150px;
    top: 0;
    left: -100px;
}

img.deco5 {
    position: absolute;
    width: 150px;
    right: 40px;
    bottom: 40px;
    z-index: 1;
}

#section-2 p {
    color: #fff;
}

/* #section-2 b {
    font-size: 24.5px;
} */

#section-2 mark {
    background-color: #00b1d4;
    color: #fff
}

@media (max-width: 768px) {
    #section-2 {
        padding: 0 0 50px;
    }
    
    #section-2::after {
        width: 10px;
        height: 100%;
    }

    #section-2 h1 {
        text-align: center;
        width: 100%;
        padding: 30px;
        margin-left: auto;
        margin-bottom: 20px;
    }

    img.deco3,
    img.deco4 {
        display: none;
    }
    
    img.deco5 {
        width: 50px;
        right: 20px;
        bottom: 10px;
    }

    /* #section-2 b {
        font-size: 20px;
    } */
}

#section-3 {
    position: relative;
    padding: 100px 0;
    background-image: url(../img/fondo-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

#section-3 h2 {
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    #section-3 {
        padding: 50px 0;
        margin-bottom: 0;
    }
}

#section-4 {
    position: relative;
    padding: 0 0 100px;
}

#section-4::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100%;
    background-color: #00359a;
    top: 0;
    left: 0;
}

#section-4::after {
    position: absolute;
    content: '';
    width: 70px;
    height: 60%;
    background-color: #0076c2;
    right: 0;
    bottom: 100px;
}

img.deco6 {
    position: absolute;
    width: 100px;
    right: 35px;
    bottom: 50px;
    z-index: 1;
}

#section-4 h1 {
    background-color: #00359a;
    width: 1240px;
    padding: 30px;
    margin-left: 100px;
}

#section-4 .columnas {
    align-items: center;
    padding: 0 100px;
}

#section-4 p {
    color: #504f4f;
    padding: 0 120px;
}

@media (max-width: 768px) {
    #section-4 {
        padding: 0 0 20px;
    }
    
    #section-4::before {
        width: 10px;
    }
    
    #section-4::after {
        width: 5px;
        height: 100%;
        bottom: 0;
    }

    #section-4 h1 {
        text-align: center;
        width: 100%;
        margin-left: auto;
    }

    #section-4 .columnas {
        padding: 0;
    }
    
    #section-4 p {
        padding: 0 20px;
    }

    img.deco6 {
        display: none;
    }

}

#section-5 {
    position: relative;
    background-color: #6cd2e5;
    padding: 100px 0;
}

#section-5 h1,
#section-5 p {
    text-align: center;
    color: #fff;
}

.contParrafoSec5 {
    padding: 0 130px;
}

@media (max-width: 768px) {
    #section-5 {
        padding: 50px 0;
    }

    .contParrafoSec5 {
        padding: 0;
    }
}

#section-6 {
    position: relative;
    padding: 100px 0;
}

#section-6::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100px;
    background-color: #0076c2;
    top: 0;
    left: 0;
}

#section-6::after {
    position: absolute;
    content: '';
    width: 100px;
    height: calc(100% - 100px);
    background-color: #0076c2;
    top: 100px;
    left: 0;
}

.contTituloSec6 {
    background-image: url(../img/fondo-titulo-sec6.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.contTituloSec6 h2 {
    text-align: center;
    padding: 0 50px;
}

#section-6 .columnas {
    align-items: center;
}

#section-6 p {
    padding: 0 90px;
}

@media (max-width: 768px) {
    #section-6 {
        position: relative;
        padding: 20px 0;
    }
    
    #section-6::before {
        height: 10px;
    }
    
    #section-6::after {
        width: 10px;
        height: calc(100% - 10px);
        top: 10px;
        left: 0;
    }

    .contTituloSec6 {
        background-size: 250%;
        background-repeat: repeat;
        padding: 20px 0;
    }
    
    .contTituloSec6 h2 {
        padding: 0 0 0 10px;
    }

    #section-6 .columnas {
        flex-flow: column-reverse;
    }
    
    #section-6 p {
        padding: 0 0 0 10px;
    }
}

#section-7 {
    position: relative;
    padding: 100px 0;
    background-color: #00359a;
}

#section-7::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 100%;
    background-color: #6cd2e5;
    top: 0;
    right: 0;
}

.contTituloSec2 {
    position: relative;
}

img.deco3Sec7 {
    position: absolute;
    width: 40px;
    top: -10px;
    left: calc(100% - 1300px);
}

#section-7 h1 {
    background-color: #6cd2e5;
    width: 1130px;
    padding: 30px;
    margin-left: calc(100% - 1230px);
    margin-bottom: 50px;
}

#section-7 .contenedor {
    position: relative;
}

img.deco7 {
    position: absolute;
    width: 100px;
    top: 28px;
    left: -80px;
}

img.deco5 {
    position: absolute;
    width: 150px;
    right: 40px;
    bottom: 40px;
    z-index: 1;
}

#section-7 p {
    color: #fff;
}

#section-7 .paddingLados {
    padding: 0 75px;
}

@media (max-width: 768px) {
    #section-7 {
        padding: 0 0 50px;
    }
    
    #section-7::after {
        width: 10px;
        height: 100%;
    }

    #section-7 h1 {
        text-align: center;
        width: 100%;
        padding: 30px;
        margin-left: auto;
        margin-bottom: 20px;
    }

    img.deco3Sec7,
    img.deco7 {
        display: none;
    }
    
    img.deco5 {
        width: 50px;
        right: 20px;
        bottom: 10px;
    }

    #section-7 .paddingLados {
        padding: 0;
    }
}

#section-8 {
    position: relative;
    background-color: #6cd2e5;
    padding: 50px 0 0;
    z-index: 1;
}

#section-8 .columnas {
    align-items: center;
    padding: 0 100px;
}

img.imgSec8 {
    margin-bottom: -70px;
}

#section-8 p {
    color: #fff;
    padding-right: 150px;
}

@media (max-width: 768px) {
    #section-8 {
        padding: 0;
    }

    #section-8 .columnas {
        padding: 0;
    }
    
    img.imgSec8 {
        margin-bottom: auto;
    }

    #section-8 .columna55 {
        padding: 20px 20px 10px;
    }
    
    #section-8 p {
        padding: 0;
    }
}

#section-9 {
    position: relative;
    padding: 150px 0 100px;
    background-image: url(../img/fondo-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#section-9 h2 {
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    #section-9 {
        padding: 50px 0;
        margin-bottom: 0;
    }
}

#section-10 {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 50px;
}

#section-10 .contenedor {
    position: absolute;
}

#section-10 p {
    color: #fff;
}

@media (max-width: 768px) {
    #section-10 {
        padding: 30px 0 20px;
        background-color: #0076c2;
    }

    #section-10 .contenedor {
        position: relative;
    }

    img.imgSec10 {
        display: none;
    }
}

.logoMarca {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 7px 40px;
    /* background-color: rgba(0, 0, 0, .1); */
}

.logoMarca img {
    width: 160px;
    height: auto;
}

@media (max-width: 768px) {
    .logoMarca {
        margin-top: 20px;
    }

    .logoMarca img {
        width: 200px;
    }
}

.fondogris {
    background-color: #585757;
    padding: 30px 50px;
}


/* 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;
    }
}