.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

:root {
  --orange: #ff6900;
  --red: #fa350f;
  --transparent: transparent;
  --light-gray: #e5e5e5;
  --middle-gray: #c4c4c4;
  --map-gray: #ececec;
  --white: #fff;
  --black: #000;
  --gray: #4a4a4a;
  --kingsize-gray: #332f29;
  --dark: #332e2b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 86px);
}

body {
  font-family: Univers;
  position: relative;
}

main {
  position: relative;
  overflow-x: hidden;
}

h1 {
  font-weight: 700;
  font-size: 5rem;
}

img {
  width: 100%;
}

header {
  overflow-x: hidden;
}

.logo {
  width: 150px;
}
@media (min-width: 1200px) {
  .logo {
    width: 180px;
  }
}

.header-mobile-wrapper {
  display: none;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 999;
  border-top: 0;
  position: relative;
}
.header-mobile-wrapper::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--light);
  display: none;
}
body.has-mobile-nav-open .header-mobile-wrapper {
  display: block;
}

.header-nav .nav-link {
  font-size: 1.25rem;
  color: var(--body-color);
  font-weight: 700;
  font-family: "Univers Condensed";
  text-transform: uppercase;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  transform: translateY(10px);
}
.header-nav .nav-link.active {
  color: var(--gray);
}
.header-nav .nav-link:hover {
  color: var(--primary);
}

.header-nav-mobile {
  position: relative;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding-top: 2%;
  overflow: hidden;
}
@media (orientation: portrait) {
  .header-nav-mobile {
    padding-top: 25%;
  }
}
.header-nav-mobile .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3rem;
  color: var(--body-color);
  font-weight: 700;
  font-family: "Univers Condensed";
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  padding: 0;
  border: none;
}
@media (max-width: 768px) and (orientation: landscape) {
  .header-nav-mobile .nav-link {
    font-size: 1.85rem;
  }
}
.header-nav-mobile .nav-link.active {
  color: var(--gray);
}
.header-nav-mobile .nav-link:hover {
  color: var(--dark);
}
@media (min-width: 992px) {
  .header-nav-mobile .nav-link:hover {
    color: var(--primary);
  }
}

.header-mobile-wrapper::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: red;
  display: none;
}

.header-mobile-wrapper::before {
  content: "";
  position: fixed;
  width: 50%;
  top: 0%;
  height: 150vh;
  transform: skew(-45deg);
  background-color: var(--red);
}

@keyframes entry {
  from {
    left: 120%;
  }
  to {
    left: 0;
  }
}
.body.has-mobile-nav-open .header-mobile-wrapper::before {
  top: 0%;
  animation: entry 0.3s 0.1s both;
}

.nav {
  justify-content: space-evenly;
}

.hamburger {
  position: relative;
  z-index: 99999;
}

.section-padding {
  padding-block: clamp(3rem, 10vmin, 90px);
  padding-top: clamp(3rem, 10vmin, 90px);
  padding-bottom: clamp(3rem, 10vmin, 90px);
}

.scroll-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: calc(3.75% - 25px);
  bottom: 40px;
  width: 70px;
  height: 70px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  z-index: 4;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0, 1) 0s, background 0.2s ease;
  transform: translateY(calc(100% + 45px));
}
.scroll-top:hover {
  background: rgba(255, 255, 255, 0.18);
}

.is-not-top .scroll-top {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0, 1) 0.4s, background 0.2s ease;
}

.scroll-top__icon {
  fill: black;
  width: 34px;
  height: 34px;
}

.red {
  color: var(--red);
}

h2 {
  font-size: 4rem;
  line-height: 1em;
  text-transform: uppercase;
  padding-bottom: 0.25em;
}

.white {
  color: #fff;
}

.stripes {
  background-color: #e5e5f7;
  background: repeating-linear-gradient(-45deg, var(--red), var(--red) 32px, #fff 32px, #fff 64px);
}

.columns {
  column-width: 500px;
  column-gap: 5rem;
  break-inside: avoid;
  margin-top: 3rem;
}
.columns ul {
  margin-left: 2em;
}
.columns h1 {
  font-size: 2.5rem;
  line-height: 1em;
  text-transform: uppercase;
  padding-bottom: 0.25em;
}
.columns h2 {
  font-size: 1.9375rem;
}

.loader {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 3333;
  background-color: #fff;
  overflow: hidden;
}
.loader .loader-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.loader .loader-image1,
.loader .loader-image2 {
  position: absolute;
  width: 50%;
  top: 50%;
  visibility: hidden;
  transform: translateY(-50%);
}
.loader .loader-img {
  width: 100%;
}
.loader .loader-image1 {
  left: 0;
}
.loader .loader-image2 {
  right: 0;
}
.loader .loader-logo {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  visibility: hidden;
}

:root {
  --xWidth: 25em;
}
@media (min-width: 768px) {
  :root {
    --xWidth: 30em;
  }
}

.hero-container {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.hero-container .hero {
  position: relative;
  overflow: hidden;
}
.hero-container .display-1 {
  font-size: clamp(1.5rem, 5vmax, 15rem) !important;
}
.hero-container .hero-x {
  position: absolute;
  top: 0;
  left: 60%;
  transform-origin: top left;
  transform: skew(-45deg);
  width: var(--xWidth);
  height: 100%;
  mix-blend-mode: multiply;
  background-color: var(--red);
  z-index: 2;
}
.hero-container .hero-video {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  z-index: -1;
}
.hero-container .hero-image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: top right;
  z-index: -1;
}
@media (min-width: 992px) {
  .hero-container .hero-image {
    object-position: top right;
  }
}
.hero-container .hero-image-first {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: top right;
  z-index: 2;
  opacity: 0;
}
@media (min-width: 992px) {
  .hero-container .hero-image-first {
    object-position: top right;
  }
}
.hero-container .hero-mask {
  position: absolute;
  width: 60%;
  transform-origin: top left;
  height: 100%;
  top: 0;
  background-color: #fff;
  transform: skew(-45deg);
  z-index: 1;
}
.hero-container .hero-mask2 {
  position: absolute;
  width: 150%;
  transform-origin: top left;
  height: 100%;
  top: 0;
  left: calc(60% + var(--xWidth));
  background-color: #fff;
  transform: skew(-45deg);
  z-index: 1;
}
.hero-container .hero-white-mask {
  position: absolute;
  inset: 0;
  background-color: #fff;
}
.hero-container .hero-text {
  position: absolute;
  z-index: 1;
  visibility: hidden;
  z-index: 5;
}
.hero-container .hero-text p {
  width: 80%;
  line-height: 1.6em;
}
.hero-container .hero-text--left {
  top: 47%;
  left: 3%;
  width: 35%;
}
.hero-container .hero-text--left h2 {
  color: #fff;
}
@media (min-width: 600px) {
  .hero-container .hero-text--left {
    top: 57%;
    left: 3%;
    width: 35%;
  }
}
@media (min-width: 992px) {
  .hero-container .hero-text--left {
    top: 15%;
    left: 10%;
    width: 35%;
  }
  .hero-container .hero-text--left h2 {
    color: #000;
  }
}
.hero-container .hero-text--right {
  bottom: 15%;
  right: 10%;
  width: 35%;
}

#erfahrung,
#intro {
  background-color: #fdfcfc;
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(254, 254, 252, 0.1) 50%), linear-gradient(0deg, rgb(245, 245, 245) 0%, rgb(254, 254, 252) 29%, rgb(253, 253, 251) 72%, rgb(241, 241, 241) 100%);
}

#ansprechpartner {
  background-color: #000;
}
#ansprechpartner .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
  gap: 2em;
  padding: 4% 9%;
}
@media (min-width: 992px) {
  #ansprechpartner .container {
    flex-direction: row;
    padding: 7% 0;
  }
}
#ansprechpartner p {
  width: 32ch;
}

.main-icon {
  margin-top: 3rem;
}

.main-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 992px) {
  .main-icon-item {
    flex-direction: row;
    align-items: flex-start;
  }
}
.main-icon-item .main-icon-image {
  width: 70%;
}
@media (min-width: 992px) {
  .main-icon-item .main-icon-image {
    width: 40%;
  }
}
.main-icon-item .main-icon-text {
  padding: 5%;
  width: 100%;
}
.main-icon-item .main-icon-text ul {
  margin-left: 1em;
  column-width: 250px;
  column-gap: 1rem;
  break-inside: avoid;
}
.main-icon-item .main-icon-text ul li::marker {
  color: var(--red);
}

.icon-with-text {
  display: flex;
  gap: 3rem;
}
.icon-with-text .icon {
  width: 40%;
}
.icon-with-text .text {
  width: 100%;
}

.slider {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  overflow: hidden;
}
.slider .glide__slide {
  height: 100%;
  overflow: hidden;
}
.slider .glide__slide img {
  object-fit: cover;
  height: 80vh;
}
.slider .slider-textbox {
  width: 100%;
  position: relative;
  top: 20%;
  right: 0;
  padding: 2em;
  background-color: #fff;
}

@media (min-width: 992px) {
  .slider .slider-textbox {
    width: 80ch;
    position: absolute;
    top: 20%;
    right: 0;
    padding: 3em 2em;
    background-color: #fff;
  }
  .slider .slider-textbox::before {
    content: "";
    background: repeating-linear-gradient(-45deg, var(--red), var(--red) 32px, #fff 32px, #fff 64px);
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 1em;
  }
  .slider .slider-textbox::after {
    content: "";
    background: repeating-linear-gradient(-45deg, var(--red), var(--red) 32px, #fff 32px, #fff 64px);
    position: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1em;
  }
}
.glide__arrow {
  position: absolute;
  display: block;
  width: 164px;
  height: 164px;
  aspect-ratio: 1/1;
  top: 75%;
  right: 5%;
  z-index: 2;
  color: white;
  color: var(--red);
  text-transform: uppercase;
  padding: 8px;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  text-shadow: none;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .glide__arrow {
    top: 70%;
    right: 10%;
    width: 264px;
    height: 264px;
  }
}

.glide__arrow:hover {
  opacity: 0.9;
}

.glide__slide--active {
  z-index: 10;
  isolation: isolate;
}

.glide__arrow.glide__arrow--left {
  display: none;
}

.x {
  position: absolute;
  top: 0;
  left: 70%;
  transform-origin: top left;
  transform: skew(-45deg);
  width: 30em;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: var(--red);
  z-index: 0;
}

.kontakt {
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.kontakt .btn {
  margin-left: auto;
  display: block;
}

.logo-container {
  padding-top: 10%;
  width: 220px;
}
@media (min-width: 600px) {
  .logo-container {
    padding-top: 0;
    width: 320px;
  }
}

.icons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 3em;
  justify-items: center;
  align-items: center;
  overflow-x: hidden;
  margin-top: 4em;
}
@media (min-width: 768px) {
  .icons {
    flex-direction: row;
  }
}
.icons img {
  width: 100%;
}

.icon-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-item-icns {
  width: 150px;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.map-container .map {
  position: relative;
}
.map-container .map img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.map-container .mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 7%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 93%, rgb(255, 255, 255) 100%);
}
.map-container .circle {
  position: absolute;
  top: 49%;
  left: 31%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1vw solid var(--red);
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%);
  animation: pulse 15s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.map-container .city {
  position: absolute;
  width: 1.5vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--red);
  transform: translate(-50%, -50%);
}
.map-container .city span {
  position: absolute;
  left: 2.5vw;
  background-color: rgba(0, 0, 0, 0.5333333333);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25em 1em;
}
@media (min-width: 768px) {
  .map-container .city span {
    font-size: 1rem;
  }
}
.map-container .hamburg {
  top: 45%;
  left: 75%;
}
.map-container .bremen {
  top: 79%;
  left: 49%;
}
.map-container .bremerhaven {
  top: 49%;
  left: 46%;
}
.map-container .address-container {
  position: relative;
  top: 57%;
  left: 5%;
  background-color: rgba(255, 255, 255, 0.8666666667);
  border-radius: 0.5em;
  padding: 1em 1.5em 1em 1.5em;
}
@media (min-width: 992px) {
  .map-container .address-container {
    position: absolute;
    left: 15%;
  }
}
.map-container .address-container .address-container-body {
  width: fit-content;
  padding: 1em 0;
}
@media (min-width: 992px) {
  .map-container .address-container .address-container-body {
    margin-left: auto;
    padding: 1em 0 1em 3em;
  }
}
.map-container .address-container .logo {
  width: 150px;
  margin-bottom: 1rem;
}
.map-container .address-container a:hover {
  color: var(--red);
}
.map-container .address-container::before {
  content: "";
  background: repeating-linear-gradient(-45deg, var(--red), var(--red) 32px, #fff 32px, #fff 64px);
  position: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: 1em;
}
.map-container .address-container::after {
  content: "";
  background: repeating-linear-gradient(-45deg, var(--red), var(--red) 32px, #fff 32px, #fff 64px);
  position: inherit;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1em;
}

footer {
  position: relative;
  z-index: 100;
  background-color: #fff;
}

footer:focus {
  outline: 0 !important;
  transition: box-shadow 0.15s ease-in-out;
  box-shadow: none;
}

.scroll-top {
  z-index: 101;
}

.offcanvas {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  left: 0;
  top: 100%;
  padding-bottom: 20%;
  position: fixed;
  z-index: 222;
  background-color: #fff;
  visibility: hidden;
  transition: 0.4s;
}
@media (min-width: 600px) {
  .offcanvas {
    height: calc(100vh - 148px);
    padding-bottom: 2%;
  }
}
.offcanvas .close-btn {
  display: block;
  position: fixed;
  width: fit-content;
  right: calc(3.75% - 10px);
  top: 100%;
  opacity: 0;
  color: #000;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .offcanvas .close-btn {
    right: calc(3.75% - 25px);
  }
}
.offcanvas .close-btn svg {
  width: 45px;
  height: 45px;
}
.offcanvas .close-btn:hover {
  color: var(--red);
}
.offcanvas .offcanvas-x {
  position: absolute;
  top: 0%;
  right: -200%;
  transform-origin: top left;
  transform: skew(-45deg);
  width: 30em;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: var(--red);
  transition: 0.5s 0.5s;
}

.offcanvas-header {
  margin-top: 100px;
  margin-bottom: 4em;
}

.offcanvas.show {
  top: 0;
}

.offcanvas.show ~ .scroll-top {
  transform: translateY(100px);
}

.offcanvas.show .close-btn {
  top: 6em;
  opacity: 1;
}
@media (min-width: 992px) {
  .offcanvas.show .close-btn {
    top: 7em;
  }
}

.offcanvas.show ~ header .hamburger,
.offcanvas.show ~ header .nav {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s linear, opacity 0.3s;
}

.offcanvas.show .offcanvas-x {
  right: -50%;
}

#impressum p {
  width: 60%;
}

a:focus {
  box-shadow: none;
}

.ml-5 {
  margin-left: 5%;
}

.fournullfour {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fournullfour .fournullfour-number {
  position: absolute;
  font-size: 105vmax;
  color: var(--white);
  letter-spacing: -0.075em;
}
@media (orientation: portrait) {
  .fournullfour .fournullfour-number {
    transform: rotate(90deg);
  }
}
.fournullfour h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fournullfour a {
  margin: 2em 0;
  display: block;
  width: fit-content;
  padding: 0.5em 1.5em;
  font-size: 2rem;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  text-decoration: none;
}

.fournullfour-push {
  height: calc(100vh - 248px);
}