@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url('../fonts/Cormorant-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #f7c526;
  --title-text: #252525;
  --white: white;
  --magentaconny: #621833;
  --body: #555;
  --petrol: #115b6f;
  --big: 375px;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 0;
}

.h4 {
  letter-spacing: -.0175rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.875rem;
}

.style-guide-title {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin-bottom: 5px;
  display: flex;
  position: sticky;
  top: 20px;
}

.main-container {
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin: 60px auto 100px;
  padding-top: 0;
  padding-left: 100px;
  padding-right: 100px;
}

.main-container.additionalvalues {
  margin-top: 0;
}

.h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 3.25rem;
}

.style-guide-para-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  margin-bottom: 20px;
  display: flex;
}

.all-paragraph-container {
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
}

.body {
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2rem;
}

.btn-v1 {
  grid-column-gap: 12px;
  background-color: var(--primary);
  color: var(--title-text);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.btn-v1:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.btn-v1.buttoncorenlia {
  background-color: var(--magentaconny);
  color: var(--white);
  border-radius: 3px;
}

.color-palette-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 50%;
  display: grid;
}

.color {
  background-color: #fff;
  height: 120px;
  box-shadow: 0 0 20px #0000001a;
}

.color.primary {
  background-color: var(--primary);
}

.color.body {
  background-color: var(--body);
  color: #454545;
}

.color.heading {
  background-color: var(--title-text);
  color: #151515;
}

.style-guide-blocks-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-rich-text {
  color: #454159;
  margin-top: 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.post-rich-text h2 {
  color: var(--title-text);
  font-family: Urbanist, sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.75rem;
}

.post-rich-text h3 {
  color: var(--title-text);
  font-family: Urbanist, sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 3.25rem;
}

.post-rich-text h4 {
  color: var(--title-text);
  font-family: Urbanist, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.875rem;
}

.post-rich-text h5 {
  color: var(--title-text);
  font-family: Urbanist, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
}

.post-rich-text h6 {
  color: var(--title-text);
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.post-rich-text p {
  color: var(--body);
  margin-bottom: 50px;
  font-family: Outfit, sans-serif;
  font-size: 1.063rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.post-rich-text blockquote {
  border-left-color: var(--primary);
  color: var(--title-text);
  background-image: linear-gradient(#ddaa280d, #ddaa280d);
  margin-bottom: 30px;
  padding: 30px;
  font-family: Urbanist, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
}

.post-rich-text img {
  margin-bottom: 50px;
}

.post-rich-text a {
  color: var(--primary);
  font-weight: 600;
}

.post-rich-text ol {
  color: var(--body);
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  line-height: 2rem;
}

.display {
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 5rem;
}

.h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
  display: block;
}

.style-guide-block {
  background-color: #fff;
  border-radius: 7px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  margin-bottom: 60px;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #00000008;
}

.style-guide-block.vertical {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.h6 {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.h6.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.h6.small.black {
  color: var(--title-text);
}

.h6.heading1 {
  color: #000;
}

.h6.names {
  color: var(--title-text);
}

.h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.75rem;
}

.h2.value-text {
  align-items: center;
  max-width: 1000px;
}

.h1 {
  letter-spacing: .0675rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 4.125rem;
}

.body-extra-big {
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.625rem;
}

.all-heading-container {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  margin-bottom: 30px;
  display: flex;
}

.buttons-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.template-info-section {
  background-color: #efeee7;
  padding-top: 90px;
  padding-bottom: 90px;
}

.body-big {
  font-family: Outfit, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.body-big.body-beruns {
  margin-top: 20px;
}

.body-small {
  font-family: Outfit, sans-serif;
  font-size: .938rem;
  font-weight: 400;
  line-height: 1.375rem;
}

.body-small._500-medium {
  font-weight: 500;
}

.hero-slider-header {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  color: var(--white);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero-slider-header.align-center {
  text-align: center;
  align-items: center;
}

.hero-slider-wrapper {
  border: 1px solid #0000;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.arrow-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-hero-section {
  width: 100%;
  position: relative;
}

.left-arrow {
  color: #ffffffb3;
  border: 2px solid #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: 0% auto 0% 15px;
}

.left-arrow:hover {
  color: #151515;
  background-color: #fff;
}

.slide-nav {
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  display: flex;
  bottom: 10px;
}

.slider-image {
  z-index: -1;
  filter: brightness(90%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-slide {
  height: 54rem;
}

.right-arrow {
  color: #ffffffb3;
  border: 2px solid #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: 0% 15px 0% auto;
}

.right-arrow:hover {
  color: #151515;
  background-color: #fff;
}

.hero-slider-text-wrapper {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 60px;
  display: flex;
}

.hero-slider-text-wrapper.align-center {
  text-align: left;
  align-items: flex-start;
  padding-left: 0;
}

.hero-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.hero-slider-mask {
  width: 100%;
  height: 100%;
}

.btn-arrow-embed {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 10px;
  margin-top: 1px;
  display: flex;
}

.btn-v2 {
  grid-column-gap: 12px;
  background-color: var(--primary);
  color: var(--title-text);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.btn-v2:hover {
  background-color: var(--petrol);
  color: var(--white);
}

.btn-v2.no-hover-effect {
  color: var(--title-text);
  border: 1.5px solid #0000;
}

.btn-v2.no-hover-effect:hover {
  background-color: var(--primary);
}

.btn-v2.hover-white {
  color: var(--title-text);
  border-radius: 8px;
}

.btn-v2.hover-white:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.features-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-container {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.feature-block {
  grid-column-gap: 45px;
  background-image: linear-gradient(#fff0, #fff0 55%, #0003 80%, #0003);
  border-radius: 32px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 350px;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-block-text {
  grid-row-gap: 10px;
  color: var(--white);
  flex-direction: column;
  display: flex;
}

.feature-block-link {
  background-color: var(--primary);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.feature-block-image {
  z-index: -1;
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.feature-block-image.gernot {
  object-position: 50% 20%;
}

.feature-block-para {
  color: #fffc;
  overflow: hidden;
}

.feature-block-title {
  color: var(--white);
  max-width: 140px;
}

.home-about-section {
  width: 100%;
}

.home-about-container {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.home-about-video-wrapper {
  width: 50%;
}

.home-about-video {
  object-fit: cover;
  background-image: linear-gradient(#0003, #0003);
  width: 100%;
  height: 760px;
}

.home-about-text {
  grid-row-gap: 15px;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  display: flex;
}

.home-about-text-wrapper {
  background-color: var(--petrol);
  align-items: center;
  width: 50%;
  padding: 60px;
  display: flex;
  position: relative;
}

.home-about-header {
  color: var(--primary);
  margin-bottom: 5px;
}

.home-about-btn {
  margin-top: 30px;
}

.home-about-light-box {
  background-color: var(--title-text);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 98px;
  height: 98px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: absolute;
  inset: 0% auto 0% -49px;
}

.home-about-play-icon-wrapper {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  display: flex;
}

.home-about-play-icon-wrapper:hover {
  background-color: var(--primary);
  color: var(--white);
}

.play-icon {
  justify-content: center;
  align-items: center;
  margin-right: -5px;
  display: flex;
}

.industries-section {
  background-color: #efeee7;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
  overflow: hidden;
}

.industries-container {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.industries-heading {
  max-width: 365px;
}

.industries-slider {
  background-color: #0000;
  height: auto;
}

.industries-mask {
  width: 400px;
  height: 265px;
  overflow: visible;
}

.industry-slide {
  background-color: var(--white);
  border-left: 4px solid #ddaa2800;
  width: 400px;
  height: 265px;
  margin-right: 40px;
  box-shadow: 0 10px 30px #0000001a;
}

.industry-slide-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
}

.industry-row {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  color: var(--title-text);
  align-items: center;
  display: flex;
}

.industry-para {
  color: var(--body);
  margin-bottom: 20px;
}

.link-block {
  grid-column-gap: 6px;
  grid-row-gap: 11px;
  color: var(--title-text);
  letter-spacing: .34px;
  align-items: center;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: all .2s ease-in-out;
  display: flex;
}

.link-block:hover {
  color: var(--primary);
}

.industry-icon {
  object-fit: contain;
  width: 32px;
  height: 32px;
}

.hidden-slide-nav {
  display: none;
}

.link-arrow {
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.industry-slider-left-arrow {
  border: 1px solid var(--body);
  color: var(--title-text);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -130px 66px auto auto;
}

.industry-slider-left-arrow:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.industry-slider-right-arrow {
  border: 1px solid var(--body);
  color: var(--title-text);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -130px 0% auto auto;
}

.industry-slider-right-arrow:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.team-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.team-container {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.team-header {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-blocks-wrapper {
  grid-column-gap: 50px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.team-block {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 350px;
  height: 250px;
}

.team-image-wrapper {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-member-social-link-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 30px;
}

.team-member-social-link {
  border-style: solid none solid solid;
  border-width: 2px;
  border-color: var(--white);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  display: flex;
}

.team-member-social-link:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.team-member-social-link.all-side-border {
  border-right-style: solid;
}

.team-member-social-embed {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.team-member-detais {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--title-text);
  flex-direction: column;
  display: flex;
}

.cta-section {
  background-image: url('../images/Bälle-1.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta-container {
  grid-column-gap: 0px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-text-wrapper {
  grid-row-gap: 50px;
  color: var(--white);
  flex-direction: column;
  max-width: 600px;
  display: flex;
}

.cta-btn-wrapper {
  grid-column-gap: 35px;
  justify-content: center;
  display: flex;
}

.cta-btn-text-wrapper {
  grid-row-gap: 5px;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.cta-blocks-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 45px;
  color: var(--title-text);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-block {
  grid-row-gap: 5px;
  background-color: var(--white);
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  height: 275px;
  padding: 32px 25px;
  display: flex;
}

.cta-number-wrapper {
  margin-bottom: 5px;
}

.para-wrapper {
  color: var(--body);
}

.heading-wrapper {
  color: var(--title-text);
}

.testimonial-section {
  background-color: #efeee7;
  width: 100%;
  padding-top: 0;
  padding-bottom: 220px;
  overflow: hidden;
}

.testimonial-container {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.testimonial-heading {
  max-width: 365px;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
}

.testimonial-mask {
  width: 400px;
  height: 400px;
  overflow: visible;
}

.testimonial-slide {
  width: 470px;
  height: 400px;
  margin-right: 40px;
}

.testimonial-slide-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--white);
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 55px 30px 55px 40px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #00000008;
}

.testimonial-quote-icon {
  width: 23px;
  height: 18px;
}

.testimonial-slider-left-arrow {
  border: 1px solid var(--body);
  color: var(--title-text);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -60px 66px auto auto;
}

.testimonial-slider-left-arrow:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.testimonial-slider-right-arrow {
  border: 1px solid var(--body);
  color: var(--title-text);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -60px 0% auto auto;
}

.testimonial-slider-right-arrow:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.testimonial-text {
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-style: normal;
  line-height: 34px;
}

.reviewer-details-wrapper {
  grid-column-gap: 7px;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.testimonial-text-arrow {
  background-image: linear-gradient(225deg, #fff 50%, #fff0 50%);
  width: 30px;
  height: 33px;
  position: absolute;
  inset: auto auto -26px 40px;
}

.reviewer-image {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.reviewer-image.simon {
  border-radius: 10%;
  width: 200px;
  height: auto;
}

.footer {
  background-color: var(--petrol);
  border-bottom: 1px solid #e4ebf3;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.footer-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-block {
  grid-row-gap: 18px;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-form {
  width: 330px;
  max-width: 330px;
  margin-bottom: 0;
}

.footer-form-container {
  color: var(--white);
}

.footer-form-block {
  border-bottom: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  color: var(--white);
  background-color: #0000;
  border: 1px #000;
  height: 51px;
  margin-bottom: 0;
  padding: 0;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #0000;
  background-image: url('../images/Subscriber-form-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 51px;
  transition: all .2s;
}

.footer-divider {
  background-color: #ffffff1a;
  width: 100%;
  height: 1px;
  margin-top: 75px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.footer-copyright {
  color: #ffffffb3;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.footer-social-block {
  grid-column-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 27px;
  display: flex;
}

.footer-social-link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.footer-social-link:hover {
  color: var(--primary);
}

.footer-link {
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-size: .938rem;
  font-weight: 400;
  line-height: 1.375rem;
  transition: transform .3s ease-in-out;
}

.footer-link:hover {
  color: var(--primary);
  transform: translate(10px);
}

.footer-block-title {
  margin-bottom: 6px;
}

.footer-social-embed, .btn-icon-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ghost-btn {
  grid-column-gap: 12px;
  color: var(--white);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  background-color: #0000;
  border: 1.5px solid #fff6;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.ghost-btn:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--title-text);
}

.hero-section {
  padding-top: 260px;
  padding-bottom: 200px;
  position: relative;
}

.hero-section.without-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-section.contact-section-padding {
  padding-bottom: 200px;
}

.hero-container {
  grid-row-gap: 20px;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.hero-container.socialskills {
  max-width: 800px;
}

.hero-container.ausbilder {
  max-width: none;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-image.bg-image {
  background-image: url('../images/Mitarbeitergespräch4-1.jpg');
  background-position: 0 0;
  background-size: auto;
}

.hero-image.bg-image-grad {
  background-image: linear-gradient(#00000040, #00000040), url('../images/Mitarbeitergespräch4-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.array-of-industries-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.array-of-industries-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.array-of-industries-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-radius: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  box-shadow: 0 10px 30px #0000001a;
}

.array-of-industries-block.shadow-off {
  box-shadow: none;
  color: var(--title-text);
  justify-content: center;
}

.array-of-industries-row {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  color: var(--title-text);
  align-items: center;
  height: 60px;
  display: flex;
}

.array-of-industries-icon {
  object-fit: contain;
  width: 32px;
  height: 32px;
}

.array-of-industries-para {
  color: var(--body);
  flex: 1;
  margin-bottom: 20px;
}

.value-sections {
  background-color: var(--petrol);
  padding-top: 110px;
  padding-bottom: 110px;
}

.value-container {
  grid-column-gap: 45px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.value-image {
  object-fit: contain;
  width: 595px;
  height: 575px;
}

.value-header {
  color: var(--primary);
  margin-bottom: 5px;
}

.value-text {
  grid-row-gap: 15px;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  display: flex;
}

.value-btn {
  margin-top: 25px;
}

.value-points-wrapper {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 22px;
  display: flex;
}

.value-point {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.value-checkmark {
  width: 16px;
  height: 16px;
}

.services-section {
  border-bottom: 1px solid #2525251a;
  padding-top: 120px;
  padding-bottom: 120px;
}

.service-container {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-container.softskill {
  grid-template-columns: 1fr 1fr;
}

.service-block {
  background-color: var(--white);
  border-radius: 32px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000012;
}

.service-image {
  object-fit: cover;
  object-position: 50% 50%;
  flex: none;
  width: 100%;
  height: 160px;
}

.service-image.imageachorcenter {
  object-position: 50% 50%;
}

.service-image.imageanchortop {
  object-position: 50% 0%;
}

.service-block-text-wrapper {
  grid-row-gap: 11px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.service-block-text-wrapper.component {
  height: 375px;
}

.service-block-btn {
  margin-top: 19px;
  display: flex;
}

.service-block-btn.link-block {
  cursor: pointer;
}

.service-block-btn.link-block.faq {
  margin-top: 0;
}

.usp-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.usp-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.usp-text-wrapper {
  z-index: 1;
  grid-row-gap: 18px;
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  width: 605px;
  margin-left: -64px;
  padding: 78px 64px;
  display: flex;
  box-shadow: 0 10px 30px #0000001a;
}

.usp-light-box {
  z-index: 1;
  background-image: url('../images/USP-bg-2-min.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 605px;
  height: 695px;
  display: flex;
}

.usp-play-btn {
  background-color: var(--white);
  color: var(--title-text);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  display: flex;
}

.usp-play-btn:hover {
  color: var(--primary);
}

.usp-btn-wrapper {
  margin-top: 20px;
}

.contact-section {
  padding-bottom: 30px;
  position: relative;
}

.contact-container {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.consultation-form-wrapper {
  background-color: var(--white);
  border-radius: 32px;
  width: 100%;
  max-width: 700px;
  margin-top: -60px;
  margin-bottom: 0;
  padding: 65px 70px;
  box-shadow: 0 15px 90px #00000014;
}

.consultation-form {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.consultation-form-header {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.form-field-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.text-field {
  border: 1px solid var(--title-text);
  color: var(--title-text);
  border-radius: 8px;
  height: 52px;
  margin-bottom: 0;
  padding-left: 21px;
  padding-right: 21px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.text-field:focus {
  border-width: 2px;
  border-color: var(--title-text);
  color: var(--title-text);
}

.text-field::placeholder {
  color: var(--body);
}

.message-field {
  border: 1px solid var(--title-text);
  color: var(--title-text);
  border-radius: 8px;
  min-height: 160px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-left: 21px;
  padding-right: 21px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.message-field:focus {
  border-width: 2px;
  border-color: var(--title-text);
  color: var(--title-text);
}

.message-field::placeholder {
  color: var(--body);
}

.submit-btn {
  grid-column-gap: 12px;
  background-color: var(--primary);
  color: var(--title-text);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  background-image: url('../images/Full-Arrow-Right.svg');
  background-position: 101px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 152px;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.submit-btn:hover {
  background-color: var(--title-text);
  color: var(--white);
  background-image: url('../images/Full-Arrow-Right-white.svg');
}

.contact-info-wrapper {
  grid-row-gap: 45px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 75px;
  display: flex;
}

.contact-row {
  grid-column-gap: 18px;
  color: var(--body);
  align-items: center;
  display: flex;
}

.contact-icon {
  object-fit: contain;
  object-position: 0% 50%;
  width: 20px;
  height: 20px;
}

.contact-row-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-social-link-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-social-link {
  border-style: solid none solid solid;
  border-width: 2px;
  border-color: var(--title-text);
  color: var(--title-text);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  display: flex;
}

.contact-social-link:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.contact-social-link.all-side-border {
  border-right-style: solid;
  flex-wrap: nowrap;
  align-self: auto;
  align-items: center;
}

.contact-social-embed {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.contact-social-embed.larger {
  width: 24px;
  height: 24px;
}

.faqs-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.faqs-container {
  grid-column-gap: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.faqs-image {
  object-fit: contain;
  border-radius: 32px;
  width: 433px;
  height: 765px;
}

.faq-text-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 635px;
  display: flex;
}

.faq-blocks-wrapper {
  margin-top: 20px;
}

.faq-block {
  cursor: pointer;
  border-top: 1px solid #ededed;
  padding-top: 25px;
  padding-bottom: 25px;
}

.faq-row {
  grid-column-gap: 10px;
  color: #171938;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-trigger {
  color: var(--title-text);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  display: flex;
  position: relative;
}

.faq-para {
  color: var(--body);
  width: 100%;
  overflow: hidden;
}

.faq-para-space {
  width: 100%;
  height: 23px;
}

.hero-bg-video {
  background-image: linear-gradient(#00000059, #00000059);
  height: 75vh;
  padding-top: 260px;
  padding-bottom: 200px;
  display: flex;
}

.post-hero-section {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 260px;
  padding-bottom: 200px;
  position: relative;
}

.post-hero-container {
  grid-row-gap: 20px;
  color: var(--white);
  text-align: center;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 35px;
  display: flex;
  position: relative;
}

.post-overlay {
  z-index: 0;
  background-color: #0006;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.post-title {
  color: var(--title-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 3.875rem;
  font-weight: 700;
  line-height: 4.688rem;
}

.post-header-tags-collection-list {
  grid-column-gap: 5px;
  display: flex;
}

.post-header-tag {
  color: var(--primary);
  letter-spacing: 1.3px;
  background-image: url('../images/Tag-Separator.svg');
  background-position: 100% 90%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  align-items: flex-end;
  padding-right: 4px;
  font-family: Urbanist, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.post-header-tag:last-child {
  background-image: none;
  padding-right: 0;
}

.post-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.post-container {
  grid-column-gap: 150px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.post-text-wrapper {
  grid-row-gap: 10px;
  color: var(--body);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
  display: flex;
}

.blog-nav {
  grid-row-gap: 80px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 240px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 60px;
  display: flex;
  box-shadow: 0 15px 90px #00000014;
}

.search {
  border: 1px solid #25252580;
  justify-content: center;
  align-items: stretch;
  height: 50px;
  margin-bottom: 0;
  display: flex;
}

.search-input {
  color: var(--title-text);
  background-color: #0000;
  border: 1px #000;
  height: 50px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 6px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.search-input::placeholder {
  color: var(--body);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.search-button {
  background-color: #0000;
  background-image: url('../images/Search-icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  width: 45px;
}

.post-tags-wrapper {
  margin-top: 15px;
}

.post-tags-collection-list {
  grid-column-gap: 9px;
  grid-row-gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-tags-link {
  border: 1px solid var(--title-text);
  color: var(--title-text);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-family: Urbanist, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.post-tags-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-wrapper {
  grid-row-gap: 20px;
  color: var(--title-text);
  border: 1px solid #2525251a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 40px;
  display: flex;
}

.category-link {
  color: var(--title-text);
  letter-spacing: .91px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-family: Urbanist, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
}

.category-link:hover {
  color: var(--primary);
}

.tags-wrapper {
  grid-row-gap: 20px;
  color: var(--title-text);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.newsletter-form-wrapper {
  margin-bottom: 0;
}

.newsletter-field {
  color: var(--title-text);
  background-image: url('../images/Orange-Email.svg');
  background-position: 8px 13px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-bottom: 1px solid #25252533;
  height: auto;
  margin-top: 22px;
  margin-bottom: 28px;
  padding-bottom: 17px;
  padding-left: 42px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.newsletter-field:focus {
  border-style: none none solid;
  border-color: black black var(--primary);
  border-top-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
}

.newsletter-field::placeholder {
  color: #25252580;
}

.newsletter-form {
  color: var(--title-text);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.newsletter-submit-btn {
  grid-column-gap: 12px;
  background-color: var(--title-text);
  color: var(--white);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  background-image: url('../images/Full-Arrow-Right-white.svg');
  background-position: 154px;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 17px 30px 19px 65px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.newsletter-submit-btn:hover {
  background-color: var(--primary);
  color: var(--title-text);
  background-image: url('../images/Full-Arrow-Right.svg');
}

.recent-post-wrapper {
  grid-row-gap: 20px;
  color: var(--title-text);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.recent-post-block {
  color: var(--title-text);
  text-align: center;
  width: 100%;
}

.recent-post-block-image {
  object-fit: cover;
  width: 100%;
  height: 140px;
}

.recent-post-date-and-author-details {
  grid-column-gap: 10px;
  color: var(--body);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 12px;
  font-family: Urbanist, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  display: flex;
}

.separator {
  background-color: var(--body);
  border-radius: 50%;
  flex: none;
  width: 3px;
  height: 3px;
}

.separator.primary-color {
  background-color: var(--primary);
}

.separator.black-color {
  background-color: #29334033;
}

.author-details {
  grid-column-gap: 5px;
  display: flex;
}

.recent-post-collection-list {
  grid-row-gap: 70px;
  flex-direction: column;
  display: flex;
}

.all-posts-section {
  padding-top: 150px;
  padding-bottom: 120px;
}

.all-posts-container {
  grid-column-gap: 90px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.all-posts-wrapper {
  width: 100%;
  max-width: 820px;
}

.all-post-collection-list {
  grid-row-gap: 160px;
  flex-direction: column;
  display: flex;
}

.all-post-block {
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.post-image-wrapper {
  width: 100%;
}

.post-image {
  object-fit: cover;
  width: 100%;
  height: 470px;
}

.blog-post-tags-collection {
  margin-top: 12px;
  margin-bottom: 1px;
}

.blog-post-tags-collection-list {
  grid-column-gap: 5px;
  display: flex;
}

.blog-post-header-tag {
  color: var(--title-text);
  letter-spacing: 1.3px;
  background-image: url('../images/Tag-Separator-Black.svg');
  background-position: 100% 90%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  align-items: flex-end;
  padding-right: 4px;
  font-family: Urbanist, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.blog-post-header-tag:last-child {
  background-image: none;
  padding-right: 0;
}

.blog-post-date-and-author-details {
  grid-column-gap: 10px;
  color: var(--title-text);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 7px;
  font-family: Urbanist, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.border-btn {
  grid-column-gap: 12px;
  border: 2px solid var(--title-text);
  color: var(--title-text);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.border-btn:hover {
  background-color: var(--title-text);
  color: var(--white);
}

.blog-post-header-tag-link {
  color: var(--title-text);
}

.pagination {
  grid-column-gap: 15px;
  justify-content: flex-start;
  margin-top: 85px;
}

.next {
  border: 1px solid var(--title-text);
  color: var(--title-text);
  background-color: #0000;
  margin-left: 0;
  margin-right: 0;
  font-family: Urbanist, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}

.next:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.previous {
  border: 1px solid var(--title-text);
  color: var(--title-text);
  background-color: #0000;
  margin-left: 0;
  margin-right: 0;
  font-family: Urbanist, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}

.previous:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.search-result-item {
  width: 100%;
}

.search-result-list {
  grid-row-gap: 160px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.search-result-wrapper {
  width: 100%;
}

.navbar-wrapper {
  z-index: 999;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar {
  z-index: 10;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.navbar-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.brand {
  transform: scale(1.45);
}

.brand.w--current {
  position: relative;
}

.logo {
  object-fit: contain;
  width: 90px;
  height: 60px;
}

.nav-link-wrapper {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #63636380;
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 0;
  padding: 20px 20px 20px 40px;
  display: flex;
  overflow: hidden;
}

.nav-menu {
  justify-content: center;
  align-items: center;
}

.nav-middle-links {
  grid-column-gap: 70px;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  display: flex;
}

.menu-button {
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-button-wrapper {
  grid-row-gap: 6px;
  background-color: var(--white);
  flex-direction: column;
  width: 44px;
  height: 44px;
  padding: 17px 12px;
  display: flex;
}

.nav-right-link {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.menu-line {
  background-color: var(--title-text);
  width: 20px;
  height: 3px;
}

.menu-line-2 {
  background-color: var(--title-text);
  width: 15px;
  height: 3px;
}

.nav-email-wrapper {
  grid-row-gap: 10px;
  color: var(--white);
  letter-spacing: .34px;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.nav-email-wrapper:hover {
  color: var(--primary);
}

.nav-email-wrapper.font-color-black {
  display: none;
}

.nav-link {
  color: var(--petrol);
  letter-spacing: .34px;
  border-bottom: 2px solid #fff0;
  padding: 10px 0;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
}

.nav-link:hover {
  border-bottom-style: solid;
  border-bottom-color: var(--primary);
}

.nav-link.w--current {
  border-bottom-color: var(--primary);
  color: var(--petrol);
}

.nav-link.small-screen, .nav-link.small-screen.w--current {
  display: none;
}

._404-image {
  width: 260px;
  height: 120px;
}

.webflow-link {
  color: #ffffffb3;
  font-family: Outfit, sans-serif;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.webflow-link:hover {
  color: var(--primary);
}

.latest-blog-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.latest-blog-container {
  grid-row-gap: 60px;
  flex-direction: column;
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.latest-blog-header {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.latest-blog-posts-wrapper {
  grid-column-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.latest-blog-block {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 350px;
  display: flex;
}

.latest-blog-block-image-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.latest-blog-block-image {
  object-fit: cover;
  width: 350px;
  height: 210px;
}

.latest-blog-collection-list {
  grid-column-gap: 50px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.latest-blog-tag-collection-item {
  color: var(--primary);
}

.latest-post-date-and-author-details {
  grid-column-gap: 10px;
  color: var(--title-text);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
  font-family: Urbanist, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.recent-post-title {
  color: var(--title-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
}

.latest-blog-link {
  grid-column-gap: 6px;
  grid-row-gap: 11px;
  color: var(--title-text);
  letter-spacing: .34px;
  align-items: center;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.latest-blog-link:hover {
  color: var(--primary);
}

.nav-menu-wrapper {
  display: block;
}

.nav-menu-logo {
  display: none;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 635px;
  margin-bottom: 0;
  box-shadow: 0 20px 20px #0000000a;
}

.submit-button {
  color: #fff;
  letter-spacing: .34px;
  background-color: #eaa033;
  padding: 19px 51px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
}

.submit-button:hover {
  background-color: #151515;
}

.submit-button.dark {
  background-color: var(--title-text);
}

.submit-button.dark:hover {
  background-color: var(--primary);
}

.popup-form-wrapper {
  z-index: 12;
  background-color: #fffffff7;
  background-image: url('../images/Form-Bg_1Form Bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.contact-form {
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-form.align-stretched {
  grid-row-gap: 30px;
  align-items: stretch;
}

.popup-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.popup-text-wrapper {
  grid-row-gap: 58px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 325px;
  display: flex;
}

.popup-link-block {
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.popup-form-link {
  color: var(--title-text);
  flex-direction: column;
  display: flex;
}

.popup-form-link:hover {
  color: var(--primary);
}

.popup-link-block-title {
  margin-bottom: 3px;
}

.popup-form-trigger {
  grid-row-gap: 6px;
  background-color: var(--petrol);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.popup-form-trigger:hover {
  background-color: var(--primary);
  color: var(--white);
}

.popup-icon-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.popup-form-elements {
  grid-column-gap: 165px;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-overlay {
  display: none;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.line-animation-wrapper {
  background-color: var(--white);
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.line-animation-wrapper.bg-black {
  background-color: var(--title-text);
  flex: none;
  height: 1.5px;
}

.animating-line {
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  transform: translate(-100%);
}

.faq-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.template-info-link {
  color: #ffffffb3;
  margin-left: 10px;
}

.template-info-link:hover {
  color: var(--primary);
}

.template-info-hero {
  background-image: linear-gradient(#00000080, #00000080), url('../images/3_13.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 250px;
  padding-bottom: 190px;
}

.template-info-hero.imageiimprint {
  object-position: 50% 100%;
  background-image: linear-gradient(#00000040, #00000040), url('../images/unnamed-1.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.template-hero-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.page-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 5.6rem;
}

.license-paragraph-container {
  color: #454159;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.template-para-wrapper {
  color: #454159;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.license-block-title {
  color: #151515;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 10px;
  padding-bottom: 6px;
  display: flex;
  position: static;
  top: 20px;
}

.license-link {
  color: var(--title-text);
  border-bottom: 1px solid #151515;
  font-family: Urbanist, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.license-link.v2 {
  color: var(--primary);
  border-bottom-style: none;
  font-weight: 700;
}

.licence-link-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.text-block {
  color: var(--title-text);
}

.unserangebotsection {
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-container-2 {
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.unserangebotcontainer {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.unserangebotcontainer.unserangebotright {
  flex-direction: row-reverse;
}

.ua-lightbox {
  z-index: 1;
  background-image: url('../images/USP-bg-2-min.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  width: 605px;
  height: 695px;
  display: flex;
}

.uatext-wrapper {
  z-index: 1;
  grid-row-gap: 18px;
  background-color: var(--white);
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  width: 605px;
  margin-left: -64px;
  padding: 78px 64px;
  display: flex;
  box-shadow: 0 10px 30px #0000001a;
}

.uatext-wrapper.uatextwrapperright {
  margin-left: 0;
  margin-right: -64px;
}

.uatext-wrapper.uatextwrapperright.custom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.reviewer-details-wrapperbig {
  grid-column-gap: 7px;
  align-items: center;
  display: flex;
}

.testimonial-text-arrow-top {
  background-image: linear-gradient(315deg, #fff 50%, #fff0 50%);
  width: 30px;
  height: 33px;
  position: absolute;
  inset: -26px auto auto 220px;
}

.text-block-2 {
  font-family: Urbanist, sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.text-block-2.heading {
  font-size: 2rem;
  line-height: 25px;
}

.hedaing1 {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.hedaing1.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.hedaing1.heading1 {
  color: #000;
}

.angeboteheading {
  color: #000;
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.angeboteheading.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.angeboteheading.heading1 {
  color: #000;
}

.modal-wrapper {
  z-index: 9999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #00000073;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
  position: relative;
}

.paragraph {
  max-width: 25rem;
  margin-top: 20px;
}

.image {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
  max-width: 20rem;
}

.link-block-2 {
  z-index: auto;
  background-color: #000;
  position: absolute;
  inset: -20% -5% auto auto;
}

.link-block-3 {
  position: absolute;
  inset: -10% -5% auto auto;
}

.div-block-2 {
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: 20px;
  display: flex;
}

.image-2 {
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: -10%;
  right: -5%;
}

.text-block-3 {
  cursor: pointer;
}

.image-3 {
  margin-left: 5px;
}

.heading-2 {
  max-width: 23rem;
}

.div-block-heading-submenu {
  position: relative;
}

.submenu {
  z-index: 10;
  text-align: left;
  background-color: #fff;
  border-radius: 0 0 25px 25px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px 10px;
  display: none;
  position: absolute;
  top: 71px;
  left: auto;
  right: -68px;
  overflow: visible;
}

.submenu.nav-link-wrapper {
  flex-direction: column;
  width: 15rem;
}

.submenu.aboutus {
  display: none;
  left: -30px;
  right: -34px;
}

.div-block-6 {
  display: none;
}

.samesizecomponent {
  height: 500px;
}

.black {
  color: var(--title-text);
  font-family: Outfit, sans-serif;
  font-weight: 600;
}

.value-container-vertical {
  grid-column-gap: 45px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.trophies {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 40px;
}

.image-wrapper {
  width: 50%;
}

.imagecover {
  object-fit: cover;
  height: 100%;
}

.imageleftrightsquare {
  z-index: 1;
  object-fit: cover;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  width: 605px;
  height: 695px;
  display: flex;
}

.service-block-text-wrapper-with-modal {
  grid-row-gap: 11px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.service-block-text-wrapper-with-modal.component {
  height: 375px;
}

.h5-double-line {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Urbanist, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
  display: block;
}

.service-block-text-wrapper-block {
  grid-row-gap: 11px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  display: block;
}

.service-block-text-wrapper-block.component {
  height: 375px;
}

.main-container-same-margins {
  border: 1px solid #0000;
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin: 100px auto;
  padding-top: 0;
  padding-left: 100px;
  padding-right: 100px;
}

.main-container-same-margins.additionalvalues {
  margin-top: 0;
}

.flex-block {
  justify-content: center;
}

.nav-phone-wrapper {
  grid-row-gap: 10px;
  color: var(--white);
  letter-spacing: .34px;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5px;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.nav-phone-wrapper:hover {
  color: var(--primary);
}

.nav-phone-wrapper.font-color-black {
  display: none;
}

.logo-sidemenu {
  object-fit: contain;
  width: 90px;
  height: 60px;
}

.flex-block-2 {
  justify-content: center;
  align-items: center;
}

.slider {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.slide {
  width: 100%;
  height: 80vw;
}

.mask {
  width: 100%;
}

.list-item {
  margin-bottom: 30px;
}

.link {
  color: var(--petrol);
}

.grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "Area";
  place-content: center;
  place-items: center;
  margin-top: 20px;
}

.award {
  width: 200px;
  height: 200px;
}

.header {
  background-color: #1b1515;
  background-image: url('../images/cornelia_header_bg.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.image-4 {
  object-fit: contain;
  width: 40%;
  padding-top: 80px;
  padding-right: 60px;
  display: block;
  position: relative;
}

.flex-block-3 {
  align-items: center;
}

.flex-block-4 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: #ebebeb;
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  padding-top: 20px;
  font-family: Cormorant, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
}

.aboutme {
  background-color: var(--white);
  padding-top: 40px;
}

.feature-container-copy {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
}

.feature-block-copy {
  grid-column-gap: 45px;
  background-image: url('../images/Personaltraining.jpg');
  background-position: 0 0;
  background-size: contain;
  border-radius: 8px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 350px;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-block-text-copy {
  grid-row-gap: 10px;
  color: var(--white);
  flex-direction: column;
  display: flex;
}

.feature-block-link-copy {
  background-color: var(--white);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.feature-block-image-copy {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-2 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.c_container {
  justify-content: center;
  align-items: center;
  max-width: 1024px;
  padding: 80px 20px;
  display: flex;
  position: static;
}

.c_container.c_hv_center {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.c_container.c_hv_center.c_vertical {
  flex-direction: column;
}

.array-of-industries-block-copy {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-radius: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.array-of-industries-block-copy.shadow-off {
  box-shadow: none;
  color: var(--title-text);
  justify-content: center;
}

.array-of-industries-row-copy {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  color: var(--title-text);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.array-of-industries-icon-copy {
  object-fit: contain;
  height: 300px;
}

.angeboteheading-copy {
  color: #000;
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.angeboteheading-copy.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.angeboteheading-copy.heading1 {
  color: #000;
}

.array-of-industries-para-copy {
  color: var(--body);
  flex: 1;
}

.paragraph-2 {
  font-size: 28px;
}

.paragraph-3 {
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Outfit, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 40px;
}

.zitat {
  background-image: url('../images/CorneliaBackgroundQuote.jpg'), linear-gradient(#631833, #631833);
  background-position: 50%, 0 0;
  background-size: cover, auto;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  display: flex;
}

.image-5 {
  border-radius: 200px;
}

.div-block-8 {
  background-image: linear-gradient(#00000059, #00000059);
}

.div-block-9 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.rezension {
  background-image: linear-gradient(#631833, #631833);
  padding-top: 40px;
}

.image-7 {
  opacity: .9;
}

.container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.flex-block-5 {
  background-image: linear-gradient(#631833, #631833);
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.div-block-10 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.ablauf {
  background-color: #f5f5f5;
  padding-bottom: 40px;
}

.heading-3 {
  color: #fff;
  text-align: center;
  font-family: Cormorant, sans-serif;
}

.paragraph-4 {
  color: #fff;
  text-align: center;
  font-family: Outfit, sans-serif;
  font-size: 18px;
}

.flex-block-6 {
  background-image: linear-gradient(to bottom, var(--magentaconny), var(--magentaconny));
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.ablaufitem {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 60px;
}

.ablaufitem.c_aligncenter {
  justify-content: center;
}

.ablauftext {
  color: var(--magentaconny);
  margin-left: 20px;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.ablaufnumber {
  opacity: .75;
  flex: none;
  width: 32px;
}

.corneliafooter {
  background-image: linear-gradient(#f5f5f5, #f5f5f5);
  padding-top: 20px;
  padding-bottom: 60px;
}

.section-4 {
  margin-bottom: 140px;
}

.container-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  display: flex;
}

.hero-bg-image {
  background-image: linear-gradient(#00000059, #00000059), url('../images/AB_Hintergrund4-1.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  height: auto;
  padding-top: 260px;
  padding-bottom: 200px;
  display: flex;
}

.hero-bg-image.image-holz {
  object-fit: cover;
  object-position: 50% 50%;
  background-image: linear-gradient(#00000059, #00000059), url('../images/TB_Holzscheibe-2-1.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.hero-bg-image.imagemitarbeiterges-r-cj {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  height: 75vh;
  padding-top: 40px;
  padding-bottom: 0;
}

.h6-black {
  color: var(--title-text);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.h6-black.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.h6-black.small.black {
  color: var(--title-text);
}

.h6-black.heading1 {
  color: #000;
}

.h6-black.names {
  color: var(--title-text);
}

.h6-black.double {
  height: 3.5rem;
}

.team-block-max-w {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 220px;
  display: flex;
}

.heading-4 {
  font-family: Cormorant, sans-serif;
}

.team-subtitle {
  height: 2.75rem;
  font-family: Outfit, sans-serif;
  font-size: .938rem;
  font-weight: 400;
  line-height: 1.375rem;
}

.team-subtitle._500-medium {
  font-weight: 500;
}

.image-8 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
}

.nav-link-wrapper-new {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #fff;
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 0;
  padding: 20px 20px 20px 40px;
  display: flex;
  overflow: visible;
  box-shadow: 0 8px 40px 5px #0000001a;
}

.c_body {
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2rem;
}

.c_body.spacetop {
  margin-top: 10px;
}

.c_body.c_white {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-weight: 300;
}

.c_body.c_textcenter.c_textfooter {
  text-align: center;
  align-self: auto;
}

.h6-header {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.h6-header.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.h6-header.small.black {
  color: var(--title-text);
}

.h6-header.heading1 {
  color: #000;
}

.h6-header.names {
  color: var(--title-text);
}

.lehrlingtestimonial {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
}

.lehrlingtestimonial.unserangebotright {
  flex-direction: row-reverse;
}

.imageleftrightsquare-copy {
  z-index: 1;
  object-fit: cover;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 695px;
  display: flex;
}

.uatext-wrapper-copy {
  z-index: 1;
  grid-row-gap: 18px;
  background-color: var(--white);
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  margin-top: -100px;
  padding: 78px 64px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #0000001a;
}

.uatext-wrapper-copy.uatextwrapperright {
  margin-left: 0;
  margin-right: -64px;
}

.uatext-wrapper-copy.uatextwrapperright.custom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-block-header {
  color: var(--petrol);
}

.team-member-image-thomas {
  object-fit: cover;
  object-position: 50% 0%;
  width: 350px;
  height: 250px;
}

.team-member-image-cornelia {
  object-fit: cover;
  object-position: 50% 27%;
  width: 350px;
  max-width: 100%;
  height: 250px;
}

.footer-block-social {
  grid-row-gap: 18px;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: none;
}

.instabutton {
  display: none;
}

.div-block-11 {
  flex-direction: row;
  display: flex;
}

.kontakltcta {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-radius: 32px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px 65px;
  display: flex;
  box-shadow: 0 15px 90px #00000014;
}

.kontakltcta.shadow-off {
  box-shadow: none;
  color: var(--title-text);
  justify-content: center;
}

.cta-block-copy {
  grid-row-gap: 18px;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.cta-block-title {
  margin-bottom: 6px;
}

.btn-v2-copy {
  grid-column-gap: 12px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.btn-v2-copy:hover {
  background-color: var(--title-text);
}

.btn-v2-copy.no-hover-effect {
  color: var(--title-text);
  border: 1.5px solid #0000;
  width: 240px;
}

.btn-v2-copy.no-hover-effect:hover {
  background-color: var(--primary);
}

.btn-v2-copy.hover-white {
  color: var(--title-text);
  border-radius: 8px;
}

.btn-v2-copy.hover-white:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.impressum {
  background-color: #fff;
  border-radius: 7px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  margin-bottom: 60px;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #00000008;
}

.impressum.vertical {
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.image-9 {
  margin-top: 10px;
}

.hero-slider-copy {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.hero-slider-mask-copy {
  width: 100%;
  height: 100%;
}

.hero-slide-copy {
  height: 30rem;
}

.hero-slide-copy.first-slide {
  height: 54rem;
}

.left-arrow-copy {
  background-color: var(--magentaconny);
  color: #ffffffb3;
  border: 2px #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: 0% auto 0% 15px;
}

.left-arrow-copy:hover {
  color: #151515;
  background-color: #fff;
}

.right-arrow-copy {
  background-color: var(--magentaconny);
  color: #ffffffb3;
  border: 2px #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: 0% 15px 0% auto;
}

.right-arrow-copy:hover {
  color: #151515;
  background-color: #fff;
}

.slide-nav-copy {
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  display: none;
  bottom: 30px;
}

.display-copy {
  color: var(--white);
  text-align: left;
  letter-spacing: 2px;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 5rem;
}

.hero-slider-text-wrapper-copy {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.hero-slider-text-wrapper-copy.align-center {
  text-align: left;
  align-items: flex-start;
  padding-left: 0;
}

.hero-slider-wrapper-copy {
  border: 1px solid #0000;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.slider-image-copy {
  z-index: -1;
  filter: brightness(85%) grayscale(50%);
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slider-image-copy.target {
  height: 120%;
  top: -20%;
}

.slider-image-copy.faces {
  height: 130%;
  top: 0%;
}

.text-block-5, .text-block-6 {
  font-family: Outfit, sans-serif;
}

.c_link {
  color: var(--magentaconny);
  white-space: nowrap;
  font-weight: 500;
}

.feature-container-copy-copy {
  grid-column-gap: 66px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1.5fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.image-11 {
  object-fit: cover;
  object-position: 20% 100%;
  width: 550px;
  height: 500px;
}

.space {
  background-color: var(--magentaconny);
  opacity: .2;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 60px;
}

.grid-2 {
  grid-column-gap: 41px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template: "."
                 "Area"
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  display: flex;
}

.c_award {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c_award.fix {
  object-fit: cover;
}

.section-5 {
  margin-bottom: 40px;
}

.flex-block-7 {
  justify-content: center;
}

.angeboteheading-copy-copy {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.angeboteheading-copy-copy.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.angeboteheading-copy-copy.heading1 {
  color: #000;
}

.c_sectiontitle {
  color: var(--title-text);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.c_sectiontitle.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.c_sectiontitle.heading1 {
  color: #000;
}

.c_sectiontitle.c_white {
  color: var(--white);
}

.flex-block-8 {
  flex: 1;
}

.list {
  flex: 0 auto;
}

.list.c_body {
  padding-left: 20px;
}

.c_button {
  grid-column-gap: 12px;
  background-color: var(--magentaconny);
  color: var(--white);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.c_button:hover {
  background-color: var(--title-text);
}

.c_button.no-hover-effect {
  border: 1.5px solid #0000;
  width: 240px;
}

.c_button.no-hover-effect:hover {
  background-color: var(--primary);
}

.c_button.hover-white {
  color: var(--title-text);
  border-radius: 8px;
}

.c_button.hover-white:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.btn-icon-embed-copy {
  justify-content: center;
  align-items: center;
  display: flex;
}

.c_container-zitat {
  max-width: 1024px;
  padding-left: 20px;
  padding-right: 20px;
}

.c_container-zitat.c_hv_center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 620px;
  height: 100%;
  display: flex;
}

.c_reziautor {
  color: #fff;
  margin-top: 20px;
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2rem;
}

.text-block-7 {
  margin-bottom: 20px;
}

.paragraph-5 {
  text-align: center;
  margin-bottom: 20px;
}

.bookgrid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1.25fr 1.25fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.sliderrezi {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.feature-container-copy-copy-copy {
  grid-column-gap: 66px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1.5fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
}

.btn-v1-copy.buttoncorenlia {
  background-color: var(--magentaconny);
  color: var(--white);
  border-radius: 3px;
  margin-right: 40px;
}

.btn-v1-copy {
  grid-column-gap: 12px;
  background-color: var(--primary);
  color: var(--title-text);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.btn-v1-copy:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.btn-v1-copy.buttoncorenlia {
  background-color: var(--magentaconny);
  color: var(--white);
  border-radius: 3px;
}

.hero-bg-video-lehrlingsseminare {
  background-image: linear-gradient(#00000059, #00000059);
  height: auto;
  padding-top: 260px;
  padding-bottom: 200px;
  display: flex;
}

.videocover {
  object-position: 0% 50%;
  height: 100%;
}

.team-member-image-andrea {
  object-fit: cover;
  object-position: 50% 0%;
  width: 350px;
  height: 250px;
}

.closemenuicon {
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: -10%;
  right: -5%;
}

.contactnavmobile {
  justify-content: center;
  display: none;
}

.c_button-copy {
  grid-column-gap: 12px;
  background-color: var(--magentaconny);
  color: var(--white);
  text-align: center;
  letter-spacing: .34px;
  text-transform: none;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 17px 30px 19px;
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.c_button-copy:hover {
  background-color: var(--title-text);
}

.c_button-copy.no-hover-effect {
  border: 1.5px solid #0000;
  width: 240px;
}

.c_button-copy.no-hover-effect:hover {
  background-color: var(--primary);
}

.c_button-copy.hover-white {
  color: var(--title-text);
  border-radius: 8px;
}

.c_button-copy.hover-white:hover {
  background-color: var(--white);
  color: var(--title-text);
}

.image-12 {
  object-position: 50% 50%;
}

.display-wordbreak {
  text-align: left;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 6rem;
}

.image-13 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.grid-3 {
  grid-column-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-12 {
  display: none;
}

.link-block-4 {
  margin-top: 19px;
}

.h6-big {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.h6-big.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.h6-big.small.black {
  color: var(--title-text);
}

.h6-big.heading1 {
  color: #000;
}

.h6-big.names {
  color: var(--title-text);
}

.h6-small {
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  border: 1px solid #fff0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  display: none;
}

.h6-small.small {
  font-size: 1.063rem;
  line-height: 1.25rem;
}

.h6-small.small.black {
  color: var(--title-text);
}

.h6-small.heading1 {
  color: #000;
}

.h6-small.names {
  color: var(--title-text);
}

.feature-spacer {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.hero-main-container {
  align-items: center;
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.hero-main-container.additionalvalues {
  margin-top: 0;
}

.scrolllindicator {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.lottie-animation {
  z-index: 9999;
  width: 140px;
  height: 140px;
  position: relative;
}

.hero-section-75 {
  padding-top: 240px;
  padding-bottom: 200px;
  position: relative;
}

.hero-section-75.without-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-section-75.contact-section-padding {
  padding-bottom: 200px;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.constantinus_fix {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.pseudo_grid_image {
  object-fit: contain;
  width: 200px;
  height: 200px;
}

.pseudo_grid_image.constantinus_button_padding {
  padding: 15px;
}

.skillsfabrikcontainer {
  grid-column-gap: 66px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1fr 1.5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
}

.section-6 {
  margin-bottom: 0;
}

.link-block-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 45%;
}

.sillsfabrikcontainer {
  grid-column-gap: 66px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1fr 1.5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
}

.image-11-copy {
  object-fit: contain;
  object-position: 20% 100%;
}

.flex-block-10 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.link-block-6 {
  max-width: 50%;
}

.grid-5 {
  grid-column-gap: 41px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template: "."
                 "Area"
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  display: flex;
}

.hero-bg-image-soft {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  height: auto;
  padding-top: 260px;
  padding-bottom: 200px;
  display: flex;
}

.hero-bg-image-soft.image-holz {
  object-fit: cover;
  object-position: 50% 50%;
  background-image: linear-gradient(#00000059, #00000059), url('../images/TB_Holzscheibe-2-1.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.hero-bg-image-soft.imagemitarbeiterges-r-cj {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  height: 75vh;
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-main-container-soft {
  align-items: center;
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.hero-main-container-soft.additionalvalues {
  margin-top: 0;
}

.div-block-heading-item {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.empty-state {
  background-color: #ff3313;
}

.banner-section-photo {
  background-image: linear-gradient(#0009, #0009), url('../images/ES_Titelslide_1.avif');
  background-position: 0 0, 50% 80%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 730px;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-container {
  z-index: 999;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.floating-rooms-holder {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home-main-banner-discription {
  color: #fff;
  letter-spacing: 1px;
  width: 56%;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Urbanist, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4rem;
}

.floating-room-two {
  flex-direction: column;
  align-items: center;
  max-width: 230px;
  display: flex;
  position: absolute;
  inset: 32% auto auto 30%;
}

.floating-room-three {
  flex-direction: column;
  align-items: center;
  max-width: 230px;
  display: flex;
  position: absolute;
  inset: 17% 26% auto auto;
}

.floating-room-four {
  flex-direction: column;
  align-items: center;
  max-width: 230px;
  display: flex;
  position: absolute;
  inset: 26% 4% auto auto;
}

.collection-item-room-banner {
  flex-direction: column;
  align-items: center;
}

.floating-room-one {
  flex-direction: column;
  align-items: center;
  max-width: 230px;
  display: flex;
  position: absolute;
  inset: 20% auto auto 6%;
}

.home-title {
  z-index: 999;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Urbanist, sans-serif;
  line-height: 44px;
  position: relative;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.about-text-quote-wrapper {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 35px;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
}

.section-subtitle.in-section-spacing {
  margin-bottom: 25px;
  font-family: Urbanist, sans-serif;
}

.about-quote {
  color: #fff;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-weight: 400;
}

.italic-light-span {
  color: #115b6f;
  text-transform: none;
  font-style: italic;
}

.bodyescaperroom {
  background-color: #161616;
  font-size: 1.1rem;
}

.two-column-wrapper {
  z-index: 999;
  grid-column-gap: 100px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.two-column-wrapper.center, .two-column-wrapper.center-inverted {
  align-items: center;
}

.button-wrapper-main {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.video-content-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 15px;
  display: flex;
}

.video-content-wrapper.in-section-video {
  justify-content: center;
  align-items: center;
}

.column-one {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
}

.text-white {
  color: #fff;
  letter-spacing: 1px;
  font-family: Urbanist, sans-serif;
  line-height: 1.4rem;
}

.text-white.cta {
  margin-bottom: 40px;
  line-height: 1.2rem;
}

.video-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
}

.btn-circle-big {
  background-color: #ffffff1a;
  border: 1px solid #ffffff80;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .4s;
  display: flex;
}

.btn-circle-big:hover {
  border-color: #fff;
  width: 80px;
  height: 80px;
}

.in-section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.in-section-title.text-white {
  font-family: Urbanist, sans-serif;
  line-height: 36px;
}

.in-section-title.text-white-2 {
  font-family: Urbanist, sans-serif;
}

.column-two {
  width: 50%;
  height: 100%;
}

.section-7 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-7.without-bottom-spacing {
  padding-bottom: 0;
}

.video-in-section {
  z-index: 0;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-button {
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  background-color: #183638;
  border: 1px solid #183638;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 14px;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  opacity: 1;
  color: #ff3313;
  background-color: #fff0;
  border-color: #ff3313;
}

.primary-button.white-outline {
  background-color: #fff0;
  border-color: #afafaf80;
}

.primary-button.white-outline:hover {
  color: #fff;
  border-color: #fff;
}

.icon-bottom {
  width: 10px;
  height: 10px;
}

.icon-bottom.big {
  width: 16px;
  height: 16px;
}

.how-it-works-wrap {
  grid-column-gap: 60px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.tab-text-wrapper {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 50%;
  padding: 30px;
  display: flex;
  position: relative;
}

.tab-text-wrapper.four {
  border-style: none;
}

.tabs-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.short-paragraph {
  margin-top: 0;
  margin-bottom: 0;
}

.short-paragraph.text-white {
  font-family: Urbanist, sans-serif;
  font-size: 1.1rem;
}

.section-8 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.how-it-works-left-wrap {
  flex-wrap: wrap;
  display: flex;
}

.line-one-b {
  background-color: #afafaf80;
  width: auto;
  height: 1px;
  margin-right: 40px;
  position: absolute;
  inset: auto 0% 0%;
}

.line-one-b.d {
  display: none;
  inset: auto 0% 0%;
}

.line-one-b.c {
  margin-left: 40px;
  margin-right: 0;
}

.line-two-b {
  background-color: #afafaf80;
  width: 1px;
  height: auto;
  margin-bottom: 40px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.line-two-b.c {
  margin-top: 40px;
  margin-bottom: 0;
  inset: 0% 0% 0% auto;
}

.how-it-works-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 35%;
  display: flex;
}

.icon-small {
  width: 50px;
  height: 50px;
}

.icon-small.way {
  width: 42px;
  height: 42px;
}

.icon-small.iconbulletlist {
  margin-right: 20px;
  padding: 5px;
}

.explore-text {
  color: #fff;
  background-color: #0f1011;
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 22px;
  line-height: 1em;
}

.enter-button-wrapper {
  z-index: 999;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.content-wrapper-explore {
  grid-row-gap: 20px;
  flex-direction: column;
  max-width: 580px;
  display: flex;
}

.explore-image-key {
  width: 50px;
  transform: rotate(-40deg);
}

.explore-image-key.smaller {
  width: 34px;
}

.explore-room-bg-image {
  object-fit: cover;
  border-radius: 64px 0 0 64px;
  width: 440px;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.section-9 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.explore-key-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-explore {
  border-radius: 64px;
}

.explore-room-content-wrapper {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.explore-room-title-wrapper {
  width: 64%;
  margin-bottom: 50px;
}

.section-10 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-10.without-bottom-spacing {
  padding-bottom: 0;
}

.emotions-wrapper {
  text-align: center;
  background-color: #115b6f;
  background-image: url('../images/Key-with-BG--G.svg'), url('../images/Key-with-BG--G.svg');
  background-position: 96%, 4%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100px, auto 100px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 60px 140px;
  display: flex;
}

.room-selection-wrapper {
  flex-direction: row;
  align-items: flex-start;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rooms-loop-collection-list {
  grid-column-gap: 30px;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.room-selection-info-wrapper {
  width: auto;
}

.room-loop-block-wrapper {
  z-index: 2;
  flex-direction: column;
  width: 62%;
  max-width: 920px;
  margin-left: auto;
  margin-right: 0%;
  display: flex;
  position: relative;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.room-loop-items-wrapper {
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.room-loop-collection-item {
  flex: none;
  width: 370px;
}

.room-selection-content {
  z-index: 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 36%;
  max-width: 1200px;
  height: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  inset: 0 0% auto;
}

.section-11 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-11.cards-loop-style {
  overflow: hidden;
}

.shop-selection-collection-list-wrapper {
  flex: none;
}

.code-embed {
  width: 100%;
}

.pre-loader-animation {
  z-index: 1000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.curtain-top {
  background-color: #0f1011;
  height: 50%;
  position: absolute;
  inset: 0% 0% auto;
}

.big-key-animated {
  z-index: 1;
  filter: saturate(80%);
  height: 290px;
  margin-left: -230px;
  position: absolute;
}

.curtain-right {
  background-color: #0f1011;
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.key-hole-image-half {
  z-index: 2;
  width: 82px;
  margin-top: -10vh;
  margin-left: 82px;
  position: absolute;
}

.curtain-bottom {
  background-color: #0f1011;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.key-hole-image {
  z-index: 1;
  width: 160px;
  margin-top: -10vh;
  position: relative;
}

.curtain-left {
  background-color: #0f1011;
  width: 50%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.splash-screen-bg {
  background-image: radial-gradient(circle, #183638, #0f1011 69%);
  width: 160px;
  height: 190px;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0%;
}

.room-list-item {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.room-links-wrapper {
  position: relative;
}

.room-small-info-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  margin-top: 20px;
  display: flex;
}

.enter-button-wrapper-item {
  z-index: 999;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.room-loop-image {
  filter: brightness(80%);
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.icon-cards {
  opacity: .4;
  width: 20px;
  height: 20px;
}

.complexity-base {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  width: 80px;
  display: flex;
  position: absolute;
  inset: 30px 30px auto auto;
}

.room-small-info {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.room-link-block {
  border-radius: 60px;
  width: 100%;
  overflow: hidden;
}

.image-complexity {
  opacity: .4;
  height: 16px;
}

.image-complexity.active {
  opacity: 1;
}

.room-small-text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 300;
}

.room-item-link {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.room-item-link:hover {
  color: #ff3313;
}

.escapethecompany-logo {
  width: 25%;
  margin-top: 200px;
  margin-bottom: 50px;
}

.list-item-4 {
  color: #fff;
}

.text-white-bullet-list {
  color: #fff;
  font-family: Urbanist, sans-serif;
}

.text-white-bullet-list.cta {
  margin-bottom: 40px;
}

.list-2 {
  margin-top: 40px;
  padding-left: 0;
  list-style-type: none;
}

.bulletlistwithicon {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.text-white-larger {
  color: #fff;
  font-family: Urbanist, sans-serif;
  line-height: 1.4rem;
}

.text-white-larger.cta {
  margin-bottom: 40px;
}

.flex-block-12 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 30px;
}

.section-subtitle-2 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 35px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
}

.column-one-2 {
  width: 70%;
  height: 100%;
}

.column-one-2.assymetrical {
  width: 95%;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin.text-white {
  margin-top: 30px;
}

.section-12 {
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
  position: relative;
}

.two-columns-wrapper {
  z-index: 999;
  grid-column-gap: 100px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.columns-two {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.columns-two.assymetrical {
  width: 16%;
}

.text-white-2 {
  color: #fff;
}

.image-about {
  object-fit: cover;
  border-radius: 100px;
  width: 100%;
  height: 480px;
}

.section-14 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.corner {
  z-index: 0;
  width: 25px;
  height: 25px;
  margin-top: 10px;
  margin-right: 10px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.corner.bottom-right {
  margin-top: 0;
  margin-bottom: 10px;
  inset: auto 0% 0% auto;
}

.corner.top-left {
  margin-left: 10px;
  margin-right: 0;
  inset: 0% auto auto 0%;
}

.corner.bottom-left {
  margin: 0 0 10px 10px;
  inset: auto auto 0% 0%;
}

.section-title-cta {
  color: #fff;
  width: 75%;
  margin-top: 0;
  margin-bottom: 0;
}

.section-15 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-15.without-top-spacing {
  display: none;
}

.cta-block-2 {
  grid-column-gap: 60px;
  background-color: #115b6f;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.divider-section-bottom {
  background-color: #afafaf80;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

@media screen and (min-width: 1280px) {
  .hero-slider-header {
    align-items: flex-start;
  }

  .left-arrow {
    left: 40px;
  }

  .right-arrow {
    right: 40px;
  }

  .feature-container {
    grid-column-gap: 50px;
  }

  .home-about-text-wrapper {
    padding: 100px;
  }

  .cta-container {
    grid-column-gap: 100px;
  }

  .cta-blocks-wrapper {
    grid-column-gap: 45px;
  }

  .hero-image.imagekontakt {
    inset: 0% 0% auto;
  }

  .array-of-industries-block.shadow-off {
    color: var(--title-text);
  }

  .modal-wrapper {
    display: none;
  }

  .imagecover {
    width: 100%;
  }

  .feature-container-copy {
    grid-column-gap: 50px;
  }

  .array-of-industries-block-copy.shadow-off {
    color: var(--title-text);
  }

  .hero-bg-image.image-holz {
    background-position: 0 0, 50%;
  }

  .c_body.c_textcenter {
    text-align: center;
  }

  .c_body.c_textcenter.c_textfooter {
    margin-bottom: 20px;
  }

  .kontakltcta.shadow-off {
    color: var(--title-text);
  }

  .left-arrow-copy {
    left: 40px;
  }

  .right-arrow-copy {
    right: 40px;
  }

  .feature-container-copy-copy, .bookgrid, .feature-container-copy-copy-copy {
    grid-column-gap: 50px;
  }

  .videocover {
    width: 100%;
  }

  .skillsfabrikcontainer, .sillsfabrikcontainer {
    grid-column-gap: 50px;
  }

  .hero-bg-image-soft.image-holz {
    background-position: 0 0, 50%;
  }

  .banner-section-photo {
    min-height: 730px;
    padding-top: 170px;
  }

  .banner-content-container {
    padding-left: 0;
    padding-right: 0;
  }

  .home-title {
    font-size: 60px;
    line-height: 60px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .section-7, .section-8 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .explore-room-bg-image {
    width: 500px;
  }

  .section-9 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .explore-room-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .explore-room-title-wrapper {
    width: 55%;
  }

  .section-10 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .emotions-wrapper {
    padding-left: 160px;
    padding-right: 160px;
  }

  .room-selection-info-wrapper {
    width: 380px;
  }

  .room-loop-block-wrapper {
    width: 100%;
    max-width: 1040px;
    margin-right: -26%;
  }

  .room-selection-content {
    width: 100%;
    margin-left: auto;
    position: absolute;
    inset: auto 0% 0;
  }

  .section-11 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .big-key-animated {
    margin-left: -240px;
  }

  .section-12 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .two-columns-wrapper {
    grid-column-gap: 100px;
  }

  .section-14 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section-title-cta {
    width: 70%;
  }

  .section-15 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 1440px) {
  .banner-section-photo {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .how-it-works-wrap {
    grid-column-gap: 130px;
  }

  .explore-room-bg-image {
    width: 580px;
  }

  .big-key-animated {
    margin-left: -250px;
  }

  .escapethecompany-logo {
    width: 25%;
    margin-bottom: 140px;
  }
}

@media screen and (min-width: 1920px) {
  .banner-content-container {
    max-width: 1400px;
  }

  .home-main-banner-discription {
    width: 48%;
  }

  .home-title {
    width: 100%;
    font-size: 70px;
    line-height: 70px;
  }

  .base-container, .video-content-wrapper {
    max-width: 1400px;
  }

  .how-it-works-wrapper {
    width: 30%;
  }

  .explore-room-bg-image {
    width: 683px;
  }

  .explore-room-content-wrapper {
    max-width: 1400px;
  }

  .explore-room-title-wrapper {
    width: 50%;
  }

  .room-selection-wrapper {
    max-width: 1400px;
  }

  .room-selection-info-wrapper {
    width: 444px;
  }

  .room-loop-block-wrapper {
    max-width: 1180px;
    margin-right: -32.5%;
  }

  .room-selection-content {
    max-width: 1400px;
  }

  .big-key-animated {
    height: 360px;
    margin-left: -350px;
  }

  .key-hole-image-half {
    width: 90px;
    margin-left: 90px;
  }

  .key-hole-image {
    width: 180px;
  }
}

@media screen and (max-width: 991px) {
  .style-guide-title {
    justify-content: flex-start;
    margin-bottom: 20px;
    position: static;
  }

  .main-container {
    max-width: 650px;
    margin-top: 70px;
    margin-bottom: 70px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .all-paragraph-container {
    width: auto;
  }

  .color-palette-container {
    width: 65%;
  }

  .style-guide-blocks-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .display {
    font-size: 3.7rem;
    line-height: 4.4rem;
  }

  .style-guide-block {
    grid-column-gap: 20px;
    color: #191148;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
  }

  .h6.small {
    line-height: 1.5rem;
  }

  .all-heading-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: 65%;
  }

  .buttons-container {
    width: 65%;
  }

  .hero-slider-header {
    grid-row-gap: 15px;
    text-align: left;
    align-items: flex-start;
    overflow: visible;
  }

  .hero-slider-wrapper {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .home-hero-section {
    height: auto;
  }

  .left-arrow {
    inset: auto 0% 60px -60px;
  }

  .slide-nav {
    display: none;
  }

  .slider-image {
    height: 120%;
  }

  .right-arrow {
    inset: auto -60px 60px 0%;
  }

  .hero-slider-text-wrapper {
    grid-row-gap: 50px;
    align-items: flex-start;
    padding-left: 0;
  }

  .feature-container {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .feature-block {
    max-width: 450px;
  }

  .feature-block-title {
    max-width: none;
  }

  .home-about-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about-video-wrapper {
    width: 100%;
  }

  .home-about-video {
    height: 450px;
  }

  .home-about-text {
    max-width: 650px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .home-about-text-wrapper {
    justify-content: center;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home-about-light-box {
    margin-left: auto;
    margin-right: auto;
    inset: -49px 0% auto;
  }

  .industries-section, .team-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .team-blocks-wrapper {
    grid-row-gap: 75px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .team-member-image {
    height: 450px;
  }

  .cta-section {
    background-image: linear-gradient(#0006, #0006), url('../images/CTA-bg.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-container {
    grid-row-gap: 75px;
    flex-direction: column;
  }

  .cta-text-wrapper {
    grid-row-gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .cta-btn-text-wrapper {
    color: var(--white);
  }

  .testimonial-section {
    padding-top: 100px;
    padding-bottom: 200px;
  }

  .footer-container {
    max-width: 728px;
  }

  .footer-wrapper {
    grid-row-gap: 90px;
    flex-flow: wrap;
  }

  .footer-block {
    width: 40%;
  }

  .footer-form {
    width: 100%;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .hero-section {
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .array-of-industries-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .array-of-industries-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .array-of-industries-para {
    margin-bottom: 20px;
  }

  .value-sections {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .value-container {
    grid-row-gap: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .value-text {
    max-width: none;
  }

  .services-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .service-block-text-wrapper {
    padding: 25px;
  }

  .usp-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .usp-container {
    flex-direction: column;
  }

  .usp-text-wrapper {
    width: 100%;
    max-width: 540px;
    margin-top: -60px;
    margin-left: 0;
  }

  .usp-light-box {
    height: 450px;
  }

  .contact-section {
    padding-bottom: 60px;
  }

  .contact-container {
    grid-row-gap: 75px;
    flex-direction: column;
    align-items: flex-start;
  }

  .consultation-form-wrapper {
    padding: 60px;
  }

  .contact-info-wrapper {
    margin-top: 0;
  }

  .faqs-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faqs-container {
    grid-row-gap: 75px;
    flex-direction: column;
  }

  .faqs-image-wrapper {
    width: 100%;
  }

  .faqs-image {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 450px;
  }

  .faq-text-wrapper {
    grid-row-gap: 10px;
  }

  .faq-blocks-wrapper {
    margin-top: 30px;
  }

  .faq-trigger {
    width: 15px;
    height: 15px;
  }

  .hero-bg-video {
    height: 65vh;
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .post-hero-section {
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .post-hero-container {
    padding: 40px;
  }

  .post-title {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .post-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .post-container {
    grid-row-gap: 90px;
    flex-direction: column;
    align-items: center;
  }

  .blog-nav {
    max-width: none;
  }

  .post-tags-wrapper {
    margin-top: 0;
  }

  .category-collection-list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .newsletter-field {
    margin-top: 20px;
  }

  .recent-post-block-image {
    height: 200px;
  }

  .all-posts-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .all-posts-container {
    grid-row-gap: 100px;
    flex-direction: column;
    width: 100%;
  }

  .all-post-collection-list {
    grid-row-gap: 100px;
  }

  .post-image {
    height: 350px;
  }

  .pagination {
    margin-top: 60px;
  }

  .search-result-list {
    grid-row-gap: 100px;
  }

  .navbar {
    padding-top: 30px;
  }

  .nav-link-wrapper {
    padding-left: 40px;
    padding-right: 30px;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    width: 60%;
    height: 100vh;
    max-height: 100vh;
    padding: 40px;
    display: flex;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .nav-middle-links {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .menu-button-wrapper {
    z-index: 9999;
    border-radius: 100%;
  }

  .nav-right-link {
    display: none;
  }

  .nav-email-wrapper.font-color-black {
    color: var(--title-text);
    display: block;
  }

  .nav-email-wrapper.font-color-black:hover {
    border-bottom-color: var(--title-text);
  }

  .nav-link {
    color: var(--title-text);
    margin-left: 0;
    margin-right: 0;
    padding: 5px 0;
  }

  .nav-link:hover {
    border-bottom-color: var(--title-text);
  }

  .nav-link.w--current {
    color: var(--title-text);
  }

  .nav-link.small-screen, .nav-link.small-screen.w--current {
    display: block;
  }

  .latest-blog-block {
    max-width: 350px;
  }

  .latest-blog-block-image {
    width: 100%;
    height: 250px;
  }

  .latest-blog-collection-list {
    grid-row-gap: 75px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-menu-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    display: flex;
  }

  .nav-menu-logo {
    padding-left: 0;
    display: block;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  .submit-button {
    margin-top: 20px;
  }

  .popup-form-wrapper {
    align-items: flex-start;
    padding: 40px;
  }

  .popup-close {
    top: 5px;
    right: 5px;
  }

  .nav-overlay {
    background-color: #0009;
    width: 100%;
    height: 100%;
    padding: 0;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .template-info-hero {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .page-title {
    font-size: 3.7rem;
    line-height: 4.4rem;
  }

  .license-block-title {
    justify-content: flex-start;
    width: auto;
  }

  .unserangebotsection {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .main-container-2 {
    max-width: 650px;
  }

  .unserangebotcontainer {
    flex-direction: column;
  }

  .unserangebotcontainer.unserangebotright {
    flex-direction: column;
    align-items: center;
  }

  .ua-lightbox {
    height: 450px;
  }

  .uatext-wrapper {
    width: 100%;
    max-width: 540px;
    margin-top: -60px;
    margin-left: 0;
  }

  .uatext-wrapper.uatextwrapperright {
    margin-right: 0;
  }

  .hedaing1.small, .angeboteheading.small {
    line-height: 1.5rem;
  }

  .image-2 {
    right: 5%;
  }

  .div-block-heading-submenu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .submenu {
    box-shadow: none;
    background-color: #fff0;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
  }

  .submenu.aboutus {
    display: block;
    left: auto;
    right: 0;
  }

  .div-block-5 {
    margin-left: 30px;
  }

  .value-container-vertical {
    grid-row-gap: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-wrapper {
    width: 100%;
    height: 70vw;
  }

  .imageleftrightsquare {
    height: 450px;
  }

  .service-block-text-wrapper-with-modal, .service-block-text-wrapper-block {
    padding: 25px;
  }

  .main-container-same-margins {
    max-width: 650px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-phone-wrapper.font-color-black {
    color: var(--title-text);
    display: block;
  }

  .nav-phone-wrapper.font-color-black:hover {
    border-bottom-color: var(--title-text);
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    align-self: auto;
  }

  .header {
    background-position: 100% 100%;
  }

  .image-4 {
    width: 45%;
    padding-top: 40px;
    padding-right: 100px;
  }

  .flex-block-3 {
    align-items: flex-end;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .feature-container-copy {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .feature-block-copy {
    max-width: 450px;
  }

  .feature-block-title-copy {
    max-width: none;
  }

  .c_container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .angeboteheading-copy.small {
    line-height: 1.5rem;
  }

  .array-of-industries-para-copy {
    margin-bottom: 20px;
  }

  .heading-3, .paragraph-4 {
    text-align: left;
  }

  .hero-bg-image {
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .hero-bg-image.image-holz {
    height: auto;
  }

  .hero-bg-image.imagemitarbeiterges-r-cj {
    background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
    background-position: 0 0, 0 100%;
    height: 60vh;
  }

  .h6-black.small {
    line-height: 1.5rem;
  }

  .nav-link-wrapper-new {
    padding-left: 40px;
    padding-right: 30px;
  }

  .h6-header.small {
    line-height: 1.5rem;
  }

  .lehrlingtestimonial {
    flex-direction: column;
  }

  .lehrlingtestimonial.unserangebotright {
    flex-direction: column;
    align-items: center;
  }

  .imageleftrightsquare-copy {
    height: 450px;
  }

  .uatext-wrapper-copy {
    width: 100%;
    max-width: 540px;
    margin-top: -60px;
    margin-left: 0;
  }

  .uatext-wrapper-copy.uatextwrapperright {
    margin-right: 0;
  }

  .team-member-image-thomas, .team-member-image-cornelia {
    height: 450px;
  }

  .footer-block-social {
    width: 40%;
  }

  .kontakltcta {
    flex-direction: column;
  }

  .cta-block-copy {
    width: 40%;
  }

  .impressum {
    grid-column-gap: 20px;
    color: #191148;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
  }

  .left-arrow-copy {
    inset: auto 0% 60px -60px;
  }

  .right-arrow-copy {
    inset: auto -60px 60px 0%;
  }

  .slide-nav-copy {
    display: none;
  }

  .display-copy {
    font-size: 3.7rem;
    line-height: 4.4rem;
  }

  .hero-slider-text-wrapper-copy {
    grid-row-gap: 50px;
    align-items: flex-start;
    padding-left: 0;
  }

  .hero-slider-wrapper-copy {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .slider-image-copy {
    height: 120%;
  }

  .feature-container-copy-copy {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .grid-2 {
    grid-column-gap: 14px;
  }

  .angeboteheading-copy-copy.small, .c_sectiontitle.small {
    line-height: 1.5rem;
  }

  .c_container-zitat {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bookgrid, .feature-container-copy-copy-copy {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .hero-bg-video-lehrlingsseminare {
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .team-member-image-andrea {
    height: 450px;
  }

  .closemenuicon {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
    top: 0%;
    right: 0%;
  }

  .flex-block-9 {
    flex-direction: row;
    flex: 0 auto;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
  }

  .contactnavmobile {
    display: block;
  }

  .display-wordbreak {
    text-align: center;
    font-size: 3.7rem;
    line-height: 4.4rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .h6-big.small, .h6-small.small {
    line-height: 1.5rem;
  }

  .hero-main-container {
    max-width: 650px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .scrolllindicator {
    margin-bottom: 120px;
  }

  .lottie-animation {
    width: 100px;
    height: 100px;
  }

  .hero-section-75 {
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .constantinus_fix {
    width: auto;
    height: 100%;
  }

  .skillsfabrikcontainer, .sillsfabrikcontainer {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .grid-5 {
    grid-column-gap: 14px;
  }

  .hero-bg-image-soft {
    padding-top: 170px;
    padding-bottom: 140px;
  }

  .hero-bg-image-soft.imagemitarbeiterges-r-cj {
    background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
    background-position: 0 0, 0 100%;
    height: 60vh;
  }

  .hero-main-container-soft {
    max-width: 650px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .div-block-heading-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .banner-section-photo {
    min-height: 780px;
    padding-top: 110px;
  }

  .home-main-banner-discription {
    width: 60%;
  }

  .floating-room-two {
    top: 39%;
  }

  .floating-room-three {
    top: 11%;
    right: 27%;
  }

  .floating-room-four {
    right: 0%;
  }

  .floating-room-one {
    left: 0%;
  }

  .home-title {
    width: 80%;
  }

  .two-column-wrapper {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .two-column-wrapper.center-inverted {
    flex-direction: column-reverse;
  }

  .column-one, .column-two {
    width: 100%;
  }

  .video-in-section {
    width: 100%;
    min-height: 420px;
  }

  .primary-button {
    display: block;
  }

  .how-it-works-wrap {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .how-it-works-left-wrap {
    width: 100%;
  }

  .line-one-b.d {
    display: none;
  }

  .how-it-works-wrapper {
    width: 100%;
  }

  .enter-button-wrapper {
    display: none;
  }

  .explore-room-bg-image {
    opacity: .3;
    width: 340px;
  }

  .explore-room-title-wrapper {
    width: 61%;
  }

  .emotions-wrapper {
    padding-left: 130px;
    padding-right: 130px;
  }

  .room-selection-wrapper {
    display: flex;
  }

  .room-loop-block-wrapper {
    width: 60%;
    margin-right: 0%;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .room-selection-content {
    width: 36%;
  }

  .big-key-animated {
    height: 190px;
    margin-left: -160px;
  }

  .key-hole-image-half {
    width: 67px;
    margin-left: 67px;
  }

  .key-hole-image {
    width: 130px;
  }

  .splash-screen-bg {
    width: 130px;
    height: 160px;
  }

  .enter-button-wrapper-item {
    display: none;
  }

  .escapethecompany-logo {
    width: 50%;
  }

  .column-one-2, .column-one-2.assymetrical {
    width: 100%;
  }

  .two-columns-wrapper {
    flex-direction: column;
  }

  .two-columns-wrapper.assymetric {
    grid-row-gap: 5px;
  }

  .columns-two, .columns-two.assymetrical {
    width: 100%;
  }

  .image-about {
    height: 400px;
  }

  .section-title-cta {
    width: 100%;
  }

  .cta-block-2 {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .style-guide-title {
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }

  .main-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .h3 {
    font-size: 1.75rem;
    line-height: 2.875rem;
  }

  .all-paragraph-container, .color-palette-container {
    width: 100%;
  }

  .post-rich-text h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .post-rich-text h3 {
    font-size: 1.75rem;
    line-height: 2.875rem;
  }

  .display {
    font-size: 2.5rem;
    line-height: 3.51738rem;
  }

  .style-guide-block {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
  }

  .h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .h1 {
    font-size: 2.8132rem;
    line-height: 3.56339rem;
  }

  .all-heading-container, .buttons-container {
    width: 100%;
  }

  .hero-slider-wrapper {
    padding-top: 140px;
  }

  .features-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .feature-container {
    grid-row-gap: 50px;
  }

  .home-about-text {
    padding-left: 0;
    padding-right: 0;
  }

  .home-about-text-wrapper {
    padding: 90px 30px;
  }

  .home-about-header {
    margin-bottom: 0;
  }

  .industries-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .industries-slider {
    padding-bottom: 90px;
  }

  .industry-slider-left-arrow {
    inset: auto 0% 0% -78px;
  }

  .industry-slider-right-arrow {
    inset: auto -78px 0% 0%;
  }

  .team-section, .cta-section, .testimonial-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .testimonial-mask {
    width: 90%;
  }

  .testimonial-slide, .testimonial-slide-content {
    width: 100%;
  }

  .reviewer-details {
    grid-row-gap: 3px;
    flex-direction: column;
    display: flex;
  }

  .footer, .footer-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .footer-block {
    width: auto;
  }

  .footer-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-social-block {
    margin-top: 20px;
  }

  .hero-section {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .hero-section.contact-section-padding {
    padding-bottom: 140px;
  }

  .array-of-industries-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .array-of-industries-container {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .array-of-industries-block.shadow-off {
    padding: 0;
  }

  .value-sections {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .value-image {
    height: auto;
    min-height: 10px;
  }

  .services-section {
    padding: 90px 10px;
  }

  .service-container, .service-container.softskill {
    grid-template-columns: 1fr;
  }

  .usp-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .usp-text-wrapper {
    grid-row-gap: 10px;
    width: 90%;
    margin-top: -80px;
    padding: 40px;
  }

  .usp-btn-wrapper {
    margin-top: 30px;
  }

  .consultation-form-wrapper {
    padding: 40px;
  }

  .contact-info-wrapper {
    padding-left: 60px;
  }

  .faq-para-space {
    height: 15px;
  }

  .hero-bg-video {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .post-hero-section {
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .post-title {
    font-size: 2.6rem;
    line-height: 3.3rem;
  }

  .post-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .utility-page-content {
    width: 90%;
  }

  .post-image {
    height: 300px;
  }

  .brand {
    padding-left: 0;
  }

  .logo {
    width: 65px;
    height: 35px;
  }

  .nav-link-wrapper {
    padding-left: 30px;
    padding-right: 20px;
  }

  .nav-menu {
    width: 80%;
  }

  .menu-button {
    width: 35px;
    height: 35px;
  }

  .menu-button-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
    align-items: flex-start;
    width: 35px;
    height: 35px;
    padding: 0 8px;
  }

  .menu-line {
    flex: none;
    width: 100%;
  }

  .menu-line-2 {
    flex: none;
    width: 80%;
  }

  .webflow-link {
    font-size: 14px;
    line-height: 20px;
  }

  .latest-blog-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .submit-button {
    margin-top: 10px;
    padding: 15px 40px;
    font-size: 16px;
    line-height: 20px;
  }

  .popup-form-wrapper {
    padding: 30px;
  }

  .contact-form {
    grid-row-gap: 60px;
  }

  .popup-form-trigger {
    grid-row-gap: 5px;
    justify-content: center;
    align-items: flex-start;
    width: 35px;
    height: 35px;
    padding: 0 8px;
  }

  .template-info-hero {
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .page-title {
    font-size: 2.9546rem;
    line-height: 3.51738rem;
  }

  .license-paragraph-container {
    width: 100%;
  }

  .license-block-title {
    text-align: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }

  .licence-link-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .unserangebotsection {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .uatext-wrapper {
    grid-row-gap: 10px;
    width: 90%;
    margin-top: -80px;
    padding: 40px;
  }

  .text-block-2.heading {
    font-size: 1.7rem;
  }

  .modal-wrapper {
    height: 100vh;
    display: none;
  }

  .div-block {
    border-radius: 0;
    flex-direction: column;
    flex: 1;
    display: flex;
    position: relative;
    overflow: visible;
  }

  .image {
    max-width: 100%;
  }

  .div-block-2 {
    align-items: stretch;
    width: 100%;
    margin-right: 0;
  }

  .image-2 {
    z-index: 999;
    position: fixed;
    top: 5%;
  }

  .submenu {
    position: relative;
  }

  .trophies {
    flex-direction: column;
  }

  .service-block-text-wrapper-with-modal {
    display: flex;
  }

  .logo-sidemenu {
    width: 120px;
    height: 70px;
  }

  .image-4 {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }

  .flex-block-3 {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
  }

  .feature-container-copy {
    grid-row-gap: 50px;
  }

  .array-of-industries-block-copy.shadow-off {
    padding: 0;
  }

  .paragraph-3 {
    font-size: 24px;
    line-height: 35px;
  }

  .image-6 {
    margin-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-bg-image {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .nav-link-wrapper-new {
    padding-left: 30px;
    padding-right: 20px;
  }

  .h6-header {
    font-size: 1.8rem;
  }

  .uatext-wrapper-copy {
    grid-row-gap: 10px;
    width: 90%;
    margin-top: -80px;
    padding: 40px;
  }

  .footer-block-social {
    width: auto;
  }

  .kontakltcta.shadow-off {
    padding: 0;
  }

  .cta-block-copy {
    width: auto;
  }

  .impressum {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
  }

  .display-copy {
    font-size: 2.5rem;
    line-height: 3.51738rem;
  }

  .hero-slider-wrapper-copy {
    padding-top: 140px;
  }

  .feature-container-copy-copy {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .image-10 {
    align-self: center;
  }

  .grid-2 {
    grid-column-gap: 7px;
  }

  .bookgrid {
    grid-row-gap: 50px;
    flex-direction: column;
    justify-items: center;
  }

  .feature-container-copy-copy-copy {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .hero-bg-video-lehrlingsseminare {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .scrollinmodal {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    display: block;
    overflow: scroll;
  }

  .display-wordbreak {
    font-size: 2.5rem;
    line-height: 3.51738rem;
  }

  .grid-3 {
    grid-column-gap: 19px;
  }

  .hero-main-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .hero-section-75 {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .hero-section-75.contact-section-padding {
    padding-bottom: 140px;
  }

  .skillsfabrikcontainer, .sillsfabrikcontainer {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .grid-5 {
    grid-column-gap: 7px;
  }

  .hero-bg-image-soft {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .hero-main-container-soft {
    margin-top: 0;
    margin-bottom: 0;
  }

  .banner-section-photo {
    min-height: 700px;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .banner-content-container {
    flex-direction: column;
    align-items: center;
  }

  .home-main-banner-discription {
    width: 90%;
  }

  .floating-room-two {
    top: 40%;
  }

  .floating-room-three {
    top: 14%;
  }

  .floating-room-four {
    top: 30%;
    right: 8%;
  }

  .floating-room-one {
    left: 10%;
  }

  .home-title {
    width: 90%;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-text-quote-wrapper {
    text-align: left;
  }

  .two-column-wrapper {
    flex-direction: column;
  }

  .button-wrapper-main {
    margin-top: 30px;
  }

  .button-wrapper-main.mobile-center {
    justify-content: center;
  }

  .video-content-wrapper {
    grid-row-gap: 10px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .column-two.content-mobile-center {
    text-align: left;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .section-7 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .video-in-section {
    border-radius: 32px;
    min-height: 400px;
  }

  .how-it-works-wrap {
    grid-row-gap: 40px;
    width: 100%;
  }

  .section-8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .how-it-works-wrapper {
    text-align: center;
    align-items: center;
  }

  .explore-room-bg-image {
    opacity: 1;
    border-radius: 60px;
    width: 94%;
    max-width: none;
    height: 400px;
    margin-top: -60px;
    position: relative;
    left: 3%;
    right: auto;
  }

  .section-9 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-9.explore-style {
    padding-bottom: 0;
  }

  .image-explore {
    border-radius: 60px;
  }

  .explore-room-content-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    display: flex;
  }

  .explore-room-title-wrapper {
    width: 72%;
    margin-bottom: 20px;
  }

  .section-10 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .emotions-wrapper {
    background-size: auto 80px, auto 80px;
    padding: 40px 80px;
  }

  .room-selection-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-selection-info-wrapper {
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 0;
    display: flex;
  }

  .room-loop-block-wrapper {
    width: 100%;
    padding-left: 15px;
  }

  .room-selection-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 40px;
    display: flex;
  }

  .section-11 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .big-key-animated {
    margin-left: -145px;
  }

  .room-list-item {
    text-align: left;
  }

  .escapethecompany-logo {
    width: 50%;
  }

  .column-one-2.assymetrical {
    width: 100%;
  }

  .section-12 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .two-columns-wrapper {
    flex-direction: column;
  }

  .columns-two.assymetrical {
    width: 100%;
  }

  .image-about {
    border-radius: 60px;
    height: 340px;
  }

  .section-14, .section-15 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-15.without-top-spacing {
    padding-top: 0;
  }

  .cta-block-2 {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-title {
    text-align: center;
  }

  .body {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .color-palette-container {
    grid-template-columns: 1fr;
  }

  .post-rich-text {
    margin-top: 15px;
  }

  .display {
    font-size: 2.3rem;
    line-height: 3rem;
  }

  .h5 {
    font-size: 1.25rem;
    line-height: 2rem;
  }

  .h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .buttons-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .hero-slider-header.align-center {
    text-align: left;
    align-items: flex-start;
  }

  .left-arrow {
    inset: auto auto 60px 30px;
  }

  .hero-slide {
    height: 100%;
  }

  .right-arrow {
    inset: auto auto 60px 90px;
  }

  .hero-slider-text-wrapper.align-center {
    align-items: flex-start;
  }

  .feature-block {
    grid-column-gap: 15px;
    height: 300px;
    padding: 20px;
  }

  .feature-block-link {
    width: 40px;
    height: 40px;
  }

  .feature-block-image.gernot {
    object-position: 50% 20%;
  }

  .home-about-light-box {
    width: 80px;
    height: 80px;
    top: -40px;
  }

  .home-about-play-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .industries-container {
    grid-row-gap: 50px;
  }

  .industries-slider {
    padding-bottom: 80px;
  }

  .industries-mask {
    width: 260px;
    height: auto;
  }

  .industry-slide {
    width: 260px;
    height: auto;
    margin-right: 20px;
  }

  .industry-slide-content {
    padding: 30px 20px;
  }

  .industry-para {
    margin-bottom: 15px;
  }

  .industry-slider-left-arrow {
    width: 40px;
    height: 40px;
    left: -63px;
  }

  .industry-slider-right-arrow {
    width: 40px;
    height: 40px;
    right: -63px;
  }

  .team-blocks-wrapper {
    grid-row-gap: 50px;
  }

  .team-member-image {
    height: 350px;
  }

  .cta-btn-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cta-blocks-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .testimonial-container {
    grid-row-gap: 50px;
  }

  .testimonial-slider {
    padding-bottom: 70px;
  }

  .testimonial-mask {
    width: 90%;
    height: auto;
  }

  .testimonial-slide {
    width: 100%;
    height: auto;
    margin-right: 30px;
  }

  .testimonial-slide-content {
    width: 100%;
    padding: 30px 20px 30px 30px;
  }

  .testimonial-slider-left-arrow {
    width: 40px;
    height: 40px;
    inset: auto 0% 0% -63px;
  }

  .testimonial-slider-right-arrow {
    width: 40px;
    height: 40px;
    inset: auto -63px 0% 0%;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 32px;
  }

  .testimonial-text-arrow {
    left: 15px;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-bottom {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 200px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-social-block {
    margin-top: 20px;
  }

  .hero-section {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .array-of-industries-block {
    padding: 30px 20px;
  }

  .service-container {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .usp-text-wrapper {
    width: 100%;
    margin-top: 0;
    padding: 30px;
  }

  .usp-light-box {
    height: 250px;
  }

  .usp-play-btn {
    width: 65px;
    height: 65px;
  }

  .contact-container {
    grid-row-gap: 60px;
  }

  .consultation-form-wrapper {
    padding: 30px;
  }

  .contact-info-wrapper {
    grid-row-gap: 30px;
    padding-left: 30px;
  }

  .faqs-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .faqs-container {
    grid-row-gap: 60px;
  }

  .hero-bg-video {
    object-position: 50% 0%;
    height: 60vh;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .post-hero-section {
    padding-bottom: 110px;
  }

  .post-hero-container {
    padding: 30px;
  }

  .post-title {
    font-size: 2.4rem;
    line-height: 3.1rem;
  }

  .post-text-wrapper {
    grid-row-gap: 15px;
  }

  .blog-nav {
    grid-row-gap: 60px;
  }

  .utility-page-content {
    padding: 40px;
  }

  .category-wrapper {
    padding: 20px;
  }

  .recent-post-wrapper {
    grid-row-gap: 20px;
  }

  .recent-post-block-image {
    height: 150px;
  }

  .all-posts-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .all-posts-container, .all-post-collection-list {
    grid-row-gap: 75px;
  }

  .all-post-block {
    grid-row-gap: 12px;
  }

  .post-image {
    height: 200px;
  }

  .blog-post-tags-collection {
    margin-bottom: 0;
  }

  .search-result-list {
    grid-row-gap: 75px;
  }

  .navbar {
    padding-top: 15px;
  }

  .navbar-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link-wrapper {
    padding-left: 30px;
    padding-right: 20px;
  }

  .nav-menu {
    width: 90%;
    padding: 30px;
    display: flex;
  }

  .nav-right-link {
    display: none;
  }

  .menu-line, .menu-line-2 {
    height: 2px;
  }

  ._404-image {
    height: auto;
  }

  .latest-blog-container {
    grid-row-gap: 50px;
  }

  .latest-blog-collection-list {
    grid-row-gap: 75px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-form {
    grid-row-gap: 50px;
  }

  .nav-overlay {
    display: none;
  }

  .template-info-link {
    margin-top: 5px;
    display: inline-block;
  }

  .license-block-title {
    text-align: center;
    justify-content: center;
  }

  .licence-link-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .ua-lightbox {
    height: 250px;
  }

  .uatext-wrapper {
    width: 100%;
    margin-top: 0;
    padding: 30px;
  }

  .reviewer-details-wrapperbig {
    flex-direction: column;
  }

  .testimonial-text-arrow-top {
    left: 15px;
  }

  .modal-wrapper {
    display: none;
  }

  .div-block {
    overflow: visible;
  }

  .image-2 {
    top: 10px;
    right: 30px;
  }

  .imageleftrightsquare {
    height: 250px;
  }

  .service-block-text-wrapper-with-modal {
    display: block;
  }

  .h5-double-line {
    font-size: 1.25rem;
    line-height: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .image-4 {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-4 {
    font-size: 18px;
  }

  .feature-block-copy {
    grid-column-gap: 15px;
    height: 300px;
    padding: 20px;
  }

  .feature-block-link-copy {
    width: 40px;
    height: 40px;
  }

  .c_container {
    padding: 40px 20px;
  }

  .array-of-industries-block-copy {
    padding: 0 20px;
  }

  .angeboteheading-copy {
    text-align: center;
    width: 100%;
  }

  .paragraph-3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .image-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-7 {
    width: 60px;
  }

  .ablauf {
    padding-bottom: 20px;
  }

  .heading-3 {
    text-align: left;
  }

  .paragraph-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flex-block-6 {
    margin-bottom: 20px;
  }

  .ablaufitem {
    flex-direction: column;
    padding: 10px;
  }

  .ablauftext {
    text-align: center;
    margin-top: 5px;
    margin-left: 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .hero-bg-image {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero-bg-image.imagemitarbeiterges-r-cj {
    background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
    background-position: 0 0, 0 100%;
    background-size: auto, cover;
    padding-top: 40px;
  }

  .nav-link-wrapper-new {
    padding-left: 30px;
    padding-right: 20px;
  }

  .c_body {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .c_body.c_white {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .imageleftrightsquare-copy {
    height: 250px;
  }

  .uatext-wrapper-copy {
    width: 100%;
    margin-top: 0;
    padding: 30px;
  }

  .team-member-image-thomas, .team-member-image-cornelia {
    height: 350px;
  }

  .kontakltcta {
    padding: 30px 20px;
  }

  .hero-slide-copy {
    height: 100%;
  }

  .left-arrow-copy {
    inset: auto auto 60px 30px;
  }

  .right-arrow-copy {
    inset: auto auto 60px 90px;
  }

  .display-copy {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-slider-text-wrapper-copy {
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-slider-text-wrapper-copy.align-center {
    align-items: flex-start;
  }

  .slider-image-copy {
    object-position: 50% 50%;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sliderrezi {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .btn-v1-copy.buttoncorenlia.writeus {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .hero-bg-video-lehrlingsseminare {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .team-member-image-andrea {
    height: 350px;
  }

  .closemenuicon {
    top: 10px;
    right: 30px;
  }

  .display-wordbreak {
    overflow-wrap: anywhere;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .list-item-2, .list-item-3 {
    text-align: left;
  }

  .h6-big {
    display: none;
  }

  .h6-small {
    display: block;
  }

  .hero-main-container {
    padding-top: 0;
  }

  .hero-section-75 {
    padding-top: 180px;
    padding-bottom: 110px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .constantinus_fix {
    width: auto;
    height: 100%;
  }

  .grid-5 {
    grid-template-columns: 1fr 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-bg-image-soft {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero-bg-image-soft.imagemitarbeiterges-r-cj {
    background-image: linear-gradient(#00000059, #00000059), url('../images/Mitarbeitergespräch4-1.jpg');
    background-position: 0 0, 0 100%;
    background-size: auto, cover;
    padding-top: 40px;
  }

  .hero-main-container-soft {
    padding-top: 0;
  }

  .banner-section-photo {
    min-height: 760px;
  }

  .banner-content-container {
    text-align: center;
  }

  .home-main-banner-discription {
    width: 100%;
  }

  .floating-room-two {
    top: 44%;
    left: 26%;
  }

  .floating-room-three {
    top: 13%;
    right: 22%;
  }

  .floating-room-four {
    right: 5%;
  }

  .floating-room-one {
    top: 28%;
    left: 5%;
  }

  .home-title {
    width: 100%;
  }

  .about-quote {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
  }

  .video-in-section {
    border-radius: 16px;
  }

  .how-it-works-wrap {
    align-items: center;
    width: 100%;
  }

  .tab-text-wrapper {
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .tab-text-wrapper.one {
    border-right-style: none;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  .tab-text-wrapper.three {
    border-bottom-style: solid;
    border-right-style: none;
    align-items: flex-start;
  }

  .tab-text-wrapper.two {
    align-items: flex-start;
  }

  .tab-text-wrapper.four {
    align-items: flex-start;
    padding-bottom: 0;
  }

  .tabs-title {
    text-align: left;
  }

  .short-paragraph {
    text-align: center;
  }

  .short-paragraph.text-white {
    text-align: left;
  }

  .line-one-b {
    margin-right: 0;
  }

  .line-one-b.d {
    display: block;
    inset: auto 0% 0%;
  }

  .line-one-b.c {
    margin-left: 0;
  }

  .line-two-b {
    display: none;
  }

  .how-it-works-wrapper, .explore-room-content-wrapper {
    align-items: center;
  }

  .explore-room-title-wrapper {
    width: 100%;
  }

  .emotions-wrapper {
    padding: 40px 25px;
  }

  .room-loop-block-wrapper {
    text-align: center;
    padding-right: 15px;
  }

  .room-loop-collection-item {
    width: 250px;
  }

  .room-selection-content {
    text-align: center;
  }

  .big-key-animated {
    height: 140px;
    margin-left: -120px;
  }

  .key-hole-image-half {
    width: 52px;
    margin-left: 52px;
  }

  .curtain-bottom {
    height: 48vh;
  }

  .key-hole-image {
    width: 100px;
  }

  .splash-screen-bg {
    width: 100px;
    height: 120px;
  }

  .room-loop-image {
    height: 340px;
  }

  .room-link-block {
    border-radius: 40px;
  }

  .escapethecompany-logo {
    width: 70%;
  }
}

#w-node-_75793f40-1f3f-1faf-316f-c86507e848ac-0725fd93 {
  grid-area: Area;
  align-self: center;
}

#w-node-_982bfd1f-0912-269b-5996-83d0a53a7c87-0725fd93, #w-node-_9d897a05-247e-6a39-4333-c028d27e0f30-0725fd93, #w-node-_21072664-d0fa-9a2a-3b96-5d1e1747da8b-0725fd93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_84cb142c-3925-15df-d769-afe735eb73a8-0725fd93 {
  grid-area: Area;
  align-self: center;
}

#w-node-_6c060e40-bbe3-daeb-ef11-cc8e3bf93d3c-0725fd93, #w-node-_98a31fee-2873-fea8-c3cc-16c0ee817eef-0725fd93, #w-node-_9306eb0f-b024-6ee4-8b3b-464d9d225d16-0725fd93, #w-node-_4b85ab3d-5dbc-d44f-7851-1f41b9f28ad6-0725fd93, #w-node-_77770311-11f4-3b17-a35e-2badd9d12bd3-0725fd93, #w-node-b144d7ed-18bc-38f3-f33d-d475b32dfaf6-0725fd9c, #w-node-b144d7ed-18bc-38f3-f33d-d475b32dfaf7-0725fd9c, #w-node-b144d7ed-18bc-38f3-f33d-d475b32dfaf8-0725fd9c, #w-node-b144d7ed-18bc-38f3-f33d-d475b32dfaf9-0725fd9c, #w-node-_62896173-3c3f-8877-f776-58a43645ab1c-0725fd9f, #w-node-ca0bcc25-8a2d-c35d-1629-438e5665c64b-0725fd9f, #w-node-_5758d386-d788-7cca-0c46-13b84dda2a81-0725fd9f, #w-node-_930589a2-b1a6-1b27-a783-d5999b93d34e-0725fd9f, #w-node-be5bec99-4af5-94fa-a4fd-be3a6ba036da-0725fd9f, #w-node-ff666547-ac5c-5cb0-ae34-a7a8a7b0e1bc-0725fd9f, #w-node-d870f3dc-373f-6334-4ab3-06a687d78c05-0725fd9f, #w-node-d8c51e5b-3a69-01eb-aa84-dfcf5ce8729c-0725fd9f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}