
header {
    display: flex;
    justify-content: end;
    width: 100%;
    height: 80px;
    padding-left: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
}
header .header__inner {
    display: grid;
    align-items: center;
    justify-content: end;
    grid-template-columns: minmax(auto, 1266px) minmax(265px, auto);
}
header .headerLeft__items {
    display: flex;
    justify-content: space-between;
    margin-right: 27px;
}
header .headerLeft__items h1 {
    font-size: 20px;
    font-weight: bold;
    padding-right: 27px;
}
header .headerLeft__items h1 a {
    text-decoration: none;
}
header .headerLeft__items nav {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}
header .headerLeft__items nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
}
header .headerLeft__items nav ul li a {
    color: #333;
    transition: color 0.9s ease;
    text-decoration: none;
}
header .headerLeft__items nav ul li a:hover {
    opacity: 1;
    color: #7DBA8C;
}
@media (min-width: 769px) and (max-width: 1000px) {
    header .headerLeft__items nav ul li a {
        font-size: 14px;
    }
}
header .headerRight__items ul {
    display: flex;
}
header .headerRight__items ul li {
    color: #fff;
}
header .headerRight__items ul li a {
    font-size: 18px;
    font-weight: bold;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .nav__recruit a {
    width: 120px;
    background: #5E5E5E;
}
header .nav__contact a {
    width: 145px;
    background: #7DBA8C;
}
@media (max-width: 768px) {
    header {
        height: 70px;
        padding-left: 10px;
    }
    header .header__inner {
        grid-template-columns: minmax(auto, 1074px) minmax(70px, auto);
    }
    header .headerLeft__items {
        margin-right: unset;
    }
    header .headerLeft__items h1 {
        padding-right: 10px;
    }
    header .menuButton__button {
        width: 70px;
        height: 70px;
        padding: 0 10px;
        cursor: pointer;
        background: #7DBA8C;
    }
    header .menuButton__button p {
        color: #fff;
        font-size: 12px;
        text-align: center;
    }
    header .menuIcon__wrap {
        height: 22px;
        margin-bottom: 9px;
        position: relative;
        transform: unset !important;
    }
    header .menuBar__items {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: all 0.5s;
    }
    header .menuBar__items:nth-of-type(1) {
        top: 0;
    }
    header .menuBar__items:nth-of-type(2) {
        top: 10px;
    }
    header .menuBar__items:nth-of-type(3) {
        bottom: 0;
    }
    header .menuTxt__element--close {
        display: none;
    }
    header .menuButton__button.active .menuIcon__wrap :nth-of-type(1) {
        transform: translateY(10px) rotate(-25deg);
    }
    header .menuButton__button.active .menuIcon__wrap :nth-of-type(2) {
        opacity: 0;
    }
    header .menuButton__button.active .menuIcon__wrap :nth-of-type(3) {
        transform: translateY(-10px) rotate(25deg);
    }
    header .menuButton__button.active .menuTxt__element--open {
        display: none;
    }
    header .menuButton__button.active .menuTxt__element--close {
        display: block;
    }
    header .modalMenu__wrap {
        position: fixed;
        top: 70px;
        right: 0;
        z-index: 1001;
        width: 85%;
        background-color: #EFF1F0;
        display: none;
    }
    header .navList__wrap {
        padding: 30px 20px 40px;
    }
    header .navList__wrap ul li {
        border-bottom: 1px solid #7DBA8C;
    }
    header .navList__wrap ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    header .navList__wrap ul li a {
        display: block;
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        padding: 10px 0;
    }
}