html {
  font-size: 15px;
  font-weight: 300;
}

body {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}

header {
  position: relative;
  z-index: 2000;
  /*background-color: $brandPrimary;*/
  background-color: #fff;
}

a.button, button, .umbraco-forms-navigation input[type=submit] {
  display: inline-block;
  outline: none;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  padding: 8px 30px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  background-color: #3cb5a1;
  color: #fff;
  cursor: pointer;
}
a.button:hover, button:hover, .umbraco-forms-navigation input[type=submit]:hover {
  filter: saturate(140%);
}
a.button.primary-action, a.button.btn.primary, button.primary-action, button.btn.primary, .umbraco-forms-navigation input[type=submit].primary-action, .umbraco-forms-navigation input[type=submit].btn.primary {
  background-color: #2399ff;
  color: #fff;
}
a.button.primary-action.outlined, a.button.btn.primary.outlined, button.primary-action.outlined, button.btn.primary.outlined, .umbraco-forms-navigation input[type=submit].primary-action.outlined, .umbraco-forms-navigation input[type=submit].btn.primary.outlined {
  background-color: #fff;
  color: #2399ff;
  border: solid 1px #2399ff;
}
a.button.on-dark, button.on-dark, .umbraco-forms-navigation input[type=submit].on-dark {
  background-color: #2399ff;
  color: #fff;
}
a.button.semi-large, button.semi-large, .umbraco-forms-navigation input[type=submit].semi-large {
  font-size: 1.25rem;
  padding: 12px 45px;
  border-radius: 45px;
}
a.button.large, a.button.btn.primary, button.large, button.btn.primary, .umbraco-forms-navigation input[type=submit].large, .umbraco-forms-navigation input[type=submit].btn.primary {
  font-size: 1.25rem;
  padding: 12px 36px;
  border-radius: 9px;
}
@media only screen and (min-width: 1024px) {
  a.button.large, a.button.btn.primary, button.large, button.btn.primary, .umbraco-forms-navigation input[type=submit].large, .umbraco-forms-navigation input[type=submit].btn.primary {
    font-size: 1.5rem;
    padding: 16px 60px;
  }
}
a.button[no-wrap], button[no-wrap], .umbraco-forms-navigation input[type=submit][no-wrap] {
  white-space: nowrap;
}
a.button[with-icon] .icon, button[with-icon] .icon, .umbraco-forms-navigation input[type=submit][with-icon] .icon {
  display: inline-block;
}
a.button[with-icon] .icon .feather, button[with-icon] .icon .feather, .umbraco-forms-navigation input[type=submit][with-icon] .icon .feather {
  color: #fff;
  height: 1rem;
  width: 1rem;
  transform: scale(1.3);
  position: relative;
  top: 1px;
  left: -8px;
}

[theme-front=brand-primary] {
  color: #e84458 !important;
}

[theme-front=brand-accent] {
  color: #3cb5a1 !important;
}

[theme-front=brand-dark] {
  color: #10685d !important;
}

[theme-front=complementary-success] {
  color: #21d790 !important;
}

[theme-front=complementary-accent] {
  color: #e8511d !important;
}

[theme-front=complementary-neutral] {
  color: #1f7ba5 !important;
}

[theme-front=brand-additional-light] {
  color: #ff9800 !important;
}

[theme-back=brand-primary] {
  background-color: #e84458 !important;
  color: #fff !important;
}

[theme-back=brand-accent] {
  background-color: #3cb5a1 !important;
  color: #fff !important;
}

[theme-back=brand-dark] {
  background-color: #10685d !important;
  color: #fff !important;
}

[theme-back=complementary-success] {
  background-color: #21d790 !important;
  color: #fff !important;
}

[theme-back=complementary-accent] {
  background-color: #e8511d !important;
  color: #fff !important;
}

[theme-back=complementary-neutral] {
  background-color: #1f7ba5 !important;
  color: #fff !important;
}

[theme-back=brand-additional-light] {
  background-color: #ff9800 !important;
  color: #fff !important;
}

.form-flow select:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (min-width: 480px) {
  .flow-horizontal {
    display: flex;
    justify-content: space-between;
  }
}
.flow-horizontal > * {
  flex: 1;
}
.flow-horizontal > *:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 480px) {
  .flow-horizontal > *:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 480px) {
  .flow-horizontal > * {
    margin-right: 50px;
  }
  .flow-horizontal > *:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 480px) {
  .flow-horizontal[sub-level] > * {
    margin-right: 20px;
  }
  .flow-horizontal[sub-level] > *:last-child {
    margin-right: 0;
  }
}

.v-spacer {
  height: 40px;
}
.v-spacer.half {
  height: 20px;
}
.v-spacer.x1-5 {
  height: 60px;
}
.v-spacer.x2 {
  height: 80px;
}
.v-spacer.x3 {
  height: 120px;
}
.v-spacer.x4 {
  height: 160px;
}
.v-spacer.negative {
  height: 0;
  margin-top: -20px;
  margin-bottom: -20px;
}
.v-spacer.negative.half {
  margin-top: -10px;
  margin-bottom: -10px;
}
.v-spacer.negative.x1-5 {
  margin-top: -30px;
  margin-bottom: -30px;
}
.v-spacer.negative.x2 {
  margin-top: -40px;
  margin-bottom: -40px;
}
.v-spacer.negative.x3 {
  margin-top: -60px;
  margin-bottom: -60px;
}
.v-spacer.negative.x4 {
  margin-top: -80px;
  margin-bottom: -80px;
}

.no-whitespace {
  white-space: nowrap;
}

img[rounded] {
  border-radius: 0.325rem;
}
img[shadowed] {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3) !important;
}

.shape-hex-shadow {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.shape-hex-shadow:before {
  content: "";
  z-index: 0;
  position: absolute;
  left: 8%;
  width: 84%;
  padding-bottom: 84%;
  background-color: #000;
  top: 50%;
  margin-top: -42%;
  border-radius: 50%;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.shape-hex-shadow[animate-hover] {
  transition: transform 0.25s;
}
.shape-hex-shadow[animate-hover]:before {
  transition: box-shadow 0.25s;
}
.shape-hex-shadow[animate-hover]:hover {
  transform: translateY(-10px);
}
.shape-hex-shadow[animate-hover]:hover:before {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

.action-panel {
  border-radius: 0.3125rem;
  background-color: #2399ff;
  max-width: 600px;
  margin: 0 auto;
}
.action-panel:not([vertical]) {
  align-items: center;
  text-align: center;
}
.action-panel .texts {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-weight: 600;
}
@media only screen and (max-width: 649px) {
  .action-panel .texts {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .action-panel .texts {
    font-size: 3rem;
  }
}
.action-panel .texts .sub-text {
  font-size: 1.25rem;
  display: block;
  font-weight: 300;
  margin-top: 10px;
}
.action-panel:not([invert]) .texts {
  color: #fff;
}
.action-panel:not([invert]) .action .button {
  background-color: #000;
  color: #fff;
}
.action-panel .action {
  margin-top: 30px;
  text-align: center;
}
.action-panel[vertical] {
  padding: 20px;
}
.action-panel[vertical] .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.action-panel[vertical] .texts {
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .action-panel[vertical] .texts {
    font-size: 1.25rem;
  }
}
.action-panel[vertical] .action {
  margin-top: 20px;
  text-align: center;
}
.action-panel[invert] {
  background-color: #f5f5f5;
}

.actions[centered] {
  text-align: center;
}

.central-columns {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 599px) {
  .central-columns[from-large-resolution] {
    display: block;
  }
}
.central-columns .column {
  max-width: 400px;
  margin-right: 50px;
}
.central-columns .column:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1250px) {
  .central-columns[fifty-fifty] {
    flex-wrap: wrap;
  }
  .central-columns[fifty-fifty] .column {
    flex: 0 0 50%;
  }
  .central-columns[fifty-fifty] .column:nth-child(even) {
    margin-right: 0;
  }
  .central-columns[fifty-fifty] .column:nth-child(n+1) {
    margin-top: 50px;
  }
}

section.content-element > .inner > .content, section.content-element > .content {
  padding-top: 0;
  padding-bottom: 0;
}
section.content-element .content-element-inner + .content-element-inner {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-large-visual {
    display: flex;
    justify-content: space-between;
  }
  section.content-element .content-element-text-with-large-visual > :first-child {
    margin-right: 40px;
  }
}
section.content-element .content-element-text-with-large-visual > :first-child {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-large-visual > :first-child {
    margin-bottom: 0px;
  }
}
section.content-element .content-element-text-with-large-visual .text {
  flex: 1;
  padding-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  section.content-element .content-element-text-with-large-visual .text p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-large-visual .text {
    text-align: left;
  }
}
@media only screen and (max-width: 949px) {
  section.content-element .content-element-text-with-large-visual .text h1, section.content-element .content-element-text-with-large-visual .text h2, section.content-element .content-element-text-with-large-visual .text .title-contrast {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 950px) {
  section.content-element .content-element-text-with-large-visual .text {
    padding-top: 115px;
  }
}
section.content-element .content-element-text-with-large-visual .visual {
  flex: 1;
  text-align: center;
}
section.content-element .content-element-text-with-large-visual .visual img {
  width: 100%;
}
@media only screen and (min-width: 480px) {
  section.content-element .content-element-text-with-large-visual .visual img {
    width: 75%;
  }
}
@media only screen and (min-width: 1024px) {
  section.content-element .content-element-text-with-large-visual .visual img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual {
    display: flex;
    justify-content: space-between;
  }
  section.content-element .content-element-text-with-visual > :first-child {
    margin-right: 80px;
  }
}
section.content-element .content-element-text-with-visual > :first-child {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual > :first-child {
    margin-bottom: 0px;
  }
}
section.content-element .content-element-text-with-visual .text {
  flex: 5;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual .text {
    text-align: left;
  }
}
section.content-element .content-element-text-with-visual .visual {
  flex: 4;
  padding-top: 50px;
  text-align: center;
}
section.content-element .content-element-text-with-visual .visual img {
  width: 100%;
}
@media only screen and (min-width: 480px) {
  section.content-element .content-element-text-with-visual .visual img {
    width: 75%;
  }
}
@media only screen and (min-width: 768px -100px) {
  section.content-element .content-element-text-with-visual .visual img {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual .visual img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual-50-50 {
    display: flex;
    justify-content: space-between;
  }
  section.content-element .content-element-text-with-visual-50-50 > :first-child {
    margin-right: 40px;
  }
}
section.content-element .content-element-text-with-visual-50-50 > :first-child {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual-50-50 > :first-child {
    margin-bottom: 0px;
  }
}
section.content-element .content-element-text-with-visual-50-50 .text {
  flex: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual-50-50 .text {
    text-align: left;
  }
}
section.content-element .content-element-text-with-visual-50-50 .visual {
  flex: 1;
  text-align: center;
}
section.content-element .content-element-text-with-visual-50-50 .visual img {
  width: 100%;
}
@media only screen and (min-width: 480px) {
  section.content-element .content-element-text-with-visual-50-50 .visual img {
    width: 75%;
  }
}
@media only screen and (min-width: 768px -100px) {
  section.content-element .content-element-text-with-visual-50-50 .visual img {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-text-with-visual-50-50 .visual img {
    width: 100%;
  }
}
section.content-element .content-element-centered-text {
  text-align: center;
}
section.content-element .content-element-centered-text p {
  margin: 0 auto;
  max-width: 950px;
}
section.content-element .content-element-usp-columns-with-visuals-4 {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
section.content-element .content-element-usp-columns-with-visuals-4 .usp-column {
  text-align: center;
  margin-bottom: 40px;
}
section.content-element .content-element-usp-columns-with-visuals-4 .usp-column:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 700px) {
  section.content-element .content-element-usp-columns-with-visuals-4 {
    display: flex;
    justify-content: center;
    margin-left: -40px;
    flex-wrap: wrap;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  section.content-element .content-element-usp-columns-with-visuals-4 > * {
    margin-left: 40px;
  }
  section.content-element .content-element-usp-columns-with-visuals-4 .usp-column {
    flex: 1;
    max-width: 50%;
    min-width: 34%;
    text-align: left;
  }
  section.content-element .content-element-usp-columns-with-visuals-4 .usp-column:nth-child(3) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  section.content-element .content-element-usp-columns-with-visuals-4 {
    flex-wrap: nowrap;
    max-width: 100%;
  }
  section.content-element .content-element-usp-columns-with-visuals-4 .usp-column {
    max-width: 25%;
    min-width: 10%;
    margin-bottom: 0;
  }
}
section.content-element .content-element-usp-columns-with-visuals-4 p {
  font-size: 1rem;
  margin-top: 0px;
  margin-bottom: 0px;
}
section.content-element .content-element-usp-columns-with-visuals-4 .visual {
  width: 100%;
  height: 250px;
  text-align: center;
  margin-bottom: 20px;
}
section.content-element .content-element-usp-columns-with-visuals-4 .visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
section.content-element .content-element-text-with-video {
  text-align: center;
}
section.content-element .content-element-text-with-video .text {
  margin-bottom: 40px;
}
section.content-element .actions {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-texts-50-50 {
    display: flex;
    justify-content: space-between;
  }
  section.content-element .content-element-texts-50-50 > :first-child {
    margin-right: 40px;
  }
}
section.content-element .content-element-texts-50-50 > :first-child {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-texts-50-50 > :first-child {
    margin-bottom: 0px;
  }
}
section.content-element .content-element-texts-50-50 .text {
  flex: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.content-element .content-element-texts-50-50 .text {
    text-align: left;
  }
}

section.content-element.light-contrasting-background {
  position: relative;
  z-index: 2;
}
section.content-element.light-contrasting-background.variant1:before {
  content: "";
  height: 200px;
  background: url("/images/wave1-top.svg");
  background-size: 1024px 200px;
  background-position: center;
  display: block;
}
@media only screen and (min-width: 1024px) {
  section.content-element.light-contrasting-background.variant1:before {
    background-size: 100% 200px;
  }
}
section.content-element.light-contrasting-background.variant1:after {
  content: "";
  height: 300px;
  background: url("/images/wave1-bottom.svg");
  background-size: 1024px 300px;
  background-position: center;
  display: block;
}
@media only screen and (min-width: 1024px) {
  section.content-element.light-contrasting-background.variant1:after {
    background-size: 100% 300px;
  }
}
section.content-element.light-contrasting-background.variant2:before {
  content: "";
  height: 200px;
  background: url("/images/wave2-top.svg");
  background-size: 1024px 200px;
  background-position: center;
  display: block;
}
@media only screen and (min-width: 1024px) {
  section.content-element.light-contrasting-background.variant2:before {
    background-size: 100% 200px;
  }
}
section.content-element.light-contrasting-background.variant2:after {
  content: "";
  height: 150px;
  background: url("/images/wave2-bottom.svg");
  background-size: 1024px 150px;
  background-position: center;
  display: block;
}
@media only screen and (min-width: 1024px) {
  section.content-element.light-contrasting-background.variant2:after {
    background-size: 100% 150px;
  }
}
section.content-element.light-contrasting-background.variant2 .inner {
  padding-bottom: 50px;
}
section.content-element.light-contrasting-background .inner {
  background-color: #f3f9fe;
}
section.content-element + section.content-element {
  margin-top: 150px;
}

section.content-element {
  color: #1d1d1b;
}
section.content-element h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0;
  padding-top: 20px;
  color: #3cb5a1;
}
@media only screen and (min-width: 768px) {
  section.content-element h1 {
    font-size: 3.25rem;
  }
}
section.content-element h2 {
  font-weight: 700;
  font-size: 1.56rem;
  color: #3cb5a1;
  margin-top: 0;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  section.content-element h2 {
    font-size: 2.55rem;
  }
}
section.content-element h2.no-margin-top {
  padding-top: 0px;
}
section.content-element .title-contrast {
  font-weight: 400;
  font-size: 1.56rem;
  color: #1d1d1b;
}
@media only screen and (min-width: 768px) {
  section.content-element .title-contrast {
    font-size: 2.55rem;
  }
}
section.content-element .title-contrast b {
  color: #3cb5a1;
}
section.content-element p {
  color: #1d1d1b;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.75rem;
}
section.content-element p b {
  font-weight: 900;
}
section.content-element p.narrowed {
  max-width: 400px;
}
section.content-element p.less-narrowed {
  max-width: 500px;
}
section.content-element p.no-margin-bottom {
  margin-bottom: 0;
}
section.content-element .actions {
  margin-top: 25px;
}

section.content-element.margin-for-overlap {
  margin-bottom: -400px;
}
@media only screen and (min-width: 768px) {
  section.content-element.margin-for-overlap {
    margin-bottom: -280px;
  }
}
@media only screen and (min-width: 1050px) {
  section.content-element.margin-for-overlap {
    margin-bottom: -400px;
  }
}

.fab {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  display: block;
  background-color: #fff;
  color: #000;
  height: 46px;
  text-decoration: none;
  line-height: 46px;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  padding: 0px 10px 0px 46px;
  border-radius: 23px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09) !important;
  border: solid 1px #eee;
}
.fab.news {
  bottom: 80px;
  background-color: #e84458;
  border: solid 1px #b01629;
  box-shadow: 0 0.5rem 1rem rgba(232, 68, 88, 0.19) !important;
}
.fab .icon {
  position: absolute;
  left: 6px;
  top: 6px;
  color: #2399ff;
  height: 32px;
}
.fab .icon .feather {
  width: 32px;
  height: 32px;
}

footer {
  color: #000;
  margin-bottom: 40px;
}
footer .start {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  footer .start {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
}
footer .slogan {
  margin-top: 30px;
  font-size: 0.95rem;
}
footer .rating {
  margin-top: 40px;
}
footer .rating .rating-description {
  margin-top: 10px;
  font-size: 0.85rem;
}
footer .marketing {
  order: 2;
}
@media only screen and (min-width: 1024px) {
  footer .marketing {
    order: 1;
  }
}
footer .lists {
  order: 1;
  margin-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  footer .lists {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  footer .lists {
    order: 2;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
footer .lists .list {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  footer .lists .list {
    text-align: left;
  }
}
footer .lists .list:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  footer .lists .list:not(:last-child) {
    margin-right: 80px;
    margin-bottom: 20px;
  }
}
footer .lists .list .heading {
  font-weight: 600;
  font-size: 1.05rem;
}
footer .lists .list a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #000;
  display: block;
  margin-top: 10px;
}
footer .end {
  margin-top: 40px;
  margin-bottom: -80px;
}
@media only screen and (min-width: 768px) {
  footer .end {
    display: flex;
  }
}
footer .end .item {
  display: block;
  margin-bottom: 20px;
  font-size: 0.75rem;
  text-decoration: none;
  color: #000;
}
@media only screen and (min-width: 768px) {
  footer .end .item {
    margin-bottom: 0;
  }
}
footer .end .item:not(:last-child) {
  margin-right: 40px;
}
footer .end a.item:hover {
  color: #e84458;
}
footer.clean {
  margin-bottom: -80px;
}
footer.clean .end .item {
  color: #28324e;
  font-weight: 400;
}
footer.clean .end a.item:hover {
  color: #3cb5a1;
}

.selection-image {
  cursor: pointer;
}

select, input[type=text], textarea, .selection-image {
  background-color: #fff;
  border: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.3125rem;
  font-size: 0.9rem;
  border-bottom: solid 2px #f0f3f9;
  box-shadow: 0 0.05rem 0.5rem rgba(0, 0, 0, 0.09) !important;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #000;
}

select, textarea, input[type=text] {
  height: 50px;
  padding: 0 10px;
  line-height: 50px;
}

textarea::placeholder, input[type=text]::placeholder {
  color: #ddd;
}

@media only screen and (min-width: 480px) {
  .inputs-row {
    display: flex;
  }
}
.inputs-row:not(:last-child) {
  margin-bottom: 20px;
}
.inputs-row .input-container {
  flex: 1;
}
.inputs-row .x {
  flex: 0 0 20px;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
.inputs-row .x:after {
  content: "x";
}

.input-container:not(:last-child) {
  margin-bottom: 20px;
}
.input-container[no-margin] {
  margin-bottom: 0;
}
.input-container[data-post-fix] {
  position: relative;
}
.input-container[data-post-fix]:after {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  content: attr(data-post-fix);
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 50px;
  color: #000;
  font-size: 0.8rem;
}

.error-message {
  color: #f00;
  margin-top: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
}
.error-message[between] {
  margin-top: -15px;
  margin-bottom: 20px;
}

.info-message {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.info-message-detail {
  font-size: 0.7rem;
  margin-bottom: 20px;
}

[centered] {
  text-align: center;
}

input[type=file] {
  margin-top: 5px;
}
input[type=file]::-webkit-file-upload-button {
  display: inline-block;
  outline: none;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  padding: 8px 30px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.selection-image {
  padding: 20px;
  text-align: center;
  position: relative;
}
.selection-image img {
  width: 100%;
  max-width: 200px;
}
.selection-image .carrier-logo-container {
  margin-top: 5px;
}
.selection-image img.carrier-logo {
  max-width: 60px;
}
.selection-image .caption {
  color: #000;
  font-size: 0.8rem;
}
.selection-image .icon {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 24px;
  height: 24px;
  background-color: #eee;
  border-radius: 50%;
  color: #fff;
}
.selection-image .icon .feather {
  margin-top: 3px;
  margin-left: 1px;
  width: 20px;
  height: 20px;
}
.selection-image[selected] .icon {
  background-color: #3cb5a1;
}

.base-hero {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 1240px) {
  .base-hero {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) {
  .base-hero {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
}
.base-hero .texts {
  flex: 1;
  margin-right: 0;
  order: 2;
}
.base-hero .texts p {
  /*color: #fff;*/
  color: #64748b;
}
@media only screen and (min-width: 768px) {
  .base-hero .texts {
    order: 1;
    margin-right: 50px;
  }
}
.base-hero .texts h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  /*color: #fff;*/
  color: #e84458;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .base-hero .texts h1 {
    font-size: 3rem;
  }
}
.base-hero .texts h1[quoted] {
  font-size: 2rem;
  font-weight: bold;
  color: #3cb5a1;
}
.base-hero .texts h1[quoted]:before {
  content: '"';
}
.base-hero .texts h1[quoted]:after {
  content: '"';
}
.base-hero .texts h1[smaller] {
  font-size: 2rem;
}
.base-hero .texts h1 .text-rotate-container {
  display: block;
}
.base-hero .texts h1 .text-rotate {
  color: #000;
  font-weight: 600;
}
.base-hero .texts h1 .text-rotate-cursor {
  display: inline-block;
  width: 5px;
  height: 32px;
  margin-left: 8px;
  background-color: #000;
  animation: blink 0.7s ease 0s infinite;
  position: relative;
  top: 2px;
}
.base-hero .texts .actions {
  margin-top: 40px;
}
.base-hero .visuals {
  flex: 1;
  text-align: center;
  order: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .base-hero .visuals {
    order: 2;
    margin-bottom: 0;
  }
}
.base-hero .visuals img {
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  .base-hero .visuals img {
    max-width: 100%;
  }
}
.base-hero.text-only {
  display: flex;
  justify-content: center;
}
.base-hero.text-only .texts {
  text-align: center;
  flex: 0 0 75%;
  margin-right: 0;
}
.base-hero.text-only.wide-text .texts {
  flex: 0 0 100%;
}
.base-hero.text-only.wide-text .texts .sub-title {
  max-width: 100%;
}
.base-hero .title {
  /*color: #fff;*/
  color: #e84458;
}
.base-hero .title.multiple {
  font-size: 2.5rem;
  font-weight: 300;
}
.base-hero .title.multiple span {
  font-weight: 700;
}
.base-hero .logos-text {
  margin-top: 60px;
  font-weight: 400;
  color: #b9b9c3;
  font-size: 0.9rem;
}
.base-hero .logos {
  display: flex;
  align-items: center;
  margin-top: -20px;
}
.base-hero .logos .logo img {
  max-width: 100px;
}
.base-hero .logos .logo:nth-child(2) {
  margin-left: 30px;
}
.base-hero .logos .logo:nth-child(2) img {
  max-width: 75px;
}
.base-hero .logos .logo:hover {
  opacity: 0.9;
}

.video-visual {
  position: relative;
}
.video-visual:hover .play-button {
  background-color: #2399ff;
}
.video-visual img {
  box-shadow: 0 1rem 4rem rgba(60, 181, 161, 0.2) !important;
  border-radius: 0.3125rem;
  cursor: pointer;
}
.video-visual .play-button {
  transition: all 0.2s;
  position: absolute;
  height: 72px;
  width: 72px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  left: 50%;
  margin-left: -36px;
  top: 50%;
  margin-top: -36px;
  font-size: 2rem;
  padding-top: 17px;
  padding-left: 6px;
  box-sizing: border-box;
  cursor: pointer;
}
.video-visual .play-button svg {
  transform: scale(1.5);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.info-steps {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 50px;
}
@media only screen and (min-width: 1250px) {
  .info-steps {
    max-width: 100%;
    padding-left: 0;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
}
.info-steps .info-step {
  flex: 1;
  position: relative;
  padding-right: 25px;
  padding-left: 30px;
  padding-top: 0;
  padding-bottom: 30px;
}
.info-steps .info-step .secondary-title {
  font-size: 1.5rem;
  margin-top: -8px;
}
@media only screen and (min-width: 600px) {
  .info-steps .info-step .secondary-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1250px) {
  .info-steps .info-step .secondary-title {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1250px) {
  .info-steps .info-step {
    padding-left: 15px;
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.info-steps .info-step:not(:last-child) {
  border-left: solid 1px rgba(85, 90, 100, 0.25);
}
@media only screen and (min-width: 1250px) {
  .info-steps .info-step:not(:last-child) {
    border-left: none;
    border-top: solid 1px rgba(85, 90, 100, 0.25);
  }
}
.info-steps .info-step .icon {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -15px;
  width: 30px;
  height: 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09) !important;
  color: #3cb5a1;
}
@media only screen and (min-width: 1250px) {
  .info-steps .info-step .icon {
    top: -15px;
    left: 0px;
  }
}
.info-steps .info-step .icon .feather {
  width: 16px;
  height: 16px;
  margin-left: 7px;
  margin-top: 7px;
}

.info-steps[large-icons] {
  margin-top: 40px;
  padding-left: 40px;
}
.info-steps[large-icons] .info-step {
  padding-left: 60px;
  padding-top: 20px;
}
@media only screen and (min-width: 1250px) {
  .info-steps[large-icons] .info-step {
    padding-left: 0;
    padding-top: 80px;
  }
}
.info-steps[large-icons] .info-step .icon {
  width: 80px;
  height: 80px;
  left: -40px;
}
@media only screen and (min-width: 1250px) {
  .info-steps[large-icons] .info-step .icon {
    top: -40px;
    left: -10px;
  }
}
.info-steps[large-icons] .info-step .icon .feather {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  margin-top: 20px;
}

.info-steps[small-titles] {
  margin-top: 40px;
}
@media only screen and (min-width: 1250px) {
  .info-steps[small-titles] .info-step {
    padding-top: 80px;
  }
}
.info-steps[small-titles] .info-step .secondary-title {
  font-size: 1.4rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .info-steps[small-titles] .info-step .secondary-title {
    font-size: 1.4rem;
  }
}
.info-steps[small-titles] .info-step .sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}
.info-steps[small-titles] .info-step p {
  font-size: 1rem;
}

.light-outlined-table {
  margin-top: 50px;
}
.light-outlined-table table tr td {
  border: solid #fff 2px;
  padding: 10px 20px;
}
.light-outlined-table table tr td:not(:first-child) {
  border-left: 0;
}
.light-outlined-table table tr td.row-heading {
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  font-weight: 700;
}
.light-outlined-table table tr:not(:first-child) td {
  border-top: 0;
}

@media only screen and (max-width: 599px) {
  .hide-small-screen {
    display: none;
  }
}

.show-small-screen {
  padding-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  .show-small-screen {
    display: none;
  }
}
.show-small-screen .light-outlined-table {
  margin: 0 20px;
  margin-bottom: 20px;
}

.map {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 500px;
  margin-bottom: -60px;
}

.panel {
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 40px;
  color: #000;
  border: none;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0.428rem;
  transition: all 0.2s;
  position: relative;
}
.panel[invert] {
  box-shadow: none;
  border: solid 3px #fff;
  background-color: transparent;
}
.panel[invert-alternative] {
  box-shadow: none;
  color: #e84458;
  background-color: #fff;
}
.panel[invert-alternative] .icon .feather {
  color: #3cb5a1 !important;
}
.panel[invert-alternative] p {
  color: #000;
}
.panel[animate-hover] {
  transition: transform 0.5s, box-shadow 0.5s;
  cursor: pointer;
}
.panel[animate-hover]:hover {
  transform: translateY(-15px);
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.09) !important;
}

@media only screen and (min-width: 1200px) {
  .panel > .columns {
    display: flex;
    justify-content: center;
  }
}
.panel > .columns > .column {
  flex: 1;
}
.panel > .columns > .column:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) {
  .panel > .columns > .column:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .panel > .columns > .column:not(:last-child) {
    margin-right: 20px;
  }
  .panel > .columns > .column:not(:first-child) {
    border-left: solid 1px #eee;
    padding-left: 20px;
  }
}

.party-logo {
  background-color: #fff;
  width: 200px;
  height: 200px;
  border: solid 1px #eee;
  border-radius: 50%;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 30px auto;
}
.party-logo[animate-hover] {
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.party-logo[animate-hover]:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.party-logo[no-border] {
  border: none;
}

.pills {
  display: flex;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .pills {
    display: flex;
    justify-content: flex-start;
  }
}
.pills .pill {
  margin-right: 20px;
  border: solid 1px #2399ff;
  color: #2399ff;
  position: relative;
  top: -6px;
}
.pills .pill .icon {
  position: relative;
  top: 6px;
}
.pills .pill .icon .feather {
  color: #2399ff;
}
.pills[clean] {
  flex-wrap: wrap;
  margin-top: -10px;
}
.pills[clean] .pill {
  padding-top: 10px;
  color: #000;
  font-weight: 500;
  border: none;
  white-space: nowrap;
}

.price-table .category {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (min-width: 800px) {
  .price-table .category {
    text-align: left;
  }
}
.price-table .groups {
  border: solid 1px #eee;
  padding: 40px;
  border-radius: 0.3125rem;
}
.price-table .group {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1250px) {
  .price-table .group {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
}
.price-table .group .group-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  padding-top: 32px;
}
@media only screen and (min-width: 1250px) {
  .price-table .group .group-heading {
    text-align: left;
    flex: 0 0 200px;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1249px) {
  .price-table .group .group-heading span {
    display: inline-block;
    padding: 5px 20px;
    background-color: #f7f9fc;
    border-radius: 0.325rem;
  }
}
.price-table .group:not(:last-child) {
  margin-bottom: 40px;
}
.price-table .lines {
  flex: 1;
}
@media only screen and (min-width: 800px) {
  .price-table .lines .line {
    display: flex;
    justify-content: space-between;
    display: flex;
    align-items: flex-end;
  }
}
.price-table .lines .line:not(:last-child) {
  margin-bottom: 5px;
}
.price-table .lines .line .description {
  flex: 3;
  color: #000;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 800px) {
  .price-table .lines .line .description {
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
  }
}
.price-table .lines .line .price {
  text-align: center;
  flex: 2;
  color: #000;
  font-size: 0.8rem;
}
@media only screen and (min-width: 800px) {
  .price-table .lines .line .price {
    padding-left: 30px;
    text-align: left;
  }
}
.price-table .lines .line .price .currency {
  display: inline-block;
  margin-right: 3px;
}
.price-table .lines .line[emphasize] {
  margin-bottom: 10px;
}
.price-table .lines .line[emphasize] .description {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}
.price-table .lines .line[emphasize] .price {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  top: 0.4rem;
  color: #000;
  padding-left: 0;
}
.price-table .lines .line[emphasize] .price .currency {
  font-size: 0.8rem;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -25px;
}
.price-table .lines .line[emphasize] .price .decimals {
  font-size: 1rem;
  display: inline-block;
  margin-left: 3px;
}
.price-table .lines .line[note] {
  display: none;
  margin-top: 10px;
}
@media only screen and (min-width: 800px) {
  .price-table .lines .line[note] {
    display: flex;
  }
}
.price-table .lines .line[note] .description {
  color: #3cb5a1;
  font-weight: bold;
}
.price-table .groups + .category {
  margin-top: 30px;
}

.quotes-block {
  display: flex;
  justify-content: center;
}
.quotes-block .image-container {
  margin-right: 75px;
}
@media only screen and (max-width: 599px) {
  .quotes-block .image-container {
    display: none;
  }
}
.quotes-block .image-container img {
  max-height: 300px;
}
@media only screen and (min-width: 768px) {
  .quotes-block .image-container img {
    max-height: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .quotes-block .image-container {
    margin-right: 100px;
  }
}
.quotes-block .text-container {
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
}
@media only screen and (min-width: 480px) {
  .quotes-block .text-container {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .quotes-block .text-container {
    font-size: 6rem;
  }
}

section > .content, section > .inner > .content {
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 1240px) {
  section > .content, section > .inner > .content {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
section > .content.no-top, section > .inner > .content.no-top {
  padding-top: 0;
}
section.darker {
  background-color: #f7f9fc;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section.dark {
  background-color: #10685d;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section.action {
  background-color: #2399ff;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section.invert {
  background-color: #3cb5a1;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section.invert.alternative {
  background-color: #009540;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section.alternate {
  background-color: #000;
  /*position: relative;

  &:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 0;
      height: 0;
      border-right: solid transparent 50vw;
      border-left: solid $backgroundColor 50vw;
      border-top: solid $backgroundColor 25px;
      border-bottom: solid transparent 25px;
  }

  &:after {
      content: '';
      position: absolute;
      left: 0;
      top: -50px;
      width: 0;
      height: 0;
      border-left: solid transparent 50vw;
      border-right: solid $backgroundColor 50vw;
      border-bottom: solid $backgroundColor 25px;
      border-top: solid transparent 25px;
  }*/
}
section[no-bottom]:before {
  display: none;
}

.simple-animation-remove-opacity {
  opacity: 1;
  transition: opacity 0.2s;
}
.simple-animation-remove-opacity[animation-active] {
  opacity: 0;
}
@media only screen and (max-width: 479px) {
  .simple-animation-remove-opacity[animation-active] {
    display: none;
  }
}

.team-members {
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (min-width: 1250px) {
  .team-members {
    flex-wrap: nowrap;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1249px) {
  .team-members .team-member {
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 40px;
  }
}
.team-members .team-member .photo {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.team-members .team-member .photo > img {
  max-width: 130px;
}
.team-members .team-member .photo .real {
  position: absolute;
  transition: all 0.3s;
  opacity: 0;
  top: 0;
  right: -30px;
  left: -30px;
  bottom: 0;
}
.team-members .team-member .photo .real img {
  width: 160px;
  border-radius: 50%;
}
.team-members .team-member .photo:hover .real {
  opacity: 1;
}
.team-members .team-member .secondary-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #3cb5a1;
}
.team-members .team-member .function {
  text-align: center;
  text-transform: uppercase;
}
.team-members[with-vacancy] img {
  width: 130px;
}

.text-with-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1023px) {
  .text-with-visual .text {
    order: 0;
  }
  .text-with-visual .visual {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .text-with-visual {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .text-with-visual :first-child {
    margin-right: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .text-with-visual :first-child {
    margin-right: 100px;
  }
}
.text-with-visual .text {
  max-width: 500px;
}
@media only screen and (min-width: 1024px) {
  .text-with-visual .text {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .text-with-visual .visual {
    flex: 0 0 500px;
  }
}

.transit-lines .column {
  width: 300px;
}
@media only screen and (max-width: 699px) {
  .transit-lines {
    display: block;
  }
  .transit-lines .column {
    margin: 0 auto;
    margin-right: auto !important;
    margin-left: auto;
  }
  .transit-lines .column:not(:last-child) {
    margin-bottom: 30px;
  }
}

.transit-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  color: #fff;
}
.transit-line:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.transit-line.heading {
  background-color: rgba(255, 255, 255, 0.25);
  font-weight: bold;
}
.transit-line.category {
  background-color: #10685d;
  color: #fff;
  font-weight: bold;
}
.transit-line .location {
  margin-right: 20px;
}
.transit-line .time {
  text-align: right;
  white-space: nowrap;
}

.transit-disclaimer {
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
}

.title, h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #e84458;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .title, h1 {
    font-size: 3rem;
  }
}
.title[centered], h1[centered] {
  text-align: center;
}
.title[small], h1[small] {
  font-size: 1rem;
}
.title[invert], h1[invert] {
  color: #fff;
}

.secondary-title, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.secondary-title[centered], h2[centered], h3[centered], h4[centered] {
  text-align: center;
}
.secondary-title[smaller], h2[smaller], h3[smaller], h4[smaller] {
  font-size: 1.25rem;
}
.secondary-title[invert], h2[invert], h3[invert], h4[invert] {
  color: #fff;
}

h2, h3, h4 {
  font-size: 1.6rem;
}

.supporting-title {
  color: #000;
  margin-bottom: 10px;
}
.supporting-title[centered] {
  text-align: center;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #64748b;
}
@media only screen and (min-width: 768px) {
  p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
p[centered] {
  text-align: center;
}
p[contained] {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
p[contained][less] {
  max-width: 900px;
}
p[smaller] {
  font-size: 1rem;
  line-height: 1.5rem;
}
p[invert] {
  color: #fff;
  padding: 0 20px;
}

ul li {
  font-size: 1.2rem;
  line-height: 2rem;
}

section.invert .title, section.invert .secondary-title {
  color: #fff;
}
section.invert p {
  color: rgba(255, 255, 255, 0.8);
}
section.invert ul li {
  color: rgba(255, 255, 255, 0.8);
}

section.dark .title, section.dark .secondary-title {
  color: #fff;
}

.marked {
  position: relative;
  display: inline-block;
  transform: translate(0);
  z-index: 1;
}
.marked:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  background-color: rgba(255, 152, 0, 0.5);
  bottom: 0;
  top: 50%;
}
.marked.full:after {
  top: -5px;
  bottom: -5px;
}

.text-dark {
  color: #000;
}

.text-lighter {
  color: #64748b;
}

.text-light {
  color: #b9b9c3;
}

.text-300 {
  font-weight: 300;
}

.text-400 {
  font-weight: 400;
}

.text-500 {
  font-weight: 500;
}

.text-600 {
  font-weight: 600;
}

.text-700 {
  font-weight: 700;
}

.title {
  /*color: #fff;*/
  color: #e84458;
}
.title.multiple {
  font-size: 1.5rem;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .title.multiple {
    font-size: 2.5rem;
  }
}
.title.multiple span {
  font-weight: 700;
}

.title-pill {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 3px 20px;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 3px;
}

.usps {
  margin-bottom: 30px;
}
.usps .usp {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font-weight: bold;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
.usps .usp .icon {
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #3cb5a1;
  line-height: 30px;
}
.usps .usp .icon .feather {
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
}
.usps[smaller] .usp {
  font-weight: normal;
}
.usps[smaller] .usp .icon {
  width: 24px;
  height: 24px;
  line-height: 24px;
  top: 0px;
}
.usps[smaller] .usp .icon .feather {
  width: 0.9rem;
  height: 0.9rem;
  vertical-align: middle;
}
.usps[smallest] .usp {
  font-weight: normal;
  font-size: 0.9rem;
  padding-left: 30px;
}
.usps[smallest] .usp .icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  top: 0px;
}
.usps[smallest] .usp .icon .feather {
  width: 0.7rem;
  height: 0.7rem;
  vertical-align: middle;
}
.usps[invert] .usp {
  color: #fff;
}
.usps[invert] .usp .icon {
  background-color: #e84458;
  color: #000;
}
.usps[clean] .usp {
  font-weight: 400;
  text-align: left;
}
.usps[clean] .usp .icon {
  color: #21d790;
  background-color: #fff;
  width: 24px;
  height: 24px;
  top: -4px;
}
.usps[clean] .usp .icon .feather {
  width: 1.5rem;
  height: 1.5rem;
}

.vertical-steps {
  margin-left: 20px;
  margin-right: 20px;
  max-width: 800px;
  margin-top: 100px;
}
@media only screen and (min-width: 1240px) {
  .vertical-steps {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.vertical-steps .vertical-step {
  display: flex;
}
.vertical-steps .vertical-step:not(:last-child) .text-container {
  border-left: solid 1px rgba(85, 90, 100, 0.25);
}
.vertical-steps .vertical-step .image-container {
  position: absolute;
  left: 80px;
  right: 0;
  text-align: center;
  padding-right: 40px;
  flex: 0 0 200px;
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .image-container {
    left: 0;
    position: relative;
    padding-right: 80px;
  }
}
.vertical-steps .vertical-step .image-container img {
  height: 140px;
}
@media only screen and (min-width: 375px) {
  .vertical-steps .vertical-step .image-container img {
    height: 170px;
  }
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .image-container img {
    width: 100%;
    height: auto;
    position: relative;
    top: -70px;
  }
}
.vertical-steps .vertical-step .text-container {
  flex: 1;
  padding-left: 40px;
  padding-top: 210px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .text-container {
    padding-top: 0;
    padding-left: 80px;
  }
}
.vertical-steps .vertical-step .text-container .icon {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: -15px;
  width: 30px;
  height: 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09) !important;
  color: #3cb5a1;
}
.vertical-steps .vertical-step .text-container .icon .feather {
  width: 16px;
  height: 16px;
  margin-left: 7px;
  margin-top: 7px;
}
.vertical-steps .vertical-step .text-container .content {
  margin-top: -7px;
  padding-bottom: 50px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .text-container .content {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .text-container .logos {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
  }
}
.vertical-steps .vertical-step .text-container .logos .logo {
  margin-bottom: 20px;
}
.vertical-steps .vertical-step .text-container .logos .logo:not(:last-child) {
  margin-right: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .vertical-steps .vertical-step .text-container .logos .logo:not(:last-child) {
    margin-right: 50px;
    margin-bottom: 0;
  }
}
.vertical-steps .vertical-step .text-container .logos .logo img {
  max-height: 40px;
}

.video-player-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-player-container .video-player {
  text-align: center;
  margin-top: 100px;
}
.video-player-container .video-player .video-close {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 20px;
  cursor: pointer;
}
.video-player-container .video-player iframe {
  width: 320px;
  height: 180px;
}
@media only screen and (min-width: 420px) {
  .video-player-container .video-player iframe {
    width: 400px;
    height: 226px;
  }
}
@media only screen and (min-width: 640px) {
  .video-player-container .video-player iframe {
    width: 620px;
    height: 351px;
  }
}
@media only screen and (min-width: 860px) {
  .video-player-container .video-player iframe {
    width: 840px;
    height: 475px;
  }
}

.blog-page {
  margin-top: -75px;
}
@media only screen and (min-width: 1024px) {
  .blog-page {
    display: flex;
  }
}
.blog-page .main-image {
  margin-bottom: 20px;
}
.blog-page .main-image img {
  width: 100%;
}
.blog-page .back {
  text-decoration: none;
  color: #3cb5a1;
  font-size: 0.9rem;
}
.blog-page .back .las {
  font-size: 1.5em;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
}
.blog-page .person {
  display: flex;
  align-items: center;
  margin-top: -5px;
  margin-bottom: 50px;
}
.blog-page .person .avatar {
  flex: 0 0 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-page .person .avatar img {
  width: 100%;
  height: auto;
}
.blog-page .person .name-and-time {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 10px;
}
.blog-page .person .name-and-time b {
  font-size: 1rem;
}
.blog-page .main {
  flex: 1;
  margin-bottom: 50px;
}
.blog-page .main .title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 2.5rem;
}
@media only screen and (min-width: 1024px) {
  .blog-page .main {
    margin-bottom: 0;
    margin-right: 80px;
  }
}
.blog-page aside {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  flex: 0 0 300px;
}
@media only screen and (min-width: 1024px) {
  .blog-page aside {
    max-width: 300px;
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  .blog-page aside .action-container {
    position: fixed;
    width: 300px;
    top: 175px;
  }
}
.blog-page aside .action-container .action-panel {
  margin-top: 0;
}

.blogs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
@media only screen and (min-width: 700px) {
  .blogs {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1150px) {
  .blogs {
    max-width: 100%;
  }
}
.blogs .blog-panel-container {
  margin-bottom: 15px;
  flex: 0 0 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 700px) {
  .blogs .blog-panel-container {
    margin-bottom: 0;
    padding: 15px;
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 1150px) {
  .blogs .blog-panel-container {
    flex: 0 0 33%;
  }
}
.blogs .blog-panel {
  padding: 0;
  cursor: pointer;
  max-width: 400px;
  margin: 0 auto;
}
.blogs .blog-panel .image-container {
  overflow: hidden;
  width: 100%;
  padding-bottom: 60%;
  position: relative;
}
.blogs .blog-panel .image-container img {
  position: absolute;
  width: 100%;
  height: auto;
  transition: all 0.2s;
}
.blogs .blog-panel .content {
  padding: 30px;
}
.blogs .blog-panel .content .secondary-title {
  font-size: 1.5rem;
}
.blogs .blog-panel .content p {
  font-size: 1.1rem;
}
.blogs .blog-panel .content .textual {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blogs .blog-panel .content .textual:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #fff);
}
.blogs .blog-panel .content .continue {
  color: #2399ff;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Space Grotesk", sans-serif;
}
.blogs .blog-panel .content .person {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.blogs .blog-panel .content .person .avatar {
  flex: 0 0 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
}
.blogs .blog-panel .content .person .avatar img {
  width: 100%;
  height: auto;
}
.blogs .blog-panel .content .person .name-and-time {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 10px;
}
.blogs .blog-panel .content .person .name-and-time b {
  font-size: 0.8rem;
}
.blogs .blog-panel:hover .image-container img {
  transform: scale(1.1);
}

.calculator-panel {
  max-width: 500px;
  margin: 0 auto;
}
.calculator-panel[as-top] {
  margin-top: -200px;
}
@media only screen and (min-width: 1200px) {
  .calculator-panel {
    max-width: 100%;
  }
}
.calculator-panel .panel-top {
  display: flex;
  border-bottom: solid 1px #eee;
  margin: -40px -40px 40px -40px;
  padding: 21px 40px 20px 40px;
  height: 23px;
  overflow-y: hidden;
  justify-content: space-between;
}
.calculator-panel .panel-top .to {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
.calculator-panel .panel-top .to .image-span {
  display: inline-block;
  position: relative;
  margin-left: 10px;
}
.calculator-panel .panel-top .to .image-span img {
  position: absolute;
  height: 25px;
  top: -17px;
}
.calculator-panel .panel-top .from {
  margin-top: -20px;
  margin-bottom: -20px;
}
.calculator-panel .panel-top .from .label {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  padding: 20px 0;
}
.calculator-panel .panel-top .from .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  color: #000;
  margin-left: 20px;
  padding: 20px 0 18px 0;
  display: inline-block;
  cursor: pointer;
}
.calculator-panel .panel-top .from .name.selected {
  color: #3cb5a1;
  font-weight: 500;
  border-bottom: solid 3px #3cb5a1;
}

@media only screen and (max-width: 1099px) {
  .carrier-usps {
    display: flex;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .carrier-usps .column {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .carrier-usps .column:not(:last-child) {
    margin-bottom: 40px;
  }
}
.carrier-usps .party-logo.deutschepost {
  background-color: #fdf858;
}

.connections {
  text-align: center;
}
.connections img {
  max-width: 800px;
}

.countries .list {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.countries .list .country {
  min-width: 40%;
  flex: 1;
  display: flex;
  margin-top: 40px;
  cursor: pointer;
}
.countries .list .country:nth-child(odd) {
  margin-right: 40px;
}
.countries .list .country .image {
  flex: 0 0 70px;
}
.countries .list .country .image img {
  width: 50px;
  height: 50px;
}
.countries .list .country .texts {
  flex: 1;
  border-bottom: solid 1px rgba(85, 90, 100, 0.25);
  padding-top: 3px;
  padding-bottom: 10px;
}
.countries .list .country .texts .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
}
.countries .list .country .texts .description {
  color: #000;
  font-size: 0.9rem;
}
.countries .list .country .button-icon {
  border-bottom: solid 1px rgba(85, 90, 100, 0.25);
  flex: 0 0 40px;
  text-align: right;
  padding-top: 10px;
  transition: all 0.2s;
}
.countries .list .country:hover .button-icon {
  transform: translateX(5px);
}

.contact-details {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1240px) {
  .contact-details {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) {
  .contact-details .contact-columns {
    display: flex;
    justify-content: space-around;
  }
}
.contact-details .contact-columns .column {
  max-width: 300px;
  margin: 0 auto;
}
.contact-details .contact-columns .column:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .contact-details .contact-columns .column:not(:last-child) {
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.contact-details .contact-detail {
  text-align: center;
}
.contact-details .contact-detail .icon {
  color: #3cb5a1;
}
.contact-details .contact-detail .icon .feather {
  width: 48px;
  height: 48px;
}
.contact-details .addition {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #000;
}

.equation {
  max-width: 700px;
  margin: 0 auto;
  font-size: 2rem;
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .equation {
    font-size: 3rem;
  }
}
.equation .plus {
  color: #3cb5a1;
  font-size: 6rem;
  border-bottom: solid 5px #3cb5a1;
  text-align: right;
  margin-bottom: 20px;
  margin-top: -90px;
}
.equation .team {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
  font-size: 2rem;
}
.equation .team img {
  max-width: 100%;
  margin-bottom: 20px;
}

.faq-columns {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .faq-columns {
    column-count: 2;
    column-gap: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .faq-columns {
    column-count: 3;
  }
}

.faq-page {
  margin-top: -75px;
}
@media only screen and (min-width: 1024px) {
  .faq-page {
    display: flex;
  }
}
.faq-page .back {
  text-decoration: none;
  color: #3cb5a1;
  font-size: 0.9rem;
}
.faq-page .back .las {
  font-size: 1.5em;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
}
.faq-page .main {
  flex: 1;
  margin-bottom: 50px;
}
.faq-page .main .title {
  margin-top: 10px;
  font-size: 2rem;
}
@media only screen and (min-width: 1024px) {
  .faq-page .main {
    margin-bottom: 0;
    margin-right: 50px;
  }
}
.faq-page aside {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  flex: 0 0 380px;
}
.faq-page aside .faq-panel .secondary-title {
  font-size: 1.5rem;
}

.faq-panel {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.faq-panel .heading {
  display: flex;
  margin-bottom: 10px;
}
.faq-panel .heading .icon {
  font-size: 3rem;
  flex: 0 0 60px;
}
.faq-panel .heading .secondary-title {
  padding-top: 6px;
  font-size: 1.75rem;
}
.faq-panel .question {
  margin: 0 -40px;
  padding: 20px 40px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.faq-panel .question:not(:nth-child(2)) {
  border-top: solid 1px #eee;
}
.faq-panel .question:last-child {
  margin-bottom: -40px;
}
.faq-panel .question:hover {
  color: #2399ff;
}
.faq-panel .question:hover span:last-child {
  transform: translateX(25px);
}
.faq-panel .question span:last-child {
  font-size: 1.5rem;
  color: #2399ff;
  transform: translateX(20px);
  transition: all 0.2s;
}
.faq-panel.faq-contact .secondary-title {
  margin-bottom: 0;
}
.faq-panel.faq-contact p {
  margin-top: 0;
  font-size: 15px;
}
.faq-panel.faq-contact .contact-line {
  display: flex;
  align-items: center;
}
.faq-panel.faq-contact .contact-line + .contact-line {
  margin-top: 10px;
}
.faq-panel.faq-contact .contact-line .icon-container {
  margin-right: 20px;
}
.faq-panel.faq-contact .contact-line .icon {
  font-size: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
}
.faq-panel.faq-contact .contact-line .icon.whatsapp {
  background-color: #25D366;
  color: #fff;
}
.faq-panel.faq-contact .contact-line .icon.mail {
  background-color: #2399ff;
  color: #fff;
}
.faq-panel.faq-contact .contact-line .value {
  font-weight: 500;
  font-size: 1.1rem;
}

@media only screen and (max-width: 767px) {
  .about-hero {
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) {
  .about-hero .visuals {
    margin-top: 50px;
  }
}
.about-hero h1 {
  /*color:#000 !important;*/
  color: #e84458;
  font-weight: 600 !important;
  margin-top: 20px;
  font-size: 2rem !important;
  margin-bottom: 40px !important;
}
@media only screen and (min-width: 768px) {
  .about-hero h1 {
    font-size: 4rem !important;
    margin-top: -20px;
  }
}
.about-hero .secondary-title {
  color: #000 !important;
}

.home-hero {
  height: 800px;
}

.component-hex {
  display: none;
  position: absolute;
  top: 0;
  height: 487px;
  pointer-events: none;
  overflow: hidden;
  left: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .component-hex {
    display: block;
  }
}
.component-hex.faded {
  opacity: 0.05;
}
.component-hex .hex {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
}
@media only screen and (min-width: 1240px) {
  .component-hex .hex {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.component-hex .hex:after {
  content: "";
  position: absolute;
  left: 100%;
  margin-left: -250px;
  width: 728px;
  height: 487px;
  background-image: url("/images/hex.svg");
  background-size: contain;
}

.test-hex {
  overflow: hidden;
  display: inline-block;
  margin: 4em 0;
  width: 20em;
  height: 17.32em;
  transform: rotate(-30deg) skewX(30deg);
  border-radius: 0.5em;
  position: relative;
}
.test-hex > .inner, .test-hex > .inner:not([with-image]):before, .test-hex > .inner > .image-container {
  content: "";
  display: block;
  overflow: hidden;
  width: inherit;
  height: inherit;
  border-radius: 0.5em;
}
.test-hex > .inner {
  content: "";
  transform: skewX(-30deg) rotate(60deg) skewX(30deg);
  cursor: pointer;
}
.test-hex > .inner:not([with-image]):before, .test-hex > .inner > .image-container {
  transform: skewX(-30deg) rotate(60deg) skewX(30deg);
  background: #fff;
  content: "";
}
.test-hex > .inner > .image-container > .image {
  margin-top: -1.5em;
  height: 20em;
  transform: skewX(-30deg) rotate(-90deg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 20em;
  text-align: center;
  content: "";
}
.test-hex > .inner > .image-container > .image[contain] {
  background-size: 80%;
}

.icon-usp-content {
  display: flex;
}
.icon-usp-content .icon {
  flex: 0 0 50px;
  margin-right: 20px;
}
.icon-usp-content .icon .feather {
  width: 50px;
  height: 50px;
}
.icon-usp-content .texts {
  flex: 1;
}
.icon-usp-content[invert] .icon .feather {
  color: #fff;
}

.landing header {
  background-color: #e84458;
  position: relative;
}
.landing header:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background-color: #3cb5a1;
}
.landing header .component-menu {
  background-color: #e84458;
  position: relative;
}
.landing header .component-menu nav a {
  color: #fff;
}
.landing header .component-menu nav a[actionable] {
  border: solid 1px #fff;
  padding: 3px 15px;
  border-radius: 25px;
}
.landing header .component-menu.clean .logo {
  margin: 20px auto;
}
.landing header .component-menu.clean .menu-icon {
  position: absolute;
  top: 30px;
  right: 20px;
  color: #fff;
  margin-right: 0;
}
.landing .landing-hero {
  background-color: #e84458;
  padding-bottom: 1px;
}
.landing .landing-hero[aligned-left] .base-hero.text-only .texts {
  text-align: left;
}
.landing .landing-hero[aligned-left] .base-hero.text-only .sub-title {
  margin-left: 0;
}
.landing .landing-hero[aligned-left] .base-hero.text-only .sub-title[centered] {
  margin: 0 auto;
  text-align: center;
}
.landing .landing-hero .base-hero {
  margin-top: -50px;
  padding-top: 25px;
}
.landing .landing-hero .base-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #fff;
}
.landing .landing-hero .base-hero .texts p {
  color: #fff;
}
.landing .landing-hero .base-hero .sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.landing .landing-hero .base-hero .action-caption {
  color: #fff;
  margin-top: 10px;
  font-size: 0.9rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.landing .landing-hero .base-hero .action-caption[larger] {
  font-size: 1.1rem;
  margin-top: 40px;
}
.landing .usps {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1240px) {
  .landing .usps {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.landing .usps .usp-image {
  height: 150px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .landing .usps .usp-image {
    height: 200px;
  }
}
.landing .usps .usp-image img {
  max-height: 100%;
  max-width: 100%;
}
.landing .usps .usp-icon .feather {
  width: 48px;
  height: 48px;
  color: #2399ff;
}
@media only screen and (max-width: 767px) {
  .landing .usps .central-columns {
    display: block;
    text-align: center;
  }
  .landing .usps .central-columns .column {
    margin: 0 auto;
  }
  .landing .usps .central-columns .column:not(:last-child) {
    margin-bottom: 50px;
  }
}
.landing .ratings {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 1240px) {
  .landing .ratings {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.landing .ratings .rating-items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .landing .ratings .rating-items {
    display: block;
  }
  .landing .ratings .rating-items .rating-item:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
}
.landing .ratings .rating-items .rating-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.landing .ratings .rating-items .rating-item:not(:last-child) {
  margin-right: 30px;
}
.landing .ratings .rating-items .rating-item .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.landing .ratings .rating-items .rating-item .quote {
  color: #000;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.25rem;
}
.landing .ratings .rating-items .rating-item .quote:before {
  content: '"';
}
.landing .ratings .rating-items .rating-item .quote:after {
  content: '"';
}
.landing .ratings .rating-items .rating-item .rating {
  margin-top: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #000;
}
.landing .ratings .rating-items .rating-item .rating .current {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #000;
}
.landing .ratings .rating-items .rating-item .name {
  text-align: right;
  color: #000;
  opacity: 0.7;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  margin-top: 5px;
}
.landing .ratings .more-link {
  font-weight: normal;
  color: #2399ff;
  display: block;
  font-size: 0.9rem;
  position: relative;
  top: 20px;
}
@media only screen and (min-width: 768px) {
  .landing .ratings .more-link {
    float: right;
    display: inline;
  }
}
@media only screen and (max-width: 1023px) {
  .landing .gift-columns {
    display: block;
  }
  .landing .gift-columns .column {
    margin: 0 auto;
  }
}
.landing .gift-columns .gift-column {
  margin-right: 50px;
  max-width: 500px;
}
@media only screen and (max-width: 1023px) {
  .landing .gift-columns .gift-column {
    margin-top: 30px;
    margin-bottom: 50px;
    margin-right: auto;
  }
}
.landing .gift-columns .gift {
  display: flex;
  justify-content: space-between;
}
.landing .gift-columns .gift .visual {
  flex: 0 0 100px;
  margin-right: 30px;
}
.landing .gift-columns .gift .visual img {
  width: 100%;
}
.landing .gift-columns .gift .text {
  flex: 1;
}
.landing .gift-columns .gift .text .usps {
  margin-top: 0;
}
.landing .gift-columns .gift .text .usps .usp {
  font-weight: normal;
  font-size: 1rem;
}
.landing .gift-columns .portal-image {
  max-width: 400px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}
@media only screen and (max-width: 1023px) {
  .landing .gift-columns .portal-image {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .landing .gift-columns .extra-column {
    text-align: center;
    margin-bottom: 50px;
  }
}
.landing .gift-actions {
  margin-top: 50px;
}

.landing-image {
  text-align: center;
  padding: 0 20px;
  /*margin-top: -80px;*/
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}
.landing-image img {
  width: 100%;
  max-width: 1000px;
}

.landing-image-after-spacer {
  height: 125px;
}

.landing-calculator {
  text-align: center;
  padding: 0 20px;
  margin-top: -20px;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.landing-calculator .secondary-title {
  color: #000;
}

section.invert .landing-calculator .secondary-title {
  color: #000;
}

.landing-calculator-after-spacer {
  height: 150px;
}

.landing-calculator-results {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}

.laptop {
  text-align: center;
  padding: 0 20px;
  margin-top: -80px;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}
.laptop img {
  width: 100%;
  max-width: 1000px;
}
.laptop .screenshot-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.laptop .screenshot {
  width: 64.7%;
  position: absolute;
  left: 17.7%;
  padding-top: 11.5%;
}
.laptop .screenshot img {
  box-sizing: border-box;
  border-radius: 3px;
}

.laptop-after-spacer {
  height: 50px;
}

.component-menu {
  display: flex;
  justify-content: space-between;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*background-color: $brandPrimary;*/
  background-color: #fff;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-top: 0 !important;
  padding-top: 20px;
}
.component-menu:not(.clean) {
  /*background-color: #fff;
  border-bottom: solid 1px $colorBorder;*/
}
@media only screen and (min-width: 1024px) {
  .component-menu:not(.clean) {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px !important;
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 50px;
    position: static;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1240px) {
  .component-menu:not(.clean) {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1080px) {
  .component-menu:not(.clean) nav {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 1079px) {
  .component-menu:not(.clean) nav {
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.2s;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(60, 181, 161, 0.9);
    display: flex;
    flex-direction: column;
    display: flex;
    justify-content: center;
  }
  .component-menu:not(.clean) nav a, .component-menu:not(.clean) nav .with-sub {
    color: transparent;
    font-size: 1.5rem;
    margin-right: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transition-delay: 0.2s;
    transform: translateY(-10px);
  }
  .component-menu:not(.clean) nav a:not(:last-child), .component-menu:not(.clean) nav .with-sub:not(:last-child) {
    margin-bottom: 20px;
  }
  .component-menu:not(.clean) nav.mobile-show {
    z-index: 1000;
    transform: scale(1);
  }
  .component-menu:not(.clean) nav.mobile-show a, .component-menu:not(.clean) nav.mobile-show .with-sub {
    opacity: 1;
    color: #fff;
    transform: translateY(0);
  }
  .component-menu:not(.clean) nav.mobile-show .sub {
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1080px) {
  .component-menu:not(.clean) nav .with-sub .sub-icon {
    display: inline;
  }
}
@media only screen and (min-width: 1080px) {
  .component-menu:not(.clean) nav .subs {
    display: none;
    position: absolute;
    padding: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09) !important;
    border-radius: 0.3125rem;
    background-color: #fff;
  }
}
@media only screen and (min-width: 1080px) {
  .component-menu:not(.clean) nav .subs .sub {
    white-space: nowrap;
  }
}
.component-menu:not(.clean) .menu-icon {
  /*color: #fff;*/
  color: #000;
}
@media only screen and (min-width: 1080px) {
  .component-menu:not(.clean) .menu-icon {
    display: none;
  }
}
.component-menu.clean nav {
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.2s;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(60, 181, 161, 0.9);
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.component-menu.clean nav a, .component-menu.clean nav .with-sub {
  color: transparent;
  font-size: 1.5rem;
  margin-right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transition-delay: 0.2s;
  transform: translateY(-10px);
}
.component-menu.clean nav a:not(:last-child), .component-menu.clean nav .with-sub:not(:last-child) {
  margin-bottom: 20px;
}
.component-menu.clean nav.mobile-show {
  z-index: 1000;
  transform: scale(1);
}
.component-menu.clean nav.mobile-show a, .component-menu.clean nav.mobile-show .with-sub {
  opacity: 1;
  color: #fff;
  transform: translateY(0);
}
.component-menu.clean nav.mobile-show .sub {
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 300;
}
.component-menu.clean nav .with-sub .sub-name {
  display: none;
}
.component-menu .logo img {
  width: 100px;
}
@media only screen and (min-width: 1080px) {
  .component-menu .logo img {
    width: 100px;
  }
}
.component-menu .customer {
  display: none;
}
@media only screen and (min-width: 1080px) {
  .component-menu .customer {
    display: block;
  }
}
.component-menu .customer a {
  color: #fff;
  background-color: #000;
}
.component-menu nav {
  display: none;
}
.component-menu nav a, .component-menu nav .with-sub {
  margin-right: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-decoration: none;
  /*color:#fff*/
  color: #000;
  font-weight: 400;
}
.component-menu nav a:last-child, .component-menu nav .with-sub:last-child {
  margin-right: 0;
}
.component-menu nav .with-sub {
  position: relative;
}
.component-menu nav .with-sub .sub-icon {
  display: none;
}
.component-menu nav .with-sub .sub-icon .feather {
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 1079px) {
  .component-menu nav .with-sub .sub-name {
    display: none;
  }
}
.component-menu nav .with-sub .subs .sub {
  display: block;
  color: #000;
}
.component-menu nav .with-sub .subs .sub:not(:last-child) {
  margin-bottom: 10px;
}
.component-menu nav .with-sub:hover .subs {
  display: block;
}
.component-menu .menu-icon {
  display: block;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  color: #000;
}
.component-menu .menu-icon.active {
  color: #fff;
}
.component-menu .menu-icon .feather {
  width: 24px;
  height: 24px;
}

body:not(.landing) {
  padding-top: 120px;
}
@media only screen and (min-width: 1024px) {
  body:not(.landing) {
    padding-top: 0;
  }
}

.office-vs-intime-title {
  padding-left: 10%;
  text-align: center;
  display: flex;
}
.office-vs-intime-title span {
  flex: 1;
}
.office-vs-intime-title .vs {
  flex: 0 0 50px;
}

.show-small-screen .office-vs-intime-title {
  padding-left: 0;
  display: block;
  padding-top: 30px;
}
.show-small-screen .office-vs-intime-title span {
  display: block;
}
.show-small-screen .office-vs-intime-title span:nth-child(2) {
  margin-top: 30px;
}

.reviews .secondary-title {
  padding: 0 20px;
}
.reviews .secondary-title .number {
  color: #3cb5a1;
  font-weight: 900;
}
.reviews .reviews-list {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  overflow-x: scroll;
  padding-bottom: 60px;
}
.reviews .reviews-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.reviews .reviews-list::-webkit-scrollbar {
  height: 10px;
}
.reviews .reviews-list::-webkit-scrollbar-thumb {
  background-color: #e9ecec;
  border-radius: 10px;
}
.reviews .reviews-list::-webkit-scrollbar-thumb:hover {
  background-color: #d6dee1;
}
.reviews .review {
  flex: 0 0 200px;
  position: relative;
  border-radius: 8px;
  margin-left: 40px;
  cursor: pointer;
  padding: 38px;
  border: solid 2px transparent;
  transition: border-color 0.2s;
}
@media only screen and (min-width: 768px) {
  .reviews .review {
    flex: 0 0 300px;
  }
}
.reviews .review:hover {
  border: solid 2px #2399ff;
}
.reviews .review .quote {
  font-size: 3rem;
  font-weight: bold;
  color: #e84458;
}
.reviews .review .review-text {
  font-style: italic;
  color: #64748b;
  font-size: 0.9rem;
}
.reviews .review .name {
  margin-bottom: 0;
  padding: 0;
  color: #10685d;
}
.reviews .review .rating {
  color: #ff9800;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: "Space Grotesk", sans-serif;
}
.reviews .review .rating svg {
  fill: #ff9800;
  width: 1.5rem;
  height: 1.5rem;
}
.reviews .review-last {
  flex: 0 0 40px;
  height: 10px;
}

.reviews.below-hero {
  margin-top: -50px;
}
.reviews.below-hero .reviews-list {
  flex-wrap: wrap;
}
.reviews.below-hero .review {
  flex: 1;
  margin-left: 0;
  padding: 20px;
  margin-right: 20px;
  min-width: 300px;
}

.tarif-results .base-hero h1 {
  font-size: 2rem;
  font-weight: bold;
}
.tarif-results .base-hero h1 span {
  font-size: 1rem;
  font-weight: normal;
}
.tarif-results .result-panels {
  display: block;
  margin-top: -100px;
}
.tarif-results .result-panels .central-columns {
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 1100px) {
  .tarif-results .result-panels .central-columns {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1350px) {
  .tarif-results .result-panels .central-columns {
    flex-wrap: nowrap;
  }
}
.tarif-results .result-panels .result-panel {
  margin-left: 25px;
  margin-right: 25px;
}
@media only screen and (min-width: 420px) {
  .tarif-results .result-panels .result-panel {
    flex: 0 0 300px;
    width: 300px;
  }
}
@media only screen and (min-width: 1350px) {
  .tarif-results .result-panels .result-panel {
    margin-left: 0;
    margin-right: 50px;
    margin-bottom: 0;
  }
}
.tarif-results .result-panels .result-panel:not(:last-child) {
  margin-bottom: 120px;
}
@media only screen and (min-width: 1350px) {
  .tarif-results .result-panels .result-panel:not(:last-child) {
    margin-bottom: 0;
  }
}
.tarif-results .addition {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #000;
  margin-top: -10px;
}
.tarif-results .party-logo {
  width: 100px;
  height: 100px;
}
.tarif-results .pricing {
  text-align: center;
  margin-bottom: 30px;
}
.tarif-results .pricing .price {
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  top: -20px;
}
.tarif-results .pricing .price .currency {
  font-size: 1rem;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -25px;
}
.tarif-results .pricing .price .decimals {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: 3px;
}
.tarif-results .alternatives {
  margin-top: 40px;
  padding-top: 30px;
  border-top: solid 1px #eee;
}
.tarif-results .alternatives .alternatives-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.tarif-results .alternative {
  border: solid 1px #eee;
  padding: 20px 20px 10px 20px;
  border-radius: 0.325rem;
}
.tarif-results .alternative .usps {
  margin-top: 10px;
  margin-bottom: 0;
}
.tarif-results .alternative .usps .usp {
  margin-bottom: 10px;
}
.tarif-results .alternative:not(:last-child) {
  margin-bottom: 20px;
}
.tarif-results .alternative-pricing {
  display: flex;
  justify-content: space-between;
}
.tarif-results .alternative-pricing .name {
  margin-right: 20px;
  flex: 1;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
.tarif-results .alternative-pricing .price {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  text-align: right;
}
.tarif-results .alternative-pricing .price .currency {
  font-size: 0.5rem;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -13px;
}
.tarif-results .alternative-pricing .price .decimals {
  font-size: 0.75rem;
  display: inline-block;
  margin-left: 2px;
}
.tarif-results .carrier-usps {
  display: flex;
  align-items: flex-start;
}

.tarif-results-list .tarif-results-list-item {
  margin-top: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tarif-results-list .tarif-results-list-item.advised {
  border: solid 3px #21d790;
  padding-top: 17px;
  padding-bottom: 17px;
}
.tarif-results-list .tarif-results-list-item:first-child {
  margin-top: 30px;
}
.tarif-results-list .tarif-results-list-item .tarif-results-list-item-start {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
@media only screen and (min-width: 900px) {
  .tarif-results-list .tarif-results-list-item .tarif-results-list-item-start {
    flex-wrap: nowrap;
  }
}
.tarif-results-list .tarif-results-list-item .tarif-results-list-item-end {
  display: flex;
}
.tarif-results-list .tarif-results-list-item .tarif-results-list-item-end .party-logo-dummy {
  flex: 0 0 60px;
  margin-right: 40px;
}
.tarif-results-list .party-logo-container {
  margin-right: 40px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 900px) {
  .tarif-results-list .party-logo-container {
    margin-bottom: 0;
  }
}
.tarif-results-list .party-logo {
  width: 60px;
  height: 60px;
  margin: 0;
}
.tarif-results-list .party-logo.deutschepost {
  background-color: #fdf858;
}
.tarif-results-list .name {
  flex: 0 0 80%;
}
@media only screen and (min-width: 900px) {
  .tarif-results-list .name {
    flex: 1;
  }
}
.tarif-results-list .name .secondary-title {
  margin: 0;
  font-size: 1.1rem;
}
.tarif-results-list .package-type {
  color: #3cb5a1;
  text-align: left;
  flex: 0 0 21%;
  padding-left: 10px;
  margin-top: 20px;
}
@media only screen and (min-width: 900px) {
  .tarif-results-list .package-type {
    text-align: center;
    flex: 0 0 40px;
    padding-left: 0;
    margin-top: 0;
  }
}
.tarif-results-list .pricing {
  text-align: right;
  flex: 0 0 25%;
  margin-top: 20px;
}
@media only screen and (min-width: 900px) {
  .tarif-results-list .pricing {
    flex: 0 130px;
    margin-top: 0;
  }
}
.tarif-results-list .pricing .price {
  font-size: 2.5rem;
  font-weight: 700;
}
.tarif-results-list .pricing .price .currency {
  font-size: 1rem;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -17px;
}
.tarif-results-list .pricing .price .decimals {
  font-size: 1rem;
  display: inline-block;
  margin-left: 3px;
}
.tarif-results-list .action {
  margin-left: 40px;
}
@media only screen and (max-width: 899px) {
  .tarif-results-list .action {
    flex: 1;
    text-align: center;
    margin-top: 20px;
  }
}
.tarif-results-list .usps {
  flex: 1;
  margin-bottom: 0;
  margin-top: 5px;
}
.tarif-results-list .usps .usp {
  font-size: 0.8rem;
  margin-bottom: 0px;
  padding-left: 24px;
}
.tarif-results-list .usps .usp .icon {
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: 0px;
  background-color: #fff;
  color: #3cb5a1;
}
.tarif-results-list .usps .usp .icon .feather {
  width: 16px;
  height: 16px;
}

.testimonial .review {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-weight: 400;
  color: #3cb5a1;
  font-size: 1.4rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  margin-bottom: 10px;
}
.testimonial .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  margin-bottom: 40px;
}
.testimonial .actions {
  margin-bottom: 0;
}

.usp-blocks {
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 650px) {
  .usp-blocks {
    max-width: 800px;
  }
}
@media only screen and (min-width: 1250px) {
  .usp-blocks {
    flex-wrap: nowrap;
    max-width: 100%;
  }
}
.usp-blocks .usp-block {
  margin: 0;
  flex: 0 0 237px;
  padding: 20px;
}
@media only screen and (max-width: 649px) {
  .usp-blocks .usp-block:not(:first-child) {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 650px) {
  .usp-blocks .usp-block {
    margin-right: 30px;
  }
  .usp-blocks .usp-block:nth-child(even) {
    margin-right: 0;
  }
  .usp-blocks .usp-block:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1250px) {
  .usp-blocks .usp-block:nth-child(even) {
    margin-right: 30px;
  }
  .usp-blocks .usp-block:last-child {
    margin-right: 0;
  }
  .usp-blocks .usp-block:nth-child(n+3) {
    margin-top: 0;
  }
}
.usp-blocks .usp-block .icon {
  color: #e84458;
}
@media only screen and (min-width: 1250px) {
  .usp-blocks[bigger] .usp-block {
    margin-right: 50px;
    padding: 40px;
  }
}

.component-menu {
  margin-top: 20px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.brand-primary-layout {
  /* background-color: $brandPrimary; */
  margin-top: -62px;
}
.brand-primary-layout:not(.no-padding) {
  padding: 50px 0;
}
.brand-primary-layout.low {
  padding: 10px 0;
}
@media only screen and (min-width: 1024px) {
  .brand-primary-layout {
    margin-top: -50px;
  }
}
.brand-primary-layout [invert] {
  color: #e84458;
}
.brand-primary-layout p[invert] {
  color: #b9b9c3;
}

.socials {
  margin-left: auto;
}

.socials a {
  text-decoration: none;
}

.social-icon {
  height: 25px;
  width: 25px;
  margin-right: 5px;
}

.job-dialog {
  background-image: url("/media/p5bbcfcv/verzendlabel_leeg.svg");
  width: 100%;
  max-width: 800px;
  padding-bottom: 65%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 1050px) {
  .job-dialog {
    background-image: url("/media/4lhlb3sz/verzendlabel.svg");
  }
}
.job-dialog .job-dialog-part-one {
  position: absolute;
  top: 40%;
  left: 20%;
  right: 20%;
}
@media only screen and (min-width: 1050px) {
  .job-dialog .job-dialog-part-one {
    top: 44%;
    left: 47%;
    right: 11%;
  }
}
.job-dialog .job-dialog-part-two {
  display: none;
  position: absolute;
  top: 55%;
  left: 10%;
  right: 62%;
}
@media only screen and (min-width: 1050px) {
  .job-dialog .job-dialog-part-two {
    display: block;
  }
}
.job-dialog input {
  margin-top: 5px;
  width: 100%;
  border: solid 0px #000;
  border-radius: 0px;
  box-shadow: none !important;
  background-color: #34b5a0;
  color: #fff;
}
.job-dialog input.food {
  display: block;
}
@media only screen and (min-width: 1050px) {
  .job-dialog input.food {
    display: none;
  }
}

.job-error {
  font-size: 1rem;
  display: block;
  background-color: #ffe6c1;
  color: #ff9800;
  padding: 5px 20px;
  border-radius: 20px;
  border: solid 1px #ff98006b;
  margin-top: 10px;
}

#CybotCookiebotDialogHeader {
  display: none !important;
}

#CybotCookiebotDialogPoweredByText {
  display: none !important;
}

#CybotCookiebotDialogBodyContentTitle {
  font-size: 13px !important;
}

#CybotCookiebotDialogBodyContentText {
  font-size: 12px !important;
}

#CybotCookiebotDialogBodyEdgeMoreDetailsLink {
  font-size: 13px !important;
}

.umbraco-forms-page .umbraco-forms-fieldset {
  margin-bottom: 0;
}
.umbraco-forms-page .row-fluid {
  display: flex;
}
.umbraco-forms-page .row-fluid .umbraco-forms-container {
  flex: 1;
}
.umbraco-forms-page .row-fluid .umbraco-forms-container:not(:first-child) {
  margin-left: 20px;
}
.umbraco-forms-page .row-fluid .umbraco-forms-container input.text, .umbraco-forms-page .row-fluid .umbraco-forms-container textarea {
  max-width: 100% !important;
  width: 100%;
}

.umbraco-forms-navigation {
  margin-top: 30px;
  justify-content: center;
}

.umbraco-forms-form .umbraco-forms-page span.field-validation-error {
  color: #e8511d !important;
}
