header {
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999999;
    overflow: hidden;
}

#header-logo {
    width: 75px;
    height: 75px;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0px;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    cursor: pointer;
}

#header-logo a {
    text-decoration: none;
    width: 75px;
    height: 75px;
}

#header-logo img {
    width: 75px;
    height: 75px;
    transition-duration: 250ms;
}

#header-logo:hover img {
    transform: scale(1.1);
}

#header-nav {
    width: auto;
    height: 100%;
    float: right;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
}

#header-navbar-nav {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#header-navbar-nav a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}

#header-navbar-nav li {
    float: left;
    margin: auto 25px auto 25px;
    font-family: "Sfp-Regular";
    font-size: 18.5px;
    transition-duration: 250ms;
}

#header-navbar-nav li:first-child {
    margin-left: 0px;
}

#header-navbar-nav li:last-child {
    margin-right: 50px;
}

#header-navbar-nav li:hover {
    transform: scale(1.1);
}

#header-navbar-nav li:hover a {
    color: #00aeff;
}

#header-navbar-nav li:active {
    transform: scale(0.9);
}

#header-lang-div {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: 0px 50px 0px 0px;
}

#header-lang-bar {
    width: fit-content;
    height: fit-content;
    padding: 5px 10px 5px 10px;
    margin: 0px;
    display: flex;
    gap: 5px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 25px;
    cursor: pointer;
    transition-duration: 250ms;
}

#header-lang-bar img {
    width: 20px;
    height: 20px;
    margin: 0;
}

#header-lang-bar select {
    font-family: "Sfp-Bold";
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#header-lang-bar select:active {
    border: none;
}

#header-lang-bar select > option {
    color: rgb(35,35,35 );
}

#header-lang-bar:hover {
    border-color: #00aeff;
}

#header-mobile {
    width: fit-content;
    height: 100%;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin-right: 25px;
    display: none;
}

#header-mobile-button {
    width: fit-content;
    height: fit-content;
    padding: 2.5px 10px 2.5px 10px;
    margin: 0px;
    background-color: transparent;
    color: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 250ms;
}

#header-mobile-button:hover {
    transform: scale(1.1);
    border-color: #00aeff;
}

#header-mobile-button img {
    width: 25px;
    height: 25px;
}