*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
body{
    font-family: 'Open Sans';
    font-weight: bold;
    background-color: black;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    max-height: 400px;
    padding: 10px;
}
#logo{
    width: 10%;
}
nav{
    width: 50%;
    display: flex;
    justify-content: space-around;
}
.nav_a{
    font-size: 1.3em;
    color: white;
    text-decoration: none;
}
.nav_a:hover{
    border-bottom: 2px solid white;
    color: #00d8ff;
}
.nav_a a:hover i {
    color: #00d8ff;
}
.menu{
    display: none;
    justify-content: end;
    margin-left: auto;
    padding: 10px;
    border-radius: 10px;
}
.lines{
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}
.lines div{
    height: 0.5vh;
    width: 15vw;
    border-radius: 5px;
    background-color: white;
}
#menu_ul {
    display: none;
    z-index: 999;
}
#menu_ul li{
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    gap: 5px;
}
#menu_ul li i{
    margin-right: 10px;
    color: white;
}
#menu_ul a{
    color: white; 
    text-decoration: none;
}
#menu_ul li a:hover {
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    color: #00d8ff;
}
#menu_ul li a:hover i {
    color: #00d8ff;
}
.hero{
    margin-top: 10vh;
}
.div1{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
}
.div1 div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 30vh;
    width: 100%;
}
.div1 div img{
    height: 80%;
    width: 100%;
    filter: invert(1);
}
.div1 div div{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.div1 div div h2{
    color: white;
    text-align: center;
    width: 100%;
}
.div1 div p{
    color: white;
    text-align: justify;
    width: 50%;
    font-size: 1.2em;
}
.div2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.div2 h1{
    color: #5c6bc0;
    font-size: 2em;
}
.parrs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10vh;
}
.parrs p{
    font-size: 1.2em;
    color: white;
    width: 70%;
    text-align: justify;
}
.parrs2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10vh;
}
.parrs2 p{
    text-align: center;
    font-size: 1.2em;
    color: white;
    width: 70%;
}
.imgs{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    width: 70%;
    gap: 5%;
}
.imgs img{
    height: 70%;
}
.imgs h2{
    font-size: 2.2em;
    color: #5c6bc0;
    font-weight: 900;
}
.imgs2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45vh;
    width: 100%;
}
.imgs2 img{
    height: 100%;
    width: 100%;
}
.imgs3{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    width: 100%;
    gap: 5%;
}
.imgs3 img{
    height: 100%;
    width: 50%;
    object-fit: contain;
}
.imgs3 p{
    text-align: center;
    font-size: 1.2em;
    color: white;
    width: 30%;
}
.imgs3 p a{
    color: cyan;
    text-decoration: none;
}
.imgs3 p a:hover{
    text-decoration: underline;
}
footer {
    width: 100%;
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom:0;
    margin-top: 10px;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
}

footer ul li a {
    color: #0056b3;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: white;
}
.mantenimiento{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    z-index: 9999;
    background-color: black;
}
@media (max-width: 700px) {
    .nav_a{
        display: none;
    }
    #logo{
        width: auto;
        max-width: 150px;
    }
    .hero h1{
        text-align: center;
    }
    .menu{
        display: flex;
        justify-content:flex-end;
    }
    #menu_ul {
        display: none;
        position: absolute;
        top: 0;
        right: -70vw;
        height: 100%;
        width: 70%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        transition: right 0.3s ease-in-out;
        display: none;
        z-index: 9999;
        overflow-y: auto;
    }
    .div1 div{
        flex-direction: column;
        height: auto;
    }
    .div1 div div img{
        margin-bottom: 10vh;
    }
    .div1 div div h2{
        text-align: center;
        width: 100%;
    }
    .div1 div p{
        text-align: center;
        width: 80%;
        font-size: 1.3em;
        margin-bottom: 5vh;
    }
    .div2{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .div2 h1{
        font-size: 1.8em;
    }
    .parrs{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10vh;
    }
    .parrs p{
        width: 85%;
        text-align: justify;
    }
    .parrs2 p{
        width: 95%;
    }
    .imgs{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30vh;
        width: 70%;
        gap: 5%;
    }
    .imgs img{
        height: 70%;
    }
    .imgs h2{
        font-size: 2em;
        color: #5c6bc0;
    }
    .imgs3{
        flex-direction: column;
    }
    .imgs3 img{
        width: 90%;
        object-fit: contain;
    }
    .imgs3 p{
        width: 70%;
        margin-bottom: 5vh;
    }
    /* .mantenimiento{
        display: flex;
    }  */
}