.nav-w .container {
  padding-left: 0;
  padding-right: 0;
}
/* Menu */
.ozmenu ul.ozmenu-nav {
    display: flex;
    align-items: flex-start;
    justify-content:space-between;
    list-style: none;
    padding-left: 0px;
    margin: 0;
}
.ozmenu ul.ozmenu-nav>li {
    position: relative;
    float: left;
    width: auto;
}
.ozmenu ul.ozmenu-nav>li a:hover{
    color: rgb(0, 0, 0) !important;
}
.ozmenu ul li.dropdownitem>a:after{
    width: 15px;
    height: 15px;
    text-align: center;
    float: right;
    background-color: #000;
    content: "";
    margin: 1px 0px 0px 3px;
    -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"></path></svg>');
    mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"></path></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
section.section-search-w {
    z-index: 0;
}
.ozmenu ul li .dropdown{
    display:none;
    position: absolute;
    min-width: 200px;
    z-index: 777;
}
.item.active .nav-item__link, .item:hover .item__link, .item__link:hover {
  background-color: #ff9c00;
  background-image: -webkit-gradient(linear,left bottom,left top,from(#ff9c00),to(#ff4a00));
  background-image: -webkit-linear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: -moz- oldlinear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: -o-linear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: linear-gradient(0deg,#ff9c00,#ff4a00);
  border: 0;
  color: #fff;
  text-decoration: none;
}
.ozmenu ul.ozmenu-nav .dropdown.active ul li a {
    background-color: #fff;
     background-image: none;
     color: black;
}
.ozmenu ul.ozmenu-nav .dropdown.active ul li.item.active a, .ozmenu ul.ozmenu-nav .dropdown.active ul li a:hover {
  background-color: #ff9c00;
  background-image: -webkit-gradient(linear,left bottom,left top,from(#ff9c00),to(#ff4a00));
  background-image: -webkit-linear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: -moz- oldlinear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: -o-linear-gradient(bottom,#ff9c00,#ff4a00);
  background-image: linear-gradient(0deg,#ff9c00,#ff4a00);
  border: 0;
  color: #fff;
}
@media screen and (min-width: 993px) {
    .ozmenu ul.ozmenu-nav>li a{
        font-weight: 500;
        text-decoration: none;
        padding: 10px 10px;
        background-color: #fff;
        display: inline-block;
        font-size: 14px;
        height: 100%;
        position: relative;
    }
    .ozmenu ul li.dropdownitem:hover .dropdown{
        display: block;
        position: absolute;
        margin: 0;
        padding: 5px 0px;
        min-width: 220px;
        padding-top: 0px !important;
    }
    .ozmenu ul li.dropdownitem:hover .dropdown .dropdown{
        display: none;
    }
    .ozmenu ul li.dropdownitem .dropdown li.dropdownitem:hover .dropdown {
        padding-left: 16px;
        position: absolute;
        margin: 0;
        padding-top: 0px !important;
        min-width: 200px;
        display: inline-table;
        top: 0 !important;
        left: 100% !important;
        right: auto !important;
    }
    .ozmenu ul li.dropdownitem .dropdown .dropdown .dropdown {
        display: none !important;
        visibility: hidden;
    }
    .ozmenu ul li.dropdownitem .dropdown ul {
        list-style: none;
        background-color: #fff;
        float: left;
        padding: 1px;
        margin-left: 0;
    }
    .ozmenu ul li.dropdownitem ul li a{
        font-weight: 400;
        text-decoration: none;
        padding: 5px 0px;
        float: left;
        width: 100%;
        border-radius: 0px;
        font-size: 14px;
    }
    .ozmenu ul.ozmenu-nav .dropdown ul li a:hover {
        padding-left: 7px;
        transition: all 0.15s ease-out;
    }
    /* Animations */
    .dropdownitem .dropdown{
        animation: translateDown 200ms 0ms ease-in-out forwards;
        transform-origin: top center;
    }
    .dropdownitem .dropdownitem .dropdown {
        transform-origin: top center !important;
        animation: translateX 200ms 0ms ease-in-out forwards !important;
    }
    @keyframes translateDown {
        0% {
            transform: scaleY(0)
        }
        80% {
            transform: scaleY(1.1)
        }
        100% {
            transform: scaleY(1)
        }
    }
    @keyframes translateX {
        0% {
            opacity: 0;
            transform: translateX(-60px);
        }
        80% {
            transform: translateX(-5px);
        }
        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    /* Dropdown + Dropdown */
    .ozmenu ul li.dropdownitem ul li .nav-dropdown:after{
        width: 15px;
        height: 15px;
        text-align: center;
        float: right;
        background-color: #000;
        content: "";
        margin: 1px 0px 0px 3px;
        -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"></path></svg>');
        mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"></path></svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
}
.ozmenu ul.ozmenu-nav .dropdown ul li {
    float: left;
    width: 100%;
}
.ozmenu ul.ozmenu-nav .dropdown ul li a{
    padding: 8px 0px;
    padding-left: 7px;
}
.ozmenu ul li.dropdownitem ul li a,
.ozmenu ul li.dropdownitem ul li .dropdown ul li a {
    border-bottom: 1px dotted #eee;
}
.ozmenu ul li.dropdownitem ul li:last-child a,
.ozmenu ul li.dropdownitem ul li .dropdown ul li:last-child a {
    border-bottom: 0px !important;
}
/* Dropdown + Dropdown */
.ozmenu ul li.dropdownitem ul li a:before,
.ozmenu ul li.dropdownitem ul li .nav-dropdown ul li a:after{
    display: none !important;
}
.ozmenu ul li.dropdownitem ul li .nav-dropdown ul li:last-child a{
    border-bottom: 0px !important;
}
.ozmenu ul li.dropdownitem .dropdown ul li.dropdownitem {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}
/* Responsive Menu */
.menu-close,
.menu-open {
    display: none;
}
@media screen and (min-width: 993px) {
.ozmenu ul.ozmenu-nav .dropdown ul li a {
  text-align: left;
}
}
@media screen and (max-width: 993px) {
.nav-w {
  background: linear-gradient(90deg, #FF6C01 0%, #000 100%);
  color: #fff;
}
    .menu-open,
    .menu-close {
        cursor: pointer;
        text-decoration: none;
    }
    .menu-open span.open svg,
    .menu-close span.close {
        font-size: 26px;
    }
.open-text {
  font-size: 1.1em;
  line-height: 1.2em;
  padding: 0 0 0 .5rem;
  margin-top: -3px;
}
.menu-open .topline-button__icon-bar {
      background-color: white;
    }
    .menu-open {
        display: block;
    }
    .menu-close {
        display: none; 
    }
    .ozmenu {
        position: relative;
        display: none;
    }
    .ozmenu.active {
        display: block;
    }
    .menu-open {
        display: block !important;
        float: right;
    }
    .mobile-menu-active .menu-close {
        display: block !important;
        z-index: 15;
        position: absolute;
        right: 13px;
        left: unset !important;
        top: 0px;
        float: left;
    }
    .ozmenu-nav {
        display: none !important;
    }
    .ozmenu.active .ozmenu-nav {
        display: block !important;
    }
    .ozmenu.active{
        position: fixed;
        left: 0px;
        top: 0px;
        margin-top: 0px !important;
        width: 40%;
        height: 100vh;
        display: flex;
        z-index: 14;
    }
    .ozmenu.active .ozmenu-nav{
        background-color: #fff;
        float: left;
        margin-top: 0px;
        padding: 40px 20px;
        width: 100%;
        height: 100vh;
        overflow: scroll;
        transform-origin: top center !important;
    }
    .ozmenu.active .ozmenu-nav, .menu-close {
        animation: translateX 400ms 0ms ease-in-out forwards !important;
    }
    @keyframes translateX {
        0% {
            opacity: 0;
            transform: translateX(-160px);
        }
        80% {
            transform: translateX(-5px);
        }
        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    .ozmenu ul.ozmenu-nav>li {
        float: left;
        width: 100%;
    }
    .ozmenu ul.ozmenu-nav>li a{
        float: left;
        width: 100%;
        text-decoration: none;
        padding: 10px 0px;
        border-bottom: 1px solid #ddd;
    }
    .ozmenu ul.ozmenu-nav>li a:hover {
        float: left;
        width: 100%;
        transition: all 0.25s ease-out;
        text-decoration: none;
        padding: 10px 0px;
    }
    .ozmenu ul.ozmenu-nav>li:last-child a{
        border-bottom: 0px solid #ddd;
    }
    .ozmenu.active ul li .nav-dropdown.opened + .dropdown ul {
        list-style: none;
        float: left;
        margin-left: 0px;
        padding-left: 7px;
    }
    .ozmenu.active ul li .nav-dropdown.opened + .dropdown ul .dropdown ul {
        padding-left: 15px;
    }
    .ozmenu.active ul li .nav-dropdown.opened + .dropdown{
        display: block;
        position: relative;
        margin: 0;
        padding: 5px 0px;
        min-width: unset;
        padding-top: 0px !important;
        float: left;
    }
    .ozmenu.active ul li.dropdownitem:hover + .dropdown + .dropdown{
        display: none;
    }
    .ozmenu .child.opened .dropdown {
  display: block;
position: relative;
    width: 100%;
}
    .ozmenu .child.opened .dropdown ul {
list-style: none;
  padding-left: 0;
  margin-left: 0;
}
    #menu-overlay {
        background-color: rgba(0,0,0,.3);
        float: left;
        display: none;
        width: 100%;
        height: 100vh;
        z-index: 13;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    #menu-overlay.show {
        display: block !important;
    }
    .menu-open .open {
        /*width: 140px;*/
        height: 30px;
        /*float: right;
        color:#fff;*/
        display: inline-flex;
        padding-top: 11px;

    }
    .mobile-menu-active .menu-open .open, .menu-open .open:hover {
   }
    .menu-close .close {
        width: 38px;
        height: 38px;
        float: right;
        background-color: #000;
        -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="38px" height="38px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-x close" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"></path></svg>');
        mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="38px" height="38px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-x close" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"></path></svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        transition: all 0.2s ease-out;
    }
    .menu-close .close:hover {
        background-color: #000;
        -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="30px" height="30px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-arrow-left" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z"></path></svg>');
        mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="30px" height="30px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-arrow-left" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z"></path></svg>');
    }

    .ozmenu.active ul li.dropdownitem>a.opened:after{
        -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="12px" fill="currentColor" class="bi bi-chevron-up" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg>') !important;
        mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="12px" fill="currentColor" class="bi bi-chevron-up" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg>') !important;
    }
.ozmenu ul li.dropdownitem > a::after {
  display: none;
}


.container-nav-w {position: relative;}
@media screen and (max-width: 500px) {
    .ozmenu.active {
        width: 70%;
    }
    .nav-w{border-radius:25px;}
    .nav-w .container {
  padding-left: 15px;
  padding-right: 15px;
}
.container-nav-w {
  padding: 0 14px;
  background: white;
  padding-bottom: 14px;
}
.topline-w{background: white;}
.topline-button__icon-bar{background-color: rgba(0, 0, 0, 1)}
.topline-button__title, .topline-nav-item__link{color: rgba(0, 0, 0, 1)}
.topline-search__form{background-color: rgba(245, 245, 245, 1)}
.topline-search__input{background-color: transparent;}
.header-phones-top.m-d-flex.m-j-c-f-e {
  margin-top: 4px;
}
}
@media screen and (max-width: 400px) {
    .ozmenu.active{
        width: 100%;
    }
}