@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: navy;
    border-radius: 7px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #110e11;
    box-shadow: 0 4px 25px -22px black;
    z-index: 2;
}

.header-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.logo{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu{
    height: 80px;
}

.menu nav{
    height: 100%;
}

.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
}

.menu nav ul li{
    height: 100%;
    margin: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-selected:before{
    content: '';
    width: 100%;
    height: 4px;
    background: #000080;
    position: absolute;
    top: 76px;
    left: 0;
}

.menu nav ul li a{
    color: #777777;
    font-size: 18px;
    transition: color 300ms;
}

.menu nav ul li a:hover{
    color: #46a2fd;
}

.menu .text-menu-selected{
    color: #000080;
}

/*Seleccion de Idioma*/

.idioma-icon{
    height: 80px;
    margin: 0px 20px;
    display: flex;
    color: #777777;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

.idioma{
    position: relative;
    display: inline-block;
}

.idioma-select{
    display: none;
    position: absolute;
    background-color: #a0a0b3;
    min-width: 180px;
    z-index: 1;
}

.idioma-select a{
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: color 300ms;
}

.idioma-select a:hover{
    color: #000080;
}

.idioma:hover .idioma-select{
    display: block;
}

.idioma:hover .idioma-icon{
    color: #46a2fd;
}

#icon-menu{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 16px;
    padding: 10px;
    font-size: 20px;
    color: #000080;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#icon-menu:hover{
    color: yellow;
}

/*portada*/

.container-cover{
    width: 100%;
    height: 50%;
    position: relative;
    margin-top: 0px;
    background-image: url(globe.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container-info-cover{
    max-width: 1200px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-info-cover h1{
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.container-info-cover p{
    color: #fff;
    font-size: 45px;
    font-weight: 300;
}

/* Our Services */

.services {
    width: 100%;
    background-color: #1a2344;
}

.services-container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.services-container-title {
    margin: 20px 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: #213271;
    padding: 30px;
    color: white;
}

.services-container-title-name {
    font-size: 15px;
}

.services-container-title-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.services-container-description {
    margin: 20px 20px;
    border-radius: 10px;
    padding: 30px;
    font-size: 20px;
    background-color: #213271;
    color: white;
}

/*Footer - Pie de Pagina*/

.container-footer{
    width: 100%;
    padding: 10px 0;
    background: #121727;
    margin-top: 0px;
}

.footer-item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 30px;
    font-size: 12px;
    color: #c8c8c8;
    background-color: none;
}

.footer-item img {
    width: 160px;
    height: 100px;
}

.footer-line {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    margin: 30px;
    background-color: none;
}

.line-1 {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    background-color: none;
}

.line-1 h1 {
    background-color: none;
}

.line-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
    background-color: none;
}

.line-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 10px;
    color: white;
    background-color: none;
}