.contentblocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(3em, 15vw, 10em);
  width: 100%;
}
.contentblocks.small-top {
  margin-top: clamp(3em, 15vw, 3em);
}

.contentblock {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  padding: 0 var(--content-padding);
  margin-top: clamp(5em, 15vw, 8em);
  scroll-margin: 150px 0 0 50px;
}
.contentblock:first-of-type {
  margin-top: 0;
}
.contentblock:first-of-type.compact {
  margin-top: 0;
}
.contentblock.full {
  max-width: 100%;
  padding: 0;
}
.contentblock.medium {
  max-width: calc(var(--content-width-medium) + var(--side-padding) * 2);
}
.contentblock.compact {
  margin-top: 3.5em;
}
.contentblock.compact .location-accordion {
  margin-top: 0;
}

.contentblock.textimage {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
}
.contentblock.textimage.left-right, .contentblock.textimage.right-left {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.contentblock.textimage.left-right .text-container, .contentblock.textimage.right-left .text-container {
  width: 50%;
  background: #fff;
  margin: 8em 0;
  padding: 5em 5em 5em 0;
  align-self: center;
  transform: translateX(10vw);
  z-index: 2;
}
.contentblock.textimage.left-right .text-content, .contentblock.textimage.right-left .text-content {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}
.contentblock.textimage.left-right .image-container, .contentblock.textimage.right-left .image-container {
  width: 50%;
}
.contentblock.textimage.right-left {
  flex-direction: row-reverse;
}
.contentblock.textimage.right-left .text-container {
  transform: translateX(-10vw);
  padding: 5em 0 5em 5em;
}
.contentblock.textimage.right-left .text-content {
  margin-right: auto;
  margin-left: 0;
}
.contentblock.textimage.down-top, .contentblock.textimage.top-down {
  flex-direction: column-reverse;
  max-width: var(--content-width-medium);
}
.contentblock.textimage.down-top .text-container, .contentblock.textimage.top-down .text-container {
  background: #fff;
  padding: clamp(3em, 5vw, 4em) clamp(1.5em, 5vw, 4em) 0;
  width: 100%;
  max-width: calc(var(--content-width) + var(--side-padding) * 4);
  margin: -6em auto 0;
  z-index: 1;
}
.contentblock.textimage.down-top .image-container img, .contentblock.textimage.top-down .image-container img {
  height: clamp(25em, 40vw, 35em);
}
.contentblock.textimage.top-down {
  flex-direction: column;
}
.contentblock.textimage.top-down .text-container {
  margin: 0 auto -6em;
  padding-top: 0;
  padding-bottom: clamp(3em, 10vw, 4em);
}
.contentblock.textimage.text-inside {
  align-items: center;
  justify-content: center;
}
.contentblock.textimage.text-inside .text-container {
  z-index: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  max-width: var(--content-width);
  padding: clamp(2em, 5vw, 4em);
  margin: clamp(1em, 8vw, 10em) 1em;
}
.contentblock.textimage.text-inside .image-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.contentblock.image-gallery {
  max-width: calc(var(--content-width-medium) + var(--side-padding) * 2);
}
.contentblock.image-gallery h2 {
  margin-bottom: 2rem;
}
.contentblock.image-gallery .gallery {
  float: left;
  width: 100%;
}
.contentblock.image-gallery .gallery.per-row-1 .image-container:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0em ) / 1) - 0em);
  margin-right: 0em;
  margin-bottom: 0em;
}
.contentblock.image-gallery .gallery.per-row-1 .image-container:nth-of-type(1n) {
  margin-right: 0;
}
.contentblock.image-gallery .gallery.per-row-2 .image-container:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0em ) / 2) - 0em);
  margin-right: 0em;
  margin-bottom: 0em;
}
.contentblock.image-gallery .gallery.per-row-2 .image-container:nth-of-type(2n) {
  margin-right: 0;
}
.contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0em ) / 3) - 0em);
  margin-right: 0em;
  margin-bottom: 0em;
}
.contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(3n) {
  margin-right: 0;
}
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0em ) / 4) - 0em);
  margin-right: 0em;
  margin-bottom: 0em;
}
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(4n) {
  margin-right: 0;
}
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0em ) / 5) - 0em);
  margin-right: 0em;
  margin-bottom: 0em;
}
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(5n) {
  margin-right: 0;
}
.contentblock.image-gallery .with-lightbox .image-container {
  overflow: hidden;
}
.contentblock.image-gallery .with-lightbox .image-container:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}
.contentblock.image-gallery .with-lightbox .image-container img {
  transform: scale(1);
  transition: all 250ms ease;
}
.contentblock.image-gallery .layout-landscape .image-container {
  aspect-ratio: 16/10;
}
.contentblock.image-gallery .layout-square .image-container {
  aspect-ratio: 1;
}
.contentblock.image-gallery .layout-portrait .image-container {
  aspect-ratio: 9/14;
}

.contentblock.video h2 {
  margin-bottom: 2rem;
}
.contentblock.video .video-container {
  line-height: 0;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.contentblock.video .video-container iframe,
.contentblock.video .video-container object,
.contentblock.video .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contentblock.bigimage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 60vh;
  position: relative;
}
.contentblock.bigimage.truesize {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
}
.contentblock.bigimage.truesize .image-container {
  position: relative;
  overflow: visible;
  width: 100%;
  height: auto;
  background: #fff;
}
.contentblock.bigimage.truesize .image-container picture {
  aspect-ratio: auto;
}
.contentblock.bigimage.truesize .image-container img {
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}
.contentblock.bigimage .text-overlay {
  z-index: 2;
  max-width: 42em;
  padding: 4em 2em;
}
.contentblock.bigimage .text-overlay h2 {
  font-size: clamp(35px, 8vw, 50px);
  line-height: clamp(35px, 8vw, 50px);
  margin-bottom: 0;
  text-align: center;
}
.contentblock.bigimage .text-overlay.white h2 {
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
.contentblock.bigimage .image-container {
  position: absolute;
  background: #000;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.contentblock.bigimage .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.contentblock.buttons {
  margin-top: 1em;
}
.contentblock.buttons .buttons {
  margin-top: 1em;
}

.contentblock.block-slider ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.contentblock.block-slider .image-container {
  height: clamp(450px, 30vw, 650px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.contentblock.block-slider .image-container img {
  z-index: 1;
}
.contentblock.block-slider .image-container .text {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: clamp(35px, 8vw, 50px);
  line-height: clamp(35px, 8vw, 50px);
  font-weight: 700;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  padding: 0 var(--content-padding);
  z-index: 2;
}
.contentblock.block-slider .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.contentblock.block-slider .swiper-button-prev,
.contentblock.block-slider .swiper-button-next {
  left: 0;
  position: absolute;
  width: 5em;
  height: 5em;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.contentblock.block-slider .swiper-button-prev svg,
.contentblock.block-slider .swiper-button-next svg {
  width: 26px;
}
.contentblock.block-slider .swiper-button-next {
  left: auto;
  right: 0;
}

.contentblock.form form {
  width: 100%;
  max-width: 800px;
}
.contentblock.form .button {
  width: auto;
  margin: 1em auto 0 0;
}

.location-accordion {
  margin-top: 1em;
}
.location-accordion .item {
  border-radius: 0.5em;
  overflow: hidden;
  margin-bottom: 0.5em;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.6);
}
.location-accordion .title {
  padding: 1em;
  margin: 0;
  background: #fff;
  cursor: pointer;
  transition: all 150ms ease;
  font-size: clamp(22px, 5vw, 26px);
}
.location-accordion .title:hover {
  background: #f9f9f9;
}
.location-accordion .content {
  display: none;
}
.location-accordion .container {
  display: flex;
  flex-direction: column;
}
.location-accordion .top {
  display: flex;
  padding: 2.5em;
}
.location-accordion .image-container img {
  aspect-ratio: 3/2;
}
.location-accordion h4 {
  margin-bottom: 0.5rem;
}
.location-accordion .impression {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.location-accordion .company-info {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.location-accordion .company-info .email,
.location-accordion .company-info .phone {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.location-accordion .company-info .email .icon,
.location-accordion .company-info .phone .icon {
  margin-right: 0.5em;
  height: 17px;
}
.location-accordion .company-info .email .icon path,
.location-accordion .company-info .phone .icon path {
  fill: #000;
}
.location-accordion .company-info .phone {
  margin-top: 0.5em;
}
.location-accordion .icon {
  height: 20px;
}
.location-accordion .icon path {
  fill: #fff;
}
.location-accordion .social {
  margin-top: 3em;
}
.location-accordion .social ul {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
}
.location-accordion .social ul li {
  float: left;
}
.location-accordion .social ul a {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  border-radius: 5px;
  margin-right: 0.25em;
}
.location-accordion .openinghours {
  margin-top: 3em;
}
.location-accordion .googlemaps {
  width: 100%;
  margin-top: 2em;
}
.location-accordion .googlemaps iframe {
  width: 100%;
  height: 320px;
}

.location-grid {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  display: flex;
  flex-wrap: wrap;
}
.location-grid.grid-3 li.item:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 2em ) / 3) - 2em);
  margin-right: 2em;
  margin-bottom: 2em;
}
.location-grid.grid-3 li.item:nth-of-type(3n) {
  margin-right: 0;
}
.location-grid li.item {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 35px -10px rgba(0, 0, 0, 0.15);
}
.location-grid li.item:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 2em ) / 2) - 2em);
  margin-right: 2em;
  margin-bottom: 2em;
}
.location-grid li.item:nth-of-type(2n) {
  margin-right: 0;
}
.location-grid .icon {
  height: 20px;
}
.location-grid .icon path {
  fill: #fff;
}
.location-grid .image-container {
  width: 100%;
  height: clamp(200px, 300px, 20vw);
}
.location-grid .info {
  display: flex;
  flex-direction: column;
  padding: 2em;
  flex-grow: 1;
}
.location-grid .top {
  display: flex;
}
.location-grid .company-info {
  width: 100%;
  padding-right: 5%;
}
.location-grid .company-info .email,
.location-grid .company-info .phone {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.location-grid .company-info .email .icon,
.location-grid .company-info .phone .icon {
  margin-right: 0.5em;
  height: 17px;
}
.location-grid .company-info .email .icon path,
.location-grid .company-info .phone .icon path {
  fill: #242424;
}
.location-grid .company-info .phone {
  margin-top: 0.5em;
}
.location-grid .social {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.location-grid .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-grid .social ul li {
  float: left;
  margin-left: 0.25em;
  margin-bottom: 0.25em;
}
.location-grid .social ul a {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  border-radius: 5px;
}
.location-grid .openinghours {
  width: 100%;
  margin-top: 3em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.location-grid .openinghours table {
  margin-bottom: 2em;
}

:root {
  --content-width: 900px;
  --content-width-medium: 1380px;
}

a {
  color: var(--clr-text);
}
a:hover {
  color: var(--clr-button);
}

.button {
  border-radius: 6px;
}
.button:hover {
  color: #fff;
}

.header {
  height: 100vh;
  width: 100%;
  padding: 0;
  flex-direction: row;
  position: relative;
}
.header .content-container {
  height: 100%;
  flex-direction: row;
  overflow: hidden;
}
.header .header-content {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.header .left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #fff;
  width: 50%;
  height: 100%;
  z-index: 1;
  padding-left: 4em;
}
.header .left-content:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 25vh;
  bottom: 0;
  right: calc(-25vh + 0.5px);
  background: #fff;
  -webkit-clip-path: polygon(75% 0, 0% 100%, 0 0);
          clip-path: polygon(75% 0, 0% 100%, 0 0);
  z-index: -1;
}
.header .top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  align-self: flex-start;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  height: 80px;
  z-index: 3;
  transition: all 250ms ease;
}
.header .top.hide {
  top: -80px;
}
.header .top.show {
  top: 0;
  background: #fff;
  box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, 0.18);
}
.header .mobile-menu-button {
  width: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  display: none;
}
.header .mobile-menu-button svg {
  width: 28px;
}
.header .menu-logo {
  height: 50px;
  width: auto;
  margin-left: 0;
  margin-right: 2em;
}
.header .menu-logo img {
  height: 50px;
  width: auto;
}
.header nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.header nav li {
  margin-right: 1.5em;
}
.header nav li.active {
  border-bottom: 3px solid var(--clr-button);
}
.header nav a {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-title);
  text-decoration: none;
}
.header .logo {
  max-width: clamp(20em, 20vw, 30em);
  max-height: 260px;
  width: auto;
}
.header .centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 32em;
  margin-top: auto;
  margin-bottom: auto;
}
.header .header-title {
  margin-top: 3rem;
  text-align: center;
}
.header .header-text {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  margin-top: 1em;
}
.header .buttons {
  float: none;
  width: auto;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.header .buttons .button {
  margin: 0 auto 0.5em;
  padding: 1.25em 2.5em;
  font-size: 18px;
}
.header .hero-image {
  height: 100%;
  width: 55%;
}

.header.small {
  height: clamp(60vh, 100vh, 75vh);
}
.header.small .header-title,
.header.small .header-text,
.header.small .buttons {
  width: 100%;
  text-align: left;
}
.header.small .header-title {
  margin-top: 0;
}
.header.small .buttons .button {
  margin: 0 0 0.5em 0;
}
.header.small .centered {
  padding: 1em 1.5em 0;
}

.header.hidden {
  height: 0;
}

.header.no-image {
  height: auto;
  margin: 10em 0 0;
}
.header.no-image .left-content {
  width: 100%;
  padding: 0;
}
.header.no-image .centered {
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  padding: 0 var(--content-padding);
  margin: 0;
}

.footer {
  margin: clamp(5em, 15vw, 8em) 0 0;
  padding: 0;
}
.footer .content-container {
  flex-direction: row;
}
.footer h3 {
  margin-bottom: 0.5em;
}
.footer .icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.footer .googlemaps {
  width: 50%;
  position: relative;
}
.footer .googlemaps iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
.footer .company-info {
  width: 50%;
  padding: 6em 3em 6em clamp(3em, 5vw, 7em);
}
.footer .address {
  display: flex;
  flex-direction: column;
  margin-top: 1.5em;
}
.footer .contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
  margin-top: 1.5em;
}
.footer .contact a {
  display: flex;
  align-items: center;
  align-self: flex-start;
}
.footer .openinghours {
  margin-bottom: 3em;
  display: flex;
  flex-direction: row;
}
.footer .openinghours .general {
  width: 380px;
  padding-right: 2em;
}
.footer .openinghours .special_hours {
  width: calc(100% - 380px);
  max-width: 400px;
}
.footer .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .social li {
  float: left;
  clear: both;
  margin-bottom: 0.25em;
}
.footer .social a {
  display: flex;
  align-items: center;
  float: left;
}

.menu-type.external {
  margin-top: 2em;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.mobile-menu {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--clr-background);
  z-index: -1;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.mobile-menu.show {
  z-index: 100;
  transform: scale(1);
  opacity: 1;
}
.mobile-menu.animateOut {
  opacity: 0;
  transform: scale(0.8);
}
.mobile-menu .menu-container {
  margin: 0 auto;
  padding: 14vh 0 4vh;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  height: 100vh;
  max-width: var(--content-width);
}
.mobile-menu nav li {
  list-style: none;
  width: 100%;
  text-align: center;
  padding: 6px 0;
}
.mobile-menu nav a {
  font-size: clamp(34px, 5vw, 46px);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--clr-text);
}
.mobile-menu .language-switcher {
  margin: 0 auto;
  margin-top: 2em;
  padding: 0 2em;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-menu .language-switcher li {
  margin-left: 0.375em;
  margin-right: 0.375em;
  margin-bottom: 0.75em;
}
.mobile-menu .language-switcher img {
  min-width: 40px;
  width: 40px;
  height: 33px;
}
.mobile-menu .close {
  position: absolute;
  left: 0;
  top: 0;
  padding: 2em;
  cursor: pointer;
  z-index: 2;
}
.mobile-menu .close svg {
  width: 20px;
}

@media screen and (max-width: 1280px) {
  .footer .googlemaps {
    width: 40%;
  }
  .footer .company-info {
    width: 60%;
  }

  .location-grid.grid-3 li.item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 2em ) / 2) - 2em);
    margin-right: 2em;
    margin-bottom: 2em;
  }
  .location-grid.grid-3 li.item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .layout-container.footer {
    padding: 0;
  }

  .header .top {
    padding: 20px 30px;
  }
  .header .mobile-menu-button {
    display: flex;
  }
  .header .mobile-menu-button nav {
    display: block;
  }
  .header .menu-logo {
    margin: 0 auto;
  }
  .header .language-switcher {
    margin-left: 0;
  }
  .header nav {
    display: none;
  }
  .header .left-content {
    width: 90%;
  }

  .footer .content-container {
    flex-direction: column;
  }
  .footer .googlemaps {
    width: 100%;
    height: 350px;
  }
  .footer .company-info {
    width: 100%;
    padding: 3em var(--content-padding);
  }

  .contentblock.block-slider .swiper {
    align-items: flex-start;
  }
  .contentblock.block-slider .swiper-button-prev,
.contentblock.block-slider .swiper-button-next {
    width: 4em;
    height: 4em;
  }
  .contentblock.block-slider .swiper-button-prev svg,
.contentblock.block-slider .swiper-button-next svg {
    width: 20px;
  }
}
@media screen and (max-width: 800px) {
  .contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 1em ) / 4) - 1em);
    margin-right: 1em;
    margin-bottom: 1em;
  }
  .contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(4n) {
    margin-right: 0;
  }

  .contentblock.textimage.left-right, .contentblock.textimage.right-left {
    flex-direction: column;
  }
  .contentblock.textimage.left-right .image-container,
.contentblock.textimage.left-right .text-container, .contentblock.textimage.right-left .image-container,
.contentblock.textimage.right-left .text-container {
    width: 100%;
  }
  .contentblock.textimage.left-right .text-container, .contentblock.textimage.right-left .text-container {
    margin: 0 0 2em 0;
    transform: none;
    width: 100%;
    padding: 3em var(--content-padding) 0;
  }
  .contentblock.textimage.left-right .image-container img, .contentblock.textimage.right-left .image-container img {
    height: 35vh;
    max-height: 40em;
    min-height: 20em;
  }
  .contentblock.textimage.right-left .text-container {
    transform: none;
    width: 100%;
    padding: 0 var(--content-padding) 0;
  }

  .tabs {
    flex-wrap: wrap;
    padding-bottom: 0.5em;
  }
  .tabs:after {
    background: none;
    border-bottom: 1px dashed #9e9e9e;
  }
  .tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375em;
    border: 1px solid #d3d0d0;
    text-align: center;
    padding: 1.25em 1em;
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }
  .tabs .tab:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 6px ) / 2) - 6px);
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .tabs .tab:nth-of-type(2n) {
    margin-right: 0;
  }
  .tabs .tab.active {
    border-bottom-color: #d3d0d0;
  }

  .location-grid.grid-3 li.item:nth-of-type(n),
.location-grid li.item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0em ) / 1) - 0em);
    margin-right: 0em;
    margin-bottom: 2em;
  }
  .location-grid.grid-3 li.item:nth-of-type(1n),
.location-grid li.item:nth-of-type(1n) {
    margin-right: 0;
  }
  .location-grid .top {
    flex-direction: column;
  }
  .location-grid .social {
    width: 100%;
    align-items: flex-start;
    margin-top: 2em;
  }
  .location-grid .info {
    padding: 2em 1.5em;
  }
}
@media screen and (max-width: 680px) {
  .layout-container,
.contentblock {
    padding: 0 1.5em;
  }

  .header {
    height: auto;
    padding: 0;
  }
  .header.small {
    height: auto;
  }
  .header.small .centered {
    padding-top: 2em;
  }
  .header.small .header-text {
    padding-top: 1em;
  }
  .header.no-image {
    margin: 6em 0 1em;
  }
  .header.no-image .left-content {
    margin: 0;
  }
  .header .language-switcher {
    display: none;
  }
  .header .menu-logo {
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
  .header nav {
    margin-left: auto;
  }
  .header .logo {
    max-width: 80%;
    max-height: 160px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .header .content-container {
    height: auto;
  }
  .header .top {
    background: #fff;
  }
  .header .header-title {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .header .header-content {
    flex-direction: column-reverse;
  }
  .header .hero-image {
    width: 100%;
    height: clamp(400px, 100vh, 50vh);
    padding-top: 80px;
  }
  .header .left-content {
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
    position: relative;
    margin-top: -50px;
  }
  .header .centered {
    margin: 0 auto;
    background: #fff;
    padding: 2em 1em 0;
    border-radius: 20px 20px 0;
    width: 100%;
    max-width: 100%;
  }

  .contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 1em ) / 3) - 1em);
    margin-right: 1em;
    margin-bottom: 1em;
  }
  .contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(3n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(3n) {
    margin-right: 0;
  }

  .menu-card {
    padding: 3em 0 0;
  }
  .menu-card li.indent {
    margin-left: 2em;
    width: calc(100% - 2em);
  }
  .menu-card .category {
    margin-top: 3em;
  }
  .menu-card .product {
    flex-direction: column;
  }
  .menu-card .product-image {
    max-width: 120px;
    height: 120px;
    margin: 1em 0;
  }
  .menu-card .product-price .prefix {
    margin-right: 8px;
  }
  .menu-card .product-price .price {
    max-width: 100%;
    text-align: left;
    margin-top: 0.5em;
    justify-content: flex-start;
  }
  .menu-card .product-price .price span {
    text-align: left;
  }
  .menu-card .option {
    align-self: flex-start;
  }
  .menu-card .option .option-name {
    margin-right: 10px;
  }
  .menu-card .option .option-price {
    text-align: left;
  }

  .location-accordion .top {
    padding: 2em 1.5em;
    flex-direction: column-reverse;
  }
  .location-accordion .impression {
    width: 100%;
  }
  .location-accordion .company-info {
    width: 100%;
    margin-bottom: 3em;
  }

  .footer .openinghours {
    flex-direction: column;
  }
  .footer .openinghours .general {
    width: 100%;
    padding: 0;
  }
  .footer .openinghours .special_hours {
    width: 100%;
    max-width: 100%;
    margin-top: 3em;
  }
}
@media screen and (max-width: 480px) {
  .contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(n),
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 1em ) / 2) - 1em);
    margin-right: 1em;
    margin-bottom: 1em;
  }
  .contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(2n),
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(2n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 370px) {
  .contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(n),
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 1em ) / 2) - 1em);
    margin-right: 1em;
    margin-bottom: 1em;
  }
  .contentblock.image-gallery .gallery.per-row-3 .image-container:nth-of-type(2n),
.contentblock.image-gallery .gallery.per-row-4 .image-container:nth-of-type(2n),
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-height: 640px) {
  .header {
    height: auto;
  }
  .header.small {
    height: auto;
  }
  .header.hidden {
    height: 0;
  }
  .header .centered {
    padding-top: 80px;
  }
  .header .content-container {
    height: auto;
  }
}