@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
* {
  outline: none;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
}

q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  height: 100%;
}

body {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
  font-family: "Libre Franklin", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #350030;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-underline-offset: 0.1em;
  -moz-text-underline-offset: 0.1em;
  text-underline-offset: 0.1em;
}
body.menu, body.search, body.filter {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p {
  line-height: 1.5em;
  word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Mono", sans-serif;
  line-height: 1.2em;
  word-break: break-word;
}

input,
textarea,
select,
button {
  border: 0;
  -moz-appearance: none;
       appearance: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
}

.animation-container {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.animation-container.white {
  background-color: #ffffff;
}
.animation-container.offwhite {
  background-color: #f4f4f4;
}
.animation-container.grey {
  background-color: #e6e6e6;
}
.animation-container.pink {
  background-color: #e10a7e;
}
.animation-container.landscape {
  aspect-ratio: 16/9;
}
.animation-container.portrait {
  aspect-ratio: 9/16;
}
.animation-container.square {
  aspect-ratio: 1/1;
}
.animation-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  background-color: #350030;
  color: #e6e6e6;
  font-size: 24px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 64px 0 32px;
  font-family: "DM Mono", sans-serif;
  cursor: pointer;
  background-image: url("../images/arrow-negative.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 12px;
}
.button.primary {
  background-color: #e10a7e;
}
.button.tmc {
  background-color: #f27dff;
  color: #350030;
  background-image: url("../images/arrow-positive.svg");
}
.button.submit {
  -ms-flex-pack: center;
      justify-content: center;
  background-image: none;
}
@media screen and (max-width: 1200px) {
  .button {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    height: 60px;
    padding: 0 32px 0 16px;
    background-position: center right 16px;
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  font-family: "DM Mono", sans-serif;
  color: #e6e6e6;
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .navigation {
    font-size: 20px;
  }
}
.navigation .header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  height: 80px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .navigation .header {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header {
    height: 100px;
  }
}
.navigation .header .brand {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
  background-color: #e10a7e;
  padding: 0 32px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .navigation .header .brand {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header .brand {
    width: 100%;
    padding: 0 16px;
  }
}
.navigation .header .search {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #e10a7e;
  -ms-flex-positive: 0;
      flex-grow: 0;
  background-image: url("../images/search-desktop.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .navigation .header .search {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header .search {
    background-color: #e6e6e6;
    padding: 0 16px;
    width: 50vw;
    background-image: url("../images/search-mobile.svg");
    background-position: center right 16px;
  }
}
.navigation .header .shop {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 80px;
  background-color: #e6e6e6;
  color: #e10a7e;
  padding: 0 32px;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
@media screen and (max-width: 1024px) {
  .navigation .header .shop {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header .shop {
    background-color: #f4f4f4;
    padding: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.navigation .header .open {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 80px;
  background-color: #350030;
  padding: 0 32px;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
@media screen and (max-width: 1024px) {
  .navigation .header .open {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header .open {
    padding: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.navigation .header .close {
  position: relative;
  display: none;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 80px;
  background-color: #e10a7e;
  padding: 0 32px;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
@media screen and (max-width: 1024px) {
  .navigation .header .close {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .header .close {
    background-color: #350030;
    padding: 0 16px;
  }
}
.navigation .navigator {
  position: relative;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: calc(100svh - 80px);
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator {
    height: calc(100svh - 50px);
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigator {
    height: calc(100svh - 100px);
  }
}
.navigation .navigator .primary {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 50%;
  background-color: #e10a7e;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .primary {
    width: 100%;
    height: auto;
  }
}
.navigation .navigator .primary .items {
  position: relative;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
.navigation .navigator .primary .items .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 160px;
  border-bottom: 1px solid #e6e6e6;
  padding: 0 32px;
  font-size: 80px;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .primary .items .item {
    font-size: 32px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigator .primary .items .item {
    padding: 0 16px;
  }
}
.navigation .navigator .primary .visual {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .primary .visual {
    display: none;
  }
}
.navigation .navigator .primary .visual .logo {
  position: relative;
  width: 50%;
  border-right: 1px solid #e6e6e6;
}
.navigation .navigator .primary .visual .logo .sizer {
  position: absolute;
  top: 4vw;
  right: 4vw;
  bottom: 4vw;
  left: 4vw;
}
.navigation .navigator .primary .visual .logo .sizer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.navigation .navigator .primary .visual .animation {
  position: relative;
  width: 50%;
}
.navigation .navigator .secondary {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 50%;
  height: 100%;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .secondary {
    width: 100%;
  }
}
.navigation .navigator .secondary .items {
  position: relative;
  color: #350030;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .navigation .navigator .secondary .items {
    padding: 16px;
  }
}
.navigation .navigator .secondary .items .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5em;
}
.navigation .navigator .secondary .items .socials {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.navigation .navigator .secondary .items .socials .social {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
}
.navigation .navigator .secondary .items .socials .social.tiktok {
  background-image: url("../images/tiktok.svg");
}
.navigation .navigator .secondary .items .socials .social.facebook {
  background-image: url("../images/facebook.svg");
}
.navigation .navigator .secondary .items .socials .social.instagram {
  background-image: url("../images/instagram.svg");
}
.navigation .navigator .secondary .items .languages {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  bottom: 32px;
  left: 32px;
  width: 140px;
  height: 70px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .secondary .items .languages {
    width: 80px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigator .secondary .items .languages {
    bottom: 16px;
    left: 16px;
  }
}
.navigation .navigator .secondary .items .languages .language {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 50%;
  height: 100%;
  border: 1px solid #350030;
}
.navigation .navigator .secondary .items .languages .language.active {
  background-color: #350030;
  color: #e6e6e6;
}
.navigation .navigator .secondary .extra {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-positive: 0;
      flex-grow: 0;
  font-size: 20px;
}
.navigation .navigator .secondary .extra .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 50%;
  background-color: #350030;
  color: #e6e6e6;
  height: 80px;
  padding: 0 32px;
  background-image: url("../images/arrow-negative.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 12px;
}
@media screen and (max-width: 1024px) {
  .navigation .navigator .secondary .extra .item {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navigator .secondary .extra .item {
    padding: 0 16px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    background-position: center right 16px;
  }
  .navigation .navigator .secondary .extra .item:nth-child(3) {
    border-bottom: none;
  }
}
.navigation .navigator .secondary .extra .item:nth-child(1) {
  width: 100%;
  background-color: #f27dff;
  color: #350030;
  background-image: url("../images/arrow-positive.svg");
}
.navigation .navigator .secondary .extra .item:nth-child(2) {
  border-right: 1px solid #e6e6e6;
}
@media screen and (max-width: 768px) {
  .navigation .navigator .secondary .extra .item:nth-child(2) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .menu .navigation .header {
    height: 50px;
  }
}
.menu .navigation .header .brand {
  background-color: #350030;
}
@media screen and (max-width: 768px) {
  .menu .navigation .header .brand {
    display: none;
  }
}
.menu .navigation .header .search,
.menu .navigation .header .shop,
.menu .navigation .header .open {
  display: none;
}
.menu .navigation .header .close {
  display: -ms-flexbox;
  display: flex;
}
.menu .navigation .navigator {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .menu .navigation .navigator {
    height: calc(100svh - 50px);
  }
}

.searchform {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: rgba(6, 6, 6, 0.28);
}
.searchform .container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  max-width: 700px;
  margin: auto;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .searchform .container {
    padding: 24px 16px;
  }
}
.searchform .container input {
  position: relative;
  width: 100%;
  height: 90px;
  background-color: #ffffff;
  font-size: 32px;
  font-family: "DM Mono", sans-serif;
  color: #350030;
  padding: 0 80px 0 32px;
  background-image: url("../images/search-placeholder.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: 24px auto;
}
.searchform .container input::-webkit-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.searchform .container input:-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.searchform .container input::-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.searchform .container input:-ms-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

@media screen and (max-width: 768px) {
  .searchform .container input {
    height: 60px;
    font-size: 20px;
    padding: 0 64px 0 16px;
    background-position: center right 16px;
  }
}
.search .searchform {
  display: block;
}

.page {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .page {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 100px;
  }
}

.footer {
  position: relative;
  background-color: #e6e6e6;
}
.footer .tag {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
  background-color: #ffffff;
  padding: 0 32px;
  color: #e10a7e;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .footer .tag {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .tag {
    height: 50px;
    padding: 16px;
    height: auto;
  }
}
.footer .menu {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .footer .menu {
    font-size: 20px;
  }
}
.footer .menu .primary {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary {
    width: 100%;
  }
}
.footer .menu .primary .visual {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
  background-color: #e10a7e;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .visual {
    width: 100%;
    height: 50vw;
  }
}
.footer .menu .primary .visual .logo {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .visual .logo {
    width: 50%;
  }
}
.footer .menu .primary .visual .logo .sizer {
  position: absolute;
  top: 4vw;
  right: 4vw;
  bottom: 4vw;
  left: 4vw;
}
@media screen and (max-width: 768px) {
  .footer .menu .primary .visual .logo .sizer {
    top: 8vw;
    right: 8vw;
    bottom: 8vw;
    left: 8vw;
  }
}
.footer .menu .primary .visual .logo .sizer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .menu .primary .visual .spacer {
  position: relative;
  display: none;
  width: 50%;
  height: 100%;
  border-left: 1px solid #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .visual .spacer {
    display: block;
  }
}
.footer .menu .primary .items {
  position: relative;
  width: 50%;
  height: 100%;
  background-color: #e6e6e6;
  border-right: 1px solid #350030;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .items {
    width: 100%;
    height: auto;
    border-right: none;
  }
}
.footer .menu .primary .items .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 33.333333%;
  padding: 0 32px;
  border-bottom: 1px solid #350030;
}
.footer .menu .primary .items .item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .items .item:last-child {
    border-bottom: 1px solid #350030;
  }
}
@media screen and (max-width: 1024px) {
  .footer .menu .primary .items .item {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer .menu .primary .items .item {
    padding: 0 16px;
  }
}
.footer .menu .secondary {
  position: relative;
  width: 50%;
  padding: 16px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .footer .menu .secondary {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer .menu .secondary {
    font-size: 16px;
    padding: 8px;
  }
}
.footer .menu .secondary .columns {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .menu .secondary .columns .column {
  position: relative;
  width: 50%;
  padding: 16px;
}
@media screen and (max-width: 1024px) {
  .footer .menu .secondary .columns .column {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer .menu .secondary .columns .column {
    padding: 8px;
  }
}
.footer .menu .secondary .columns .column .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5em;
}
.footer .menu .secondary .columns .column .icons {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .footer .menu .secondary .columns .column .icons {
    margin-top: 16px;
  }
}
.footer .menu .secondary .columns .column .icons .icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
}
.footer .menu .secondary .columns .column .icons .icon.tiktok {
  background-image: url("../images/tiktok.svg");
}
.footer .menu .secondary .columns .column .icons .icon.facebook {
  background-image: url("../images/facebook.svg");
}
.footer .menu .secondary .columns .column .icons .icon.instagram {
  background-image: url("../images/instagram.svg");
}
.footer .menu .secondary .columns .column:last-child .item {
  text-decoration: underline;
}
.footer .partners {
  position: relative;
  background-color: #350030;
  padding: 64px;
}
@media screen and (max-width: 1024px) {
  .footer .partners {
    padding: 32px;
  }
}
.footer .partners .logos {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -32px;
}
@media screen and (max-width: 1024px) {
  .footer .partners .logos {
    margin: -16px;
  }
}
.footer .partners .logos .logo {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .footer .partners .logos .logo {
    padding: 16px;
  }
}
.footer .partners .logos .logo .box {
  position: relative;
  width: 100px;
  height: 60px;
}
.footer .partners .logos .logo .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer .credits {
  position: relative;
  background-color: #ffffff;
  font-size: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 24px 32px;
}
@media screen and (max-width: 1024px) {
  .footer .credits {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer .credits {
    display: block;
    padding: 16px;
  }
}
.footer .credits ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .footer .credits ul {
    display: block;
  }
}
.footer .credits ul li a {
  text-decoration: underline;
}
.footer .credits ul:first-child {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer .credits ul:first-child {
    text-align: center;
    margin-bottom: 16px;
  }
}
.footer .credits ul:last-child {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .credits ul:last-child {
    text-align: center;
  }
}

.flex {
  position: relative;
}
.flex .block {
  position: relative;
  background-color: #ffffff;
}
.flex .block.dark {
  background-color: #e6e6e6;
}
.flex .block .container {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px;
}
@media screen and (max-width: 768px) {
  .flex .block .container {
    padding: 32px 16px;
  }
}

.flexbody {
  position: relative;
}
.flexbody .text_row {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .flexbody .text_row {
    margin-bottom: 32px;
  }
}
.flexbody .text_row:last-child {
  margin-bottom: 0;
}
.flexbody .text_row h1,
.flexbody .text_row h2,
.flexbody .text_row h3,
.flexbody .text_row h4,
.flexbody .text_row h5,
.flexbody .text_row h6 {
  font-size: 40px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .flexbody .text_row h1,
  .flexbody .text_row h2,
  .flexbody .text_row h3,
  .flexbody .text_row h4,
  .flexbody .text_row h5,
  .flexbody .text_row h6 {
    font-size: 32px;
  }
}
.flexbody .text_row p {
  margin-bottom: 1em;
}
.flexbody .text_row p:last-child {
  margin-bottom: 0;
}
.flexbody .button_row {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .flexbody .button_row {
    margin-bottom: 32px;
  }
}
.flexbody .button_row:last-child {
  margin-bottom: 0;
}
.flexbody .images_row {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .flexbody .images_row {
    margin-bottom: 32px;
  }
}
.flexbody .images_row:last-child {
  margin-bottom: 0;
}
.flexbody .images_row .images {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .flexbody .images_row .images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
}
.flexbody .images_row .images .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .flexbody .images_row .images .image {
    width: 100%;
  }
}
.flexbody .images_row .images .image .ratio {
  position: relative;
  height: 500px;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .flexbody .images_row .images .image .ratio {
    height: auto;
    padding-bottom: 120%;
  }
}
.flexbody .images_row .images .image .ratio .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flexbody .images_row .images .image .ratio .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flexbody .images_row .images.single .image {
  width: 100%;
}
.flexbody .images_row .images.single .image .ratio {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .flexbody .images_row .images.single .image .ratio {
    height: auto;
    padding-bottom: 60%;
  }
}
.flexbody .program_row {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row {
    margin-bottom: 32px;
  }
}
.flexbody .program_row:last-child {
  margin-bottom: 0;
}
.flexbody .program_row .program {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program {
    height: auto;
    padding-bottom: 120%;
  }
}
.flexbody .program_row .program .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flexbody .program_row .program .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flexbody .program_row .program .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(53, 0, 48, 0) 16.35%, rgba(53, 0, 48, 0.2) 35.58%, #350030 79.33%);
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program .gradient {
    background: linear-gradient(0deg, rgba(53, 0, 48, 0) 16.35%, rgba(53, 0, 48, 0.2) 35.58%, #350030 79.33%);
  }
}
.flexbody .program_row .program .text {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program .text {
    padding: 24px 16px;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.flexbody .program_row .program .text .type {
  position: relative;
  margin-bottom: 36px;
}
.flexbody .program_row .program .text .type span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program .text .type span {
    font-size: 18px;
  }
}
.flexbody .program_row .program .text .about {
  position: relative;
}
.flexbody .program_row .program .text .about span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program .text .about span {
    font-size: 32px;
  }
}
.flexbody .program_row .program .text .about ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .flexbody .program_row .program .text .about ul {
    font-size: 18px;
  }
}
.flexbody .program_row .program .text .about ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #e6e6e6;
  transform: translateY(10%);
}
.flexbody .program_row .program .text .about ul li:last-child:after {
  display: none;
}

.page.home {
  position: relative;
}
.page.home .hero {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: calc(100svh - 80px);
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .page.home .hero {
    height: calc(100svh - 50px);
  }
}
@media screen and (max-width: 768px) {
  .page.home .hero {
    height: calc(100svh - 100px);
  }
}
.page.home .hero .information {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 25%;
}
@media screen and (max-width: 1200px) {
  .page.home .hero .information {
    width: 33.333333%;
  }
}
@media screen and (max-width: 1024px) {
  .page.home .hero .information {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page.home .hero .information {
    width: 100%;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    height: 50vw;
  }
}
.page.home .hero .information .logo {
  position: relative;
  background-color: #e10a7e;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.home .hero .information .logo {
    width: 50%;
    padding: 16px;
  }
}
.page.home .hero .information .logo .sizer {
  position: absolute;
  top: 4vw;
  right: 4vw;
  bottom: 4vw;
  left: 4vw;
}
@media screen and (max-width: 768px) {
  .page.home .hero .information .logo .sizer {
    top: 8vw;
    right: 8vw;
    bottom: 8vw;
    left: 8vw;
  }
}
.page.home .hero .information .logo .sizer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page.home .hero .information .dates {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #350030;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 42px;
  color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .page.home .hero .information .dates {
    padding: 16px;
    font-size: 32px;
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .page.home .hero .information .dates {
    font-size: 24px;
  }
}
.page.home .hero .information .dates .date {
  position: relative;
  text-align: right;
  line-height: 1.2em;
}
.page.home .hero .information .dates .date span {
  display: block;
}
.page.home .hero .information .dates .date:first-child {
  text-align: left;
}
.page.home .hero .information .dates .date:last-child {
  text-align: right;
}
.page.home .hero .information .dates:after {
  content: "—";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page.home .hero .video {
  width: 75%;
}
@media screen and (max-width: 1200px) {
  .page.home .hero .video {
    width: 66.666667%;
  }
}
@media screen and (max-width: 1024px) {
  .page.home .hero .video {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page.home .hero .video {
    width: 100%;
  }
}
.page.home .introduction {
  position: relative;
  background-color: #ffffff;
}
.page.home .introduction .title {
  position: relative;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 64px;
  color: #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.home .introduction .title {
    padding: 16px;
    font-size: 32px;
  }
}
.page.home .introduction .spacer {
  position: relative;
  height: 200px;
  background-color: #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.home .introduction .spacer {
    height: 160px;
  }
}
.page.home .introduction .body {
  position: relative;
  font-size: 32px;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
  color: #e10a7e;
}
@media screen and (max-width: 1024px) {
  .page.home .introduction .body {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page.home .introduction .body {
    font-size: 18px;
    padding: 24px 16px;
  }
}
.page.home .introduction .body p {
  margin-bottom: 1em;
}
.page.home .introduction .body p:last-child {
  margin-bottom: 0;
}
.page.home .program {
  position: relative;
  background-color: #f4f4f4;
}
.page.home .program .header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background-color: #f4f4f4;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.home .program .header {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 480px) {
  .page.home .program .header {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.page.home .program .header h2 {
  font-size: 64px;
}
@media screen and (max-width: 1200px) {
  .page.home .program .header h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.home .program .header h2 {
    font-size: 32px;
  }
}
.page.home .program .header .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.home .program .header .button {
    width: calc(50vw - 64px);
  }
}
@media screen and (max-width: 480px) {
  .page.home .program .header .button {
    width: 100%;
    margin-top: 24px;
  }
}
.page.home .program .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.home .program .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 50%;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.home .program .tiles .tile:nth-child(even) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .page.home .program .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.home .program .tiles .tile .image {
  position: relative;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  -ms-flex-positive: 0;
      flex-grow: 0;
  overflow: hidden;
}
.page.home .program .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.home .program .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.home .program .tiles .tile .image .label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page.home .program .tiles .tile .image .label {
    font-size: 16px;
    left: 16px;
    bottom: 24px;
  }
}
.page.home .program .tiles .tile .information {
  position: relative;
  padding: 32px;
  background-color: #f4f4f4;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .page.home .program .tiles .tile .information {
    padding: 24px 16px;
  }
}
.page.home .program .tiles .tile .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page.home .program .tiles .tile .information span {
    font-size: 18px;
  }
}
.page.home .program .tiles .tile:hover .image .holder {
  scale: 1.05;
}
.page.home .program .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.home .program .tiles .fill {
    display: none;
  }
}
.page.home .visual {
  position: relative;
}
.page.home .visual .spacer {
  position: relative;
  height: 200px;
  background-color: #e6e6e6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.home .visual .spacer {
    height: 160px;
  }
}
.page.home .visual .slider {
  position: relative;
  height: 500px;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .page.home .visual .slider {
    height: 400px;
  }
}
.page.home .visual .slider .item {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.home .visual .slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.home .visual .slider .item.active {
  display: block;
}
.page.home .visual .slider .player {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  top: 32px;
  right: 32px;
}
.page.home .visual .slider .player .dir {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  cursor: pointer;
  background-image: url("../images/arrow-alternative.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px auto;
}
.page.home .visual .slider .player .dir:first-child {
  transform: scaleX(-1);
}
.page.home .visual .slider .player .break {
  position: relative;
  width: 1px;
  background-color: #e10a7e;
}
.page.home .stories {
  position: relative;
  background-color: #f4f4f4;
}
.page.home .stories .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.home .stories .tiles .text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 33.333333%;
  background-color: #ffffff;
  padding: 32px;
}
@media screen and (max-width: 1200px) {
  .page.home .stories .tiles .text {
    width: 66.666666%;
  }
}
@media screen and (max-width: 1024px) {
  .page.home .stories .tiles .text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.home .stories .tiles .text {
    padding: 24px 16px;
  }
}
.page.home .stories .tiles .text .body {
  position: relative;
}
.page.home .stories .tiles .text .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.home .stories .tiles .text .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.home .stories .tiles .text .body h2 {
    font-size: 32px;
  }
}
.page.home .stories .tiles .text .button {
  margin-top: 24px;
}
.page.home .stories .tiles .tile {
  position: relative;
  width: 66.666666%;
  min-height: 40vw;
}
@media screen and (max-width: 1200px) {
  .page.home .stories .tiles .tile {
    width: 33.333333%;
  }
}
@media screen and (max-width: 1024px) {
  .page.home .stories .tiles .tile {
    width: 100%;
    min-height: 60vw;
  }
}
.page.home .stories .tiles .tile .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d8d8d8;
  overflow: hidden;
}
.page.home .stories .tiles .tile .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.home .stories .tiles .tile .holder .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.home .stories .tiles .tile .holder .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(53, 0, 48, 0) 50.96%, rgba(53, 0, 48, 0.2) 65.38%, rgba(53, 0, 48, 0.64) 83.65%, #350030 100%);
}
.page.home .stories .tiles .tile .holder .information {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .page.home .stories .tiles .tile .holder .information {
    bottom: 24px;
    left: 16px;
    right: 16px;
  }
}
.page.home .stories .tiles .tile .holder .information .label {
  position: relative;
  margin-bottom: 16px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
.page.home .stories .tiles .tile .holder .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page.home .stories .tiles .tile .holder .information span {
    font-size: 24px;
  }
}
.page.home .stories .tiles .tile:hover .holder .image {
  scale: 1.05;
}
.page.home .partners {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page.home .partners {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
.page.home .partners .image {
  position: relative;
  width: 50%;
  min-height: 50vw;
  background-color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .page.home .partners .image {
    width: 100%;
    height: 100vw;
  }
}
.page.home .partners .image .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.home .partners .image .slider .item {
  position: absolute;
  display: none;
  top: 128px;
  right: 128px;
  left: 128px;
  bottom: 128px;
}
@media screen and (max-width: 1024px) {
  .page.home .partners .image .slider .item {
    top: 64px;
    right: 64px;
    left: 64px;
    bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.home .partners .image .slider .item {
    top: 32px;
    right: 32px;
    left: 32px;
    bottom: 32px;
  }
}
.page.home .partners .image .slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page.home .partners .image .slider .item.active {
  display: block;
}
.page.home .partners .image .slider .player {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  top: 32px;
  right: 32px;
}
.page.home .partners .image .slider .player .dir {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  cursor: pointer;
  background-image: url("../images/arrow-alternative.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px auto;
}
.page.home .partners .image .slider .player .dir:first-child {
  transform: scaleX(-1);
}
.page.home .partners .image .slider .player .break {
  position: relative;
  width: 1px;
  background-color: #e10a7e;
}
.page.home .partners .text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  background-color: #e10a7e;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.home .partners .text {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.home .partners .text .body {
  position: relative;
}
.page.home .partners .text .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.home .partners .text .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.home .partners .text .body h2 {
    font-size: 32px;
  }
}
.page.home .partners .text .buttons {
  position: relative;
  margin-top: 24px;
}
.page.home .partners .text .buttons .button {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.home .partners .text .buttons .button {
    margin-bottom: 8px;
  }
}
.page.home .partners .text .buttons .button:last-child {
  margin-bottom: 0;
}
.page.home .close {
  position: relative;
  border-bottom: 1px solid #e10a7e;
  z-index: 1000;
}
.page.home .close .spacer {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page.home .close .spacer {
    height: 160px;
  }
}

.page.program {
  position: relative;
}
.page.program .hero {
  position: relative;
}
.page.program .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.program .hero .title {
    padding: 24px 16px;
  }
}
.page.program .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.program .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.program .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.program .hero .title h1 {
    font-size: 40px;
  }
}
.page.program .hero .filters {
  position: relative;
}
.page.program .hero .filters .canvas {
  position: relative;
  padding: 48px 32px;
  margin-top: -48px;
}
@media screen and (max-width: 768px) {
  .page.program .hero .filters .canvas {
    position: fixed;
    display: none;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #ffffff;
    padding: 74px 16px 24px 16px;
  }
  .filter .page.program .hero .filters .canvas {
    display: block;
  }
}
.page.program .hero .filters .canvas h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.program .hero .filters .canvas h2 {
    margin-bottom: 24px;
    font-size: 40px;
    color: #350030;
  }
}
.page.program .hero .filters .canvas .columns {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page.program .hero .filters .canvas .columns {
    -ms-flex-direction: column;
        flex-direction: column;
    border-bottom: 1px solid #350030;
    gap: 0;
  }
}
.page.program .hero .filters .canvas .columns .column {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  border-top: 1px solid #350030;
  border-bottom: 1px solid #350030;
}
@media screen and (max-width: 768px) {
  .page.program .hero .filters .canvas .columns .column {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    border-bottom: none;
  }
}
.page.program .hero .filters .canvas .close {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .filter .page.program .hero .filters .canvas .close {
    display: block;
  }
}
.page.program .hero .filters .canvas .close .action {
  position: absolute;
  top: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: #350030;
  color: #f4f4f4;
  font-family: "DM Mono", sans-serif;
  font-size: 20px;
  padding: 0 16px;
  height: 50px;
}
.page.program .hero .filters .trigger {
  position: relative;
  display: none;
  padding: 24px 16px;
  margin-top: -24px;
}
@media screen and (max-width: 768px) {
  .page.program .hero .filters .trigger {
    display: block;
  }
}
.page.program .grid {
  position: relative;
  background-color: #f4f4f4;
}
.page.program .grid .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.program .grid .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.program .grid .tiles .tile:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .page.program .grid .tiles .tile {
    width: 50%;
  }
  .page.program .grid .tiles .tile:nth-child(3n) {
    border-right: 1px solid #e10a7e;
  }
  .page.program .grid .tiles .tile:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.program .grid .tiles .tile .image {
  position: relative;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  -ms-flex-positive: 0;
      flex-grow: 0;
  overflow: hidden;
}
.page.program .grid .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.program .grid .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.program .grid .tiles .tile .image .label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .tile .image .label {
    font-size: 16px;
    left: 16px;
    bottom: 24px;
  }
}
.page.program .grid .tiles .tile .information {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 32px;
  background-color: #f4f4f4;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .tile .information {
    padding: 24px 16px;
  }
}
.page.program .grid .tiles .tile .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .tile .information span {
    font-size: 18px;
  }
}
.page.program .grid .tiles .tile .information ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .tile .information ul {
    font-size: 18px;
  }
}
.page.program .grid .tiles .tile .information ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #350030;
  transform: translateY(10%);
}
.page.program .grid .tiles .tile .information ul li:last-child:after {
  display: none;
}
.page.program .grid .tiles .tile:hover .image .holder {
  scale: 1.05;
}
.page.program .grid .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.program .grid .tiles .fill {
    display: none;
  }
}
.page.program .more {
  position: relative;
}
.page.program .more .spacer {
  position: relative;
  height: 200px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.program .more .spacer {
    height: 160px;
  }
}
.page.program .more .columns {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.program .more .columns .column {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  background-color: #ffffff;
  padding: 32px;
}
.page.program .more .columns .column:first-child {
  background-color: #f4f4f4;
}
.page.program .more .columns .column:last-child {
  background-color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .page.program .more .columns .column {
    padding: 24px 16px;
    width: 100%;
  }
}
.page.program .more .columns .column .body {
  position: relative;
}
.page.program .more .columns .column .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.program .more .columns .column .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.program .more .columns .column .body h2 {
    font-size: 32px;
  }
}
.page.program .more .columns .column .button {
  margin-top: 24px;
}

.page.program-item {
  position: relative;
}
.page.program-item .hero {
  position: relative;
  background-color: #f4f4f4;
}
.page.program-item .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.program-item .hero .image {
    height: 400px;
  }
}
.page.program-item .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.program-item .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.program-item .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .hero .title {
    padding: 24px 16px;
  }
}
.page.program-item .hero .title .label {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.program-item .hero .title .label {
    font-size: 16px;
  }
}
.page.program-item .hero .title h1 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.program-item .hero .title h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.program-item .hero .title h1 {
    font-size: 32px;
  }
}
.page.program-item .hero .title ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .hero .title ul {
    font-size: 18px;
  }
}
.page.program-item .hero .title ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #350030;
  transform: translateY(10%);
}
.page.program-item .hero .title ul li:last-child:after {
  display: none;
}
.page.program-item .content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.program-item .content .primary {
  position: relative;
  width: 66.666666%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.program-item .content .primary .text {
  position: relative;
}
.page.program-item .content .primary .text p {
  margin-bottom: 1em;
}
.page.program-item .content .primary .text p:last-child {
  margin-bottom: 0;
}
.page.program-item .content .primary .cta {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .cta {
    margin-top: 24px;
  }
}
.page.program-item .content .primary .cta .button {
  width: calc(50% - 64px);
}
@media screen and (max-width: 1024px) {
  .page.program-item .content .primary .cta .button {
    width: 100%;
  }
}
.page.program-item .content .primary .videos {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .videos {
    margin-top: 24px;
  }
}
.page.program-item .content .primary .videos .video {
  position: relative;
  margin-top: 32px;
  padding-bottom: 56.25%;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .videos .video {
    margin-top: 24px;
  }
}
.page.program-item .content .primary .videos .video:last-child {
  margin-top: 0;
}
.page.program-item .content .primary .videos .video .embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.program-item .content .primary .videos .video .embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.page.program-item .content .primary .related {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related {
    margin-top: 24px;
  }
}
.page.program-item .content .primary .related .refer {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 56.25%;
  background-color: #d8d8d8;
}
.page.program-item .content .primary .related .refer .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.program-item .content .primary .related .refer .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.program-item .content .primary .related .refer .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(53, 0, 48, 0) 16.35%, rgba(53, 0, 48, 0.2) 35.58%, #350030 79.33%);
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related .refer .gradient {
    background: linear-gradient(0deg, rgba(53, 0, 48, 0) 16.35%, rgba(53, 0, 48, 0.2) 35.58%, #350030 79.33%);
  }
}
.page.program-item .content .primary .related .refer .text {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related .refer .text {
    padding: 24px 16px;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.page.program-item .content .primary .related .refer .text .type {
  position: relative;
  margin-bottom: 36px;
}
.page.program-item .content .primary .related .refer .text .type span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related .refer .text .type span {
    font-size: 18px;
  }
}
.page.program-item .content .primary .related .refer .text .about {
  position: relative;
}
.page.program-item .content .primary .related .refer .text .about span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related .refer .text .about span {
    font-size: 32px;
  }
}
.page.program-item .content .primary .related .refer .text .about ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .primary .related .refer .text .about ul {
    font-size: 18px;
  }
}
.page.program-item .content .primary .related .refer .text .about ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #e6e6e6;
  transform: translateY(10%);
}
.page.program-item .content .primary .related .refer .text .about ul li:last-child:after {
  display: none;
}
.page.program-item .content .secondary {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .secondary {
    width: 100%;
  }
}
.page.program-item .content .secondary .about {
  position: relative;
  -ms-flex-positive: 0;
      flex-grow: 0;
  background-color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .secondary .about {
    padding: 24px 16px;
  }
}
.page.program-item .content .secondary .about .facts {
  position: relative;
}
.page.program-item .content .secondary .about .facts h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .secondary .about .facts h2 {
    font-size: 20px;
  }
}
.page.program-item .content .secondary .about .facts ul {
  line-height: 1.5em;
}
.page.program-item .content .secondary .about .facts ul li span {
  font-weight: 500;
}
.page.program-item .content .secondary .about .awards {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .secondary .about .awards {
    margin-top: 24px;
  }
}
.page.program-item .content .secondary .about .awards span {
  position: relative;
  display: block;
  line-height: 1.5em;
}
.page.program-item .content .secondary .about .awards span:after {
  content: ":";
}
.page.program-item .content .secondary .about .awards ul {
  line-height: 1.5em;
  list-style-type: disc;
  margin-left: 24px;
}
.page.program-item .content .secondary .artwork {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  background-color: #f4f4f4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.program-item .content .secondary .artwork {
    height: 160px;
  }
}
.page.program-item .program {
  position: relative;
  background-color: #f4f4f4;
}
.page.program-item .program .header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background-color: #e10a7e;
  color: #e6e6e6;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .header {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 480px) {
  .page.program-item .program .header {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.page.program-item .program .header h2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .header h2 {
    font-size: 32px;
  }
}
.page.program-item .program .header .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.program-item .program .header .button {
    width: calc(50vw - 64px);
  }
}
@media screen and (max-width: 480px) {
  .page.program-item .program .header .button {
    width: 100%;
    margin-top: 24px;
  }
}
.page.program-item .program .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -1px;
}
.page.program-item .program .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.program-item .program .tiles .tile:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .page.program-item .program .tiles .tile {
    width: 50%;
  }
  .page.program-item .program .tiles .tile:nth-child(3n) {
    border-right: 1px solid #e10a7e;
  }
  .page.program-item .program .tiles .tile:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.program-item .program .tiles .tile .image {
  position: relative;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  -ms-flex-positive: 0;
      flex-grow: 0;
  overflow: hidden;
}
.page.program-item .program .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.program-item .program .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.program-item .program .tiles .tile .image .label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .tile .image .label {
    font-size: 16px;
    left: 16px;
    bottom: 24px;
  }
}
.page.program-item .program .tiles .tile .information {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 32px;
  background-color: #f4f4f4;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .tile .information {
    padding: 24px 16px;
  }
}
.page.program-item .program .tiles .tile .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .tile .information span {
    font-size: 18px;
  }
}
.page.program-item .program .tiles .tile .information ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .tile .information ul {
    font-size: 18px;
  }
}
.page.program-item .program .tiles .tile .information ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #350030;
  transform: translateY(10%);
}
.page.program-item .program .tiles .tile .information ul li:last-child:after {
  display: none;
}
.page.program-item .program .tiles .tile:hover .image .holder {
  scale: 1.05;
}
.page.program-item .program .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.program-item .program .tiles .fill {
    display: none;
  }
}
.page.program-item .close {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}
.page.program-item .close .spacer {
  position: relative;
  height: 200px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.program-item .close .spacer {
    height: 160px;
  }
}

.page.satellite-program {
  position: relative;
}
.page.satellite-program .hero {
  position: relative;
}
.page.satellite-program .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .hero .title {
    padding: 24px 16px;
  }
}
.page.satellite-program .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.satellite-program .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.satellite-program .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.satellite-program .hero .title h1 {
    font-size: 40px;
  }
}
.page.satellite-program .grid {
  position: relative;
  background-color: #f4f4f4;
}
.page.satellite-program .grid .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.satellite-program .grid .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.satellite-program .grid .tiles .tile:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .page.satellite-program .grid .tiles .tile {
    width: 50%;
  }
  .page.satellite-program .grid .tiles .tile:nth-child(3n) {
    border-right: 1px solid #e10a7e;
  }
  .page.satellite-program .grid .tiles .tile:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.satellite-program .grid .tiles .tile .image {
  position: relative;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  -ms-flex-positive: 0;
      flex-grow: 0;
  overflow: hidden;
}
.page.satellite-program .grid .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.satellite-program .grid .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.satellite-program .grid .tiles .tile .image .label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .tile .image .label {
    font-size: 16px;
    left: 16px;
    bottom: 24px;
  }
}
.page.satellite-program .grid .tiles .tile .information {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 32px;
  background-color: #f4f4f4;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .tile .information {
    padding: 24px 16px;
  }
}
.page.satellite-program .grid .tiles .tile .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .tile .information span {
    font-size: 18px;
  }
}
.page.satellite-program .grid .tiles .tile .information ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .tile .information ul {
    font-size: 18px;
  }
}
.page.satellite-program .grid .tiles .tile .information ul li:after {
  content: "";
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 16px;
  width: 1px;
  height: 80%;
  background-color: #350030;
  transform: translateY(10%);
}
.page.satellite-program .grid .tiles .tile .information ul li:last-child:after {
  display: none;
}
.page.satellite-program .grid .tiles .tile:hover .image .holder {
  scale: 1.05;
}
.page.satellite-program .grid .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .grid .tiles .fill {
    display: none;
  }
}
.page.satellite-program .close {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}
.page.satellite-program .close .spacer {
  position: relative;
  height: 200px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.satellite-program .close .spacer {
    height: 160px;
  }
}

.page.archive {
  position: relative;
}
.page.archive .hero {
  position: relative;
}
.page.archive .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.archive .hero .title {
    padding: 24px 16px;
  }
}
.page.archive .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.archive .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.archive .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.archive .hero .title h1 {
    font-size: 40px;
  }
}
.page.archive .content {
  position: relative;
  background-color: #f4f4f4;
  border-bottom: 1px solid #e10a7e;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.archive .content {
    background-color: #ffffff;
  }
}
.page.archive .content .container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 32px;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container {
    padding: 0 0 32px 0;
  }
}
.page.archive .content .container .years {
  position: relative;
}
.page.archive .content .container .years .year {
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year {
    margin-bottom: 1px;
  }
}
.page.archive .content .container .years .year .action {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  background-color: #350030;
  color: #e6e6e6;
  font-size: 24px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 32px;
  cursor: pointer;
  background-image: url("../images/toggle-negative-inactive.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: 16px auto;
}
@media screen and (max-width: 1200px) {
  .page.archive .content .container .years .year .action {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .action {
    height: 60px;
    padding: 0 16px;
    background-position: center right 16px;
  }
}
.page.archive .content .container .years .year .items {
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .items {
    padding: 0 16px;
  }
}
.page.archive .content .container .years .year .items .item {
  position: relative;
  padding: 32px;
  border-bottom: 1px solid #350030;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .items .item {
    padding: 24px 0;
  }
}
.page.archive .content .container .years .year .items .item:last-child {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .items .item:last-child {
    margin-bottom: 24px;
  }
}
.page.archive .content .container .years .year .items .item .title {
  position: relative;
  display: block;
  font-size: 24px;
  text-decoration: underline;
  line-height: 1.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .items .item .title {
    font-size: 20px;
  }
}
.page.archive .content .container .years .year .items .item ul {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page.archive .content .container .years .year .items .item ul {
    gap: 24px;
  }
}
.page.archive .content .container .years .year.active .action {
  background-image: url("../images/toggle-negative-active.svg");
}
.page.archive .content .container .years .year.active .items {
  display: block;
}
.page.archive .content .container .years .year:last-child {
  margin-bottom: 0;
}
.page.archive .content .container .years .year:last-child .items .item:last-child {
  margin-bottom: 0;
}

.page.stories {
  position: relative;
}
.page.stories .hero {
  position: relative;
}
.page.stories .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.stories .hero .title {
    padding: 24px 16px;
  }
}
.page.stories .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.stories .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.stories .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.stories .hero .title h1 {
    font-size: 40px;
  }
}
.page.stories .grid {
  position: relative;
  background-color: #f4f4f4;
}
.page.stories .grid .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.stories .grid .tiles .tile {
  position: relative;
  width: 66.666666%;
  min-height: 40vw;
}
@media screen and (max-width: 1200px) {
  .page.stories .grid .tiles .tile {
    width: 33.333333%;
  }
}
@media screen and (max-width: 1024px) {
  .page.stories .grid .tiles .tile {
    width: 100%;
    min-height: 60vw;
  }
}
.page.stories .grid .tiles .tile .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d8d8d8;
  overflow: hidden;
}
.page.stories .grid .tiles .tile .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.stories .grid .tiles .tile .holder .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.stories .grid .tiles .tile .holder .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(53, 0, 48, 0) 50.96%, rgba(53, 0, 48, 0.2) 65.38%, rgba(53, 0, 48, 0.64) 83.65%, #350030 100%);
}
.page.stories .grid .tiles .tile .holder .information {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .page.stories .grid .tiles .tile .holder .information {
    bottom: 24px;
    left: 16px;
    right: 16px;
  }
}
.page.stories .grid .tiles .tile .holder .information .label {
  position: relative;
  margin-bottom: 16px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
.page.stories .grid .tiles .tile .holder .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page.stories .grid .tiles .tile .holder .information span {
    font-size: 24px;
  }
}
.page.stories .grid .tiles .tile:hover .holder .image {
  scale: 1.05;
}

.page.story {
  position: relative;
}
.page.story .hero {
  position: relative;
  background-color: #f4f4f4;
}
.page.story .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.story .hero .image {
    height: 400px;
  }
}
.page.story .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.story .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.story .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.story .hero .title {
    padding: 24px 16px;
  }
}
.page.story .hero .title .label {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.story .hero .title .label {
    font-size: 16px;
  }
}
.page.story .hero .title h1 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.story .hero .title h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.story .hero .title h1 {
    font-size: 32px;
  }
}
.page.story .hero .title span {
  position: relative;
  display: block;
}
.page.story .content {
  position: relative;
}
.page.story .more {
  position: relative;
  background-color: #f4f4f4;
}
.page.story .more .header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background-color: #f4f4f4;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.story .more .header {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 480px) {
  .page.story .more .header {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.page.story .more .header h2 {
  font-size: 64px;
}
@media screen and (max-width: 1200px) {
  .page.story .more .header h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.story .more .header h2 {
    font-size: 32px;
  }
}
.page.story .more .header .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.story .more .header .button {
    width: calc(50vw - 64px);
  }
}
@media screen and (max-width: 480px) {
  .page.story .more .header .button {
    width: 100%;
    margin-top: 24px;
  }
}
.page.story .more .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.story .more .tiles .tile {
  position: relative;
  width: 66.666666%;
  min-height: 40vw;
}
@media screen and (max-width: 1200px) {
  .page.story .more .tiles .tile {
    width: 33.333333%;
  }
}
@media screen and (max-width: 1024px) {
  .page.story .more .tiles .tile {
    width: 100%;
    min-height: 60vw;
  }
}
.page.story .more .tiles .tile .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d8d8d8;
  overflow: hidden;
}
.page.story .more .tiles .tile .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.story .more .tiles .tile .holder .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.story .more .tiles .tile .holder .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(53, 0, 48, 0) 50.96%, rgba(53, 0, 48, 0.2) 65.38%, rgba(53, 0, 48, 0.64) 83.65%, #350030 100%);
}
.page.story .more .tiles .tile .holder .information {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .page.story .more .tiles .tile .holder .information {
    bottom: 24px;
    left: 16px;
    right: 16px;
  }
}
.page.story .more .tiles .tile .holder .information .label {
  position: relative;
  margin-bottom: 16px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
.page.story .more .tiles .tile .holder .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page.story .more .tiles .tile .holder .information span {
    font-size: 24px;
  }
}
.page.story .more .tiles .tile:hover .holder .image {
  scale: 1.05;
}

.page.about {
  position: relative;
}
.page.about .hero {
  position: relative;
}
.page.about .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.about .hero .image {
    height: 400px;
  }
}
.page.about .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.about .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.about .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.about .hero .title {
    padding: 24px 16px;
  }
}
.page.about .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.about .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.about .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.about .hero .title h1 {
    font-size: 40px;
  }
}
.page.about .hero .body {
  position: relative;
  font-size: 32px;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
  background-color: #e6e6e6;
  color: #e10a7e;
}
@media screen and (max-width: 1024px) {
  .page.about .hero .body {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page.about .hero .body {
    font-size: 18px;
    padding: 24px 16px;
  }
}
.page.about .hero .body p {
  margin-bottom: 1em;
}
.page.about .hero .body p:last-child {
  margin-bottom: 0;
}
.page.about .content {
  position: relative;
}
.page.about .content .row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 50vw;
}
.page.about .content .row .text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .page.about .content .row .text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text {
    padding: 24px 16px;
  }
}
.page.about .content .row .text .body {
  position: relative;
}
.page.about .content .row .text .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.about .content .row .text .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text .body h2 {
    font-size: 32px;
  }
}
.page.about .content .row .text .buttons {
  position: relative;
  margin-top: 24px;
}
.page.about .content .row .text .buttons .button {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text .buttons .button {
    margin-bottom: 8px;
  }
}
.page.about .content .row .text .buttons .button:last-child {
  margin-bottom: 0;
}
.page.about .content .row .text .bullets {
  position: relative;
  margin: 24px -32px -32px -32px;
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text .bullets {
    margin: 24px -16px -24px -16px;
  }
}
.page.about .content .row .text .bullets .bullet {
  position: relative;
}
.page.about .content .row .text .bullets .bullet .question {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  -ms-flex-align: center;
      align-items: center;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
  cursor: pointer;
  background-image: url("../images/toggle-positive-inactive.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: 16px auto;
}
@media screen and (max-width: 1200px) {
  .page.about .content .row .text .bullets .bullet .question {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text .bullets .bullet .question {
    padding: 24px 16px;
    font-size: 18px;
    background-position: center right 16px;
  }
}
.page.about .content .row .text .bullets .bullet .answer {
  position: relative;
  display: none;
  background-color: #350030;
  color: #e6e6e6;
  padding: 0 32px 32px 32px;
}
@media screen and (max-width: 768px) {
  .page.about .content .row .text .bullets .bullet .answer {
    padding: 0 16px 24px 16px;
  }
}
.page.about .content .row .text .bullets .bullet:nth-child(odd) .question {
  background-color: #e6e6e6;
}
.page.about .content .row .text .bullets .bullet:nth-child(even) .question {
  background-color: #f4f4f4;
}
@media screen and (max-width: 1024px) {
  .page.about .content .row .text .bullets .bullet.active .question {
    background-color: #350030;
    color: #e6e6e6;
    background-image: url("../images/toggle-negative-active.svg");
  }
  .page.about .content .row .text .bullets .bullet.active .answer {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .page.about .content .row .text .bullets .bullet .question {
    background-image: url("../images/arrow-positive.svg");
    background-size: auto 12px;
  }
  .page.about .content .row .text .bullets .bullet:hover .question {
    background-color: #350030;
    color: #e6e6e6;
    background-image: url("../images/arrow-negative.svg");
  }
}
.page.about .content .row .image {
  position: relative;
  width: 50%;
  background-color: #d8d8d8;
}
@media screen and (max-width: 1024px) {
  .page.about .content .row .image {
    width: 100%;
    min-height: 100vw;
  }
}
.page.about .content .row .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.about .content .row .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.about .content .row .image .answers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .page.about .content .row .image .answers {
    display: none;
  }
}
.page.about .content .row .image .answers .answer {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #350030;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.about .content .row .image .answers .answer {
    padding: 24px 16px;
  }
}
.page.about .content .row .image .answers .answer.active {
  display: block;
}
.page.about .content .row:nth-child(odd) {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.page.about .content .row:nth-child(odd) .text {
  background-color: #e10a7e;
  color: #e6e6e6;
}
.page.about .content .row:nth-child(even) {
  -ms-flex-direction: row;
      flex-direction: row;
}
.page.about .content .row:nth-child(even) .text {
  background-color: #f4f4f4;
  color: #350030;
}
.page.about .close {
  position: relative;
}
.page.about .close .spacer {
  position: relative;
  height: 200px;
  background-color: #e6e6e6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.about .close .spacer {
    height: 160px;
  }
}

.page.team {
  position: relative;
}
.page.team .hero {
  position: relative;
}
.page.team .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.team .hero .title {
    padding: 24px 16px;
  }
}
.page.team .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.team .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.team .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.team .hero .title h1 {
    font-size: 40px;
  }
}
.page.team .grid {
  position: relative;
  background-color: #f4f4f4;
}
.page.team .grid .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e10a7e;
}
.page.team .grid .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.team .grid .tiles .tile:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .page.team .grid .tiles .tile {
    width: 50%;
  }
  .page.team .grid .tiles .tile:nth-child(3n) {
    border-right: 1px solid #e10a7e;
  }
  .page.team .grid .tiles .tile:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.team .grid .tiles .tile .image {
  position: relative;
  padding-bottom: 120%;
  background-color: #d8d8d8;
}
.page.team .grid .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.team .grid .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.team .grid .tiles .tile .text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page.team .grid .tiles .tile .text .about {
  position: relative;
  background-color: #f4f4f4;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .tile .text .about {
    padding: 24px 16px;
  }
}
.page.team .grid .tiles .tile .text .about span {
  position: relative;
  display: block;
  line-height: 1.2em;
}
.page.team .grid .tiles .tile .text .about span:first-child {
  font-size: 24px;
}
.page.team .grid .tiles .tile .text .about span:last-child {
  font-size: 18px;
  margin-top: 16px;
}
.page.team .grid .tiles .tile .text .action {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  background-color: #ffffff;
  padding: 0 32px;
  border-top: 1px solid #e10a7e;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e10a7e;
  cursor: pointer;
  background-image: url("../images/arrow-alternative.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 12px;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .tile .text .action {
    padding: 0 16px;
    background-position: center right 16px;
  }
}
.page.team .grid .tiles .overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: rgba(6, 6, 6, 0.28);
}
.page.team .grid .tiles .overlay.active {
  display: block;
}
.page.team .grid .tiles .overlay .container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  max-width: 960px;
  margin: auto;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container {
    padding: 24px 16px;
  }
}
.page.team .grid .tiles .overlay .container .window {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
}
.page.team .grid .tiles .overlay .container .window .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container .window .image {
    display: none;
  }
}
.page.team .grid .tiles .overlay .container .window .image .ratio {
  position: relative;
  padding-bottom: 120%;
  background-color: #d8d8d8;
}
.page.team .grid .tiles .overlay .container .window .image .ratio .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.team .grid .tiles .overlay .container .window .image .ratio .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.team .grid .tiles .overlay .container .window .text {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container .window .text {
    width: 100%;
  }
}
.page.team .grid .tiles .overlay .container .window .text .holder {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container .window .text .holder {
    padding: 24px 16px;
  }
}
.page.team .grid .tiles .overlay .container .window .text .about {
  position: relative;
  font-family: "DM Mono", sans-serif;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container .window .text .about {
    margin-bottom: 24px;
  }
}
.page.team .grid .tiles .overlay .container .window .text .about span {
  position: relative;
  display: block;
  line-height: 1.2em;
}
.page.team .grid .tiles .overlay .container .window .text .about span:first-child {
  font-size: 24px;
}
.page.team .grid .tiles .overlay .container .window .text .about span:last-child {
  font-size: 18px;
  margin-top: 16px;
  color: #e10a7e;
}
.page.team .grid .tiles .overlay .container .window .text .social {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: -16px 0 32px 0;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .overlay .container .window .text .social {
    margin: -8px 0 24px 0;
  }
}
.page.team .grid .tiles .overlay .container .window .text .social .linkedin {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
  background-image: url("../images/linkedin.svg");
}
.page.team .grid .tiles .overlay .container .window .text .description {
  position: relative;
}
.page.team .grid .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.team .grid .tiles .fill {
    display: none;
  }
}

.page.vacancies {
  position: relative;
}
.page.vacancies .hero {
  position: relative;
}
.page.vacancies .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.vacancies .hero .image {
    height: 400px;
  }
}
.page.vacancies .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.vacancies .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.vacancies .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.vacancies .hero .title {
    padding: 24px 16px;
  }
}
.page.vacancies .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.vacancies .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.vacancies .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.vacancies .hero .title h1 {
    font-size: 40px;
  }
}
.page.vacancies .content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.vacancies .content .column {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.vacancies .content .column {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.vacancies .content .column:nth-child(odd) {
  background-color: #e6e6e6;
}
.page.vacancies .content .column:nth-child(even) {
  background-color: #f4f4f4;
}
.page.vacancies .content .column h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.vacancies .content .column h2 {
    font-size: 32px;
  }
}
.page.vacancies .content .column .body {
  position: relative;
}
.page.vacancies .content .column .body p {
  margin-bottom: 1em;
}
.page.vacancies .content .column .body p:last-child {
  margin-bottom: 0;
}
.page.vacancies .content .column .buttons {
  position: relative;
}
.page.vacancies .content .column .buttons .button {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.vacancies .content .column .buttons .button {
    margin-bottom: 8px;
  }
}
.page.vacancies .content .column .buttons .button:last-child {
  margin-bottom: 0;
}

.page.vacancy {
  position: relative;
}
.page.vacancy .hero {
  position: relative;
  background-color: #f4f4f4;
}
.page.vacancy .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.vacancy .hero .image {
    height: 400px;
  }
}
.page.vacancy .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.vacancy .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.vacancy .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.vacancy .hero .title {
    padding: 24px 16px;
  }
}
.page.vacancy .hero .title span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.vacancy .hero .title span {
    font-size: 20px;
  }
}
.page.vacancy .hero .title h1 {
  font-size: 64px;
}
@media screen and (max-width: 1200px) {
  .page.vacancy .hero .title h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.vacancy .hero .title h1 {
    font-size: 32px;
  }
}
.page.vacancy .hero .body {
  position: relative;
  padding: 32px;
  margin-top: -48px;
}
@media screen and (max-width: 1024px) {
  .page.vacancy .hero .body {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page.vacancy .hero .body {
    font-size: 18px;
    padding: 24px 16px;
    margin-top: -32px;
  }
}
.page.vacancy .hero .body p {
  margin-bottom: 1em;
}
.page.vacancy .hero .body p:last-child {
  margin-bottom: 0;
}
.page.vacancy .content {
  position: relative;
}
.page.vacancy .extra {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.vacancy .extra .spacer {
  position: relative;
  width: 50%;
  background-color: #f4f4f4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.vacancy .extra .spacer {
    width: 100%;
    height: 160px;
  }
}
.page.vacancy .extra .apply {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  background-color: #e10a7e;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.vacancy .extra .apply {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.vacancy .extra .apply .body {
  position: relative;
}
.page.vacancy .extra .apply .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.vacancy .extra .apply .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.vacancy .extra .apply .body h2 {
    font-size: 32px;
  }
}
.page.vacancy .extra .apply .buttons {
  position: relative;
  margin-top: 24px;
}
.page.vacancy .extra .apply .buttons .button {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.vacancy .extra .apply .buttons .button {
    margin-bottom: 8px;
  }
}
.page.vacancy .extra .apply .buttons .button:last-child {
  margin-bottom: 0;
}

.page.partners {
  position: relative;
}
.page.partners .hero {
  position: relative;
}
.page.partners .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.partners .hero .image {
    height: 400px;
  }
}
.page.partners .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.partners .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.partners .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.partners .hero .title {
    padding: 24px 16px;
  }
}
.page.partners .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.partners .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.partners .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.partners .hero .title h1 {
    font-size: 40px;
  }
}
.page.partners .introduction {
  position: relative;
}
.page.partners .introduction .text {
  position: relative;
  padding: 32px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .page.partners .introduction .text {
    padding: 24px 16px;
  }
}
.page.partners .introduction .text .body {
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.partners .introduction .text .body {
    margin-bottom: 24px;
  }
}
.page.partners .introduction .text .body p {
  margin-bottom: 1em;
}
.page.partners .introduction .text .body p:last-child {
  margin-bottom: 0;
}
.page.partners .introduction .text .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.partners .introduction .text .button {
    width: calc(50vw - 64px);
  }
}
@media screen and (max-width: 768px) {
  .page.partners .introduction .text .button {
    width: 100%;
  }
}
.page.partners .introduction .spacer {
  position: relative;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.partners .introduction .spacer {
    height: 160px;
  }
}
.page.partners .blocks {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.partners .blocks .block {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 33.333333%;
  min-height: 33.333333vw;
  padding: 32px;
}
.page.partners .blocks .block:nth-child(1) {
  background-color: #e10a7e;
  color: #e6e6e6;
}
.page.partners .blocks .block:nth-child(2) {
  background-color: #e6e6e6;
}
.page.partners .blocks .block:nth-child(3) {
  background-color: #f4f4f4;
}
@media screen and (max-width: 1024px) {
  .page.partners .blocks .block {
    width: 50%;
  }
  .page.partners .blocks .block:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.partners .blocks .block {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.partners .blocks .block .text {
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.partners .blocks .block .text {
    margin-bottom: 24px;
  }
}
.page.partners .blocks .block .text h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.partners .blocks .block .text h2 {
    font-size: 32px;
  }
}
.page.partners .blocks .block .text p {
  margin-bottom: 1em;
}
.page.partners .blocks .block .text p:last-child {
  margin-bottom: 0;
}
.page.partners .blocks .block .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.partners .blocks .block .button {
    width: calc(50vw - 64px);
  }
}
@media screen and (max-width: 768px) {
  .page.partners .blocks .block .button {
    width: 100%;
  }
}
.page.partners .lists {
  position: relative;
}
.page.partners .lists .list {
  position: relative;
}
.page.partners .lists .list .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.partners .lists .list .title {
    padding: 24px 16px;
  }
}
.page.partners .lists .list .title h2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .page.partners .lists .list .title h2 {
    font-size: 32px;
  }
}
.page.partners .lists .list .grid {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e10a7e;
}
.page.partners .lists .list .grid .item {
  position: relative;
  width: 20%;
  height: 20vw;
  border-top: 1px solid #e10a7e;
  border-right: 1px solid #e10a7e;
}
.page.partners .lists .list .grid .item:nth-child(5n) {
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .page.partners .lists .list .grid .item {
    width: 25%;
    height: 25vw;
  }
  .page.partners .lists .list .grid .item:nth-child(5n) {
    border-right: 1px solid #e10a7e;
  }
  .page.partners .lists .list .grid .item:nth-child(4n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.partners .lists .list .grid .item {
    width: 50%;
    height: 50vw;
  }
  .page.partners .lists .list .grid .item:nth-child(4n) {
    border-right: 1px solid #e10a7e;
  }
  .page.partners .lists .list .grid .item:nth-child(2n) {
    border-right: none;
  }
}
.page.partners .lists .list .grid .item .holder {
  position: absolute;
  top: 64px;
  right: 64px;
  left: 64px;
  bottom: 64px;
}
@media screen and (max-width: 768px) {
  .page.partners .lists .list .grid .item .holder {
    top: 32px;
    right: 32px;
    left: 32px;
    bottom: 32px;
  }
}
.page.partners .lists .list .grid .item .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page.partners .lists .list .grid .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #e10a7e;
}
.page.partners .stories {
  position: relative;
  background-color: #f4f4f4;
}
.page.partners .stories .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.partners .stories .tiles .spacer {
  position: relative;
  width: 33.333333%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .page.partners .stories .tiles .spacer {
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .page.partners .stories .tiles .spacer {
    height: 160px;
  }
}
.page.partners .stories .tiles .tile {
  position: relative;
  width: 66.666666%;
  min-height: 40vw;
}
@media screen and (max-width: 1024px) {
  .page.partners .stories .tiles .tile {
    width: 100%;
    min-height: 60vw;
  }
}
.page.partners .stories .tiles .tile .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d8d8d8;
  overflow: hidden;
}
.page.partners .stories .tiles .tile .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: scale 250ms ease;
}
.page.partners .stories .tiles .tile .holder .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.partners .stories .tiles .tile .holder .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(53, 0, 48, 0) 50.96%, rgba(53, 0, 48, 0.2) 65.38%, rgba(53, 0, 48, 0.64) 83.65%, #350030 100%);
}
.page.partners .stories .tiles .tile .holder .information {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .page.partners .stories .tiles .tile .holder .information {
    bottom: 24px;
    left: 16px;
    right: 16px;
  }
}
.page.partners .stories .tiles .tile .holder .information .label {
  position: relative;
  margin-bottom: 16px;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
}
.page.partners .stories .tiles .tile .holder .information span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 32px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page.partners .stories .tiles .tile .holder .information span {
    font-size: 24px;
  }
}
.page.partners .stories .tiles .tile:hover .holder .image {
  scale: 1.05;
}

.page.code-of-conduct {
  position: relative;
}
.page.code-of-conduct .hero {
  position: relative;
  background-color: #e6e6e6;
}
.page.code-of-conduct .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.code-of-conduct .hero .title {
    padding: 24px 16px;
  }
}
.page.code-of-conduct .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.code-of-conduct .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.code-of-conduct .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.code-of-conduct .hero .title h1 {
    font-size: 40px;
  }
}
.page.code-of-conduct .content {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}

.page.mission-vision {
  position: relative;
}
.page.mission-vision .hero {
  position: relative;
  background-color: #e6e6e6;
}
.page.mission-vision .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.mission-vision .hero .title {
    padding: 24px 16px;
  }
}
.page.mission-vision .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.mission-vision .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.mission-vision .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.mission-vision .hero .title h1 {
    font-size: 40px;
  }
}
.page.mission-vision .content {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}

.page.submission {
  position: relative;
}
.page.submission .content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.submission .content .introduction {
  position: relative;
  background-color: #f4f4f4;
  width: 50%;
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .page.submission .content .introduction {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.submission .content .introduction {
    padding: 24px 16px;
  }
}
.page.submission .content .introduction h1 {
  font-size: 96px;
  margin-bottom: 24px;
  font-size: 64px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .introduction h1 {
    font-size: 40px;
  }
}
.page.submission .content .introduction p {
  margin-bottom: 1em;
}
.page.submission .content .introduction p:last-child {
  margin-bottom: 0;
}
.page.submission .content .form {
  position: relative;
  width: 50%;
  padding: 32px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .page.submission .content .form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.submission .content .form {
    padding: 24px 16px;
  }
}
.page.submission .content .form .group {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group {
    margin-bottom: 16px;
  }
}
.page.submission .content .form .group:last-child {
  margin-bottom: 0;
}
.page.submission .content .form .group .caption {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .caption {
    margin-bottom: 16px;
  }
}
.page.submission .content .form .group .caption h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .caption h2 {
    font-size: 18px;
  }
}
.page.submission .content .form .group .caption p {
  font-size: 14px;
}
.page.submission .content .form .group .field {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .field {
    margin-bottom: 16px;
  }
}
.page.submission .content .form .group .field:last-child {
  margin-bottom: 0;
}
.page.submission .content .form .group .field input,
.page.submission .content .form .group .field textarea {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
.page.submission .content .form .group .field input::-webkit-input-placeholder, .page.submission .content .form .group .field textarea::-webkit-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.submission .content .form .group .field input:-moz-placeholder, .page.submission .content .form .group .field textarea:-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.submission .content .form .group .field input::-moz-placeholder, .page.submission .content .form .group .field textarea::-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.submission .content .form .group .field input:-ms-input-placeholder, .page.submission .content .form .group .field textarea:-ms-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.submission .content .form .group .field input {
  height: 80px;
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .field input {
    height: 60px;
    padding: 0 24px;
  }
}
.page.submission .content .form .group .field textarea {
  height: 200px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .field textarea {
    padding: 24px;
  }
}
.page.submission .content .form .group .field.upload::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("../images/upload.svg");
  background-repeat: no-repeat;
  background-position: left 32px center;
  background-size: 24px;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .field.upload::after {
    background-position: left 24px center;
  }
}
.page.submission .content .form .group .field.upload input {
  padding-left: 72px;
}
@media screen and (max-width: 768px) {
  .page.submission .content .form .group .field.upload input {
    padding-left: 60px;
  }
}
.page.submission .content .form .button {
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
}

.page.logo {
  position: relative;
}
.page.logo .hero {
  position: relative;
  background-color: #e6e6e6;
}
.page.logo .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.logo .hero .title {
    padding: 24px 16px;
  }
}
.page.logo .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.logo .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.logo .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.logo .hero .title h1 {
    font-size: 40px;
  }
}
.page.logo .content {
  position: relative;
}
.page.logo .extra {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.logo .extra .spacer {
  position: relative;
  width: 50%;
  background-color: #f4f4f4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.logo .extra .spacer {
    width: 100%;
    height: 160px;
  }
}
.page.logo .extra .downloads {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
  background-color: #e10a7e;
  color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.logo .extra .downloads {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.logo .extra .downloads .body {
  position: relative;
}
.page.logo .extra .downloads .body h2 {
  font-size: 64px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.logo .extra .downloads .body h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.logo .extra .downloads .body h2 {
    font-size: 32px;
  }
}
.page.logo .extra .downloads .buttons {
  position: relative;
  margin-top: 24px;
}
.page.logo .extra .downloads .buttons .button {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.logo .extra .downloads .buttons .button {
    margin-bottom: 8px;
  }
}
.page.logo .extra .downloads .buttons .button:last-child {
  margin-bottom: 0;
}

.page.faq {
  position: relative;
}
.page.faq .hero {
  position: relative;
  background-color: #e6e6e6;
}
.page.faq .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.faq .hero .title {
    padding: 24px 16px;
  }
}
.page.faq .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.faq .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.faq .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.faq .hero .title h1 {
    font-size: 40px;
  }
}
.page.faq .content {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}
.page.faq .content .container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 32px;
}
@media screen and (max-width: 768px) {
  .page.faq .content .container {
    padding: 48px 0;
  }
}
.page.faq .content .container .groups {
  position: relative;
}
.page.faq .content .container .groups .group {
  position: relative;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .page.faq .content .container .groups .group {
    margin-bottom: 64px;
  }
}
.page.faq .content .container .groups .group:last-child {
  margin-bottom: 0;
}
.page.faq .content .container .groups .group h2 {
  font-size: 40px;
  padding: 0 32px 32px 32px;
  color: #e10a7e;
}
@media screen and (max-width: 1024px) {
  .page.faq .content .container .groups .group h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page.faq .content .container .groups .group h2 {
    font-size: 24px;
    padding: 0 16px 24px 16px;
  }
}
.page.faq .content .container .groups .group .questions {
  position: relative;
  border-bottom: 1px solid #e10a7e;
}
.page.faq .content .container .groups .group .questions .question {
  position: relative;
  border-top: 1px solid #e10a7e;
}
.page.faq .content .container .groups .group .questions .question:nth-child(odd) {
  background-color: #f4f4f4;
}
.page.faq .content .container .groups .group .questions .question .q {
  position: relative;
  padding: 32px 72px 32px 32px;
  cursor: pointer;
  background-image: url("../images/toggle-generic-inactive.svg");
  background-repeat: no-repeat;
  background-position: top 44px right 32px;
  background-size: 16px auto;
}
@media screen and (max-width: 768px) {
  .page.faq .content .container .groups .group .questions .question .q {
    padding: 24px 48px 24px 16px;
    background-position: top 32px right 16px;
  }
}
.page.faq .content .container .groups .group .questions .question .q h3 {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .page.faq .content .container .groups .group .questions .question .q h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page.faq .content .container .groups .group .questions .question .q h3 {
    font-size: 18px;
  }
}
.page.faq .content .container .groups .group .questions .question .a {
  position: relative;
  display: none;
  padding: 0 32px 32px 32px;
}
@media screen and (max-width: 768px) {
  .page.faq .content .container .groups .group .questions .question .a {
    padding: 0 16px 24px 16px;
  }
}
.page.faq .content .container .groups .group .questions .question.active .q {
  background-image: url("../images/toggle-generic-active.svg");
}
.page.faq .content .container .groups .group .questions .question.active .a {
  display: block;
}

.page.contact {
  position: relative;
}
.page.contact .hero {
  position: relative;
  background-color: #350030;
  color: #e6e6e6;
}
.page.contact .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .hero .title {
    padding: 24px 16px;
  }
}
.page.contact .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.contact .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.contact .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.contact .hero .title h1 {
    font-size: 40px;
  }
}
.page.contact .hero .data {
  position: relative;
  padding: 32px;
  margin-top: -32px;
}
@media screen and (max-width: 768px) {
  .page.contact .hero .data {
    padding: 24px 16px;
    margin-top: -24px;
  }
}
.page.contact .hero .data ul {
  position: relative;
  -moz-column-count: 2;
       column-count: 2;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .page.contact .hero .data ul {
    -moz-column-count: 1;
         column-count: 1;
  }
  .page.contact .hero .data ul li:nth-child(5) {
    margin-top: 24px;
  }
}
.page.contact .hero .social {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 24px 32px;
  background-color: #e6e6e6;
  color: #350030;
}
@media screen and (max-width: 768px) {
  .page.contact .hero .social {
    padding: 24px 16px;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.page.contact .hero .social .caption {
  position: relative;
  font-family: "DM Mono", sans-serif;
  font-size: 20px;
}
.page.contact .hero .social .icons {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 0 0 0 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .hero .social .icons {
    margin: 16px 0 0 0;
  }
}
.page.contact .hero .social .icons .icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
}
.page.contact .hero .social .icons .icon.tiktok {
  background-image: url("../images/tiktok.svg");
}
.page.contact .hero .social .icons .icon.facebook {
  background-image: url("../images/facebook.svg");
}
.page.contact .hero .social .icons .icon.instagram {
  background-image: url("../images/instagram.svg");
}
.page.contact .partner {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .partner {
    padding: 24px 16px;
  }
}
.page.contact .partner h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.contact .partner h2 {
    font-size: 32px;
  }
}
.page.contact .partner .body {
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .partner .body {
    margin-bottom: 24px;
  }
}
.page.contact .partner .body p {
  margin-bottom: 1em;
}
.page.contact .partner .body p:last-child {
  margin-bottom: 0;
}
.page.contact .partner .button {
  width: calc(50vw - 64px);
}
@media screen and (max-width: 768px) {
  .page.contact .partner .button {
    width: 100%;
  }
}
.page.contact .content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.contact .content .image {
  position: relative;
  width: 50%;
  background-color: #d8d8d8;
}
@media screen and (max-width: 1024px) {
  .page.contact .content .image {
    width: 100%;
    height: 300px;
  }
}
.page.contact .content .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.contact .content .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.contact .content .form {
  position: relative;
  width: 50%;
  padding: 32px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .page.contact .content .form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.contact .content .form {
    padding: 24px 16px;
  }
}
.page.contact .content .form h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.contact .content .form h2 {
    font-size: 32px;
  }
}
.page.contact .content .form .group {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.contact .content .form .group {
    margin-bottom: 16px;
  }
}
.page.contact .content .form .group:last-child {
  margin-bottom: 0;
}
.page.contact .content .form .group .field {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.contact .content .form .group .field {
    margin-bottom: 16px;
  }
}
.page.contact .content .form .group .field:last-child {
  margin-bottom: 0;
}
.page.contact .content .form .group .field input,
.page.contact .content .form .group .field textarea {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
.page.contact .content .form .group .field input::-webkit-input-placeholder, .page.contact .content .form .group .field textarea::-webkit-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.contact .content .form .group .field input:-moz-placeholder, .page.contact .content .form .group .field textarea:-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.contact .content .form .group .field input::-moz-placeholder, .page.contact .content .form .group .field textarea::-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.contact .content .form .group .field input:-ms-input-placeholder, .page.contact .content .form .group .field textarea:-ms-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.contact .content .form .group .field input {
  height: 80px;
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .content .form .group .field input {
    height: 60px;
    padding: 0 24px;
  }
}
.page.contact .content .form .group .field textarea {
  height: 200px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.contact .content .form .group .field textarea {
    padding: 24px;
  }
}
.page.contact .content .form .button {
  width: 100%;
}
.page.contact .close {
  position: relative;
}
.page.contact .close .spacer {
  position: relative;
  height: 200px;
  background-color: #f4f4f4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.contact .close .spacer {
    height: 160px;
  }
}

.page.ten-minute-challenge {
  position: relative;
}
.page.ten-minute-challenge .hero {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: calc(100svh - 80px);
}
@media screen and (max-width: 1024px) {
  .page.ten-minute-challenge .hero {
    height: calc(100svh - 50px);
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .hero {
    height: auto;
  }
}
.page.ten-minute-challenge .hero .animation {
  position: relative;
  width: 50%;
  background-color: #f27dff;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .hero .animation {
    width: 100%;
    height: 100vw;
  }
}
.page.ten-minute-challenge .hero .image {
  position: relative;
  width: 50%;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .hero .image {
    width: 100%;
    height: 100vw;
  }
}
.page.ten-minute-challenge .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.ten-minute-challenge .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.ten-minute-challenge .submit {
  position: relative;
  background-image: url("../images/arrow-positive.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 24px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .submit {
    background-position: center right 16px;
    background-size: auto 16px;
  }
}
.page.ten-minute-challenge .submit.primary {
  background-color: #ffffff;
}
.page.ten-minute-challenge .submit.secondary {
  background-color: #f27dff;
}
.page.ten-minute-challenge .submit .action {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 40px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .submit .action {
    font-size: 32px;
    padding: 24px 16px;
  }
}
.page.ten-minute-challenge .content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.ten-minute-challenge .content .spacer {
  position: relative;
  width: 33.333333%;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .spacer {
    width: 100%;
    height: 160px;
  }
}
.page.ten-minute-challenge .content .introduction {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 66.666666%;
  background-color: #e6e6e6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .introduction {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.ten-minute-challenge .content .introduction .body {
  position: relative;
  margin-bottom: 24px;
}
.page.ten-minute-challenge .content .introduction .body h2 {
  font-size: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .introduction .body h2 {
    font-size: 32px;
  }
}
.page.ten-minute-challenge .content .introduction .button {
  width: calc(33.333333vw - 64px);
}
@media screen and (max-width: 1024px) {
  .page.ten-minute-challenge .content .introduction .button {
    width: 100%;
  }
}
.page.ten-minute-challenge .categories {
  position: relative;
}
.page.ten-minute-challenge .categories .title {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .title {
    padding: 24px 16px;
  }
}
.page.ten-minute-challenge .categories .title h2 {
  font-size: 64px;
}
@media screen and (max-width: 1200px) {
  .page.ten-minute-challenge .categories .title h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .title h2 {
    font-size: 32px;
  }
}
.page.ten-minute-challenge .categories .grid {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f4f4f4;
  font-family: "DM Mono", sans-serif;
}
.page.ten-minute-challenge .categories .grid .item {
  position: relative;
  width: 33.333333%;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .grid .item {
    width: 100%;
  }
}
.page.ten-minute-challenge .categories .grid .item .main {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 33.333333vw;
  padding: 32px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .grid .item .main {
    padding: 24px 16px;
    height: 100vw;
  }
}
.page.ten-minute-challenge .categories .grid .item .main span {
  position: relative;
  display: block;
}
.page.ten-minute-challenge .categories .grid .item .main span:first-child {
  font-size: 64px;
  word-break: break-word;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .page.ten-minute-challenge .categories .grid .item .main span:first-child {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .page.ten-minute-challenge .categories .grid .item .main span:first-child {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .grid .item .main span:first-child {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page.ten-minute-challenge .categories .grid .item .main span:first-child {
    font-size: 32px;
  }
}
.page.ten-minute-challenge .categories .grid .item .main span:last-child {
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .page.ten-minute-challenge .categories .grid .item .main span:last-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .grid .item .main span:last-child {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .page.ten-minute-challenge .categories .grid .item .main span:last-child {
    font-size: 20px;
  }
}
.page.ten-minute-challenge .categories .grid .item .action {
  position: relative;
  font-size: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid #350030;
  border-left: 1px solid #350030;
  cursor: pointer;
  background-image: url("../images/arrow-positive.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 12px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .categories .grid .item .action {
    padding: 24px 16px;
    background-position: center right 16px;
  }
}
@media screen and (max-width: 480px) {
  .page.ten-minute-challenge .categories .grid .item .action {
    font-size: 18px;
  }
}
.page.ten-minute-challenge .categories .grid .item:first-child .action {
  border-left: none;
}
.page.ten-minute-challenge .categories .grid .item:nth-child(odd) .main {
  background-color: #f27dff;
  background-image: url("../images/tmc-artwork-secondary.svg");
}
.page.ten-minute-challenge .categories .grid .item:nth-child(even) .main {
  background-color: #e6e6e6;
  background-image: url("../images/tmc-artwork-primary.svg");
}
.page.ten-minute-challenge .content {
  position: relative;
}
.page.ten-minute-challenge .content .container {
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 48px 32px;
}
@media screen and (max-width: 1200px) {
  .page.ten-minute-challenge .content .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .container {
    padding: 48px 0;
  }
}
.page.ten-minute-challenge .content .container .questions {
  position: relative;
  border-bottom: 1px solid #f27dff;
}
.page.ten-minute-challenge .content .container .questions .question {
  position: relative;
  border-top: 1px solid #f27dff;
}
.page.ten-minute-challenge .content .container .questions .question:nth-child(odd) {
  background-color: #f4f4f4;
}
.page.ten-minute-challenge .content .container .questions .question .q {
  position: relative;
  padding: 32px 72px 32px 32px;
  cursor: pointer;
  background-image: url("../images/toggle-tmc-inactive.svg");
  background-repeat: no-repeat;
  background-position: top 44px right 32px;
  background-size: 16px auto;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .container .questions .question .q {
    padding: 24px 48px 24px 16px;
    background-position: top 32px right 16px;
  }
}
.page.ten-minute-challenge .content .container .questions .question .q h3 {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .page.ten-minute-challenge .content .container .questions .question .q h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .container .questions .question .q h3 {
    font-size: 18px;
  }
}
.page.ten-minute-challenge .content .container .questions .question .a {
  position: relative;
  display: none;
  padding: 0 32px 32px 32px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .content .container .questions .question .a {
    padding: 0 16px 24px 16px;
  }
}
.page.ten-minute-challenge .content .container .questions .question.active .q {
  background-image: url("../images/toggle-tmc-active.svg");
}
.page.ten-minute-challenge .content .container .questions .question.active .a {
  display: block;
}
.page.ten-minute-challenge .partner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f4f4f4;
}
.page.ten-minute-challenge .partner .logo {
  position: relative;
  background-color: #f4f4f4;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .partner .logo {
    width: 100%;
    height: 300px;
  }
}
.page.ten-minute-challenge .partner .logo .holder {
  position: absolute;
  top: 64px;
  right: 64px;
  left: 64px;
  bottom: 64px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .partner .logo .holder {
    top: 32px;
    right: 32px;
    left: 32px;
    bottom: 32px;
  }
}
.page.ten-minute-challenge .partner .logo .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page.ten-minute-challenge .partner .text {
  position: relative;
  background-color: #e6e6e6;
  width: 50%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .partner .text {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.ten-minute-challenge .partner .text h2 {
  font-size: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .partner .text h2 {
    font-size: 32px;
  }
}
.page.ten-minute-challenge .close {
  position: relative;
}
.page.ten-minute-challenge .close .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.ten-minute-challenge .close .image {
    height: 400px;
  }
}
.page.ten-minute-challenge .close .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.ten-minute-challenge .close .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page.winners {
  position: relative;
}
.page.winners .hero {
  position: relative;
  background-color: #f27dff;
}
.page.winners .hero .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.winners .hero .image {
    height: 400px;
  }
}
.page.winners .hero .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.winners .hero .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.winners .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .hero .title {
    padding: 24px 16px;
  }
}
.page.winners .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.winners .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.winners .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.winners .hero .title h1 {
    font-size: 40px;
  }
}
.page.winners .hero .body {
  position: relative;
  padding: 32px;
  margin-top: -48px;
}
@media screen and (max-width: 1024px) {
  .page.winners .hero .body {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page.winners .hero .body {
    font-size: 18px;
    padding: 24px 16px;
    margin-top: -32px;
  }
}
.page.winners .hero .body p {
  margin-bottom: 1em;
}
.page.winners .hero .body p:last-child {
  margin-bottom: 0;
}
.page.winners .films {
  position: relative;
}
.page.winners .films .film {
  position: relative;
}
.page.winners .films .film .about {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.winners .films .film .about .artwork {
  position: relative;
  width: 33.333333%;
  background-color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .about .artwork {
    width: 100%;
    height: 300px;
  }
}
.page.winners .films .film .about .text {
  position: relative;
  width: 66.666666%;
  background-color: #ffffff;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .about .text {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.winners .films .film .about .text span {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .about .text span {
    font-size: 20px;
  }
}
.page.winners .films .film .about .text h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .about .text h2 {
    font-size: 24px;
  }
}
.page.winners .films .film .about .text .icons {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 24px 0 32px 0;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .about .text .icons {
    margin: 16px 0 24px 0;
  }
}
.page.winners .films .film .about .text .icons .icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
}
.page.winners .films .film .about .text .icons .icon.instagram {
  background-image: url("../images/instagram.svg");
}
.page.winners .films .film .about .text .icons .icon.web {
  background-image: url("../images/web.svg");
}
.page.winners .films .film .about .text .body {
  position: relative;
}
.page.winners .films .film .about .text .body p {
  margin-bottom: 1em;
}
.page.winners .films .film .about .text .body p:last-child {
  margin-bottom: 0;
}
.page.winners .films .film .image {
  position: relative;
  background-color: #d8d8d8;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film .image {
    height: 400px;
  }
}
.page.winners .films .film .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.winners .films .film .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.winners .films .film:nth-child(odd) .about {
  -ms-flex-direction: row;
      flex-direction: row;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film:nth-child(odd) .about {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.page.winners .films .film:nth-child(even) .about {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .page.winners .films .film:nth-child(even) .about {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.page.winners .report {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.winners .report .artwork {
  position: relative;
  width: 33.333333%;
  background-color: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .page.winners .report .artwork {
    width: 100%;
    height: 300px;
  }
}
.page.winners .report .text {
  position: relative;
  width: 66.666666%;
  background-color: #f27dff;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .report .text {
    width: 100%;
    padding: 24px 16px;
  }
}
.page.winners .report .text h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page.winners .report .text h2 {
    font-size: 24px;
  }
}
.page.winners .report .text .body {
  position: relative;
}
.page.winners .report .text .body p {
  margin-bottom: 1em;
}
.page.winners .report .text .body p:last-child {
  margin-bottom: 0;
}
.page.winners .jury {
  position: relative;
}
.page.winners .jury .title {
  position: relative;
  display: block;
  font-family: "DM Mono", sans-serif;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .title {
    padding: 24px 16px;
  }
}
.page.winners .jury .title h2 {
  font-size: 64px;
}
@media screen and (max-width: 1200px) {
  .page.winners .jury .title h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page.winners .jury .title h2 {
    font-size: 32px;
  }
}
.page.winners .jury .grid {
  position: relative;
  background-color: #f4f4f4;
}
.page.winners .jury .grid .tiles {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #f27dff;
}
.page.winners .jury .grid .tiles .tile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 33.333333%;
  border-top: 1px solid #f27dff;
  border-right: 1px solid #f27dff;
}
.page.winners .jury .grid .tiles .tile:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .page.winners .jury .grid .tiles .tile {
    width: 50%;
  }
  .page.winners .jury .grid .tiles .tile:nth-child(3n) {
    border-right: 1px solid #f27dff;
  }
  .page.winners .jury .grid .tiles .tile:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .tile {
    width: 100%;
    border-right: none;
  }
}
.page.winners .jury .grid .tiles .tile .image {
  position: relative;
  padding-bottom: 120%;
  background-color: #d8d8d8;
}
.page.winners .jury .grid .tiles .tile .image .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.winners .jury .grid .tiles .tile .image .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.page.winners .jury .grid .tiles .tile .text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page.winners .jury .grid .tiles .tile .text .about {
  position: relative;
  background-color: #f4f4f4;
  padding: 32px;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .tile .text .about {
    padding: 24px 16px;
  }
}
.page.winners .jury .grid .tiles .tile .text .about span {
  position: relative;
  display: block;
  line-height: 1.2em;
}
.page.winners .jury .grid .tiles .tile .text .about span:first-child {
  font-size: 24px;
}
.page.winners .jury .grid .tiles .tile .text .about span:last-child {
  font-size: 18px;
  margin-top: 16px;
}
.page.winners .jury .grid .tiles .tile .text .action {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  background-color: #ffffff;
  padding: 0 32px;
  border-top: 1px solid #f27dff;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  cursor: pointer;
  background-image: url("../images/arrow-tmc.svg");
  background-repeat: no-repeat;
  background-position: center right 32px;
  background-size: auto 12px;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .tile .text .action {
    padding: 0 16px;
    background-position: center right 16px;
  }
}
.page.winners .jury .grid .tiles .overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: rgba(6, 6, 6, 0.28);
}
.page.winners .jury .grid .tiles .overlay.active {
  display: block;
}
.page.winners .jury .grid .tiles .overlay .container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  max-width: 960px;
  margin: auto;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container {
    padding: 24px 16px;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
}
.page.winners .jury .grid .tiles .overlay .container .window .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container .window .image {
    display: none;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window .image .ratio {
  position: relative;
  padding-bottom: 120%;
  background-color: #d8d8d8;
}
.page.winners .jury .grid .tiles .overlay .container .window .image .ratio .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page.winners .jury .grid .tiles .overlay .container .window .image .ratio .holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.page.winners .jury .grid .tiles .overlay .container .window .text {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container .window .text {
    width: 100%;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window .text .holder {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container .window .text .holder {
    padding: 24px 16px;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window .text .about {
  position: relative;
  font-family: "DM Mono", sans-serif;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container .window .text .about {
    margin-bottom: 24px;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window .text .about span {
  position: relative;
  display: block;
  line-height: 1.2em;
}
.page.winners .jury .grid .tiles .overlay .container .window .text .about span:first-child {
  font-size: 24px;
}
.page.winners .jury .grid .tiles .overlay .container .window .text .about span:last-child {
  font-size: 18px;
  margin-top: 16px;
  color: #f27dff;
}
.page.winners .jury .grid .tiles .overlay .container .window .text .social {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: -16px 0 32px 0;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .overlay .container .window .text .social {
    margin: -8px 0 24px 0;
  }
}
.page.winners .jury .grid .tiles .overlay .container .window .text .social .linkedin {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
  background-image: url("../images/linkedin.svg");
}
.page.winners .jury .grid .tiles .overlay .container .window .text .description {
  position: relative;
}
.page.winners .jury .grid .tiles .fill {
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top: 1px solid #f27dff;
}
@media screen and (max-width: 768px) {
  .page.winners .jury .grid .tiles .fill {
    display: none;
  }
}
.page.winners .close {
  position: relative;
}
.page.winners .close .spacer {
  position: relative;
  height: 200px;
  background-color: #f27dff;
}
@media screen and (max-width: 768px) {
  .page.winners .close .spacer {
    height: 160px;
  }
}

.page.search {
  position: relative;
}
.page.search .hero {
  position: relative;
  background-color: #e6e6e6;
}
.page.search .hero .title {
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .page.search .hero .title {
    padding: 24px 16px;
  }
}
.page.search .hero .title h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.search .hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.search .hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.search .hero .title h1 {
    font-size: 40px;
  }
}
.page.search .content {
  position: relative;
  border-bottom: 1px solid #e10a7e;
  font-family: "DM Mono", sans-serif;
}
@media screen and (max-width: 768px) {
  .page.search .content {
    background-color: #ffffff;
  }
}
.page.search .content .container {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px;
}
@media screen and (max-width: 768px) {
  .page.search .content .container {
    padding: 32px 16px;
  }
}
.page.search .content .container .query {
  position: relative;
}
.page.search .content .container .query .count {
  position: relative;
  margin-bottom: 24px;
}
.page.search .content .container .query .count span {
  position: relative;
  display: block;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .page.search .content .container .query .count span {
    font-size: 18px;
  }
}
.page.search .content .container .query .form {
  position: relative;
}
.page.search .content .container .query .form input {
  position: relative;
  width: 100%;
  height: 60px;
  border: 1px solid #350030;
  padding: 0 72px 0 24px;
  background-image: url("../images/search-placeholder.svg");
  background-repeat: no-repeat;
  background-position: center right 24px;
  background-size: 24px auto;
}
.page.search .content .container .query .form input::-webkit-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.search .content .container .query .form input:-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.search .content .container .query .form input::-moz-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.search .content .container .query .form input:-ms-input-placeholder {
  color: rgb(152.25, 152.25, 152.25);
}

.page.search .content .container .results {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page.search .content .container .results {
    margin-top: 24px;
  }
}
.page.search .content .container .results .result {
  position: relative;
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid #350030;
}
@media screen and (max-width: 768px) {
  .page.search .content .container .results .result {
    padding: 24px 0;
  }
}
.page.search .content .container .results .result .label {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "DM Mono", sans-serif;
  font-size: 18px;
  color: #e6e6e6;
  background-color: #e10a7e;
  padding: 8px;
  line-height: 1.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page.search .content .container .results .result .label {
    font-size: 16px;
  }
}
.page.search .content .container .results .result h2 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .page.search .content .container .results .result h2 {
    font-size: 24px;
  }
}

.page.not-found {
  position: relative;
}
.page.not-found .hero {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.not-found .hero .error {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 50%;
  height: 50vw;
  background-color: #f4f4f4;
  font-family: "DM Mono", sans-serif;
  color: #e10a7e;
}
@media screen and (max-width: 768px) {
  .page.not-found .hero .error {
    width: 100%;
  }
}
.page.not-found .hero .error h1 {
  font-size: 96px;
}
@media screen and (max-width: 1200px) {
  .page.not-found .hero .error h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page.not-found .hero .error h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page.not-found .hero .error h1 {
    font-size: 40px;
  }
}
.page.not-found .hero .error span {
  position: relative;
  display: block;
  margin-top: 16px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .page.not-found .hero .error span {
    font-size: 18px;
  }
}
.page.not-found .hero .spacer {
  position: relative;
  width: 50%;
  background-color: #e6e6e6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.not-found .hero .spacer {
    width: 100%;
    height: 160px;
  }
}