/*
Used colors:
background light grey      - #f9f9f9
colOrange (links)             - #cf6b00
light colOrange (link hover)  - #ffa23e
*/
/* Base */
* {
  box-sizing: border-box;
  font-size: 1.3rem;
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
}
html,
body {
  height: 100%;
  width: 100%;
  min-width: 280px;
  background-color: #f9f9f9;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
}
h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.3rem;
}
h3 {
  font-size: 1.8rem;
}
p {
  margin-top: 0;
  margin-bottom: 2rem;
}
p:last-of-type {
  margin-bottom: 0;
}
p .strong {
  font-size: 1.7rem;
}
a {
  text-decoration: none;
  color: #DF514C;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover {
  color: #ffa23e;
}
a:focus,
a:active {
  outline: none;
}
/* ----------------------------- Navbar ----------------------------- */
/* ------------------------------------------------------------------ */
.header-panel {
  position: fixed;
  top: inherit;
  /* this is important (mobile stay at top) */
  width: 100%;
  height: 50px;
  background-color: #f9f9f9;
  z-index: 999;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.header-panel .header-nav-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.header-panel .header-nav-wrapper:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.header-panel .header-nav-wrapper .header-logo {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  width: 210px;
  /*            background-image: url('../img/logo_long_black_70px.png');
            background-position: left;
            background-size: contain;
            background-repeat: no-repeat;*/
}
.header-panel .header-nav-wrapper .header-logo img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.8;
}
.header-panel .header-nav-wrapper .menu-burger {
  display: block;
  position: absolute;
  width: 34px;
  height: 22px;
  top: 15px;
  right: 2rem;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  transition: background-color 0.3s;
}
.header-panel .header-nav-wrapper .menu-burger.active .line {
  background-color: #DF514C;
}
.header-panel .header-nav-wrapper .menu-burger:hover {
  cursor: pointer;
}
.header-panel .header-nav-wrapper .menu-burger .line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 1px;
  margin-bottom: calc(8px);
}
.header-panel .header-nav-wrapper .header-nav {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 50px;
  right: 0;
  vertical-align: middle;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  background-color: #f9f9f9;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: height 0.3s;
}
.header-panel .header-nav-wrapper .header-nav.inactive {
  height: 0 !important;
}
.header-panel .header-nav-wrapper .header-nav ul {
  display: inline-block;
  width: 100%;
  padding: 2rem;
  vertical-align: middle;
  list-style-type: none;
  text-align: left;
}
.header-panel .header-nav-wrapper .header-nav ul li {
  display: block;
  vertical-align: middle;
  padding-left: 0.5rem;
  line-height: 4rem;
}
.header-panel .header-nav-wrapper .header-nav ul li .link {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid lightgrey;
}
.header-panel .header-nav-wrapper .header-nav ul li a,
.header-panel .header-nav-wrapper .header-nav ul li a:link,
.header-panel .header-nav-wrapper .header-nav ul li a:active,
.header-panel .header-nav-wrapper .header-nav ul li a:focus {
  color: black;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 2rem;
}
.header-panel .header-nav-wrapper .header-nav ul li a:hover,
.header-panel .header-nav-wrapper .header-nav ul li a:link:hover,
.header-panel .header-nav-wrapper .header-nav ul li a:active:hover,
.header-panel .header-nav-wrapper .header-nav ul li a:focus:hover {
  color: #DF514C;
}
.fb {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 26px;
  height: 26px;
}
.fb .fbBlack,
.fb .fbBlue {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/fb/facebook-black.png);
  background-size: contain;
}
.fb .fbBlue {
  background-image: url(../img/fb/facebook-blue.png);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fb .fbBlue:hover {
  opacity: 1;
}
/* -------------------------- Main Content -------------------------- */
/* ------------------------------------------------------------------ */
.main-wrapper {
  position: relative;
  margin: auto;
  height: 100%;
  width: 100%;
  font-family: 'Noto Serif', serif;
  text-align: justify;
}
/* ------------------ Start screen ------------------ */
.start-screen-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
}
.start-screen-wrapper .start-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  background-repeat: no-repeat;
  background-image: url(../img/cover.jpg);
  background-position: left bottom;
  background-size: cover;
  background-origin: content-box;
}
.start-screen-wrapper .start-screen .start-screen-logo {
  position: absolute;
  top: 40px;
  left: calc(50% - 40%);
  width: 80%;
  height: 35%;
  opacity: 0.8;
  /*            background-image: url(../img/logo_oval_bw-textured-colored-semi-transparent.png);
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;*/
}
.start-screen-wrapper .start-screen .start-screen-arrow-background {
  position: absolute;
  top: calc(100% - 30px);
  left: calc(50% - 50px);
  height: 70px;
  width: 100px;
  background-color: #f9f9f9;
  border-radius: 50%;
}
.start-screen-wrapper .start-screen .start-screen-arrow-background:hover .start-screen-arrow {
  top: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.start-screen-wrapper .start-screen .start-screen-arrow-background .start-screen-arrow {
  position: absolute;
  top: 0px;
  left: 35%;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  transform: matrix(1, 0.5, -1, 0.5, 0, 0);
}
/* ------------------ Section ------------------ */
.section-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2rem;
}
.section-content {
  max-width: 100%;
  margin: auto;
  padding: 2rem 0 4rem;
  background-color: #f9f9f9;
}
.section-content > .text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.section-background {
  background-attachment: local !important;
  height: 150px;
  margin-bottom: 2rem;
}
.section-content-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-content-header img {
  max-width: 90%;
  max-height: 350px;
  margin-top: 1rem;
}
/* ------------------ About ------------------ */
.section-columns {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 2rem;
}
.section-columns > p {
  display: inline-block;
  /* don't allow splitting of paragraphs in columns*/
}
.section-columns img {
  position: relative;
  float: left;
  width: 60%;
  margin: 0;
}
.section-columns-keep-together {
  display: inline-block;
  width: 100%;
}
#sWAbout .section-background {
  background-image: url(../img/sectionBackground01a.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: 110%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* ------------------ Marmalades ------------------ */
#marmalades > .text {
  margin-bottom: 4rem;
}
#sWMarmalades .section-background {
  background-image: url(../img/sectionBackground02a.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: 110%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* -------------------------- Order -------------------------- */
#sWOrder .section-background {
  background-image: url(../img/sectionBackground03a.jpg);
  background-position: top;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.map {
  width: 100%;
  height: 200px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 2rem;
}
/* -------------------------- Contact -------------------------- */
.contact-info {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.contact-info .col {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.contact-info .col p:last-of-type {
  margin-bottom: 2rem;
}
/* -------------------------- Footer -------------------------- */
#footer {
  width: 100%;
  background: #3a3a3a;
  /*    .footer-wrapper {
            position: relative;
            margin: auto;
            height: 100%;
            width: 1170px;
        }*/
}
/*
.footer-left {
    position: relative;
    float: left;
    height: 80%;
    width: 25%;
    top: 10%;
    text-align: center;
    white-space: nowrap;
    img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
    }
}

.footer-right {
    position: relative;
    display: inline-block;
    float: right;
    height: 80%;
    top: 10%;
    text-align: center;
    white-space: nowrap;
    img {
        padding-left: 20px;
        max-height: 100%;
        vertical-align: middle;
        &:first-of-type {
            padding-left: 0px;
        }
    }
}*/
#footer .footer-wrapper .footer-left {
  padding: 20px;
  padding-bottom: 10px;
  float: none;
  text-align: center;
}
#footer .footer-wrapper .footer-left .logo {
  display: inline;
  max-width: 120px;
}
#footer .footer-wrapper .footer-right {
  padding: 20px;
  padding-top: 10px;
  float: none;
  text-align: center;
}
#footer .footer-wrapper .footer-right .footer-award {
  display: inline;
  max-height: 120px;
  padding: 10px;
}
#footer .footer-wrapper .footer-copyright {
  display: block;
  width: 100%;
  padding-bottom: 20px;
  clear: both;
}
#footer .footer-wrapper .footer-copyright .logo {
  display: block;
  max-width: 120px;
  margin: 0 auto;
  margin-bottom: 10px;
}
#footer .footer-wrapper .footer-copyright p {
  text-align: center;
  font-size: 1.2rem;
  color: white;
}
.gm-style {
  font-weight: normal !important;
}
.gm-style .iw-title {
  margin-bottom: 1rem;
}
.gm-style .iw-text p {
  font-family: 'Noto Serif', serif !important;
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}
/* start screen logo media */
@media screen and (min-height: 400px) {
  .start-screen-wrapper .start-screen .start-screen-logo {
    top: 50px;
  }
}
@media screen and (min-height: 550px) {
  .start-screen-wrapper .start-screen .start-screen-logo {
    top: 100px;
  }
}
/* other media */
@media screen and (min-width: 700px) and (min-height: 600px) {
  .map {
    height: 300px;
  }
}
@media screen and (min-width: 1000px) {
  * {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 2.7rem;
  }
  h3 {
    font-size: 2.0rem;
  }
  p .strong {
    font-size: 2.0rem;
  }
  .header-panel {
    height: 70px;
  }
  .header-panel .header-nav-wrapper .menu-burger {
    display: none;
  }
  .header-panel .header-nav-wrapper .header-nav {
    position: relative;
    float: right;
    width: auto;
    height: 70px;
    top: 0;
    box-shadow: none;
  }
  .header-panel .header-nav-wrapper .header-nav:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .header-panel .header-nav-wrapper .header-nav.inactive {
    height: auto !important;
  }
  .header-panel .header-nav-wrapper .header-nav ul {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    list-style-type: none;
    text-align: center;
  }
  .header-panel .header-nav-wrapper .header-nav ul li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0.5rem;
    line-height: 100%;
  }
  .header-panel .header-nav-wrapper .header-nav ul li a,
  .header-panel .header-nav-wrapper .header-nav ul li a:link,
  .header-panel .header-nav-wrapper .header-nav ul li a:active,
  .header-panel .header-nav-wrapper .header-nav ul li a:focus {
    color: black;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 1.8rem;
  }
  .header-panel .header-nav-wrapper .header-nav ul li a:hover,
  .header-panel .header-nav-wrapper .header-nav ul li a:link:hover,
  .header-panel .header-nav-wrapper .header-nav ul li a:active:hover,
  .header-panel .header-nav-wrapper .header-nav ul li a:focus:hover {
    color: #DF514C;
  }
  .header-panel .header-nav-wrapper .header-nav ul li .link {
    border-bottom: none;
  }
  .header-panel .header-nav-wrapper .header-nav ul li .link:after {
    content: '\2219';
    padding-left: 0.7rem;
  }
  .section-columns {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-column-rule: 1px solid lightgrey;
    -moz-column-rule: 1px solid lightgrey;
    column-rule: 1px solid lightgrey;
    padding: 0px 4rem;
  }
  .section-background {
    height: 250px;
    background-attachment: fixed !important;
  }
  .contact-info .col {
    width: auto;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1000px) and (min-height: 800px) {
  .map {
    height: 400px;
  }
}
.side-menu-wrapper {
  width: 960px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  visibility: hidden;
}
.side-menu-wrapper .side-menu-item.side-menu-active .side-menu-button .expand-icon {
  opacity: 0;
}
.side-menu-wrapper .side-menu-item:not(.side-menu-active) .side-menu-button {
  cursor: pointer;
}
.side-menu-wrapper .side-menu-item:not(.side-menu-active) .side-menu-button:hover {
  color: #ff8300;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.side-menu-wrapper .side-menu-item:not(.side-menu-active) .side-menu-content {
  display: none;
}
.side-menu-wrapper .side-menu-item.last .side-menu-button {
  border-bottom: 1px solid lightgrey;
}
.side-menu-wrapper .side-menu-item .side-menu-button {
  position: relative;
  border-top: 1px solid lightgrey;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40%;
  font-size: 0;
}
.side-menu-wrapper .side-menu-item .side-menu-button:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.side-menu-wrapper .side-menu-item .side-menu-button h2 {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 30px);
  padding: 10px;
}
.side-menu-wrapper .side-menu-item .side-menu-button .expand-icon {
  position: relative;
  float: right;
  height: 100%;
  width: 16px;
  margin-right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.side-menu-wrapper .side-menu-item .side-menu-button .expand-icon:before,
.side-menu-wrapper .side-menu-item .side-menu-button .expand-icon:after {
  content: "";
  display: block;
  position: relative;
  background-color: #333;
}
.side-menu-wrapper .side-menu-item .side-menu-button .expand-icon:before {
  width: 16px;
  height: 2px;
  top: 50%;
}
.side-menu-wrapper .side-menu-item .side-menu-button .expand-icon:after {
  width: 2px;
  height: 16px;
  top: calc(50% - 9px);
  left: calc(50% - 1px);
}
.side-menu-wrapper .side-menu-item .side-menu-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: auto;
  top: 0;
  right: 0;
  width: 60%;
  padding: 20px;
}
.side-menu-wrapper .side-menu-item .side-menu-content .text {
  text-align: center;
  padding: 20px;
}
.side-menu-wrapper .side-menu-item .side-menu-content img {
  height: 330px;
  display: block;
  margin: 0 auto;
}
/*.sideMenu-contentBackground {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
}*/
.side-menu-lock {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .side-menu-wrapper {
    width: auto;
    max-width: 600px;
  }
  .side-menu-wrapper .side-menu-item.side-menu-active .side-menu-button {
    height: auto;
  }
  .side-menu-wrapper .side-menu-item.last .side-menu-button {
    border-bottom: 0;
  }
  .side-menu-wrapper .side-menu-item .side-menu-button {
    width: 100%;
    text-align: center;
  }
  .side-menu-wrapper .side-menu-item .side-menu-content {
    position: relative;
    width: 100%;
    padding: 10px;
    padding: 0;
  }
  .side-menu-wrapper .side-menu-item .side-menu-content img {
    height: 300px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  .side-menu-wrapper .side-menu-item .side-menu-content img {
    height: 250px;
  }
}
@media screen and (max-width: 475px) {
  .side-menu-wrapper .side-menu-item .side-menu-button {
    padding: 0;
    text-align: left;
  }
  .side-menu-wrapper .side-menu-item .side-menu-button h2 {
    font-size: 2.2rem;
  }
  .side-menu-wrapper .side-menu-item .side-menu-content {
    height: 250px;
  }
  .side-menu-wrapper .side-menu-item .side-menu-content img {
    height: 190px;
  }
}
/*@import "mobile.less";*/
/*# sourceMappingURL=style.css.map */