.header {
    display: block;
    position: fixed;
    z-index: 10;
    width: 100%;
}
.header__nav-bg {
    background-color: #242424;
}
.header__nav,
.header__left,
.header__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    padding: 10px 0px;
}

.header__logo {
    display: inline;
    padding-top: 4px;
}
.header__logo a {
    display: inline-block;
}
.header__logo img {
    width: 153px;
}
.header__logo--device-mobile {
    display: none;
}

.header__menu {
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-right: 25px;
}
.header-menu__li {
    margin-right: 20px;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
}
.header-menu__li a {
    color: #fff;
    text-decoration: none;
}
.header-menu__li:last-child {
    margin-right: 0px;
}
.header-menu__li:hover,
.header-menu__li:hover a {
    color: #007558;
    cursor: pointer;
}
.header-menu__li--active a {
    color: #F2165C;
}

.header__phone {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin-right: 25px;
}

.header-button-dropdown {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
}
.header-button-dropdown:hover {
    cursor: pointer;
}
.header-button-dropdown__burder {
    position: relative;
    width: 40px;
    height: 1px;
    background-color: #fff;
}
.header-button-dropdown__burder::after {
    position: absolute;
    content: '';
    top: -8px;
    width: 40px;
    height: 1px;
    background-color: #fff;
}
.header-button-dropdown__burder::before {
    position: absolute;
    content: '';
    top: 8px;
    width: 40px;
    height: 1px;
    background-color: #fff;
}
.header-button-dropdown--active {
    justify-content: center;
}
.header-button-dropdown--active .header-button-dropdown__burder {
    background-image: url('../img/icons/close-green.svg');
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}
.header-button-dropdown--active .header-button-dropdown__burder,
.header-button-dropdown--active .header-button-dropdown__burder::before,
.header-button-dropdown--active .header-button-dropdown__burder::after {
    background-color: transparent;
}

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

@media screen and (max-width: 500px) {
    .header__logo img {
        width: 73px;
    }
    .header__menu {
        display: none;
    }
    .header__phone {
        font-size: 16px;
    }
    .header__logo--device-pc {
        display: none;
    }
    .header__logo--device-mobile {
        display: flex;
    }
    .header__logo--device-mobile img {
        width: 34px;
    }
}