/* --------------------------------------Configuraciones generales------------------------------------------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    border-style: none;
}
input{
    border: none;
    background: none;
}
/* --------------------------------------Fuentes------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;800&display=swap');
/* --------------------------------------NAV------------------------------------------- */
.header-button{
    width: 100%;
    height: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-button > section{
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: left;
    align-items: center;
    position: fixed;
    z-index: 3;
    background-color: #0d41a1;
}
.header-button-dad{
 width: 31rem;
 height: 3rem;
 display: flex;
 justify-content: space-around;
 align-items: center;

}
.header-cont-button{
    width: 9rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-cont-pse{
    margin: 0.1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-cont-pse > button{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #fff;
}
.header-cont-pse > button:hover{
    background-color: #de8927;
}
.header-cont-pse > button > a{
    width: 2rem;
    height: 2rem;
    color: #0d41a1;
    font-size: 0.8 rem;
    font-weight: 600;
    text-align: center;
}
.header-cont-button > button{
    width: 8rem;
    height: 2rem;
    background-color: #fff;
    border-radius: 1rem;
}
.header-cont-button > button:hover{
    background-color: #de8927;
}
.header-cont-button > button > a{
    color: #0d41a1;
    font-size: 0.9rem;
    font-weight: 600;
}
.header-conta > ul{
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-conta > ul > li{
    margin: 0.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.header-conta > ul > li:hover{
    background-color: #de8927;
}
.header-conta > ul > li > a > i{
    color: #0d41a1;
    font-size: 0.9rem;
}
@media screen and (max-width: 30rem) {
    .header-button > section{
        justify-content: center;
    }
    .header-cont-button{
        width: 6.5rem;
    }
    .header-cont-button > button{
        width: 6.5rem;
        margin: 0rem 0.1rem;
    }
    .header-cont-button > button > a{
        color: #0d41a1;
        font-size: 0.7rem;
        font-weight: 600;
    }
    .header-conta{
        display: none;
    }
}
/* --------------------------------------NAV------------------------------------------- */
.loader-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: rgba(13, 65, 161, 0.9);
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: all 0.5s;
}
.loader-icono{
    width: 6rem;
    height: 6rem;
    border: solid 0.3rem #de8927;
    border-top: solid 0.3rem #fcc02d ;
    border-radius: 100%;
    animation: cargando 3s linear infinite;
}
@keyframes cargando {
    0%{
        transform: rotate(0deg);
    }
    0%{
        transform: rotate(360deg);
    }
}
.loader-text{
    position: absolute;
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    animation: text 1.5s alternate infinite ease-in-out;
}
@keyframes text {
    0%{
        opacity: 0.1;
    }
    100%{
        opacity: 1;
    }
}
/* --------------------------------------NAV------------------------------------------- */
.nav-img{
    width: 100%;
    z-index: 0;
}
.nav-img > img{
    width: 100%;
    height: 35rem;
    object-fit: cover;
}
.nav-general{
    width: 100%;
    position: relative;
    height: 100%;
}
.nav-contenedor{
    width: 100%;
    height: 4rem;
    padding: 0.5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 3;
}
/* --------------------------------------DESPLEGABLE ICONO------------------------------------------- */
.nav-desplegable-contenedor{
    display: none;
}

/* --------------------------------------LOGO------------------------------------------- */
.nav-logo{   
    width: 8rem;
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 4rem;
}
.nav-logo-img{
    width: 7rem;
    height: 3rem;
    background-image: url(../img/logos/nav-logo-blanco.png);
}
.scrollnavimg{
    background-image: url(../img/logos/nav-logo-color.png);
}
/* --------------------------------------MENU------------------------------------------- */
.nav-menu{
    width: 32rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-menu > .nav-menu-lista{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center; 
}
.nav-menu > .nav-menu-lista > li > a{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}
.nav-menu > .nav-menu-lista > li:hover > a{
    color: #f09f1d; 
}
.nav-menu > .nav-menu-lista > li > .prueba{
    color: #f09f1d; 
}

/* --------------------------------------SUBMENU------------------------------------------- */
.nav-submenu-servicios, .nav-submenu-servicios-ver {
    width: 13rem;
    display: flex;
    flex-direction: column;
    align-items: left;
    position: absolute;
    top: 4rem;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.nav-submenu-servicios-ver{
    visibility: visible;
    opacity: 1;
}
.nav-submenu-servicios > li > a{
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
    height: 100%;  
}
.nav-submenu-servicios > li{
    padding: 0.5rem 0.7rem;
}
.nav-submenu-servicios > li:hover > a {
    color: #f09f1d;
}
.nav-submenu-servicios > li > .prueba{
    color: #f09f1d;
}
.nav-menu >.nav-menu-lista > li > .nav-submenu-servicios:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-bottom: 0.7rem solid transparent;
    position: absolute;
    top: -0.5rem;
    left: 2rem;
}
/* --------------------------------------BOTTON------------------------------------------- */
.nav-menu > .nav-loging{
    display: flex;
    align-items: center;
    width: 8rem;
}
.nav-menu > .nav-loging:hover > a{
    color: #f09f1d;
}
.nav-menu > .nav-loging > a{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.nav-loging-icono{
    margin-left: 0.5em;
}
.fa-angle-down{
 color: #fff;
 cursor: pointer;
}
.fa-angle-down:hover{
    color: #f09f1d;
}
.icono-desplegable{
    color: #f09f1d;
}
/* --------------------------------------SCROLL MENU------------------------------------------- */
.scrollnav{
    width: 100%;
    padding: 0.5rem;
    background-color: #fff;
    border-bottom: 0.3rem solid rgba(13, 65, 161, 0.9);
}
.scrollnav > .nav-menu > .nav-menu-lista > li > a{
    color: #0d41a1;
}
.scrollnav > .nav-menu > .nav-menu-lista > li:hover > a{
    color: #f09f1d; 
}
.scrollnav > .nav-menu > .nav-menu-lista > li > .prueba{
    color: #f09f1d; 
}
.scrollnav > .nav-menu > .nav-loging > a{
    color: #0d41a1;
}
.scrollnav > .nav-menu >.nav-menu-lista > li > .nav-submenu-servicios{
    background-color: rgba(13, 65, 161, 0.9); 
}
.scrollnav > .nav-menu > .nav-loging:hover > a{
    color: #f09f1d;
}
.scrollnav > .nav-menu >.nav-menu-lista > li > .nav-submenu-servicios > li > a {
    color: #fff; 
}
.scrollnav > .nav-menu >.nav-menu-lista > li > .nav-submenu-servicios > li > .prueba {
    color: #f09f1d; 
}
.scrollnav > .nav-desplegable-contenedor > .nav-desplegable-icono{
    color: #0d41a1;
}
.scrollnav > .nav-menu >.nav-menu-lista > li >.fa-angle-down{
    color: #0d41a1;
}
.scrollnav > .nav-menu >.nav-menu-lista > li > .nav-submenu-servicios > li:hover > a {
    color: #f09f1d;
}
.scrollnav > .nav-menu >.nav-menu-lista > li > .icono-desplegable{
    color: #f09f1d; 
} 
/* --------------------------------------VIDEO------------------------------------------- */
.nav-video{
    width: 100%;
    height: 50rem;
    z-index: 0;
    object-fit: cover;
}

/* --------------------------------------MAIN------------------------------------------- */
@media screen and (max-width: 39.1rem){
    .header-button > section{
        justify-content: center;
    }
    .nav-logo-img{
        background-image: url(../img/logos/nav-logo-color.png);
    }
    .nav-contenedor{
        position: fixed;
        top: 3rem;
        left: 0;
        width: 100%;
        height: 4rem;
        display: flex;
        justify-content: space-between;
        background-color: rgba(255, 255, 255, 0.9);
        border-bottom: 0.3rem solid rgba(13, 65, 161, 0.9);
    }
    .nav-logo{
        width: 8rem;
        margin-left: 0.5;
    }
    .nav-desplegable-contenedor{
        display: block;
        padding: 0.5rem;
        transition: all 300ms ease;
    }
    .nav-desplegable-contenedor:hover{
        transform: scale(1.1);
    }
    .nav-desplegable-contenedor > .nav-desplegable-icono{
        color: #0d41a1;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .nav-menu{
        display: inline;
        position: fixed;
        top: 3rem;
        left: -100%;
        width: 100%;
        height: 12rem;
        margin-top: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .nav-menu > .nav-menu-lista{
        display: inline;
        justify-content: left;
        top: 4rem;
    }
    .nav-menu > .nav-menu-lista > li > a{
        color: #0d41a1;
    }
    .nav-menu > .nav-loging > a{
        color: #0d41a1;
        padding: 0.5rem;
        width: 100%;
    }
    .nav-menu > .nav-menu-lista > li{
        text-align: left;
        padding: 0.5rem;
        transition: none;
    }
    .nav-submenu-servicios{
        display: inline;
        position: absolute;
        margin-left: 1rem;
        background: rgba(13, 65, 161, 0.9);
    }
    .nav-loging{
        padding: 0.5rem;
    }
    .nav-ver{
        left: 0;
    }
    .fa-angle-down{
        color: #0d41a1;
       }
    .icono-desplegable{
        color: #f09f1d; 
    } 
    .nav-desplegable{
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(13, 65, 161, 0.5);
        z-index: 1;
        visibility: hidden;
    }
    .nav-desplegable-ver{
        visibility: visible;
    }
}

/* --------------------------------------FOOTER------------------------------------------- */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.f-contenido {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    background-color: #fff;
    border-top: 0.3rem solid #0d41a1;
    width: 100%;
    height: 100%;
    /* padding: 0.5rem; */
}
.f-maps, .f-conta, .f-info {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 18.75rem;
    height: 100%;
    margin: 0.5em;
}
.f-maps > h1, .f-conta > h1, .f-info > h1 {
    color: #0d41a1;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.f-maps > iframe{
    margin: 0.5rem 0; 
}
.f-conta > ul > li > a, .f-info > ul > li > a{
    color: #000;
}
.f-conta > ul > li, .f-info > ul > li {
    margin-top: 0.5rem;
}

.f-button-redes{
    background-color:#fff ;
    color: #0d41a1;
    font-size: 1.1rem;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border-style: none;
}
.f-copy{
    background-color: #0d41a1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.f-copy > h1{
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    color: #fff;
    margin: 5px;
}

/* --------------------------------------BOTON UP------------------------------------------- */
.boton-contenedor-up{
    width: 2.5rem;
    height: 2.5rem;
    background: #0d41a1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    position: fixed;
    bottom: 2rem;
    right: 0.8rem;
    cursor: pointer;
    transition: all 300ms ease;
    transform: scale(0);
    visibility: hidden;
}
.boton-contenedor-up:hover {
    color: #fcc02d;
}
.boton-contenedor-up{
    transform: scale(1.1);
    border-color: rgba(13, 65, 161, 0.234);
}
/* --------------------------------------scrollbar lateral------------------------------------------- */
*::-webkit-scrollbar{ 
    width: 0.8rem;

}

*::-webkit-scrollbar-track {
    background: #0d41a1;
}
*::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 0.5rem;
    border: 0.2rem solid #0d41a1;
    
}
*::-webkit-scrollbar-thumb:hover {
    background: #FCC02D;
    
}

.lapt{
    font-size:35px;
    font-weight:800;
}
.lapt > h1{
    color:#0d41a1;
}