*{
    margin:0;
    padding:0;
}

body{
    min-height:100vh;
    background-color:white;
    font-family: 'Montserrat';
}

nav{
    background-color:#316197;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position:sticky;
    top:0;
    z-index:9999;
    
}

nav ul{
    width:100%;
    list-style:none;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

nav li{
    height: 100px;
}

nav img{
    height:85%;
    width:40%;
   
}

nav a{
    height:100%;
    padding:0px 30px;
    text-decoration:none;
    display:flex;
    align-items:center;
    color:white;
}

nav a:hover{
    background-color:#2e537f;
    font-weight: bold;
}

nav li:first-child{
    margin-right:auto;
}

.noColor a:hover{
    background-color:#316197;
}

.noColor a{
    
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: bold;

}

.sidebar{
    position:fixed;
    top: 0;
    right:0;
    height:100vh;
    width:250px;
    z-index:999;
    background-color: #3161976e;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
}

.sidebar li{
    width:100%
}

.sidebar a{
    width:100%;
}

.sidebar img{

    height:100%;
    width:20%;
}

.menu-button{
    display:none;
}

.contenedorContacto{
    text-align:center;
}

.contenedorContacto h1, h4{
    margin-top:20px;
    margin-bottom:20px;
}

.contenedorContacto span{
    background-color:rgba(160, 249, 26, 0.495);
    padding:10px;
}

.contenedorContacto iframe{
    margin-top:20px;
    margin-bottom:20px;
}

.footer{
    position:relative;
    background-color:#254973;
    min-height:100px;
    padding: 20px 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction: column;
}

.social-icon{
    display:flex;
    justify-content: center;
    align-items: center;
    position:relative;
    margin:10px 5px;
    flex-wrap:wrap;
}

.icon-elem{
    list-style:none;
}

.icon{
    color:white;
    font-size:32px;
    display:inline-block;
    margin:0 10px;
    transition: 0.5s;
}

.icon:hover{
    transform:translateY(-10px);
}

.menu{
    display:flex;
    justify-content: center;
    position:relative;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.menu-icon{
    color:white;
    font-size:20px;
    text-decoration:none;
    margin:5px 10px;
    opacity: 0.75;
    transition: 0.3s;
}

.menu-elem{
    list-style: none;
}

.menu-icon:hover{
    opacity:1;
}

.text{
    color:white;
    text-align:center;
    margin-top:15px;
    margin-bottom:10px;
    font-size:20px;

}

@media(max-width:800px){
    .hideOnMobile{
        display:none;
    }

    .menu-button{
        display:block;
    }    
}

@media(max-width:800px){
    .sidebar{
        width:100%;
    }

    iframe{
        width:400px;
        height:300px;
    }
}