@font-face {
  font-family: "Fa brands 400";
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Titillium;
  src: url("../fonts/TitilliumWeb-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Titillium;
  src: url("../fonts/TitilliumWeb-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Titillium;
  src: url("../fonts/TitilliumWeb-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --gainsboro: #e4e4e4;
  --gold: #dc7158;
  --deep-sky-blue: #1fa9d3;
  --lime-green: #a1cf38;
  --indian-red: #e41b13;
  --white-smoke: #f2f1f2;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: var(--black);
  font-family: Titillium, Arial, sans-serif;
  font-size: 17px;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: 700;
  line-height: 51px;
}

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

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

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

.body {
  background-color: var(--white);
  color: var(--black);
}

.section {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 82px;
  padding-bottom: 64px;
  display: flex;
}

.container.nav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.container.footer {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.container.cc-center {
  text-align: center;
}

.dropdown-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 1000px;
  padding-top: 32px;
  display: flex;
}

.dropdown-wrapper.cc-legal {
  align-items: stretch !important;
  min-height: 0 !important;
}

.dropdown-toggle {
  border: 2px solid var(--gainsboro);
  box-shadow: 1px 1px 3px 0 var(--gainsboro);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
}

.dropdown-toggle:hover {
  border-color: var(--gold);
  background-color: var(--gold);
  box-shadow: 1px 1px 3px #ffce4496;
}

.dropdown-toggle.w--open {
  border-color: var(--gold);
  background-color: var(--gold);
}

.dropdown-toggle.blue:hover {
  border-color: var(--deep-sky-blue);
  background-color: var(--deep-sky-blue);
  box-shadow: 1px 1px 3px #00b4d596;
}

.dropdown-toggle.blue.w--open {
  border-color: var(--deep-sky-blue);
  background-color: var(--deep-sky-blue);
}

.dropdown-toggle.green:hover {
  border-color: var(--lime-green);
  background-color: var(--lime-green);
  box-shadow: 1px 1px 3px #74b95996;
}

.dropdown-toggle.green.w--open {
  border-color: var(--lime-green);
  background-color: var(--lime-green);
}

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

.plus-minus {
  background-color: var(--white);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

.icon {
  display: none;
}

.line-h {
  background-color: var(--black);
  width: 55%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.line-v {
  z-index: 1;
  background-color: var(--black);
  width: 55%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.heading-3.center {
  text-align: center;
  margin-bottom: 16px;
}

.seperation {
  background-color: var(--black);
  width: 20px;
  height: 1px;
  transform: rotate(90deg);
}

.heading-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.wrapper-dropdown-info {
  align-items: center;
  display: flex;
}

.row-dropdown-list {
  justify-content: center;
  align-items: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.column-left {
  width: 30%;
}

.column-right {
  flex-flow: wrap;
  align-items: center;
  width: 70%;
  display: flex;
}

.dropdown-list {
  border-right: 2px solid var(--gainsboro);
  border-bottom: 2px solid var(--gainsboro);
  border-left: 2px solid var(--gainsboro);
  background-color: var(--white);
  height: auto;
  position: relative;
  overflow: hidden;
}

.image {
  width: 24px;
  margin-right: 10px;
}

.parent-icon-txt {
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.tag {
  background-color: var(--gold);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 8px;
  padding: 8px 10px;
  display: flex;
}

.tag.green {
  background-color: var(--lime-green);
}

.tag.blue {
  background-color: var(--deep-sky-blue);
}

.tag-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.heading-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.wrapper-content-list {
  padding: 16px 32px;
}

.wrapper-questions {
  padding: 64px 16px;
  position: relative;
}

.steps {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 5px;
  display: grid;
  position: absolute;
  inset: 0% 0% auto;
}

.status {
  background-color: #0000;
  border-radius: 50px;
  width: 100%;
  height: 100%;
}

.status.yellow {
  background-color: var(--gold);
}

.status.red {
  background-color: var(--indian-red);
}

.status.green {
  background-color: var(--lime-green);
}

.status.blue {
  background-color: var(--deep-sky-blue);
}

.button {
  border: 2px solid var(--indian-red);
  background-color: var(--indian-red);
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
}

.button:hover {
  border-color: var(--indian-red);
  color: var(--white);
}

.button.top {
  border-color: var(--black);
  color: var(--black);
  background-color: #0000;
  margin-top: 26px;
}

.logo-job {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-2 {
  width: 180px;
}

.row-job {
  background-color: var(--deep-sky-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  display: flex;
}

.heading-2 {
  margin-top: 10px;
}

.column-video {
  width: 66.66%;
}

.column-video.cc-width-100 {
  width: 100%;
}

.footer {
  background-color: var(--white-smoke);
  width: 100%;
  height: 60px;
}

.heading-1 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 24px;
}

.heading-1.black {
  color: var(--black);
}

.row-video {
  width: 100%;
  display: flex;
}

.column-info {
  width: 33.33%;
  padding-right: 32px;
}

.column-info.cc-width-100 {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.column-info.cc-width-100.cc-center {
  justify-content: flex-start;
  align-items: center;
}

.subheadline {
  width: 100%;
  padding-top: 8px;
}

.wrapper-paragraph {
  margin-bottom: 54px;
}

.link-legal {
  color: var(--black);
  margin-left: 16px;
  margin-right: 16px;
  text-decoration: none;
}

.row-test-button {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.container-nav-test {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 960px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-text {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.wrapper-question {
  margin-bottom: 18px;
}

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

.msf-hidden {
  display: none;
}

.radio-button {
  border-width: 2px;
  border-color: var(--gainsboro);
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 5px;
  border-color: var(--deep-sky-blue);
}

.radio-button.w--redirected-focus {
  border-color: var(--deep-sky-blue);
  box-shadow: 0 0 3px 1px #00b4d580;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.radio-button-label,
.paragraph-2 {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.alert-message {
  background-color: #ffdede;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 32px;
  padding: 10px;
}

.logo-test {
  width: 100%;
}

.image-3 {
  width: 180.42px;
}

.row-job-test {
  background-color: var(--indian-red);
  flex-direction: row;
  height: 60px;
  display: flex;
}

.row-nav,
.row-logo {
  width: 100%;
  height: 90px;
}

.container-job-test {
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-test {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
}

.form-block-2 {
  border: 2px solid var(--gainsboro);
  width: 75%;
  padding: 32px;
  position: relative;
}

.wrapper-heading {
  margin-bottom: 32px;
}

.button-2 {
  z-index: 20;
  background-color: var(--deep-sky-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  inset: auto 32px 32px auto;
}

.back {
  opacity: 0;
  color: var(--black);
}

.link-2 {
  color: var(--black);
  font-weight: 400;
}

.wrapper-result {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 64px 16px;
  display: flex;
  position: relative;
}

.result {
  background-color: #fff;
  width: 50%;
  padding: 20px;
  display: block;
}

.result._1 {
  padding: 30px;
  box-shadow: 1px 1px 3px #eee;
}

.checkbox {
  flex: none;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.checkbox.w--redirected-checked {
  border-color: var(--lime-green);
  background-color: var(--lime-green);
}

.checkbox.w--redirected-focus {
  box-shadow: 0 0 3px 1px var(--lime-green);
}

.link-3 {
  color: var(--black);
  text-decoration: underline;
}

.checkbox-field {
  display: flex;
}

.checkbox-field.cc-first {
  margin-bottom: 16px;
}

.text-field,
.text-field-2,
.text-field-3 {
  height: 40px;
}

.form-block-3 {
  width: 75%;
}

.form {
  border: 2px solid var(--gainsboro);
  box-shadow: 1px 1px 3px 0 var(--gainsboro);
  padding: 32px;
  position: relative;
}

.result-fail {
  border: 2px solid var(--gainsboro);
  box-shadow: 1px 1px 3px 0 var(--gainsboro);
  width: 75%;
  padding: 32px;
}

.html-embed {
  margin-left: 16px;
  margin-right: 16px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 40px;
  line-height: 50px;
}

.wrapper-embed {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 17px;
  padding-bottom: 16px;
  display: flex;
}

.share-button.facebookshare {
  color: #0006;
}

.share-button.facebookshare:hover {
  color: #4267b2;
}

.share-button.linkedinshare {
  color: #0006;
}

.share-button.linkedinshare:hover {
  color: #0077b5;
}

.share-button.twitter {
  color: #0006;
}

.share-button.twitter:hover {
  color: #1da1f2;
  background-color: #1da1f2;
}

.share-button.instagram {
  color: #0006;
}

.share-button.instagram:hover {
  color: #8a3ab9;
}

.video {
  box-shadow: 1px 1px 3px 0 var(--gainsboro);
}

.center {
  text-align: center;
}

.legal {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  display: flex;
}

.link-legal-small {
  color: #b4b4b4cc;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
}

.link-legal-small:hover {
  color: var(--black);
}

.success-message {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  box-shadow: 1px 1px 3px 0 var(--gainsboro);
  padding: 64px;
}

.section-home {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.html-embed-2 {
  width: 100%;
  height: 100%;
}

.checkbox-2 {
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.row-headline {
  width: 100%;
  margin-bottom: 18px;
}

.text-block-3 {
  font-family: "Fa brands 400", sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.link-block {
  width: 36px;
  height: 36px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
}

.image-4 {
  z-index: 1;
  position: absolute;
}

.image-5 {
  z-index: -1;
  position: absolute;
}

.link-mail {
  background-image: url("../images/mail-1.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 47px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
}

.link-mail:hover {
  background-image: url("../images/mail-2.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

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

.img-cover {
  width: 100%;
  height: 100%;
}

.logo-image {
  width: 40rem;
}

.thank-you {
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.rt-legal a {
  color: var(--deep-sky-blue);
  text-decoration: underline;
  width: 100%;
}

.rt-legal a:hover {
  text-decoration: none;
}

.link-4 {
  color: var(--lime-green);
}

@media screen and (max-width: 991px) {
  .container {
    padding-top: 64px;
  }

  .button.top {
    margin-top: 12px;
  }

  .column-video {
    height: 260px;
  }

  .row-video {
    flex-direction: column;
  }

  .column-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 32px;
    display: flex;
  }

  .form-block-2 {
    width: 100%;
  }

  .result {
    width: 75%;
  }

  .form-block-3,
  .result-fail,
  .wrapper-embed {
    width: 100%;
  }

  .logo-image {
    width: 32rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .body {
    font-size: 16px;
    line-height: 26px;
  }

  .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .line-h,
  .line-v {
    width: 50%;
  }

  .heading-3 {
    font-size: 18px;
    line-height: 24px;
  }

  .seperation {
    width: 17px;
  }

  .heading-4 {
    font-size: 14px;
    line-height: 20px;
  }

  .wrapper-questions {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .image-2 {
    width: 120px;
  }

  .heading-2 {
    font-size: 35px;
    line-height: 41px;
  }

  .column-video {
    height: 200px;
  }

  .heading-1 {
    font-size: 16px;
    line-height: 20px;
  }

  .wrapper-paragraph {
    margin-bottom: 32px;
  }

  .row-test-button {
    padding-top: 32px;
  }

  .image-3 {
    width: 120px;
  }

  .container-test {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .link-2 {
    font-size: 14px;
    line-height: 20px;
  }

  .checkbox {
    flex: none;
  }

  .checkbox-field {
    align-items: stretch;
    margin-bottom: 42px;
  }

  .checkbox-field.cc-first {
    margin-bottom: 16px;
  }

  .form {
    padding: 16px;
  }

  .html-embed {
    font-size: 40px;
    line-height: 44px;
  }

  .wrapper-embed {
    width: 100%;
  }

  .row-headline {
    margin-bottom: 9px;
  }

  .logo-image {
    width: 22rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    width: 92%;
  }

  .dropdown-toggle {
    padding: 16px;
  }

  .seperation {
    display: none;
  }

  .wrapper-dropdown-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .row-dropdown-list {
    flex-direction: column;
  }

  .column-left {
    width: 100%;
    margin-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .column-right {
    width: 100%;
  }

  .wrapper-content-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper-questions {
    padding-top: 32px;
    padding-left: 8px;
    padding-right: 8px;
  }

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

  .row-job {
    height: auto;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 38px;
  }

  .column-video {
    width: 100%;
  }

  .radio-button {
    flex: none;
  }

  .container-test {
    width: 92%;
  }

  .form-block-2 {
    padding: 16px;
  }

  .link-2 {
    width: 50%;
  }

  .result {
    width: 100%;
  }

  .checkbox {
    width: 16px;
    height: 16px;
    margin-bottom: 4px;
    margin-left: 0;
  }

  .checkbox-field {
    flex-wrap: nowrap;
    margin-bottom: 64px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .checkbox-field.cc-first {
    margin-bottom: 24px;
  }

  .result-fail {
    padding: 16px;
  }

  .html-embed {
    margin-left: 15px;
    margin-right: 15px;
  }

  .wrapper-embed {
    width: 100%;
  }

  .checkbox-label {
    white-space: normal;
  }

  .logo-image {
    width: 75%;
  }
}

@font-face {
  font-family: "Fa brands 400";
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("../fonts/TitilliumWeb-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("../fonts/TitilliumWeb-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("../fonts/TitilliumWeb-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
