::-webkit-scrollbar {
  display: none;
}
/*Header*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(252, 252, 252);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

header img {
    height: 85px;
    width: 85%;
    margin-left: 50px;
}

/* Barra de navegación */

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin-right: 40px;
    position: relative;
}

nav ul li:hover ul {
    display: block;
}

nav a {
    color: #0B3D91;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #0477BF;
}


/*Sobre nosotros*/

#sobrenosotros h2 {
    margin-top: 110px;
    font-size: 100px;
    text-align: center;
    color: #ffffff;
    padding: 30px 0;
    border-radius: 10px;
}

#sobrenosotros h3 {
    font-size: 50px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    padding: 30px 0;
    border-radius: 10px;
}

#sobrenosotros p {
    font-size: 20px;
    line-height: 1.5;
    margin: 20px 80px;
    text-align: justify;
    color: black;
}

.container {
    position: relative;
    width: 100%;
}

.container1{
    background-image: url(/media/img/bg_nosotros.jpg);
    position: relative;
    width: 100%;
    height: 50vh;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;
}
/*Ubicacion*/

.container2{
    width: 100%;
    background-image: url(/media/img/fondo1.jpeg);
    position: relative;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
}

#Ubicacion h2 {
    font-size: 50px;
    text-align: center;
    color: #ffffff;
    padding: 30px 0;
    border-radius: 10px;
}

#Ubicacion iframe {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70vh;
    margin: 30px auto;
    border-radius:20px;
}


body {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0;
    padding: 0;
}

@media (max-width: 425px) {
    #sobrenosotros h2 {
        margin-top: 110px;
        font-size: 4em;
        text-align: center;
        color: #ffffff;
        padding: 30px 0;
        border-radius: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #sobrenosotros h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
        color: #ffffff;
        padding: 30px 0;
        border-radius: 10px;
    }
    

    #sobrenosotros p {
        font-size: 16px;
        line-height: 1.5;
        margin: 20px 80px;
        text-align: left;
        color: black;
    }

    #Ubicacion h2 {
        font-size: 50px;
        text-align: center;
        color: #ffffff;
        padding: 30px 0;
        border-radius: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}