@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: rgb(240, 244, 255);
    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: rgb(240, 244, 255);
    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;
}

.business-dropdown {
    display: none;
    position: absolute;
    margin-top: 360px;
    background-color: #110e11;
    min-width: 140px;
    z-index: 1;
}

.business-dropdown a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu-business:hover .business-dropdown {
    display: block;
}

.alliance-dropdown {
    display: none;
    position: absolute;
    margin-top: 210px;
    background-color: #110e11;
    min-width: 140px;
    z-index: 1;
}

.alliance-dropdown a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu-alliance:hover .alliance-dropdown {
    display: block;
}

.language-dropdown {
    display: none;
    position: absolute;
    margin-top: 190px;
    background-color: #110e11;
    min-width: 120px;
    z-index: 1;
}

.language-dropdown a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu-language:hover .language-dropdown {
    display: block;
}

/*portada*/

.container-cover{
    width: 100%;
    height: 85%;
    position: relative;
    margin-top: 0px;
    background-image: url(city.jpeg);
    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;

    gap: 20px;
}

.services-container-text {
    background-color: none;
    padding: 20px;
}

.services-container-text h2 {
    font-size: 25px;
    justify-content: center;
    align-items: center;
}

.services-container-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.box {
    min-height: 200px;
    border-radius: 10px;
    font-weight: bold;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-color: #213271;
}

.box-title {
    color: white;
    font-size: 13px;
}

.box-icon {
    color: white;
    margin-top: 20px;
    font-size: 70px;
}

.box-icon img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/*contenido*/

.container-who {
    width: 100%;
    position: relative;
    background-image: url(dusk2.jpg);
    background-size: cover;
    background-position: center;
}

.container-who-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0px;
}

.container-who-first {
    margin: 20px;
}

.container-who-second {
    margin: 20px;
    display: flex;
    gap: 20px;
}

.container-who-third {
    margin: 20px;
    font-size: 12px;
}

/*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;
}

.item-2 a {
    font-weight: bold;
    color: #adc9e5;
    font-size: 25px;
}

.item-2 a:hover {
    color: #46a2fd;
}

.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;
    background-color: none;
}

.line-1 h1 {
    background-color: none;
}

.line-1 a {
    color: #d7d7d7;
    font-size: 25px;
}

.line-1 a:hover {
    color: white;
}

.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;
}