@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   /* font-family: Arial, Helvetica, sans-serif;*/
    text-decoration: none;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #213B7B;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

.barra_adicional h1 .ourse {
    scroll-padding-top: 140px;
}

/* ****** Header Superior ****** */

.header__superior{
    position: fixed; /* Encabezado Transparente */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 90px;
    box-sizing: border-box;
    background: rgba(32, 64, 125, 0.9);
    display: flex;
    justify-content: space-between;
}

.logo img{
    width: 250px;
}

.menu{
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav{
    height: 100%;
}

nav > ul{
    height: 100%;
    display: flex;
}

nav ul li{
    height: 100%;
    list-style: none;
    position: relative;
}

nav > ul > li >a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: right;
    padding: 18px;
    color: white;
    text-transform: uppercase;
    transition: all 300ms ease;
}

nav > ul > li >a{/* tipo de letra del Menú */
    font-family: 'Oswald';
    font-weight: 100;
    font-size: 20px;
}

nav > ul > li >a:hover{
    transform: scale(1.1);
    background: #2B426E;/* color cuando es señalado con el puntero */
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

nav > ul > li:last-child > a{
    background-image: url(../img/Logo_Menu.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav > ul > li:last-child:hover > a{
    background-image: url(../img/Logo_Menu.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Arreglo del Sub Menú */

nav ul li ul{
    width: 200px;
    display: flex;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 90px;
    left: -55px;/* movimiento horizontal del sub menú */
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;/* Punta del Triángulo */
    position: absolute;
    top: -12px;
    left: 80px;
}

nav ul li ul li a{/* color letra de las opciones del sub menú */
    display: block;
    color: #213B7B;
    padding: 5px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 12px;/* TAMAÑO LETRA DEL SUBMENÚ */
    text-transform: uppercase;
    transition: all 300ms ease;
}

.menu > nav > ul > li > a{
    
}

nav ul li ul li a:hover{/* cuando se señala a la opción */
    background: #2B426E;
    color: white;
    transform: scale(1.1);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* ******* Sección Restante ********* */

/* ***** Configuración Barra Adicional ***** */

main {
     padding: 100px 0px;
     background: #f7f7f7;
}

/*main .barra_adicional{
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100px;/* Altura de la barra adicional
    padding: 100px 0px;
    background: #20407D;
    background: rgba(32, 64, 125, 0.9);
}*/

main .barra_adicional{
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100px;/* Altura de la barra adicional */
    padding:  0px;
    background: #20407D;
    background: rgba(32, 64, 125, 0.9);/*rgba(32, 64, 125, 0.9);/* rgba(117, 22, 63, 0.9); */
}

main .barra_adicional h1{ /* letra del mensaje inicial */
    padding: 10px 90px;/* Centrado del mensaje inicial */
    height: 50px;
    float: left;
    /*text-transform: uppercase;*/
    color: white;/* color de la letra */
    align-items: center;
    vertical-align: center;
    font-family: 'Oswald';
    font-weight: 200px;
    font-size: 43px;
}

/*main .barra_adicional h1{ /* letra del mensaje inicial 
    padding: 42px 20px;
    height: 80px;
    float: left;
    /*text-transform: uppercase;
    color: white;/* color de la letra 
    align-items: center;
    vertical-align: center;
    font-family: 'Oswald';
    font-weight: 300px;
    font-size: 43px;
}*/

/* ***** Configuración Misión y Visión ***** */

article{
    max-width: 2500px;
    /*margin: 20px auto;*/
    padding: 4px;/* distancia del artículo a la barra adicional */
    background: #f7f7f7; /* restablecer: color de fondo del articulo #f7f7f7 */
}

article .who{
    scroll-margin-top: 15ex;/* coloca debajo barra azul la pagina linkeada */ 
}

.ourse{
     margin-top: 4ex;/* coloca debajo barra azul la pagina linkeada */ 
}




article .who h1{
    color: #270764;/* color del titulo "Who Are" */
    margin-left: 10px;
    margin-top: 50px;
    /*font-style: italic;*/
    text-align: center;
    font-size: 28px;
}

.our{
    background-color: #f7f7f7;
    width: 100%;
    padding: 15px;
    text-align: center;
}

.ourse{
    margin-top: 20px;
    font-size: 38px;
    font-weight: 300px;
    color: #270764; /* color de la letra del titulo */
    font-style: normal;
    font-family: 'Oswald'; /* tipo de letra del titulo "OUR SERVICES" */
    line-height: 33px;
    text-align: center;
}

.Our_Ser{
    background-color: #f7f7f7;/* Fondo de Titulo OUR SERVICES */
    width: 100%;
    padding: 15px;
    text-align: center;
    font-family: 'Oswald'; /* tipo de letra de OUR SERVICES */
    color: #270764; /* color de OUR SERVICES */
}

.our{   /* Configuración de los Párrafos de Servicios */
    margin-top: 20px;
    font-size: 24px;
    font-weight: 400;
    color: black; /* color de la letra de los Servicios */
    font-style: 400;
    /*font-family: 'Noto+Sans';/* **************************** */
    line-height: 33px;
    text-align: justify;

    /* #0F968F = verde aceituna */
}

.contenedor{ /* coloca la linea NEGRA que separa ambos párrafos */
    height: 10px;
    display: flex;
    background-color: #f7f7f7;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.subrayado{ /* coloca el subrayado NEGRO del titulo */
    height: 3px;
    display: flex;
    background-color: #f7f7f7;
    justify-content: right;
    margin-top: 1px;
    margin-bottom: 2px;
    width: 130px;
}

.subrayado_n{ /* coloca el subrayado NEGRO del titulo */
    height: 3px;
    display: flex;
    background-color: #f7f7f7;
    justify-content: right;
    margin-top: 1px;
    margin-bottom: 2px;
    width: 220px;
}

/***********************************/
/* ********** Servicios ********** */
/***********************************/

.servicios{
    scroll-margin-top: 10ex;
}

h1{
    font-family: 'Oswald';
    font-weight: normal;
    text-align: center;
}

.servicios {
    color: black;
    font-family: 'Oswald';
    font-style: normal;
}

.servicios h2{
    color:#20407D;
    font-family: 'Oswald';
    font-style: normal;
    padding: 0px 0px;
}

/*.servicios .ser_1 h2{
    color: pink;
}*/

.ser_1{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_2{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_3{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_4{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_5{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_6{
    background-color: #f7f7f7;
    width: 100%;
    padding: 30px;
}

.ser_12{
    /*display: flex;*/
}

.ser_34{
    /*display: flex;*/
}

.ser_56{
    /*display: flex;*/
}

ul{                    /*   quita los puntos de viñetas*/
    list-style: none;
    line-height: 2;
    
}

ul li span{
    color: #0F968F; /* verde aceituna */
}

/* ****************************************************************** */
/* ******************* INICIO DEL FOOTER **************************** */
/* ****************************************************************** */

footer{
    background-color: #20407D;
}

@media (max-height:800px){
    
footer{
        position: static ;
}
    
    header{
    position: static ;
}

nav{
    padding: 10px 0px;
}

}

/* footer de intento*/

.intento{
    display:flex;
}

.izquier{
    width: 35%; 
    text-align: left;
    flex-direction: column;
}

.izquier p{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    margin: 10px;
    font-size: 15px;
    font-family: 'Noto+Sans';/* ************************************* */
    padding: 0px 50px;
    font-weight: 400;
}

.izquier p span{
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;    
}

.izquier p a{
    color: #e0ac1a;
    text-decoration: none;
}

.centro{
     width: 25%;
     color:#20407D;
     
}

/* .dere{
    text-align: right;
    margin-top: 25px;
    width: 30px;
    color: white;/* Color del sobre 
    float: right;
    padding: 10px 0px;
    font-family: 'Noto+Sans';/* **************************************** 
    font-weight: 400;
} *********************************** */

.dere .footer-icons{
    margin-top: 25px;
    display: flex;
}

.footer-dere p{
    font-size: 15px;
    font-weight: 400;
    font-family: 'Noto+Sans';/* **************************************** */
   /* color: white;/* Color del correo */
   color: white;
   display: flex;
}

.dere p{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    margin: 10px;
    font-size: 15px;
    font-family: 'Noto+Sans';/* ************************************* */
    padding: 0px 50px;
    font-weight: 400;
    /*flex-direction: column;*/
}

/* **********************************************

.dere .footer-icons a{/* todo lo referido a las imagenes de las redes 
    display: inline-block;
    width: 35px;
    height: 35px;/* Altura de las Imágenes de las redes 
    cursor: pointer;
    background-color: #0F968F; /* verde aceituna, #33383b; Gris Oscuro
    border-radius: 2px;
    font-size: 25px;
    color: #3F3F3F;
    text-align: center;
    line-height: 35px;
    margin-right: 15px;/* espacio entre las imagenes de las redes 
    margin-bottom: 5px;
}



.dere .footer-icons a:hover{
    background-color: #3f71ea;/* Color al ser señalado por puntero del mouse 
}

.footer-links a:hover{
    background-color: #3f71ea;
}

.dere .footer-dere{
    
}


/* ****************************************************** */







/**/
/* ********** */