@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}
html{
    font-size:62.5%;
}
body{
    margin:0;
    padding:0;
    font-size:1.6rem;
    font-family: 'Inter', sans-serif;
    background:#fff;
    
    padding-top: 85px;
    color:#000;
}
*{
    font-family: 'Inter', sans-serif;
}
a{
    color: #000;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Inter', sans-serif!important;
}
#header img,#footer img{
    display: block;
    max-width:100%!important;
    max-height: unset!important;
    height:auto!important;
    margin: -10px 0;
}
#header .sw,#footer .sw{
    max-width:1030px;
    margin:0 auto;
    padding:0 15px;
}

/*
    Navigation
*/
header{
    padding: 0 30px;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 25px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 60;
    color: #000;
    background:#FFFFFF;
    border-bottom: 0;
}
header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
header .logo, header nav {
    position: relative;
    z-index: 3;
}
header .logo img {
    transition: .2s;
}
@media (min-width: 992px) {
    body.sticky-header #header{
        top: 0;
    }
    body.sticky-header header .header-inner {
        padding: 0
    }
    body.sticky-header header {
        -webkit-box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 5%);
            box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 5%);
    }
}
section.normal-default-regular-header {
    padding: 10px 0;
    background-color: #f5efef;
}
.regular-header-image img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}
header #navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header #navigation > ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
header #navigation > ul > li {
    list-style: none;
    margin: 0 0 0 30px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
header #navigation > ul > li > a {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 6rem;
    color: #9C1B2E;
    text-decoration: none;
    position: relative;
}
header #navigation > ul > li > a:before{
    position: absolute;
    left: calc(50% - 15px);
    top: 45px;
    height: 3px;
    width: 30px;
    background: #9C1B2E;
    color: #fff;
    border-radius: 3px;
    content: '';
    opacity: 0;
    transition: 0.2s ease-in-out;
}
header #navigation > ul > li > a.active,
header #navigation > ul > li > ul > li > a.active {
    font-weight: bold;
    color: #9C1B2E;
}
header #navigation > ul > li > a.active:before,
header #navigation > ul > li > a:hover:before{
    opacity: 1;
}
header#navigation a:hover {
    color: #9C1B2E;
}
header #navigation > ul > li > ul:empty {
    display: none;
}
header #navigation > ul > li:last-child > a {
    background: transparent;
    border: 1px solid #9C1B2E;
    color:#9C1B2E;
    border-radius: 5px;
    padding: 0px 15px 2px;
    line-height: 3.8rem;
    transition: 0.2s ease-in-out;
}
header #navigation > ul > li:last-child > a:before{
    display: none;
}
header #navigation > ul > li:last-child > a:hover{
    background: #9C1B2E;
    color: #fff;
}
/*
    Hamburger
*/
header .hamburger {
    display: block;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-duration: .15s;
         -o-transition-duration: .15s;
            transition-duration: .15s;
    -webkit-transition-property: opacity,-webkit-filter;
    transition-property: opacity,-webkit-filter;
    -o-transition-property: opacity,filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    text-transform: none;
    height: 50px;
    padding: 11px 0;
    float: right;
    margin-left: 15px;
    z-index: 5;
}
header .hamburger-box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 24px;
}
header .hamburger-inner {
    top: 50%;
    display: block;
}
header .hamburger .hamburger-inner {
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
         -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -webkit-transition-duration: 75ms;
         -o-transition-duration: 75ms;
            transition-duration: 75ms;
}
header .hamburger-inner,
header .hamburger-inner:after,
header .hamburger-inner:before {
    position: absolute;
    width: 30px;
    height: 3px;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: .15s;
         -o-transition-duration: .15s;
            transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 4px;
    background-color: #000;
}
header .hamburger-inner:after,
header .hamburger-inner:before {
    display: block;
    content: "";
}
header .hamburger-inner:before {
    top: -8px;
}
header .hamburger-inner:after {
    bottom: -8px;
}
header .hamburger .hamburger-inner:before {
    -webkit-transition: top 75ms ease .12s,opacity 75ms ease;
    -o-transition: top 75ms ease .12s,opacity 75ms ease;
    transition: top 75ms ease .12s,opacity 75ms ease;
}
header .hamburger .hamburger-inner:after {
    -webkit-transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    -o-transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19),-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
}

/* HAMBURGER MENU OPEN */
.menu-open .hamburger .hamburger-inner {
    -webkit-transition-delay: .12s;
         -o-transition-delay: .12s;
            transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
         -o-transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu-open .hamburger .hamburger-inner, .menu-open .hamburger .hamburger-inner:after, .menu-open .hamburger .hamburger-inner:before {
    background-color: #000;
}
.menu-open .hamburger .hamburger-inner:before {
    top: 0;
    -webkit-transition: top 75ms ease,opacity 75ms ease .12s;
    -o-transition: top 75ms ease,opacity 75ms ease .12s;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}
.menu-open header  .hamburger .hamburger-inner:after {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -o-transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

@media screen and (min-width: 992px) {
    header  #navigation > ul > li:hover > ul {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0)
    }
    header #navigation > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 50%;
        white-space: nowrap;
        transform: translateX(-50%) translateY(-10px);
        cursor: pointer;
        display: block;
        opacity: 0;
        background: #fff;
        list-style: none;
        padding: 10px 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px #0000002e;
        z-index: 1;
        pointer-events: none;
        transition: .2s;
    }
    header #navigation > ul > li > ul > li {
        margin: 0;
        padding: 0;
    }
    header #navigation > ul > li > ul > li a {
        display: block;
        font-size: 1.6rem;
        line-height: 2.6rem;
        color: #0e0e0e;
        text-decoration: none;
    }
    header .hamburger {
        display: none;
    }
}

.nav-holder {
    display: flex;
    align-items: center;
}
.language-bar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 5;
    width: 100%;
    padding: 0 45px;
    line-height: 25px;
    display: flex;
    justify-content: flex-end;
}
.language-bar span{
    font-size: 10px;
}
.language-bar .lang-switcher {
    display: flex;
}
.language-bar .lang-switcher a{
    margin-left: 10px;
}
.language-bar .lang-switcher a img{
    opacity: 0.4;
    margin-top: 2.5px;
}
.language-bar .lang-switcher a.active img{
    opacity: 1;
}

/*
    Page footer
*/
footer {
    padding: 65px 0;
    position: relative;
}
#footer {
    background: #fff;
}
footer a {
    text-decoration: none;
    transition: .2s;
    display: inline-block;
}
footer a:hover {
    transform: translateX(5px);
}
footer section{
    padding:0;
}
footer h3 {
    color: #9C1B2E;
    margin: 0 0 15px 0;
    word-break: break-word;
}
footer ul li, footer ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 2.6rem;
}
footer ul {
    padding: 0;
    margin: 20px 0;
}
footer ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer div.col-lg-2 p {
    line-height: 3.4rem;
}
footer .col-lg-4:last-child p strong {
    display: inline-block;
    width: 40px;
}
.bottom_footer .bottom-footer-content {
    border-top: 1px solid #252525;
    padding-top: 50px;
}
.bottom_footer a[href*="linkedin"]:before {
    font-family: 'Font Awesome 6 Brands';
    content: '\f08c';
    font-size: 40px;
    color: #0274B3;
}
.bottom_footer a[href*="linkedin"] {
    font-size: 0;
    display: flex;
}
.bottom-footer-content ul li {
    display: flex;
}
.bottom-footer-content ul li ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}
.bottom_footer div>ul {
    padding: 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
}
.bottom_footer {
    padding: 10px 0 130px;
}
.bottom_footer p{
    margin: 0;
    font-size: 1.4rem;
    line-height: 3.6rem;
}
.bottom_footer a{
    color: #0e0e0e;
}
footer a[href*=linkedin]:before {
    content: '\f08c';
    display: inline-block;
    font-family: "Font Awesome 6 Brands";
    color: #0077b5;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
}
footer div.col-lg-2 p a {
    text-decoration: none;
    color: #000;
    transition: 0.2s ease-in-out;
}
footer div.col-lg-2 p a:hover{
    color: #9C1B2E;
}

/*ORDER EAT SPECIFIC*/
body.sticky .shoppingcart{
    top: 120px;
}

@media (max-width: 1840px) {
    #footer .bottom_footer:before{
        height: 4px;
    }
    #footer .bottom_footer:after{
        right: calc(100% - 140px);
        width: 140px;
        height: 140px;
    }
}


@media (max-width: 1476px) {
    header .logo {
        max-width: 240px;
    }

    header #navigation > ul > li {
        margin: 0 0 0 15px;
    }
}
@media (max-width: 1176px) {
    header .logo {
        max-width: 200px;
    }

    header #navigation > ul > li {
        margin: 0 0 0 10px;
    }
}

/* Mobile */
@media (max-width: 991.8px) {
    header #navigation > ul > li > a:before{
        display: none;
    }
    #footer footer .col-lg-5, footer .col-lg-2{
        margin-bottom: 30px;
    }
    #footer footer .sw .row > div {
        margin-bottom: 30px;
    }
}


@media (max-width: 991.8px) {

    #header .sw {
        padding: 0;
    }
    #header .logo img {
        width: auto!important;
    }
    header {
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
        box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
    }
    header .sw {
        padding: 0;
    }

    header #navigation {
        width: 100%;
        display: block;
        height: calc(100% - 80px);
        position: fixed;
        z-index: 3;
        background: #fff;
        top: 80px;
        left: 0;
        padding: 30px 30px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        overflow-y: auto;
    }
    body.menu-open header #navigation {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    header #navigation > ul {
        display: block;
    }
    header #navigation > ul > li {
        display: block;
    }
    header #navigation ul > li > ul {
        padding: 0 0 0 15px;
    }
    header #navigation > ul > li > a,
    header #navigation > ul > li > ul > li,
    header #navigation > ul > li > ul > li > a {
        list-style: none;
        text-decoration: none;
    }
    header #navigation > ul > li > a:hover,
    header #navigation > ul > li > ul > li > a:hover {
        color: #fff;
    }
    header #navigation > ul > li > a {
        font-size: 2rem;
        line-height: 4.2rem;
    }
    header #navigation > ul > li > a:hover{
        color: #000;
    }
    header #navigation > ul > li > ul > li > a {
        display: block;
        font-size: 1.8rem;
        line-height: 4.2rem;
    }
    header #navigation > ul > li:last-child > a {
        display: inline-block;
        margin-top: 10px;
    }
}


@media (max-width: 600px) {
    #footer footer {
        padding: 30px 0 0 0;
    }
}