/* ------ Menu of the day ----------- */
body {
  color: #ffffff;
  background-color: #262626;
}

body::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}

@media only screen and (min-width: 1170px) {
  body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

/* --------------------------------

Main Components

-------------------------------- */
@media only screen and (min-width: 1170px) {
  .menu-section {
    height: 100vh;
  }
}
.border-title {
  border-style: solid;
  border-width: thin;
  border-color: #000;
  border-left: 10%;
    margin: 20px;
    padding: 20px;
    display: inline-block;
  top: 30%;
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
  transform: translateY(30%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

.menu-section h1 {
  position: relative;
  text-align: center;
  font-size: 46px;
  font-size: 2.875rem;
  letter-spacing: normal;
}

.menu-section h4 {
  position: relative;
  text-align: center;
  font-size: 1.875rem;
}

.menu-section h4 span {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .menu-section h4 {
    font-size: 1rem;
    position: relative;
  }
}

@media (max-width: 767px) {
  .menu-section h4 span {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .menu-section h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.menu-section h1 span {
  display: block;
  font-family: 'Lora', serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 767px) {
  .menu-section h1 span {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.txt_container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.txt_container ul li h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-bottom: 0;
}

.txt_container ul li p {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-size: 1rem;
}

.m_title {
  margin-bottom: 45px;
}

.m_title h2:before {
  content: url("../img/divider_2.svg");
  display: block;
  margin-bottom: 15px;
  width: 100px;
  margin-left: auto;
  margin-right: auto
}

.m_title p {
  font-size: 16px;
  font-size: 1rem;
  color: #999;
}

.phone_us {
  font-size: 24px;
  font-size: 1.5rem;
}

.full-container,
.half-container {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.full-container {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

.menu-section:first-of-type .full-container {
  visibility: visible;
    height: 100vh;
  display: inline-block;
  position: relative;
  width: 100%;
  background-image: url(../img/pattern_menu.jpeg);
  background-size: 133.9rem 58.2rem;
  background-size: 100%;
  text-align: center;
  color: #263b40;
}
@media (max-width: 767px) {
  .menu-section:first-of-type .full-container {
    background-size: 270px auto;
  }
}

@media only screen and (min-width: 1170px) {
  .full-container {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    visibility: hidden;
  }

  .menu-section:first-of-type .full-container {
    visibility: visible;
  }

  .full-container>* {
    visibility: visible;
  }
}

.half-container {
  display: inline-block;
  position: relative;
  width: 100%;
  background-image: url(../img/pattern_menu.jpeg);
  background-size: 133.9rem 58.2rem;
  background-size: 100%;
  text-align: center;
  color: #263b40;
  text-align: center;
}

.half-container:nth-of-type(1) {
  height: 60vh;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
}

.half-container:nth-of-type(2) {
  padding: 4em 10%;
}

.menu-section:nth-of-type(2) .half-container:first-of-type {
  background-image: url("../img/entrees.jpeg");
  background-size: cover;
}

.menu-section:nth-of-type(3) .half-container:first-of-type {
  background-image: url("../img/plats.jpeg");
  background-size: cover;
}

.menu-section:nth-of-type(4) .half-container:first-of-type {
  background-image: url("../img/desserts.jpeg");
  background-size: cover;
}

.menu-section:nth-of-type(5) .half-container:first-of-type {
  background-image: url("../img/slides/slide_home_1.jpg");
  background-size: cover;
}

.menu-section:nth-of-type(6) .half-container:first-of-type {
  background-image: url("../img/slides/slide_home_1.jpg");
  background-size: cover;
}

@media only screen and (min-width: 1170px) {
  .half-container {
    height: 100vh !important;
    width: 50%;
    position: absolute;
    top: 0;
  }

  .half-container .txt_container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: 0 20%;
    text-align: center;
  }

  .menu-section:nth-of-type(even) .half-container:first-of-type,
  .menu-section:nth-of-type(odd) .half-container:nth-of-type(2) {
    left: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .menu-section:nth-of-type(odd) .half-container:first-of-type,
  .menu-section:nth-of-type(even) .half-container:nth-of-type(2) {
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.vertical-nav {
  position: fixed;
  z-index: 1;
  right: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.vertical-nav a {
  display: block;
  height: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: transparent url(../img/daymenu/icon-arrow.svg) no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
}

.vertical-nav a.prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

ul.top-nav,
ul.vertical-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav {
  position: fixed;
  z-index: 1;
  right: 15px;
  top: 2%;
  bottom: auto;
}

.top-nav a {
  display: block;
  height: 70px;
  width: 70px;
  margin-right: -20px;
  font-size: 36px;
  cursor: pointer;
}

.top-nav a:hover {
  color: #405d5d;
  opacity: 1;
}

.qodef-back-to-top-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgb(229, 102, 59);
  overflow: hidden;
  transition: color .2s ease-out;
  transform: translate3d(99%, 0, 0) rotate(-90deg);
  transform-origin: bottom left;
  background: transparent;
}

.qodef-back-to-top-icon:before {
    content: '';
    border-bottom: 1px solid black;
    padding: 0 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    transition: 0.3s;
  }
.qodef-back-to-top-icon:hover:before {
    width: 100%;
    padding: 0; // the other part of the trick
  }

.qodef-back-to-top-icon:active {
    background: black;
    color: white;
    transition: none;
  }

.qodef-back-to-top-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: 0;
  left: 0;
  transform: scaleX(1);
}

#qodef-back-to-top.qodef--predefined {
  transform: translate3d(99%, 0, 0) rotate(-90deg);
  transform-origin: bottom left;
}

#qodef-back-to-top .qodef-back-to-top-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: #000;
  overflow: hidden;
  transition: color .2s ease-out;
}

.scroll-downs {
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  margin: auto;
  width: 36px;
  height: 30px;
}

.mousey {
  width: 3px;
  padding: 5px 10px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 1px;
  margin-left: 1px;
  height: 10px;
  border-radius: 25%;
  background-color: #000;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@media only screen and (min-width: 1170px) {
  .vertical-nav {
    display: block;
  }
}
