.header {
}
.header__container {
}
@media (min-width: 768px) {
    .header__container {
        display: flex;
        min-height: 100vh;
    }
}
.header__content {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--SECONDARY_MINOR_COLOR);
}
@media (min-width: 768px) {
    .header__content {
        min-height: 100%;
        padding: 85px;
        flex: 1 1 70%;
    }
}
.header__menu {
    padding: 40px 20px;
}
@media (min-width: 768px) {
    .header__menu {
        flex: 1 1 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
.header__top {
    margin-bottom: 50px;
}
.header__logo-box {
}
.header__logo {
    margin-bottom: 50px;
}
.header__logo-holder {
    display: inline-block;
    height: 40px;
}
.header__logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.header__menu-box {
}
.header__menu-box .menu-main-menu-container {
}
.header__menu-box ul {
}
.header__menu-box li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.header__menu-box li.current_page_item::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--EXTRA_COLOR);
    margin-right: 8px;
    border-radius: 50%;
}

.header__menu-box li:last-child {
    margin-bottom: 0;
}
.header__menu-box li a {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: var(--PRIMARY_MAJOR_COLOR);
    transition: all 0.3s ease 0s;
}
.header__menu-box li a:hover {
    opacity: 0.5;
}
.header__bottom {
}
.header__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--PRIMARY_MAJOR_COLOR);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--PRIMARY_MINOR_COLOR);
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}
.header__button:hover {
    background-color: var(--PRIMARY_MINOR_COLOR);
    color: var(--PRIMARY_MAJOR_COLOR);
}
.header__pic {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.header__pic .simpleParallax {
    width: 100%;
    height: 100%;
}
.header__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header__title {
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
}
@media (min-width: 768px) {
    .header__title {
        font-size: 80px;
        line-height: 94px;
        max-width: 600px;
        margin-bottom: 140px;
    }
}
.header__list-box {
}
.header__list {
}
.header__list li {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}
.header__list li:last-child {
    margin-bottom: 0;
}

.header__list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--EXTRA_COLOR);
    display: block;
    border-radius: 50%;
    transform: translateY(-10px);
    margin-right: 10px;
}
.header__list-item {
}
