html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #777777;
    background-color: #ffffff;
    font: normal 14px/120% 'Open Sans', serif;
}

@media (max-width: 767px) {
    body {
        font-size: 12px;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:visited,
a:focus {
    color: #777777;
    text-decoration: none;
}

input,
textarea,
select,
a {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1em 0;
    padding: 0;
    line-height: 120%;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.4em;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #777777;
    font: normal 1em/100% Helvetica, sans-serif;
    white-space: pre-line;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #777777;
    font: normal 1em/100% Helvetica, sans-serif;
    white-space: pre-line;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #777777;
    font: normal 1em/100% Helvetica, sans-serif;
    white-space: pre-line;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #777777;
    font: normal 1em/100% Helvetica, sans-serif;
    white-space: pre-line;
}

/* container */
.container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

/* custom grid */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1em;
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0 1em;
}

.col_1-2 {
    width: 50%;
}

.col_1-3 {
    width: 33.33333333333333%;
}

.col_1-4 {
    width: 25%;
}

.col_1-5 {
    width: 20%;
}

/* Button */
.btn--form {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn--form:hover {
    color: #000000;
    background-color: #ffffff;
}

/* Universal object fit (emulates object fit) */
.u-object-fit {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}

/* mobile menu animations */
@-webkit-keyframes anim-mobile-menu-btn1 {
    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes anim-mobile-menu-btn1 {
    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes anim-mobile-menu-btn2 {
    100% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@keyframes anim-mobile-menu-btn2 {
    100% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

#page-wrapper {
    width: 100%;
    overflow: hidden;
}

/* mobile menu button */
.mobile-menu-btn {
    float: left;
    display: block;
    width: 27px;
    height: 18px;
    cursor: pointer;
    position: relative;
    margin: 0;
    text-indent: -9999px;
    z-index: 60;
}

.mobile-menu-btn span:before,
.mobile-menu-btn:before,
.mobile-menu-btn:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #777777;
    ;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mobile-menu-btn:before {
    top: 8px;
}

.mobile-menu-btn span:before {
    top: 16px;
}

/* after click menu button clicked */
.push body,
.push {
    overflow: hidden;
}

.push .mobile-menu-btn:before {
    opacity: 0;
}

.push .mobile-menu-btn:after {
    top: 9px;
    -webkit-animation: anim-mobile-menu-btn1 0.3s 0.3s ease forwards;
    animation: anim-mobile-menu-btn1 0.3s 0.3s ease forwards;
}

.push .mobile-menu-btn span:before {
    top: 9px;
    -webkit-animation: anim-mobile-menu-btn2 0.3s 0.3s ease forwards;
    animation: anim-mobile-menu-btn2 0.3s 0.3s ease forwards;
}

/* main menu */
#main-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 70px 20px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 50;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    /* width: 100vw; */
    width: auto;
    margin-left: -80px;
    margin-right: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.push #main-nav {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.full-height {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /* height: 100vh; */
    /* overflow: hidden; */
}

.bg-img.compat-object-fit {
    background-size: cover;
    background-position: center center;
}

.bg-img.compat-object-fit img {
    opacity: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/*****************************
* INTRO
*****************************/
#asm-section-intro header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1280px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 80px;
    position: relative;
    width: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 99;
    background-color: #ffffff;
}

@media (max-width:767px) {
    /* #asm-section-intro header {
        padding: 30px;
    } */
    #asm-section-intro header {
        padding: 0px 30px 50px 30px;
    }
}

/* Main Language Menu */
#main-lang {
    position: relative;
}

#main-lang li {
    display: block;
    margin: 0 0 1em 0;
}

/* Logo */
#logo-asm {
    display: block;
    /* width: 31%; */
    width: auto;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

#logo-asm img {
    display: block;
    /* width: 100%; */
    width: auto;
    /* height: auto; */
    height: 33vh;
    /* margin-left: 16px; */
    margin-left: -1vh;
}

/* Main Slideshow */
.main-slideshow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 30px 80px;
}

.swiper-container {
    width: 100%;
    height: 33vh;
    /* height: 100%; */
    /* min-height: 270px; */
}

.swiper-slide {
    height: 33vh;
    /* min-height: 270px; */
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 54px;
    /* margin-top: -65px; */
    margin-top: -60px;
    z-index: 10;
    cursor: pointer;
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: 0;
}

.swiper-button-next {
    background-image: url(../images/raw/slider_arrow_right.svg);
    right: 0;
    margin-right: 20px;
}

.swiper-button-prev {
    background-image: url(../images/raw/slider_arrow_left.svg);
    left: 0;
    margin-left: 20px;
}

@media (max-width:767px) {
    .main-slideshow {
        padding: 30px;
        /* padding-bottom: 100px; */
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* @media screen and (max-width:400px) {
    .main-slideshow {
        padding: 30px 30px 60px 30px;
    }
} */

.menu-intro-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    height: 40px;
    margin-top: 25px;
    background-image: url(../images/block_bg_sprite.png);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: auto;
}

.menu-intro-footer a {
    text-transform: uppercase;
    /* margin: 0 80px 0.5em 80px; */
}

.menu-intro-footer .scroll-to {
    text-align: center;
    width: calc(33% - 34px);
    font-size: 1.3em;
}

@media (max-width:567px) {
    .menu-intro-footer {
        display: none;
        background: none;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .menu-intro-footer:before {
        display: none;
    }
}


/*****************************
* MENU
*****************************/
#asm-section-menu {
    padding: 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
}

#asm-section-menu:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    right: -100vw;
    bottom: 0;
    background-color: #7f7f7f;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#asm-section-menu.open::before {
    right: calc(110px - 50%);
}

.close-menu {
    opacity: 0;
    color: #FFF !important;
    font-size: 16px;
    position: absolute;
    top: -91px;
    right: 30px;
}

#asm-section-menu.open .restaurant-menu-heading-container h2 {
    color: #ffffff;
}

.restaurant-menu-heading-container {
    position: relative;
    text-align: center;
    /* margin: 3em 0; */
    /* margin: 1.5em 0 2.5em 0; */
    margin: 0em 0 2.5em 0;
    z-index: 1;
}

.restaurant-menu-heading-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: url(../images/block_bg_sprite.png);
    background-repeat: repeat-x;
    background-position: left center;
}

.restaurant-menu-heading-container:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: url(../images/block_bg_sprite.png);
    background-repeat: repeat-x;
    background-position: left center;
}

.restaurant-menu-heading-container h2 {
    position: relative;
    display: inline;
    padding: 0 1em;
    /* background-color: #FFF; */
}

.restaurant-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex: 1 0 auto;
    font-size: 0.75em;
    margin: 0 -2em;
    align-items: flex-start;
    /* line-height: 160%; */
    /* height: 75%; */
}

.restaurant-menu h3 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 2em;
    text-decoration: underline;
}

.restaurant-menu-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
    height: 100%;
    /* padding: 0 2em; */
    /* border-right: 1px solid #777; */
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.restaurant-menu-col.right {
    position: relative;
    z-index: 1;
    /* flex: 0 1 calc(50% + 78px); */
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(50% + 78px);
    align-items: center;
}

.restaurant-menu-col.left {
    align-items: center;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(50% - 78px);
    margin-left: 30%;
}

#asm-section-menu.open .restaurant-menu-col.left {
    margin-left: 0;
}

.menu-logo {
    float: left;
    width: 130px;
    margin: 0 40px;
}

.menu-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.menu-sections {
    font-size: 1.8em;
    line-height: 120%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* padding: 45px 0; */
    padding: 2vh;
}

.menu-sections li {
    margin: 4vh 0;
}

.menu-sections li a {
    text-decoration: underline;
}

.menu-sections li.active a {
    color: #d93f39;
}

.restaurant-menu-items {
    position: absolute;
    width: 100%;
    left: 120%;
    /* padding: 45px 2em 0 3em; */
    /* padding: 2vh 2em 0 3em; */
    padding: 0 2em 0 3em;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
}

.restaurant-menu-items.hide {
    left: 120%;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    opacity: 0;
}

.restaurant-menu-items.show {
    left: 0;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    opacity: 1;
}

.restaurant-menu-items h3 {
    display: none;
}

.restaurant-menu-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 140%;
    color: #ffffff;
    font-size: 1.5em;
    /* margin-bottom: 2em; */
    /* margin-bottom: 1.5em; */
    margin-bottom: 1em;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.restaurant-menu-line:last-child {
    margin-bottom: 0;
}

.menu-item {
    display: flex;
    width: 100%;
}

.item-name-en {
    display: none !important;
}

.restaurant-menu-line .menu-item-wrapper {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.restaurant-menu-line .item-name {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.restaurant-menu-line .item-name span {
    display: block;
    font-size: 12px;
}

.restaurant-menu-line .item-price {
    flex: 0 0 4em;
    margin-left: 1.4em;
    text-align: right;
}

.restaurant-menu-line .item-name {
    flex: 0 0 70%;
}

.restaurant-menu-line .item-name p {
    margin: 0 0 0.25em 0;
}

.restaurant-menu-line .item-name-en {
    font-style: italic;
    margin-top: 0;
}

.item-allergens img {
    width: 100%;
    height: auto;
    display: block;
}

.restaurant-menu-line .item-allergens {
    box-sizing: border-box;
    display: flex;
    width: 30%;
    flex: 0 0 30%;
    justify-content: flex-end;
    min-width: 160px;
    max-width: 200px;
    padding-left: 1.4em;
    margin: 0;
}

.restaurant-menu-line .item-allergens li {
    display: inline-block;
    flex: initial;
    width: 25%;
    display: block;
    padding: 0 0.2em;
    margin: -3% 0 0 0;
}

.wine-suggestion {
    margin: 0;
    flex: 0 0 100%;
    padding: 0;
    text-decoration: none;
}

.wine-suggestion p {
    margin: 0;
}

.wine-suggestion > p:nth-child(1) {
    margin: 0;
}

.wine-suggestion>p:nth-child(1) {
    font-size: 0.9em;
    font-style: italic;
}

.ico-wine-glass-white img {
    display: inline-block;
    position: relative;
    height: auto;
    width: 0.6em;
    margin-right: 0.4em;
}

@media screen and (max-width:1000px) {
    .restaurant-menu-line .menu-item-wrapper {
        flex-direction: column;
    }

    .restaurant-menu-line .item-allergens {
        margin-left: 0;
        max-width: 200px;
        justify-content: flex-start;
    }

    .restaurant-menu-line .item-allergens li {
        width: 20%;
    }

    .restaurant-menu-line .item-allergens li:first-of-type {
        margin-left: 0;
    }
}

/*****************************
* CONTACTS
*****************************/
#asm-section-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.contacts-visual-block {
    -webkit-box-flex: 2 1 0;
    -ms-flex: 2 1 0;
    flex: 2 1 0;
    position: relative;
    overflow: hidden;
}

.contacts-visual-block>img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    min-height: 100%;
    min-width: 100%;
}

#asm-section-contacts footer {
    position: relative;
    -webkit-box-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    text-align: center;
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#asm-section-contacts .address li {
    margin-bottom: 1em;
}

/*** BIG SCREEN ***/
@media screen and (min-width:1680px) {
    .container {
        max-width: 1920px;
    }

    #asm-section-intro header {
        max-width: 1920px;
        padding: 50px 130px 0px 130px;
    }

    #logo-asm img {
        margin-left: 14px;
    }

    #main-lang {
        font-size: 20px;
        font-weight: bold;
    }

    #logo-asm {
        width: 33%;
        /* max-width: 100%; */
        max-width: 400px;
    }

    .main-slideshow {
        padding: 30px 130px;
    }

    .swiper-button-prev {
        left: 40px;
        margin-left: 0;
    }

    .swiper-button-next {
        right: 40px;
        margin-right: 0;
    }

    .menu-intro-footer .scroll-to {
        text-align: center;
        width: calc(33% - 34px);
        font-size: 1.8em;
        font-weight: bold;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 70px;
    }

    .menu-intro-footer {
        height: 50px;
        margin-top: 35px;
    }


    /* Menu */
    #asm-section-menu {
        padding: 30px 130px;
    }

    .restaurant-menu-heading-container {
        /* margin: 2em 0 4em 0; */
        /* margin: 1.5em 0 2.5em 0; */
        margin: 0em 0 2.5em 0;
    }

    .menu-logo {
        float: none;
        width: auto;
        height: 75vh;
    }

    .menu-logo img {
        height: 100%;
    }

    .menu-sections {
        /* font-size: 2.9em; */
        font-size: 2.6em;
        font-weight: bold;
        justify-content: space-evenly;
        margin: 0 2em;
    }

    .restaurant-menu-col.right {
        flex-basis: calc(50% + 100px);
        align-items: center;
        position: relative;
        overflow: hidden;
        /* height: 75vh; */
    }

    .restaurant-menu-col.left {
        align-items: center;
        flex-basis: calc(50% - 100px);
    }

    .restaurant-menu-line {
        /* font-size: 1.8em; */
        font-size: 2em;
    }

    .restaurant-menu-items {
        /* padding: 5em 2em 0 3em; */
        padding: 0 2em 0 3em;
    }


    /* Contacts */
    h2 {
        font-size: 3.25em;
    }

    #asm-section-contacts .address li {
        font-size: 1.8em;
    }

}


/*** Mobile OLD BEHAVIOUR ***/
/* @media screen and (max-width:1000px) { */
@media DISABLED {

    /* home section logo */
     #logo-asm {
        width: 100%;
        margin: 20% auto 0 auto;
    }

    #logo-asm {
        width: 100%;
        margin: 0 auto;
    }

    #logo-asm img {
        margin-left: 0;
    }

    /* Menu */
    #asm-section-menu {
        padding-bottom: 3em;
    }

    #asm-section-menu:before {
        display: none;
    }

    .restaurant-menu {
        display: block;
    }

    .restaurant-menu-col.left {
        display: none;
    }

    .restaurant-menu-col.right {
        width: 100%;
        display: block;
        height: 100% !important;
    }

    .restaurant-menu-heading-container {
        margin: 0;
    }

    .main-view.full-height.container.alternate-menu-section {
        padding: 2em 0;
    }

    .menu-sections {
        font-size: 1.6em;
    }

    .restaurant-menu-items {
        position: relative;
        left: 0;
        padding: 0 2em;
    }

    .restaurant-menu-items.hide,
    .restaurant-menu-items.show {
        left: 0;
        opacity: 1;
    }

    .restaurant-menu-items h3 {
        display: block;
        margin-top: 0;
        font-size: 1.6em;
    }

    .restaurant-menu-line {
        color: #777777;
        font-size: 1.15em;
    }


    /* footer */
    #asm-section-contacts footer {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    #asm-section-contacts h2 {
        margin: 0 0 1em 0;
    }
}


/**************************************/

@media screen and (max-width:1000px) {

    #asm-section-intro {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .main-slideshow {
        position: relative;
    }

    /* home section logo */
     #logo-asm {
        width: 100%;
        margin: 20% auto 0 auto;
    }

    #logo-asm {
        width: 100%;
        margin: 0 auto;
    }

    #logo-asm img {
        margin-left: 0;
    }

    /* Menu */
    /* #asm-section-menu {
        padding-bottom: 3em;
    } */

    .close-menu {
        opacity: 1;
    }

    #asm-section-menu.open:before {
        right: 0;
    }

    .restaurant-menu {
        display: block;
    }

    .restaurant-menu-col.left, 
    .restaurant-menu-col.right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
    }

    .restaurant-menu-col.left {
        margin-left: 0;
    }

    .restaurant-menu-col.right{
        margin-left: 100%;
        align-items: flex-start;
        margin-top: 104px;
    }

    #asm-section-menu.open .restaurant-menu-col.right {
        margin-left: 0;
    }

    .restaurant-menu-heading-container {
        margin: 0;
    }

    .main-view.full-height.container.alternate-menu-section {
        padding: 2em 0;
    }

    .menu-sections {
        font-size: 1.6em;
    }

    .restaurant-menu-items {
        padding: 0 30px;
    }

    .restaurant-menu-items h3 {
        display: block;
        margin-top: 0;
        font-size: 1.6em;
        color: #ffffff;
    }

    .restaurant-menu-line {
        color: #ffffff;
        font-size: 1.15em;
    }


    /* footer */
    #asm-section-contacts footer {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    #asm-section-contacts h2 {
        margin: 0 0 1em 0;
    }
}

@media screen and (max-width:420px) {
    #logo-asm {
        width: 100%;
    }

    #logo-asm img {
        width: 90%;
        height: auto;
        margin: 0;
    }

}

/* @media screen and (max-height:640px) {

    .restaurant-menu-items.hide,
    .restaurant-menu-items.show {
        left: 0;
        opacity: 1;
    }

    .restaurant-menu-items h3 {
        display: block;
        color: #777777;
        font-size: 1.5em;
    }

    .restaurant-menu-line {
        color: #777777;
        font-size: 1em;
    }
} */

/* Hack */
/* @media screen and (min-width:1001px) and (max-height:570px) {

    .menu-logo {
        width: 22%;
        height: auto;
    }

    .menu-sections {
        font-size: 1.6em;
    }

    .restaurant-menu-line {
        font-size: 1.35em;
    }

} */