.contentblocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: clamp(4em, 15vw, 8em);
  z-index: 1;
}
.contentblocks.small-top {
  margin-top: clamp(4em, 15vw, 4em);
}

.contentblock {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(var(--content-width) + 4em);
  padding: 0 2em;
  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: var(--content-width-medium);
}
.contentblock.compact {
  margin-top: 3.5em;
}
.contentblock.compact .location-accordion {
  margin-top: 0;
}
.contentblock .buttons {
  float: left;
  width: 100%;
  margin-top: 1.75em;
  margin-bottom: -0.5em;
}
.contentblock .buttons .button {
  float: left;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.contentblock.textimage {
  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%;
  align-self: center;
  margin: 4em 0;
}
.contentblock.textimage.left-right .image-container, .contentblock.textimage.right-left .image-container {
  width: 43%;
}
.contentblock.textimage.right-left {
  flex-direction: row-reverse;
}
.contentblock.textimage.down-top .text-container, .contentblock.textimage.top-down .text-container {
  margin-bottom: 2em;
}
.contentblock.textimage.down-top .image-container img, .contentblock.textimage.top-down .image-container img {
  height: auto;
  max-height: 40em;
  min-height: 20em;
}
.contentblock.textimage.down-top {
  flex-direction: column-reverse;
}
.contentblock.textimage.down-top .text-container {
  margin-bottom: 0;
  margin-top: 2em;
}
.contentblock.textimage.text-inside {
  align-items: center;
  justify-content: center;
  max-width: var(--content-width);
}
.contentblock.textimage.text-inside .text-container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding: clamp(2em, 5vw, 4em);
  margin: clamp(1em, 8vw, 4em) 2em;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.contentblock.textimage.text-inside h2, .contentblock.textimage.text-inside h3, .contentblock.textimage.text-inside h4 {
  color: #fff;
  text-align: center;
}
.contentblock.textimage.text-inside .image-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
}
.contentblock.textimage.text-inside .image-container img {
  opacity: 0.65;
}
.contentblock.textimage.text-inside .buttons {
  display: flex;
  justify-content: center;
}
.contentblock.textimage.text-inside .buttons .button {
  margin: 0 0.25em 0.5em;
}

.contentblock.image-gallery h2 {
  margin-bottom: 2rem;
}
.contentblock.image-gallery .gallery {
  float: left;
  width: 100%;
  margin-bottom: -1em;
}
.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: 1em;
}
.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% + 1em ) / 2) - 1em);
  margin-right: 1em;
  margin-bottom: 1em;
}
.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% + 1em ) / 3) - 1em);
  margin-right: 1em;
  margin-bottom: 1em;
}
.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% + 1em ) / 4) - 1em);
  margin-right: 1em;
  margin-bottom: 1em;
}
.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% + 1em ) / 5) - 1em);
  margin-right: 1em;
  margin-bottom: 1em;
}
.contentblock.image-gallery .gallery.per-row-5 .image-container:nth-of-type(5n) {
  margin-right: 0;
}
.contentblock.image-gallery .with-lightbox .image-container:hover img {
  opacity: 0.8;
}
.contentblock.image-gallery .with-lightbox .image-container img {
  transition: opacity 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.black h2 {
  color: #000;
}
.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.block-slider.medium {
  max-width: calc(var(--content-width) + 4em);
}
.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;
}
.location-accordion .title {
  padding: 1em;
  margin: 0;
  background: #222;
  cursor: pointer;
  transition: all 150ms ease;
  font-size: clamp(22px, 5vw, 26px);
}
.location-accordion .title:hover {
  background: #333;
}
.location-accordion .content {
  display: none;
}
.location-accordion .container {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
}
.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 .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 {
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.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 .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: 1200px;
}

body {
  background-image: url("/images/bg_theme_dark.png");
  background-size: 100%;
  background-position: top center;
  background-color: #121212;
  color: #fff;
}

h1, h2, h3, h4 {
  color: #fff;
}

h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 120%;
}

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

.button {
  border-radius: 6px;
  padding: 1.25rem 2.5rem;
  font-size: 20px;
}

.page-not-found .header:after {
  height: 250px;
}
.page-not-found .header .content-container {
  min-height: 0;
  height: 8em;
  padding-bottom: 50px;
}

.homepage .header .content-container {
  min-height: 100vh;
  max-height: none;
}
.homepage .header .logo img {
  width: clamp(20em, 20vw, 30em);
}

.header {
  padding: 0;
}
.header.small-shadow:after {
  height: 250px;
}
.header.no-image .content-container {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 0;
  margin-bottom: -4em;
}
.header:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 500px;
  width: 100%;
  z-index: 0;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.966) 0.8%, rgba(0, 0, 0, 0.919) 3%, rgba(0, 0, 0, 0.86) 6.6%, rgba(0, 0, 0, 0.792) 11.3%, rgba(0, 0, 0, 0.716) 17%, rgba(0, 0, 0, 0.635) 23.7%, rgba(0, 0, 0, 0.55) 31.1%, rgba(0, 0, 0, 0.465) 39.1%, rgba(0, 0, 0, 0.379) 47.5%, rgba(0, 0, 0, 0.297) 56.3%, rgba(0, 0, 0, 0.22) 65.3%, rgba(0, 0, 0, 0.149) 74.2%, rgba(0, 0, 0, 0.088) 83.1%, rgba(0, 0, 0, 0.037) 91.8%, rgba(0, 0, 0, 0) 100%);
}
.header .content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  min-height: 45em;
  padding-top: 100px;
  padding-bottom: 100px;
}
.header .content-container.small {
  min-height: 0;
  height: 8em;
  padding-bottom: 50px;
}
.header .overlay {
  padding: 4em 2em;
  max-width: 780px;
  text-align: center;
  z-index: 1;
}
.header .logo img {
  width: clamp(16em, 20vw, 20em);
  margin: 0 auto;
}
.header .header-title {
  margin-top: 3rem;
}
.header .header-title,
.header .header-text {
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.header .header-text {
  font-size: clamp(18px, 5vw, 22px);
  line-height: 140%;
  margin-top: 2em;
}
.header .buttons {
  margin: 3em auto 0;
  justify-content: center;
}
.header .buttons .button {
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.header .image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
}
.header .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.header .mobile-menu-button {
  width: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  display: none;
}
.header .mobile-menu-button svg {
  width: 28px;
}
.header .mobile-menu-button svg path {
  fill: #fff;
}
.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 li:last-child {
  margin-right: 0;
}
.header nav a {
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-title);
  color: #fff;
  font-size: 20px;
}

.header .top {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 4em 2em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.language-switcher {
  margin-left: 2em;
}
.language-switcher img {
  border: none;
}

.menu-card h3:after {
  display: none;
}
.menu-card li {
  padding: 1em 0;
}
.menu-card li:first-of-type {
  border-top: 1px dashed #9e9e9e;
}

.footer {
  margin: clamp(5em, 15vw, 8em) 0 0;
  padding: 0 2em;
  background: rgba(0, 0, 0, 0.25);
  padding-top: 2em;
}
.footer .content-container {
  max-width: var(--content-width-medium);
  padding: 6em 0;
  flex-direction: row;
}
.footer h3 {
  margin-bottom: 0.5em;
}
.footer .icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.footer .icon path {
  fill: #fff;
}
.footer .googlemaps {
  width: 100%;
  height: 400px;
  position: relative;
}
.footer .googlemaps iframe {
  width: 100%;
  height: 100%;
}
.footer .company-info {
  width: 40%;
}
.footer .company-hours {
  width: 50%;
  margin-top: 4em;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.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;
  color: var(--clr-button);
}
.footer .openinghours {
  margin-bottom: 3em;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.footer .openinghours .general {
  width: 340px;
  padding-right: 2em;
}
.footer .openinghours .special_hours {
  width: calc(100% - 340px);
  max-width: 400px;
  margin-left: auto;
}
.footer .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .social li {
  float: left;
  margin-bottom: 0.25em;
}
.footer .social a {
  display: flex;
  align-items: center;
  float: left;
}
.footer .social .icon {
  width: 1.5em;
  height: 1.5em;
}

.mobile-menu {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #121212;
  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;
  color: #fff;
}
.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;
  right: 0;
  top: 0;
  padding: 2em;
  cursor: pointer;
  z-index: 2;
}
.mobile-menu .close svg {
  width: 24px;
}
.mobile-menu .close svg path {
  fill: #fff;
}

.tabpanes .pane {
  background: none;
}

.tabs:after {
  background: #999;
}
.tabs .tab {
  color: #fff;
  border-color: #999;
  background: none;
}
.tabs .tab.active {
  border-color: #fff;
}
.tabs .tab.active:hover {
  color: var(--clr-text);
}
.tabs .tab:hover {
  background: #242424;
  color: #fff;
}

.menu-card h3:after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: var(--clr-button);
  margin-top: 0.25em;
  max-width: 100px;
}
.menu-card .description {
  color: #bbb;
}

textarea, input, select {
  border: 1px solid #fff;
}
textarea:focus, input:focus, select:focus {
  border-color: #fff;
  background: #ededed;
}

.sl-overlay {
  background: #000;
  opacity: 0.8 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .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: 1180px) {
  .footer .company-info {
    width: 48%;
  }
  .footer .company-hours {
    width: 46%;
  }
  .footer .company-hours .special_hours,
.footer .company-hours .general {
    width: 100%;
  }
  .footer .company-hours .special_hours {
    max-width: 100%;
    margin: 3em 0 0;
  }
  .footer .openinghours {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .header.no-image .content-container {
    padding-top: 80px;
  }
  .header:after {
    height: 250px;
    opacity: 0.8;
  }
  .header .content-container.small {
    padding: 0;
    height: auto;
  }
  .header .top {
    padding: 20px;
  }
  .header .mobile-menu-button {
    display: flex;
  }
  .header .mobile-menu-button nav {
    display: block;
  }
  .header nav {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 2.5em;
  }

  .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) {
  .header .content-container {
    min-height: 20em;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .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-bottom: 2em;
    margin-top: 0;
  }
  .contentblock.textimage.left-right .image-container img, .contentblock.textimage.right-left .image-container img {
    height: auto;
    max-height: 40em;
    min-height: 20em;
  }
  .contentblock.textimage.right-left .text-container {
    margin-bottom: 2em;
    margin-top: 0;
  }

  .contentblock.textimage.text-inside .text-container {
    max-width: 100%;
    padding: 2em 0;
    margin: 1em 0 2em;
  }

  .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;
  }

  .button {
    padding: 1em 2.5em;
    font-size: 18px;
  }

  .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;
  }

  .footer .content-container {
    flex-direction: column;
    padding: 5em 0 3em;
  }
  .footer .company-info,
.footer .company-hours {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .layout-container,
.contentblock {
    padding: 0 1.5em;
  }

  .layout-container.header {
    padding: 0;
  }

  .language-switcher {
    display: none;
  }

  .mobile-menu .language-switcher {
    display: flex;
  }

  .header .mobile-menu-button {
    margin-left: auto;
  }

  .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 li.indent {
    margin-left: 2em;
    width: calc(100% - 2em);
  }
  .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;
  }
}
@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;
  }

  .layout-container,
.contentblock {
    padding: 0 1em;
  }
}
@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;
  }
}