@charset "UTF-8";
/*
 * Allgemein
 */
body {
  background: #F2F2F2;
}
body,
p,
td {
  font-family: "Aptos", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5%;
  color: #3F3F3F;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
.layout {
  max-width: 1260px;
  margin: 0 auto 100px auto;
  padding: 0 30px;
}
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2%;
  text-transform: uppercase;
}
h1 {
  font-size: 50px;
  margin: 0 0 50px 0;
}
h2 {
  font-size: 64px;
  letter-spacing: -2%;
  margin: 0 0 50px 0;
}
h3 {
  font-size: 27px;
  margin: 0;
}
h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
a {
  color: #3F3F3F;
  text-decoration: none;
}
.bottom-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .layout {
    padding: 0 15px;
  }
  h2 {
    font-size: 40px;
  }
  h4 {
    font-size: 22px;
  }
  .bottom-100 {
    margin-bottom: 50px;
  }
}
/*
 * Menü
 */
#menu {
  position: fixed;
  top: 70px;
  right: 7vw;
  width: 30px;
  height: 30px;
  z-index: 5;
}
#menu .menu-icon {
  position: relative;
  float: right;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(../img/Burgermenu.svg) no-repeat center / 100%;
}
#menu .menu-content {
  display: none;
  position: relative;
  top: 0;
  right: 0;
  width: 80px;
  padding: 0;
}
#menu .menu-content ul {
  margin: 0;
  list-style-type: none;
}
#menu .menu-content li {
  margin: 0;
  padding: 0;
}
#menu .menu-content li a {
  display: block;
  color: #7e7e7e;
  font-weight: bold;
  padding: 3px;
  text-decoration: none;
}
#social_icons {
  position: absolute;
  top: 75px;
  right: 10vw;
}
#social_icons a {
  margin: 0 5px;
}
#social_icons p {
  margin: 0;
}
/*
 * Spalten
 */
.flex-row {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-flow: row wrap;
}
.flex-row.col3,
.flex-row.col4 {
  margin: 0 -15px;
}
.flex-row.col2 > [class*="content-"]:not(.noflex),
.flex-row.col2 > .col {
  -webkit-flex: 1 40%;
  -ms-flex: 1 40%;
  flex: 1 40%;
  margin: 0;
  max-width: 50%;
}
.flex-row.col3 [class*="content-"]:not(.noflex),
.flex-row.col3 > .col {
  -webkit-flex: 1 30%;
  -ms-flex: 30%;
  flex: 1 30%;
  margin: 15px;
  max-width: calc(33% - 30px);
}
.flex-row.col4 {
  margin: 0;
}
.flex-row.col4 [class*="content-"]:not(.noflex),
.flex-row.col4 > .col {
  -webkit-flex: 1 22%;
  -ms-flex: 1 22%;
  flex: 1 22%;
  margin: 0;
  max-width: 25%;
}
.flex-row > [class*="content-"].noflex {
  width: 100%;
}
.col-2 {
  column-count: 2;
  column-gap: 10px;
}
@media only screen and (max-width: 1430px) {
  .flex-row.col4 [class*="content-"]:not(.noflex),
  .flex-row.col4 > .col {
    -webkit-flex: 1 30%;
    -ms-flex: 1 30%;
    flex: 1 30%;
    max-width: 33%;
  }
}
@media only screen and (max-width: 1160px) {
  .flex-row.col4 [class*="content-"]:not(.noflex),
  .flex-row.col4 > .col {
    -webkit-flex: 1 40%;
    -ms-flex: 1 40%;
    flex: 1 40%;
    max-width: 50%;
  }
  .col-2 {
    columns: 1;
  }
  #menu {
    right: 5vw;
  }
  #menu .menu-content {
    right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .flex-row.col2 {
    flex-direction: column;
  }
  .flex-row.col2 > [class*="content-"]:not(.noflex),
  .flex-row.col2.col2 > .col {
    width: 100%;
    max-width: 100%;
  }
  .flex-row.col2 .content-image img {
    width: 100%;
  }
  .flex-row.col4 {
    flex-direction: column;
  }
  .flex-row.col4 [class*="content-"]:not(.noflex),
  .flex-row.col4 > .col {
    width: 100%;
    max-width: 100%;
  }
  .flex-row.col3 {
    flex-direction: column;
  }
  .flex-row.col3 [class*="content-"]:not(.noflex),
  .flex-row.col3.col3 > .col {
    width: 100%;
    max-width: 100%;
  }
  .col-2 {
    padding: 0 15px;
  }
  #menu {
    top: 25px;
  }
  #menu .menu-content {
    right: 50px;
  }
  #social_icons {
    top: 30px;
    right: 30vw;
  }
}
/*
 * Header
 */
#home {
  position: relative;
}
.header-bg,
.header-bg-mobile {
  position: relative;
}
.header-bg img,
.header-bg-mobile img {
  display: blocK;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s;
}
.header-bg::after,
.header-bg-mobile::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 26vw;
  height: 15vw;
  background: url(../img/Logo_Header.svg) no-repeat left top / 100%;
}
.header-bg img {
  transform: scale(1.2);
}
.header-bg.zoomout img {
  transform: scale(1);
}
.header-bg-mobile {
  display: none;
}
.header-bg-mobile::after {
  width: 150px;
  height: 86px;
}
#header-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 30px;
  background: rgba(0, 0, 0, 0.2);
  transition: 1s;
}
#header-overlay .rte {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 50vh auto 0 auto;
  translate: 0 -50%;
  background: rgba(243, 195, 206, 0.9);
  text-align: center;
  padding: 50px 0;
}
#header-overlay .rte h1,
#header-overlay .rte h2,
#header-overlay .rte h3,
#header-overlay .rte p {
  color: #fff;
}
#header-overlay .rte p {
  margin: 10px 0;
}
#header-overlay .rte #close_news {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/Close_White.svg) no-repeat center / 100%;
}
#header-overlay.show {
  display: block;
}
#header-overlay.show .rte {
  animation-name: fadein;
  animation-duration: 1s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#news-icon {
  display: inline-block;
  position: fixed;
  top: 23vh;
  right: 0;
  z-index: 9;
  padding: 8px 12px;
  background: #f3c3ce;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  cursor: pointer;
}
#news-icon p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 5%;
  text-transform: uppercase;
  margin: 0;
}
/*
 * Content
 */
#main .content-accordion {
  border: none;
}
#main .handorgel__header__button {
  padding: 5px 0;
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  border: none;
}
#main .handorgel__header__button span {
  font-weight: normal;
  text-transform: none;
}
#main .handorgel__header--opened {
  position: relative;
}
#main .handorgel__header--opened::after {
  content: '';
  position: absolute;
  left: 0;
  width: 200px;
  height: 20px;
  bottom: -5px;
  background: url(../img/unterstrich_akkordeon.svg) no-repeat left / 100%;
}
#main .handorgel__content {
  border-top: none;
  background: none;
}
#main .handorgel__content__inner {
  padding: 25px 0;
}
#main .handorgel__content__inner .disabled.content-text {
  display: none !important;
}
#start {
  position: relative;
  padding: 100px 30px 50px 30px;
  background: #F2F2F2;
  transition: 1.5s;
  overflow: visible;
}
#start.active {
  background: #3F3F3F;
}
#start.background::before {
  top: 0;
  opacity: 1;
}
#start::before {
  content: '';
  position: absolute;
  left: 0;
  top: 500px;
  right: 0;
  bottom: 0;
  background: #F2F2F2 url(../img/gradient-bg.webp) repeat-x;
  opacity: 0;
  transition: 2s;
}
#start::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -220px;
  width: 30vw;
  max-width: 600px;
  height: 400px;
  background: url(../../content/img/3-broetchen.webp) no-repeat center top / 100%;
}
#start > div {
  position: relative;
}
#start .text1,
#start .text2,
#start .img-container {
  position: relative;
  top: 100px;
  z-index: 2;
  opacity: 0;
  transition: 1s;
}
#start .text1.visible,
#start .text2.visible,
#start .img-container.visible {
  top: 0;
  opacity: 1;
}
#start .text1 figure {
  max-width: 990px;
  margin: 0 auto;
  margin-bottom: 50px;
}
#start .text1 figure img {
  width: 100%;
}
#start .text1 .rte {
  max-width: 800px;
  margin: 0 auto;
}
#start .text1 p {
  color: #fff;
  font-size: 20px;
}
#start .img-container {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
#start .img-container img {
  border-radius: 20px;
}
#start .text2 {
  max-width: 600px;
  margin: 0 auto;
}
#start .text2 a {
  display: none;
  position: relative;
  color: #3F3F3F;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #3F3F3F;
  border-radius: 20px;
  padding: 5px 20px;
  margin-top: 50px;
  transition: 0.3s;
}
#start .text2 a:hover {
  color: #fff;
  background: #3F3F3F;
}
#start .start-icons {
  position: absolute;
  left: 100px;
  top: 100px;
  right: 100px;
  bottom: 0;
  transition: 0.7s;
  opacity: 0;
}
#start .start-icons.visible {
  left: 0;
  top: 0;
  right: 0;
  opacity: 1;
}
#start .start-icons .handgemacht,
#start .start-icons .regional,
#start .start-icons .zeit,
#start .start-icons .wasser,
#start .start-icons .salz {
  position: absolute;
}
#start .start-icons .handgemacht {
  left: calc((100vw - 1500px)/2);
  top: 220px;
}
#start .start-icons .regional {
  left: calc((100vw - 1350px)/2);
  top: 450px;
}
#start .start-icons .zeit {
  right: calc((100vw - 1400px)/2);
  top: 150px;
}
#start .start-icons .wasser {
  right: calc((100vw - 1250px)/2);
  top: 400px;
}
#start .start-icons .salz {
  right: calc((100vw - 1450px)/2);
  top: 570px;
}
.subnavi {
  display: flex;
  margin: 0 -25px 50px -25px;
}
.subnavi h3,
.subnavi h4 {
  position: relative;
  margin: 0 25px;
  cursor: pointer;
}
.subnavi h3.active::after,
.subnavi h4.active::after {
  content: url(../img/unterstrich.svg);
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}
.subnavi h3.sonntag.active::after,
.subnavi h4.sonntag.active::after {
  content: url(../img/unterstrich-rot.svg);
}
.subnavi .sonntag {
  color: #f3c3ce;
}
#filialen {
  padding-top: 100px;
}
#filialen .shop {
  padding-top: 15px;
  padding-bottom: 10px;
  border-top: 1px solid #3F3F3F;
  cursor: pointer;
}
#filialen .shop p {
  font-size: 16px;
}
#filialen .shop .address {
  position: relative;
}
#filialen .shop .address .rte {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#filialen .shop .address .rte strong {
  font-size: 1.2em;
  text-transform: uppercase;
}
#filialen .shop .address .rte p {
  margin: 0;
}
#filialen .shop .address .rte p:first-child {
  width: 40%;
}
#filialen .shop .address .rte p:last-child {
  width: 25%;
}
#filialen .shop .address::after {
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  right: 50px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #3F3F3F;
  border-bottom: 1px solid #3F3F3F;
  transform: rotate(-45deg);
}
#filialen .shop.open .address::after {
  top: 50%;
  transform: rotate(135deg);
}
#filialen .shop .info {
  display: flex;
  justify-content: flex-end;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
#filialen .shop .info .rte {
  width: 300px;
}
#filialen .shop.open .info {
  max-height: 100px;
}
#filialen .shop:last-child {
  border-bottom: 1px solid #3F3F3F;
}
.slider-gallery ul {
  position: relative;
  width: max-content;
}
.slider-gallery img {
  display: block;
  width: auto;
}
#jobs {
  position: relative;
  padding-top: 100px;
  padding-left: calc((100% - 1200px)/2);
  background: linear-gradient(180deg, #C8C8C8 50%, #F2F2F2 100%);
}
#jobs h2 {
  position: relative;
}
#jobs h2::after {
  content: '';
  position: absolute;
  left: 5px;
  width: 300px;
  height: 20px;
  bottom: -20px;
  background: url(../img/unterstrich_jobs.svg) no-repeat left / 100%;
}
#jobs ul {
  list-style-type: none;
  margin-bottom: 25px;
}
#jobs p + ul {
  margin-top: -12px;
}
#jobs li {
  position: relative;
  margin-left: 15px;
}
#jobs li:before {
  content: "·";
  position: absolute;
  left: -15px;
  top: 10px;
  font-size: 30px;
  line-height: 0;
  padding-right: 5px;
}
#jobs .flex-row {
  margin-top: -100px;
}
#jobs .info {
  padding-top: 100px;
  padding-right: 200px;
  z-index: 2;
}
#jobs .info .content-accordion {
  padding-bottom: 100px;
}
#jobs .gallery {
  position: relative;
}
#jobs .gallery .content-image {
  display: inline-block;
  margin: 10px;
}
#jobs .gallery .content-image:last-child {
  margin-left: 50px;
}
#jobs .gallery img {
  border-radius: 20px;
}
#jobs .gallery::after {
  content: '';
  display: inline-block;
  position: relative;
  top: -60px;
  left: -11vw;
  width: 50vw;
  max-width: 960px;
  height: 600px;
  background: url(../../content/img/baguette.webp) no-repeat top right / 100%;
}
#jobs .baguettes {
  width: 50vw;
  max-width: 960px;
  margin-left: auto;
  margin-top: -400px;
  padding-right: 50px;
  z-index: 1;
}
#jobs .baguettes img {
  width: 100%;
}
#kontakt .contact .rte {
  display: flex;
  justify-content: space-between;
  width: 55vw;
}
#kontakt .contact .rte p {
  flex: 1;
  font-size: 20px;
}
#kontakt .contact .rte a {
  font-size: 24px;
  font-weight: bold;
}
#kontakt .contact .rte p:first-child {
  min-width: 50%;
}
.impressum {
  padding: 150px 0;
}
.impressum h4 {
  margin: 30px 0 10px 0;
  text-transform: none;
}
.impressum ul {
  list-style-type: disc;
  margin-left: 20px;
}
#footer {
  position: relative;
  background: #3F3F3E;
  padding: 75px;
  color: #fff;
  overflow: visible;
}
#footer .inside {
  position: unset;
}
#footer a {
  color: #fff;
  font-size: 16px;
}
#footer a:hover {
  color: #7E7E7E;
}
#footer .flex-row {
  justify-content: space-between;
}
#footer ul {
  margin: 0;
}
#footer .gototop a {
  display: inline-block;
  vertical-align: top;
}
#footer .gototop::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 50px;
  background: url(../img/arrow_up.svg) no-repeat left center;
  margin-right: 15px;
}
#footer .copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  text-align: right;
}
#footer .copyright a {
  font-size: 12px;
}
#footer .logo {
  position: absolute;
  right: 0;
  bottom: 100%;
  max-width: 30vw;
}
#footer .logo img {
  display: block;
}
@media only screen and (max-width: 1500px) {
  #kontakt .contact .rte {
    width: 59vw;
  }
  #kontakt .contact .rte p:first-child {
    min-width: 45%;
  }
}
@media only screen and (max-width: 1430px) {
  #start::after {
    height: 20vw;
    bottom: -12vw;
  }
  #jobs .info {
    padding-right: 100px;
  }
  #jobs .gallery .content-image {
    margin: 1%;
  }
  #jobs .gallery .content-image:first-child {
    width: 53%;
  }
  #jobs .gallery .content-image:nth-child(2) {
    width: 41%;
  }
  #jobs .gallery .content-image:last-child {
    width: 70%;
  }
  #jobs .gallery::after {
    left: -3vw;
    top: -4vw;
    height: 32vw;
  }
}
@media only screen and (max-width: 1260px) {
  #jobs {
    padding-left: 30px;
    padding-right: 30px;
  }
  #kontakt .contact .rte {
    flex-direction: column;
  }
  .slider-gallery img {
    height: 60vh;
  }
  .impressum {
    padding: 100px 30px;
  }
}
@media only screen and (max-width: 1160px) {
  #start .start-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    left: unset;
    top: 100px;
    right: unset;
    bottom: unset;
    margin: 20px 80px 0 80px;
    transition: 1s;
  }
  #start .start-icons .handgemacht,
  #start .start-icons .regional,
  #start .start-icons .zeit,
  #start .start-icons .wasser,
  #start .start-icons .salz {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    width: calc(33% - 40px);
    margin: 20px;
  }
  #start .start-icons .handgemacht img,
  #start .start-icons .regional img,
  #start .start-icons .zeit img,
  #start .start-icons .wasser img,
  #start .start-icons .salz img {
    width: 100%;
  }
  #jobs .info {
    padding-right: 50px;
  }
  .slider-gallery {
    overflow-x: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header-bg {
    display: none;
  }
  .header-bg-mobile {
    display: block;
  }
  #header-overlay {
    padding: 0 15px;
  }
  #start {
    padding: 50px 15px 150px 15px;
  }
  #start::after {
    width: 50vw;
    height: 32vw;
    bottom: -8vw;
  }
  #start .text2 p {
    font-size: 20px;
  }
  #start .img-container {
    margin: 0 20px;
  }
  #start .start-icons {
    margin: 10px 20px 0 20px;
  }
  #start .start-icons .handgemacht,
  #start .start-icons .regional,
  #start .start-icons .zeit,
  #start .start-icons .wasser,
  #start .start-icons .salz {
    width: calc(33% - 20px);
    margin: 10px;
  }
  .subnavi {
    flex-direction: column;
  }
  .subnavi h4 {
    margin-bottom: 20px;
  }
  .subnavi h4.active::after {
    left: 0;
    transform: none;
  }
  #filialen {
    padding-top: 50px;
  }
  #filialen .shop {
    display: none;
  }
  #filialen .shop .address .rte {
    flex-direction: column;
    /* flex-wrap: wrap; */
  }
  #filialen .shop .address .rte p,
  #filialen .shop .address .rte p:first-child,
  #filialen .shop .address .rte p:last-child {
    width: 100%;
  }
  #filialen .shop .address::after {
    right: 20px;
    top: unset;
    bottom: 10px;
  }
  #filialen .shop.open .address::after {
    top: unset;
    bottom: 0px;
    transform: rotate(135deg);
  }
  #filialen .shop .info .rte {
    width: 100%;
    margin-top: 10px;
  }
  #jobs {
    padding: 50px 15px;
  }
  #jobs .info {
    padding-right: 0;
  }
  #jobs .info .content-accordion {
    padding-bottom: 50px;
  }
  #jobs .gallery {
    width: auto;
    margin: 0 20px;
  }
  #jobs .gallery::after {
    top: -7vw;
    width: 100%;
    height: 55vw;
  }
  #kontakt .contact .rte {
    width: 100%;
  }
  #kontakt .contact .rte p,
  #kontakt .contact .rte p:first-child {
    width: 100%;
  }
  .impressum {
    padding: 50px 15px;
  }
  .impressum h1 {
    font-size: 30px;
  }
  #footer {
    padding: 50px;
  }
  #footer .flex-row.col3 {
    margin: 0;
  }
  #footer .mod_customnav li {
    margin-bottom: 10px;
  }
  #footer .gototop {
    margin: 10px 0;
  }
  #footer .copyright {
    text-align: left;
  }
  #footer .logo {
    max-width: 150px;
  }
}
