.above__header {
    width: 1180px;
    margin: 0 auto;    
    color: #535B63;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Open-sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 16px 0;
}

.header {
    background-color: #0173C1;
    height: 60px;
    display: flex;
    align-items: center;
}

.header__account {
    margin: 0;
    margin-left: auto;
    text-decoration: none;
    color: white;
}

.header__feedback {
    margin: 0;
    text-decoration: none;
    color: white;
}

.header__phone_text {
    font-size: 16px;
    line-height: 31px;
    margin-left: 8px;
}

.header__phone {
    margin: 0;
    margin-right: 59px;
}

.header__container {
    width: 1180px;
    margin: 0 auto;
    display: flex;
    color: white;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Open-sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.header__account-mobile {
    background-image: url(../images/key.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    margin-left: auto;
}

.header__feedback-mobile {
    background-image: url(../images/feedback-mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.header__phone-mobile {
    background-image: url(../images/phone-mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    margin-right: 59px;
}

.header__mobile {
    display: none;
}



.navbar {
    height: 86px;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar__container {
    width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__nav {
    width: 774px;
}

.navbar__logo {
    display: flex;
}

.navbar__list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.navbar__list-item_link {
    text-decoration: none;
    color: #0173C1;
}

.navbar__list-item {
    font-family: 'Open-sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.navbar__main-logo {
    padding-right: 16px;
}

.navbar__burger-menu {
    display: none;
}

.navbar__burger-menu_close {
    background-image: url(../images/Close.svg);
}

.navbar__link-mobile {
    text-decoration: none;
    color: #0173C1;
    margin-bottom: 28px;
    font-family: 'Open-sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
}

.navbar__link-mobile:last-of-type {
    margin-bottom: 0;
}

.navbar__list-mobile {
    position: absolute;
    width: 360px;
    height: 264px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-sizing: border-box;
    top: 88px;
    right: 0;
    visibility: hidden;
    z-index: 100;
}

.navbar__list-mobile_open {
    visibility: visible;
}



@media screen and (max-width: 1220px) {
    .header__container {
        width: 90%;
    }
    .navbar__container {
        width: 90%;
    }
    .above__header {
        width: 90%;
    }

}

@media screen and (max-width: 1170px) {
    .navbar__list-item {
        font-size: 12px;
        line-height: 17px;
    }
}

@media screen and (max-width: 1080px) {
    .header__container {
        display: none;
    }

    .header__mobile {
        display: flex;
        width: 90%;
        margin: 0 auto;
        align-items: center;
    }

    .navbar__nav {
        display: none;
    }

    .navbar__burger-menu {
        display: block;
        background-image: url(../images/burger-menu.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 24px;
        height: 24px;
        border: none;
        background-color: transparent;
        
    }
}

@media screen and (max-width: 560px) {
    .navbar__main-logo {
        width: 253px;
        height: 55px;
    }   
}

@media screen and (max-width: 359px) {
    .navbar__list-mobile {        
        width: 320px;        
    }
}

