.home_page_header {
    background-color: #fff;
    font-size: 22px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    margin-bottom: 30px;
    transform: translateY(-95px);
}

.home_page_header_fast {
    animation: slide_in linear 0.7s 1s forwards;
}
.home_page_header_slow {
    animation: slide_in linear 0.7s 3.5s forwards;
}

/* .home_page_header__logo {
    width: 150px;
} */

.home_page_navigation {
    align-items: center;
    /* border-bottom: 1px solid #b9b9b9; */
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    padding: 1.25rem 0;
    text-align: center;
    text-transform: uppercase;
}

.home_page_header_link {
    text-decoration: none;
    color: #000;
    font-size: 1.5rem;
    font-weight: 100;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.1s;
}

.home_page_header_link:hover {
    opacity: 0.3;
    transition: opacity 0.1s;
}

.home_page_header_link--active {
    font-weight: bold;
}

.home_page__logo {
    position: absolute;
    display: block;
    top: 5px;
    left: 50px;
}

.home_page__logo_image {
    width: 72px;
    height: 42px;
    display: block;
}

.home_page_header__label {
    font-size: 0.875rem;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.1s;
}

.home_page_header__label:hover {
    opacity: 0.3;
    transition: opacity 0.1s;
}

.home_page_header__vertical_line {
    font-size: 0.875rem;
}

.home_page_header__label--active {
    font-weight: 700;
}

.home_page_header__form {
    position: absolute;
    right: 5%;
}

.home_page_header__bottom_line {
    color: rgb(35, 31, 32);
}

.home_page__logo_line {
    height: 1px;
    left: 122px;
    position: absolute;
    top: 58px;
    width: 100%;
}

.project_list__bottom_navigation {
    display: none;
}
@media (min-width: 1280px) {
    .home_page_navigation {
        max-width: 50%;
        justify-content: space-between;
        margin: 0 auto;
    }
}

@media (max-width: 1280px) {
    .home_page_header_link {
        font-size: 0.75rem;
    }
}
@media (max-width: 1000px) {
    .home_page_header {
        height: 95px;
    }

    .home_page_header_fast {
        height: 45px;
    }
}

@media (max-width: 800px) {
    /* bilo 1280px */
    .home_page_header__form {
        position: static;
    }

    .home_page_navigation .home_page_header__form {
        display: none;
    }
    .home_page_navigation .header_search__bar {
        display: none;
    }

    .project_list__bottom_navigation {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        font-size: 13px;
        align-items: center;
        border-top: 1px solid #6d6d6d;
        padding-top: 10px;
    }
}

@media (max-width: 640px) {
    .home_page_navigation {
        padding-left: 4rem;
        padding-right: 3rem;
    }

    .home_page_header__vertical_line,
    .home_page_header__label {
        font-size: 0.65rem;
    }

    .home_page_header_link {
        font-size: 0.65rem;
    }

    .home_page_header_link:first-child {
        display: none;
    }

    .home_page__logo {
        left: 10px;
        top: 10px;
    }

    .home_page__logo_image {
        height: 28px;
        width: 48px;
    }
}

@keyframes slide_in {
    0% {
        transform: translateY(-95px);
    }
    100% {
        transform: translateY(0px);
    }
}
