/*------------- CONFIGURACION GENERAL Y PUESTA A CERO --------------------*/

* {margin: 0;padding: 0;box-sizing: border-box;}
a {text-decoration: none;}

/*------------- CONFIGURACION CUERPO GENERAL --------------------------*/

body {    
    
    font-family: "Times New Roman", Times, serif;
    align-content: center;    
}

/*------------- CONFIGURACION CABECERA DE PAGINA Y BARRA DE NAVEGACION -------------*/

.header {
    margin: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    z-index: 999;   
}

.barra {
    background-color: #034574;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.barra .barra-izq {
    line-height: 25px;
    font-size: 16px;
    background-color: #034574;
    color: white;
    padding: 5px ;
}

.barra .barra-izq a {
    padding: 25px;
    color: white;
}

.barra .barra-der {
    background-color: #034574;
    line-height: 25px;
    font-size: 16px;
    text-align: right;
    padding: 5px ;
}

.barra .barra-der a {
    padding: 35px;
    color: white;
}

.menu {
    max-width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.menu .menu-izq {    
    background-color: #fff;
    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.menu .menu-izq .logo-izq {
    width: 300px;
    height: 100px;
    margin: 0 10px;
}

.menu .menu-cen {
    background-color: #fff;
    text-align: center;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    flex: 1;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.menu .menu-cen a {    
    color: #034574;
}

.menu .menu-cen li {
    color: #034574;
    margin: 0 20px ;
    padding: 15px 10px;
}

.menu .menu-cen li:hover {
    background-color: #034574;
    transition: 0.8s;
    border-radius: 20px;
    padding: 15px 10px;
    color: #fff;
}

.menu .menu-cen li a:hover {
    color: white;
}

.menu .menu-der {
    background-color: #fff;
    width: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}

.menu .menu-der .logo-der {
    width: 200px;
    height: 90px;
    margin: 0 10px;
}

/*------------- CONFIGURACION CONTENIDO EN GENERAL DE LA PAGINA -------------*/


/*------------ CONFIGURACION BOTON PARA ARRIBA  ---------------*/

.subir {
    display: none;
}

.arriba {
    color: #284780;
    border: 2px solid #284780;
    background-color: #fff;
    border-radius: 25px;
    padding: 10px;
    width: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    bottom: 15px;
    right: 20px;
    transition: 0.8s all ease;
    animation: subir 1.5s infinite alternate;
    cursor: pointer;
}

.arriba:hover {
    background: #284780;
    color: #fff;
    border-radius: 20px;
}

@keyframes subir {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*---------------  CONFIGURACION DE FOOTER --------------*/

.footer-general {
    
    width: 100%;
    background: #034574;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    
}

.footer1,
.footer2,
.footer3 {
    border: none;
}

/* Footer left */

.footer1 {
    justify-content: center;
    text-align: center;      
 }

.footer1 i {
    color: #ffffff;
    font-size: 24px;
    line-height: 16px;
    margin: 16px ;
}

.footer1 p {   
    color: #ffffff;
    font-size: 20px;    
}

.footer1 p span {
    font-size: 20px;
}

.footer1 p span1 {
    display: block;
    font-size: 12px;
}

/* Footer center */

.footer2 {    
    text-align: center;    
    line-height: 25px;
}

.logo-footer {
    padding: 10px 0;
    width: 330px;
    height: 150px;
}

.footer2 a {
    color: #fff;
    font-size: 14px;
    margin: 0px 15px;
    line-height: 30px;
}

.footer-derechos {
    color: #fff;
    font-size: 12px;
    line-height: 60px;
}

/* Footer Right */


.footer-company-about {
    line-height: 30px;
    color: #92999f;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

.footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.footer-icons {
    margin-top: 20px;
    text-align: center;
}    

.footer-icons a {
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #034574;
    font-size: 25px;
    color: #ffffff;
    margin: auto;
    padding: 0 40px ;
   
}

/*------------ CONFIGURACION BOTON TOGGLE @MEDIA ----------*/

.nav-toggle {
    color: #000;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

