html {
    scroll-behavior: smooth;
}
.section-header {
    z-index: 100;
    overflow: hidden;
    position: fixed;
    width: 100%;
    padding: 15px;
}
.mobile-menu {
    display: none;
}

.original-menu {
    display: block;
}
.header-row {
    align-items: center;
}
.menu-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}
.temp-menu-item {
    transition: 0.3s;
    color: #1d2327;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.temp-menu-item:hover {
    transition: 0.3s;
    text-decoration: none;
    color: #3395f2;
}
.menu-item-active {
    color: #1d2327;
    font-weight: 800;
}
.header-scrolled {
    transition: 0.2s;
    box-shadow: 0 3px 8px 3px #00000045;
    background-color: #fcfcfc;
    color: #1d2327 !important;
    padding: 5px;
    z-index: 1000;
}

.header-top {
    transition: 0.2s;
    background-color: transparent;
    color: white;
}

.logo-large {
    transition: 0.2s;
    width: 100%;
    max-width: 325px;
}
.logo-scrolled {
    transition: 0.2s;
    max-width: 200px !important;
    display: block;
    overflow: hidden;
}
.lang-button {
    transition: 0.2s;
    background: transparent;
    border: 2px solid #1d2327;
    color: #1d2327;
    font-weight: 500;
}
.lang-button:hover {
    transition: 0.2s;
    color: white;
    background-color: #1d2327;
}
.active-lang {
    background-color: #1d2327;
    color: white;
}
.lang-button-mobile {
    transition: 0.2s;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 500;  
}
.lang-button-mobile:hover {
    transition: 0.2s;
    color: #1d2327;
    background-color: white; 
}