.site-header-new {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
}

.site-header-new__inner {
    position: relative;
    display: flex;
    height: 90px;
    padding: 5px 300px 5px 156px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.site-header-new__logo img {
    width: 120px;
    display: block;
}

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

.site-header-new__nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.site-header-new a {
    color: #000;
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.site-header-new__contact {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    height: 90px;
    padding: 35px 78px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #E31A4C;
    color: #fff !important;
}

.site-header-new__contact:hover {
    background: #C3143F;
    color: #fff !important;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .site-header-new__inner {
        padding: 5px 220px 5px 30px;
    }

    .site-header-new__nav {
        gap: 20px;
    }

    .site-header-new__contact {
        padding: 35px 40px;
    }
}

@media (max-width: 767px) {
    .site-header-new__inner {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-cat,
    .site-header-new__nav {
        flex-direction: column;
        gap: 15px;
    }

    .site-header-new__contact {
        position: static;
        height: auto;
        padding: 12px 25px;
    }
}