.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 {
  font-family: Manrope, sans-serif;
  color: #5d6890;
  font-size: 20px;
  line-height: 1.75em;
  font-weight: 500;
}

h1 {
  margin-top: 0px;
  margin-bottom: 24px;
  color: #1d2b5f;
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 22px;
  color: #1d2b5f;
  font-size: 42px;
  line-height: 1.286em;
  font-weight: 700;
}

h3 {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #1d2b5f;
  font-size: 26px;
  line-height: 1.346em;
  font-weight: 700;
}

h4 {
  margin-top: 0px;
  margin-bottom: 16px;
  color: #1d2b5f;
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 700;
}

h5 {
  margin-top: 0px;
  margin-bottom: 16px;
  color: #1d2b5f;
  font-size: 18px;
  line-height: 1.111em;
  font-weight: 700;
}

h6 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #1d2b5f;
  font-size: 16px;
  line-height: 1.125em;
  font-weight: 700;
}

p {
  margin-bottom: 0px;
}

a {
  -webkit-transition: color 350ms ease;
  transition: color 350ms ease;
  color: #1d2b5f;
  font-weight: 700;
  text-decoration: underline;
}

a:hover {
  color: #5d6890;
}

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

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

li {
  margin-bottom: 9px;
}

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

label {
  display: block;
  margin-bottom: 13px;
  color: #1d2b5f;
  line-height: 1em;
  font-weight: 700;
}

strong {
  color: #1d2b5f;
  font-weight: 700;
}

blockquote {
  margin-bottom: 10px;
  padding: 71px 100px;
  border-left: 0px solid #000;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 7px 24px 0 rgba(29, 43, 95, 0.06);
  color: #1d2b5f;
  font-size: 26px;
  line-height: 1.615em;
  font-weight: 700;
}

figure {
  margin-bottom: 10px;
}

.mg-top-24px {
  margin-top: 24px;
}

.color-white {
  color: #fff;
}

.container-default {
  max-width: 1270px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.container-medium {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.button-primary {
  padding: 22px 40px;
  border-radius: 80px;
  background-color: #1d2b5f;
  -webkit-transition: box-shadow 350ms ease, -webkit-transform 350ms ease;
  transition: box-shadow 350ms ease, -webkit-transform 350ms ease;
  transition: box-shadow 350ms ease, transform 350ms ease;
  transition: box-shadow 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  color: #fff;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
}

.button-primary:hover {
  box-shadow: 0 4px 14px 0 rgba(32, 36, 48, 0.19);
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  color: #fff;
}

.button-primary.full-width {
  display: block;
  padding-right: 30px;
  padding-left: 30px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.button-secondary {
  padding: 22px 40px;
  border-style: solid;
  border-width: 2px;
  border-color: #1d2b5f;
  border-radius: 80px;
  background-color: #fff;
  -webkit-transition: box-shadow 350ms ease, color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
  transition: box-shadow 350ms ease, color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
  transition: box-shadow 350ms ease, transform 350ms ease, color 350ms ease, background-color 350ms ease;
  transition: box-shadow 350ms ease, transform 350ms ease, color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
  color: #1d2b5f;
  line-height: 1em;
  text-align: center;
}

.button-secondary:hover {
  background-color: #1d2b5f;
  box-shadow: 0 4px 14px 0 rgba(32, 36, 48, 0.19);
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  color: #fff;
}

.header {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #fff;
}

.header-logo {
  position: relative;
  z-index: 1;
  max-width: 350px;
}

.header-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  padding-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
}

.nav-item-wrapper {
  margin-right: 40px;
  margin-bottom: 0px;
}

.nav-link {
  display: block;
  -webkit-transition: color 350ms ease;
  transition: color 350ms ease;
  color: #1d2b5f;
  font-size: 16px;
  line-height: 1em;
  text-decoration: none;
}

.nav-link:hover {
  color: #5d6890;
}

.footer {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #fff;
}

.footer-logo-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 268px;
  margin-bottom: 33px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.footer-logo-container:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.footer-logo {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-wrapper {
  background-color: #fff;
}

.utility-pages-hero {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1d2b5f;
}

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

.section.home-hero {
  overflow: hidden;
  padding-top: 248px;
  padding-bottom: 245px;
}

.section.companies {
  padding-top: 111px;
  padding-bottom: 109px;
  background-color: #f8f8fc;
}

.section.more-about {
  overflow: hidden;
  background-color: #f8f8fc;
}

.section.testimonials {
  padding-bottom: 140px;
}

.section.contact {
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 143px;
  background-color: #f8f8fc;
}

.divider {
  width: 100%;
  height: 2px;
  background-color: #eef0f5;
}

.divider.testimonial {
  width: 1px;
  height: 330px;
  margin-right: 44px;
  margin-left: 44px;
  background-color: #cccfda;
}

.utility-page-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  padding: 60px 24px;
  -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: #f8f8fc;
}

.utility-page-wrap._404 {
  background-color: #fff;
}

.utility-page-content-password {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 580px;
  padding: 72px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(19, 30, 67, 0.09);
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.input {
  height: 70px;
  margin-bottom: 0px;
  padding-right: 29px;
  padding-left: 29px;
  border-style: solid;
  border-width: 2px;
  border-color: #a5aabe;
  border-radius: 100px;
  -webkit-transition: color 350ms ease, border-color 350ms ease;
  transition: color 350ms ease, border-color 350ms ease;
  color: #1d2b5f;
  font-size: 18px;
  line-height: 1em;
}

.input:hover {
  border-color: #1d2b5f;
}

.input:focus {
  border-color: #1d2b5f;
  color: #1d2b5f;
  font-size: 18px;
  line-height: 1em;
}

.input::-webkit-input-placeholder {
  color: #4e5673;
  font-size: 18px;
}

.input:-ms-input-placeholder {
  color: #4e5673;
  font-size: 18px;
}

.input::-ms-input-placeholder {
  color: #4e5673;
  font-size: 18px;
}

.input::placeholder {
  color: #4e5673;
  font-size: 18px;
}

.input.password {
  margin-bottom: 20px;
}

.utility-page-content-404 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  padding: 62px 100px 58px;
  -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;
  border-radius: 24px;
  background-color: #1d2b5f;
  box-shadow: 0 2px 10px 0 rgba(19, 30, 67, 0.09);
  text-align: center;
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0px;
  -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-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.brand:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.brand.w--current {
  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;
}

.container-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1270px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  -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;
}

.home-hero-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 380px;
  -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;
}

.split-content.home-hero-left {
  max-width: 57%;
}

.split-content.more-about-left {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 624px;
  margin-right: 40px;
}

.split-content.more-about-right {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 555px;
  background-color: #f8f8fc;
  background-clip: border-box;
}

.split-content.contact-right {
  width: 100%;
  max-width: 337px;
}

.split-content.header-left {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

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

.paragraph.home-hero {
  max-width: 557px;
  margin-bottom: 38px;
}

.paragraph.more-about-left {
  max-width: 555px;
}

.paragraph.more-about-right {
  max-width: 555px;
}

.paragraph.testimonial {
  margin-bottom: 47px;
}

.space._2-buttons {
  width: 23px;
}

.image.more-about-left {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.image.more-about-right {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.companies-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.title.companies {
  max-width: 312px;
  margin-bottom: 0px;
  font-size: 26px;
  line-height: 1.346em;
}

.title.home-hero {
  margin-bottom: 27px;
}

.title.more-about-left {
  margin-bottom: 32px;
}

.title.more-about-right {
  margin-bottom: 32px;
}

.title.testimonials {
  max-width: 562px;
  margin-bottom: 0px;
}

.title.contact {
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.179em;
  letter-spacing: -0.03em;
}

.title.information {
  margin-bottom: 24px;
  color: #1d2b5f;
  line-height: 1.45em;
  font-weight: 700;
}

.title.not-found {
  color: #fff;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper.more-about-left {
  max-width: 553px;
  border-radius: 24px;
  box-shadow: 0 7px 16px 0 rgba(29, 43, 95, 0.08);
}

.image-wrapper.more-about-right {
  margin-bottom: 115px;
  border-radius: 24px;
  box-shadow: 0 7px 16px 0 rgba(29, 43, 95, 0.08);
}

.image-wrapper.order-item {
  max-width: 35%;
  margin-right: 16px;
  border-radius: 13px;
}

.image-wrapper.cart-order-item {
  max-width: 140px;
  margin-right: 16px;
  border-radius: 13px;
}

.link-wrapper {
  font-size: 18px;
  line-height: 1.111em;
  text-align: center;
  text-decoration: none;
}

.link-wrapper:hover {
  color: #1d2b5f;
}

.container-medium-682px {
  max-width: 682px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.container-medium-682px.contact {
  text-align: center;
}

.top-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.top-content.testimonials {
  margin-bottom: 25px;
}

.achievement-wrapper {
  text-align: center;
}

.achievement {
  margin-bottom: 21px;
  color: #1d2b5f;
  font-size: 48px;
  line-height: 0.729em;
  font-weight: 700;
}

.achievement-text {
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card {
  overflow: hidden;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 7px 24px 0 rgba(29, 43, 95, 0.06);
}

.card.course-featured {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  color: #5d6890;
  font-weight: 500;
  text-decoration: none;
}

.card.course-featured:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.card.course {
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  color: #5d6890;
  font-weight: 500;
  text-decoration: none;
}

.card.course:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.card.community {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  padding: 48px 46px 48px 32px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  color: #5d6890;
  font-weight: 500;
  text-decoration: none;
}

.card.community:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.card.contact {
  width: 100%;
  max-width: 784px;
  margin-right: 40px;
  padding: 54px 55px 75px;
}

.card.contact-community {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 48px 32px 52px;
  -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;
  box-shadow: 0 2px 10px 0 rgba(19, 30, 67, 0.09);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  color: #5d6890;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.card.contact-community:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.bg {
  position: absolute;
}

.bg.home-hero-1 {
  left: -436px;
  top: -283px;
  z-index: -1;
  max-width: 861px;
}

.bg.home-hero-2 {
  top: -430px;
  right: -446px;
  z-index: -1;
  max-width: 940px;
}

.bg.information-icon {
  z-index: -1;
  max-width: 74px;
}

.footer-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-link {
  display: inline-block;
  color: #2e3962;
  line-height: 1.7em;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.footer-link:hover {
  color: #1d2b5f;
  text-decoration: none;
}

.footer-link.w--current {
  font-weight: 700;
}

.footer-link.social-media {
  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;
}

.links-block {
  margin-right: 3vw;
}

.links-block.main {
  max-width: 474px;
}

.links-block.last {
  margin-right: 0px;
}

.small-print {
  max-width: 454px;
  margin-bottom: 73px;
  color: #2e3962;
}

.social-media-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 28px;
  height: 28px;
  margin-right: 11px;
  -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: 1000px;
  background-color: #1d2b5f;
  font-family: 'Icons Entrepreneur Template', sans-serif;
  color: #fff;
  font-size: 13px;
  line-height: 1em;
}

.links-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 75%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.achievements-grid {
  position: relative;
  z-index: 1;
  max-width: 1073px;
  margin: 66px auto;
  grid-column-gap: 2vw;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.more-about-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.more-about-left-content {
  margin-bottom: 122px;
}

.testimonials-wrapper {
  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;
}

.testimonials-wrapper.reparaturen {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.testimonial-wrapper {
  max-width: 347px;
}

.faq-wrapper {
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 22px;
  border-bottom: 2px solid #eef0f5;
  cursor: pointer;
}

.blog-post-featured-wrapper {
  position: relative;
}

.contact-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 49px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-grid {
  grid-column-gap: 32px;
  grid-row-gap: 25px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.text-area {
  max-width: 100%;
  min-height: 195px;
  min-width: 100%;
  margin-bottom: 0px;
  padding: 26px 20px;
  border-style: solid;
  border-width: 2px;
  border-color: #a5aabe;
  border-radius: 11px;
  -webkit-transition: color 350ms ease, border-color 350ms ease;
  transition: color 350ms ease, border-color 350ms ease;
  color: #1d2b5f;
  font-size: 18px;
  line-height: 1em;
}

.text-area:hover {
  border-color: #1d2b5f;
}

.text-area:focus {
  border-color: #1d2b5f;
  color: #1d2b5f;
  font-size: 18px;
  line-height: 1em;
}

.text-area::-webkit-input-placeholder {
  color: #4e5673;
  font-size: 18px;
  line-height: 1em;
}

.text-area:-ms-input-placeholder {
  color: #4e5673;
  font-size: 18px;
  line-height: 1em;
}

.text-area::-ms-input-placeholder {
  color: #4e5673;
  font-size: 18px;
  line-height: 1em;
}

.text-area::placeholder {
  color: #4e5673;
  font-size: 18px;
  line-height: 1em;
}

.contact-form-block {
  margin-bottom: 0px;
}

.contact-information-top-content {
  margin-bottom: 45px;
}

.general-inquiries-wrapper {
  margin-bottom: 52px;
}

.information-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
}

.information-wrapper.last {
  margin-bottom: 0px;
}

.information-icon-main-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin-right: 22px;
  -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;
}

.information-icon-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 48px;
  height: 48px;
  min-width: 48px;
  -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: 1000px;
  background-color: #fff;
}

.utility-pages-text-center {
  text-align: center;
}

.password-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 158px;
  height: 158px;
  margin-bottom: 32px;
  -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: 1000px;
  background-color: #f8f8fc;
}

.mega-menu-link {
  margin-bottom: 20px;
  color: #4e5673;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.mega-menu-link:hover {
  color: #1d2b5f;
}

.mega-menu-link.w--current {
  font-weight: 700;
}

.success-message {
  margin-top: 10px;
  margin-bottom: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #1d2b5f;
  border-radius: 20px;
  background-color: transparent;
  color: #1d2b5f;
  font-weight: 700;
}

.error-message {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  border-style: solid;
  border-width: 2px;
  border-color: #ff5050;
  border-radius: 20px;
  background-color: transparent;
  color: #ff5050;
  text-align: center;
}

.transition-solid {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: none;
  background-color: #1d2b5f;
}

._404-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 180px;
  line-height: 1.1em;
  font-weight: 700;
}

.logo {
  max-width: 80%;
  margin-bottom: 20px;
}

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

  p {
    color: #5d6890;
  }

  li {
    color: #5d6890;
  }

  .container-default {
    max-width: 1340px;
  }

  .button-primary {
    background-color: #126ab5;
  }

  .header-logo {
    max-width: 250px;
  }

  .nav-link {
    font-weight: 500;
  }

  .nav-link.w--current {
    font-weight: 700;
  }

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

  .footer-logo {
    max-width: 200px;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    color: #4e5673;
  }

  .section.short {
    padding-top: 89px;
    padding-bottom: 89px;
    color: #fff;
  }

  .divider.testimonial {
    height: 250px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .paragraph.testimonial {
    margin-bottom: 0px;
  }

  .paragraph.unterreparaturen {
    margin-top: 20px;
    font-weight: 700;
  }

  .title.home-hero {
    color: #126ab5;
  }

  .title.not-found {
    font-size: 30px;
  }

  .footer-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-link {
    font-size: 18px;
    line-height: 1em;
    font-weight: 400;
  }

  .links-block {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .links-block.main {
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .small-print {
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 400;
  }

  .links-block-wrapper {
    max-width: 800px;
  }

  .achievements-grid {
    margin-top: 66px;
  }

  .testimonial-wrapper._3 {
    width: 33.33%;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .rich-text-block {
    color: #126ab5;
  }

  .link {
    font-weight: 500;
  }

  .rechtstexte {
    padding-right: 5%;
    padding-left: 5%;
  }

  .columns {
    width: 100%;
  }

  .columns-2 {
    margin-top: 20px;
  }

  .logo {
    max-width: 70%;
  }
}

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

  h2 {
    font-size: 38px;
  }

  blockquote {
    padding: 65px 90px;
  }

  .header-navigation {
    margin-right: 24px;
    margin-left: 24px;
    -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;
  }

  .nav-item-wrapper {
    margin-right: 0px;
    margin-left: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link {
    color: rgba(29, 43, 95, 0.52);
    font-size: 33px;
  }

  .nav-link:hover {
    color: #1d2b5f;
  }

  .nav-link.w--current {
    color: #1d2b5f;
  }

  .menu-button {
    z-index: 999;
    display: block;
    width: 52px;
    height: 52px;
    min-width: 52px;
    margin-left: 15px;
    padding: 0px;
    border-radius: 1000px;
    background-color: #1d2b5f;
    -webkit-transition: background-color 350ms ease;
    transition: background-color 350ms ease;
    color: #fff;
    font-size: 30px;
  }

  .menu-button.w--open {
    background-color: #1d2b5f;
  }

  .nav-menu {
    width: 100%;
    padding-top: 113px;
    padding-bottom: 60px;
    border-style: solid;
    border-width: 1px;
    border-color: #f8f8fc;
    background-color: #fff;
  }

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

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

  .section.home-hero {
    padding-top: 60px;
    padding-bottom: 0px;
  }

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

  .section.testimonials {
    padding-bottom: 120px;
  }

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

  .divider.testimonial {
    width: 100%;
    height: 1px;
    margin: 40px 0px;
  }

  .home-hero-wrapper {
    max-height: 1200px;
    -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;
  }

  .split-content.home-hero-left {
    max-width: 588px;
    margin-bottom: 40px;
    text-align: center;
  }

  .split-content.header-right {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
  }

  .split-content.contact-right {
    max-width: 100%;
  }

  .split-content.header-left {
    position: relative;
    z-index: 999;
  }

  ._2-buttons.home-hero {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .paragraph.testimonial {
    margin-bottom: 20px;
  }

  .companies-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .title.companies {
    max-width: none;
    margin-bottom: 40px;
  }

  .title.testimonials {
    margin-bottom: 20px;
  }

  .title.contact {
    font-size: 50px;
  }

  .image-wrapper.more-about-right {
    margin-bottom: 60px;
  }

  .image-wrapper.order-item {
    max-width: 170px;
    margin-bottom: 15px;
  }

  .image-wrapper.cart-order-item {
    max-width: 170px;
    margin-bottom: 15px;
  }

  .top-content.testimonials {
    margin-bottom: 60px;
    -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;
  }

  .card.course-featured {
    margin-bottom: 26px;
  }

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

  .card.contact {
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 60px;
  }

  .bg.home-hero-1 {
    left: -272px;
    top: -122px;
    max-width: 91%;
  }

  .bg.home-hero-2 {
    top: auto;
    bottom: 40px;
    max-width: 100%;
  }

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

  .footer-link {
    display: inline-block;
    white-space: normal;
  }

  .links-block.main {
    max-width: 100%;
    margin-right: 0vw;
    margin-bottom: 40px;
  }

  .small-print {
    margin-bottom: 60px;
  }

  .links-block-wrapper {
    max-width: 100%;
  }

  .achievements-grid {
    margin-bottom: 60px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }

  .more-about-left-content {
    margin-bottom: 60px;
  }

  .testimonials-wrapper {
    -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;
  }

  .testimonial-wrapper {
    max-width: 754px;
  }

  .faq-wrapper {
    padding-left: 0px;
  }

  .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact-information-top-content {
    max-width: 472px;
  }

  .general-inquiries-wrapper {
    margin-bottom: 0px;
  }

  .all-information-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .mega-menu-link {
    font-size: 22px;
    line-height: 24px;
  }

  .mega-menu-link.w--current {
    font-weight: 700;
  }

  .menu-button-wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    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;
  }

  .menu-button-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 25px;
    height: 20px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .menu-line-top {
    max-height: 2px;
    min-height: 2px;
    padding: 0px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .menu-line-middle {
    max-height: 2px;
    min-height: 2px;
    padding: 0px;
  }

  .menu-line-bottom {
    max-height: 2px;
    min-height: 2px;
    padding: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    background-color: #fff;
  }

  ._404-title {
    font-size: 140px;
  }

  .rechtstexte {
    padding-right: 5%;
    padding-left: 5%;
  }

  .logo {
    max-width: 80%;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 20px;
    font-size: 42px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  blockquote {
    padding: 55px 60px;
    font-size: 21px;
  }

  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-item-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    font-size: 31px;
  }

  .menu-button {
    width: 47px;
    height: 47px;
    min-width: 47px;
    margin-left: 0px;
    background-color: #126ab5;
    -webkit-transition: background-color 350ms ease;
    transition: background-color 350ms ease;
  }

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

  .footer-logo-container {
    max-width: 223px;
    margin-bottom: 20px;
  }

  .utility-pages-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .section.home-hero {
    padding-top: 40px;
  }

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

  .section.testimonials {
    padding-bottom: 100px;
  }

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

  .utility-page-content-password {
    padding-right: 32px;
    padding-left: 32px;
  }

  .utility-page-content-404 {
    padding-right: 24px;
    padding-left: 24px;
  }

  .home-hero-wrapper {
    max-height: 1100px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .split-content.home-hero-left {
    text-align: left;
  }

  .split-content.more-about-left {
    margin-right: 0px;
    margin-bottom: 60px;
  }

  .split-content.more-about-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  ._2-buttons.home-hero {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .paragraph.home-hero {
    margin-bottom: 30px;
  }

  .paragraph.testimonial {
    margin-bottom: 10px;
  }

  .title.companies {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .title.home-hero {
    margin-bottom: 20px;
  }

  .title.more-about-left {
    margin-bottom: 20px;
  }

  .title.more-about-right {
    margin-bottom: 20px;
  }

  .title.contact {
    margin-bottom: 15px;
    font-size: 42px;
  }

  .title.information {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .image-wrapper.more-about-right {
    margin-bottom: 0px;
  }

  .link-wrapper {
    font-size: 16px;
  }

  .container-medium-682px.contact {
    margin-left: 0px;
    text-align: left;
  }

  .top-content.testimonials {
    margin-bottom: 40px;
  }

  .achievement-wrapper {
    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;
    text-align: left;
  }

  .achievement {
    margin-right: 20px;
    margin-bottom: 0px;
    font-size: 40px;
  }

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

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

  .card.community {
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .card.contact {
    margin-bottom: 40px;
    padding: 44px 40px 65px;
  }

  .bg.home-hero-2 {
    right: -340px;
    bottom: -20px;
  }

  .links-block {
    margin-top: 30px;
  }

  .links-block.main {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .small-print {
    margin-bottom: 40px;
  }

  .links-block-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .achievements-grid {
    margin-bottom: 50px;
    padding-left: 5%;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .more-about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .more-about-left-content {
    margin-bottom: 40px;
  }

  .more-about-right-content {
    margin-bottom: 40px;
  }

  .faq-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-wrapper {
    margin-top: 40px;
  }

  .contact-grid {
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-information-top-content {
    margin-bottom: 40px;
  }

  .general-inquiries-wrapper {
    margin-bottom: 20px;
  }

  .information-icon-main-wrapper {
    margin-right: 20px;
  }

  .all-information-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .utility-pages-text-center {
    text-align: left;
  }

  .password-icon-wrapper {
    width: 120px;
    height: 120px;
  }

  .menu-line-top {
    background-color: #fff;
  }

  .menu-line-middle {
    background-color: #fff;
  }

  .icon-password {
    width: 50px;
  }

  .logo {
    max-width: 80%;
    margin-top: 20px;
  }
}

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

  h1 {
    margin-bottom: 15px;
    font-size: 35px;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  blockquote {
    padding: 45px 20px;
    font-size: 19px;
  }

  .container-default {
    padding-right: 16px;
    padding-left: 16px;
  }

  .container-medium {
    padding-right: 16px;
    padding-left: 16px;
  }

  .button-primary {
    display: block;
  }

  .button-secondary {
    display: block;
  }

  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link {
    font-size: 28px;
  }

  .menu-button {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 26px;
  }

  .footer-logo-container {
    max-width: 186px;
  }

  .utility-pages-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .section.home-hero {
    padding-top: 30px;
  }

  .section.companies {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.testimonials {
    padding-bottom: 80px;
  }

  .section.contact {
    padding-bottom: 80px;
  }

  .divider.testimonial {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .utility-page-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .utility-page-content-password {
    padding: 56px 20px;
  }

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

  .utility-page-content-404 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .container-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-hero-wrapper {
    max-height: none;
  }

  .split-content.more-about-left {
    margin-bottom: 50px;
  }

  .split-content.header-left {
    margin-right: 20px;
  }

  ._2-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .space._2-buttons {
    height: 20px;
  }

  .title.companies {
    margin-bottom: 20px;
  }

  .title.more-about-left {
    margin-bottom: 15px;
  }

  .title.more-about-right {
    margin-bottom: 15px;
  }

  .image-wrapper.more-about-left {
    border-radius: 20px;
  }

  .image-wrapper.more-about-right {
    border-radius: 20px;
  }

  .container-medium-682px {
    padding-right: 16px;
    padding-left: 16px;
  }

  .top-content.testimonials {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .achievement-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .achievement {
    margin-right: 0px;
    margin-bottom: 10px;
    font-size: 30px;
  }

  .achievement-text {
    font-size: 16px;
  }

  .card.course-featured {
    border-radius: 20px;
  }

  .card.course {
    border-radius: 20px;
  }

  .card.community {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .card.contact {
    padding: 40px 20px 55px;
    border-radius: 20px;
  }

  .card.contact-community {
    padding: 40px 20px 42px;
  }

  .small-print {
    margin-bottom: 30px;
  }

  .achievements-grid {
    margin-bottom: 40px;
    padding-right: 10%;
    padding-left: 10%;
    grid-row-gap: 30px;
  }

  .more-about-left-content {
    margin-bottom: 30px;
  }

  .more-about-right-content {
    margin-bottom: 30px;
  }

  .faq-wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact-wrapper {
    margin-top: 30px;
  }

  .contact-information-top-content {
    margin-bottom: 30px;
  }

  .information-wrapper {
    margin-bottom: 15px;
  }

  .information-icon-main-wrapper {
    margin-right: 10px;
  }

  .all-information-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .mega-menu-link {
    font-size: 20px;
    line-height: 22px;
  }

  ._404-title {
    font-size: 100px;
  }

  .logo {
    margin-top: 20px;
  }
}

#w-node-_64c91dd0-fbee-101c-0b35-36554fe87d4b-61f336d0 {
  -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-_64c91dd0-fbee-101c-0b35-36554fe87d4f-61f336d0 {
  -ms-grid-column-align: start;
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_64c91dd0-fbee-101c-0b35-36554fe87d4b-61f336d0 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@font-face {
  font-family: 'Icons Entrepreneur Template';
  src: url('../fonts/icons-entrepreneur-template.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype'), url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}