header {
    width: 100%;

    box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);

    background-color: #FFFFFF;

    display: flex;
    flex-direction: column;

    padding: var(--section-reduced-padding) var(--section-padding);

    position: fixed;

    top: 0;
    left: 0;

    z-index: 2;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo > img {
    height: 40px;
}

.header-logo > span {
    font-size: 20px;
    font-weight: 500;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;

    position: relative;
}

.header-nav-page-link {
    line-height: 1;
}

.header-nav-lang-switch-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-nav-lang-switch {
    height: 20px;

    border: none;

    background: none;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 0;

    cursor: pointer;
}

.header-nav-lang-switch > img {
    height: 100%;
}

.header-nav-lang-options {
    box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);

    background-color: #FFFFFF;

    display: none;
    flex-direction: column;
    gap: 20px;

    padding: 10px 20px;

    position: absolute;

    top: 100%;
}

.header-nav-lang-option {
    height: 20px;

    border: none;

    background: none;

    font-size: 16px;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 0;

    cursor: pointer;
}

.header-nav-lang-option > img {
    height: 100%;
}

.header-mobile-nav-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 10px;

    cursor: pointer;
}

.header-mobile-nav-toggle-btn-dash {
    width: 30px;
    height: 2px;

    background-color: var(--primary-light-color);
}

.header-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 20px;

    padding-top: var(--section-reduced-padding);
}

.header-mobile-nav > a {
    width: max-content;
}

.header-mobile-nav-lang-switch {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-mobile-nav-lang-option {
    height: 20px;

    border: none;

    background: none;

    padding: 0;

    cursor: pointer;
}

.header-mobile-nav-lang-option > img {
    height: 100%;
}

@media only screen and (max-width: 1000px) {
    .header-nav-page-link {
        display: none;
    }

    .header-nav-lang-switch-container {
        display: none;
    }

    .header-mobile-nav-toggle-btn {
        display: flex;
    }
}

@media only screen and (max-width: 800px) {
    
}

@media only screen and (max-width: 600px) {
    .header-logo > span {
        display: none;
    }

    .header-mobile-nav-toggle-btn {
        gap: 5px;
    }

    .header-mobile-nav > .c-primary-btn {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    
}