:root {
  --midnight-blue: #1c2d48;
  --red: #fc4f4f;
  --red-hover: #e73737;
}

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

body {
  color: var(--midnight-blue);
  font-family: Open Sans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  z-index: 500;
  letter-spacing: -1px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #fdc802, #ff4398);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 900px;
  margin-top: 30px;
  padding-bottom: 20px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #585858;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color .35s;
}

a:hover {
  color: #494949;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 500;
}

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

li {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

strong {
  color: var(--midnight-blue);
  font-weight: 700;
}

blockquote {
  background-image: url('../images/command.svg'), url('../images/command.svg');
  background-position: 97% 90%, 6px 10px;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border-left: 5px #e2e2e2;
  margin-bottom: 10px;
  padding: 50px 32px;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  overflow: hidden;
}

.section.grey-section {
  background-color: #f8f9fa;
  padding-top: 40px;
}

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.container.nav-container {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.container.bereiche {
  margin-top: 5.5em;
  margin-bottom: 5.5em;
}

.nav-menu-container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.navbar {
  z-index: 40;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #ffffffa3;
  border-bottom: 1px solid #eee;
  height: 80px;
  position: sticky;
  inset: 0% 0% auto;
}

.hero-section {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-menu {
  font-weight: 600;
  display: flex;
}

.center-text {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.center-text.center-vertikal {
  justify-content: center;
  padding: 35px;
}

.top-margin-l {
  margin-top: 3em;
}

.button {
  border: 2px solid var(--midnight-blue);
  background-color: var(--midnight-blue);
  border-radius: 100px;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color .5s;
}

.button:hover {
  color: #fff;
  background-color: #091322;
}

.button.big {
  padding: 20px 40px;
}

.button.nav {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.button.footer_button {
  background-image: linear-gradient(to right, #fa5856, #ffc04a);
  border-radius: 14px;
  margin-top: 32px;
  margin-bottom: 24px;
  display: none;
}

.button.light {
  border: 2px solid var(--midnight-blue);
  color: var(--midnight-blue);
  background-color: #0000;
  margin-right: 20px;
}

.button.light:hover {
  background-color: #1c2d4821;
}

.grid-6-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.relative {
  z-index: 1;
  position: relative;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  display: flex;
}

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

.link-block {
  text-align: center;
  text-decoration: none;
  transition: color .4s;
}

.link-block:hover {
  color: #000;
}

.link-block.animation-01, .link-block.animation-02, .link-block.animation-03, .link-block.animation-04 {
  overflow: hidden;
}

.link-block.animation-05 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-block-underline {
  background-color: #8d8d8d;
  width: 100%;
  height: 1px;
  margin-top: 2px;
}

.footer {
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.nav-link {
  padding-left: 10px;
  padding-right: 10px;
}

.nav-link.margins {
  display: block;
}

.body-white {
  color: var(--midnight-blue);
  background-color: #fff;
}

.grey-text {
  color: #6b6b6b;
  font-weight: 500;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.field-label {
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 500;
}

.text-field {
  color: #414141;
  background-color: #f0f0f01c;
  border: 2px solid #e2e2e2;
  border-radius: 6px;
  height: 50px;
  font-size: 16px;
  transition: transform .4s, border-color .4s;
}

.text-field:focus {
  border-color: var(--red);
  transform: translate(0, 4px);
}

.textarea {
  color: #363636;
  background-color: #f4f8fb40;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 80px;
  min-height: 120px;
  max-height: 200px;
  font-size: 16px;
  transition: transform .4s, border-color .4s;
}

.textarea:focus {
  border-color: #a0a0a0;
  transform: translate(0, 4px);
}

.textarea::placeholder {
  color: #dadada;
}

.success-message {
  color: #f1f1f1;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
}

.error-message {
  text-align: center;
  background-color: #ffb5b5;
  border: 1px solid #ff5858;
  border-radius: 12px;
  padding: 26px;
  font-size: 18px;
  font-weight: 600;
}

._100pct {
  width: 100%;
  max-width: 100%;
}

.menu-button {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  display: none;
}

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

.brand {
  width: 150px;
}

.nav-link-button {
  color: #6d6d6d;
  overflow: hidden;
}

.nav-link-button.w--current {
  color: #000;
}

.footer-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.social-media-link {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
}

.footer-logo-container {
  width: 180px;
}

.footer-logo-container.w--current {
  width: 230px;
  margin-right: 0;
}

.footer-logo-container.right {
  width: 241px;
}

.footer-link {
  color: #818181;
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 500;
}

.hero-text {
  color: var(--midnight-blue);
  letter-spacing: -1px;
  max-width: none;
  margin-bottom: 30px;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 71px;
  font-weight: 700;
}

.top-margin-m {
  margin-top: 2em;
}

.hero-iphone-container {
  justify-content: center;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 35px;
  display: flex;
  overflow: hidden;
}

.iphone-container {
  width: 100%;
}

.iphone-container._01 {
  margin-left: 0;
}

.iphone-container._06 {
  margin-right: 0;
}

.iphone-image {
  z-index: 5;
  width: 100%;
  position: relative;
}

.iphone-image.top {
  width: 90%;
}

.iphone-holder {
  width: 100%;
  position: relative;
}

.iphone-screen-container {
  z-index: 2;
  border-radius: 17px;
  position: absolute;
  inset: 2.2% 5.2% 2.3%;
  overflow: hidden;
}

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

.iphone-shadow-container {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.harsh-shadow {
  width: 160%;
  max-width: none;
  height: 115%;
  position: relative;
  top: 7%;
  left: 36%;
}

.hero-iphone-holder {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 120%;
  display: grid;
}

.top-margin-xl {
  margin-top: 5em;
  margin-bottom: 5em;
}

.infinite-slider-content {
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.infinite-slider-grid {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 120%;
  padding-top: 0;
  padding-bottom: 37px;
  padding-right: 15px;
}

.infinite-slider-grid._2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 130%;
  padding-bottom: 46px;
}

.infinite-slider-grid._3 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 160%;
  padding-bottom: 92px;
}

.circle-logo-container {
  background-color: #fff;
  border-radius: 300px;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
}

.circle-logo-container.small {
  width: 92px;
  height: 92px;
}

.circle-logo-container.medium {
  width: 124px;
  height: 124px;
}

.circle-logo-container.big {
  width: 164px;
  height: 164px;
}

.small-logo-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 27px;
}

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

.tabs-menu {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.tab-image-container {
  position: relative;
}

.tab-pane-tab-1 {
  width: 100%;
}

.tab-link-button {
  color: #6d6d6d;
  background-color: #0000;
}

.tab-link-button.w--current {
  color: var(--midnight-blue);
  background-color: #0000;
}

.tab-active-container {
  background-color: #ccc;
  width: 5px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.tab-active-container.first {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.tab-active-container.last {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.tab-active {
  background-color: var(--midnight-blue);
  opacity: 1;
  border-radius: 20px;
  width: 6px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.tab-link {
  margin-top: -10px;
  margin-bottom: -10px;
}

.top-margin-s {
  margin-top: 1em;
}

.ticked-list {
  color: #221414;
  background-image: url('../images/Arrow-Green.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 30px;
  font-size: 18px;
}

.slide {
  width: 100%;
  height: 100%;
  margin-right: 32px;
}

.hide {
  display: none;
}

.white-card {
  background-color: #fff;
  border: 1px solid #ede7e7;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
  padding: 35px;
  display: flex;
  overflow: hidden;
}

.white-card.no-padding {
  height: auto;
  padding-bottom: 0;
}

.white-card.small {
  height: auto;
  padding: 26px;
}

.white-card.large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 40fr 60fr;
  grid-auto-columns: 1fr;
  height: 550px;
  padding: 0;
  display: grid;
}

.white-card.no-padding-top {
  height: auto;
  padding-top: 0;
}

.card-image-container {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.card-image-container.phone {
  padding-bottom: 35px;
}

.card-image-container.small {
  justify-content: center;
  align-items: center;
  padding: 17px 20px;
}

.contact_wrapper {
  background-color: #fff;
  border-radius: 48px;
  padding-left: 60px;
  overflow: hidden;
  box-shadow: 0 3px 12px 4px #0000001a;
}

.lottie-animation {
  width: 100%;
}

.social-media-link-twitter {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
}

.footer-holder {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-holder.right {
  align-items: flex-end;
}

.footer-link-wrapper {
  margin-top: 48px;
  display: flex;
}

.footer-link-wrapper.right {
  margin-top: 20px;
}

.card-iphone-container {
  object-fit: fill;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.subscribe-form {
  width: 100%;
  margin-top: 3.4em;
  margin-bottom: 1em;
  padding: 0;
}

.form-input {
  color: #141415;
  background-color: #f4f8fb40;
  border: 1px solid #dadada;
  border-radius: 5px;
  min-width: 350px;
  height: 47px;
  margin-bottom: 0;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: #fa5853;
}

.form-input::placeholder {
  color: #dadada;
}

.form-input.subscribe-input {
  border-radius: 20px;
  height: 70px;
  margin-bottom: 25px;
  padding-left: 20px;
  font-size: 25px;
}

.form-input.subscribe-input:focus {
  border-color: #ffabad;
}

.form-input.footer {
  border-radius: 13px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 18px;
  padding-right: 18px;
  display: none;
}

.form-input.footer:focus {
  border-color: #ffabad;
}

.error-message-2 {
  color: #fa5853;
  background-color: #fee;
  border-radius: 3px;
}

.subscribe-form-flex {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.subscribe-form-input-wrapper {
  text-align: left;
  flex: 1;
  position: relative;
}

.success-message-2 {
  -webkit-text-fill-color: transparent;
  background-color: #f4f8fb;
  background-image: linear-gradient(to right, #60aef8, #f46692 54%, #f3a562);
  -webkit-background-clip: text;
  background-clip: text;
  border: 2px solid #fa5853;
  border-radius: 5px;
  padding: 15px 20px;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: #fa5853;
  background-image: linear-gradient(to right, #fa5853, #f46692 50%, #ffc444);
  border-radius: 20px;
  min-width: 180px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 13px 20px;
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing .3s, color .3s;
}

.button-2:hover {
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
}

.button-2.btn-subscribe {
  background-image: url('../images/Arrow-White.svg'), linear-gradient(to right, #fa5853, #f46692 50%, #ffc444);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  border-radius: 15px;
  width: 100px;
  min-width: 100px;
  height: 60px;
  line-height: 3.5;
  transition: background-position .3s, letter-spacing .3s, color .2s;
  position: absolute;
  inset: 5px 5px 5px auto;
}

.button-2.btn-subscribe:hover {
  background-position: 55%, 0 0;
}

.button-2.kontakt {
  margin-top: 28px;
}

.contact-form-wrapper {
  padding-right: 50px;
}

.contakt_form_mail_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero_phone_bg {
  background-image: linear-gradient(126deg, #f03477 16%, #ffb236 85%);
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.hero_phone_logo {
  width: 60%;
}

.tab-image-text-wrapper {
  background-color: #fff;
  border-radius: 25px;
  max-width: 300px;
  margin: 13px;
  padding: 20px;
  display: none;
  position: absolute;
  inset: auto auto 22% 0%;
  box-shadow: 4px 5px 17px 1px #0000001f;
}

.tag-text {
  margin-bottom: 0;
  font-size: 14px;
}

.impressum-wrapper {
  padding-left: 48px;
  padding-right: 0;
}

.heading_bgm {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 20px;
}

.text_bgm {
  font-size: 16px;
}

.heading_feature.small {
  font-size: 23px;
}

.hide_nav {
  display: none;
}

.home_e-learning_img_wrapper {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
}

.home_e-learning_img_wrapper.phone {
  padding-bottom: 35px;
}

.home_e-learning_img_wrapper.small {
  justify-content: center;
  align-items: center;
  padding: 17px 20px;
}

.container-2 {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.infinite-slider-container {
  z-index: 3;
  width: 100vw;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

._100pct-2 {
  width: 100%;
}

.infinite-slider-blur {
  width: 100%;
  height: 100%;
  position: relative;
  top: 28%;
  left: 17%;
}

.infinite-slider-blur._02 {
  position: relative;
  inset: auto auto -38% -11%;
}

.infinite-slider-blur._01 {
  width: 100%;
  position: absolute;
  inset: auto -21% -32% auto;
}

.infinite-slider-gradient-container {
  z-index: -10;
  background-image: radial-gradient(circle at 80% 130%, #f0d7d7, #fff0 71%);
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.dropdown {
  width: 100%;
  margin-top: 11px;
  margin-bottom: 11px;
}

.arrow-image {
  width: 28px;
  margin-left: 15px;
}

.dropdown_heading {
  color: #6d6d6d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 500;
}

.dropdown-toggle {
  white-space: normal;
  background-color: #fff;
  border: 1px solid #ece7e7;
  border-radius: 8px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.dropdown_wrapper {
  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;
  margin-top: 25px;
}

.dropdown_content_wrapper {
  z-index: -10;
  background-color: #fff;
  border: 1px solid #ede6e7;
  border-radius: 10px;
  padding: 37px 94px 18px 20px;
  position: relative;
  transform: translate(0, -12px);
}

.footer_bbg_text {
  color: #c7c2c2;
  text-align: right;
  max-width: 300px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.dropdown_fade {
  z-index: 1000;
  background-image: linear-gradient(#f8f9fa00, #f8f9fa);
  justify-content: center;
  align-items: flex-end;
  height: 200px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-logo-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: block;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-prefs_title {
  color: #021a69;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_text {
  color: #021a69;
  font-size: .75rem;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_label {
  color: #4353ff;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-banner_button {
  color: #fff;
  text-align: center;
  background-color: #4353ff;
  border: 2px solid #4353ff;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #f5f5f5;
  border-color: #4353ff;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 1rem;
  height: 1rem;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-banner_text {
  color: #616161;
  margin-right: 1.5rem;
}

.fs-cc-banner_text-link {
  color: var(--midnight-blue);
  font-size: 14px;
  font-weight: 600;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fs-cc-banner_component {
  z-index: 998;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #ffffffa3;
  border-top: 1px solid #4353ff29;
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_button {
  background-color: #4353ff;
  border: 2px solid #4353ff;
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #fff;
  border-color: #4353ff;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.mail_img {
  height: 316px;
  position: relative;
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 65px;
  }

  .container {
    max-width: 1350px;
  }

  .container.relative {
    height: 100%;
  }

  .button {
    background-color: var(--midnight-blue);
  }

  .footer-logo-container.right {
    margin-top: 15px;
  }

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

  .iphone-container {
    padding-left: 27px;
    padding-right: 27px;
  }

  .hero-iphone-holder {
    width: 118%;
  }

  .tab-active {
    background-color: var(--red);
  }

  .contact_wrapper {
    align-items: flex-end;
    height: auto;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .footer-holder.right {
    align-items: flex-start;
  }

  .footer-link-wrapper.right {
    margin-top: 22px;
  }

  .paragraph {
    padding-left: 80px;
    padding-right: 80px;
  }

  .container-2 {
    max-width: 1350px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  .nav-menu {
    background-color: #fff;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-6-col {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .link-block {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .link-block-underline {
    display: none;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link.margins {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .menu-button {
    background-color: var(--midnight-blue);
    border-radius: 70px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 7px 4px 4px;
    transition: background-color .6s, border-radius .6s;
    display: flex;
  }

  .menu-button.w--open {
    background-color: var(--red-hover);
    border-radius: 15px;
  }

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

  .nav-button-container {
    display: none;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-container {
    margin-bottom: 12px;
  }

  .footer-logo-container.w--current {
    width: 200px;
  }

  .footer-link {
    margin: 12px 0;
  }

  .hero-text {
    font-size: 50px;
  }

  .animate-on-load-3rd {
    margin-top: 12px;
  }

  .hero-iphone-container {
    padding-top: 40px;
  }

  .iphone-image.top {
    width: 70%;
  }

  .iphone-screen-container {
    border-radius: 8px;
  }

  .hero-iphone-holder {
    width: 170%;
  }

  .infinite-slider-grid {
    width: 900%;
    padding: 23px;
  }

  .infinite-slider-grid._2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 300%;
    padding-top: 0;
  }

  .circle-logo-container.big {
    width: 80px;
    height: 80px;
  }

  .tabs-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-image-container {
    padding-left: 250px;
    padding-right: 50px;
  }

  .tab-link-button {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0;
  }

  .tab-active-container {
    width: 100%;
    height: 2px;
    display: none;
    inset: auto 0% 0%;
  }

  .tab-active-container.first, .tab-active-container.last {
    border-radius: 0;
  }

  .tab-active {
    width: 100%;
  }

  .tab-link {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .card-image-container.small {
    justify-content: center;
  }

  .contact_wrapper {
    padding: 0 23px 23px;
  }

  .footer-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-holder.right {
    display: none;
  }

  .footer-link-wrapper {
    flex-direction: column;
  }

  .contact-form-wrapper {
    padding-right: 0;
  }

  .contakt_form_mail_wrapper {
    display: none;
  }

  .tab-image-text-wrapper {
    margin-left: 96px;
  }

  .impressum-wrapper {
    padding-left: 18px;
  }

  .heading_feature, .heading_feature.small {
    font-size: 35px;
  }

  .hide_nav {
    display: flex;
  }

  .home_e-learning_img_wrapper.small {
    justify-content: center;
  }

  .infinite-slider-container {
    display: none;
  }

  .infinite-slider-container.mobil {
    display: flex;
  }

  .infinite-slider-blur._02 {
    bottom: -65%;
  }

  .infinty_img_wrapper.blank {
    display: none;
  }

  .dropdown_content_wrapper.w--open {
    padding-right: 20px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 23px;
  }

  p {
    font-size: 16px;
  }

  .container {
    padding-top: 0;
  }

  .container.relative {
    padding-top: 0;
    padding-bottom: 0;
  }

  .container.bereiche {
    margin-bottom: 3em;
  }

  .hero-section {
    height: auto;
  }

  .center-text.center-vertikal {
    padding-bottom: 0;
  }

  .button {
    padding: 10px 30px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 20px;
  }

  .social-media-link {
    margin: 8px 0;
  }

  .hero-text {
    font-size: 44px;
  }

  .infinite-slider-grid {
    width: 1400%;
  }

  .infinite-slider-grid._2 {
    width: 400%;
  }

  .circle-logo-container.medium {
    width: 120px;
    height: 120px;
  }

  .tabs {
    grid-template-columns: 1fr 1fr;
  }

  .tab-image-container {
    padding-left: 50px;
  }

  .white-card.large {
    height: 440px;
  }

  .card-image-container.phone {
    padding-top: 0;
  }

  .card-image-container.small {
    padding-top: 0;
    padding-bottom: 0;
  }

  .social-media-link-twitter {
    margin: 8px 0;
  }

  .form-input.footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .subscribe-form-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .subscribe-form-input-wrapper {
    margin-right: 0;
  }

  .button-2 {
    margin-bottom: 5px;
  }

  .button-2.btn-subscribe {
    margin-right: 0;
    bottom: 0;
  }

  .heading {
    text-align: center;
  }

  .tab-image-text-wrapper {
    display: none;
  }

  .heading_feature, .heading_feature.small {
    font-size: 30px;
  }

  .home_e-learning_img_wrapper.phone {
    padding-top: 0;
  }

  .home_e-learning_img_wrapper.small {
    padding-top: 0;
    padding-bottom: 0;
  }

  .infinite-slider-blur._01 {
    bottom: -54%;
  }

  .dropdown-toggle {
    padding-right: 20px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
  }

  h4 {
    font-size: 20px;
  }

  .container {
    padding: 1em;
  }

  .center-text.center-vertikal {
    padding-top: 0;
  }

  .top-margin-l {
    margin-top: 2em;
  }

  .grid-6-col {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    padding: 29px;
  }

  .utility-page-form {
    justify-content: space-between;
    height: 420px;
    padding: 30px;
  }

  .footer {
    text-align: left;
    padding: 21px 0;
  }

  .footer-logo-container.w--current {
    width: 170px;
  }

  .hero-text {
    font-size: 40px;
  }

  .harsh-shadow {
    top: 8%;
    left: 37%;
  }

  .hero-iphone-holder {
    width: 280%;
  }

  .infinite-slider-grid._2 {
    width: 500%;
    padding-bottom: 43px;
  }

  .tab-image-container {
    padding-left: 0;
    padding-right: 0;
  }

  .slide {
    width: 100%;
  }

  .white-card.no-padding {
    height: 350px;
    padding-top: 0;
  }

  .white-card.no-padding-top {
    height: 350px;
  }

  .card-image-container.phone {
    align-items: center;
    padding: 0;
  }

  .contact_wrapper {
    border-radius: 32px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-link-wrapper {
    margin-top: 15px;
  }

  .form-input {
    width: 100%;
    min-width: auto;
  }

  .form-input.subscribe-input {
    border-radius: 10px;
    height: 60px;
    font-size: 18px;
  }

  .subscribe-form-input-wrapper {
    flex: 1;
    align-self: stretch;
    margin-bottom: -53px;
  }

  .button-2.btn-subscribe {
    border-radius: 10px;
    width: 70px;
    min-width: 70px;
    height: 50px;
  }

  .contact-form-wrapper {
    padding-left: 29px;
    padding-right: 29px;
  }

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

  .heading_feature, .heading_feature.small {
    font-size: 22px;
  }

  .home_e-learning_img_wrapper.phone {
    align-items: center;
    padding: 0;
  }

  .container-2 {
    padding: 1em;
  }

  .infinite-slider-blur._01 {
    width: 200%;
    height: 200%;
    bottom: -164%;
    right: -71%;
  }

  .dropdown_heading {
    font-size: 18px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }
}

#w-node-_0e1a067f-1d0e-21ce-c8e7-2ca978caa5ae-21e786d7, #w-node-b561ed99-f477-c9f0-7ae1-bde90a0c9ea2-21e786d7 {
  place-self: center;
}

#w-node-_158c9496-9e36-069b-207e-e6d11b28a872-21e786d7 {
  justify-self: center;
}

#w-node-_4bcfadaa-82e2-10ee-ba6d-c9e39477b186-21e786d7 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_689a607b-71f1-090b-c091-238d9343aca2-21e786d7 {
  grid-area: 1 / 1 / 2 / 5;
  align-self: center;
}

#w-node-_689a607b-71f1-090b-c091-238d9343acac-21e786d7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
}

#w-node-_15d51b2e-2b42-a737-130f-adba8bb4a206-21e786d7 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_196746dd-c717-d465-29eb-dac1286c14b5-21e786d7, #w-node-_9da5a8f4-9138-e962-1213-2110815ab6d4-21e786d7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a11fa247-421f-5d47-39f7-08ff406ba503-21e786d7, #w-node-_5d6361bb-eb7f-0188-96f5-7059bb2fdcdc-21e786d7, #w-node-_3f305882-8879-428b-7bf6-1da89622b8c6-21e786d7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a24346f2-6478-2871-f1c7-e991b3ce908a-21e786d7 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-a24346f2-6478-2871-f1c7-e991b3ce9090-21e786d7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end;
}

#w-node-_4d511774-085c-ab07-e925-e0142528643b-21e786d7, #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056ed6-21e786d7 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056edc-21e786d7, #w-node-f971a3b2-0373-34fc-db44-a29ed1a8b4af-21e786d7, #w-node-_07d74ffc-fcc6-6f3b-553e-5525200d5c9c-21e786d7, #w-node-_6a4782b7-1872-4b0e-ce1f-e3b154d7a000-21e786d7, #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056ee0-21e786d7, #w-node-_65d85b11-1ddb-9487-4a14-f424b3810076-21e786d7, #w-node-f8c0d8c5-e2e0-3e91-04ff-a5aaa49f4c37-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8ae-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b0-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b2-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b4-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b6-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b8-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8ba-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf3-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf5-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf7-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf9-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdfb-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce24-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce26-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce28-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce2a-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce2c-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c19e-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a0-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a2-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a4-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c1-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c3-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c5-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c7-21e786d7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7734-b79f772e {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7747-b79f772e {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-f8c93020-c423-40f4-655c-4ee60417bbd1-3fe786db {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_49d1f919-e57e-6459-127b-4671f16c3659-5824f97d, #w-node-f623487b-709a-70ba-d8b7-655ea789f263-5824f97d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (min-width: 1440px) {
  #w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7734-b79f772e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7747-b79f772e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_4bcfadaa-82e2-10ee-ba6d-c9e39477b186-21e786d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_689a607b-71f1-090b-c091-238d9343aca2-21e786d7 {
    grid-area: 2 / 1 / 3 / 8;
    align-self: center;
  }

  #w-node-_689a607b-71f1-090b-c091-238d9343acac-21e786d7 {
    grid-area: 1 / 1 / 2 / 8;
  }

  #w-node-_15d51b2e-2b42-a737-130f-adba8bb4a206-21e786d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a11fa247-421f-5d47-39f7-08ff406ba503-21e786d7, #w-node-_5d6361bb-eb7f-0188-96f5-7059bb2fdcdc-21e786d7, #w-node-_3f305882-8879-428b-7bf6-1da89622b8c6-21e786d7 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-a24346f2-6478-2871-f1c7-e991b3ce908a-21e786d7 {
    grid-area: span 2 / span 3 / span 2 / span 3;
  }

  #w-node-a24346f2-6478-2871-f1c7-e991b3ce908b-21e786d7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a24346f2-6478-2871-f1c7-e991b3ce9090-21e786d7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: end;
  }

  #w-node-_4d511774-085c-ab07-e925-e0142528643b-21e786d7, #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056ed6-21e786d7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056edc-21e786d7, #w-node-f971a3b2-0373-34fc-db44-a29ed1a8b4af-21e786d7, #w-node-_07d74ffc-fcc6-6f3b-553e-5525200d5c9c-21e786d7, #w-node-_6a4782b7-1872-4b0e-ce1f-e3b154d7a000-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056ee0-21e786d7, #w-node-_65d85b11-1ddb-9487-4a14-f424b3810076-21e786d7, #w-node-f8c0d8c5-e2e0-3e91-04ff-a5aaa49f4c37-21e786d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-ee95345c-242c-0444-fc27-67ee7629c8ae-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b0-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b2-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b4-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-ee95345c-242c-0444-fc27-67ee7629c8b6-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8b8-21e786d7, #w-node-ee95345c-242c-0444-fc27-67ee7629c8ba-21e786d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_223ae890-901f-3302-0726-aeefb0acfdf3-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf5-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf7-21e786d7, #w-node-_223ae890-901f-3302-0726-aeefb0acfdf9-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_223ae890-901f-3302-0726-aeefb0acfdfb-21e786d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_23b005d1-13db-65b4-e04f-462ee011ce24-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce26-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce28-21e786d7, #w-node-_23b005d1-13db-65b4-e04f-462ee011ce2a-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_23b005d1-13db-65b4-e04f-462ee011ce2c-21e786d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-c27506ec-d2c3-1141-b2c5-09507104c19e-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a0-21e786d7, #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a2-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-c27506ec-d2c3-1141-b2c5-09507104c1a4-21e786d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c1-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c3-21e786d7, #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c5-21e786d7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-e6a01058-92c3-05cf-0004-a7a5aef0d2c7-21e786d7 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_689a607b-71f1-090b-c091-238d9343aca2-21e786d7 {
    grid-row: 2 / 3;
    grid-column-end: 3;
  }

  #w-node-_689a607b-71f1-090b-c091-238d9343acac-21e786d7 {
    grid-column-end: 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4bcfadaa-82e2-10ee-ba6d-c9e39477b186-21e786d7 {
    grid-column: span 2 / span 2;
  }

  #w-node-_15d51b2e-2b42-a737-130f-adba8bb4a206-21e786d7, #w-node-_4d511774-085c-ab07-e925-e0142528643b-21e786d7, #w-node-_7cf9ee55-6996-f4c1-ba0e-b2df72056ed6-21e786d7, #w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7734-b79f772e {
    grid-column: span 3 / span 3;
  }

  #w-node-c78f7b6d-e9c6-bec4-d8b9-66f5b79f7747-b79f772e {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: end;
  }

  #w-node-f8c93020-c423-40f4-655c-4ee60417bbc1-3fe786db, #w-node-f8c93020-c423-40f4-655c-4ee60417bbc5-3fe786db, #w-node-f8c93020-c423-40f4-655c-4ee60417bbc9-3fe786db, #w-node-f8c93020-c423-40f4-655c-4ee60417bbcd-3fe786db {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Open Sans';
  src: url('../images/') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}