*{
    margin: 0;
    padding: 0;
    
}

html,body{
    width: 100%;
    overflow-x: hidden;
}

body{
    background-color: rgba(5, 53, 62, 1);
}

.logoymenu{
    padding: 25px;
    display: flex;
    justify-content: space-between;
}

.menuicon{
    box-shadow: none;
    border-color: transparent;
    cursor: pointer;
    display: none;
    text-align: center;
    justify-content: center;
    padding: 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255,1);

}

.menuicon:hover{
    background-color: rgb(194, 194, 194);
}

.menuicon img{
    width: 50px;
    height: 50px;

}

#navbar{
    font-family: 'Open Sans', sans-serif;
    background-color: rgba(5, 53, 62, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 115px;
    padding: 5px 10%;
    transition: all 0.3s ease; 
    height: auto;
}

#navbar nav-links{
    list-style: none;
}

#navbar li{
    display: inline-block;
    padding: 0 50px;
    color: aliceblue;
    list-style: none;
    font-size: 4vw 50%;
    font-weight: light;
}

#navbar li button{
    cursor: pointer;
    font-size: 20px;
    color: white;
    background-color: transparent;
    border: 0px;
}

#navbar li button a{
    padding: 15px;
    text-decoration: none;
    color: white;
}

#navbar li button:hover{
    color: rgba(165, 255, 86, 1);
}

.logo{
    cursor: pointer;
}

.logo a{
    display: block;
}

.logo img{
    
    width: 80%;
}

/*MENU DESPLEGABLE DE NABVAR*/
@media screen and (max-width:980px) {
    .menuicon{
        display: flex;
    }

    #navbar{
        display: block;
    }

    #navbarelements{
        display: none;
        justify-content: center;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #navbar li{
        display: block;
        padding: 20px;
    }
}

@media screen and (max-width:400px) {

    .logoymenu{
        padding: 10px;
    }

    .menuicon img{
        width: 30px;
        height: 30px;
    }

    .logo img{
    
        width: 80px;
        height: 60px;
    }
}

.mainbody{
    position: relative;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: rgba(193, 221, 221, 1);
}



.logo1{
    position: absolute; 
    top: 95%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 15%;
}
.logo2{
    position: absolute; 
    top: 96%;
    left: 85%;
    transform: translate(-50%, -50%);
    width: 25%;
}

.textosuperpuesto{
    padding-top: 8vw;
    padding-bottom: 8vw;
    width: 100%;
    top: 61%;
    left: 50%;   
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: rgba(5, 53, 62, 0.8);
    
}

.textosuperpuesto h1{
    text-align: center;
    font-size: 5vw;
    color: rgba(165, 255, 86, 1);
    padding-bottom: 2.604vw;
}

.textosuperpuesto h2{
    text-align: center;
    font-size: 4vw;
    color: white
}


.backgroundimage{
    width: 100%;
}

.body2{
    background-color: #CCE9E8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: left;
}

.body2 p{
    font-size: 1.302vw;
    padding: 100px;
}

@media screen and (max-width:895px) {
    .body2 p{
        font-size: 20px;
    }
}

@media screen and (max-width:370px) {
    
}

.contacto{
    padding-bottom: 100px;
    background: linear-gradient(rgba(5, 53, 62, 1), rgba(193, 221, 213, 1));
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.contactoelements{
    margin-top: 50px;
    display: flex;
    justify-content: space-evenly;

}

.contactoelements h1{
    padding-bottom: 25px;
}

.contactoelements h3{
    color: rgba(5, 53, 62, 1);
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 25px;
}

.contacto_container{
    color: rgba(165, 255, 86, 1);
    display: block;
    padding-left: 10px;
}

.contacto_container h1{
    text-align: center;
    font-size: 80px;
}

.phonesection{
    display: flex;
}

.phonesection img{
    padding-right: 25px;
    width: 50px;
    height: 50px;
}

.ubicationsection{
    display: flex;
}

.ubicationsection img{
    padding-right: 25px;
    width: 50px;
    height: 50px;
}


.emailsection{
    display: flex;
}

.emailsection img{
    padding-right: 25px;
    width: 50px;
    height: 50px;
}

.phoneimage{
    width: 31.25vw;
}

@media screen and (max-width:895px) {

    .contacto{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contactoelements{
        display: block;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contactoelements p{
        font-size: 20px;
    }

    .phoneimage{
        display: none;
    }

}

@media screen and (max-width:440px) {
    .contacto_container h1{
        padding-right: 10px;
        font-size: 45px;
    }
}

footer{
    font-family: 'Open Sans', sans-serif;
    background-color: rgba(5, 53, 62, 1);
    display: block;
    text-align: center;
    height: 115px;
    padding: 5px 10%;
    padding-bottom: 30px;
    padding-top: 30px;
}

footer nav-links{
    list-style: none;
}

footer li{
    display: inline-block;
    padding: 10px;
    color: aliceblue;
    list-style: none;
}

.section1 li a{
    text-decoration: none;
    color: rgba(168, 194, 200, 1);
}

.section2 li{
    color: rgba(165, 255, 86, 1);
}

.section3 li{
    color: rgba(40, 190, 221, 1);
}