.navbar {
    display: flex;
    justify-content: center;
    background: #005437 0% 0% no-repeat padding-box;
    padding: 10px 0;
    height: 64px;
}
  
.language-select {
    position: absolute;
    right: 0;
}

.selectpicker {
    /* Layout Properties */
    top: 14px;
    left: 1149px;
    width: 114px;
    height: 33px;
    padding: 0px 12px 0px 4px;
    margin: 0 50px 0 0;

    background-color: transparent;
    background-image: url('icons/downarrow.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
    border: 2px solid rgba(255, 255, 255, 0.53); 
    border-radius: 17px;

    color: #FFFFFF; 
    text-align: center;
    font: normal normal 16px/20px 'Inter';
    letter-spacing: 0px;
    opacity: 1;
    appearance: none;

}


.selectpicker option {
    background-color: #000000;
    color: #FFFFFF; 
} 

.link {
    text-align: left;
    font: normal normal 16px/20px 'Inter';
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.active-link, .link {
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.active-link::after, .link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50%; 
    height: 2px;
    background-color: #FFC400;
    transition: width 0.3s ease;
}
