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: "Onest", Arial, Helvetica, sans-serif;
  font-weight: 900;
  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: #650000;
  color: #fff;
}
button--red:hover,
.button--red:hover,
button--primary:hover,
.button--primary:hover {
  color: #fff;
  background-color: #320000;
}
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: 3rem;
}
.form__unexpected-error,
.form__validation-error {
  color: red;
  padding: 0.25em 0;
  display: none;
}
.form__buttons {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.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: #fff44c;
  font-family: "Onest", Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.1em;
  border: none;
  border-bottom: 0.15em solid #fff44c;
}
.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: magenta;
  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(255, 244, 76, 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 red;
}
.field textarea {
  min-height: 100%;
}
html,
body {
  min-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-weight: 400;
  font-family: "Onest", Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #ffffff;
  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: #650000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Onest", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-weight: 900;
  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 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 480px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    margin: 0 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    max-width: 960px;
    padding: 0 3rem;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .wrap,
  .wrap--navi,
  .wrap--narrow {
    max-width: 1280px;
    padding: 0 3rem;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px), only screen and (min-width: 1200px) {
  .wrap--narrow {
    max-width: 960px;
    padding: 0 3rem;
    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: #000000;
  min-height: 7.2rem;
  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 2rem;
  }
}
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: 5.2rem;
}
@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: #650000;
  font-size: 1.5em;
  font-weight: 900;
}
header:before,
header:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
header:after {
  clear: both;
}
.navi {
  box-sizing: border-box;
  min-height: 7.2rem;
  background-color: #fa5d2b;
  padding: 1rem 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: 5.2rem;
}
.navi .navi__burger {
  -webkit-touch-callout: none;
  user-select: none;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
@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: 3rem;
  }
}
@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: #fa5d2b;
    z-index: 90;
    padding: 0 2rem 6rem 2rem;
  }
  body.navi--open .navi .navi__collapse {
    transform: translateY(7.2rem);
  }
}
.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: 2rem;
  }
}
.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: 5.2rem;
  }
}
.navi .navi__collapse li a {
  transition: all 150ms ease-in-out;
  color: #650000;
  font-weight: 900;
  font-family: "Onest", 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: pink;
  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: 900;
}
@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: 2rem;
  }
}
.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: 2rem 0;
}
.section--content .video-container iframe,
.content-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.navi {
  background-color: #fa5d2b;
}
.navi .navi__collapse li a {
  color: #fff;
  line-height: 2.4em;
  text-transform: uppercase;
  font-family: "Onest", 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 #650000;
}
.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: #650000;
}
.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 {
  background: #000000;
}
.header__content {
  position: relative;
  text-align: center;
  padding: 2em 0;
  color: #650000;
  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: "Onest", Arial, Helvetica, sans-serif;
  font-weight: 900;
}
@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: "Onest", Arial, Helvetica, sans-serif;
  font-weight: 900;
}
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: "Onest", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}
body.locale--jp .button {
  font-family: "Noto Sans JP", sans-serif;
}
.button--primary {
  background-color: #650000;
  color: #fff44c;
}
.button--cta--hero {
  font-size: 1.3em;
  min-height: 7.2rem;
  line-height: 7.2rem;
}
.content-wrapper {
  color: #ffffff;
}
.content-wrapper a {
  color: #ffffff;
  transition: all 250ms ease-in-out;
}
.content-wrapper a:hover:not(.button) {
  color: #650000;
}
.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: 2rem;
  }
}
.section--news .article {
  margin-bottom: 2rem;
}
@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: #fff44c;
}
.article h1 {
  margin-bottom: 0;
}
.article__image img {
  max-width: 100%;
}
article .article__image {
  margin-top: 1.5rem;
}
.article__date {
  font-size: 0.7em;
  color: #980000;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5 {
  margin-top: 3rem;
}
.article__actions {
  margin-top: 1rem;
}
.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: 3rem;
  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;
}
body.navi--open .navi .navi__collapse {
  transform: translateY(5.8rem);
}
body.navi--open .navi {
  border-image: none;
  border-bottom: none;
}
.navi {
  background: linear-gradient(270deg, #3c0009 25%, #0b0002 100%);
  min-height: 5.8rem;
  padding: unset;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #fff005 0%, #ff7700 100%) 1 stretch;
  border-image-slice: 1;
  border-image-width: 0 0 4px 0;
}
.navi__burger {
  top: 55% !important;
  right: 1.4rem !important;
}
.navi .header__symbol {
  max-height: unset;
}
.navi .wrap,
.navi .wrap--navi {
  height: 5.9rem;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .navi .wrap,
  .navi .wrap--navi {
    padding: 0 3.1rem;
    max-width: unset;
    margin: unset;
  }
  .navi .wrap ul,
  .navi .wrap--navi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .navi .wrap ul li,
  .navi .wrap--navi ul li {
    margin: 0 1rem;
  }
  .navi .wrap ul li a,
  .navi .wrap--navi ul li a {
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 1200px) {
  .navi .wrap,
  .navi .wrap--navi {
    padding: 0 9.3rem;
    max-width: unset;
    margin: unset;
  }
  .navi .wrap ul,
  .navi .wrap--navi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .navi .wrap ul li,
  .navi .wrap--navi ul li {
    margin: 0 1rem;
  }
  .navi .wrap ul li a,
  .navi .wrap--navi ul li a {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .navi .wrap,
  .navi .wrap--navi {
    margin-left: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .navi .navi__collapse {
    padding-left: 1rem;
  }
  .navi .navi__collapse li a {
    display: block;
    text-align: center;
  }
  .navi .navi__collapse li a:hover {
    opacity: 0.7;
    border-bottom: unset;
  }
}
@media only screen and (min-width: 1200px) {
  .navi .navi__collapse {
    padding-left: 2rem;
  }
  .navi .navi__collapse li a {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .navi .navi__collapse {
    background: linear-gradient(270deg, #3c0009 25%, #0b0002 100%);
    padding: unset;
  }
  .navi .navi__collapse ul {
    padding: 1.5rem 2rem;
  }
  .navi .navi__collapse ul li:first-child a {
    padding-top: unset;
  }
  .navi .navi__collapse ul li:last-child a {
    padding-bottom: unset;
  }
  .navi .navi__collapse ul li:last-child a::before {
    display: none;
  }
  .navi .navi__collapse li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Onest", Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-weight: 800;
    padding: 2rem 0;
    height: auto;
  }
  .navi .navi__collapse li a::after {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff44c;
    mask: url("../assets/flamez/arrow--right.svg") center / contain no-repeat;
  }
  .navi .navi__collapse li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #fff005 0%, #ff7700 100%);
    transition: opacity 0.2s ease;
  }
  .navi .navi__collapse li a:hover {
    border-bottom: unset;
    opacity: 0.7;
  }
}
@media only screen and (max-width: 992px) and only screen and (min-width: 992px) {
  .navi .navi__collapse li a {
    font-size: 1.25rem;
    line-height: 7rem;
  }
}
@media only screen and (max-width: 992px) and only screen and (min-width: 1200px) {
  .navi .navi__collapse li a {
    font-size: 1.5rem;
    line-height: 6.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .navi .navi__burger {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .navi .navi__logo {
    width: 10.6rem;
  }
}
.logo img {
  width: 10.6rem !important;
}
.wrap--narrow a {
  text-decoration: underline;
}
.wrap--narrow a:hover {
  opacity: 0.7;
  border-bottom: 0;
}
header .header__symbol {
  max-width: 80%;
}
@media only screen and (max-width: 992px) {
  header .header__symbol {
    max-width: 60%;
  }
  .content-wrapper {
    padding-top: 15px !important;
  }
  h1 {
    margin-bottom: 10px !important;
  }
  h2 {
    margin-bottom: 10px !important;
  }
  p {
    margin-bottom: 10px !important;
  }
  .section section--content {
    margin-bottom: 10px !important;
  }
  .footer__navi ul li {
    padding-bottom: 8px !important;
  }
  .content-wrapper ul li {
    margin-bottom: 10px !important;
  }
}
body.navi--open header .navi {
  background-color: #fff44c;
}
@media only screen and (min-width: 768px), only screen and (min-width: 992px) {
  header .header__content {
    padding-top: 149px;
  }
}
@media only screen and (max-width: 992px) {
  header .header__content .wrap {
    margin: 0 0.5rem;
  }
}
.content-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
.content-wrapper h1 {
  background: linear-gradient(90deg, #f70, #ffd709);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 18px;
  margin-bottom: 12px;
}
.content-wrapper h2 {
  color: #650000;
  margin-top: 18px;
  margin-bottom: 10px;
}
.content-wrapper h3 {
  color: #650000;
  margin-top: 18px;
  margin-bottom: 10px;
}
.content-wrapper p {
  color: #1c0000;
  margin-top: 12px;
  margin-bottom: 12px;
}
.content-wrapper ul li {
  color: #1c0000;
}
.content-wrapper a {
  color: #fa5d2b;
}
.hero .hero__title {
  background: linear-gradient(90deg, #f70, #ffd709);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8em;
}
@media only screen and (min-width: 768px) {
  .hero .hero__title {
    font-size: 3.6em;
  }
}
.hero h1 {
  font-family: "Onest", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 800;
  font-size: 2.6em;
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    font-size: 2.6em;
  }
}
.hero .hero__punchline {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.1em;
}
@media only screen and (min-width: 768px) {
  .hero .hero__punchline {
    font-size: 1.4em;
  }
}
.hero h2 {
  font-family: "Onest", Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #fa5d2b;
  line-height: 1.5;
  font-weight: 800;
  font-size: 1.3em;
}
@media only screen and (min-width: 768px) {
  .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;
  opacity: 0.5;
  left: 0;
  bottom: 0;
  background-size: cover;
}
@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;
  }
}
.section .section--content {
  padding-bottom: 0;
}
.section--content h1,
.section__title {
  text-transform: uppercase;
}
footer {
  background: transparent linear-gradient(90deg, #0b0002 0%, #3c0009 100%) 0% 0% no-repeat padding-box;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #ff5e00 0%, #fff005 100%) 1 stretch;
  border-image-slice: 1;
  border-image-width: 4px 0 0 0;
}
@media only screen and (min-width: 992px), only screen and (min-width: 1200px) {
  footer .wrap {
    padding: unset;
    grid-template-areas: "logo navi secondNavi" !important;
    grid-template-columns: auto 1fr max-content max-content !important;
    column-gap: 3.5rem;
    max-width: unset;
  }
  footer .wrap .footer__navi,
  footer .wrap .footer__right {
    justify-self: end;
  }
  footer .wrap .footer__navi:not(.footer__right) {
    position: relative;
    padding-left: 3.5rem;
  }
  footer .wrap .footer__navi:not(.footer__right)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(90deg, #ff5e00 0%, #fff005 100%);
  }
}
@media only screen and (max-width: 992px) {
  footer .wrap {
    justify-items: center;
    align-items: center;
  }
  footer .wrap .footer__logo {
    width: 13.7rem;
    margin-bottom: 2rem;
  }
  footer .wrap .footer__logo img {
    width: 100%;
  }
  footer .wrap .footer__navi,
  footer .wrap .footer__right {
    text-align: center;
    margin: unset;
  }
}
footer .footer__logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__logo img {
  width: 100%;
  max-width: 16rem;
}
@media only screen and (min-width: 992px) {
  footer .footer__locales {
    justify-content: start;
    margin-top: 3rem;
  }
}
footer .footer__locales a span {
  border-radius: 6px;
}
footer .footer__content {
  font-family: "Onest", Arial, Helvetica, sans-serif;
  color: green;
}
footer .footer__navi {
  font-weight: 800;
}
footer .footer__navi a {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-weight: 500;
  line-height: 2rem;
  font-size: 1rem;
}
footer .footer__navi a:hover {
  opacity: 0.7;
}
footer .footer__right {
  text-align: left;
}
@media only screen and (max-width: 992px) {
  footer {
    padding: 3.5rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  footer {
    padding: 5rem 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  footer {
    padding: 5rem 12.5rem;
  }
}
.button {
  font-family: "Onest", Arial, Helvetica, sans-serif;
  color: #1c0000;
}
.button--cta--hero {
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(90deg, #ff8000 0%, #fff44c 100%), #6f00ff;
  min-height: unset;
  height: 3.5em;
  font-size: 0.9em;
  border-radius: 6em;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.button--cta--hero::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-color: currentColor;
  mask: url("../assets/flamez/arrow--right.svg") center / contain no-repeat;
}
.button--cta--hero:hover {
  color: #ffffff;
}
div.article__title {
  margin-top: 0.5rem;
  color: red;
  font-family: "Onest", Arial, Helvetica, sans-serif;
}
.article__image--empty {
  background-color: darkgreen;
  text-align: center;
}
.article__image--empty img {
  display: inline-block;
}
.burger__lines {
  background: #fff44c;
  background-color: #fff44c;
  width: 1.5rem;
}
.burger__lines::after,
.burger__lines::before {
  background: #fff44c;
  width: 1.5rem;
}
body.navi--open .burger .burger__lines::after,
body.navi--open .burger .burger__lines::before {
  background: #fff44c;
  width: 1.5rem;
}
