button,
.button {
  -webkit-touch-callout: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  min-height: 3.2rem;
  line-height: 3.5rem;
  font-size: 1em;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
  display: inline-block;
  transition: all 0.1s linear;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  color: #fff;
  border-radius: 0;
  border: none;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media only screen and (max-width: 480px) {
  button,
  .button {
    line-height: 3.2rem;
    min-height: 3rem;
    min-height: 3.008rem;
    line-height: 3.29rem;
    font-size: 1.4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
button--red,
.button--red,
button--primary,
.button--primary {
  background-color: #00fff8;
  color: #fff;
}
button--red:hover,
.button--red:hover,
button--primary:hover,
.button--primary:hover {
  color: #fff;
  background-color: #00ccc6;
}
button--grey,
.button--grey {
  background-color: #000;
  color: #fff;
}
button[disabled],
.button[disabled],
button--disabled,
.button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.burger {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  margin: 0;
  transition: 0.5s;
  cursor: pointer;
  user-select: none;
  border-radius: 0.34285714rem;
}
@media only screen and (max-width: 767px) {
  .burger {
    display: block;
  }
}
.burger:hover {
  opacity: 1;
}
.burger:active {
  transition: 0;
}
.burger__line {
  display: inline-block;
  width: 2.4rem;
  height: 0.24rem;
  background: #fff;
  border-radius: 0.12rem;
  transition: 300ms;
}
.burger__lines {
  display: inline-block;
  width: 2.4rem;
  height: 0.24rem;
  border-radius: 0.12rem;
  transition: 300ms;
  background: #fff;
  position: relative;
  transform: translateY(-0.6rem);
}
.burger__lines:before,
.burger__lines:after {
  display: inline-block;
  width: 2.4rem;
  height: 0.24rem;
  background: #fff;
  border-radius: 0.12rem;
  transition: 300ms;
  position: absolute;
  left: 0;
  content: '';
  transform-origin: 0.17142857rem center;
}
.burger__lines:before {
  top: 0.6rem;
}
.burger__lines:after {
  top: -0.6rem;
}
body.navi--open .burger .burger__lines {
  background: transparent;
}
body.navi--open .burger .burger__lines:before,
body.navi--open .burger .burger__lines:after {
  transform-origin: 50% 50%;
  top: 0;
  width: 2.4rem;
}
body.navi--open .burger .burger__lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
  background-color: #fff;
}
body.navi--open .burger .burger__lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
  background-color: #fff;
}
.form__fields {
  margin-top: 2em;
}
.form__unexpected-error,
.form__validation-error {
  color: #ed0477;
  padding: 0.25em 0;
  display: none;
}
.form__buttons {
  margin-top: 1em;
  margin-bottom: 1em;
}
.form__thanks {
  display: none;
}
.form--incomplete .form__validation-error {
  display: block;
}
.form--errored .form__content,
.form--errored .form__thanks,
.form--errored .form__validation-error {
  display: none;
}
.form--errored .form__unexpected-error {
  display: block;
}
.form--sent .form__content,
.form--sent .form__validation-error,
.form--sent .form__validation-error {
  display: none;
}
.form--sent .form__buttons,
.form--sent .form__fields {
  opacity: 0.5;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .form--sent .form__buttons,
  .form--sent .form__fields {
    display: none;
  }
}
.form--sent .form__thanks {
  display: block;
}
.field {
  position: relative;
}
.field input[type=text],
.field input[type=tel],
.field input[type=number],
.field input[type=email],
.field textarea {
  box-sizing: border-box;
  padding: 0.5em 0;
  width: 100%;
  color: #412886;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.1em;
  border: none;
  border-bottom: 0.15em solid #412886;
}
.field input[type=text]:focus,
.field input[type=tel]:focus,
.field input[type=number]:focus,
.field input[type=email]:focus,
.field textarea:focus {
  border-color: #fefd32;
  outline: none;
}
.field input[type=text]::placeholder,
.field input[type=tel]::placeholder,
.field input[type=number]::placeholder,
.field input[type=email]::placeholder,
.field textarea::placeholder {
  color: rgba(65, 40, 134, 0.6);
}
.form--attempted .field input[type=text]:invalid,
.form--attempted .field input[type=tel]:invalid,
.form--attempted .field input[type=number]:invalid,
.form--attempted .field input[type=email]:invalid,
.form--attempted .field textarea:invalid {
  border-bottom: 0.15em solid #ed0477;
}
.field textarea {
  min-height: 100%;
}
html,
body {
  min-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-weight: 400;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #412886;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-size: 18px;
}
body.locale--jp {
  font-family: "Noto Sans JP", sans-serif;
}
a {
  text-decoration: none;
  color: #00fff8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.1;
}
body.locale--jp h1,
body.locale--jp h2,
body.locale--jp h3,
body.locale--jp h4,
body.locale--jp h5,
body.locale--jp h6 {
  font-family: "Noto Sans JP", sans-serif;
}
.wrap,
.wrap--navi,
.wrap--narrow {
  margin: 0 1em;
  box-sizing: border-box;
}
@media only screen and (max-width: 480px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    margin: 0 1em;
  }
}
@media only screen and (min-width: 992px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    max-width: 960px;
    padding: 0 2em;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    max-width: 1280px;
    padding: 0 2em;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px), only screen and (min-width: 1200px) {
  .wrap--narrow {
    max-width: 960px;
    padding: 0 2em;
    margin: 0 auto;
  }
}
.hidden {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-width: 100%;
}
.logo--header span,
.logo--footer span {
  display: none;
}
header {
  background-color: #412886;
  min-height: 4rem;
  position: relative;
  z-index: 100;
  color: #fff;
  line-height: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .wrap {
    padding: 0 1em;
  }
}
header .header__content {
  padding: 6rem 0;
}
@media only screen and (min-width: 992px) {
  header .header__content {
    padding: 10rem 0;
  }
}
header .header__symbol {
  position: relative;
  max-width: 50%;
  display: flex;
  max-height: 3rem;
}
@media only screen and (max-width: 767px) {
  header .header__symbol {
    max-width: 65%;
  }
}
@media only screen and (min-width: 992px) {
  header .header__symbol {
    max-width: 25%;
  }
}
header .header__symbol span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fefd32;
  font-size: 1.5em;
  font-weight: 700;
}
header:before,
header:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
header:after {
  clear: both;
}
.navi {
  box-sizing: border-box;
  min-height: 4rem;
  background-color: #412886;
  padding: 0.5em 0;
  position: relative;
  z-index: 100;
}
.navi:before,
.navi:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.navi:after {
  clear: both;
}
.navi .wrap,
.navi .wrap--navi {
  display: flex;
  min-height: 3rem;
}
.navi .navi__burger {
  -webkit-touch-callout: none;
  user-select: none;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
}
@media only screen and (max-width: 992px) {
  .navi .navi__burger {
    display: block;
  }
}
.navi .navi__collapse {
  box-sizing: border-box;
}
@media only screen and (min-width: 992px) {
  .navi .navi__collapse {
    max-width: 75%;
    padding-left: 2em;
  }
}
@media only screen and (max-width: 992px) {
  .navi .navi__collapse {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: all 150ms ease-in-out;
    transform: translateY(-100vh);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    background-color: #412886;
    z-index: 90;
    padding: 0 1em 6rem 1em;
  }
  body.navi--open .navi .navi__collapse {
    transform: translateY(4rem);
  }
}
.navi .navi__collapse ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.navi .navi__collapse ul:before,
.navi .navi__collapse ul:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.navi .navi__collapse ul:after {
  clear: both;
}
@media only screen and (max-width: 992px) {
  .navi .navi__collapse ul {
    padding-top: 1em;
  }
}
.navi .navi__collapse li {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navi .navi__collapse li {
    padding: 0 0.4em;
  }
}
@media only screen and (min-width: 992px) {
  .navi .navi__collapse li {
    padding: 0 0.4em;
    display: inline-block;
    line-height: 3rem;
  }
}
.navi .navi__collapse li a {
  transition: all 150ms ease-in-out;
  color: #00fff8;
  font-weight: 700;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 1.2em;
}
body.locale--jp .navi .navi__collapse li a {
  font-family: "Noto Sans JP", sans-serif;
}
.content-wrapper {
  padding: 3rem 0;
}
@media only screen and (min-width: 992px) {
  .content-wrapper {
    padding: 4rem 0;
  }
}
footer {
  background-color: #412886;
  color: #fff;
  padding: 3rem 0;
}
@media only screen and (min-width: 992px) {
  footer {
    padding: 4rem 0;
  }
}
footer a {
  color: #fff;
}
footer .footer__logo {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2em;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  footer > .wrap:first-child {
    display: grid;
    grid-template-areas: "company navi";
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer__company {
  grid-area: company;
}
footer .footer__navi {
  grid-area: navi;
  font-size: 0.9em;
}
footer .footer__navi ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  footer .footer__navi ul li {
    margin: 0.5rem 0;
  }
}
@media only screen and (max-width: 480px) {
  footer .footer__navi {
    margin-bottom: 1em;
  }
}
.flag {
  width: 4rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.flag--en {
  background-image: url("/assets/flags/en.svg");
}
.flag--en-in {
  background-image: url("/assets/flags/en-in.svg");
}
.flag--en-nz {
  background-image: url("/assets/flags/nz.svg");
}
.flag--en-ca {
  background-image: url("/assets/flags/ca.svg");
}
.flag--fr-ca {
  background-image: url("/assets/flags/fr-ca.svg");
}
.flag--fi {
  background-image: url("/assets/flags/fi.svg");
}
.flag--de {
  background-image: url("/assets/flags/de.svg");
}
.flag--at {
  background-image: url("/assets/flags/at.svg");
}
.flag--no {
  background-image: url("/assets/flags/no.svg");
}
.flag--ca {
  background-image: url("/assets/flags/fr-ca.svg");
}
.flag--jp {
  background-image: url("/assets/flags/jp.svg");
}
.section--content img {
  max-width: 100%;
}
article p img {
  max-width: 100%;
}
.section--content .video-container,
.content-wrapper .video-container {
  margin: 1em 0;
}
.section--content .video-container iframe,
.content-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.navi {
  background-color: #412886;
}
.navi .navi__collapse li a {
  color: #fff;
  line-height: 2.4em;
  text-transform: uppercase;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
body.locale--jp .navi .navi__collapse li a {
  font-family: "Noto Sans JP", sans-serif;
}
.navi .navi__collapse li a:hover {
  border-bottom: 0.1em solid #fefd32;
}
.section {
  padding: 1em 0;
}
@media only screen and (min-width: 992px) {
  .section {
    padding: 4em 0;
  }
}
.section--content {
  padding-top: 0;
}
.section--lander-bullets {
  background-color: #F3EFFF;
}
.section--lander-bullets h3 {
  text-align: center;
}
.section--lander-bullets .grid {
  margin-top: 4em;
}
@media only screen and (min-width: 992px) {
  .section--lander-bullets .grid {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(3, 1fr);
  }
}
.section--lander-bullets .bullet__header {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.section--lander-bullets .bullet__title {
  margin: 0;
}
.section--lander-bullets .bullet__image {
  margin-right: 1em;
}
.section--lander-bullets .bullet__image img {
  max-height: 6em;
}
.header__content {
  position: relative;
  background: #00fff8;
  background: linear-gradient(48deg, #00fff8 0%, #6f00ff 27%, #bb2da4 65%, #ff5652 100%);
  text-align: center;
  padding: 2em 0;
  color: #412886;
  min-height: 40%;
  min-height: 40vh;
}
.header__content .wrap {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) {
  .header__content {
    min-height: 15em;
    padding: 6em 0;
  }
}
@media only screen and (max-width: 767px) {
  .header__content {
    padding-top: 6em;
  }
}
.hero .hero__title,
.hero h1 {
  font-size: 3em;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .hero .hero__title,
  .hero h1 {
    font-size: 5.2em;
  }
}
.hero .hero__punchline,
.hero h2 {
  line-height: 1em;
  font-size: 1.6em;
  margin: 0.5em 0;
  text-transform: uppercase;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
body.locale--jp .hero .hero__punchline,
body.locale--jp .hero h2 {
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 992px) {
  .hero .hero__punchline,
  .hero h2 {
    font-size: 2.2em;
  }
}
.hero .button--cta {
  margin-top: 2em;
}
.header__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.header__bg .bg {
  position: absolute;
  display: block;
}
.button {
  border-radius: 1em;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  padding-left: 2em;
  padding-right: 2em;
}
body.locale--jp .button {
  font-family: "Noto Sans JP", sans-serif;
}
.button--primary {
  background-color: #00fff8;
  color: #412886;
}
.button--cta--hero {
  font-size: 1.3em;
  min-height: 4rem;
  line-height: 4rem;
}
.content-wrapper {
  color: #412886;
}
.content-wrapper a {
  color: #8C43FF;
  transition: all 250ms ease-in-out;
}
.content-wrapper a:hover:not(.button) {
  color: #00ccc6;
}
.content-wrapper h1 {
  font-size: 1.8em;
}
@media only screen and (min-width: 992px) {
  .content-wrapper h1 {
    font-size: 2.2em;
  }
}
.content-wrapper ul li {
  margin: 1em 0;
}
@media only screen and (min-width: 992px) {
  .section--news .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
  }
}
.section--news .article {
  margin-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  .section--news .article {
    min-width: 20em;
    margin-bottom: 0;
  }
}
.article h5 {
  font-size: 1.1em;
  margin-bottom: 0;
  color: #412886;
}
.article h1 {
  margin-bottom: 0;
}
.article__image img {
  max-width: 100%;
}
article .article__image {
  margin-top: 1em;
}
.article__date {
  font-size: 0.7em;
  color: #5434ad;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5 {
  margin-top: 2em;
}
.article__actions {
  margin-top: 0.5em;
}
.article__actions a {
  font-size: 0.9em;
}
article {
  padding-bottom: 2em;
}
.article-content img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  footer .wrap:first-child {
    display: grid;
    grid-template-areas: "navi secondNavi";
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer__right {
  grid-area: secondNavi;
}
@media only screen and (min-width: 992px) {
  footer .footer__right {
    text-align: right;
  }
}
footer .footer__locales {
  margin-top: 2em;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  footer .footer__locales {
    justify-content: center;
  }
}
footer .footer__locales a {
  display: block;
  transition: all 150ms ease-in-out;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  footer .footer__locales a {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  footer .footer__locales a:hover {
    transform: translateY(-0.2rem);
  }
  footer .footer__locales a:hover span {
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.25);
  }
}
footer .footer__locales span {
  display: block;
  width: 2em;
  height: 1.5em;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transition: all 150ms ease-in-out;
}
footer .footer__locales span.flag-icon {
  background-size: contain;
}
body.template--news .section--news {
  padding-top: 0;
}
.button {
  border-radius: 4em;
}
@media only screen and (max-width: 767px) {
  .button {
    font-family: 'korolev', Arial, Helvetica, sans-serif;
  }
}
.button--primary:hover {
  background-color: #fefd32;
  color: #412886;
}
@media only screen and (min-width: 992px) {
  .navi .navi__collapse li a {
    line-height: 3em;
  }
}
.content-wrapper {
  padding-bottom: 0;
}
@media only screen and (min-width: 992px) {
  header .hero {
    padding: 6em 0;
  }
}
header .header__symbol {
  max-height: 4rem;
  transform: translateY(-5%);
}
header .logo img {
  max-height: 140%;
}
.hero .hero__title,
.hero h1 {
  color: #fefd32;
  font-family: 'korolev', Arial, Helvetica, sans-serif;
  font-style: italic;
  line-height: 1.2;
  font-size: 2.6em;
}
@media only screen and (min-width: 768px) {
  .hero .hero__title,
  .hero h1 {
    font-size: 4.2em;
  }
}
@media only screen and (min-width: 992px) {
  .hero .hero__title,
  .hero h1 {
    max-width: 70%;
    min-width: 30rem;
    margin: 0 auto;
  }
}
.hero .hero__punchline,
.hero h2 {
  text-transform: none;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  font-size: 1.3em;
}
@media only screen and (min-width: 768px) {
  .hero .hero__punchline,
  .hero h2 {
    font-size: 1.8em;
  }
}
@media only screen and (min-width: 992px) {
  .hero .wrap {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .wrap {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.header__bg {
  overflow: hidden;
}
.header__bg .bg--left {
  left: 0;
  bottom: 0;
  opacity: 0.5;
  max-width: 120%;
  max-height: 100%;
}
.header__bg .bg--right {
  right: 0;
  bottom: 0;
  display: none;
}
@media only screen and (min-width: 992px) {
  .header__bg .bg--left {
    max-height: 90%;
    max-width: 70%;
  }
  .header__bg .bg--right {
    max-height: 90%;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .header__bg .bg--left {
    max-width: 50%;
    opacity: 1;
  }
}
@media only screen and (min-width: 1450px) {
  .header__bg .bg--right {
    left: auto;
    right: 0;
  }
}
@media only screen and (min-width: 992px), only screen and (min-width: 1200px) {
  footer .wrap {
    max-width: 960px;
  }
}
@media only screen and (min-width: 992px) {
  footer .wrap:first-child {
    grid-template-areas: "logo navi secondNavi";
    grid-template-columns: 14rem 1fr 2fr;
  }
}
footer .footer__logo {
  display: none;
  grid-area: logo;
}
footer .footer__logo img {
  max-width: 10rem;
}
@media only screen and (min-width: 992px) {
  footer .footer__logo {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  footer .footer__locales {
    padding-left: 14rem;
    justify-content: start;
    margin-top: 4em;
  }
}
footer .footer__content {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: #412886;
}
footer .footer__navi {
  font-weight: 700;
}
footer .footer__navi a {
  color: #F3EFFF;
}
footer .footer__navi a:hover {
  opacity: 0.7;
}
footer .footer__right {
  text-align: left;
}
.section--news .article__title {
  font-weight: 700;
  font-size: 1.1em;
}
.section--news .article__excerpt {
  font-size: 0.9em;
}
.section--lander-get-more {
  background: #bb2da4;
  background: linear-gradient(141deg, #bb2da4 0%, #412786 27%, #6f00ff 65%, #00d4ff 100%);
  color: #fff;
  text-align: center;
}
.section--lander-get-more .section__cta {
  margin-top: 2em;
}
.section--lander-get-more .section__image img {
  max-width: 100%;
}
.section--faq {
  background-color: #f2f2f7;
}
.section--banner {
  background-color: #412886;
  background-image: url("/assets/pattern--wildz.svg");
  background-image: linear-gradient(120deg, rgba(65, 40, 134, 0.8), rgba(65, 40, 134, 0.1), rgba(65, 40, 134, 0.9)), url("/assets/pattern--wildz.svg");
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section--banner {
    padding: 2em 0;
    background-size: auto 105%;
  }
}
.section--banner .section__title {
  margin-top: 0;
  color: #fefd32;
  text-transform: uppercase;
  font-family: 'korolev', Arial, Helvetica, sans-serif;
  font-style: italic;
  line-height: 1.2;
  font-size: 2.6em;
}
@media only screen and (min-width: 768px) {
  .section--banner .section__title {
    font-size: 4.2em;
  }
}
.section--lander-concept {
  background-color: #f2f2f7;
}
.section--lander-concept .wrap:nth-child(even) {
  max-width: 960px;
}
@media only screen and (min-width: 768px) {
  .section--lander-concept .wrap:nth-child(even) {
    padding: 4em 0;
  }
}
.section--lander-concept .wrap:nth-child(even) .section__content {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .section--blocks .grid {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .section--blocks .section__title {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .section--blocks .bullet {
    margin-bottom: 2em;
  }
}
.section--blocks .bullet:before,
.section--blocks .bullet:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.section--blocks .bullet:after {
  clear: both;
}
.section--blocks .bullet__image {
  margin-bottom: 1em;
}
.section--blocks .bullet__image img {
  max-width: 8rem;
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .section--blocks .bullet__image img {
    max-width: 12rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section--blocks .bullet__image img {
    max-width: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .section--blocks .bullet__image {
    display: block;
    margin-bottom: 0;
  }
}
.section--blocks .bullet__content {
  font-size: 0.9em;
}
.section--blocks .bullet__content ul {
  padding: 0;
  margin: 0;
  margin-left: 1em;
}
.section--blocks .bullet__content ul li {
  margin: 0.5em 0;
}
.section--blocks .bullet__title {
  margin-top: 1em;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 1.2em;
}
@media only screen and (min-width: 768px) {
  .section--blocks .bullet__title {
    font-size: 1.6em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section--blocks .bullet__title {
    font-size: 1.4em;
  }
}
.section--blocks .bullet__content,
.section--blocks .bullet__title,
.section--blocks .section__title {
  text-align: center;
}
