/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/sass/style.scss ***!
  \************************************************************************************************************************************************************************************/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg); } }

@font-face {
  font-family: MessinaSansWeb;
  src: url(44cc02f9fa7ee6deb390.woff2) format("woff2"), url(cce42c453d92c8f53bdc.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Ruukki Mono";
  src: url(dcfcb3de0db641c9a2be.woff2) format("woff2"), url(ab8c1b31153522f0a60b.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 24px;
  height: 19px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 1px;
    background-color: #000000;
    border-radius: 0;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger-container {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 1025px) {
    .hamburger-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

nav {
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 12.8rem; }
  @media (max-width: 1025px) {
    nav {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 599px) {
    nav {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 1025px) {
    nav {
      grid-template-columns: repeat(6, 1fr); } }
  @media (max-width: 1025px) {
    nav {
      margin-bottom: 12.8rem; } }
  @media (max-width: 599px) {
    nav {
      margin-bottom: 12.8rem; } }
  nav.hamburger-nav a:link,
  nav.hamburger-nav a:visited {
    text-decoration: none; }
  nav.hamburger-nav .category-tag:nth-of-type(2) {
    grid-column: 7 / span 3; }
    @media (max-width: 1025px) {
      nav.hamburger-nav .category-tag:nth-of-type(2) {
        grid-column: auto; } }
  nav.hamburger-nav .category-tag:nth-of-type(2n + 1) {
    grid-column: 10 / span 3; }
    @media (max-width: 1025px) {
      nav.hamburger-nav .category-tag:nth-of-type(2n + 1) {
        grid-column: auto; } }
  @media (max-width: 1025px) {
    nav.hamburger-nav {
      position: fixed;
      top: 66px;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: calc(100% - 24px - 18px - 24px);
      z-index: 100;
      background-color: #ffffff;
      grid-template-columns: 1fr 1fr;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      display: block;
      visibility: hidden;
      pointer-events: none;
      overflow-y: auto;
      -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
      transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
      transition: transform 0.5s ease, opacity 0.5s ease;
      transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
      opacity: 0;
      -webkit-transform: translateY(10%);
              transform: translateY(10%);
      row-gap: 3.2rem;
      padding-bottom: 3.2rem;
      padding-left: 3.6rem;
      padding-right: 3.6rem; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    nav.hamburger-nav {
      row-gap: 3.2rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    nav.hamburger-nav {
      row-gap: 3.2rem; } }
  @media (max-width: 1025px) {
      nav.hamburger-nav ul li {
        opacity: 0;
        -webkit-transform: translateY(8px);
                transform: translateY(8px); }
      .admin-bar nav.hamburger-nav {
        top: 112px;
        height: calc(100% - 24px - 18px - 24px - 46px); } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    nav.hamburger-nav {
      padding-bottom: 3.2rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    nav.hamburger-nav {
      padding-bottom: 3.2rem; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    nav.hamburger-nav {
      padding-left: 3.6rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    nav.hamburger-nav {
      padding-left: 3.4rem; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    nav.hamburger-nav {
      padding-right: 3.6rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    nav.hamburger-nav {
      padding-right: 3.4rem; } }
  @media (max-width: 1025px) {
      nav.hamburger-nav.is-active {
        display: grid;
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        visibility: visible;
        pointer-events: all; }
        nav.hamburger-nav.is-active ul li {
          opacity: 1;
          -webkit-transform: translateY(0);
                  transform: translateY(0); }
          nav.hamburger-nav.is-active ul li:nth-child(1) {
            -webkit-transition: opacity 1s ease 0.3s, -webkit-transform 1s ease 0.3s;
            transition: opacity 1s ease 0.3s, -webkit-transform 1s ease 0.3s;
            transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
            transition: transform 1s ease 0.3s, opacity 1s ease 0.3s, -webkit-transform 1s ease 0.3s; }
          nav.hamburger-nav.is-active ul li:nth-child(2) {
            -webkit-transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
            transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
            transition: transform 1s ease 0.5s, opacity 1s ease 0.5s;
            transition: transform 1s ease 0.5s, opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s; }
          nav.hamburger-nav.is-active ul li:nth-child(3) {
            -webkit-transition: opacity 1s ease 0.7s, -webkit-transform 1s ease 0.7s;
            transition: opacity 1s ease 0.7s, -webkit-transform 1s ease 0.7s;
            transition: transform 1s ease 0.7s, opacity 1s ease 0.7s;
            transition: transform 1s ease 0.7s, opacity 1s ease 0.7s, -webkit-transform 1s ease 0.7s; }
          nav.hamburger-nav.is-active ul li:nth-child(4) {
            -webkit-transition: opacity 1s ease 0.9s, -webkit-transform 1s ease 0.9s;
            transition: opacity 1s ease 0.9s, -webkit-transform 1s ease 0.9s;
            transition: transform 1s ease 0.9s, opacity 1s ease 0.9s;
            transition: transform 1s ease 0.9s, opacity 1s ease 0.9s, -webkit-transform 1s ease 0.9s; }
          nav.hamburger-nav.is-active ul li:nth-child(5) {
            -webkit-transition: opacity 1s ease 1.1s, -webkit-transform 1s ease 1.1s;
            transition: opacity 1s ease 1.1s, -webkit-transform 1s ease 1.1s;
            transition: transform 1s ease 1.1s, opacity 1s ease 1.1s;
            transition: transform 1s ease 1.1s, opacity 1s ease 1.1s, -webkit-transform 1s ease 1.1s; }
          nav.hamburger-nav.is-active ul li:nth-child(6) {
            -webkit-transition: opacity 1s ease 1.3s, -webkit-transform 1s ease 1.3s;
            transition: opacity 1s ease 1.3s, -webkit-transform 1s ease 1.3s;
            transition: transform 1s ease 1.3s, opacity 1s ease 1.3s;
            transition: transform 1s ease 1.3s, opacity 1s ease 1.3s, -webkit-transform 1s ease 1.3s; }
          nav.hamburger-nav.is-active ul li:nth-child(7) {
            -webkit-transition: opacity 1s ease 1.5s, -webkit-transform 1s ease 1.5s;
            transition: opacity 1s ease 1.5s, -webkit-transform 1s ease 1.5s;
            transition: transform 1s ease 1.5s, opacity 1s ease 1.5s;
            transition: transform 1s ease 1.5s, opacity 1s ease 1.5s, -webkit-transform 1s ease 1.5s; }
          nav.hamburger-nav.is-active ul li:nth-child(8) {
            -webkit-transition: opacity 1s ease 1.7s, -webkit-transform 1s ease 1.7s;
            transition: opacity 1s ease 1.7s, -webkit-transform 1s ease 1.7s;
            transition: transform 1s ease 1.7s, opacity 1s ease 1.7s;
            transition: transform 1s ease 1.7s, opacity 1s ease 1.7s, -webkit-transform 1s ease 1.7s; }
          nav.hamburger-nav.is-active ul li:nth-child(9) {
            -webkit-transition: opacity 1s ease 1.9s, -webkit-transform 1s ease 1.9s;
            transition: opacity 1s ease 1.9s, -webkit-transform 1s ease 1.9s;
            transition: transform 1s ease 1.9s, opacity 1s ease 1.9s;
            transition: transform 1s ease 1.9s, opacity 1s ease 1.9s, -webkit-transform 1s ease 1.9s; }
          nav.hamburger-nav.is-active ul li:nth-child(10) {
            -webkit-transition: opacity 1s ease 2.1s, -webkit-transform 1s ease 2.1s;
            transition: opacity 1s ease 2.1s, -webkit-transform 1s ease 2.1s;
            transition: transform 1s ease 2.1s, opacity 1s ease 2.1s;
            transition: transform 1s ease 2.1s, opacity 1s ease 2.1s, -webkit-transform 1s ease 2.1s; }
          nav.hamburger-nav.is-active ul li:nth-child(11) {
            -webkit-transition: opacity 1s ease 2.3s, -webkit-transform 1s ease 2.3s;
            transition: opacity 1s ease 2.3s, -webkit-transform 1s ease 2.3s;
            transition: transform 1s ease 2.3s, opacity 1s ease 2.3s;
            transition: transform 1s ease 2.3s, opacity 1s ease 2.3s, -webkit-transform 1s ease 2.3s; }
          nav.hamburger-nav.is-active ul li:nth-child(12) {
            -webkit-transition: opacity 1s ease 2.5s, -webkit-transform 1s ease 2.5s;
            transition: opacity 1s ease 2.5s, -webkit-transform 1s ease 2.5s;
            transition: transform 1s ease 2.5s, opacity 1s ease 2.5s;
            transition: transform 1s ease 2.5s, opacity 1s ease 2.5s, -webkit-transform 1s ease 2.5s; }
          nav.hamburger-nav.is-active ul li:nth-child(13) {
            -webkit-transition: opacity 1s ease 2.7s, -webkit-transform 1s ease 2.7s;
            transition: opacity 1s ease 2.7s, -webkit-transform 1s ease 2.7s;
            transition: transform 1s ease 2.7s, opacity 1s ease 2.7s;
            transition: transform 1s ease 2.7s, opacity 1s ease 2.7s, -webkit-transform 1s ease 2.7s; }
          nav.hamburger-nav.is-active ul li:nth-child(14) {
            -webkit-transition: opacity 1s ease 2.9s, -webkit-transform 1s ease 2.9s;
            transition: opacity 1s ease 2.9s, -webkit-transform 1s ease 2.9s;
            transition: transform 1s ease 2.9s, opacity 1s ease 2.9s;
            transition: transform 1s ease 2.9s, opacity 1s ease 2.9s, -webkit-transform 1s ease 2.9s; }
          nav.hamburger-nav.is-active ul li:nth-child(15) {
            -webkit-transition: opacity 1s ease 3.1s, -webkit-transform 1s ease 3.1s;
            transition: opacity 1s ease 3.1s, -webkit-transform 1s ease 3.1s;
            transition: transform 1s ease 3.1s, opacity 1s ease 3.1s;
            transition: transform 1s ease 3.1s, opacity 1s ease 3.1s, -webkit-transform 1s ease 3.1s; }
          nav.hamburger-nav.is-active ul li:nth-child(16) {
            -webkit-transition: opacity 1s ease 3.3s, -webkit-transform 1s ease 3.3s;
            transition: opacity 1s ease 3.3s, -webkit-transform 1s ease 3.3s;
            transition: transform 1s ease 3.3s, opacity 1s ease 3.3s;
            transition: transform 1s ease 3.3s, opacity 1s ease 3.3s, -webkit-transform 1s ease 3.3s; }
          nav.hamburger-nav.is-active ul li:nth-child(17) {
            -webkit-transition: opacity 1s ease 3.5s, -webkit-transform 1s ease 3.5s;
            transition: opacity 1s ease 3.5s, -webkit-transform 1s ease 3.5s;
            transition: transform 1s ease 3.5s, opacity 1s ease 3.5s;
            transition: transform 1s ease 3.5s, opacity 1s ease 3.5s, -webkit-transform 1s ease 3.5s; }
          nav.hamburger-nav.is-active ul li:nth-child(18) {
            -webkit-transition: opacity 1s ease 3.7s, -webkit-transform 1s ease 3.7s;
            transition: opacity 1s ease 3.7s, -webkit-transform 1s ease 3.7s;
            transition: transform 1s ease 3.7s, opacity 1s ease 3.7s;
            transition: transform 1s ease 3.7s, opacity 1s ease 3.7s, -webkit-transform 1s ease 3.7s; }
          nav.hamburger-nav.is-active ul li:nth-child(19) {
            -webkit-transition: opacity 1s ease 3.9s, -webkit-transform 1s ease 3.9s;
            transition: opacity 1s ease 3.9s, -webkit-transform 1s ease 3.9s;
            transition: transform 1s ease 3.9s, opacity 1s ease 3.9s;
            transition: transform 1s ease 3.9s, opacity 1s ease 3.9s, -webkit-transform 1s ease 3.9s; }
          nav.hamburger-nav.is-active ul li:nth-child(20) {
            -webkit-transition: opacity 1s ease 4.1s, -webkit-transform 1s ease 4.1s;
            transition: opacity 1s ease 4.1s, -webkit-transform 1s ease 4.1s;
            transition: transform 1s ease 4.1s, opacity 1s ease 4.1s;
            transition: transform 1s ease 4.1s, opacity 1s ease 4.1s, -webkit-transform 1s ease 4.1s; } }
  nav ul {
    padding: 0;
    margin: 0;
    grid-column: span 3;
    list-style: none; }
    @media (max-width: 1025px) {
      nav ul {
        grid-column: auto; } }
    nav ul li {
      font-family: "Ruukki Mono", "sans-serif";
      font-size: 1.2rem;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0em;
      text-align: left;
      padding: 0;
      text-align: left; }

.logo {
  margin-top: 12.8rem;
  margin-bottom: 12.8rem;
  display: block;
  width: 100%;
  height: auto; }
  @media (max-width: 1025px) {
    .logo {
      margin-top: 12.8rem; } }
  @media (max-width: 599px) {
    .logo {
      margin-top: 12.8rem; } }
  @media (max-width: 1025px) {
    .logo {
      margin-bottom: 12.8rem; } }
  @media (max-width: 599px) {
    .logo {
      margin-bottom: 12.8rem; } }

.single header .wrap {
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr); }
  @media (max-width: 1025px) {
    .single header .wrap {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 599px) {
    .single header .wrap {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 1025px) {
    .single header .wrap {
      grid-template-columns: repeat(6, 1fr); } }
  .single header .wrap .logo {
    grid-column: 1 / span 5;
    margin: 0; }
    @media (max-width: 1025px) {
      .single header .wrap .logo {
        grid-column: 1 / span 4; } }
    @media (max-width: 599px) {
      .single header .wrap .logo {
        grid-column: 1 / span 3; } }
    .single header .wrap .logo img {
      width: 100%;
      height: auto; }
  .single header .wrap nav {
    display: block;
    margin: 0;
    grid-column: -5 / span 4; }
    @media (max-width: 1025px) {
      .single header .wrap nav {
        grid-column: 1 / -1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
        width: 100%;
        direction: ltr;
        margin-top: 6.4rem; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    .single header .wrap nav {
      margin-top: 6.4rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    .single header .wrap nav {
      margin-top: 6.4rem; } }

@media (max-width: 1025px) {
  .language-nav {
    grid-column: 1 / -1;
    max-height: 100px;
    align-self: start; } }

.language-nav ul {
  margin: 0;
  padding: 0; }

.language-nav li {
  list-style: none; }
  .language-nav li.current-lang {
    opacity: 0.3; }

footer {
  margin-top: 12.8rem; }
  @media (max-width: 1025px) {
    footer {
      margin-top: 12.8rem; } }
  @media (max-width: 599px) {
    footer {
      margin-top: 12.8rem; } }
  footer .footer-grey {
    padding-top: 6.4rem;
    padding-bottom: 2.4rem;
    background-color: #fafafa; }
    @media (max-width: 1025px) {
      footer .footer-grey {
        padding-top: 6.4rem; } }
    @media (max-width: 599px) {
      footer .footer-grey {
        padding-top: 6.4rem; } }
    @media (max-width: 1025px) {
      footer .footer-grey {
        padding-bottom: 2.4rem; } }
    @media (max-width: 599px) {
      footer .footer-grey {
        padding-bottom: 2.4rem; } }
  footer a:link,
  footer a:visited {
    text-decoration: none; }

.partner-categories {
  margin-bottom: 6.4rem; }
  .partner-categories > *:first-child {
    margin-top: 0; }
  .partner-categories > *:last-child {
    margin-bottom: 0; }
  @media (max-width: 1025px) {
    .partner-categories {
      margin-bottom: 6.4rem; } }
  @media (max-width: 599px) {
    .partner-categories {
      margin-bottom: 6.4rem; } }

.partner-category {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem; }
  @media (max-width: 1025px) {
    .partner-category {
      margin-top: 6.4rem; } }
  @media (max-width: 599px) {
    .partner-category {
      margin-top: 6.4rem; } }
  @media (max-width: 1025px) {
    .partner-category {
      margin-bottom: 6.4rem; } }
  @media (max-width: 599px) {
    .partner-category {
      margin-bottom: 6.4rem; } }
  .partner-category__name {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
    margin: 0 0 1em 0; }
  .partner-category .partners {
    margin-bottom: -2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (max-width: 1025px) {
      .partner-category .partners {
        margin-bottom: -2.4rem; } }
    @media (max-width: 599px) {
      .partner-category .partners {
        margin-bottom: -2.4rem; } }
    .partner-category .partners .partner {
      margin-right: 2.4rem;
      margin-bottom: 2.4rem;
      width: 16rem;
      height: 15.2rem; }
      @media (max-width: 1025px) {
        .partner-category .partners .partner {
          margin-right: 2.4rem; } }
      @media (max-width: 599px) {
        .partner-category .partners .partner {
          margin-right: 2.4rem; } }
      @media (max-width: 1025px) {
        .partner-category .partners .partner {
          margin-bottom: 2.4rem; } }
      @media (max-width: 599px) {
        .partner-category .partners .partner {
          margin-bottom: 2.4rem; } }
      .partner-category .partners .partner img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain;
        -o-object-position: center;
           object-position: center; }

.copyright {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left;
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  max-width: 2600px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left; }
  @media (max-width: 1025px) {
    .copyright {
      padding-left: 3.6rem; } }
  @media (max-width: 599px) {
    .copyright {
      padding-left: 3.4rem; } }
  @media (max-width: 1025px) {
    .copyright {
      padding-right: 3.6rem; } }
  @media (max-width: 599px) {
    .copyright {
      padding-right: 3.4rem; } }
  .copyright__menu,
  .copyright ul {
    list-style: none; }
    .copyright__menu,
    .copyright__menu li,
    .copyright ul,
    .copyright ul li {
      margin: 0;
      padding: 0; }

.marquee {
  margin-bottom: 12.8rem; }
  @media (max-width: 1025px) {
    .marquee {
      margin-bottom: 12.8rem; } }
  @media (max-width: 599px) {
    .marquee {
      margin-bottom: 12.8rem; } }
  .marquee__container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: block;
    position: relative; }
    .marquee__container img {
      display: block;
      height: 80px;
      width: auto;
      margin: 0;
      padding-right: 120px; }
  .marquee__item {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --word-width: 3353px; }
    .marquee__item.animate {
      -webkit-animation: marquee 16s linear infinite;
              animation: marquee 16s linear infinite; }
  .marquee__links-container {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    max-width: 2600px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-column-gap: 2.4rem;
       -moz-column-gap: 2.4rem;
            column-gap: 2.4rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 3.2rem; }
    @media (max-width: 1025px) {
      .marquee__links-container {
        padding-left: 3.6rem; } }
    @media (max-width: 599px) {
      .marquee__links-container {
        padding-left: 3.4rem; } }
    @media (max-width: 1025px) {
      .marquee__links-container {
        padding-right: 3.6rem; } }
    @media (max-width: 599px) {
      .marquee__links-container {
        padding-right: 3.4rem; } }
    @media (max-width: 1025px) {
      .marquee__links-container {
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem; } }
    @media (max-width: 599px) {
      .marquee__links-container {
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem; } }
    @media (max-width: 1025px) {
      .marquee__links-container {
        grid-template-columns: repeat(6, 1fr); } }
    @media (max-width: 1025px) {
      .marquee__links-container {
        margin-top: 3.2rem; } }
    @media (max-width: 599px) {
      .marquee__links-container {
        margin-top: 3.2rem; } }
  .marquee__links {
    grid-column: 7 / -1; }
    @media (max-width: 1025px) {
      .marquee__links {
        grid-column: 2 / -1; } }
    .marquee__links a {
      font-family: "Ruukki Mono", "sans-serif";
      font-size: 1.4rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.05em;
      text-align: left;
      text-transform: uppercase;
      text-decoration: none;
      margin-right: 3.2rem; }
      @media (max-width: 1025px) {
        .marquee__links a {
          margin-right: 3.2rem; } }
      @media (max-width: 599px) {
        .marquee__links a {
          margin-right: 3.2rem; } }
      .marquee__links a:last-child {
        margin-right: 0; }

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(calc(var(--word-width) * -1), 0, 0);
            transform: translate3d(calc(var(--word-width) * -1), 0, 0); } }

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(calc(var(--word-width) * -1), 0, 0);
            transform: translate3d(calc(var(--word-width) * -1), 0, 0); } }

.readmore {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: block; }

.article-category {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease; }
  @media (max-width: 1025px) {
    .article-category {
      padding-top: 3.2rem; } }
  @media (max-width: 599px) {
    .article-category {
      padding-top: 3.2rem; } }
  @media (max-width: 1025px) {
    .article-category {
      padding-bottom: 3.2rem; } }
  @media (max-width: 599px) {
    .article-category {
      padding-bottom: 3.2rem; } }
  .article-category--is-active {
    background-color: #fafafa; }
  .article-category a:link,
  .article-category a:visited {
    text-decoration: underline; }
  .article-category .wp-block-button__link:link, .article-category .wp-block-button__link:visited {
    text-decoration: none; }
  .article-category__line {
    -webkit-column-gap: 2.4rem;
       -moz-column-gap: 2.4rem;
            column-gap: 2.4rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 3.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    @media (max-width: 1025px) {
      .article-category__line {
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem; } }
    @media (max-width: 599px) {
      .article-category__line {
        -webkit-column-gap: 2.4rem;
           -moz-column-gap: 2.4rem;
                column-gap: 2.4rem; } }
    @media (max-width: 1025px) {
      .article-category__line {
        grid-template-columns: repeat(6, 1fr); } }
    @media (max-width: 599px) {
      .article-category__line {
        font-family: "Ruukki Mono", "sans-serif";
        font-size: 1.7rem;
        font-style: normal;
        font-weight: 400;
        line-height: 141%;
        letter-spacing: 0em;
        text-align: left; } }
    @media (max-width: 599px) {
      .article-category__line {
        margin-bottom: 3.2rem; } }
  @media (max-width: 599px) and (max-width: 1025px) {
    .article-category__line {
      margin-bottom: 3.2rem; } }
  @media (max-width: 599px) and (max-width: 599px) {
    .article-category__line {
      margin-bottom: 3.2rem; } }
  .article-category__title {
    margin: 0;
    grid-column: 2 / span 9;
    text-transform: uppercase; }
    @media (max-width: 1025px) {
      .article-category__title {
        grid-column: 1 / span 5;
        margin: 12px 0 0 0; } }
  .article-category__type {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
    grid-column: -3 / span 2; }
    @media (max-width: 1025px) {
      .article-category__type {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        grid-column: 1 / span 6; } }
  .article-category__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .article-category__open img {
      -webkit-transition: -webkit-transform 0.4s ease;
      transition: -webkit-transform 0.4s ease;
      transition: transform 0.4s ease;
      transition: transform 0.4s ease, -webkit-transform 0.4s ease; }
    .article-category--is-active .article-category__open img {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    @media (max-width: 1025px) {
      .article-category__open {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    @media (max-width: 599px) {
      .article-category__open {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end; }
        .article-category__open img {
          width: 18px;
          height: 18px; } }

.articles-container {
  display: block;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  will-change: max-height; }
  .article-category--is-active .articles-container {
    display: block; }
  .articles-container .swiper-wrapper {
    margin-top: 3.2rem;
    padding-bottom: 3.2rem; }
    @media (max-width: 1025px) {
      .articles-container .swiper-wrapper {
        margin-top: 3.2rem; } }
    @media (max-width: 599px) {
      .articles-container .swiper-wrapper {
        margin-top: 3.2rem; } }
    @media (max-width: 1025px) {
      .articles-container .swiper-wrapper {
        padding-bottom: 3.2rem; } }
    @media (max-width: 599px) {
      .articles-container .swiper-wrapper {
        padding-bottom: 3.2rem; } }
    @media (max-width: 599px) {
      .articles-container .swiper-wrapper {
        margin-top: 3.2rem; } }
  @media (max-width: 599px) and (max-width: 1025px) {
    .articles-container .swiper-wrapper {
      margin-top: 3.2rem; } }
  @media (max-width: 599px) and (max-width: 599px) {
    .articles-container .swiper-wrapper {
      margin-top: 3.2rem; } }

.article-card.swiper-slide {
  width: 34.4rem;
  margin-right: 2.4rem; }
  @media (max-width: 600px) {
    .article-card.swiper-slide {
      width: calc(100vw - 68px); }
      .article-card.swiper-slide:last-child:first-child {
        margin-right: 0; } }

.article-card > *:first-child {
  margin-top: 0; }

.article-card > *:last-child {
  margin-bottom: 0; }

.article-card__title {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 141%;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 1.0625em;
  margin-bottom: 1.0625em; }

.article-card__name {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left;
  margin: 1.3333em 0; }

.article-card__image {
  margin: 1em 0; }
  .article-card__image img {
    display: block;
    width: 100%;
    height: auto; }

.article-card__excerpt > *:first-child {
  margin-top: 0; }

.article-card__excerpt > *:last-child {
  margin-bottom: 0; }

.article-card__button {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem; }
  @media (max-width: 1025px) {
    .article-card__button {
      margin-top: 3.2rem; } }
  @media (max-width: 599px) {
    .article-card__button {
      margin-top: 3.2rem; } }
  @media (max-width: 1025px) {
    .article-card__button {
      margin-bottom: 3.2rem; } }
  @media (max-width: 599px) {
    .article-card__button {
      margin-bottom: 3.2rem; } }

.article-card.category-card {
  margin-right: 11.6rem; }

.article {
  margin-top: 12.8rem; }
  .article > *:first-child {
    margin-top: 0; }
  .article > *:last-child {
    margin-bottom: 0; }
  @media (max-width: 1025px) {
    .article {
      margin-top: 12.8rem; } }
  @media (max-width: 599px) {
    .article {
      margin-top: 12.8rem; } }
  .article__image {
    margin-top: 6.4rem;
    margin-bottom: 3.2rem;
    grid-column: 1 / -1; }
    @media (max-width: 1025px) {
      .article__image {
        margin-top: 6.4rem; } }
    @media (max-width: 599px) {
      .article__image {
        margin-top: 6.4rem; } }
    @media (max-width: 1025px) {
      .article__image {
        margin-bottom: 3.2rem; } }
    @media (max-width: 599px) {
      .article__image {
        margin-bottom: 3.2rem; } }
    .article__image img {
      display: block;
      width: 100%;
      height: auto; }
    @media (max-width: 1025px) {
      .article__image {
        width: 100%;
        height: 500px; }
        .article__image img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; } }
    @media (max-width: 599px) {
      .article__image {
        height: 264px; } }
  .article__tag {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
    grid-column: 2 / span 6;
    min-height: 128px; }
    @media (max-width: 1025px) {
      .article__tag {
        min-height: 0;
        grid-column: 1 / span 2; } }
  .article-name-date {
    grid-column: -5 / span 4; }
    @media (max-width: 1025px) {
      .article-name-date {
        grid-column: 3 / span 4; } }
    @media (max-width: 599px) {
      .article-name-date {
        margin-top: 6.4rem;
        grid-column: 1 / -1; } }
  @media (max-width: 599px) and (max-width: 1025px) {
    .article-name-date {
      margin-top: 6.4rem; } }
  @media (max-width: 599px) and (max-width: 599px) {
    .article-name-date {
      margin-top: 6.4rem; } }
  .article__name {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 3.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0.4706em; }
    @media (max-width: 599px) {
      .article__name {
        font-family: "Ruukki Mono", "sans-serif";
        font-size: 1.7rem;
        font-style: normal;
        font-weight: 400;
        line-height: 141%;
        letter-spacing: 0em;
        text-align: left; } }
    @media (max-width: 599px) {
      .article__name {
        font-family: "Ruukki Mono", "sans-serif";
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.05em;
        text-align: left;
        text-transform: uppercase;
        text-decoration: none; } }
  .article__date {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 141%;
    letter-spacing: 0em;
    text-align: left; }
    @media (max-width: 599px) {
      .article__date {
        font-family: "MessinaSansWeb", sans-serif;
        font-size: 1.7rem;
        font-style: normal;
        font-weight: 400;
        line-height: 141%;
        letter-spacing: 0em;
        text-align: left; } }
  @media (max-width: 599px) and (max-width: 599px) {
    .article__date {
      font-style: normal;
      font-weight: normal;
      font-size: 1.6rem;
      line-height: 1.375; } }
  .article__title {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
    grid-column: 2 / -6; }
    @media (max-width: 1025px) {
      .article__title {
        margin-top: 3.2rem; } }
    @media (max-width: 599px) {
      .article__title {
        margin-top: 3.2rem; } }
    @media (max-width: 1025px) {
      .article__title {
        margin-bottom: 3.2rem; } }
    @media (max-width: 599px) {
      .article__title {
        margin-bottom: 3.2rem; } }
    @media (max-width: 1025px) {
      .article__title {
        margin-top: 12.8rem;
        grid-column: 1 / -1;
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    .article__title {
      margin-top: 12.8rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    .article__title {
      margin-top: 12.8rem; } }
  .article__content {
    font-family: "MessinaSansWeb", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 141%;
    letter-spacing: 0em;
    text-align: left;
    grid-column: 2 / span 6; }
    .article__content > *:first-child {
      margin-top: 0; }
    .article__content > *:last-child {
      margin-bottom: 0; }
    @media (max-width: 599px) {
      .article__content {
        font-style: normal;
        font-weight: normal;
        font-size: 1.6rem;
        line-height: 1.375; } }
    @media (max-width: 1025px) {
      .article__content {
        grid-column: 1 / -1;
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6; } }
    .article__content img {
      display: block;
      width: 100%;
      height: auto; }
    .article__content figure {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem; }
      @media (max-width: 1025px) {
        .article__content figure {
          margin-top: 6.4rem; } }
      @media (max-width: 599px) {
        .article__content figure {
          margin-top: 6.4rem; } }
      @media (max-width: 1025px) {
        .article__content figure {
          margin-bottom: 6.4rem; } }
      @media (max-width: 599px) {
        .article__content figure {
          margin-bottom: 6.4rem; } }
  .article__caption {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
    grid-column: -5 / span 4; }
    @media (max-width: 1025px) {
      .article__caption {
        grid-column: 3 / span 4;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        margin-top: 6.4rem; } }
  @media (max-width: 1025px) and (max-width: 1025px) {
    .article__caption {
      margin-top: 6.4rem; } }
  @media (max-width: 1025px) and (max-width: 599px) {
    .article__caption {
      margin-top: 6.4rem; } }
    @media (max-width: 599px) {
      .article__caption {
        grid-column: 1 / -1; } }

.swiper-navigation {
  padding-left: 3.6rem;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  max-width: 2600px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (max-width: 1025px) {
    .swiper-navigation {
      padding-left: 3.6rem; } }
  @media (max-width: 599px) {
    .swiper-navigation {
      padding-left: 3.4rem; } }
  @media (max-width: 1025px) {
    .swiper-navigation {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 599px) {
    .swiper-navigation {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 1025px) {
    .swiper-navigation {
      grid-template-columns: repeat(6, 1fr); } }
  @media (max-width: 1025px) {
    .swiper-navigation {
      padding-left: 3.6rem; } }
  @media (max-width: 599px) {
    .swiper-navigation {
      padding-left: 3.4rem; } }
  @media (max-width: 1025px) {
    .swiper-navigation {
      padding-right: 3.6rem; } }
  @media (max-width: 599px) {
    .swiper-navigation {
      padding-right: 3.4rem; } }
  .swiper-navigation .swiper-navigation__container {
    grid-column: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1025px) {
      .swiper-navigation .swiper-navigation__container {
        grid-column: 1; } }
  .swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next {
    margin-top: 3.2rem;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer; }
    @media (max-width: 1025px) {
      .swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next {
        margin-top: 3.2rem; } }
    @media (max-width: 599px) {
      .swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next {
        margin-top: 3.2rem; } }
    @media (max-width: 599px) {
      .swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next {
        margin-top: 0; } }
    .swiper-navigation .swiper-button-prev img, .swiper-navigation .swiper-button-next img {
      display: block; }
  .swiper-navigation .swiper-button-prev {
    margin-right: 2.4rem; }
    .swiper-navigation .swiper-button-prev img {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .swiper-navigation .swiper-button-disabled {
    opacity: 0.3; }
  .swiper-navigation .swiper-button-lock {
    display: none; }

figcaption {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left; }

.page-info {
  margin-top: 12.8rem;
  margin-bottom: 12.8rem;
  row-gap: 3.2rem; }
  @media (max-width: 1025px) {
    .page-info {
      margin-top: 12.8rem; } }
  @media (max-width: 599px) {
    .page-info {
      margin-top: 12.8rem; } }
  @media (max-width: 1025px) {
    .page-info {
      margin-bottom: 12.8rem; } }
  @media (max-width: 599px) {
    .page-info {
      margin-bottom: 12.8rem; } }
  @media (max-width: 1025px) {
    .page-info {
      row-gap: 3.2rem; } }
  @media (max-width: 599px) {
    .page-info {
      row-gap: 3.2rem; } }

.page-dates {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  grid-column: 1 / span 6; }
  @media (max-width: 599px) {
    .page-dates {
      font-family: "Ruukki Mono", "sans-serif";
      font-size: 1.7rem;
      font-style: normal;
      font-weight: 400;
      line-height: 141%;
      letter-spacing: 0em;
      text-align: left; } }
  @media (max-width: 1025px) {
    .page-dates {
      grid-column: 3 / -1; } }
  @media (max-width: 599px) {
    .page-dates {
      grid-column: 1 / -1; } }

.page-description {
  margin: 0;
  grid-column: 7 / span 6; }
  .page-description > *:first-child {
    margin-top: 0; }
  .page-description > *:last-child {
    margin-bottom: 0; }
  @media (max-width: 1025px) {
    .page-description {
      grid-column: 3 / -1; } }
  @media (max-width: 599px) {
    .page-description {
      grid-column: 1 / -1; } }

.page__image {
  margin-top: 12.8rem;
  margin-bottom: 6.4rem; }
  @media (max-width: 1025px) {
    .page__image {
      margin-top: 12.8rem; } }
  @media (max-width: 599px) {
    .page__image {
      margin-top: 12.8rem; } }
  @media (max-width: 1025px) {
    .page__image {
      margin-bottom: 6.4rem; } }
  @media (max-width: 599px) {
    .page__image {
      margin-bottom: 6.4rem; } }
  .page__image img {
    display: block;
    width: 100%;
    height: auto; }
  .page__image video {
    display: block;
    width: 100%;
    height: auto; }
  @media (max-width: 1025px) {
    .page__image {
      width: 100%;
      height: 500px; }
      .page__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
      .page__image video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; } }
  @media (max-width: 599px) {
    .page__image {
      height: 264px; } }

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }
  .swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
        touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

*::-moz-selection {
  background-color: #000000;
  color: #ffffff; }

*::selection {
  background-color: #000000;
  color: #ffffff; }

html,
body {
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 10px; }
  @media (min-width: 1300px) {
    html {
      font-size: 12px; } }
  @media (min-width: 1500px) {
    html {
      font-size: 14px; } }
  @media (min-width: 1700px) {
    html {
      font-size: 15px; } }
  @media (min-width: 1900px) {
    html {
      font-size: 17px; } }
  @media (min-width: 2100px) {
    html {
      font-size: 18px; } }

body {
  font-size: 1.6rem;
  font-family: "MessinaSansWeb", sans-serif;
  color: #000000;
  padding-top: 2.4rem; }
  @media (max-width: 1025px) {
    body {
      padding-top: 2.4rem; } }
  @media (max-width: 599px) {
    body {
      padding-top: 2.4rem; } }
  body.single {
    padding-top: 6.4rem; }
    @media (max-width: 1025px) {
      body.single {
        padding-top: 6.4rem; } }
    @media (max-width: 599px) {
      body.single {
        padding-top: 6.4rem; } }

strong {
  font-weight: 400;
  font-style: italic; }

ul > *:first-child {
  margin-top: 0; }

ul > *:last-child {
  margin-bottom: 0; }

li {
  margin: 1em 0; }

.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block; }

img.margin-top {
  margin-top: 20px; }

a:link,
a:visited {
  color: inherit; }

pre {
  font-size: 1.1rem; }

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important; }

h1 {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 6.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left; }
  @media (max-width: 599px) {
    h1 {
      font-size: 3.4rem; } }

h2 {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase; }
  @media (max-width: 599px) {
    h2 {
      font-family: "Ruukki Mono", "sans-serif";
      font-size: 1.7rem;
      font-style: normal;
      font-weight: 400;
      line-height: 141%;
      letter-spacing: 0em;
      text-align: left; } }

h3 {
  font-family: "Ruukki Mono", "sans-serif";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 141%;
  letter-spacing: 0em;
  text-align: left; }

.button {
  cursor: pointer; }

.wrap {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  max-width: 2600px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (max-width: 1025px) {
    .wrap {
      padding-left: 3.6rem; } }
  @media (max-width: 599px) {
    .wrap {
      padding-left: 3.4rem; } }
  @media (max-width: 1025px) {
    .wrap {
      padding-right: 3.6rem; } }
  @media (max-width: 599px) {
    .wrap {
      padding-right: 3.4rem; } }

.grid {
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr); }
  @media (max-width: 1025px) {
    .grid {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 599px) {
    .grid {
      -webkit-column-gap: 2.4rem;
         -moz-column-gap: 2.4rem;
              column-gap: 2.4rem; } }
  @media (max-width: 1025px) {
    .grid {
      grid-template-columns: repeat(6, 1fr); } }

figure {
  margin: 0; }

.wp-block-button {
  display: inline-block; }
  .wp-block-button__link {
    font-family: "Ruukki Mono", "sans-serif";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2143em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    border: 1px solid #000000; }

