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

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  font-family: Cnter, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  cursor: default;
}

h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 3em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2em;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.75em;
  line-height: 1.2;
  font-weight: 400;
}

h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.5em;
  line-height: 1.3;
  font-weight: 400;
}

h5 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: 600;
}

h6 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #be1622;
  text-decoration: underline;
}

a:hover {
  color: #444;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

li {
  line-height: 1.4;
}

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

label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

blockquote {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 11px 20px;
  border-left: 5px solid red;
  font-size: 1.5em;
  line-height: 1.3;
}

figure {
  margin: 20px auto;
}

figcaption {
  margin-top: 12px;
  color: #828282;
  font-size: 1em;
  text-align: center;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.container.in-navbar {
  max-width: 1920px;
}

.container.timeliner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  width: 230px;
  padding-left: 0px;
}

.brand.in-footer {
  margin-bottom: 20px;
}

.navbar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link {
  padding: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #333;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.nav-link:hover {
  color: red;
  text-decoration: underline;
}

.nav-link.w--current {
  color: red;
  text-decoration: underline;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.button {
  padding: 12px 32px;
  border-radius: 50px;
  background-color: #be1622;
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-transform: none;
}

.button:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.button.margin-left-20px {
  margin-left: 0px;
  background-color: #be1622;
}

.section {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fff;
}

.section.footer {
  margin-top: auto;
  padding-top: 65px;
  padding-bottom: 65px;
  background-color: #333;
  color: #fff;
}

.section._404 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section.no-top-padding {
  padding-top: 0px;
}

.section.no-top-padding.hide {
  display: none;
}

.section.black {
  z-index: 4;
  background-color: #c4c4c4;
  color: #fff;
}

.section.grey {
  background-color: #f2f2f2;
}

.section.grey.hide {
  display: none;
}

.section.timeline {
  z-index: 2;
  padding-top: 0px;
  padding-bottom: 0px;
}

.section.red {
  background-color: #be1622;
  color: #fff;
}

.image-wrap {
  position: relative;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.image-wrap.max-width-460px {
  max-width: 460px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.logos-wrap {
  display: -ms-grid;
  display: grid;
  width: 53%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

._3-columns-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

._3-columns-grid.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid.top-margin-40px {
  margin-top: 40px;
}

._3-columns-grid.top-margin-40px.hide {
  display: none;
}

._3-columns-grid.max-w-70 {
  max-width: 70%;
  margin-top: 30px;
}

.review-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  background-color: #444;
  color: #c4c4c4;
}

.review-card-name {
  margin-right: 12px;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 400;
}

.review-card-name-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.revie-card-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.star-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.rating-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.rating-wrap.margin-top-10 {
  margin-top: 10px;
}

.paragraph-smaller {
  font-size: 0.8em;
}

.paragraph-smaller.font-color-grey {
  color: #828282;
}

.paragraph-smaller.font-color-light-grey {
  color: #c4c4c4;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.absolute-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.no-top-margin {
  margin-top: 0px;
  color: #333;
}

.no-top-margin.bottom-margin-8px {
  margin-bottom: 8px;
}

.no-top-margin.bottom-margin-5px {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.5em;
}

.no-top-margin.white {
  color: #fff;
}

._2-column-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

._2-column-grid.top-margin-60px {
  margin-top: 60px;
}

.feature-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 20px;
  background-color: #444;
}

.feature-icon-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 8px;
  background-color: #be1622;
}

.feature-icon {
  max-height: 36px;
  max-width: 36px;
}

.footer-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-links-wrap {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-link {
  margin-right: 20px;
  color: #c4c4c4;
  text-decoration: none;
}

.footer-link.underline {
  text-decoration: underline;
}

.footer-link.smaller {
  font-size: 0.8em;
}

.menu-button {
  width: 60px;
  height: 60px;
}

.menu-button.w--open {
  background-color: transparent;
}

.lottie-animation {
  width: 100%;
  height: 100%;
}

.subheading {
  max-width: 40ch;
  margin-right: auto;
  margin-left: auto;
  color: #666;
}

.subheading.nopadding {
  margin-bottom: 0px;
  text-align: center;
}

.subheading.links {
  margin-left: 0px;
}

.style-guide-wrap {
  width: 100%;
  margin-top: 60px;
}

.style-guide-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.label {
  margin-bottom: 12px;
}

.form-block {
  width: 100%;
}

.text-field {
  width: 100%;
  min-height: 44px;
  margin-bottom: 24px;
  padding: 12px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #333;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #333;
}

.text-field:hover {
  border-color: #c4c4c4;
}

.text-field:focus {
  border-color: #333;
}

.text-field::-webkit-input-placeholder {
  color: #c4c4c4;
}

.text-field:-ms-input-placeholder {
  color: #c4c4c4;
}

.text-field::-ms-input-placeholder {
  color: #c4c4c4;
}

.text-field::placeholder {
  color: #c4c4c4;
}

.text-field.text-area {
  min-height: 88px;
}

.checkbox-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-left: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
}

.checkbox {
  width: 16px;
  height: 16px;
  margin-top: 0px;
  margin-right: 12px;
  margin-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-color: #828282;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.checkbox:hover {
  border-color: #333;
}

.checkbox.w--redirected-checked {
  border-color: red;
  background-color: red;
}

.checkbox.w--redirected-focus {
  border-color: red;
  box-shadow: 0 0 3px 1px red;
}

.checkbox-label {
  margin-bottom: 0px;
}

.radio-button-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-left: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
}

.radio-button {
  width: 16px;
  height: 16px;
  margin-top: 0px;
  margin-right: 12px;
  margin-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-color: #828282;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.radio-button:hover {
  border-color: #333;
}

.radio-button.w--redirected-checked {
  border-color: red;
}

.radio-button.w--redirected-focus {
  border-color: red;
  box-shadow: 0 0 3px 1px red;
}

.radio-button-label {
  margin-bottom: 0px;
}

.select-field {
  width: 100%;
  min-height: 44px;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #444;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #333;
}

.select-field:hover {
  border-style: solid;
  border-width: 1px;
  border-color: #c4c4c4;
}

.select-field:focus {
  border-style: solid;
  border-width: 1px;
  border-color: #333;
}

.success-message {
  padding: 20px;
  background-color: #444;
  color: #fff;
}

.error-message {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #ff0051;
  color: #fff;
}

.image-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding-top: 66.66%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 20px;
  box-shadow: -7px 7px 30px 0 rgba(0, 0, 0, 0.25);
}

.image-box.top-padding-150 {
  padding-top: 150%;
}

.circle-image {
  position: absolute;
  left: auto;
  top: -10%;
  right: 10%;
  bottom: auto;
  max-width: 75%;
}

.dots-image {
  position: absolute;
}

.dots-image.top-right-2 {
  left: auto;
  top: 20%;
  right: -10%;
  bottom: auto;
}

.dots-image.bottom-left-2 {
  left: -10%;
  top: auto;
  right: auto;
  bottom: 10%;
}

.student-card {
  position: absolute;
  left: 10%;
  bottom: -10%;
  z-index: 2;
  width: 100%;
  max-width: 335px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1), inset 0 4px 0 0 #be1622;
}

.student-card.hide {
  display: none;
}

.featured-in-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-image {
  width: 100%;
}

.centered-heading {
  width: 100%;
  max-width: 720px;
  margin-top: 0px;
  margin-bottom: 40px;
  text-align: center;
}

.centered-heading.dark {
  color: #333;
}

.text-column-wrap {
  max-width: 900px;
  margin-bottom: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.text-column-wrap.linksb-ndig {
  text-align: left;
}

.font-align-center {
  text-align: center;
}

.slider {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}

.slider.hide {
  display: none;
}

.mask {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.right-arrow {
  right: -80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px;
  border-radius: 50%;
  background-color: #444;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

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

.right-arrow.hide {
  display: none;
}

.left-arrow {
  left: -80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 20px;
  border-radius: 50%;
  background-color: #444;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

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

.left-arrow.hide {
  display: none;
}

.slide-nav {
  position: absolute;
  bottom: -80px;
}

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

.slide-card {
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 20px;
  background-color: #444;
}

.slide-card.hide {
  display: none;
}

.review-avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
}

.slide-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.review-author-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.review-text-in-card {
  margin-bottom: 20px;
  font-size: 1.3em;
  line-height: 1.5;
}

.slider-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.font-color-grey {
  color: #c4c4c4;
}

.slide {
  width: 100%;
  padding: 20px;
}

.faq-wrap {
  width: 100%;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.faq-dropdown {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: hsla(0, 0%, 100%, 0.6);
}

.dropdown-toggle {
  width: 100%;
  padding: 30px 40px 30px 30px;
  white-space: normal;
}

.dropdown-list {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: transparent;
}

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

.dropdown-list-wrap {
  width: 100%;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  color: #828282;
}

.logo-wrap-in-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-right: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #c4c4c4;
  font-size: 0.75em;
}

.top-margin-auto {
  margin-top: auto;
}

.footer-column {
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.social-links-wrap {
  display: -ms-grid;
  display: grid;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  justify-items: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.social-link {
  padding: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #fff;
  line-height: 1;
  text-decoration: none;
}

.social-link:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}

.social-icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.social-icon.negativ {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.kabel-bg {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: none;
  width: 57%;
  margin-top: auto;
  margin-right: -10px;
  margin-bottom: -10px;
  -o-object-fit: contain;
  object-fit: contain;
}

.leistungen-richtext li {
  font-size: 12px;
}

.leistungen-richtext ul {
  margin-top: 0px;
  margin-bottom: 0px;
}

.grid {
  position: relative;
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 0px 1fr;
}

.timeline-content-cell {
  padding: 30px 45px;
}

.timeline-content-cell.firstcell {
  margin-top: 50px;
}

.timeline-content-cell.lastcell {
  margin-bottom: 50px;
}

.timeline-middle {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.timeline-dot {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 3px;
  border-color: #be1622;
  border-radius: 50%;
  background-color: #fff;
}

.timeline-dot.absolutely {
  position: relative;
  z-index: 50;
  width: 9px;
  height: 9px;
  border-width: 0px;
  background-color: #be1622;
}

.kabel {
  width: 8px;
  height: 100%;
  border-right: 3px solid #be1622;
  border-left: 3px solid #be1622;
}

.div-block {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: -1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -o-object-fit: contain;
  object-fit: contain;
}

.image.freestyler {
  width: 100%;
  height: auto;
}

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

.lightbox-grid {
  max-width: 900px;
  padding: 0px;
  grid-auto-rows: 200px;
  -ms-grid-rows: 200px;
  grid-template-rows: 200px;
}

.mitgliedschaft-logo {
  width: 100%;
  height: 100%;
  padding: 25px;
  border-radius: 7px;
  background-color: #fff;
  -o-object-fit: contain;
  object-fit: contain;
}

.div-block-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 200px;
  height: 200px;
  min-width: 200px;
  margin-right: 40px;
  padding: 35px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}

.grid-2 {
  margin-top: 50px;
  grid-column-gap: 71px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.negativlink {
  color: #f2f2f2;
}

.contactwrapper {
  font-size: 16px;
  text-align: left;
}

.kontakticon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #fff;
  line-height: 1;
  text-decoration: none;
}

.kontakticon:hover {
  text-decoration: none;
}

.map {
  position: relative;
  z-index: 5;
  height: 200px;
  background-image: url('../images/osm.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.mapcover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(51, 51, 51, 0.61);
  opacity: 0;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.mapcover:hover {
  opacity: 1;
}

.phoner-cta-bubble {
  position: fixed;
  left: auto;
  top: 22vh;
  right: 0%;
  bottom: auto;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-links-wrap-copy {
  display: -ms-grid;
  display: grid;
  width: 60px;
  margin-left: auto;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.social-link-copy {
  width: 100%;
  padding: 13px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 10px 0% 0% 10px;
  background-color: #be1622;
  line-height: 1;
  text-decoration: none;
}

.social-link-copy:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}

.balkenrot {
  height: 5px;
  background-color: #be1622;
}

.grid-3 {
  margin-bottom: 60px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 41px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.referenzen {
  width: 80px;
  height: 50px;
  opacity: 0.75;
  -webkit-filter: saturate(0%);
  filter: saturate(0%);
  -o-object-fit: contain;
  object-fit: contain;
}

.link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(0, 0, 0, 0.3), transparent), url('../images/video-bg.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.link-block.wgk {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(0, 0, 0, 0.3), transparent), url('../images/wgk.jpg');
}

.image-2 {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.lightbox-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.lightbox-link.freestyler {
  width: 200px;
  height: auto;
}

.zeitstrahllogo {
  display: block;
  width: 200px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

.image-3 {
  width: 150px;
  height: 150px;
  margin-top: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

.qr-code {
  width: 175px;
  height: 175px;
  margin-top: 15px;
  padding: 10px;
  background-color: #fff;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.rich-text-block {
  margin-bottom: 30px;
}

.html-embed {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .navbar {
    position: -webkit-sticky;
    position: sticky;
  }

  .container.in-navbar {
    padding-right: 20px;
  }

  .brand {
    width: 200px;
  }

  .nav-link {
    text-align: center;
  }

  .nav-menu {
    width: 100%;
    padding: 0px 20px 40px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
  }

  .button.margin-left-20px {
    margin-left: 0px;
  }

  .section {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image-wrap {
    width: 100%;
  }

  .image-wrap.max-width-460px {
    margin-right: auto;
    margin-left: auto;
  }

  .logos-wrap {
    width: 100%;
    margin-top: 40px;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .review-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .no-top-margin.bottom-margin-5px {
    font-size: 1.25em;
  }

  .no-top-margin.white {
    font-size: 1.4em;
  }

  ._2-column-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feature-icon-wrap {
    margin-bottom: 20px;
  }

  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-links-wrap {
    width: 100%;
    margin-top: 80px;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    justify-items: start;
  }

  .menu-button {
    width: 60px;
    height: 60px;
    padding: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .lottie-animation {
    width: 100%;
    height: 100%;
  }

  .subheading.links {
    margin-right: auto;
    margin-left: auto;
  }

  .circle-image {
    top: -5%;
  }

  .featured-in-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .text-column-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .right-arrow {
    right: 0px;
  }

  .left-arrow {
    left: 0px;
  }

  .slide {
    padding-right: 30px;
    padding-left: 30px;
  }

  .faq-wrap {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .social-links-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .lightbox-grid {
    padding: 20px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .social-links-wrap-copy {
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    justify-items: center;
  }

  .heading {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  .container.in-navbar {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .image-wrap {
    padding: 20px;
  }

  .logos-wrap {
    display: -ms-grid;
    display: grid;
    margin-top: 40px;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  ._3-columns-grid {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  ._3-columns-grid.max-w-70 {
    max-width: 100%;
    grid-column-gap: 13px;
    grid-row-gap: 19px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .review-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .review-card-name-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .rating-wrap.margin-top-10 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .flex.vertical {
    height: auto;
  }

  .no-top-margin.white {
    font-size: 1.25em;
  }

  ._2-column-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feature-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .feature-icon-wrap {
    margin-right: 20px;
    margin-bottom: 0px;
  }

  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-links-wrap {
    margin-top: 40px;
    grid-auto-flow: row;
    -ms-grid-columns: auto 50%;
    grid-template-columns: auto 50%;
  }

  .subheading.nopadding {
    font-size: 12px;
    line-height: 1.4;
  }

  .review-avatar {
    margin-right: 0px;
  }

  .slide-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .review-author-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .review-text-in-card {
    font-size: 1em;
    line-height: 1.4;
    text-align: center;
  }

  .social-links-wrap {
    margin-left: 0px;
  }

  .social-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .grid {
    -ms-grid-columns: 45vw 5px 45vw;
    grid-template-columns: 45vw 5px 45vw;
  }

  .timeline-content-cell {
    padding: 20px;
  }

  .timeline-content-cell.left {
    padding: 20px;
  }

  .lightbox-grid {
    padding: 0px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .div-block-2 {
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin-right: 0px;
    margin-bottom: 20px;
    padding: 9px;
  }

  .grid-2 {
    grid-row-gap: 35px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contactwrapper.hidemobile {
    display: none;
  }

  .phoner-cta-bubble {
    top: auto;
    bottom: 30px;
  }

  .social-links-wrap-copy {
    margin-left: 0px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.8em;
  }

  .container {
    overflow: visible;
    text-align: left;
  }

  .container.in-navbar {
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand {
    width: 175px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-wrap {
    position: relative;
    padding: 0px;
    opacity: 1;
  }

  .logos-wrap {
    margin-top: 20px;
    grid-auto-flow: row;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  ._3-columns-grid {
    grid-row-gap: 20px;
  }

  ._3-columns-grid.max-w-70 {
    max-width: 100%;
    -ms-grid-rows: 65px;
    grid-template-rows: 65px;
  }

  .review-card-name {
    margin-bottom: 4px;
  }

  .review-card-name-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex.vertical {
    overflow: visible;
  }

  .no-top-margin {
    margin-bottom: 10px;
  }

  .no-top-margin.white.linksb-ndig {
    text-align: left;
  }

  ._2-column-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  ._2-column-grid.top-margin-60px {
    margin-top: 20px;
  }

  .feature-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feature-icon-wrap {
    margin-right: 20px;
    margin-bottom: 19px;
  }

  .footer-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .footer-links-wrap {
    display: block;
    grid-auto-columns: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .subheading {
    font-size: 12px;
    line-height: 1.5;
  }

  .circle-image {
    display: none;
  }

  .student-card {
    left: auto;
    max-width: 300px;
  }

  .centered-heading {
    font-size: 20px;
    line-height: 1.1;
  }

  .centered-heading.dark {
    font-size: 20px;
    line-height: 1.2;
  }

  .text-column-wrap.linksb-ndig {
    margin-bottom: 20px;
  }

  .review-avatar {
    width: 100px;
    height: 100px;
  }

  .review-author-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .slide {
    padding: 0px;
  }

  .logo-wrap-in-footer {
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-column {
    text-align: left;
  }

  .social-links-wrap {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    grid-auto-flow: row;
    grid-row-gap: 21px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .name-and-data-wrap {
    margin-bottom: 20px;
  }

  .timeline-content-cell {
    padding: 15px;
  }

  .timeline-content-cell.left {
    padding: 15px;
  }

  .timeline-content-cell.firstcell {
    padding: 15px;
  }

  .timeline-dot {
    width: 15px;
    height: 15px;
  }

  .kabel {
    border-right-width: 2px;
    border-left-width: 2px;
  }

  .lightbox-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .mitgliedschaft-logo {
    padding: 13px;
  }

  .grid-2 {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    justify-items: start;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .mapcover {
    padding: 30px;
    opacity: 1;
    -webkit-transition-property: none;
    transition-property: none;
  }

  .phoner-cta-bubble {
    top: auto;
    bottom: 30px;
  }

  .lightbox-link {
    width: 100px;
    height: 100px;
  }

  .lightbox-link.freestyler {
    width: 120px;
  }

  .heading {
    font-size: 2em;
  }

  .zeitstrahl-heading {
    font-size: 1.4em;
  }
}

#w-node-_379428cf-7324-4cdc-3ef4-a1b6a491c587-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-c3a7d908-eb26-9192-fca4-27adcdb75053-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_413ca43c-8662-dc9d-1ad5-6b6b86a79c2c-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-ed304ea5-0612-c44d-7dcc-f2deb1ab5337-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-d910f768-d844-a2d8-af1c-44b37db82b20-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_57870ade-706e-355e-f5ab-d9f1cd6d7923-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-d3e18043-3f09-2bb0-33b6-259b7aee6443-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_42d22bd2-2f90-5406-f44d-815bb4f5fee4-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-dd667615-7eb9-409f-ba18-b51f7f9e7f4b-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_97ef8895-f49f-9cee-17b8-e64b00fdacbc-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-e7bd23a5-ca30-af9b-1c26-bec62a15d4e4-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_21a17bc3-2c21-0389-50bd-7d730ccce74c-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-eb56e2f7-15ab-bfe5-f5aa-00c3ad15ab5e-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-c1c706ee-6390-288b-6182-efa0b187494b-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a559c96f-15b4-2ec9-0b10-bfd4ceef60c6-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_8ca720de-233d-bbbb-7d9a-05169a08cbeb-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-e1681238-2d9b-d4d8-0061-72d94c598e00-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_458e1b5c-cbd6-5b31-454c-2ba8e86c7740-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_89912ff5-2b77-50d8-0eda-8d8f1d2c64f0-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_582d0ec7-780a-83e0-67a3-7490a85176b2-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-e9f58886-88ca-b401-0c98-54f892484972-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_86287cb8-7b5b-6cb0-5ff4-f50fee9f6e86-d92caa76 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-e1c028dd-abef-12e1-b483-90d51273e20a-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bbcfd6e1-5335-767f-9ef8-687e7a46f280-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_28e313da-5aea-7067-28c5-9fcd414ebe91-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_54697f46-5cb4-74b8-29fa-02527481ef75-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a1d98e46-c9c6-2c31-0c81-04e03a58914d-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_84ac2bac-413c-e07e-725c-ebf2d4753461-d92caa76 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_552abc20-1819-ed75-9176-d03c8a62f7c1-d92caa76 {
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_0156f046-daaf-7705-b2c8-e4a0a798fdd8-d92caa76 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-d67c0b23-3a12-0ebb-344d-f30cade2c8e7-d92caa76 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_54a80446-9604-1a17-6c8d-86c60223549f-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

#w-node-e2f06151-b1bb-ac24-f5b2-87b9f8db8394-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

#w-node-_4d078af2-7bed-9d32-aa7d-6d2ad975f95e-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-e600ffa3-9d7e-673f-84ce-cb8db8090f79-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-bafaf547-685c-684e-1761-ee5f134f578a-d92caa76 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-cf7f5d9e-508f-b848-7d07-e7d807ed4e04-07ed4dfe {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-cf7f5d9e-508f-b848-7d07-e7d807ed4e0a-07ed4dfe {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-cf7f5d9e-508f-b848-7d07-e7d807ed4e14-07ed4dfe {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media screen and (min-width: 1280px) {
  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row-align: start;
    align-self: start;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_630878b2-637f-ab15-c8bf-c91cc66869f1-d92caa76 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_84ac2bac-413c-e07e-725c-ebf2d4753461-d92caa76 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_552abc20-1819-ed75-9176-d03c8a62f7c1-d92caa76 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_54a80446-9604-1a17-6c8d-86c60223549f-d92caa76 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-e2f06151-b1bb-ac24-f5b2-87b9f8db8394-d92caa76 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-e600ffa3-9d7e-673f-84ce-cb8db8090f79-d92caa76 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-bafaf547-685c-684e-1761-ee5f134f578a-d92caa76 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-cf7f5d9e-508f-b848-7d07-e7d807ed4e0a-07ed4dfe {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-cf7f5d9e-508f-b848-7d07-e7d807ed4e14-07ed4dfe {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
}

@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cnter';
  src: url('../fonts/Cnter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}