header.header {
    background: #fff;
    position: relative;
    z-index: 5;
    border-radius: 0px 0px 40px 40px;
}
a.header__logo {
    padding: 15px 0;
}
a.header__logo img {
    padding: 10px 0;
    width: 100%;
}

.header__container {
    display: flex;
    align-items: center;
}
button#menu-open {
    display: none;
    background: none;
    border: 0;
    padding: 0;
}
nav.nav.header__nav {
    margin-left: auto;
}
nav.nav.header__nav ul {
    display: flex;
    border: 1px solid #000;
    border-radius: 45px;
}
nav.nav.header__nav ul li {
    
}
nav.nav.header__nav ul li a {
    display: block;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    border-radius: 45px;
    padding: 11px 40px;

    transition: all 0.3s ease;
}
nav.nav.header__nav ul li a:hover,
nav.nav.header__nav ul li.current_page_item a {
    background: #000;
    color: #fff;
}
.header__actions {
    margin-left: 40px;
}

.header__actions a {
    background: #00A1F2;
    color: #fff;
    border: 0;
    border-radius: 45px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 55px;
    display: flex;
    height: 39px;
    align-items: center;
    line-height: 1;
}
.header__actions a:hover {
    background: #000;
    color: #fff;
}


.mobile-menu {
    position: fixed;
    left: -100%;
    z-index: 100;
    background: #ffffff;
    width: 80%;
    height: 100vh;
    padding: 30px 20px;
    box-shadow: 0px 1px 7px 0px #b6b6b6;
}
button.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 0;
    padding: 0;
    font-size: 33px;
}
nav.mobile-menu__nav {
    margin-top: 30px;
}
nav.mobile-menu__nav .menu-item a {
    color: #000;
    text-decoration: none;
    padding: 13px 0;
    display: block;
}
.mobile-menu__contacts {
    margin-top: 30px;
}
.mobile-menu__phone {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 19px;
    display: block;
    color: #000;
}
.mobile-menu__socials.socials {
    display: flex;
    align-items: center;
    gap: 15px;
    
    margin-top: 30px;
}