﻿/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
html {
  overflow-y: scroll;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
body {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.-dark {
  background-color: #001934;
}
body.-dark main {
  background-color: #001934;
  margin-bottom: 0;
}
body hr {
  border-color: #CED9E2;
  border-style: dotted;
  margin-bottom: 1em;
}
body sup {
  font-size: 50%;
  display: inline-block;
  transform-origin: top left;
  transform: translateY(-20%);
}
body.-active {
  overflow-y: hidden;
  height: 100%;
}
body.-active .HeroTabs, body.-active .Hero, body.-active .Hero-jobad {
  z-index: 1;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
p {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #061F36;
}
p strong, p b {
  font-weight: 500;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
h1 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 40px;
}

h2 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 25px;
}

h3 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

button {
  display: block;
  outline: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.-singleColumn {
  margin: 30px auto;
  justify-content: center;
}

form .input > input {
  margin-top: 19px;
  height: 62px;
  width: 100%;
  padding: 17px;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  border-radius: 0;
  appearance: none;
  outline: none;
}
form .input > input:focus {
  border: 1px solid #FFF;
}
form .input > input.input-validation-error {
  border: 1px solid #D43939;
}
form .input label {
  position: absolute;
  font-size: 16px;
  color: #F7F7F7;
  margin-bottom: 4px;
  pointer-events: none;
}
form .input input {
  position: relative;
}
form .input input[data-empty], form .input input:focus {
  border-left: none;
  border-right: none;
  border-top: none;
}
form .input input[data-empty] + label, form .input input:focus + label {
  position: absolute;
  bottom: 80px;
  left: 0;
  font-size: 13px;
}
form .input input[data-empty] + label.-on-dark, form .input input:focus + label.-on-dark {
  color: #FFF;
}
form .input input + label {
  font-size: 22px;
  bottom: 30px;
  left: 0;
  transition: all 0.2s ease-in-out;
}
form .input #alreadyMemberArea {
  padding-top: 20px;
}
form .input #alreadyMemberArea span {
  display: inline-block;
  max-width: 160px;
}
form .input .field-validation-error {
  margin: 5px 0 0 0;
  color: #FF4A26;
  font-size: 12px;
}
form input[type=radio], form input[type=checkbox] {
  display: none;
}
form input[type=radio] + label, form input[type=checkbox] + label {
  font-family: "ff-real-headline-pro", sans-serif;
  color: #000;
  font-size: 13px;
  width: 100%;
  cursor: pointer;
  display: block;
  margin: 10px 10px 10px 30px;
}
@media screen and (max-width: 540px) {
  form input[type=radio] + label, form input[type=checkbox] + label {
    margin-left: 15px;
  }
}
form input[type=radio] + label span, form input[type=checkbox] + label span {
  display: inline-block;
  position: relative;
  width: 19px;
  height: 19px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid rgba(255, 96, 82, 0.3);
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  form input[type=radio] + label span, form input[type=checkbox] + label span {
    width: 27px;
    height: 27px;
  }
}
form input[type=radio]:checked + label span:after, form input[type=checkbox]:checked + label span:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 1px;
  left: 1px;
  background-color: #FF6052;
}
@media screen and (max-width: 540px) {
  form input[type=radio]:checked + label span:after, form input[type=checkbox]:checked + label span:after {
    width: 23px;
    height: 23px;
  }
}
form input[type=radio] + label span {
  border-radius: 50%;
}
form input[type=radio]:checked + label span:after {
  border-radius: 50%;
}
form .form-accept-input p {
  margin-bottom: 0;
}
form section.fields .input input + label {
  font-size: 16px;
  color: #9B9B9B;
  bottom: 17px;
  left: 17px;
}
form section.fields .input input.input-validation-error + label {
  bottom: 35px;
}
form section.fields .input input.input-validation-error[data-empty=false] + label, form section.fields .input input.input-validation-error:focus + label {
  bottom: 76px;
}
form section.fields .input input[data-empty=false] + label, form section.fields .input input:focus + label {
  font-size: 13px;
  bottom: 60px;
  left: 0;
}
form section.fields .input.-has-already-member-area input[data-empty=false] + label, form section.fields .input.-has-already-member-area input:focus + label {
  font-size: 13px;
  bottom: 125px;
  left: 0;
}
form .multiselect-container input[type=radio], form .multiselect-container input[type=checkbox] {
  display: inline-block;
}
form .fields-header {
  margin-top: 15px;
  font-size: 0;
}
form .fields-header-item {
  width: 50%;
  padding-left: 20px;
  display: inline-block;
}
@media screen and (max-width: 540px) {
  form .fields-header-item {
    display: block;
    text-align: center;
    width: 100%;
  }
}
form .fields-header-item.align-right {
  text-align: right;
  vertical-align: top;
}
@media screen and (max-width: 540px) {
  form .fields-header-item.align-right {
    text-align: center;
  }
}
form .fields-header-item Button#btn-save-mula-top {
  float: none;
  margin: 0;
  height: 64px;
  margin-right: 16px;
}
@media screen and (max-width: 540px) {
  form .fields-header-item Button#btn-save-mula-top {
    margin-bottom: 20px;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
a {
  text-decoration: none;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 138px;
  padding: 24px 60px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Header {
    padding: 24px 30px;
  }
}
@media screen and (max-width: 540px) {
  .Header {
    padding: 24px 30px;
  }
}
.Header.-active {
  justify-content: flex-end;
}
.Header.-active .Header-menu {
  display: none;
}
.Header.-active .Header-logo, .Header.-active .Header-logo {
  flex: 1;
}
.Header-logo, .Header-menu, .Header-quick-menu {
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: center;
}
.Header-quick-menu {
  padding: 0 25px;
}
.Header-quick-menu .QuickMenu .Hamburger:hover:after {
  transform: none !important;
}
.Header-logo {
  flex: 0;
  margin-right: 40px;
}
.Header-menu {
  flex: 1;
}
@media screen and (max-width: 1400px) {
  .Header-menu {
    visibility: hidden;
  }
}
.Header-quick-menu {
  flex: 0;
}
@media (min-width: 2200px) {
  .Header-quick-menu {
    background-color: #FF6052;
    border-radius: 24px;
  }
}
.Header-login .Button {
  width: 100%;
  border: 1px solid #FFF;
}
.Header-login .Button.js-site-header-login-login-btn {
  text-align: left;
}
.Header-login .Button:hover {
  background-color: rgb(255, 119.436416185, 107.5);
}
.Header-login .site-header-login .form-field-wrapper {
  margin-bottom: 30px;
}
.Header-login .site-header-login .form-field-wrapper input {
  margin-top: 0;
}
.Header-login .site-header-login .form-field-wrapper input + label {
  font-size: 13px;
  color: #9B9B9B;
  left: 15px;
  bottom: 18px;
}
.Header-login .site-header-login .form-field-wrapper input[data-empty] + label {
  color: #FFF;
  bottom: 60px;
  left: 0;
}
.Header-login .site-header-login .form-field-wrapper input[data-empty].input-validation-error + label {
  color: #FFF;
  left: 0;
  bottom: 92px;
}
.Header-login .site-header-login .form-field-wrapper input:focus + label {
  color: #FFF;
  bottom: 60px;
  left: 0;
}
.Header-searchIcon {
  color: #FF6052;
}
.Header-searchContent .input input {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: 22px;
  padding: 10px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFF;
  color: #FFF;
}
.Header-searchContent .input input:focus {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #FFF;
}
.Header-searchContent .input input + label {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.Header-searchContent .input input::-ms-clear {
  display: none !important;
}
.Header-searchContentFilter input[type=radio] + label {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  margin-left: 0;
  margin-bottom: 20px;
}
.Header-searchContentFilter input[type=radio] + label span {
  background-color: #FF6052;
  border: 1px solid #FFF;
}
.Header-searchContentFilter input[type=radio]:checked + label span:after {
  background-color: #FFF;
}
.Header-contact h3 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #FFF;
}
.Header-contact a {
  font-size: 16px;
  font-weight: 200;
  color: #FFF;
  text-decoration: none;
  line-height: 1.6;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Footer {
  background-color: #076BB2;
}
.Footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 70px calc(50% - 670px);
}
@media screen and (max-width: 1400px) {
  .Footer-content {
    padding: 70px 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-content {
    padding: 30px;
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .Footer-content {
    padding: 30px;
    display: block;
  }
}
.Footer-content + .Footer-content {
  padding: 0 calc(50% - 670px) 70px calc(50% - 670px);
}
@media screen and (max-width: 1400px) {
  .Footer-content + .Footer-content {
    padding: 0 30px 30px 30px;
  }
}
.Footer-contentHeading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .Footer-contentHeading {
    font-size: 20px;
  }
}
.Footer-contentHeading.-tight-bottom {
  margin-bottom: 10px;
}
.Footer-contentSection {
  color: #FFF;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-contentSection {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .Footer-contentSection:last-child {
    margin-bottom: 0;
  }
  .Footer-contentSection:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSection {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .Footer-contentSection:last-child {
    margin-bottom: 0;
  }
  .Footer-contentSection:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }
}
.Footer-contentSection.-flex-60 {
  flex: 0 0 60%;
}
.Footer-contentSection.-flex-40 {
  flex: 0 0 40%;
}
.Footer-contentSection.-push {
  margin-right: 70px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-contentSection.-push {
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSection.-push {
    margin-right: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-contentSection.-reset-section-mobile {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .Footer-contentSection.-reset-section-mobile:after {
    content: none;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSection.-reset-section-mobile {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .Footer-contentSection.-reset-section-mobile:after {
    content: none;
  }
}
.Footer-contentSectionLabel {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  color: rgb(98.1071428571, 214.75, 227.8928571429);
  margin-bottom: 5px;
}
@media screen and (max-width: 540px) {
  .Footer-contentSectionLabel {
    font-size: 18px;
  }
}
.Footer-contentSectionLabelLink {
  color: #FFF;
  position: relative;
  margin-left: 10px;
}
.Footer-contentSectionLabelLink:hover {
  text-decoration: none;
}
.Footer-contentSectionLabelLink.-underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0.7px;
  background-color: #FFF;
}
.Footer-contentSectionLabelLinkArrow {
  color: #FFF;
  fill: currentColor;
  height: 28px;
  width: 28px;
  margin-left: 10px;
  position: relative;
  top: 8px;
}
.Footer-contentSectionIcon {
  display: inline-block;
  width: 55px;
  height: 55px;
  background-color: #008FCC;
  position: relative;
  margin-right: 5px;
}
.Footer-contentSectionIcon:hover {
  opacity: 0.7;
}
.Footer-contentSectionIcon:last-child {
  margin-right: -2px;
}
.Footer-contentSectionIcon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0) translateY(-50%);
  -moz-transform: translateX(-50%) rotate(0) translateY(-50%);
  -ms-transform: translateX(-50%) rotate(0) translateY(-50%);
  -o-transform: translateX(-50%) rotate(0) translateY(-50%);
  transform: translateX(-50%) rotate(0) translateY(-50%);
  width: 25px;
  height: 25px;
  color: #FFF;
  fill: currentColor;
}
.Footer-contentSectionText {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-contentSectionText {
    margin-bottom: 10px;
    display: block;
  }
  .Footer-contentSectionText:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSectionText {
    margin-bottom: 10px;
    display: block;
  }
  .Footer-contentSectionText:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSectionText {
    font-size: 14px;
  }
}
.Footer-contentSectionText.-with-divider {
  padding-right: 10px;
  margin-right: 6px;
  position: relative;
}
.Footer-contentSectionText.-with-divider:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #FFF;
  width: 1px;
  height: 100%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Footer-contentSectionText.-with-divider:after {
    content: none;
  }
}
@media screen and (max-width: 540px) {
  .Footer-contentSectionText.-with-divider:after {
    content: none;
  }
}

.LSS-footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.LSS-footer-cta {
  margin: 0 auto;
  width: 590px;
  padding-top: 150px;
}
@media screen and (max-width: 540px) {
  .LSS-footer-cta {
    width: 100%;
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 100px;
  }
}
.LSS-footer-ctaConsultant-image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px auto;
}
.LSS-footer-ctaConsultant-title {
  color: #FFF;
  font-weight: 500;
  margin-bottom: 30px;
}
.LSS-footer-cta h2 {
  color: #FFF;
  font-size: 32px;
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  margin-bottom: 30px;
}
.LSS-footer-cta p {
  color: #FFF;
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
}
.LSS-footer-background {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: none;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Logo {
  display: block;
  font-size: 0;
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .Logo.-wide {
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Logo.-wide {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .Logo.-wide {
    display: none;
  }
}
.Logo.-touch .Logo-icon {
  width: 83px;
  height: 69px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Logo.-touch .Logo-icon {
    width: 63px;
    height: 53px;
  }
}
@media screen and (max-width: 540px) {
  .Logo.-touch .Logo-icon {
    width: 63px;
    height: 53px;
  }
}
@media screen and (min-width: 1181px) {
  .Logo.-touch {
    display: none;
  }
}
.Logo-icon {
  opacity: 1;
  transform: scale(1);
  width: 125px;
  height: 52px;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Logo-icon.-desk {
    display: none;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Hero {
  position: relative;
  top: 0;
  margin: 0 auto;
  max-width: 2048px;
  height: 450px;
}
.Hero.-start {
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 540px) {
  .Hero.-start {
    height: 70vh;
  }
}
.Hero.-start:after {
  width: 600px;
  height: 900px;
  bottom: 0;
  top: auto;
  left: -240px;
  pointer-events: none;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero.-start:after {
    left: -310px;
  }
}
@media screen and (min-width: 361px) and (max-width: 540px) {
  .Hero.-start:after {
    background: linear-gradient(to bottom, white 40%, rgba(255, 255, 255, 0) 70%);
    left: -440px;
  }
}
@media screen and (max-width: 360px) {
  .Hero.-start:after {
    background: linear-gradient(to bottom, white 40%, rgba(255, 255, 255, 0) 70%);
    left: -400px;
  }
}
.Hero.-thin-height {
  overflow: hidden;
  height: 380px;
}
.Hero.-thin-height:after {
  left: -290px;
  bottom: 0;
  width: 500px;
  height: 390px;
  /*@include at-breakpoint(mobiles) {
      background-color: transparent;
      left: -393px;
  }*/
}
@media screen and (max-width: 1400px) {
  .Hero.-thin-height:after {
    left: -330px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero.-thin-height:after {
    left: -365px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero.-thin-height:after {
    left: -365px;
  }
}
@media screen and (max-width: 540px) {
  .Hero.-thin-height:after {
    left: -365px;
  }
}
.Hero.-huge-height {
  height: 534px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero.-huge-height:after {
    left: -165px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero.-huge-height:after {
    left: -165px;
  }
}
@media screen and (max-width: 540px) {
  .Hero.-huge-height:after {
    width: 310px;
    left: -155px;
  }
}
.Hero.-search {
  align-items: left;
}
.Hero.-dark:after {
  background: linear-gradient(to bottom, #001934 0%, #001934 100%);
}
.Hero.-dark .Hero-contentHeading {
  color: #FFF;
}
.Hero.-dark .Hero-contentSecondary {
  color: #FFF;
}
.Hero.-dark .Hero-contentSecondary p {
  color: #FFF;
}
@media screen and (max-width: 540px) {
  .Hero.-dark .Hero-item {
    background-position: 75% center;
  }
}
@media screen and (max-width: 540px) {
  .Hero.-dark .Hero-item:before {
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 25, 52) 90%);
  }
}
.Hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50% + 220px);
  background-color: #FFF;
  width: 50%;
  height: 100%;
  display: block;
  transform: skew(-30deg);
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero:after {
    width: 320px;
    left: -190px;
  }
}
@media screen and (max-width: 540px) {
  .Hero:after {
    width: 320px;
    left: -190px;
  }
}
.Hero img {
  width: 100%;
}
.Hero-item {
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 540px) {
  .Hero-item {
    background-position: 48% center;
  }
}
@media screen and (max-width: 540px) {
  .Hero-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    display: block;
  }
}
.Hero-item.-search {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #000203;
  background-image: url(/ui/assets/images/sailor-background-picture@2x.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-item.-search {
    padding: 140px 0 130px;
  }
}
@media screen and (max-width: 540px) {
  .Hero-item.-search {
    padding: 140px 0 130px;
  }
}
.Hero-item.-no-marker:after {
  content: none;
}
.Hero-item.lone-wolf {
  opacity: 1;
  visibility: visible;
}
.Hero-item.lone-wolf ~ span, .Hero-item.lone-wolf ~ button, .Hero-item.lone-wolf:after {
  display: none !important;
}
.Hero-item:not(:first-child) {
  opacity: 0;
  visibility: hidden;
}
.Hero-item:after {
  content: "";
  z-index: 4;
  position: absolute;
  bottom: 30px;
  height: 10px;
  width: 26px;
  display: block;
  background-color: #FFF;
  cursor: default;
  pointer-events: none;
}
.Hero-item:nth-of-type(1):after {
  right: 204px;
}
.Hero-item:nth-of-type(2):after {
  right: 173px;
}
.Hero-item:nth-of-type(3):after {
  right: 142px;
}
.Hero-item:nth-of-type(4):after {
  right: 111px;
}
.Hero-item:nth-of-type(5):after {
  right: 80px;
}
@media screen and (max-width: 540px) {
  .Hero-item:nth-of-type(1):after {
    right: 154px;
  }
  .Hero-item:nth-of-type(2):after {
    right: 123px;
  }
  .Hero-item:nth-of-type(3):after {
    right: 92px;
  }
  .Hero-item:nth-of-type(4):after {
    right: 61px;
  }
  .Hero-item:nth-of-type(5):after {
    right: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-item:nth-of-type(1):after {
    right: 154px;
  }
  .Hero-item:nth-of-type(2):after {
    right: 123px;
  }
  .Hero-item:nth-of-type(3):after {
    right: 92px;
  }
  .Hero-item:nth-of-type(4):after {
    right: 61px;
  }
  .Hero-item:nth-of-type(5):after {
    right: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-item:nth-of-type(1):after {
    right: 154px;
  }
  .Hero-item:nth-of-type(2):after {
    right: 123px;
  }
  .Hero-item:nth-of-type(3):after {
    right: 92px;
  }
  .Hero-item:nth-of-type(4):after {
    right: 61px;
  }
  .Hero-item:nth-of-type(5):after {
    right: 30px;
  }
}
.Hero-content {
  -webkit-transform: translateX(0) rotate(0) translateY(-50%);
  -moz-transform: translateX(0) rotate(0) translateY(-50%);
  -ms-transform: translateX(0) rotate(0) translateY(-50%);
  -o-transform: translateX(0) rotate(0) translateY(-50%);
  transform: translateX(0) rotate(0) translateY(-50%);
  color: #FFF;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 167px;
  text-align: left;
}
@media screen and (min-width: 850px) and (max-width: 1499px) {
  .Hero-content {
    top: 55%;
    left: 60px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-content {
    top: 60%;
    left: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-content {
    top: 60%;
    left: 30px;
  }
}
@media screen and (max-width: 540px) {
  .Hero-content {
    top: 60%;
    left: 30px;
  }
}
@media screen and (max-width: 540px) {
  .Hero-content {
    top: 67%;
  }
}
.Hero-content.-lower-right {
  top: 30%;
}
.Hero-content.-thin {
  -webkit-transform: translateX(0) rotate(0) translateY(-50%);
  -moz-transform: translateX(0) rotate(0) translateY(-50%);
  -ms-transform: translateX(0) rotate(0) translateY(-50%);
  -o-transform: translateX(0) rotate(0) translateY(-50%);
  transform: translateX(0) rotate(0) translateY(-50%);
  width: calc(55% - 70px);
  left: 150px;
  top: 60%;
  text-align: left;
}
@media screen and (min-width: 850px) and (max-width: 1499px) {
  .Hero-content.-thin {
    left: 60px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-content.-thin {
    left: 30px;
    width: 55%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-content.-thin {
    left: 30px;
    width: 55%;
  }
}
@media screen and (max-width: 540px) {
  .Hero-content.-thin {
    left: 0;
    width: 85%;
  }
}
.Hero-content.-thin .Hero-contentHeading {
  left: 0;
}
@media screen and (max-width: 540px) {
  .Hero-content.-thin .Hero-contentHeading {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.Hero-content.-thin .Hero-contentSecondary {
  opacity: 1;
}
@media screen and (max-width: 540px) {
  .Hero-content.-thin .Hero-contentSecondary {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.Hero-contentHeading {
  -webkit-transition: left 400ms ease-out;
  -moz-transition: left 400ms ease-out;
  -ms-transition: left 400ms ease-out;
  -o-transition: left 400ms ease-out;
  transition: left 400ms ease-out;
  color: #076BB2;
  text-align: left;
  position: relative;
  top: 0;
  left: -100vw;
}
.Hero-contentHeading span {
  -webkit-transition: left 400ms ease-out;
  -moz-transition: left 400ms ease-out;
  -ms-transition: left 400ms ease-out;
  -o-transition: left 400ms ease-out;
  transition: left 400ms ease-out;
  display: block;
  position: relative;
  left: -100vw;
  text-align: left;
}
.Hero-contentHeading span.in-view {
  left: 0;
}
.Hero-contentHeading.in-view {
  left: 0;
}
.Hero-contentSecondary {
  -webkit-transform: translateX(opacity) rotate(800ms) translateY(ease);
  -moz-transform: translateX(opacity) rotate(800ms) translateY(ease);
  -ms-transform: translateX(opacity) rotate(800ms) translateY(ease);
  -o-transform: translateX(opacity) rotate(800ms) translateY(ease);
  transform: translateX(opacity) rotate(800ms) translateY(ease);
  color: #076BB2;
  position: absolute;
  display: inline-block;
  white-space: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  left: 0;
  bottom: -20px;
  opacity: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-contentSecondary {
    white-space: normal;
  }
}
@media screen and (max-width: 540px) {
  .Hero-contentSecondary {
    white-space: normal;
  }
}
.Hero-contentSecondary.-static {
  -webkit-transform: translateX(0) rotate(0) translateY(0);
  -moz-transform: translateX(0) rotate(0) translateY(0);
  -ms-transform: translateX(0) rotate(0) translateY(0);
  -o-transform: translateX(0) rotate(0) translateY(0);
  transform: translateX(0) rotate(0) translateY(0);
  position: static;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-contentSecondary.-static {
    white-space: normal;
  }
}
@media screen and (max-width: 540px) {
  .Hero-contentSecondary.-static {
    white-space: normal;
  }
}
.Hero-contentSecondary.-static p {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #076BB2;
  margin-bottom: 0;
}
.Hero-contentSecondary.in-view {
  opacity: 1;
}
.Hero-marker {
  position: absolute;
  bottom: 30px;
  z-index: 4;
  height: 20px;
  width: 26px;
  display: block;
  cursor: default;
  border-bottom: 2px solid #FFF;
  cursor: pointer;
}
.Hero-marker:nth-of-type(1) {
  right: 204px;
}
.Hero-marker:nth-of-type(2) {
  right: 173px;
}
.Hero-marker:nth-of-type(3) {
  right: 142px;
}
.Hero-marker:nth-of-type(4) {
  right: 111px;
}
.Hero-marker:nth-of-type(5) {
  right: 80px;
}
@media screen and (max-width: 540px) {
  .Hero-marker:nth-of-type(1) {
    right: 154px;
  }
  .Hero-marker:nth-of-type(2) {
    right: 123px;
  }
  .Hero-marker:nth-of-type(3) {
    right: 92px;
  }
  .Hero-marker:nth-of-type(4) {
    right: 61px;
  }
  .Hero-marker:nth-of-type(5) {
    right: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-marker:nth-of-type(1) {
    right: 154px;
  }
  .Hero-marker:nth-of-type(2) {
    right: 123px;
  }
  .Hero-marker:nth-of-type(3) {
    right: 92px;
  }
  .Hero-marker:nth-of-type(4) {
    right: 61px;
  }
  .Hero-marker:nth-of-type(5) {
    right: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-marker:nth-of-type(1) {
    right: 154px;
  }
  .Hero-marker:nth-of-type(2) {
    right: 123px;
  }
  .Hero-marker:nth-of-type(3) {
    right: 92px;
  }
  .Hero-marker:nth-of-type(4) {
    right: 61px;
  }
  .Hero-marker:nth-of-type(5) {
    right: 30px;
  }
}
.Hero-button {
  z-index: 3;
  position: absolute;
  top: 20%;
  right: 0;
  width: 200px;
  height: 60%;
  background: url(/UI/assets/images/chevron.png) no-repeat right 80px center;
  background-size: auto 72px;
  cursor: pointer;
  -webkit-transition: right 200ms ease;
  -moz-transition: right 200ms ease;
  -ms-transition: right 200ms ease;
  -o-transition: right 200ms ease;
  transition: right 200ms ease;
}
.Hero-button:hover {
  right: -5px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-button {
    width: 80px;
    background-position: right 30px center;
  }
}
@media screen and (max-width: 540px) {
  .Hero-button {
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-button {
    display: none;
  }
}
.Hero-search {
  width: 83.3333333333%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}
@media screen and (min-width: 850px) and (max-width: 1499px) {
  .Hero-search {
    width: 100%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 1400px) {
  .Hero-search {
    width: 100%;
    z-index: 1;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-search {
    width: 100%;
    z-index: 1;
  }
}
@media screen and (max-width: 540px) {
  .Hero-search {
    width: 100%;
    z-index: 1;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-search {
    padding: 0 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-search {
    padding: 0 30px;
  }
}
@media screen and (max-width: 540px) {
  .Hero-search {
    padding: 0 30px;
  }
}
.Hero-searchInput {
  z-index: 9;
  width: 50%;
  background-color: #FF6052;
  color: #FFF;
  font-size: 15px;
  height: 65px;
  padding: 35px 20px;
  border: none;
  border-radius: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-searchInput {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Hero-searchInput {
    width: 100%;
  }
}
.Hero-searchInput::-webkit-input-placeholder {
  color: #FFF;
}
.Hero-searchSubmit {
  display: flex;
  width: 70px;
  align-items: center;
  justify-content: center;
  background-color: #FF6052;
  cursor: pointer;
  text-align: center;
  /*fix safari*/
  padding: 21px;
}
@media screen and (max-width: 540px) {
  .Hero-searchSubmit {
    z-index: 10;
  }
}
.Hero-searchSubmitIcon {
  color: #FFF;
  fill: currentColor;
  margin: 0;
  width: 22px;
  height: 22px;
}
.Hero-border {
  bottom: 0;
  right: 0px;
  width: 29%;
  height: 35px;
  position: absolute;
  display: block;
  background-color: #FFF;
  z-index: 10;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .Hero-border {
    width: 35%;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-border {
    width: 40%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Hero-border {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .Hero-border {
    display: none;
  }
}
.Hero-border:before {
  content: "";
  bottom: 0;
  left: -10px;
  width: 50%;
  height: 35px;
  position: absolute;
  display: block;
  background-color: #FFF;
  transform: skew(-30deg, 0deg);
  z-index: 10;
}
.Hero-jobad {
  width: 700px;
  margin: -40px auto 0 auto;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  align-content: center;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Hero-jobad {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 540px) {
  .Hero-jobad {
    width: 100%;
    margin: 0;
  }
}
.Hero-jobadCompany {
  flex: 1 1 100%;
  background-color: #E6E9EB;
  padding: 18px 0 18px;
  text-align: center;
}
.Hero-jobadCompany a:hover {
  text-decoration: underline;
}
.Hero-jobadBox {
  display: flex;
  flex-direction: row;
  flex: auto;
  text-align: center;
  padding: 40px;
  background-color: #f3f6f8;
}
@media screen and (max-width: 540px) {
  .Hero-jobadBox {
    flex-direction: column;
  }
}
.Hero-jobadInnerBox {
  flex: 1 1 50%;
  padding: 25px 0;
}
@media screen and (max-width: 540px) {
  .Hero-jobadInnerBox {
    flex: 1 1 100%;
  }
}
.Hero-jobadInnerBox span {
  color: #076BB2;
}
.Hero-jobadBack {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
}
.Hero-jobadLink {
  color: #FF6052;
}
.Hero + .fields {
  margin-top: 30px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.HeroTabs {
  width: 83.3333333333%;
  margin: -40px auto 0;
  max-width: 1400px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1400px) {
  .HeroTabs {
    width: 100%;
  }
}
.HeroTabs-items > li > header {
  background-color: #0A4270;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Text {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
}
.Text p {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
}
.Text.-blue, .MainContent.-error h1.Text {
  color: #076BB2;
}
.Text.-blue p, .MainContent.-error h1.Text p {
  color: #076BB2;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Heading, .MainContent.-error h1 {
  font-size: 36px;
  line-height: 42px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Heading, .MainContent.-error h1 {
    font-size: 22px;
    line-height: 27px;
  }
}
@media screen and (max-width: 540px) {
  .Heading, .MainContent.-error h1 {
    font-size: 22px;
    line-height: 27px;
  }
}
.Heading.-start-hero, .MainContent.-error h1.-start-hero {
  font-size: 62px;
  line-height: 72px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .Heading.-start-hero, .MainContent.-error h1.-start-hero {
    font-size: 46px;
    line-height: 54px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Heading.-start-hero, .MainContent.-error h1.-start-hero {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 540px) {
  .Heading.-start-hero, .MainContent.-error h1.-start-hero {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
.Heading.-default-hero, .MainContent.-error h1.-default-hero {
  font-size: 44px;
  line-height: 46px;
}
.Heading.-default-hero + .-tiny, .MainContent.-error h1.-default-hero + .-tiny {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .Heading.-default-hero, .MainContent.-error h1.-default-hero {
    font-size: 32px;
    line-height: 38px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Heading.-default-hero, .MainContent.-error h1.-default-hero {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (max-width: 540px) {
  .Heading.-default-hero, .MainContent.-error h1.-default-hero {
    font-size: 28px;
    line-height: 32px;
  }
}
.Heading.-tiny, .MainContent.-error h1.-tiny {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .Heading.-tiny, .MainContent.-error h1.-tiny {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Heading.-tiny, .MainContent.-error h1.-tiny {
    font-size: 14px;
    line-height: 18px;
  }
}
@media screen and (max-width: 540px) {
  .Heading.-tiny, .MainContent.-error h1.-tiny {
    font-size: 14px;
    line-height: 18px;
  }
}
.Heading.-half-mb, .MainContent.-error h1.-half-mb {
  margin-bottom: 20px;
}
.Heading.-blue, .MainContent.-error h1 {
  color: #076BB2;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.SEOBlock {
  background-color: #FFF;
  padding: 60px 60px 0;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .SEOBlock {
    padding: 60px 30px 0;
  }
}
.SEOBlock-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.SEOBlock-content.-collapsed {
  position: relative;
  overflow: hidden;
}
.SEOBlock-content.-collapsed:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-box-shadow: inset 0 -150px 50px -100px #FFF;
  -webkit-box-shadow: inset 0 -150px 50px -100px #FFF;
  box-shadow: inset 0 -150px 50px -100px #FFF;
}
@media screen and (max-width: 540px) {
  .SEOBlock-content.-collapsed:after {
    -moz-box-shadow: inset 0 -150px 100px -50px #FFF;
    -webkit-box-shadow: inset 0 -150px 100px -50px #FFF;
    box-shadow: inset 0 -150px 100px -50px #FFF;
  }
}
.SEOBlock-button {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 15px;
  color: #FF6052;
  display: inline-block;
  background-color: transparent;
  padding: 0 30px 10px;
  border-bottom: 1px solid #D43939;
  margin-bottom: 30px;
}
.SEOBlock-button:hover {
  color: #D43939;
  border-color: #D43939;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.HorizontalSlide {
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}
.HorizontalSlide-heading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #076BB2;
  margin: 0;
  padding: 30px 30px 30px calc(50% - 730px);
}
@media screen and (max-width: 1400px) {
  .HorizontalSlide-heading {
    padding: 30px 30px 30px 25px;
  }
}
@media screen and (max-width: 1400px) {
  .HorizontalSlide-heading {
    padding-left: 22px;
  }
}
.HorizontalSlide-content {
  padding: 0 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-right: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #FFF;
  scroll-behavior: smooth;
  font-size: 0;
}
.HorizontalSlide-content::-webkit-scrollbar {
  display: none;
}
.HorizontalSlide-positioner {
  width: calc(50% - 730px);
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .HorizontalSlide-positioner {
    width: 25px;
  }
}
@media screen and (max-width: 540px) {
  .HorizontalSlide-positioner {
    width: 22px;
  }
}
.HorizontalSlide-item {
  background-position: center center;
  background-size: cover;
  background-color: #FFF;
  display: inline-block;
  margin-left: 2px;
  padding-bottom: 18%;
  width: 28%;
  box-sizing: border-box;
  position: relative;
  color: #FFF;
  border-radius: 2px;
  min-width: 300px;
  min-height: 188px;
  z-index: 2;
}
.HorizontalSlide-item:after {
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  opacity: 0;
}
.HorizontalSlide-item:hover {
  background-position: center center 5px;
}
.HorizontalSlide-item:hover:after {
  opacity: 0.4;
}
.HorizontalSlide-item:not(:first-child) {
  margin-left: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .HorizontalSlide-item {
    padding-bottom: 40%;
    width: 60%;
  }
}
@media screen and (max-width: 540px) {
  .HorizontalSlide-item {
    padding-bottom: 40%;
    width: 60%;
  }
}
.HorizontalSlide-itemHeading {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  z-index: 2;
  position: absolute;
  text-align: left;
  left: 20px;
  top: 20px;
  display: block;
  white-space: normal;
  word-spacing: 100vw;
}
.HorizontalSlide .next, .HorizontalSlide .prev {
  -webkit-transform: translateX(0) rotate(0) translateY(-50%);
  -moz-transform: translateX(0) rotate(0) translateY(-50%);
  -ms-transform: translateX(0) rotate(0) translateY(-50%);
  -o-transform: translateX(0) rotate(0) translateY(-50%);
  transform: translateX(0) rotate(0) translateY(-50%);
  position: absolute;
  top: 50%;
  width: 96px;
  height: 96px;
  background: transparent url(/UI/assets/images/chevron.png) no-repeat center right 30px;
  background-size: auto 48px;
  z-index: 3;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .HorizontalSlide .next, .HorizontalSlide .prev {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .HorizontalSlide .next, .HorizontalSlide .prev {
    display: none;
  }
}
.HorizontalSlide .prev {
  -webkit-transform: translateX(0) rotate(-180deg) translateY(-50%);
  -moz-transform: translateX(0) rotate(-180deg) translateY(-50%);
  -ms-transform: translateX(0) rotate(-180deg) translateY(-50%);
  -o-transform: translateX(0) rotate(-180deg) translateY(-50%);
  transform: translateX(0) rotate(-180deg) translateY(-50%);
  top: 25%;
  left: 0px;
  display: none;
}
.HorizontalSlide .prev:hover {
  -webkit-transform: translateX(-3px) rotate(-180deg) translateY(-50%);
  -moz-transform: translateX(-3px) rotate(-180deg) translateY(-50%);
  -ms-transform: translateX(-3px) rotate(-180deg) translateY(-50%);
  -o-transform: translateX(-3px) rotate(-180deg) translateY(-50%);
  transform: translateX(-3px) rotate(-180deg) translateY(-50%);
}
.HorizontalSlide .next {
  right: 0px;
}
.HorizontalSlide .next:hover {
  -webkit-transform: translateX(3px) rotate(0) translateY(-50%);
  -moz-transform: translateX(3px) rotate(0) translateY(-50%);
  -ms-transform: translateX(3px) rotate(0) translateY(-50%);
  -o-transform: translateX(3px) rotate(0) translateY(-50%);
  transform: translateX(3px) rotate(0) translateY(-50%);
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
#paralax {
  z-index: 4;
  position: relative;
  background-color: #FFF;
  overflow: hidden;
  max-width: 2048px;
  margin: -1px auto 30px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Menu {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .Menu {
    display: none;
  }
}
.Menu.-white .Menu-itemLink {
  color: #FFF;
}
.Menu.-sub .Menu-itemLink {
  color: #076BB2;
}
.Menu.-sub .Menu-itemLink:hover {
  color: #FF6052;
}
.Menu > .Menu-item.-has-children:hover > .Menu {
  visibility: visible;
  transform: scaleY(1);
}
.Menu-item {
  padding: 10px 0;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.Menu-itemLink {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #076BB2;
  transition: all ease-in 0.1s;
  display: inline-block;
}
.Menu-itemLink:hover {
  color: #FF6052;
}
.Menu-item.-has-children > .Menu {
  flex-direction: column;
  gap: 16px;
  visibility: hidden;
  transform: scaleY(0);
  width: 410px;
  position: absolute;
  top: 34px;
  left: -16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1rem 1rem hsla(205, 100%, 36%, 0.08);
  border-radius: 2px;
  padding: 16px;
  transition: all ease-in 0.1s;
}
.Menu-item.-has-children > .Menu > .Menu-item {
  padding: 0;
}
.Menu-item.-has-children > .Menu > .Menu-item.-has-children > .Menu {
  visibility: visible;
  transform: scale(1);
  position: static;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 16px 16px 0 16px;
}
.Menu-item.-has-children > .Menu > .Menu-item.-has-children > .Menu > .Menu-item > .Menu-itemLink {
  color: #60859f;
  font-size: 14px;
}
.Menu-item.-has-children > .Menu > .Menu-item.-has-children > .Menu > .Menu-item > .Menu-itemLink:hover {
  color: #FF6052;
}
@media (hover: hover) {
  .Menu-item.-has-children > .Menu > .Menu-item.-has-children > .Menu > .Menu-item > .Menu-itemLink:hover {
    color: #FF6052;
  }
}
.Menu-toggler {
  background-color: #FF6052;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Button {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background-color: #FF6052;
  color: #FFF;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 12px 0;
  width: 220px;
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0;
}
.Button:hover {
  text-decoration: none;
  background-color: #FF4A26;
}
.Button.-fat {
  margin-top: 10px;
  padding: 23px;
}
.Button.-green {
  background-color: #009090;
}
.Button.-blue, .MainContent.-error h1.Button {
  background-color: #076BB2;
}
.Button.-blue:hover, .MainContent.-error h1.Button:hover {
  background-color: rgb(6.0351351351, 92.2513513514, 153.4648648649);
}
.Button.-with-image span {
  position: relative;
  padding-right: 30px;
}
.Button.-with-image span img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.Button.-jobad {
  margin-bottom: 5px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Button.-jobad {
    width: 100%;
    padding: 16px 0;
  }
}
@media screen and (max-width: 540px) {
  .Button.-jobad {
    width: 100%;
    padding: 16px 0;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Module {
  position: relative;
  width: auto;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .Module {
    margin: 0 auto;
  }
}
.Module.-with-gutter {
  padding: 100px 50px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Module.-with-gutter {
    padding: 30px;
  }
}
@media screen and (max-width: 540px) {
  .Module.-with-gutter {
    padding: 30px;
  }
}
.Module.-with-background-image {
  background-color: #061F36;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Module.-static-width {
  max-width: 1180px;
}
.Module.-static-width.-large {
  max-width: 1400px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Module.-static-width {
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Module.-static-width {
    max-width: 100%;
  }
}
.Module.-centered {
  text-align: center;
}
.Module-content {
  width: 40%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Module-content {
    position: relative;
    text-align: center;
    width: auto;
    z-index: 10;
  }
}
@media screen and (max-width: 540px) {
  .Module-content {
    position: relative;
    text-align: center;
    width: auto;
    z-index: 10;
  }
}
.Module-contentHeading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #FFF;
  font-size: 31px;
  line-height: 36px;
  letter-spacing: -0.1px;
}
@media screen and (max-width: 540px) {
  .Module-contentHeading {
    color: #076BB2;
  }
}
.Module-contentText {
  color: #FFF;
}
@media screen and (max-width: 540px) {
  .Module-contentText {
    color: #076BB2;
  }
}
.Module-contentText p {
  color: #FFF;
}
.Module .contact-expert-module-container p {
  margin-bottom: 25px;
}
@media screen and (max-width: 540px) {
  .Module.job-subscription .Module-contentHeading {
    color: #FFF;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Navigation {
  background-color: #FF6052;
}
.Navigation-itemLabel {
  border-bottom: 1px solid rgb(255, 144, 134);
  font-family: "ff-real-headline-pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
}
.Navigation-itemLabel svg {
  color: rgb(255, 144, 134);
  fill: currentColor;
}
.Navigation-itemLabel:hover svg {
  color: #FFF;
  fill: currentColor;
}
.Navigation-item:first-child .Navigation-Label {
  border-top: 1px solid #FFF;
}
.Navigation-item .Navigation-level {
  background-color: #FF6052;
}
.Navigation-item .Navigation-levelHeader {
  font-family: "ff-real-headline-pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1em;
  border-top: none;
  border-bottom: 1px solid rgb(255, 144, 134);
  color: #FFF;
  display: block;
  height: auto;
  cursor: pointer;
  margin: 0;
  padding: 16px 0;
  text-align: left;
  border-top: none;
  text-decoration: none;
}
.Navigation-item .Navigation-levelHeader:hover {
  text-decoration: none;
}
.Navigation-item .Navigation-levelItem a, .Navigation-item .Navigation-levelItem p {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgb(255, 144, 134);
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin: 0;
  color: #FFF;
}
.Navigation-item .Navigation-levelItem a:hover, .Navigation-item .Navigation-levelItem p:hover {
  text-decoration: none;
}
.Navigation-item .Navigation-levelItem p:hover svg {
  color: #FFF;
  fill: currentColor;
}
.Navigation-item .Navigation-levelItem svg {
  color: #ff9086;
  fill: currentColor;
}
.Navigation-secondaryItem {
  border-bottom: 1px solid rgb(255, 144, 134);
}
.Navigation-secondaryItem svg {
  color: rgb(255, 144, 134);
  fill: currentColor;
}
.Navigation-secondaryItem:hover svg {
  color: #FFF;
  fill: currentColor;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.MainContent {
  margin-top: 55px;
  min-width: 993px;
}
@media screen and (max-width: 1620px) {
  .MainContent {
    min-width: auto;
  }
}
@media screen and (max-width: 1400px) {
  .MainContent {
    min-width: auto;
  }
}
.MainContent.-full {
  margin: 55px auto 0 auto;
  width: 1180px;
  min-width: auto;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MainContent.-full {
    width: auto;
  }
}
@media screen and (max-width: 540px) {
  .MainContent.-full {
    width: auto;
  }
}
.MainContent.-error {
  min-width: 100%;
  margin: 30px auto;
  text-align: center;
}
.MainContent.-error h1 {
  margin-top: 20px;
}
.MainContent.-error .Error-return {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  margin-left: 25px;
  position: relative;
}
.MainContent.-error .Error-return:hover {
  text-decoration: underline;
  color: #ff4a26;
}
.MainContent.-error .Error-return svg {
  fill: #ff6052;
  width: 14px;
  height: 8px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.MainContent + .RightContent {
  margin-top: 55px;
  margin-left: 150px;
  width: 300px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .MainContent + .RightContent {
    margin-left: 100px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MainContent + .RightContent {
    margin-left: 60px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MainContent + .RightContent {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .MainContent + .RightContent {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
}
.MainContent + .RightContent .links-module {
  background-color: #F7F7F7;
}
.MainContent + .RightContent .links-module a {
  color: #FF6052;
}
.MainContent + .RightContent .links-module a:hover {
  text-decoration: underline;
}
.MainContent + .RightContent .consultant-card {
  background-color: #F7F7F7;
}
.MainContent + .RightContent .consultant-card label {
  font-weight: 600;
  font-size: 16px;
  color: #FF6052;
}
.MainContent + .RightContent .consultant-card .consultant-card-clickable strong {
  color: #FF6052;
}
.MainContent + .RightContent .consultant-card p {
  color: #076BB2;
  font-size: 16px;
}
.MainContent + .RightContent .consultant-card p a {
  color: #076BB2;
}
.MainContent blockquote {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #076BB2;
  margin: 50px 0 70px 0;
  padding: 0 50px;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 540px) {
  .MainContent blockquote {
    padding: 50px 0 0 0;
  }
}
.MainContent blockquote:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' viewBox='0 0 42 26' style='enable-background:new 0 0 42 26;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2324ABFF;%7D%0A%3C/style%3E%3Cpath class='st0' d='M32.9,25.6c-1.1,0-2.1-0.2-3.2-0.6c-2.8-1-5.1-3.2-6.4-5.9C22,16.2,21.8,13,22.9,10c1.3-3.7,4-6.6,7.5-8.3 c3.4-1.6,7.2-1.7,10.7-0.4l0.7,0.3L41.2,2c0,0-2.1,1.7-3,4c-0.8,1.8-0.8,3.2-0.8,3.7c3.7,1.5,5.6,5.8,4.2,9.7 c-0.9,2.4-2.6,4.3-4.8,5.4C35.5,25.3,34.2,25.6,32.9,25.6z M36.2,1.3c-1.9,0-3.8,0.4-5.5,1.2c-3.3,1.5-5.8,4.3-7,7.8 c-1,2.8-0.8,5.8,0.4,8.4c1.2,2.6,3.3,4.5,5.9,5.5c2.1,0.8,4.3,0.7,6.3-0.3c2.1-1,3.6-2.7,4.4-4.9c1.3-3.5-0.5-7.4-4-8.7l-0.2-0.1 l0-0.3c0-0.1-0.2-1.7,0.9-4.3c0.7-1.7,2-3.1,2.7-3.8C38.8,1.5,37.5,1.3,36.2,1.3z M10.7,25.6c-1.1,0-2.1-0.2-3.2-0.6 c-2.8-1-5.1-3.2-6.4-5.9C-0.2,16.2-0.4,13,0.7,10c1.3-3.7,4-6.6,7.5-8.3c3.4-1.6,7.2-1.7,10.7-0.4l0.7,0.3L19,2c0,0-2.1,1.7-3,4 c-0.8,1.8-0.8,3.2-0.8,3.7c3.7,1.5,5.6,5.8,4.2,9.7l0,0c-0.9,2.4-2.6,4.3-4.8,5.4C13.3,25.3,12,25.6,10.7,25.6z M14,1.3 c-1.9,0-3.8,0.4-5.5,1.2c-3.3,1.5-5.8,4.3-7,7.8c-1,2.8-0.8,5.8,0.4,8.4c1.2,2.6,3.3,4.5,5.9,5.5c2.1,0.8,4.3,0.7,6.3-0.3 c2.1-1,3.6-2.7,4.4-4.9c1.3-3.5-0.5-7.4-4-8.7l-0.2-0.1l0-0.3c0-0.1-0.2-1.7,0.9-4.3c0.7-1.7,2-3.1,2.7-3.8 C16.6,1.5,15.3,1.3,14,1.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0) translateY(0);
  -moz-transform: translateX(-50%) rotate(0) translateY(0);
  -ms-transform: translateX(-50%) rotate(0) translateY(0);
  -o-transform: translateX(-50%) rotate(0) translateY(0);
  transform: translateX(-50%) rotate(0) translateY(0);
}
@media screen and (max-width: 540px) {
  .MainContent blockquote:before {
    top: 5%;
  }
}
.MainContent blockquote p {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: #076BB2;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(36, 171, 255, 0.1) 50%, rgba(36, 171, 255, 0.1) 100%);
  display: inline;
  margin-bottom: 0;
}
.MainContent blockquote a {
  font-size: 14px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  color: #FF6052;
  background-color: #ffffff;
  display: block;
  margin-top: 20px;
  position: relative;
}
.MainContent h2:not(.information-block-heading):not(.sub-page-link-heading):not(.paragraph-block h2) {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 36px;
  color: #076BB2;
  margin-bottom: 30px;
  max-width: 700px;
}
.MainContent h2:not(.information-block-heading):not(.sub-page-link-heading):not(.paragraph-block h2):not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MainContent h2:not(.information-block-heading):not(.sub-page-link-heading):not(.paragraph-block h2) {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 540px) {
  .MainContent h2:not(.information-block-heading):not(.sub-page-link-heading):not(.paragraph-block h2) {
    margin-left: auto;
    margin-right: auto;
  }
}
.MainContent h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #076BB2;
  margin-bottom: 30px;
}
.MainContent h3:not(:first-child) {
  margin-top: 30px;
}
.MainContent h4 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  margin-bottom: 30px;
  color: #24ABFF;
}
.MainContent h4:not(:first-child) {
  margin-top: 30px;
}
.MainContent h5 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  text-align: center;
  line-height: 20px;
  margin-bottom: 30px;
  color: #ffffff;
  display: block;
  padding: 30px;
  background-color: #FF6052;
}
.MainContent h5 a:not(.Button) {
  color: #FFF;
}
.MainContent h5 a:not(.Button):hover {
  color: rgb(242.25, 242.25, 242.25);
}
.MainContent > img {
  display: block;
  max-width: 100%;
  margin: 0 10px 18px 10px;
}
.MainContent ol {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  margin: 30px 30px 50px 50px;
  color: #061F36;
}
.MainContent ol li {
  list-style-type: decimal;
  margin-bottom: 15px;
  line-height: 1.5;
}
.MainContent a:not(.Button) {
  color: #FF6052;
}
.MainContent a:not(.Button):hover {
  color: #FF4A26;
  text-decoration: underline;
}
.MainContent > p {
  margin-bottom: 18px;
}
.MainContent > p img {
  margin: 0 10px 18px 10px;
}
.MainContent hr {
  border-color: #CED9E2;
  border-style: dotted;
  margin-bottom: 1em;
}
.MainContent .content-container {
  margin-left: 0;
}
.MainContent .content-container .ShareList {
  margin-left: 0;
}
.MainContent .alternative-links-module ul {
  margin-left: 0;
  margin-right: 0;
}
.MainContent .alternative-links-module ul li {
  margin: 0 0 1px;
  position: relative;
}
.MainContent .alternative-links-module ul li:before {
  content: none;
}
.MainContent .alternative-links-module ul li a {
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  -ms-transition: background-color 200ms ease;
  -o-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  display: block;
  color: #FFF;
  background-color: #FF6052;
  padding: 20px 62px 20px 20px;
}
.MainContent .alternative-links-module ul li a svg {
  position: absolute;
  right: 20px;
  top: 24px;
  width: 19px;
  height: 19px;
}
.MainContent .alternative-links-module ul li a:hover {
  text-decoration: none;
  background-color: #FF4A26;
}
.MainContent .alternative-links-module ul li a .arrow-icon {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  background: url(/UI/assets/images/arrow-icon-32x32.png) no-repeat center center;
  background-size: contain;
}
@supports not (-ms-high-contrast: none) {
  .MainContent .alternative-links-module ul li a .arrow-icon {
    background: url(/UI/assets/images/arrow-icon-vector.svg) no-repeat center center;
    background-size: contain;
  }
}
.MainContent .jobb-social {
  margin: 50px 0;
  padding: 0;
}
.MainContent .jobb-social .about-box {
  background-color: #f3f6f8;
}
.MainContent .JobAd-image {
  margin: 0 0 18px 0;
}
.MainContent .ShareList-item.before {
  content: none;
}
.MainContent .tag-list-container ul {
  margin: 30px 0;
}
.MainContent .tag-list-container ul li {
  display: inline-block;
  background-color: #cacaca;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 1em;
  color: #FFF;
}
.MainContent .tag-list-container ul li span {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: "";
}
.MainContent .tag-list-container ul li:last-child {
  margin-right: 0;
}
.MainContent .tag-list-container ul li:before {
  content: none;
}
.MainContent .intro-content p {
  font-size: 21px;
  margin: 0 0 27px 0;
}
.MainContent .fields.short-apply {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.MainContent .Button {
  color: #FFF;
}
.MainContent-tags {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MainContent-tags {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 540px) {
  .MainContent-tags {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.MainContent-heading {
  margin-bottom: 30px;
}
.MainContent i, .MainContent em {
  font-style: italic;
}
.MainContent ul:not([class]) {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  margin: 30px 30px 50px 50px;
  color: #061F36;
}
.MainContent ul:not([class]) li {
  list-style-type: none;
  margin-bottom: 5px;
  line-height: 1.5;
}
.MainContent ul:not([class]) li.NewsLinkList-listItem:before {
  content: none;
}
.MainContent ul:not([class]) li:before {
  content: "";
  border-color: transparent #24ABFF;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  display: block;
  height: 0;
  width: 0;
  left: -25px;
  top: 18px;
  position: relative;
}
.MainContent ul:not([class]) li:last-child {
  margin-bottom: 0;
}
.MainContent ul:not([class]) li strong {
  font-weight: 600;
}
.MainContent .tag-list-container ul {
  margin: 0;
}
.MainContent .tag-list-container ul li:before {
  content: none;
}
.MainContent .no-caret a:hover {
  color: #FFF;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.RightContent {
  position: relative;
}
.RightContent-module {
  background-color: #FFF;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 35px 20px;
  margin-bottom: 25px;
}
.RightContent-module.-no-padding {
  padding: 0;
}
.RightContent-module.-fat {
  padding: 40px;
}
.RightContent-module.-orange {
  background-color: #FF6052;
  color: #FFF;
}
.RightContent-module.-black {
  background-color: #000;
  color: #FFF;
}
.RightContent-module.-blue, .MainContent.-error h1.RightContent-module {
  background-color: #0A4270;
  color: #FFF;
}
.RightContent-module.-light-blue {
  background-color: #076BB2;
  color: #FFF;
}
.RightContent-moduleHeading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 35px;
  color: #FFF;
}
.RightContent-moduleLink {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  text-decoration: underline;
  margin-top: 16px;
}
.RightContent-moduleLink:hover {
  color: #076BB2;
}
.RightContent-module p {
  color: #FFF;
}
.RightContent-module p a {
  color: #FFF;
  transition: text-decoration 0.2s ease-in;
}
.RightContent-module p a:hover {
  text-decoration: underline;
}
.RightContent .blockquote-module {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #076BB2;
  margin: 50px 0 70px 0;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 540px) {
  .RightContent .blockquote-module {
    padding: 50px 0 0 0;
  }
}
.RightContent .blockquote-module:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' viewBox='0 0 42 26' style='enable-background:new 0 0 42 26;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2324ABFF;%7D%0A%3C/style%3E%3Cpath class='st0' d='M32.9,25.6c-1.1,0-2.1-0.2-3.2-0.6c-2.8-1-5.1-3.2-6.4-5.9C22,16.2,21.8,13,22.9,10c1.3-3.7,4-6.6,7.5-8.3 c3.4-1.6,7.2-1.7,10.7-0.4l0.7,0.3L41.2,2c0,0-2.1,1.7-3,4c-0.8,1.8-0.8,3.2-0.8,3.7c3.7,1.5,5.6,5.8,4.2,9.7 c-0.9,2.4-2.6,4.3-4.8,5.4C35.5,25.3,34.2,25.6,32.9,25.6z M36.2,1.3c-1.9,0-3.8,0.4-5.5,1.2c-3.3,1.5-5.8,4.3-7,7.8 c-1,2.8-0.8,5.8,0.4,8.4c1.2,2.6,3.3,4.5,5.9,5.5c2.1,0.8,4.3,0.7,6.3-0.3c2.1-1,3.6-2.7,4.4-4.9c1.3-3.5-0.5-7.4-4-8.7l-0.2-0.1 l0-0.3c0-0.1-0.2-1.7,0.9-4.3c0.7-1.7,2-3.1,2.7-3.8C38.8,1.5,37.5,1.3,36.2,1.3z M10.7,25.6c-1.1,0-2.1-0.2-3.2-0.6 c-2.8-1-5.1-3.2-6.4-5.9C-0.2,16.2-0.4,13,0.7,10c1.3-3.7,4-6.6,7.5-8.3c3.4-1.6,7.2-1.7,10.7-0.4l0.7,0.3L19,2c0,0-2.1,1.7-3,4 c-0.8,1.8-0.8,3.2-0.8,3.7c3.7,1.5,5.6,5.8,4.2,9.7l0,0c-0.9,2.4-2.6,4.3-4.8,5.4C13.3,25.3,12,25.6,10.7,25.6z M14,1.3 c-1.9,0-3.8,0.4-5.5,1.2c-3.3,1.5-5.8,4.3-7,7.8c-1,2.8-0.8,5.8,0.4,8.4c1.2,2.6,3.3,4.5,5.9,5.5c2.1,0.8,4.3,0.7,6.3-0.3 c2.1-1,3.6-2.7,4.4-4.9c1.3-3.5-0.5-7.4-4-8.7l-0.2-0.1l0-0.3c0-0.1-0.2-1.7,0.9-4.3c0.7-1.7,2-3.1,2.7-3.8 C16.6,1.5,15.3,1.3,14,1.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0) translateY(0);
  -moz-transform: translateX(-50%) rotate(0) translateY(0);
  -ms-transform: translateX(-50%) rotate(0) translateY(0);
  -o-transform: translateX(-50%) rotate(0) translateY(0);
  transform: translateX(-50%) rotate(0) translateY(0);
}
.RightContent .blockquote-module p {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: #076BB2;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(36, 171, 255, 0.1) 50%, rgba(36, 171, 255, 0.1) 100%);
  display: inline;
  margin-bottom: 0;
}
.RightContent .blockquote-module a, .RightContent .blockquote-module span {
  font-size: 14px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  color: #FF6052;
  background-color: #ffffff;
  display: block;
  margin-top: 20px;
  position: relative;
}
.RightContent .portrait {
  border-radius: 50%;
}
.RightContent.job-widget {
  margin-top: 71px;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .RightContent.job-widget {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .RightContent.job-widget {
    margin-top: 0;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.RightNavigation {
  background-color: #FFF;
  text-align: left;
  position: relative;
}
.RightNavigation-contentItem {
  border-bottom: 1px solid #FF6052;
}
.RightNavigation-contentItem:first-child {
  border-bottom: none;
}
.RightNavigation-contentItem:last-child {
  border-bottom: none;
}
.RightNavigation-contentItem.-heading {
  position: relative;
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  color: #076BB2;
}
.RightNavigation-contentItem input:checked + label svg {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateX(0) rotate(270deg) translateY(0);
  -moz-transform: translateX(0) rotate(270deg) translateY(0);
  -ms-transform: translateX(0) rotate(270deg) translateY(0);
  -o-transform: translateX(0) rotate(270deg) translateY(0);
  transform: translateX(0) rotate(270deg) translateY(0);
}
.RightNavigation-contentItem label {
  position: relative;
  width: 100%;
}
.RightNavigation-contentItem label a {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 16px;
  color: #061F36;
  display: inline-block;
}
.RightNavigation-contentItem label a.active {
  font-weight: 400;
}
.RightNavigation-contentItem label a:hover {
  text-decoration: none;
  color: #FF6052;
}
.RightNavigation-contentItem label .RightNavigation-contentItemArrow {
  -webkit-transform: translateX(0) rotate(90deg) translateY(0);
  -moz-transform: translateX(0) rotate(90deg) translateY(0);
  -ms-transform: translateX(0) rotate(90deg) translateY(0);
  -o-transform: translateX(0) rotate(90deg) translateY(0);
  transform: translateX(0) rotate(90deg) translateY(0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #FF6052;
  fill: currentColor;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 20px;
}
.RightNavigation-contentItem .RightNavigation-sub {
  margin-left: 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
  display: flex;
  flex-direction: column;
}
.RightNavigation-contentItem .RightNavigation-sub a {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  max-width: 100%;
  color: #061F36;
}
.RightNavigation-contentItem .RightNavigation-sub a.active {
  font-weight: 400;
}
.RightNavigation-contentItem .RightNavigation-sub a:hover {
  text-decoration: none;
  color: #FF6052;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1620px) {
  .Wrapper {
    width: auto;
    margin: 0 100px 0 100px;
  }
}
@media screen and (max-width: 1400px) {
  .Wrapper {
    width: auto;
    margin: 0 60px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Wrapper {
    margin: 0 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Wrapper {
    margin: 0 30px;
  }
}
@media screen and (max-width: 540px) {
  .Wrapper {
    margin: 0 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .Wrapper {
    flex-direction: column;
  }
}
.Wrapper.-middle {
  display: block;
}
.Wrapper.-centered {
  width: 83.3333333333%;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1400px) {
  .Wrapper.-centered {
    width: auto;
  }
}
.Wrapper.-column {
  flex-direction: column;
}
.Wrapper .mobile-only .short-apply {
  margin-top: 18px;
}
.Wrapper section.contact-expert-module .contact-expert-module-container {
  padding: 0;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Carousel {
  position: relative;
  overflow: hidden;
  height: 820px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Carousel {
    height: 860px;
  }
}
@media screen and (max-width: 540px) {
  .Carousel {
    height: 920px;
  }
}
.Carousel:before {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' viewBox='0 0 60 40' style='enable-background:new 0 0 52 32;' xml:space='preserve'%3E%3Cg%3E%3Cpath style='fill: %23FFF; stroke: %23FFF;' class='st0' d='M18.1,12.1c0,0-0.3-2,1.1-5.2c1.2-3,4-5.2,4-5.2c-9-3.4-19,1.4-22.3,10.7c-1.3,3.8-1,7.7,0.5,11.1 c1.5,3.2,4.2,5.9,7.8,7.2c5.8,2.2,12.2-0.9,14.3-6.8C25.1,19.1,22.7,13.9,18.1,12.1z'/%3E%3Cpath style='fill: %23FFF; stroke: %23FFF;' class='st0' d='M46.1,12.1c0,0-0.3-2,1.1-5.2c1.2-3,4-5.2,4-5.2c-9-3.4-19,1.4-22.3,10.7c-1.3,3.8-1,7.7,0.5,11.1 c1.5,3.2,4.2,5.9,7.8,7.2c5.8,2.2,12.2-0.9,14.3-6.8C53.1,19.1,50.8,13.9,46.1,12.1z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 40px;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 540px) {
  .Carousel:before {
    top: 40%;
  }
}
.Carousel-heading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.Search-content {
  padding: 20px 0 40px 0;
  background-color: #FF6052;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Search-content {
    padding: 20px 30px 40px 30px;
  }
}
@media screen and (max-width: 540px) {
  .Search-content {
    padding: 20px 30px 40px 30px;
  }
}
.Search-content .input input + label {
  bottom: 10px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Search-content .input input + label {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .Search-content .input input + label {
    font-size: 18px;
  }
}
.Search-content .input input:focus + label {
  bottom: 50px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.FilterTags {
  width: 100%;
}
.FilterTags-clear {
  width: 180px;
  height: 50px;
}
.FilterTags-clearButton {
  position: relative;
  font-size: 13px;
  color: #fff;
  display: block;
  height: 100%;
  padding-left: 65px;
  padding-top: 18px;
  text-decoration: none;
  background-color: #FF6052;
}
.FilterTags-clearButton:before {
  display: block;
  content: "";
  top: calc(50% - 13px);
  position: absolute;
  left: 20px;
  background-image: url(/ui/assets/images/large-cross.svg);
  background-size: 27px 27px;
  height: 27px;
  width: 27px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.JobAd {
  text-align: center;
  max-width: 257px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .JobAd {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .JobAd {
    max-width: 100%;
    width: 100%;
  }
}
.JobAd-details {
  padding: 30px;
  background-color: #F7F7F7;
  margin-bottom: 5px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .JobAd-details {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 540px) {
  .JobAd-details {
    margin-bottom: 55px;
  }
}
.JobAd-details p {
  margin: 10px 0 15px 0;
  font-size: 0.9rem;
}
.JobAd-details p a {
  color: #FF6052;
  font-size: 0.9rem;
}
.JobAd-logo {
  text-align: left;
  margin-bottom: 55px;
  display: block;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .JobAd-logo {
    margin: 0 auto 55px auto;
  }
}
@media screen and (max-width: 540px) {
  .JobAd-logo {
    margin: 0 auto 55px auto;
  }
}
.JobAd .Button {
  width: 100%;
  margin-bottom: 5px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.ShareList {
  display: flex;
  align-content: center;
  justify-content: center;
}
.ShareList.-left {
  justify-content: flex-start;
}
.ShareList-item {
  background-color: #FF6052;
  width: 60px;
  height: 60px;
}
.ShareList-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ShareList-item svg {
  height: 25px;
  width: 25px;
  fill: #FFF;
}
.ShareList-item:nth-child(1) {
  background-color: #FF6052;
}
.ShareList-item:nth-child(2) {
  background-color: rgba(255, 96, 82, 0.8);
}
.ShareList-item:nth-child(3) {
  background-color: rgba(255, 96, 82, 0.6);
}
.ShareList-item:nth-child(4) {
  background-color: rgba(255, 96, 82, 0.4);
}
.ShareList-item:nth-child(5) {
  background-color: rgba(255, 96, 82, 0.2);
}
.ShareList-item:nth-child(5) svg {
  fill: #000;
}
.ShareList-item:nth-child(6) {
  background-color: rgba(255, 96, 82, 0.1);
}
.ShareList-item:nth-child(6) svg {
  fill: #000;
}
.ShareList li.ShareList-item:before {
  content: none;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.NewsLinkList-list {
  margin: 30px 0;
}
.NewsLinkList-listIcon {
  width: 30px;
  align-self: flex-start;
  margin-right: 20px;
}
.NewsLinkList-listIcon img {
  margin-top: 4px;
  box-sizing: border-box;
  display: inline-block;
  width: 30px;
}
.NewsLinkList-listItem {
  margin-bottom: 30px;
}
.NewsLinkList-listItem:before {
  border: 0;
}
.NewsLinkList-listItem a:hover {
  text-decoration: none;
}
.NewsLinkList-listLink {
  display: flex;
}
.NewsLinkList-listLink:hover {
  text-decoration: none;
}
.NewsLinkList-listLink:hover h2 {
  text-decoration: underline;
}
.NewsLinkList-listLink:hover p {
  text-decoration: none;
}
.NewsLinkList-listLink h2 {
  font-size: 20px;
  font-weight: 600;
  max-width: 100%;
  color: #FF6052;
  margin: 0 0 10px 0;
}
.NewsLinkList-listLink p {
  color: #061F36;
  font-weight: 400;
  font-size: 14px;
}
.NewsLinkList-listLink p strong {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 900;
}
.NewsLinkList > p strong {
  font-size: 16px;
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 900;
  color: #076BB2;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Hamburger {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
  z-index: 10;
  flex: 0 0 auto;
}
.Hamburger:hover:after {
  transform: scale(1.1);
}
.Hamburger:after {
  content: "";
  display: block;
  background-color: #FF6052;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all ease-in-out 0.5s;
}
.Hamburger.-active:after {
  background-color: #FFF;
}
.Hamburger.-active .Hamburger-icon {
  transition: all 0.3s ease-in-out;
  background-color: #FF6052;
}
.Hamburger.-active .Hamburger-icon.-middle {
  left: 30%;
  opacity: 0;
}
.Hamburger.-active .Hamburger-icon.-top {
  width: 25px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.Hamburger.-active .Hamburger-icon.-bottom {
  width: 25px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.Hamburger-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.Hamburger-icon.-top {
  top: 36%;
}
.Hamburger-icon.-bottom {
  top: 66%;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.QuickMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.QuickMenu.-active > .QuickMenu-login,
.QuickMenu.-active > .QuickMenu-logout,
.QuickMenu.-active > .QuickMenu-locator,
.QuickMenu.-active > .QuickMenu-search,
.QuickMenu.-active > .QuickMenu-language {
  display: none;
  animation: HoverWidth 0.5s forwards;
  animation-iteration-count: 1;
  border-color: #FFF;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu.-active > .QuickMenu-login,
  .QuickMenu.-active > .QuickMenu-logout,
  .QuickMenu.-active > .QuickMenu-locator,
  .QuickMenu.-active > .QuickMenu-search,
  .QuickMenu.-active > .QuickMenu-language {
    border: none;
    animation: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu.-active > .QuickMenu-login,
  .QuickMenu.-active > .QuickMenu-logout,
  .QuickMenu.-active > .QuickMenu-locator,
  .QuickMenu.-active > .QuickMenu-search,
  .QuickMenu.-active > .QuickMenu-language {
    border: none;
    animation: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu.-active > .QuickMenu-login,
  .QuickMenu.-active > .QuickMenu-logout,
  .QuickMenu.-active > .QuickMenu-locator,
  .QuickMenu.-active > .QuickMenu-search,
  .QuickMenu.-active > .QuickMenu-language {
    border: none;
    animation: none;
  }
}
.QuickMenu.-active > .QuickMenu-login a,
.QuickMenu.-active > .QuickMenu-logout a,
.QuickMenu.-active > .QuickMenu-locator a,
.QuickMenu.-active > .QuickMenu-search a,
.QuickMenu.-active > .QuickMenu-language a {
  visibility: hidden;
  animation: DelayVisibility 0.5s forwards;
  animation-iteration-count: 1;
  display: block;
  padding-left: 8px;
  flex: 1;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu.-active > .QuickMenu-login a,
  .QuickMenu.-active > .QuickMenu-logout a,
  .QuickMenu.-active > .QuickMenu-locator a,
  .QuickMenu.-active > .QuickMenu-search a,
  .QuickMenu.-active > .QuickMenu-language a {
    animation: none;
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu.-active > .QuickMenu-login a,
  .QuickMenu.-active > .QuickMenu-logout a,
  .QuickMenu.-active > .QuickMenu-locator a,
  .QuickMenu.-active > .QuickMenu-search a,
  .QuickMenu.-active > .QuickMenu-language a {
    animation: none;
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu.-active > .QuickMenu-login a,
  .QuickMenu.-active > .QuickMenu-logout a,
  .QuickMenu.-active > .QuickMenu-locator a,
  .QuickMenu.-active > .QuickMenu-search a,
  .QuickMenu.-active > .QuickMenu-language a {
    animation: none;
    display: none;
  }
}
.QuickMenu.-active > .QuickMenu-login svg,
.QuickMenu.-active > .QuickMenu-logout svg,
.QuickMenu.-active > .QuickMenu-locator svg,
.QuickMenu.-active > .QuickMenu-search svg,
.QuickMenu.-active > .QuickMenu-language svg {
  width: 24px;
  height: 24px;
}
.QuickMenu.-active > .QuickMenu-logout svg {
  margin-right: 5px;
}
.QuickMenu-login, .QuickMenu-logout, .QuickMenu-locator, .QuickMenu-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  cursor: pointer;
  margin-right: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 20px;
  width: 32px;
  height: 32px;
  padding-right: 4px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu-login, .QuickMenu-logout, .QuickMenu-locator, .QuickMenu-search {
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu-login, .QuickMenu-logout, .QuickMenu-locator, .QuickMenu-search {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu-login, .QuickMenu-logout, .QuickMenu-locator, .QuickMenu-search {
    display: none;
  }
}
.QuickMenu-login a, .QuickMenu-logout a, .QuickMenu-locator a, .QuickMenu-search a {
  display: none;
  visibility: hidden;
  font-size: 12px;
  color: #FFF;
}
.QuickMenu-login a:hover, .QuickMenu-logout a:hover, .QuickMenu-locator a:hover, .QuickMenu-search a:hover {
  text-decoration: underline;
}
.QuickMenu-login svg, .QuickMenu-logout svg, .QuickMenu-locator svg, .QuickMenu-search svg {
  width: 24px;
  height: 24px;
  color: #FFF;
  fill: currentColor;
}
.QuickMenu-login:hover, .QuickMenu-logout:hover, .QuickMenu-locator:hover, .QuickMenu-search:hover {
  animation: HoverWidth 0.5s forwards;
  animation-iteration-count: 1;
  border-color: #FFF;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu-login:hover, .QuickMenu-logout:hover, .QuickMenu-locator:hover, .QuickMenu-search:hover {
    animation: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu-login:hover, .QuickMenu-logout:hover, .QuickMenu-locator:hover, .QuickMenu-search:hover {
    animation: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu-login:hover, .QuickMenu-logout:hover, .QuickMenu-locator:hover, .QuickMenu-search:hover {
    animation: none;
  }
}
.QuickMenu-login:hover a, .QuickMenu-logout:hover a, .QuickMenu-locator:hover a, .QuickMenu-search:hover a {
  visibility: hidden;
  animation: DelayVisibility 0.5s forwards;
  animation-iteration-count: 1;
  display: block;
  padding-left: 8px;
  flex: 1;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu-login:hover a, .QuickMenu-logout:hover a, .QuickMenu-locator:hover a, .QuickMenu-search:hover a {
    display: none;
    animation: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu-login:hover a, .QuickMenu-logout:hover a, .QuickMenu-locator:hover a, .QuickMenu-search:hover a {
    display: none;
    animation: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu-login:hover a, .QuickMenu-logout:hover a, .QuickMenu-locator:hover a, .QuickMenu-search:hover a {
    display: none;
    animation: none;
  }
}
.QuickMenu-login:hover svg, .QuickMenu-logout:hover svg, .QuickMenu-locator:hover svg, .QuickMenu-search:hover svg {
  width: 24px;
  height: 24px;
}
.QuickMenu-language {
  display: flex;
  font-size: 12px;
  margin-right: 16px;
  position: relative;
  flex-direction: column;
  z-index: 10;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu-language {
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu-language {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu-language {
    display: none;
  }
}
.QuickMenu-language a {
  color: #FFF;
  position: relative;
  padding-right: 16px;
  display: block;
}
.QuickMenu-language a svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #FFF;
  fill: currentColor;
  width: 8px;
  height: 12px;
}
.QuickMenu-languageSelector {
  display: none;
  position: absolute;
  top: 16px;
  right: 0;
  background-color: #FFF;
  width: 125px;
  border-radius: 8px;
}
.QuickMenu-languageSelector a {
  padding: 8px;
  color: #076BB2;
}
.QuickMenu-languageSelector a:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.QuickMenu-languageSelector a:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.QuickMenu-languageSelector a:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.QuickMenu-logout:hover svg {
  margin-right: 5px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .QuickMenu-logout:hover svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .QuickMenu-logout:hover svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 540px) {
  .QuickMenu-logout:hover svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
.QuickMenu-logout form {
  flex: 1;
}
.QuickMenu-mobile-menu {
  text-align: right;
  clip-path: circle(0rem at calc(100vw - 75px) 60px);
  transition: clip-path 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 96, 82, 0.9);
  backdrop-filter: blur(16px);
  margin: 0 auto;
  overflow-y: scroll;
}
.QuickMenu-mobile-menu.-active {
  clip-path: circle(71% at 50% 50%);
}

@keyframes HoverWidth {
  0% {
    width: 32px;
  }
  100% {
    width: 240px;
  }
}
@keyframes DelayVisibility {
  99% {
    display: none;
    visibility: hidden;
  }
  100% {
    display: block;
    visibility: visible;
  }
}
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.MobileMenu {
  display: none;
}
.MobileMenu.-active {
  margin: 150px 104px 40px 104px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 48px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MobileMenu.-active {
    margin: 120px 30px 150px 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MobileMenu.-active {
    margin: 120px 30px 150px 30px;
  }
}
@media screen and (max-width: 540px) {
  .MobileMenu.-active {
    margin: 120px 30px 150px 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MobileMenu.-active.-logged-in {
    margin: 180px 30px 40px 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MobileMenu.-active.-logged-in {
    margin: 180px 30px 40px 30px;
  }
}
@media screen and (max-width: 540px) {
  .MobileMenu.-active.-logged-in {
    margin: 180px 30px 40px 30px;
  }
}
.MobileMenu-item {
  text-align: left;
}
.MobileMenu-item.-has-children > .MobileMenu {
  display: flex;
  flex-direction: column;
  position: static;
  transform: none;
  gap: 0;
  margin: 0;
}
.MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item > .MobileMenu {
  margin-left: 16px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item > .MobileMenu {
    margin: 0 0 0 16px;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item > .MobileMenu {
    margin: 0 0 0 16px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item > .MobileMenu {
    margin: 0 0 0 16px;
  }
}
@media screen and (max-width: 540px) {
  .MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item > .MobileMenu {
    margin: 0 0 0 16px;
  }
}
.MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item .MobileMenu-itemLink {
  font-size: 14px;
  border-bottom: none;
  padding-bottom: 0;
  height: auto;
  display: inline-block;
}
.MobileMenu-item.-has-children > .MobileMenu .MobileMenu-item .MobileMenu-itemLink:hover {
  text-decoration: underline;
}
.MobileMenu-item > .MobileMenu-itemLink {
  height: 48px;
  display: flex;
}
.MobileMenu-item > .MobileMenu-itemLink:last-child {
  margin-left: 0;
}
.MobileMenu-item > .MobileMenu-itemLink span {
  align-self: flex-end;
}
.MobileMenu-itemLink {
  width: 100%;
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #FFF;
  font-size: 24px;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 4px solid #FFF;
}
.MobileMenu-itemLink:hover {
  transform: scale(1.05) translateX(10px);
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.MobileQuickMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 108px 0 60px;
  height: 138px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MobileQuickMenu {
    margin: 0 78px 0 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MobileQuickMenu {
    margin: 0 78px 0 30px;
  }
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu {
    margin: 36px 30px 30px 30px;
    flex-direction: column;
    align-items: normal;
  }
}
.MobileQuickMenu-logo {
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-logo {
    margin-bottom: 30px;
  }
  .MobileQuickMenu-logo a {
    padding-bottom: 0;
  }
}
.MobileQuickMenu-logo svg {
  width: 125px;
  height: 52px;
}
.MobileQuickMenu-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: auto;
  text-align: right;
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-icons {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.MobileQuickMenu-login, .MobileQuickMenu-logout, .MobileQuickMenu-locator, .MobileQuickMenu-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  cursor: pointer;
  margin-right: 16px;
  border: 1px solid #FFF;
  border-radius: 20px;
  width: 240px;
  height: 32px;
  padding-right: 4px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .MobileQuickMenu-login, .MobileQuickMenu-logout, .MobileQuickMenu-locator, .MobileQuickMenu-search {
    border-color: transparent;
    width: 32px;
  }
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-login, .MobileQuickMenu-logout, .MobileQuickMenu-locator, .MobileQuickMenu-search {
    width: 100%;
    border: 1px solid #FFF;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.MobileQuickMenu-login form, .MobileQuickMenu-logout form, .MobileQuickMenu-locator form, .MobileQuickMenu-search form {
  width: 100%;
}
.MobileQuickMenu-login a, .MobileQuickMenu-logout a, .MobileQuickMenu-locator a, .MobileQuickMenu-search a {
  display: block;
  padding-left: 8px;
  flex: 1;
  font-size: 12px;
  color: #FFF;
  text-align: left;
}
@media screen and (max-width: 1400px) {
  .MobileQuickMenu-login a, .MobileQuickMenu-logout a, .MobileQuickMenu-locator a, .MobileQuickMenu-search a {
    visibility: hidden;
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-login a, .MobileQuickMenu-logout a, .MobileQuickMenu-locator a, .MobileQuickMenu-search a {
    display: block;
    visibility: visible;
  }
}
.MobileQuickMenu-login a:hover, .MobileQuickMenu-logout a:hover, .MobileQuickMenu-locator a:hover, .MobileQuickMenu-search a:hover {
  text-decoration: underline;
}
.MobileQuickMenu-login svg, .MobileQuickMenu-logout svg, .MobileQuickMenu-locator svg, .MobileQuickMenu-search svg {
  width: 24px;
  height: 24px;
  color: #FFF;
  fill: currentColor;
}
.MobileQuickMenu-language {
  display: flex;
  font-size: 12px;
  margin-right: 16px;
  position: relative;
  flex-direction: column;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-language {
    margin-right: 8px;
    margin-bottom: 16px;
  }
}
.MobileQuickMenu-language a {
  color: #FFF;
  position: relative;
  padding-right: 16px;
  display: block;
}
.MobileQuickMenu-language a svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #FFF;
  fill: currentColor;
  width: 8px;
  height: 12px;
}
.MobileQuickMenu-languageSelector {
  display: none;
  position: absolute;
  top: 16px;
  right: 0;
  background-color: #FFF;
  width: 125px;
  border-radius: 8px;
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-languageSelector {
    left: 0;
    right: auto;
  }
}
.MobileQuickMenu-languageSelector a {
  padding: 8px;
  color: #076BB2;
}
.MobileQuickMenu-languageSelector a:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.MobileQuickMenu-languageSelector a:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.MobileQuickMenu-languageSelector a:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.MobileQuickMenu-logout svg {
  margin-right: 5px;
}
@media screen and (max-width: 1400px) {
  .MobileQuickMenu-logout svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .MobileQuickMenu-logout svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .MobileQuickMenu-logout svg {
    margin-right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 540px) {
  .MobileQuickMenu-logout svg {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
}

@keyframes HoverWidth {
  0% {
    width: 32px;
  }
  100% {
    width: 240px;
  }
}
@keyframes DelayVisibility {
  99% {
    display: none;
    visibility: hidden;
  }
  100% {
    display: block;
    visibility: visible;
  }
}
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.SearchContent {
  max-width: 960px;
  width: 100%;
  padding: 0 30px;
  margin: 50px auto 0 auto;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent {
    padding: 30px;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent {
    padding: 30px;
  }
}
.SearchContent span.siteresult-text-area {
  color: #9B9B9B;
}
.SearchContent ul.searchresult-list {
  padding: 30px 0 45px;
}
.SearchContent ul.searchresult-list li {
  display: flex;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 6px solid #F7F7F7;
  margin-bottom: 15px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent ul.searchresult-list li {
    width: 100%;
    margin: 0 auto 15px;
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent ul.searchresult-list li {
    width: 100%;
    margin: 0 auto 15px;
    flex-direction: column;
  }
}
.SearchContent ul.searchresult-list li div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 200px);
  padding: 40px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent ul.searchresult-list li div {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent ul.searchresult-list li div {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
}
.SearchContent ul.searchresult-list li div h3 {
  margin-right: 25px;
  margin-bottom: 0;
  color: #076BB2;
  padding: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent ul.searchresult-list li div h3 {
    margin: 0;
    padding: 30px 0 15px;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent ul.searchresult-list li div h3 {
    margin: 0;
    padding: 30px 0 15px;
  }
}
.SearchContent ul.searchresult-list li div p {
  font-size: 13px;
  color: #9B9B9B;
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent ul.searchresult-list li div p {
    padding: 15px 0 0px;
    width: 70%;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent ul.searchresult-list li div p {
    padding: 15px 0 0px;
    width: 70%;
  }
}
.SearchContent ul.searchresult-list li a {
  display: block;
  max-width: 200px;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 0;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .SearchContent ul.searchresult-list li a {
    max-width: none;
    padding: 30px 0;
  }
}
@media screen and (max-width: 540px) {
  .SearchContent ul.searchresult-list li a {
    max-width: none;
    padding: 30px 0;
  }
}
.SearchContent ul.searchresult-list li a:hover {
  text-decoration: none;
}
.SearchContent ul.searchresult-list li a span {
  pointer-events: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #076BB2;
}
.SearchContent ul.searchresult-list li.noHits {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 60px;
  border: none;
  background-color: #076BB2;
  color: #076BB2;
  height: auto;
  width: 100%;
  text-align: center;
}
.SearchContent ul.searchresult-list li.noHits h3 {
  margin-bottom: 0;
}
.SearchContent .searchresult-list-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 60px;
}
@media screen and (max-width: 540px) {
  .SearchContent .searchresult-list-navigation a {
    width: 100%;
  }
}
.SearchContent .searchresult-list-navigation a.nav-left {
  margin-right: auto;
}
@media screen and (max-width: 540px) {
  .SearchContent .searchresult-list-navigation a.nav-left {
    margin-bottom: 30px;
  }
}
.SearchContent .searchresult-list-navigation .nav-right a + a {
  margin-left: 20px;
}
@media screen and (max-width: 540px) {
  .SearchContent .searchresult-list-navigation .nav-right {
    width: 100%;
    margin-bottom: 30px;
  }
  .SearchContent .searchresult-list-navigation .nav-right a {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 820px) {
  .SearchContent .searchresult-list-navigation {
    /* special case, we have 3 btns */
  }
  .SearchContent .searchresult-list-navigation.btns a {
    width: 100%;
  }
  .SearchContent .searchresult-list-navigation.btns .nav-left {
    margin-bottom: 30px;
  }
  .SearchContent .searchresult-list-navigation.btns .nav-right {
    width: 100%;
  }
  .SearchContent .searchresult-list-navigation.btns .nav-right a {
    margin-bottom: 30px;
  }
  .SearchContent .searchresult-list-navigation.btns .nav-right a + a {
    margin-left: 0;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
.FormContent {
  margin-top: 50px;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .FormContent > .Wrapper > .MainContent {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .FormContent > .Wrapper > .MainContent {
    margin-top: 0;
  }
}
.FormContent .MainContent {
  margin-top: 0;
}
.FormContent .RightContent {
  margin-top: 16px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Storytelling {
  display: flex;
  flex-direction: column;
}
.Storytelling.-top {
  flex-flow: column-reverse;
}
.Storytelling.-middle {
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}
.Storytelling.-middle.-reverse {
  flex-flow: row-reverse;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle.-reverse {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle.-reverse {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle.-reverse {
    flex-direction: column;
    align-items: flex-start;
  }
}
.Storytelling.-middle.-reverse .Storytelling-image {
  padding-left: 16px;
  padding-right: 0;
  text-align: right;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle.-reverse .Storytelling-image {
    padding-left: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle.-reverse .Storytelling-image {
    padding-left: 0;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle.-reverse .Storytelling-image {
    padding-left: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle.-reverse .Storytelling-text {
    margin-left: 60px;
    margin-right: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle.-reverse .Storytelling-text {
    margin-left: 60px;
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle.-reverse .Storytelling-text {
    margin-left: 60px;
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle.-reverse .Storytelling-text {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle.-wide {
    margin: auto;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle.-wide {
    margin: auto;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle.-wide {
    margin: auto;
  }
}
.Storytelling.-middle .Storytelling-image {
  padding-right: 16px;
  width: 50%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle .Storytelling-image {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle .Storytelling-image {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle .Storytelling-image {
    padding-right: 0;
    width: 100%;
  }
}
.Storytelling.-middle .Storytelling-image img {
  display: inline-block;
  width: auto;
  max-height: 740px;
}
.Storytelling.-middle .Storytelling-text {
  width: 50%;
  max-width: 350px;
  height: 100%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-middle .Storytelling-text {
    width: 100%;
    position: static;
    width: 100%;
    margin-top: -30px;
    margin-right: 60px;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-middle .Storytelling-text {
    width: 100%;
    position: static;
    width: 100%;
    margin-top: -30px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-middle .Storytelling-text {
    width: 100%;
    margin-top: -30px;
    margin-right: 0;
  }
}
.Storytelling.-bottom-left, .Storytelling.-bottom-right {
  position: relative;
}
.Storytelling.-bottom-left .Storytelling-text, .Storytelling.-bottom-right .Storytelling-text {
  position: absolute;
  bottom: 0;
  width: 80%;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Storytelling.-bottom-left .Storytelling-text, .Storytelling.-bottom-right .Storytelling-text {
    position: static;
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Storytelling.-bottom-left .Storytelling-text, .Storytelling.-bottom-right .Storytelling-text {
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Storytelling.-bottom-left .Storytelling-text, .Storytelling.-bottom-right .Storytelling-text {
    position: static;
    width: 100%;
  }
}
.Storytelling.-bottom-left .Storytelling-text {
  left: 0;
}
.Storytelling.-bottom-right .Storytelling-text {
  right: 0;
}
.Storytelling-image img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.Storytelling-text {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 200;
  font-style: italic;
  line-height: 19px;
  color: #FFF;
  background-color: #1D4981;
  width: 100%;
  padding: 12px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Truthteller {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin: 68px 50px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Truthteller {
    flex-direction: column;
    margin: 68px 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Truthteller {
    flex-direction: column;
    margin: 68px 0;
  }
}
@media screen and (max-width: 540px) {
  .Truthteller {
    flex-direction: column;
    margin: 68px 0;
  }
}
.Truthteller-item {
  position: relative;
  flex: auto;
  width: calc(33% - 32px);
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Truthteller-item {
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Truthteller-item {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Truthteller-item {
    width: 100%;
  }
}
.Truthteller-itemIcon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 50px;
  height: 50px;
}
.Truthteller-itemIcon svg {
  width: 100%;
  height: 100%;
}
.Truthteller-itemImage {
  background: linear-gradient(180deg, rgb(0, 25, 52) 15%, rgb(27, 73, 129) 80%);
}
.Truthteller-itemImage.-reversed img {
  clip-path: polygon(100% 20%, 100% 100%, 0% 80%, 0% 0%);
}
.Truthteller-itemImage img {
  max-width: 100%;
  display: block;
  clip-path: polygon(100% 0%, 100% 80%, 0% 100%, 0% 20%);
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Truthteller-itemImage img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Truthteller-itemImage img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .Truthteller-itemImage img {
    margin: 0 auto;
  }
}
.Truthteller-itemText {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 200;
  font-style: italic;
  font-size: 16px;
  line-height: 19px;
  padding: 16px;
  color: #FFF;
  background: linear-gradient(180deg, rgb(27, 73, 129) 0%, rgb(0, 25, 52) 80%);
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 110px 0 110px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Grid {
    margin: 32px 0 0 0;
    flex-direction: column;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Grid {
    margin: 32px 0 0 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .Grid {
    margin: 32px 0 0 0;
    flex-direction: column;
  }
}
.Grid .-wide {
  flex: 100vw;
  margin: auto calc(51% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Grid .-wide {
    flex: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Grid .-wide {
    flex: none;
  }
}
@media screen and (max-width: 540px) {
  .Grid .-wide {
    flex: none;
  }
}
.Grid-full, .Grid-half, .Grid-third {
  flex: auto;
}
.Grid-full {
  width: 100%;
}
.Grid-half {
  width: calc(50% - 32px);
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Grid-half {
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Grid-half {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Grid-half {
    width: 100%;
  }
}
.Grid-third {
  width: calc(33% - 32px);
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .Grid-third {
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .Grid-third {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .Grid-third {
    width: 100%;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.ExpertSearch {
  width: 100%;
}
.ExpertSearch .ExpertSearchFilter {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  position: relative;
  margin-top: -40px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .ExpertSearch .ExpertSearchFilter {
    flex-direction: column;
    gap: 1px;
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearch .ExpertSearchFilter {
    flex-direction: column;
    gap: 1px;
    margin-top: 0;
  }
}
.ExpertSearch .ExpertSearchFilter-item {
  flex: 1;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .ExpertSearch .ExpertSearchFilter-item {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearch .ExpertSearchFilter-item {
    width: 100%;
  }
}
.ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler] {
  width: 100%;
  height: 53px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  color: white;
  padding: 20px 30px;
  background-color: #0A4270;
  display: inline-block;
  transition: color 0.2s ease-in, background-color 0.2s ease-in, padding 0.2s ease-in;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler] {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler] {
    width: 100%;
  }
}
.ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler].active {
  background-color: #F7F7F7;
  color: #4a4a4a;
  padding: 20px 30px 55px 30px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler].active {
    background-color: #F1F1F1;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler].active {
    background-color: #F1F1F1;
    padding: 20px 30px;
  }
}
.ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler].active .arrow {
  border: solid #4a4a4a;
  border-width: 0 1px 1px 0;
  transform: rotate(-135deg);
  transition: transform 0.2s ease-in;
}
.ExpertSearch .ExpertSearchFilter-item [data-expert-tab-toggler] .arrow {
  position: absolute;
  top: 24px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  right: 20px;
  transition: transform 0.2s ease-in;
}
.ExpertSearch .ExpertSearchFilter-filters {
  display: none;
  background-color: #F7F7F7;
  color: #000;
  padding: 30px;
  position: absolute;
  left: 0;
  top: 75px;
  width: 100%;
  z-index: 10;
  min-height: 350px;
}
@media screen and (min-width: 1024px) {
  .ExpertSearch .ExpertSearchFilter-filters {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    align-items: flex-start;
    align-content: baseline;
  }
}
@media screen and (max-width: 1024px) {
  .ExpertSearch .ExpertSearchFilter-filters {
    position: static;
    column-fill: balance;
    columns: 200px 3;
    height: auto;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearch .ExpertSearchFilter-filters {
    columns: 2;
  }
}
.ExpertSearch .ExpertSearchFilter-filters li {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .ExpertSearch .ExpertSearchFilter-filters li {
    margin-top: 25px;
  }
  .ExpertSearch .ExpertSearchFilter-filters li:first-child {
    margin-top: 0;
  }
}
.ExpertSearch .ExpertSearchFilter-filters input {
  display: none;
}
.ExpertSearch .ExpertSearchFilter-filters input:checked + label:after {
  content: "";
  position: absolute;
  left: 2px;
  top: -1px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  background-color: #FF6052;
}
.ExpertSearch .ExpertSearchFilter-filters [data-expert-filter] + label {
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.ExpertSearch .ExpertSearchFilter-filters [data-expert-filter] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #FF6052;
  background-color: #FFF;
}

.ExpertBackToSearch {
  text-align: left;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .ExpertBackToSearch {
    margin-top: 80px;
  }
}
@media screen and (max-width: 540px) {
  .ExpertBackToSearch {
    margin-top: 80px;
  }
}
.ExpertBackToSearch a {
  font-size: 1em;
}

.ExpertActiveFilter {
  background-color: #F7F7F7;
  width: 100%;
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-content: center;
  padding: 10px 190px 10px 20px;
  min-height: 53px;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .ExpertActiveFilter {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .ExpertActiveFilter {
    display: none;
  }
}
.ExpertActiveFilter button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 13px;
  color: #fff;
  display: block;
  width: 180px;
  height: 100%;
  background-color: #FF6052;
  transition: background-color 0.2s ease-in;
}
.ExpertActiveFilter button:hover {
  background-color: #FF4A26;
}
.ExpertActiveFilter button:before {
  content: "";
  top: calc(50% - 13px);
  position: absolute;
  left: 20px;
  background-image: url(/ui/assets/images/large-cross.svg);
  background-size: 27px 27px;
  height: 27px;
  width: 27px;
}
.ExpertActiveFilter-item {
  cursor: pointer;
  background-color: #FFF;
  padding: 10px 30px 10px 10px;
  border-radius: 25px;
  position: relative;
  color: #9B9B9B;
  font-size: 13px;
}
.ExpertActiveFilter-item:after {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  right: 9px;
  background-image: url(/ui/assets/images/gray-cross.svg);
  background-size: 11px 11px;
  height: 11px;
  width: 11px;
}

.ExpertSearchResult {
  display: block;
  margin-top: 30px;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  margin-left: -30px;
  font-size: 0;
  width: calc(100% + 30px);
}
.ExpertSearchResult-item {
  display: inline-block;
  width: 33.3333333333%;
  padding-left: 30px;
  padding-bottom: 30px;
  vertical-align: top;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .ExpertSearchResult-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ExpertSearchResult-item {
    width: 50%;
  }
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .ExpertSearchResult-item {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .ExpertSearchResult-item {
    width: 100%;
  }
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Tags {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 10px;
  align-content: center;
}
.Tags-item a, .Tags-item span {
  color: #FFF;
  padding: 10px;
  border-radius: 25px;
  position: relative;
  font-size: 13px;
}
.Tags-item span {
  background-color: #e6f0f7;
  color: #061f36;
}
.Tags-item a:not(.test) {
  background-color: #FF6052;
  color: #FFF;
}
.Tags-item a:not(.test):hover {
  color: #FFF;
  background-color: #FF4A26;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.Expert {
  background-color: #F7F7F7;
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  transition: background-color 0.2s ease-in-out;
}
.Expert:hover {
  background-color: #F1F1F1;
}
.Expert-image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 50%;
  background-color: #FFF;
  width: 90px;
  height: 90px;
}
.Expert-name {
  color: #076BB2;
  font-family: "ff-real-headline-pro", sans-serif;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}
.Expert-title {
  display: block;
  font-family: "ff-real-headline-pro", sans-serif;
  color: #9B9B9B;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1.3px;
}
.Expert-location {
  display: block;
  font-family: "ff-real-headline-pro", sans-serif;
  color: #000;
  font-size: 13px;
  letter-spacing: 1.3px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Expert-locationPin {
  width: 16px;
  height: 20px;
  margin-right: 8px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.LocationList {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
.LocationList-item {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
.LocationList-item span {
  font-family: "ff-real-headline-pro-2", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-size: 16px;
  color: #9B9B9B;
}
@media screen and (min-width: 541px) and (max-width: 767px) {
  .LocationList-item span {
    font-size: 22px;
  }
}
@media screen and (max-width: 540px) {
  .LocationList-item span {
    font-size: 22px;
  }
}
.LocationList-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.LocationList-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #9B9B9B;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.paragraph-block {
  max-width: 993px;
  margin: 0 auto;
}
.paragraph-block h2 {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 36px;
  color: #076BB2;
  margin-bottom: 30px;
}
.paragraph-block h2:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .paragraph-block h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 540px) {
  .paragraph-block h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.paragraph-block.-wide {
  max-width: 1180px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.information-block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 30px 60px;
  height: 100%;
  text-align: center;
}
.information-block h2, .information-block p {
  color: #000;
}
.information-block.-orange {
  background-color: #FF6052;
}
.information-block.-orange h2, .information-block.-orange p {
  color: #FFF;
}
.information-block.-blue, .MainContent.-error h1.information-block {
  background-color: #076BB2;
}
.information-block.-blue h2, .MainContent.-error h1.information-block h2, .information-block.-blue p, .MainContent.-error h1.information-block p {
  color: #FFF;
}
.information-block.-light-blue {
  background-color: #24ABFF;
}
.information-block.-light-blue h2, .information-block.-light-blue p {
  color: #FFF;
}
.information-block.-black {
  background-color: #000;
}
.information-block.-black h2, .information-block.-black p {
  color: #FFF;
}
.information-block-heading {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 38px;
}
.information-block-text {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
}
.information-block-text blockquote + p {
  color: #FF6052;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.information-button {
  font-family: "ff-real-headline-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 21px;
  display: inline-block;
  background-color: #FF6052;
  margin-top: 60px;
  margin-bottom: 60px;
  color: #FFF;
  padding: 12px 30px;
}

/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
/* SHOULD ONLY INCLUDE MIXINS */
/****** TYPOGRAPHY ******/
/****** COLORS ******/
/*primary*/
/*secondary*/
/*default*/
/****** RESPONSIVENESS ******/
/*media queries*/
/*breakpoints*/
.block-grid {
  padding: 30px 0px;
  display: grid;
  grid-auto-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 10px;
}
@media screen and (min-width: 541px) and (max-width: 1023px) {
  .block-grid {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .block-grid {
    display: block;
  }
}

.text-area-label {
  margin-bottom: 3px;
  font-size: 13px;
  color: #9B9B9B;
}

.profile-textarea {
  height: 90px !important;
}

.form-check-input {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 13px;
}
.form-check-input p {
  margin-bottom: 0 !important;
  font-weight: 600;
}

.form-field-wrapper.select {
  margin-top: -4px;
}

.select-alt-label {
  margin-bottom: 3px;
}

.select-alt .option-label {
  padding: 12px 20px 9px 0 !important;
}
