/*
    Font Face
*/
@font-face {
  font-family: 'Dax';
  src: url('../fonts/DaxMedium.eot');
  src: url('../fonts/DaxMedium.eot?#iefix') format('embedded-opentype'), url('../fonts/DaxMedium.woff2') format('woff2'), url('../fonts/DaxMedium.woff') format('woff'), url('../fonts/DaxMedium.ttf') format('truetype'), url('../fonts/DaxMedium.svg#DaxMedium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/DaxBold.eot');
  src: url('../fonts/DaxBold.eot?#iefix') format('embedded-opentype'), url('../fonts/DaxBold.woff2') format('woff2'), url('../fonts/DaxBold.woff') format('woff'), url('../fonts/DaxBold.ttf') format('truetype'), url('../fonts/DaxBold.svg#DaxBold') format('svg');
  font-weight: bold;
  font-style: normal;
}
/*
  Mixins
*/
/*
    General
*/
body {
  font-family: 'Dax', Helvetica, sans-serif;
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  color: #9a9a9a;
}
figure {
  margin-bottom: 0;
}
nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 2em 3em;
  align-items: center;
  display: flex;
  justify-content: space-between;
  -webkit-transition: background-color 0.5s;
  /* For Safari 3.1 to 6.0 */
  transition: background-color 0.5s;
}
.header .logo-wrapper {
  width: 230px;
}
.header .logo-wrapper img {
  width: 100%;
}
.header .top-nav {
  margin-right: -2em;
}
.header .top-nav li {
  display: inline-block;
  position: relative;
}
.header .top-nav li + li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 2px;
  width: 2px;
  height: 80%;
  background-color: #414141;
}
.header .top-nav a {
  color: #414141;
  padding: 0.35em 2em;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.2s linear;
}
.header .top-nav a:hover,
.header .top-nav a:focus {
  color: #ff9638;
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .top-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 1em;
  }
}
.side-nav {
  background-color: #e2e2e2;
  padding: 20px 0;
  width: 300px;
  text-align: center;
  left: 0;
  top: 160px;
  z-index: 10;
  position: fixed;
}
.side-nav a {
  color: #414141;
  padding: 0.5em 2em;
  display: block;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.2s linear;
}
.side-nav a:hover,
.side-nav a:focus {
  color: #ff9638;
  background-color: white;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .side-nav {
    display: none;
  }
}
.menu-button {
  position: absolute;
  top: 1.8em;
  right: 1em;
  width: 30px;
  height: 28px;
  z-index: 11;
  display: none;
}
.menu-button #bar1,
.menu-button #bar2,
.menu-button #bar3 {
  width: 30px;
  height: 3px;
  background-color: black;
  margin-bottom: 6px;
  border-radius: 3px;
  position: relative;
}
.menu-button.on #bar1,
.menu-button.on #bar2,
.menu-button.on #bar3 {
  background-color: #9a9a9a;
}
.menu-button.on #bar1 {
  -ms-transform: rotate(35deg);
  /* IE 9 */
  -webkit-transform: rotate(35deg);
  /* For Safari 3.1 to 6.0 */
  transform: rotate(35deg);
  top: 9px;
  transition: transform 0.2s cubic-bezier(0.6, 0.01, 0.49, 0.99);
  -webkit-transition: -webkit- transform 0.2s cubic-bezier(0.6, 0.01, 0.49, 0.99);
}
.menu-button.on #bar2 {
  opacity: 0;
}
.menu-button.on #bar3 {
  -ms-transform: rotate(-35deg);
  /* IE 9 */
  -webkit-transform: rotate(-35deg);
  /* For Safari 3.1 to 6.0 */
  transform: rotate(-35deg);
  top: -9px;
  transition: transform 0.2s cubic-bezier(0.6, 0.01, 0.49, 0.99);
  -webkit-transition: -webkit- transform 0.2s cubic-bezier(0.6, 0.01, 0.49, 0.99);
}
.menu-button.on:hover #bar1 {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* For Safari 3.1 to 6.0 */
  transform: rotate(45deg);
}
.menu-button.on:hover #bar3 {
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* For Safari 3.1 to 6.0 */
  transform: rotate(-45deg);
}
@media screen and (max-width: 991px) {
  .menu-button {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  font-family: 'Dax', Helvetica, sans-serif;
  top: -150%;
  left: 0;
  z-index: 98;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 110px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0, 0, 0.99);
  /* For Safari 3.1 to 6.0 */
  transition: all 0.5s cubic-bezier(0.43, 0, 0, 0.99);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu ul li a {
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  padding: 13px 0;
  display: block;
  color: #414141;
  padding-left: 40px;
}
.mobile-menu ul li a.active,
.mobile-menu ul li a:hover {
  background: #ff9638;
}
.mobile-menu.on {
  top: 0;
  left: 0;
}
.mobile-menu.on + .header {
  background-color: white;
}
/*
    Carousel
*/
.carousel {
  width: 100%;
  height: 100%;
}
.carousel .carousel-inner {
  width: 100%;
  height: 100%;
}
.carousel .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.carousel .carousel-item .banner-header {
  width: 360px;
  position: absolute;
  top: 120px;
  left: 350px;
  padding: 0 15px;
}
.carousel .carousel-item .banner-header.right {
  left: auto;
  right: 10%;
}
.carousel .carousel-item h3 {
  font-size: 1.5em;
  font-weight: normal;
  color: #ffb16a;
  text-transform: uppercase;
  margin-bottom: 0;
}
.carousel .carousel-item h1 {
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}
.carousel .carousel-item h1 strong {
  color: #ffb16a;
}
.carousel .carousel-item p {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 0.8em;
}
.carousel .carousel-item p strong {
  color: #a7dc54;
}
.carousel .vday {
  background-image: url(../images/banner-vday.jpg);
}
.carousel .festive {
  background-image: url(../images/festbnr_roasts.png);
}
.carousel .store {
  background-image: url("../images/banner-store.jpg");
}
.carousel .gourmet {
  background-image: url(../images/banner-bistro.jpg);
}
.carousel .bistro {
  background-image: url(../images/banner-bistro-3.jpg);
}
.carousel .bakery {
  background-image: url(../images/banner-bakery.jpg);
}
.carousel .catering {
  background-image: url(../images/banner-catering.jpg);
}
@media screen and (max-width: 1020px) {
  .carousel .gourmet {
    background-image: url(../images/banner-bistro-m.jpg);
  }
  .carousel .vday {
    background-image: url(../images/banner-vday-m.jpg);
  }
  .carousel .festive {
    background-image: url(../images/festbnr_roasts_m.png);
  }
  .carousel .store {
  background-image: url("../images/banner-store-m.jpg");
  }
  .carousel .bistro {
    background-image: url(../images/banner-bistro-m-3.jpg);
  }
  .carousel .bakery {
    background-image: url(../images/banner-bakery-m.jpg);
  }
  .carousel .catering {
    background-image: url(../images/banner-catering-m.jpg);
  }
}
.carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #9a9a9a;
  opacity: 1;
  border: 0;
}
.carousel .carousel-indicators li.active {
  background-color: #ff9638;
}
@media screen and (min-width: 768px) {
  .carousel .carousel-indicators {
    left: auto;
    right: 2em;
    bottom: 100px;
    flex-direction: column;
    margin: auto;
  }
  .carousel .carousel-indicators li {
    margin: 5px 0;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1260px) {
  .carousel .carousel-item .banner-header {
    left: 320px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .carousel .carousel-item {
    background-position: 30% center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .carousel .carousel-item .banner-header {
    left: 320px;
  }
  .carousel .carousel-item .banner-header.right {
    right: auto;
    left: 320px;
  }
}
@media screen and (max-width: 767px) {
  .carousel .carousel-item .banner-header {
    left: 0 !important;
    right: 0 !important;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .carousel .carousel-item .banner-header {
    width: 100%;
    font-size: 14px;
  }
}
.button {
  border-radius: 5px;
  font-weight: bold;
  font-family: 'Dax', Helvetica, sans-serif;
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5);
  box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5);
  text-shadow: 0 0 1px rgba(255, 158, 71, 0.5);
  background-color: transparent;
  display: inline-block;
  padding: 3px 15px;
  position: relative;
  border: 2px solid #ff9638;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5) inset;
  box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5) inset;
}
.button a {
  color: #ff9638;
}
.button a:focus,
.button a:hover {
  text-decoration: none;
}
.button.is-outline {
  border-radius: 5px;
  font-weight: bold;
  font-family: 'Dax', Helvetica, sans-serif;
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5);
  box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5);
  text-shadow: 0 0 1px rgba(255, 158, 71, 0.5);
  background-color: transparent;
  display: inline-block;
  padding: 3px 15px;
  position: relative;
  border: 2px solid #ff9638;
}
.button.is-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5) inset;
  box-shadow: 0 0 5px 0 rgba(255, 158, 71, 0.5) inset;
}
.button.is-outline a {
  color: #ff9638;
}
.button.is-outline a:focus,
.button.is-outline a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .button.is-outline {
    display: none;
  }
}
/*
    Footer
*/
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 1em 3em;
  background-color: #9a9a9a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.footer .jp-logo {
  width: 150px;
}
.footer .jp-logo img {
  width: 100%;
}
.footer .copyright {
  text-transform: uppercase;
  color: #e2e2e2;
  margin-left: 20px;
}
.footer .copyright img {
  display: inline-block;
  width: 30px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .footer {
    bottom: auto;
    padding: 1em;
  }
  .footer .copyright {
    display: flex;
    align-items: center;
    font-size: 2.4vw;
  }
}
