html,
body {
  font-family: "ScotchModern", sans-serif;
}
a,
a:visited,
a:active,
a:focus {
  color: #111;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1 {
  margin-top: 0;
  font-size: 40px;
  font-size: 35px;
  font-weight: normal;
  margin-right: 50px;
  margin-bottom: 60px;
  line-height: 1;
}
h2,
h3 {
  font-weight: normal;
}
.main > * {
  overflow: hidden;
}
.hamburger .line {
  width: 44px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 10px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
/* ONE */
#hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  background: white;
  padding: 16px;
  padding-right: 33px;
  margin-top: 21px;
  margin-top: 16px;
}
#hamburger.active {
  background: transparent;
}
#hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
#hamburger.is-active .line:nth-child(2) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -o-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
.overlay {
  position: fixed;
  background: #e8e7fa;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 2;
}
.overlay a,
.overlay span {
  display: inline-block;
  position: relative;
  text-align: left;
  color: black;
  text-decoration: none;
  font-size: 35px;
  overflow: hidden;
}
.overlay span {
  display: inline-block;
  line-height: 100%;
  margin-left: 10px;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  padding: 33px;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
  animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
  animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
  animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
  animation-delay: 0.75s;
}
.overlay nav {
  position: relative;
  font-size: 40px;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  /*height: 25%;
      height: calc(100% / 5)
      min-height: 3.5rem;*/
  position: relative;
  opacity: 0;
  line-height: 100%;
}
.overlay ul li a {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  line-height: 100%;
  margin-bottom: -4px;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.35s;
}
.overlay ul li a.active:after {
  width: 100%;
}
#overlay ul li.sociallinks {
  margin-top: 15px;
}
#overlay ul li.sociallinks a {
  display: inline-block;
  border-radius: 50%;
  border: 2px solid black;
  height: 33px;
  width: 33px;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
}
#overlay ul li.sociallinks a:after {
  display: none;
}
#overlay ul li.sociallinks a:nth-child(2) {
  margin-left: -8px;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.italic,
i,
em {
  font-family: "ScotchModern-Italic", serif;
  font-style: normal !important;
}
.hidden {
  opacity: 0;
}
#fullscreen {
  display: block;
  margin-top: 20px;
  font-size: 9px;
  font-family: arial, sans-serif;
  margin-right: -15px;
  text-align: right;
}
#fullscreen::after {
  margin-left: 10px;
  content: url("../../assets/files/fullscreen.png");
  position: relative;
  top: 3px;
}
.content {
  box-sizing: border-box;
  background: white;
  padding: 33px;
  max-width: 1024px;
}
.content .menu {
  margin-bottom: 51px;
  font-size: 40px;
  font-size: 35px;
  line-height: 110%;
}
.content .menu a {
  text-decoration: none;
  color: #111;
  font-weight: lighter;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.content .menu a.hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 7px;
  /*Change this to increase/decrease distance*/
  border-bottom: 2px solid #000;
}
.content .menu a.active {
  font-family: "ScotchModern-Italic";
}
.content .menu .logo-menu {
  width: 100px;
  width: 90px;
  margin-bottom: 7px;
}
.content .menu nav.second {
  font-size: 18px;
  margin: 35px 0px;
  display: block;
  line-height: 18px;
}
.content .menu nav.second ul,
.content .menu nav.second li {
  line-height: inherit;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 13px;
}
.content .menu nav.second ul a,
.content .menu nav.second li a {
  font-size: 13px;
  line-height: 17px;
}
.content .menu nav.second ul a.active,
.content .menu nav.second li a.active {
  font-family: "ScotchModern-Italic";
}
.content .menu nav.second ul a.hover::after,
.content .menu nav.second li a.hover::after {
  bottom: 0px;
  border-bottom: 1px solid #000;
}
.content .text {
  margin: 33px 0;
  margin: 28px 0;
  font-size: 17px;
}
.content .brands {
  max-width: 600px;
}
.content .brands .brand {
  width: 100%;
  margin-bottom: 5px;
  /*display: flex;
      flex-direction: row;
      justify-content: space-between;*/
  display: grid;
  grid-template-columns: 75% 25%;
}
.content .brands .brand img {
  max-height: 20px;
}
.content .products .product {
  font-size: 18px;
  float: left;
  margin-bottom: 33px;
  padding-bottom: 10px;
  border-bottom: 1px dotted black;
}
.content .products .product .description {
  padding-top: 10px;
  font-size: 18px;
  padding-left: 0px;
}
.content .products .product .description h2 {
  margin-top: 20px;
  font-size: 18px;
}
.content .submenu .item {
  /*margin-bottom: 20px;*/
}
.content .submenu .item a {
  font-size: 17px;
  display: block;
}
.content .submenu .item a img {
  margin-right: 20px;
}
.content .submenu .item a.active {
  /*font-family: 'ScotchModern-Italic', Serif;*/
}
.content .submenu .thumbs {
  margin: 0;
  /*TEST */
  /*TEST */
  margin-bottom: 33px;
  margin-top: 28px;
}
body.home .content .menu {
  margin-bottom: 41px;
}
.thumbs {
  /*TEST */
  margin: 33px 0;
  /*TEST */
}
.thumbs .thumb {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 6px;
  position: relative;
}
.thumbs .thumb a {
  display: block;
}
.thumbs .thumb a .swiperNum {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  text-align: center;
  padding-top: 4px;
  font-size: 45px;
  opacity: 0;
  display: block;
  display: flex;
  justify-content: center;
  /* Horizontal zentrieren */
  align-items: center;
  /* Vertikal zentrieren */
  line-height: 100%;
  padding-top: 10px;
}
.thumbs .thumb a:active,
.thumbs .thumb a:hover {
  color: black;
}
.thumbs .thumb a:hover .swiperNum {
  opacity: 1;
  transition: opacity 0.2s ease-in;
  /* vendorless fallback */
  -o-transition: opacity 0.2s ease-in;
  /* opera */
  -ms-transition: opacity 0.2s ease-in;
  /* IE 10 betas, not needed in final build. */
  -moz-transition: opacity 0.2s ease-in;
  /* Firefox */
  -webkit-transition: opacity 0.2s ease-in;
  /*safari and chrome */
}
.thumbs.flex-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.thumbs.flex-thumbs .thumb {
  margin: 0;
  background: silver;
  flex-basis: calc((100% - 24px) / 5);
  /* Berechnung für 3 Spalten */
  /* Fallback für ältere Browser */
  width: calc((100% - 24px) / 5);
}
.thumbs.flex-thumbs .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.party .content .submenu .item,
.plan-b .content .submenu .item {
  /*a:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../../assets/files/camera.png");
    background-size: contain;
    text-decoration: none;
    background-repeat: no-repeat;
  }*/
}
.party .content .submenu .item a,
.plan-b .content .submenu .item a {
  display: block;
  position: relative;
  line-height: 25px;
}
.or-a-call .submenu.margin,
.basic-page-submenu-team .submenu.margin {
  margin-top: 10px;
}
.submenu .detail {
  font-size: 20px;
}
.content.active {
  display: block;
}
.round-button {
  /*background-color: white;*/
  color: #3b8321;
  text-align: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  /*height: 170px;
  width: 170px;
  padding: 10px;
  padding-top: 27px;
  font-size: 16px;*/
  box-sizing: border-box;
  position: absolute;
  z-index: 29;
  top: 40px;
  left: 40px;
}
.round-button img {
  max-width: 100%;
  height: auto;
}
p.mood {
  color: #009036;
}
#mainnavi .main {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding-right: 40px;
  width: 80%;
}
.controls {
  pointer-events: none;
  position: absolute;
  z-index: 17;
  top: 44vh;
  height: 10vh;
  width: 100%;
  text-align: center;
}
.controls .controls-play,
.controls .controls-pause {
  width: 10vw;
  height: 10vw;
  display: none;
  color: white;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10vh;
}
.controls .controls-play:hover,
.controls .controls-pause:hover {
  color: white;
  text-decoration: none;
}
.gallery .img-fluid {
  margin: 13px 0;
}
.img-fluid {
  max-width: 100%;
  display: block;
}
/* zero custom styles for photoswipe */
/*==================================
SWIPER - minimal styling
===================================*/
/* semantic HTML - remove bullet and space from the list */
ul.swiper-wrapper {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}
/* Swiper container */
.swiper {
  --swiper-navigation-color: black;
  --swiper-theme-color: black;
  --swiper-navigation-size: 30px;
  max-width: 100%;
  height: auto;
  margin: 33px 0;
  width: 100%;
}
.swiper .swiper-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/*
/* swiper responive image */
.swiper img {
  width: 100%;
  height: auto;
}
/* Swiper custom pagination */
.swiper-pagination-bullet {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease, color 0.5s ease;
}
/* Swiper custom pagination */
.swiper-pagination-bullet:hover {
  transition: background-color 0.5s ease;
  background: #000000;
  color: white;
}
/* Swiper custom pagination active state */
.swiper-pagination-bullet-active {
  color: #fff;
  background: black;
}
/* override zoom cursor */
.pswp__img {
  cursor: pointer !important;
}
footer {
  max-width: 1024px;
  padding: 33px;
}
footer .sociallinks {
  text-align: right;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 33px;
}
.col-1 {
  flex-basis: 16%;
}
.col-2 {
  flex-basis: 32%;
}
.col-3 {
  flex-basis: 48%;
}
.col-4 {
  flex-basis: 64%;
}
.col-5 {
  flex-basis: 80%;
}
.col-6 {
  flex-basis: 96%;
}
/*Responsive Cols*/
@media only screen and (max-width: 768px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6 {
    flex-basis: 100%;
  }
}
.more-products .content {
  max-width: 1010px;
}
.item.active {
  border-top: 1px dotted black;
  padding-top: 30px;
  margin-top: 30px;
}
.home .inner {
  position: relative;
}
#moodbutton {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  text-align: center;
  color: white;
  position: absolute;
  top: -165px;
  right: 0;
  padding: 30px;
  line-height: 100%;
}
#moodbutton a,
#moodbutton a:visited,
#moodbutton a:active,
#moodbutton a:hover {
  color: white;
  text-decoration: none;
}
.bgcolor1 {
  background-color: #01a731;
}
.bgcolor2 {
  background-color: #fe3289;
}
.bgcolor3 {
  background-color: #9c6f98;
}
.privacywire-wrapper .privacywire {
  padding: 31px;
  max-width: 100%;
  box-shadow: none;
  border-top: 1px solid black;
}
.privacywire-wrapper .privacywire-header {
  margin-bottom: 27px;
}
.privacywire-wrapper .privacywire-buttons {
  margin: 31px 0;
}
.privacywire-wrapper .privacywire-buttons button {
  background-color: white;
  font-family: "ScotchModern", sans-serif;
  padding: 16px 31px;
  border: 1px solid black;
  border-radius: 25px;
  margin-right: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.privacywire-wrapper .privacywire-page-link {
  margin-right: 16px;
}
.privacywire-wrapper .privacywire-text ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
.privacywire-wrapper .privacywire-text li {
  margin-bottom: 3px;
}
.privacywire-wrapper .privacywire-text li input {
  margin-right: 16px;
}
@media only screen and (min-width: 414px) {
  .content .menu {
    font-size: 40px;
  }
  .content .logo-menu {
    width: 100px;
    margin-bottom: 7px;
  }
  .overlay a,
  .overlay span {
    font-size: 40px;
  }
  #hamburger {
    margin-top: 21px;
  }
  h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 660px) {
  .thumbs.flex-thumbs .thumb {
    margin: 0;
    background: silver;
    flex-basis: calc((100% - 30px) / 6);
    /* Berechnung für 3 Spalten */
    /* Fallback für ältere Browser */
    width: calc((100% - 30px) / 6);
  }
  .thumbs.flex-thumbs .thumb a {
    display: block;
  }
  .thumbs.flex-thumbs .thumb a .swiperNum {
    font-size: 61px;
  }
  .overlay ul li a {
    margin-bottom: 0;
  }
  .content .menu {
    font-size: 76px;
  }
  .content .menu .logo-menu {
    width: 190px;
    margin-bottom: 13px;
  }
  #moodbutton {
    width: 300px;
    height: 300px;
    font-size: 27px;
    right: 0px;
    top: -250px;
  }
}
/*51px: 51px;
47px: 47px;
@margin3: 110px; // 124px*/
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 76px;
    margin-bottom: 110px;
  }
  .content {
    padding: 51px;
  }
  .content .text {
    margin: 51px 0;
    margin: 47px 0;
    font-size: 27px;
  }
  .content .brands .brand img {
    max-height: 40px;
  }
  .content .menu {
    font-size: 76px;
    margin-bottom: 110px;
  }
  body.home .content .menu {
    margin-bottom: 90px;
  }
  .overlay a,
  .overlay span {
    font-size: 76px;
  }
  .thumbs.flex-thumbs .thumb {
    margin: 0;
    background: silver;
    flex-basis: calc((100% - 42px) / 8);
    /* Berechnung für 3 Spalten */
    /* Fallback für ältere Browser */
    width: calc((100% - 42px) / 8);
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    padding: 51px;
  }
  #hamburger {
    padding-right: 51px;
    margin-top: 51px;
  }
  #overlay ul li.sociallinks {
    margin-top: 15px;
  }
  #overlay ul li.sociallinks a {
    height: 51px;
    width: 51px;
    font-size: 20px;
    line-height: 51px;
  }
  #overlay ul li.sociallinks a:nth-child(2) {
    margin-left: -8px;
  }
  .gallery .img-fluid {
    margin: 20px 0;
  }
  .content .products .product .description h2 {
    font-size: 27px;
  }
  .content .products .product .description {
    font-size: 27px;
  }
  .content .submenu .item a {
    font-size: 27px;
    line-height: 39px;
  }
  .party .content .submenu .item a,
  .plan-b .content .submenu .item a {
    line-height: 39px;
  }
  .brand {
    font-size: 27px;
  }
  .swiper {
    margin: 51px 0;
  }
  footer {
    padding: 51px;
  }
  #shrFrm {
    margin-left: -73px !important;
  }
  #moodbutton {
    width: 300px;
    height: 300px;
    font-size: 27px;
    right: 0;
    top: -250px;
  }
  .privacywire-wrapper .privacywire {
    padding: 51px;
  }
  .privacywire-wrapper .privacywire-body {
    max-width: 973px;
  }
  .privacywire-wrapper .privacywire-buttons {
    margin: 31px 0;
  }
  .privacywire-wrapper .privacywire-buttons button {
    margin-bottom: 0;
    width: auto;
  }
}
@media only screen and (min-width: 1025px) {
  #hamburger {
    left: 912px;
    right: auto;
  }
}
/*# sourceMappingURL=main.css.map */