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; }

a.button, 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: #3cb5a1;
  color: #fff;
  cursor: pointer; }
  a.button:hover, button:hover {
    filter: saturate(140%); }
  a.button.primary-action, button.primary-action {
    background-color: #2399ff;
    color: #fff; }
    a.button.primary-action.outlined, button.primary-action.outlined {
      background-color: #fff;
      color: #2399ff;
      border: solid 1px #2399ff; }
  a.button.on-dark, button.on-dark {
    background-color: #e84458;
    color: #000; }
  a.button.semi-large, button.semi-large {
    font-size: 1.25rem;
    padding: 12px 45px;
    border-radius: 45px; }
  a.button.large, button.large {
    font-size: 1.25rem;
    padding: 12px 36px;
    border-radius: 9px; }
    @media only screen and (min-width: 1024px) {
      a.button.large, button.large {
        font-size: 1.5rem;
        padding: 16px 60px; } }
  a.button[no-wrap], button[no-wrap] {
    white-space: nowrap; }

.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.x2 {
    height: 80px; }
  .v-spacer.x3 {
    height: 120px; }
  .v-spacer.x4 {
    height: 160px; }

.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: .3125rem;
  margin-top: 50px;
  background-color: #2399ff; }
  .action-panel:not([vertical]) {
    padding: 60px;
    align-items: center; }
    @media only screen and (min-width: 650px) {
      .action-panel:not([vertical]) {
        display: flex; } }
  .action-panel .texts {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300; }
    @media only screen and (max-width: 649px) {
      .action-panel .texts {
        text-align: center; } }
    @media only screen and (min-width: 650px) {
      .action-panel .texts {
        margin-right: 40px; } }
    @media only screen and (min-width: 768px) {
      .action-panel .texts {
        font-size: 2.5rem; } }
  .action-panel:not([invert]) .texts {
    color: #fff; }
  .action-panel:not([invert]) .action .button {
    background-color: #fff;
    color: #000; }
  @media only screen and (max-width: 649px) {
    .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; } }

.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; }

section.footer {
  margin-top: 50px; }

footer {
  color: rgba(255, 255, 255, 0.9);
  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 {
        color: #fff;
        font-weight: 600;
        font-size: 1.05rem; }
      footer .lists .list a {
        text-decoration: none;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        margin-top: 10px; }
  footer .end {
    margin-top: 40px; }
    @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: rgba(255, 255, 255, 0.8); }
      @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], .selection-image {
  background-color: #fff;
  border: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: .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, input[type=text] {
  height: 50px;
  padding: 0 10px;
  line-height: 50px; }

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; }

.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;
  margin-bottom: 100px; }
  @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; }
    @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;
      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: #3cb5a1;
        font-weight: 600; }
      .base-hero .texts h1 .text-rotate-cursor {
        display: inline-block;
        width: 5px;
        height: 32px;
        margin-left: 8px;
        background-color: #3cb5a1;
        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%; }

@keyframes blink {
  50% {
    opacity: 0.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; }

.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;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09) !important;
  border-radius: .3125rem; }
  .panel[invert] {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.2); }
  .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; }

.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: .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; }

section > .content {
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px; }
  @media only screen and (min-width: 1240px) {
    section > .content {
      width: 1200px;
      margin-left: auto;
      margin-right: auto; } }

section.darker {
  background-color: #f7f9fc;
  position: relative; }
  section.darker:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 0;
    height: 0;
    border-right: solid transparent 50vw;
    border-left: solid #f7f9fc 50vw;
    border-top: solid #f7f9fc 25px;
    border-bottom: solid transparent 25px; }
  section.darker:after {
    content: '';
    position: absolute;
    left: 0;
    top: -50px;
    width: 0;
    height: 0;
    border-left: solid transparent 50vw;
    border-right: solid #f7f9fc 50vw;
    border-bottom: solid #f7f9fc 25px;
    border-top: solid transparent 25px; }

section.invert {
  background-color: #10685d;
  position: relative; }
  section.invert:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 0;
    height: 0;
    border-right: solid transparent 50vw;
    border-left: solid #10685d 50vw;
    border-top: solid #10685d 25px;
    border-bottom: solid transparent 25px; }
  section.invert:after {
    content: '';
    position: absolute;
    left: 0;
    top: -50px;
    width: 0;
    height: 0;
    border-left: solid transparent 50vw;
    border-right: solid #10685d 50vw;
    border-bottom: solid #10685d 25px;
    border-top: solid transparent 25px; }

section.invert.alternative {
  background-color: #009540;
  position: relative; }
  section.invert.alternative:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 0;
    height: 0;
    border-right: solid transparent 50vw;
    border-left: solid #009540 50vw;
    border-top: solid #009540 25px;
    border-bottom: solid transparent 25px; }
  section.invert.alternative:after {
    content: '';
    position: absolute;
    left: 0;
    top: -50px;
    width: 0;
    height: 0;
    border-left: solid transparent 50vw;
    border-right: solid #009540 50vw;
    border-bottom: solid #009540 25px;
    border-top: solid transparent 25px; }

section.alternate {
  background-color: #000;
  position: relative; }
  section.alternate:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 0;
    height: 0;
    border-right: solid transparent 50vw;
    border-left: solid #000 50vw;
    border-top: solid #000 25px;
    border-bottom: solid transparent 25px; }
  section.alternate:after {
    content: '';
    position: absolute;
    left: 0;
    top: -50px;
    width: 0;
    height: 0;
    border-left: solid transparent 50vw;
    border-right: solid #000 50vw;
    border-bottom: solid #000 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; }
    .team-members .team-member .photo:hover .original {
      display: none; }
    .team-members .team-member .photo:hover .hover {
      opacity: 1;
      transform: rotateZ(-2deg) scale(0.95);
      transform-origin: center; }
    .team-members .team-member .photo:before {
      content: '';
      z-index: 1;
      position: absolute;
      left: 10%;
      top: 10%;
      right: 10%;
      bottom: 10%;
      border-radius: 50%;
      box-shadow: 0 0.5rem 2rem 1.5rem rgba(0, 0, 0, 0.09); }
    .team-members .team-member .photo svg {
      position: relative;
      z-index: 2;
      width: 200px; }
    .team-members .team-member .photo .original {
      display: block; }
    .team-members .team-member .photo .hover {
      transition: transform 0.4s;
      opacity: 0; }
  .team-members .team-member .secondary-title {
    font-size: 1.5rem;
    margin-bottom: 5px; }
  .team-members .team-member .function {
    text-align: center;
    text-transform: uppercase; }

.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: #e84458;
    color: #000;
    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; }

.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; }

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: #000; }
  @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[smaller] {
    font-size: 1rem;
    line-height: 1.5rem; }

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); }

.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: #e84458;
    bottom: 0;
    top: 50%; }
  .marked.full:after {
    top: -5px;
    bottom: -5px; }

.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; }

.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;
          align-items: center; } }
      .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; }

.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; }
  @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 {
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .connections .secondary-title {
    flex: 0 0 100%;
    text-align: center; }
    @media only screen and (min-width: 1024px) {
      .connections .secondary-title {
        margin-bottom: 10px;
        flex: 0 0 auto;
        text-align: left; } }
  .connections .connection {
    flex: 0 0 50%;
    margin-top: 20px;
    text-align: center; }
    @media only screen and (min-width: 650px) {
      .connections .connection {
        flex: 0 0 auto; } }
    @media only screen and (min-width: 1024px) {
      .connections .connection {
        margin-top: 0; } }
  .connections img {
    max-height: 38px; }

.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; }

.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: 30px; } }

.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: .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: .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: #e84458; }

.landing header {
  background-color: #3cb5a1;
  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: #3cb5a1;
    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: #3cb5a1;
  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 .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;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-top: 0 !important;
  padding-top: 20px; }
  .component-menu:not(.clean) {
    background-color: #fff;
    border-bottom: solid 1px #eee; }
    @media only screen and (min-width: 1024px) {
      .component-menu:not(.clean) {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px !important;
        padding-top: 0;
        border-bottom: none;
        padding-left: 0;
        padding-bottom: 0;
        background-color: transparent;
        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: 1024px) {
      .component-menu:not(.clean) nav {
        display: flex;
        align-items: center; } }
    @media only screen and (max-width: 1023px) {
      .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); } }
    @media only screen and (min-width: 1024px) {
      .component-menu:not(.clean) nav .with-sub .sub-icon {
        display: inline; } }
    @media only screen and (min-width: 1024px) {
      .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: .3125rem;
        background-color: #fff; } }
    @media only screen and (min-width: 1024px) {
      .component-menu:not(.clean) nav .subs .sub {
        white-space: nowrap; } }
    @media only screen and (min-width: 1024px) {
      .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 .with-sub .sub-name {
      display: none; }
  .component-menu .logo img {
    width: 50px; }
    @media only screen and (min-width: 1024px) {
      .component-menu .logo img {
        width: 100px; } }
  .component-menu .customer {
    display: none; }
    @media only screen and (min-width: 1024px) {
      .component-menu .customer {
        display: block; } }
  .component-menu nav {
    display: none; }
    .component-menu nav a, .component-menu nav .with-sub {
      margin-right: 40px;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 300;
      font-size: 1.1rem;
      text-decoration: none;
      color: #000; }
      .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: 1023px) {
        .component-menu nav .with-sub .sub-name {
          display: none; } }
      .component-menu nav .with-sub .subs .sub {
        display: block; }
        .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; } }

.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: 40px; }
  .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 #3cb5a1; }
  .reviews .review .quote {
    font-size: 3rem;
    font-weight: bold; }
  .reviews .review .review-text {
    font-style: italic; }
  .reviews .review .name {
    margin-bottom: 0;
    padding: 0; }
  .reviews .review .rating {
    color: #e8511d;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: "Space Grotesk", sans-serif; }
    .reviews .review .rating svg {
      fill: #e8511d;
      width: 1.5rem;
      height: 1.5rem; }

.reviews .review-last {
  flex: 0 0 40px;
  height: 10px; }

.reviews.below-hero {
  margin-top: -200px; }
  .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: .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 #1ce589;
    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-direction: row;
    align-items: center; }
  .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; }

.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: 1; }
  .tarif-results-list .name .secondary-title {
    margin: 0;
    font-size: 1.1rem; }

.tarif-results-list .package-type {
  color: #3cb5a1;
  text-align: center;
  flex: 0 0 40px; }

.tarif-results-list .pricing {
  text-align: right;
  flex: 0 130px; }
  .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; }

.tarif-results-list .usps {
  flex: 1;
  margin-bottom: 0;
  margin-top: -16px; }
  .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: 500;
  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;
  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; } }
  @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; }
