.header {
  background: #c8193c;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 3px 3px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 60;
  position: sticky;
  top: 0;
}
.header .try-free-button {
  display: inline-flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 20px;
  background: #FFF;
  max-height: 30px;
}
.header .try-free-button img {
  width: 18px;
}
.header .try-free-button span {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}
.header__wrapper .__title {
  font-size: 48px;
}
.header__wrapper--full {
  display: none;
}
.header__wrapper--mobile {
  line-height: 40px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  font-size: 25px;
  color: #fff;
}
.header__wrapper--mobile .get-free-and-hamburger-wrapper {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  justify-content: right;
  align-items: center;
}
.header__wrapper--mobile a {
  color: inherit;
}
.header__wrapper--mobile .__title {
  white-space: nowrap;
  font-size: 32px;
}
.header__wrapper--mobile .__title img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.header__wrapper--mobile .__title a {
  color: inherit;
  text-decoration: none;
}
.header__wrapper--mobile .navigation__items {
  display: none;
  width: 100%;
  margin: 20px 0 0;
}
.header__wrapper--mobile .navigation__items.is-active {
  display: block;
}
.header__wrapper--mobile .navigation__items li {
  text-align: center;
  background: linear-gradient(90deg, rgba(200,200,200,0), rgba(200,200,200,0.5), rgba(200,200,200,0)) no-repeat 50% 100%;
  background-size: 100% 1px;
}
.header__wrapper--mobile .navigation__items a {
  display: block;
  text-decoration: none;
  padding: 5px 0;
}
.header__wrapper--mobile .navigation__items li ul {
  display: none;
}
.header__wrapper--mobile .navigation__items li li {
  font-size: 16px;
  background: transparent;
}
.header__wrapper--mobile .navigation__items li li a {
  padding: 0;
}
.header__wrapper--mobile .navigation__items li:last-child a {
  background: transparent;
}
.header__wrapper--mobile .navigation__items > li:hover ul,
.header__wrapper--mobile .navigation__items > li:focus ul,
.header__wrapper--mobile .navigation__items > li > a:hover + ul,
.header__wrapper--mobile .navigation__items > li > a:focus + ul,
.header__wrapper--mobile .navigation__items .is-active ul {
  display: block;
}
.header__wrapper--mobile .navigation__items .is-active > a {
  font-weight: 500;
}
.header__wrapper--mobile .navigation__items ul .is-active > a {
  text-decoration: underline;
}


.mobile-navigation-toggle {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  width: 40px;
}


@media (min-width: 768px) {
  .header__wrapper--mobile {
    display: none;
  }
  .header__wrapper--full {
    max-width: 960px;
    margin: 0 auto;
    line-height: 100px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .navigation {
    font-size: 14px;
  }
  .navigation.navigation--secondary {
    font-size: 14px;
  }
  .navigation.navigation--secondary .navigation__items {
    min-width: 320px;
    justify-content: space-between;
  }
  .navigation.navigation--secondary .navigation__items .--space-left {
    margin-left: 2vw;
  }
  .navigation a {
    color: inherit;
    text-decoration: none;
  }
  .navigation__home {
    white-space: nowrap;
    font-size: 48px;
    line-height: 80px;
    text-decoration: none;
    margin: 0 10px;
  }
  .navigation__items {
    display: flex;
  }
  .navigation__items li {
    padding: 0;
  }
  .navigation__items a:not(.try-free-button) {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    line-height: 60px;
    padding: 0 8px 0;
    font-weight: 400;
  }
  .navigation__items .try-free-button {
    position: relative;
    top: -16px;
    margin: 0 8px;
  }
  .navigation__items img {
    vertical-align: middle;
  }
  .navigation__items a:hover span, .navigation__items a:focus span, .navigation__items .is-active a span {
    border-bottom: 2px solid #fff;
  }
}
@media (min-width: 960px) {
  .header__wrapper--full {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .navigation__home {
    line-height: 100px;
  }
  .navigation__items a:not(.try-free-button) {
    line-height: 80px;
    padding: 20px 8px 0;
  }
  .navigation__items .try-free-button {
    top: 13px;
  }
}



.sb-awards-bar {
  display: none;
}
@media (min-width: 768px) {
  .sb-awards-bar {
    display: block;
    background: rgb(238,247,253);
    background: #FBF0E4;
    background: #fff;
  }
  .sb-awards-bar ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 768px;
    max-width: 98%;
    margin: 0 auto;
  }
  .sb-awards-bar li {
    display: block;
  }
}


.header__back-button img {
  transform: translate(0,4px);
}
