


nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%; 
    height: auto;
    position: absolute;
}

nav img {
    width: 50px;
    height: 50px;
    transition: all .2s ease-in-out; 

}
nav img:hover{
    transform: scale(1.2); 
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    width:50%;
    padding: 5px;
}

nav li {
    list-style: none;
    margin-left:30px;
    padding-left: 20px;  
    transition: all .2s ease-in-out; 
  
}
nav a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: underline;
    font-weight:bolder;

}
.nav li:hover {
    transform: scale(1.2); 
}




/* STICKY NAVIGATION */

.sticky-nav{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: sticky;
    width: 100%; 
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 10px; 
    z-index: 2;
}

.sticky-nav img{
    width: 50px;
    height: 50px;
    transition: all .2s ease-in-out; 
}
.sticky-nav img:hover{
    transform: scale(1.2); 
}

.logo-text {
    width: 120px;
    text-align: center;
    
}
.logo-text span {
    letter-spacing: 1px;
    font-weight: 700;
}

.sticky-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    width:50%;
    padding: 5px;
}

.sticky-nav li {
    list-style: none;
    margin-left:30px;
    padding-left: 20px;  
    transition: all .2s ease-in-out; 
  
}
.sticky-nav a {
    color:rgb(53, 74, 105);
    font-size: 12px;
    text-decoration: underline;
    font-weight:bolder;

}
.sticky-nav li:hover {
    transform: scale(1.2); 
}