.header {
    padding-top: 43px;
    margin-bottom: 38px;
}

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

.logo {
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    color: #054C73;
}

.nav {
    display: flex;
    align-items: center;    
}

.nav-list {
    display: flex;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #333333;
}

.nav-button {
    display: none;
}

.nav-item:not(:last-child) {
    margin-right: 70px;
}

@media (max-width: 992px) {
    .nav-item:not(:last-child) {
        margin-right: 45px;
    }
}

@media (max-width: 800px) {
    .nav-list {
        display: none;
    }

    .nav-button {
        display: block;
    }

    .logo {
        font-size: 27px;
    }

    .nav.open .nav-list {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-top: 30px;
        font-size: 44px;
        line-height: 80px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgb(240, 243, 255, 0.95);
        z-index: 99;
    }

    .nav-button {
        z-index: 101;
    }

}