.header-new .header__wrap {
    align-items: center;
    gap: 20px;
}

.header-new .header__logo {
    flex-shrink: 0;
}

.header-new .header__logo svg {
    width: 125px;
    height: auto;
}

.header-new .menuNavLink__text  {
    font-size: 18px;
}

.header-new .menuNav__link {
    width: 100%;
    height: 140px;
    gap: 10px;
    max-width: initial;
    padding: 0 10px;
}

.header-new .menuNav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.header-new .wpml-ls-legacy-dropdown {
    flex-shrink: 0;
    max-width: initial;
    width: 65px;
}

.header-new .menuNavLink__img {
    margin-right: 0;
    width: 45px;
    height: auto;
}

.kic__mainSlider {
    position: relative;
}

.kic__mainSlider:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 25%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    display: block;
    pointer-events: none;
}

.header-new .nav-group {
    position: relative;
}

.header-new .menuNav__submenu {
    position: absolute;
    width: 100%;
    top: 100%;
    transition: .4s ease;
}

.header-new .nav-group:hover .menuNav__submenu {
    display: block;
    opacity: 1;
}