header {
    position: fixed;
    width: 100%;
    padding: 7px 0px;
    z-index: 99;
}

header.fixed-top {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;	
    background: rgba(255,255,255,0.8);
    box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -200px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.logo {
    position: relative;
    z-index: 123;
    float: left;
    width: 15%;
	padding-top: 10px;
	transition: all 0.6s ease;
}

.logo img{
	filter: brightness(0) invert(1);
	transition: all 0.6s ease;
}

header.fixed-top .logo{
	transition: all 0.6s ease;
	padding-top: 0px;
}

header.fixed-top .logo img{
	filter: none;
}

nav {
    position: relative;
    margin: 0 auto;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cssmenu:after,
#cssmenu>ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

#cssmenu #head-mobile {
    display: none
}

#cssmenu>ul {
    float: right;
    overflow: hidden;
	padding-top: 20px;
	transition: all 0.6s ease;
}
#cssmenu>ul:hover {
    overflow: visible;
}

.fixed-top #cssmenu>ul{
    padding-top: 7px;
}

#cssmenu>ul>li {
    float: left;
    margin-right: 5px;
}

#cssmenu>ul>li#corporate-menu {
    z-index: 9999;
}

#cssmenu>ul>li>a {
    padding: 18px 12px;
    font-size: 16px;
    text-decoration: none;
	position: relative;
    color: var(--white);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}


#cssmenu>ul>li>a:before{
	position: absolute;
	width: 0px;
	height: 2px;
	top: 0px;
	left: 50%;
	content:"";
	background: var(--primary);
	transition: all 0.3s ease;
}

#cssmenu>ul>li:hover>a:before{
	width: 100%;
	left: 0px;
	transition: all 0.3s ease;
}


#cssmenu>ul>li.user-login>a{
	padding: 0px;
	width: 42px;
	height: 42px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white);
	border-radius: 50%;
}

#cssmenu>ul>li.user-login>a{
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--white);
}

.fixed-top #cssmenu>ul>li.user-login>a{
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--white);
}

.fixed-top #cssmenu>ul>li.user-login>a:hover{
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

#cssmenu>ul>li.user-login>a:before{
	display: none;
}

.fixed-top #cssmenu>ul>li>a {
	color: var(--black);
}

#cssmenu>ul>li:hover>a{
	color: var(--primary);
}

#cssmenu>ul>li.active:hover>a {
    color: var(--white);
}

#cssmenu>ul>li.active>a {
    color: var(--white);
}

#cssmenu ul ul li.active a {
    color: var(--primary);
}

#cssmenu>ul>li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
    color: var(--primary);
}

#cssmenu ul li.subscribe-btn a {
    background: var(--primary);
    color: var(--white);
    z-index: 10;
    padding: 15px 24px;
    overflow: hidden;
    position: relative;
	font-weight: 700;
	text-transform: uppercase;
}


#cssmenu ul li.subscribe-btn a:hover,
#cssmenu ul li.subscribe-btn.active a {
    background: var(--secondary);
    color: var(--black);
}

#cssmenu ul li.subscribe-btn a:before {
    background: var(--secondary);
    position: absolute;
    right: 0px;
    top: 0px;
    content: "";
    width: 0px;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
}

#cssmenu ul li.subscribe-btn a:hover:before,
#cssmenu ul li.subscribe-btn.active a:before {
    width: 100%;
    right: inherit;
    left: 0px;
    opacity: 1;
    transition: all 0.3s ease;
}

#cssmenu>ul>li.has-sub>a {
    padding-right: 30px
}

#cssmenu>ul>li.has-sub>a:after {
    position: absolute;
    top: 17px;
    right: 10px;
    display: block;
    color: var(--white);
	font-family: FontAwesome;
    content: '\f107';
	transition: all .3s ease;
}

header.fixed-top #cssmenu>ul>li.has-sub>a:after{
	color: var(--black);
}
#cssmenu>ul>li.has-sub:hover>a:after {
    transform: rotate(180deg);
	color: var(--primary);
    transition: all .3s ease;
}

#cssmenu ul ul {
    position: absolute;
    left: 0px;
    top: 95px;
    z-index: 999;
    background: #FFF;
    border-radius: 5px;
    padding: 7px;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease;
    box-shadow: 5px 0px 15px rgba(0, 0, 0, 0.2);
}

#cssmenu>ul>li.active>a:after,
#cssmenu>ul>li.active>a:hover:after,
#cssmenu>ul>li.active:hover>a:after{
	color: #FFF;
	transition: all 0.3s ease;
}

#cssmenu ul li.mega-menu {
    position: unset;
}

#cssmenu ul li.mega-menu ul {
    width: 100%;
    top: 135px;
    min-height: 180px;
    transition: all 0.6s ease;
}

.fixed-top #cssmenu ul ul,
.fixed-top #cssmenu ul li.mega-menu ul {
    top: 95px;
}

#cssmenu ul li.mega-menu ul ul li h3 {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 16px;
    color: #000;
}

#cssmenu ul li.mega-menu ul.active {
    min-height: 370px;
    transition: all 0.6s ease;
}

#cssmenu ul li.mega-menu>ul:before {
    position: absolute;
    left: 265px;
    top: 0px;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    content: "";
}

#cssmenu ul li.mega-menu ul li {
    max-width: 250px;
}

#cssmenu ul li.mega-menu ul li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

#cssmenu ul li.mega-menu ul ul {
    transform: none;
    top: 0;
    box-shadow: none;
    left: -30px;
    display: flex;
    min-height: auto;
    padding: 0px;
    width: 590px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.fixed-top #cssmenu ul li.mega-menu ul ul {
    top: 0px;
}

#cssmenu ul li.mega-menu ul.active ul {
    min-height: inherit;
}

#cssmenu ul li.mega-menu ul li:hover ul {
    opacity: 0;
    visibility: hidden;
}

#cssmenu ul li.mega-menu ul li.active a::before,
#cssmenu ul li.mega-menu ul li.active a::after {
    background: #9d9d9d;
}

#cssmenu ul li.mega-menu ul li.active ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(50px, 0px, 0);
}


#cssmenu ul li.mega-menu ul li#food-menu ul li:nth-child(1),
#cssmenu ul li.mega-menu ul li#food-menu ul li:nth-child(6) {
    width: 100%;
    max-width: inherit;
    text-align: left;
}

#cssmenu ul li.mega-menu ul li#food-menu ul {
    top: -42px;
}

#cssmenu ul li.mega-menu ul ul li {
    text-align: center;
    padding: 5px;
    width: 25%;
}

#cssmenu ul li.mega-menu ul li.active ul li a {
    background: transparent;
    color: #000;
    width: auto;
}

#cssmenu ul li.mega-menu ul li.active ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

#cssmenu ul li.mega-menu ul li.active ul li.active a,
#cssmenu ul li.mega-menu ul li.active ul li.active a:hover {
    background: #D31217;
    color: #FFF;
}

#cssmenu ul li.mega-menu ul ul li a {
    border: none;
    border-radius: 10px;
    max-width: 150px;
}

#cssmenu ul li.mega-menu ul ul li a img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

#cssmenu ul ul li {
    margin: 1px 0px;
    transition: all .6s ease
}

#cssmenu li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50px, 0);
    transition: all .6s ease;
}

#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0
}

#cssmenu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 13px 15px;
    width: 250px;
    font-size: 14px;
    text-decoration: none;
    color: #191A1A;
    font-weight: 400;
    display: block;
    position: relative;
    border-radius: 0px;
    font-family: "Montserrat", sans-serif;
}

#cssmenu ul ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0px;
    content: "";
    background: var(--primary);
    transition: all 0.3s ease;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
    border-bottom: 0
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li.active a,
#cssmenu ul ul li a:hover,
#cssmenu ul li.mega-menu ul li.active a:hover {
    color: var(--primary);
    padding: 13px 15px 13px 20px;
}

#cssmenu ul ul li.active a:before,
#cssmenu ul ul li a:hover:before,
#cssmenu ul li.mega-menu ul li.active a:before {
    height: 100%;
    transition: all 0.3s ease;
}

#cssmenu ul li.mega-menu ul li#dairy-menu:before,
#cssmenu ul li.mega-menu ul li#food-menu:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0px;
    content: "";
    background: #D31217;
    transition: all 0.3s ease;
}

#cssmenu ul li.mega-menu ul li.active#dairy-menu:before,
#cssmenu ul li.mega-menu ul li.active#food-menu:before {
    height: 100%;
    transition: all 0.3s ease;
}

#cssmenu ul li.mega-menu ul li.active#dairy-menu a:before,
#cssmenu ul li.mega-menu ul li.active#food-menu a:before {
    height: 5px;
}

#cssmenu ul li.mega-menu ul li#dairy-menu ul li a:before,
#cssmenu ul li.mega-menu ul li#food-menu ul li a:before {
    display: none;
}

#cssmenu ul ul li.has-sub>a:after {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 5px;
    height: 1px;
    display: block;
    transform: rotate(-45deg);
    background: #747474;
    content: ''
}

#cssmenu ul ul li.has-sub>a:before {
    position: absolute;
    top: 15px;
    left: inherit;
    right: 14px;
    display: block;
    width: 1px;
    height: 5px;
    transform: rotate(-45deg);
    background: #747474;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease
}

#cssmenu ul ul>li.has-sub:hover>a:before,
#cssmenu ul ul>li.has-sub:hover>a:after {
    background: #9d9d9d;
}


#cssmenu ul ul ul li.active a {
    border-left: 1px solid #333
}



@media (max-width:1200px) {
    #cssmenu>ul>li>a {
        padding: 15px 5px;
		font-size: 14px;
    }

    #cssmenu ul li.mega-menu ul ul li a img {
        max-width: 50px;
    }
	
	#cssmenu>ul>li.active>a{
		color: #FFF;
		background: #D31217;
	}
	
	#cssmenu>ul>li.user-login>a{
		margin-right: 10px;
	}

    .fixed-top #cssmenu ul li.subscribe-btn a{
        padding: 15px 20px;
    }

    #cssmenu ul li.mega-menu ul ul {
        width: 400px;
    }
}

@media (max-width:1000px) {
    .logo2 {
        display: none
    }

    nav {
        width: 100%;
    }
	
	.logo{
		width: 40%;
		padding-top: 0px;
	}
	
	.logo img{
		max-width: 100%;
	}

    header .container {
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .top-bar .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #cssmenu {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    #cssmenu ul {
        width: 100%;
        display: none;
    }

    #cssmenu ul li.mega-menu {
        position: relative;
    }

    #cssmenu ul li.mega-menu ul {
        top: 0px;
        min-height: inherit;
    }

    #cssmenu ul li.mega-menu ul li {
        max-width: inherit;
    }

    #cssmenu ul li {
        width: 100%;
        border-top: 1px solid #ebebeb;
    }

    #cssmenu ul ul li.active a {
        color: #000;
    }

    #cssmenu ul ul li,
    #cssmenu li:hover>ul>li {
        height: auto
    }

    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
        border-bottom: 0;
        border-radius: 0px;
        padding: 15px 10px !important;
		color: var(--black);
    }

    #cssmenu>ul>li {
        float: none
    }

    #cssmenu ul li.mega-menu ul ul {
        width: auto;
        display: block;
        left: 0;
    }

    #cssmenu ul li.mega-menu ul ul li {
        padding: 0px;
        width: 100%;
        text-align: left;
    }

    #cssmenu ul li.mega-menu ul ul li h3 {
        padding: 0px 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    #cssmenu ul li.mega-menu ul.active {
        min-height: auto;
    }

    #cssmenu ul li.mega-menu ul ul li a {
        position: relative;
        padding: 15px 10px 15px 60px !important;
    }

    #cssmenu ul li.mega-menu ul li#food-menu ul {
        top: 0px;
		max-height: inherit;
    }

    #cssmenu ul li.mega-menu ul li:hover ul {
        opacity: 1;
        visibility: visible;
    }

    #cssmenu ul li.mega-menu ul li.active ul li a {
        border-radius: 0px;
		max-width: 100%;
    }

    #cssmenu ul li.mega-menu ul ul li a img {
        position: absolute;
        left: 10px;
        top: 5px;
        max-width: 35px;
    }

    #cssmenu ul li.mega-menu ul li#food-menu ul li a img {
        top: 10px;
    }

    header.fixed-top #cssmenu ul ul,
    header.fixed-top #cssmenu ul li.mega-menu ul {
        top: 0px;
    }

    #cssmenu ul li.mega-menu ul {
        width: calc(100% - 50px);
    }

    #cssmenu ul li.mega-menu ul li a:hover {
        color: #D31217;
    }

    #cssmenu ul ul li a {
        padding-left: 25px
    }

    #cssmenu ul li.mega-menu>ul:before {
        display: none;
    }

    #cssmenu ul ul ul li a {
        padding-left: 35px
    }
	
	#cssmenu>ul>li>a:before{
		display: none;
	}

    #cssmenu ul ul,
    #cssmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        padding: 0px 10px;
		background: #f3f3f3;
        margin: 0;
        opacity: 1;
        top: 0px;
        max-height: 300px;
        overflow-y: auto;
        visibility: visible;
        text-align: left;
        transform: none !important;
        transition: all 0.2s ease;
        border-radius: 0px;
        box-shadow: none;
    }

    #cssmenu li:hover>ul {
        transition: all 0.2s ease;
    }

    #cssmenu>ul>li.has-sub>a:after,
    #cssmenu>ul>li.has-sub>a:before,
    #cssmenu ul ul>li.has-sub>a:after,
    #cssmenu ul ul>li.has-sub>a:before {
        display: none
    }

    #cssmenu #head-mobile {
        display: block;
        text-align: right;
    }

    #cssmenu ul li.subscribe-btn, #cssmenu ul li.user-login {
        display: none;
    }

    #cssmenu ul.d-flex{
        background: transparent;
        left: inherit;
        right: 0px;
        top: 5px;
        box-shadow: none;
        width: 250px;
    }

    #cssmenu ul.d-flex li.subscribe-btn, #cssmenu ul.d-flex li.user-login {
        display: inline-block;
        width: auto;
        border-top: none;
    }

    #cssmenu ul.d-flex li.user-login a{
        color: var(--white);    
    }

    #head-mobile a.subscribe-btn {
        text-align: center;
        border-radius: 30px;
        background: #194B98;
        color: #FFF;
        padding: 13px 20px;
        margin-top: 20px;
        display: inline-block;
        margin-right: 50px;
    }

    header.fixed-top #head-mobile a.subscribe-btn {
        margin-top: 10px;
    }

    header.fixed-top .button {
        top: 0px;
    }

    #head-mobile a.subscribe-btn:hover {
        background: #D31217;
    }

    header{
        padding: 7px 0px 14px 0px;
    }

    header .button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 20px;
        top: 0px;
        cursor: pointer;
        z-index: 12399994;
    }

    header .button:after {
        position: absolute;
        top: 28px;
        right: 0px;
        display: block;
        height: 10px;
        width: 30px;
        border-top: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        content: ''
    }
	
	header.fixed-top .button:after{
		border-color: var(--black);
	}
	
	header.fixed-top .button:before{
		background: var(--black);
	}

    header .button:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 20px;
        right: 0px;
        display: block;
        height: 2px;
        width: 30px;
        background: var(--white);
        content: ''
    }

    header .button.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        background: var(--primary);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    header .button.menu-opened:before {
        top: 23px;
        background: var(--primary);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    header.fixed-top .button.menu-opened:after,
    header.fixed-top .button.menu-opened:before {
        top: 30px;
    }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        background: #dbdbdb;
        display: block;
        height: 46px;
        width: 46px;
        border-bottom: 1px solid #bbb;
        cursor: pointer
    }

    #cssmenu .submenu-button.submenu-opened {
        background: #cfcfcf;
    }

    #cssmenu ul ul .submenu-button {
        height: 44px;
        width: 44px
    }

    #cssmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #878787;
        content: ''
    }

    #cssmenu ul ul .submenu-button:after {
        top: 20px;
        right: 17px
    }

    #cssmenu .submenu-button.submenu-opened:after {
        background: #878787
    }

    #cssmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #878787;
        content: ''
    }

    #cssmenu ul ul .submenu-button:before {
        top: 17px;
        right: 20px
    }

    #cssmenu .submenu-button.submenu-opened:before {
        display: none
    }

    #cssmenu ul ul ul li.active a {
        border-left: none
    }

    #cssmenu>ul>li.has-sub>ul>li.active>a,
    #cssmenu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }

    #cssmenu ul {
        position: absolute;
        top: 60px;
        left: 0px;
        padding: 0px;
        z-index: 999;
        background: #FFF;
        box-shadow: 10px 10px 20px rgb(0 0 0 / 20%);
    }

    header.fixed-top #cssmenu ul {
        top: 53px;
    }

    header.fixed-top #cssmenu ul.d-flex {
        top: 3px;
    }

    #cssmenu .submenu-button {
        background: #efefef;
        border-bottom: 1px solid #cfcfcf;
    }
}

@media (max-width: 760px){
    #cssmenu ul li.subscribe-btn{
        display: block;
    }
    #cssmenu ul.d-flex{
        right: 60px;
        width: 50px;
    }
    #cssmenu ul.d-flex li.subscribe-btn{
        display: none;
    }
    header.fixed-top #cssmenu ul.d-flex{
        top: 0px;
    }
}