/*
Theme Name: BBX
Description: Custom theme for BBX
Version: 1.0
Author: Hype London
Author URI: https://hypelondon.co.uk
*/
/* padding-inline: v.fluid(20px, 50px); */
:root {
  --gutter: 2rem;
  --pageMarginTotal: 4.7rem;
  --negPageMargin: calc(var(--pageMarginTotal) * -1);
  --fullBleedWidth: calc(100% + (var(--pageMarginTotal) * 2));
  --innerWidth: calc(100% - (var(--pageMarginTotal) * 2));
  --pageMargin: calc(var(--pageMarginTotal) - (var(--gutter) / 2));
  --easeOut: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOut: cubic-bezier(0.83, 0, 0.17, 1);
  --black: 25, 25, 25;
  --white: 255, 255, 255;
  --sunshine-yellow: 255, 197, 2;
  --poppy-red: 254, 1, 0;
  --happy-orange: 254, 102, 0;
  --impact-blue: 39, 75, 224;
  --calm-grey: 244, 242, 236;
}
@media all and (max-width: 900px) {
  :root {
    --pageMarginTotal: 2.5rem;
  }
}

/* Colours */
.bg-black {
  background-color: rgb(var(--black));
}

.fill-black {
  fill: rgb(var(--black));
}

.color-black {
  color: rgb(var(--black));
}

.bg-white {
  background-color: rgb(var(--white));
}

.fill-white {
  fill: rgb(var(--white));
}

.color-white {
  color: rgb(var(--white));
}

.bg-sunshine-yellow {
  background-color: rgb(var(--sunshine-yellow));
}

.fill-sunshine-yellow {
  fill: rgb(var(--sunshine-yellow));
}

.color-sunshine-yellow {
  color: rgb(var(--sunshine-yellow));
}

.bg-poppy-red {
  background-color: rgb(var(--poppy-red));
}

.fill-poppy-red {
  fill: rgb(var(--poppy-red));
}

.color-poppy-red {
  color: rgb(var(--poppy-red));
}

.bg-happy-orange {
  background-color: rgb(var(--happy-orange));
}

.fill-happy-orange {
  fill: rgb(var(--happy-orange));
}

.color-happy-orange {
  color: rgb(var(--happy-orange));
}

.bg-impact-blue {
  background-color: rgb(var(--impact-blue));
}

.fill-impact-blue {
  fill: rgb(var(--impact-blue));
}

.color-impact-blue {
  color: rgb(var(--impact-blue));
}

.bg-calm-grey {
  background-color: rgb(var(--calm-grey));
}

.fill-calm-grey {
  fill: rgb(var(--calm-grey));
}

.color-calm-grey {
  color: rgb(var(--calm-grey));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

body {
  -webkit-font-smoothing: antialiased;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

/*
Theme Name: BBX
Description: Custom theme for BBX
Version: 1.0
Author: Hype London
Author URI: https://hypelondon.co.uk
*/
.columns {
  display: flex;
  flex-wrap: wrap;
  padding: 0 var(--pageMarginTotal);
  width: 100%;
  -moz-column-gap: var(--gutter);
       column-gap: var(--gutter);
  row-gap: var(--gutter);
  --columns: 12;
  transition: padding 0.2s var(--easing);
  max-width: 1920px;
  margin-inline: auto;
}
@media all and (max-width: 900px) {
  .columns {
    --columns: 6;
  }
}
.columns .columns {
  padding: 0;
}
.columns.align-middle {
  align-items: center;
}
@media all and (max-width: 900px) {
  .columns.m-reverse {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 900px) {
  .columns.s-reverse {
    flex-direction: column-reverse;
  }
}
.columns.no-gutter {
  --gutter: 0;
}
.columns.space-between {
  justify-content: space-between;
}

.full-bleed {
  --pageMarginTotal: 0;
}

.col {
  flex: 1;
}
@media all and (max-width: 900px) {
  .col {
    flex: none;
    width: 100%;
  }
}

.col[class^=col-],
.col[class*=" col-"] {
  flex: none;
  width: calc((100% - var(--gutter) * (var(--columns) / var(--span) - 1)) / (var(--columns) / var(--span)));
}

.col[class^=offset-],
.col[class*=" offset-"] {
  margin-inline-start: calc((100% - var(--gutter) * (var(--columns) / var(--offset) - 1)) / (var(--columns) / var(--offset)) + var(--gutter));
}

.col[class^=offset-s-],
.col[class*=" offset-s-"] {
  margin-inline-start: calc((100% - var(--gutter) * (var(--columns) / var(--offset) - 1)) / (var(--columns) / var(--offset)) + var(--gutter)) !important;
}

.col-1 {
  --span: 1;
}

.col-2 {
  --span: 2;
}

.col-3 {
  --span: 3;
}

.col-4 {
  --span: 4;
}

.col-5 {
  --span: 5;
}

.col-6 {
  --span: 6;
}

.col-7 {
  --span: 7;
}

.col-8 {
  --span: 8;
}

.col-9 {
  --span: 9;
}

.col-10 {
  --span: 10;
}

.col-11 {
  --span: 11;
}

.col-12 {
  --span: 12;
}

.col-13 {
  --span: 13;
}

.col-14 {
  --span: 14;
}

.col-15 {
  --span: 15;
}

.col-16 {
  --span: 16;
}

.col-17 {
  --span: 17;
}

.col-18 {
  --span: 18;
}

.col-19 {
  --span: 19;
}

.col-20 {
  --span: 20;
}

.col-21 {
  --span: 21;
}

.col-22 {
  --span: 22;
}

.col-23 {
  --span: 23;
}

.col-24 {
  --span: 24;
}

.offset-1 {
  --offset: 1;
}

.offset-2 {
  --offset: 2;
}

.offset-3 {
  --offset: 3;
}

.offset-4 {
  --offset: 4;
}

.offset-5 {
  --offset: 5;
}

.offset-6 {
  --offset: 6;
}

.offset-7 {
  --offset: 7;
}

.offset-8 {
  --offset: 8;
}

.offset-9 {
  --offset: 9;
}

.offset-10 {
  --offset: 10;
}

.offset-11 {
  --offset: 11;
}

.offset-12 {
  --offset: 12;
}

.offset-13 {
  --offset: 13;
}

.offset-14 {
  --offset: 14;
}

.offset-15 {
  --offset: 15;
}

.offset-16 {
  --offset: 16;
}

.offset-17 {
  --offset: 17;
}

.offset-18 {
  --offset: 18;
}

.offset-19 {
  --offset: 19;
}

.offset-20 {
  --offset: 20;
}

.offset-21 {
  --offset: 21;
}

.offset-22 {
  --offset: 22;
}

.offset-23 {
  --offset: 23;
}

@media all and (max-width: 1280px) {
  .col-l-1 {
    --span: 1;
  }
}

@media all and (max-width: 1280px) {
  .col-l-2 {
    --span: 2;
  }
}

@media all and (max-width: 1280px) {
  .col-l-3 {
    --span: 3;
  }
}

@media all and (max-width: 1280px) {
  .col-l-4 {
    --span: 4;
  }
}

@media all and (max-width: 1280px) {
  .col-l-5 {
    --span: 5;
  }
}

@media all and (max-width: 1280px) {
  .col-l-6 {
    --span: 6;
  }
}

@media all and (max-width: 1280px) {
  .col-l-7 {
    --span: 7;
  }
}

@media all and (max-width: 1280px) {
  .col-l-8 {
    --span: 8;
  }
}

@media all and (max-width: 1280px) {
  .col-l-9 {
    --span: 9;
  }
}

@media all and (max-width: 1280px) {
  .col-l-10 {
    --span: 10;
  }
}

@media all and (max-width: 1280px) {
  .col-l-11 {
    --span: 11;
  }
}

@media all and (max-width: 1280px) {
  .col-l-12 {
    --span: 12;
  }
}

@media all and (max-width: 1280px) {
  .col-l-13 {
    --span: 13;
  }
}

@media all and (max-width: 1280px) {
  .col-l-14 {
    --span: 14;
  }
}

@media all and (max-width: 1280px) {
  .col-l-15 {
    --span: 15;
  }
}

@media all and (max-width: 1280px) {
  .col-l-16 {
    --span: 16;
  }
}

@media all and (max-width: 1280px) {
  .col-l-17 {
    --span: 17;
  }
}

@media all and (max-width: 1280px) {
  .col-l-18 {
    --span: 18;
  }
}

@media all and (max-width: 1280px) {
  .col-l-19 {
    --span: 19;
  }
}

@media all and (max-width: 1280px) {
  .col-l-20 {
    --span: 20;
  }
}

@media all and (max-width: 1280px) {
  .col-l-21 {
    --span: 21;
  }
}

@media all and (max-width: 1280px) {
  .col-l-22 {
    --span: 22;
  }
}

@media all and (max-width: 1280px) {
  .col-l-23 {
    --span: 23;
  }
}

@media all and (max-width: 1280px) {
  .col-l-24 {
    --span: 24;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-0 {
    margin-left: 0 !important;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-1 {
    --offset: 1;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-2 {
    --offset: 2;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-3 {
    --offset: 3;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-4 {
    --offset: 4;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-5 {
    --offset: 5;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-6 {
    --offset: 6;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-7 {
    --offset: 7;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-8 {
    --offset: 8;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-9 {
    --offset: 9;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-10 {
    --offset: 10;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-11 {
    --offset: 11;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-12 {
    --offset: 12;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-13 {
    --offset: 13;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-14 {
    --offset: 14;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-15 {
    --offset: 15;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-16 {
    --offset: 16;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-17 {
    --offset: 17;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-18 {
    --offset: 18;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-19 {
    --offset: 19;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-20 {
    --offset: 20;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-21 {
    --offset: 21;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-22 {
    --offset: 22;
  }
}

@media all and (max-width: 1280px) {
  .offset-l-23 {
    --offset: 23;
  }
}

@media all and (max-width: 1024px) {
  .col-m-1 {
    --span: 1;
  }
}

@media all and (max-width: 1024px) {
  .col-m-2 {
    --span: 2;
  }
}

@media all and (max-width: 1024px) {
  .col-m-3 {
    --span: 3;
  }
}

@media all and (max-width: 1024px) {
  .col-m-4 {
    --span: 4;
  }
}

@media all and (max-width: 1024px) {
  .col-m-5 {
    --span: 5;
  }
}

@media all and (max-width: 1024px) {
  .col-m-6 {
    --span: 6;
  }
}

@media all and (max-width: 1024px) {
  .col-m-7 {
    --span: 7;
  }
}

@media all and (max-width: 1024px) {
  .col-m-8 {
    --span: 8;
  }
}

@media all and (max-width: 1024px) {
  .col-m-9 {
    --span: 9;
  }
}

@media all and (max-width: 1024px) {
  .col-m-10 {
    --span: 10;
  }
}

@media all and (max-width: 1024px) {
  .col-m-11 {
    --span: 11;
  }
}

@media all and (max-width: 1024px) {
  .col-m-12 {
    --span: 12;
  }
}

@media all and (max-width: 1024px) {
  .col-m-13 {
    --span: 13;
  }
}

@media all and (max-width: 1024px) {
  .col-m-14 {
    --span: 14;
  }
}

@media all and (max-width: 1024px) {
  .col-m-15 {
    --span: 15;
  }
}

@media all and (max-width: 1024px) {
  .col-m-16 {
    --span: 16;
  }
}

@media all and (max-width: 1024px) {
  .col-m-17 {
    --span: 17;
  }
}

@media all and (max-width: 1024px) {
  .col-m-18 {
    --span: 18;
  }
}

@media all and (max-width: 1024px) {
  .col-m-19 {
    --span: 19;
  }
}

@media all and (max-width: 1024px) {
  .col-m-20 {
    --span: 20;
  }
}

@media all and (max-width: 1024px) {
  .col-m-21 {
    --span: 21;
  }
}

@media all and (max-width: 1024px) {
  .col-m-22 {
    --span: 22;
  }
}

@media all and (max-width: 1024px) {
  .col-m-23 {
    --span: 23;
  }
}

@media all and (max-width: 1024px) {
  .col-m-24 {
    --span: 24;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-0 {
    margin-left: 0 !important;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-1 {
    --offset: 1;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-2 {
    --offset: 2;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-3 {
    --offset: 3;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-4 {
    --offset: 4;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-5 {
    --offset: 5;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-6 {
    --offset: 6;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-7 {
    --offset: 7;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-8 {
    --offset: 8;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-9 {
    --offset: 9;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-10 {
    --offset: 10;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-11 {
    --offset: 11;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-12 {
    --offset: 12;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-13 {
    --offset: 13;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-14 {
    --offset: 14;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-15 {
    --offset: 15;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-16 {
    --offset: 16;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-17 {
    --offset: 17;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-18 {
    --offset: 18;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-19 {
    --offset: 19;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-20 {
    --offset: 20;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-21 {
    --offset: 21;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-22 {
    --offset: 22;
  }
}

@media all and (max-width: 1024px) {
  .offset-m-23 {
    --offset: 23;
  }
}

@media all and (max-width: 900px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-13,
  .col-14,
  .col-15,
  .col-16,
  .col-17,
  .col-18,
  .col-19,
  .col-20,
  .col-21,
  .col-22,
  .col-23,
  .col-24,
  .col-l-1,
  .col-l-2,
  .col-l-3,
  .col-l-4,
  .col-l-5,
  .col-l-6,
  .col-l-7,
  .col-l-8,
  .col-l-9,
  .col-l-10,
  .col-l-11,
  .col-l-12,
  .col-l-13,
  .col-l-14,
  .col-l-15,
  .col-l-16,
  .col-l-17,
  .col-l-18,
  .col-l-19,
  .col-l-20,
  .col-l-21,
  .col-l-22,
  .col-l-23,
  .col-l-24,
  .col-m-1,
  .col-m-2,
  .col-m-3,
  .col-m-4,
  .col-m-5,
  .col-m-6,
  .col-m-7,
  .col-m-8,
  .col-m-9,
  .col-m-10,
  .col-m-11,
  .col-m-12,
  .col-m-13,
  .col-m-14,
  .col-m-15,
  .col-m-16,
  .col-m-17,
  .col-m-18,
  .col-m-19,
  .col-m-20,
  .col-m-21,
  .col-m-22,
  .col-m-23,
  .col-m-24 {
    --span: 6;
  }
}

@media all and (max-width: 900px) {
  .offset-1,
  .offset-2,
  .offset-3,
  .offset-4,
  .offset-5,
  .offset-6,
  .offset-7,
  .offset-8,
  .offset-9,
  .offset-10,
  .offset-11,
  .offset-12,
  .offset-13,
  .offset-14,
  .offset-15,
  .offset-16,
  .offset-17,
  .offset-18,
  .offset-19,
  .offset-20,
  .offset-21,
  .offset-22,
  .offset-23 {
    --offset: 0;
    margin-left: 0 !important;
  }
}

@media all and (max-width: 900px) {
  .col-s-1 {
    --span: 1;
  }
}

@media all and (max-width: 900px) {
  .col-s-2 {
    --span: 2;
  }
}

@media all and (max-width: 900px) {
  .col-s-3 {
    --span: 3;
  }
}

@media all and (max-width: 900px) {
  .col-s-4 {
    --span: 4;
  }
}

@media all and (max-width: 900px) {
  .col-s-5 {
    --span: 5;
  }
}

@media all and (max-width: 900px) {
  .col-s-6 {
    --span: 6;
  }
}

@media all and (max-width: 900px) {
  .col-s-7 {
    --span: 7;
  }
}

@media all and (max-width: 900px) {
  .col-s-8 {
    --span: 8;
  }
}

@media all and (max-width: 900px) {
  .col-s-9 {
    --span: 9;
  }
}

@media all and (max-width: 900px) {
  .col-s-10 {
    --span: 10;
  }
}

@media all and (max-width: 900px) {
  .col-s-11 {
    --span: 11;
  }
}

@media all and (max-width: 900px) {
  .col-s-12 {
    --span: 12;
  }
}

@media all and (max-width: 900px) {
  .col-s-13 {
    --span: 13;
  }
}

@media all and (max-width: 900px) {
  .col-s-14 {
    --span: 14;
  }
}

@media all and (max-width: 900px) {
  .col-s-15 {
    --span: 15;
  }
}

@media all and (max-width: 900px) {
  .col-s-16 {
    --span: 16;
  }
}

@media all and (max-width: 900px) {
  .col-s-17 {
    --span: 17;
  }
}

@media all and (max-width: 900px) {
  .col-s-18 {
    --span: 18;
  }
}

@media all and (max-width: 900px) {
  .col-s-19 {
    --span: 19;
  }
}

@media all and (max-width: 900px) {
  .col-s-20 {
    --span: 20;
  }
}

@media all and (max-width: 900px) {
  .col-s-21 {
    --span: 21;
  }
}

@media all and (max-width: 900px) {
  .col-s-22 {
    --span: 22;
  }
}

@media all and (max-width: 900px) {
  .col-s-23 {
    --span: 23;
  }
}

@media all and (max-width: 900px) {
  .col-s-24 {
    --span: 24;
  }
}

@media all and (max-width: 900px) {
  .offset-s-0 {
    margin-left: 0 !important;
  }
}

@media all and (max-width: 900px) {
  .offset-s-1 {
    --offset: 1;
  }
}

@media all and (max-width: 900px) {
  .offset-s-2 {
    --offset: 2;
  }
}

@media all and (max-width: 900px) {
  .offset-s-3 {
    --offset: 3;
  }
}

@media all and (max-width: 900px) {
  .offset-s-4 {
    --offset: 4;
  }
}

@media all and (max-width: 900px) {
  .offset-s-5 {
    --offset: 5;
  }
}

@media all and (max-width: 900px) {
  .offset-s-6 {
    --offset: 6;
  }
}

@media all and (max-width: 900px) {
  .offset-s-7 {
    --offset: 7;
  }
}

@media all and (max-width: 900px) {
  .offset-s-8 {
    --offset: 8;
  }
}

@media all and (max-width: 900px) {
  .offset-s-9 {
    --offset: 9;
  }
}

@media all and (max-width: 900px) {
  .offset-s-10 {
    --offset: 10;
  }
}

@media all and (max-width: 900px) {
  .offset-s-11 {
    --offset: 11;
  }
}

@media all and (max-width: 900px) {
  .offset-s-12 {
    --offset: 12;
  }
}

@media all and (max-width: 900px) {
  .offset-s-13 {
    --offset: 13;
  }
}

@media all and (max-width: 900px) {
  .offset-s-14 {
    --offset: 14;
  }
}

@media all and (max-width: 900px) {
  .offset-s-15 {
    --offset: 15;
  }
}

@media all and (max-width: 900px) {
  .offset-s-16 {
    --offset: 16;
  }
}

@media all and (max-width: 900px) {
  .offset-s-17 {
    --offset: 17;
  }
}

@media all and (max-width: 900px) {
  .offset-s-18 {
    --offset: 18;
  }
}

@media all and (max-width: 900px) {
  .offset-s-19 {
    --offset: 19;
  }
}

@media all and (max-width: 900px) {
  .offset-s-20 {
    --offset: 20;
  }
}

@media all and (max-width: 900px) {
  .offset-s-21 {
    --offset: 21;
  }
}

@media all and (max-width: 900px) {
  .offset-s-22 {
    --offset: 22;
  }
}

@media all and (max-width: 900px) {
  .offset-s-23 {
    --offset: 23;
  }
}

.show-large {
  display: none;
}
@media all and (max-width: 1280px) {
  .show-large {
    display: flex;
  }
}

.show-medium {
  display: none;
}
@media all and (max-width: 1024px) {
  .show-medium {
    display: flex;
  }
}

.show-small {
  display: none !important;
}
@media all and (max-width: 900px) {
  .show-small {
    display: flex !important;
  }
}

@media all and (max-width: 1280px) {
  .hide-large {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .hide-medium {
    display: none;
  }
}

@media all and (max-width: 900px) {
  .hide-small {
    display: none !important;
  }
}

@media all and (max-width: 900px) {
  .small-right {
    text-align: right;
  }
}

/* Grid Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.grid-overlay.show {
  opacity: 1;
  visibility: visible;
}
.grid-overlay .column-overlay {
  background: red;
  opacity: 0.1;
  height: 100vh;
}

/*
Theme Name: BBX
Description: Custom theme for BBX
Version: 1.0
Author: Hype London
Author URI: https://hypelondon.co.uk
*/
@font-face {
  font-family: "ThatThatNewPixel";
  src: url("assets/fonts/thatthatnewpixelfamilytest-italicsquare.woff2") format("woff2"), url("assets/fonts/thatthatnewpixelfamilytest-italicsquare.woff") format("woff"), url("assets/fonts/thatthatnewpixelfamilytest-italicsquare.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
h1,
.type-h1 {
  font-size: clamp(4.5rem, 8.33vw + -3rem, 13rem);
  font-weight: 700;
  line-height: 98%;
  letter-spacing: -0.02em;
}
h1.type-display,
.type-h1.type-display {
  font-weight: 400;
  font-size: clamp(8rem, 14.71vw + -5.24rem, 23rem);
}

h2,
.type-h2 {
  font-size: clamp(3.5rem, 3.43vw + 0.41rem, 7rem);
  font-weight: 700;
  line-height: 106%;
  letter-spacing: -0.02em;
}

h2 + h1 {
  margin-top: 0.1em;
}

h3,
.type-h3 {
  font-size: clamp(2.2rem, 1.18vw + 1.14rem, 3.4rem);
  font-weight: 400;
  line-height: 117%;
  letter-spacing: 0.019em;
}

.type-display {
  font-family: "ThatThatNewPixel", monospace;
  font-size: clamp(4.5rem, 5.88vw + -0.79rem, 10.5rem);
  line-height: 98%;
  letter-spacing: -0.02em;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html.no-scroll {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 1.18vw + 0.54rem, 2.8rem);
}

::-moz-selection {
  background-color: rgb(var(--sunshine-yellow));
  color: rgb(var(--poppy-red));
}

::selection {
  background-color: rgb(var(--sunshine-yellow));
  color: rgb(var(--poppy-red));
}

a {
  color: inherit;
  transition: opacity 0.6s var(--easeOut);
}

.media {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.media:not(.natural) img,
.media:not(.natural) video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media.square {
  aspect-ratio: 1;
}
.media.landscape {
  aspect-ratio: 16/9;
}
.media.portrait {
  aspect-ratio: 9/16;
}
.media.natural img,
.media.natural video {
  display: block;
  width: 100%;
  height: auto;
}
.media.rounded {
  border-radius: 4px;
}
.media.with-media-pixels {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
}
.media.with-media-pixels > img,
.media.with-media-pixels > video {
  grid-row: 2/span 6;
  grid-column: 2/span 6;
}
.media.with-media-pixels .media-pixel {
  opacity: 0;
  transition: opacity 0.01s ease;
}
.media.with-media-pixels .media-pixel:nth-of-type(1) {
  transition-delay: 0.6714731045s;
}
.media.with-media-pixels .media-pixel:nth-of-type(2) {
  transition-delay: 0.9056575426s;
}
.media.with-media-pixels .media-pixel:nth-of-type(3) {
  transition-delay: 0.1198627678s;
}
.media.with-media-pixels .media-pixel:nth-of-type(4) {
  transition-delay: 0.9851848417s;
}
.media.with-media-pixels .media-pixel:nth-of-type(5) {
  transition-delay: 0.5173165709s;
}
.media.with-media-pixels .media-pixel:nth-of-type(6) {
  transition-delay: 0.2040355863s;
}
.media.with-media-pixels.has-been-seen .media-pixel {
  opacity: 1;
}

header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5rem 0;
  z-index: 100;
  transition: 0.4s var(--easeOut);
}
@media all and (max-width: 900px) {
  header.main-header {
    padding: 3rem 0;
  }
}
header.main-header .columns {
  align-items: center;
}
header.main-header .header-logo {
  display: block;
  width: 100%;
  max-width: 225px;
  transition: max-width 0.4s var(--easeOut);
}
@media all and (max-width: 900px) {
  header.main-header .header-logo {
    max-width: 120px;
  }
}
header.main-header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  color: rgb(var(--white));
}
@media all and (max-width: 900px) {
  header.main-header .header-right {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
header.main-header .header-right a:not(.mobile-menu-link) {
  text-decoration: none;
  color: rgb(var(--white));
  font-size: clamp(1.6rem, 0.49vw + 1.16rem, 2.1rem);
  font-weight: 700;
  padding: 0.5rem;
  display: inline-flex;
  border-bottom: 3px solid transparent;
}
header.main-header .header-right a:not(.mobile-menu-link).active, header.main-header .header-right a:not(.mobile-menu-link):hover {
  border-bottom: 3px solid rgb(var(--sunshine-yellow));
}
header.main-header nav ul {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}
@media all and (max-width: 900px) {
  header.main-header nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(var(--calm-grey));
    padding: 3rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--easeOut);
  }
  header.main-header nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header.main-header nav ul a {
    font-size: 28px !important;
  }
  header.main-header nav.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
header.main-header .lang-switcher ul {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
header.main-header .lang-switcher ul li:not(:last-child):after {
  content: "/";
}
header.main-header .lang-switcher ul a {
  font-weight: 400 !important;
}
header.main-header .lang-switcher ul .current-lang a {
  font-weight: 700 !important;
}
header.main-header.show-bg {
  background-color: rgb(var(--calm-grey));
}
header.main-header.show-bg .header-right {
  color: rgb(var(--black));
}
header.main-header.show-bg .header-right a {
  color: rgb(var(--black));
}
header.main-header.scrolled {
  background-color: rgb(var(--calm-grey));
  padding: 2rem 0;
}
header.main-header.scrolled .header-right {
  color: rgb(var(--black));
}
header.main-header.scrolled .header-right a {
  color: rgb(var(--black));
}
header.main-header.scrolled .header-logo {
  max-width: 120px;
}

.mobile-menu-link {
  display: none;
  border: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  font-size: 32px;
}
.mobile-menu-link .icon {
  grid-column: 1;
  grid-row: 1;
  transition: 0.3s var(--easeOut);
}
.mobile-menu-link .icon-close {
  opacity: 0;
}
.mobile-menu-link.open .icon-close {
  opacity: 1;
}
.mobile-menu-link.open .icon-menu {
  opacity: 0;
  transform: scale(0.5, 0);
}
@media all and (max-width: 900px) {
  .mobile-menu-link {
    display: grid;
  }
}

.full-stop {
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
section {
  position: relative;
  padding: 8rem 0;
}
section .pull-up {
  margin-top: -8.5rem;
}
@media all and (max-width: 900px) {
  section .pull-up {
    margin-top: 0;
  }
}
section.full-height {
  min-height: 100vh;
  min-height: 100svh;
}
@media all and (max-width: 900px) {
  section.full-height {
    min-height: 70vh;
    min-height: 70svh;
  }
}
section.align-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5rem;
}
section.align-middle .columns {
  align-items: center;
}
section .columns + .columns {
  margin-top: 5rem;
}
section.has-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section:has(.bg) > *:not(.bg) {
  position: relative;
  z-index: 5;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg img,
.bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg.contain img,
.bg.contain video {
  -o-object-fit: contain;
     object-fit: contain;
}

section:has(.bg-pixels) {
  overflow: hidden;
}

section:has(.bg-pixels) > *:not(.bg-pixels) {
  position: relative;
  z-index: 2;
}

.bg-pixels {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(27, 3.7037037037vw);
  grid-template-rows: repeat(9, min-content);
}
@media all and (max-width: 900px) {
  .bg-pixels {
    grid-template-columns: repeat(13, 7.6923076923vw);
  }
}
.bg-pixels.standalone {
  position: static;
  grid-template-columns: repeat(32, 3.125vw);
  grid-template-rows: repeat(8, 1fr);
}
.bg-pixels.standalone .cell:nth-of-type(1) {
  transition-delay: 0.4420589056s;
}
.bg-pixels.standalone .cell:nth-of-type(2) {
  transition-delay: 0.5360434128s;
}
.bg-pixels.standalone .cell:nth-of-type(3) {
  transition-delay: 0.5623883567s;
}
.bg-pixels.standalone .cell:nth-of-type(4) {
  transition-delay: 0.9961561438s;
}
.bg-pixels.standalone .cell:nth-of-type(5) {
  transition-delay: 0.9480954241s;
}
.bg-pixels.standalone .cell:nth-of-type(6) {
  transition-delay: 0.7903530804s;
}
.bg-pixels.standalone .cell:nth-of-type(7) {
  transition-delay: 0.7239116606s;
}
.bg-pixels.standalone .cell:nth-of-type(8) {
  transition-delay: 0.8956531463s;
}
.bg-pixels.standalone .cell:nth-of-type(9) {
  transition-delay: 0.1403525624s;
}
.bg-pixels.standalone .cell:nth-of-type(10) {
  transition-delay: 0.7254424365s;
}
.bg-pixels.standalone .cell:nth-of-type(11) {
  transition-delay: 0.8588835709s;
}
.bg-pixels.standalone .cell:nth-of-type(12) {
  transition-delay: 0.767884611s;
}
.bg-pixels.standalone .cell:nth-of-type(13) {
  transition-delay: 0.288951254s;
}
.bg-pixels.standalone .cell:nth-of-type(14) {
  transition-delay: 0.2684138251s;
}
.bg-pixels.standalone .cell:nth-of-type(15) {
  transition-delay: 0.1250106675s;
}
.bg-pixels.standalone .cell:nth-of-type(16) {
  transition-delay: 0.9255076539s;
}
.bg-pixels.standalone .cell:nth-of-type(17) {
  transition-delay: 0.4643029702s;
}
.bg-pixels.standalone .cell:nth-of-type(18) {
  transition-delay: 0.0621781068s;
}
.bg-pixels.standalone .cell:nth-of-type(19) {
  transition-delay: 0.0502740514s;
}
.bg-pixels.standalone .cell:nth-of-type(20) {
  transition-delay: 0.8733407669s;
}
.bg-pixels.standalone .cell:nth-of-type(21) {
  transition-delay: 0.8953138776s;
}
.bg-pixels.standalone .cell:nth-of-type(22) {
  transition-delay: 0.5477354418s;
}
.bg-pixels.standalone .cell:nth-of-type(23) {
  transition-delay: 0.9614828742s;
}
.bg-pixels.standalone .cell:nth-of-type(24) {
  transition-delay: 0.9868854425s;
}
.bg-pixels.standalone .cell:nth-of-type(25) {
  transition-delay: 0.7245896707s;
}
.bg-pixels.standalone .cell:nth-of-type(26) {
  transition-delay: 0.7684969325s;
}
.bg-pixels.standalone .cell:nth-of-type(27) {
  transition-delay: 0.5139528142s;
}
.bg-pixels.standalone .cell:nth-of-type(28) {
  transition-delay: 0.7151723877s;
}
.bg-pixels.standalone .cell:nth-of-type(29) {
  transition-delay: 0.7856742101s;
}
.bg-pixels.standalone .cell:nth-of-type(30) {
  transition-delay: 0.326311951s;
}
.bg-pixels.standalone .cell:nth-of-type(31) {
  transition-delay: 0.0547265469s;
}
.bg-pixels.standalone .cell:nth-of-type(32) {
  transition-delay: 0.1365160506s;
}
.bg-pixels.standalone .cell:nth-of-type(33) {
  transition-delay: 0.5765905843s;
}
.bg-pixels.standalone .cell:nth-of-type(34) {
  transition-delay: 0.7625258785s;
}
.bg-pixels.standalone .cell:nth-of-type(35) {
  transition-delay: 0.2730169237s;
}
.bg-pixels.standalone .cell:nth-of-type(36) {
  transition-delay: 0.5489851564s;
}
.bg-pixels.standalone .cell:nth-of-type(37) {
  transition-delay: 0.0513712537s;
}
.bg-pixels.standalone .cell:nth-of-type(38) {
  transition-delay: 0.0274793358s;
}
.bg-pixels.standalone .cell:nth-of-type(39) {
  transition-delay: 0.6502535054s;
}
.bg-pixels.standalone .cell:nth-of-type(40) {
  transition-delay: 0.9493804089s;
}
.bg-pixels.standalone .cell:nth-of-type(41) {
  transition-delay: 0.558337106s;
}
.bg-pixels.standalone .cell:nth-of-type(42) {
  transition-delay: 0.1203721005s;
}
.bg-pixels.standalone .cell:nth-of-type(43) {
  transition-delay: 0.591324337s;
}
.bg-pixels.standalone .cell:nth-of-type(44) {
  transition-delay: 0.6842897059s;
}
.bg-pixels.standalone .cell:nth-of-type(45) {
  transition-delay: 0.2123806337s;
}
.bg-pixels.standalone .cell:nth-of-type(46) {
  transition-delay: 0.8947849834s;
}
.bg-pixels.standalone .cell:nth-of-type(47) {
  transition-delay: 0.6474967732s;
}
.bg-pixels.standalone .cell:nth-of-type(48) {
  transition-delay: 0.2782565696s;
}
.bg-pixels.standalone .cell:nth-of-type(49) {
  transition-delay: 0.751521496s;
}
.bg-pixels.standalone .cell:nth-of-type(50) {
  transition-delay: 0.8521248349s;
}
.bg-pixels.standalone .cell:nth-of-type(51) {
  transition-delay: 0.2344828481s;
}
.bg-pixels.standalone .cell:nth-of-type(52) {
  transition-delay: 0.2837036586s;
}
.bg-pixels.standalone .cell:nth-of-type(53) {
  transition-delay: 0.3847568615s;
}
.bg-pixels.standalone .cell:nth-of-type(54) {
  transition-delay: 0.2405528102s;
}
.bg-pixels.standalone .cell:nth-of-type(55) {
  transition-delay: 0.6218779802s;
}
.bg-pixels.standalone .cell:nth-of-type(56) {
  transition-delay: 0.9625457242s;
}
.bg-pixels.standalone .cell:nth-of-type(57) {
  transition-delay: 0.6284015026s;
}
.bg-pixels.standalone .cell:nth-of-type(58) {
  transition-delay: 0.2963300944s;
}
.bg-pixels.standalone .cell:nth-of-type(59) {
  transition-delay: 0.851411518s;
}
.bg-pixels.standalone .cell:nth-of-type(60) {
  transition-delay: 0.5611062031s;
}
.bg-pixels.standalone .cell:nth-of-type(61) {
  transition-delay: 0.2378572859s;
}
.bg-pixels.standalone .cell:nth-of-type(62) {
  transition-delay: 0.6280933483s;
}
.bg-pixels.standalone .cell:nth-of-type(63) {
  transition-delay: 0.8189719553s;
}
.bg-pixels.standalone .cell:nth-of-type(64) {
  transition-delay: 0.5699514199s;
}
.bg-pixels.standalone .cell:nth-of-type(65) {
  transition-delay: 0.2591250069s;
}
.bg-pixels.standalone .cell:nth-of-type(66) {
  transition-delay: 0.0274139058s;
}
.bg-pixels.standalone .cell:nth-of-type(67) {
  transition-delay: 0.4285906942s;
}
.bg-pixels.standalone .cell:nth-of-type(68) {
  transition-delay: 0.5881207242s;
}
.bg-pixels.standalone .cell:nth-of-type(69) {
  transition-delay: 0.1070589446s;
}
.bg-pixels.standalone .cell:nth-of-type(70) {
  transition-delay: 0.5210759503s;
}
.bg-pixels.standalone .cell:nth-of-type(71) {
  transition-delay: 0.7860134608s;
}
.bg-pixels.standalone .cell:nth-of-type(72) {
  transition-delay: 0.9937314335s;
}
.bg-pixels.standalone .cell:nth-of-type(73) {
  transition-delay: 0.9590408399s;
}
.bg-pixels.standalone .cell:nth-of-type(74) {
  transition-delay: 0.736505976s;
}
.bg-pixels.standalone .cell:nth-of-type(75) {
  transition-delay: 0.6516310035s;
}
.bg-pixels.standalone .cell:nth-of-type(76) {
  transition-delay: 0.7605017114s;
}
.bg-pixels.standalone .cell:nth-of-type(77) {
  transition-delay: 0.7354028227s;
}
.bg-pixels.standalone .cell:nth-of-type(78) {
  transition-delay: 0.8640295446s;
}
.bg-pixels.standalone .cell:nth-of-type(79) {
  transition-delay: 0.1284048518s;
}
.bg-pixels.standalone .cell:nth-of-type(80) {
  transition-delay: 0.0631198106s;
}
.bg-pixels.standalone .cell:nth-of-type(81) {
  transition-delay: 0.8075527562s;
}
.bg-pixels.standalone .cell:nth-of-type(82) {
  transition-delay: 0.3136956067s;
}
.bg-pixels.standalone .cell:nth-of-type(83) {
  transition-delay: 0.5895975861s;
}
.bg-pixels.standalone .cell:nth-of-type(84) {
  transition-delay: 0.7320881488s;
}
.bg-pixels.standalone .cell:nth-of-type(85) {
  transition-delay: 0.2570791478s;
}
.bg-pixels.standalone .cell:nth-of-type(86) {
  transition-delay: 0.5402534019s;
}
.bg-pixels.standalone .cell:nth-of-type(87) {
  transition-delay: 0.5896001155s;
}
.bg-pixels.standalone .cell:nth-of-type(88) {
  transition-delay: 0.4023659386s;
}
.bg-pixels.standalone .cell:nth-of-type(89) {
  transition-delay: 0.1315425175s;
}
.bg-pixels.standalone .cell:nth-of-type(90) {
  transition-delay: 0.7788280047s;
}
.bg-pixels.standalone .cell:nth-of-type(91) {
  transition-delay: 0.645761083s;
}
.bg-pixels.standalone .cell:nth-of-type(92) {
  transition-delay: 0.5661769019s;
}
.bg-pixels.standalone .cell:nth-of-type(93) {
  transition-delay: 0.5491782628s;
}
.bg-pixels.standalone .cell:nth-of-type(94) {
  transition-delay: 0.3540692332s;
}
.bg-pixels.standalone .cell:nth-of-type(95) {
  transition-delay: 0.7785885563s;
}
.bg-pixels.standalone .cell:nth-of-type(96) {
  transition-delay: 0.6705962299s;
}
.bg-pixels.standalone .cell:nth-of-type(97) {
  transition-delay: 0.3652947458s;
}
.bg-pixels.standalone .cell:nth-of-type(98) {
  transition-delay: 0.0920763637s;
}
.bg-pixels.standalone .cell:nth-of-type(99) {
  transition-delay: 0.7481011405s;
}
.bg-pixels.standalone .cell:nth-of-type(100) {
  transition-delay: 0.1480645414s;
}
.bg-pixels.standalone .cell:nth-of-type(101) {
  transition-delay: 0.9593529207s;
}
.bg-pixels.standalone .cell:nth-of-type(102) {
  transition-delay: 0.5423756884s;
}
.bg-pixels.standalone .cell:nth-of-type(103) {
  transition-delay: 0.4338695953s;
}
.bg-pixels.standalone .cell:nth-of-type(104) {
  transition-delay: 0.4761688248s;
}
.bg-pixels.standalone .cell:nth-of-type(105) {
  transition-delay: 0.1177594988s;
}
.bg-pixels.standalone .cell:nth-of-type(106) {
  transition-delay: 0.9475692535s;
}
.bg-pixels.standalone .cell:nth-of-type(107) {
  transition-delay: 0.47641333s;
}
.bg-pixels.standalone .cell:nth-of-type(108) {
  transition-delay: 0.601247369s;
}
.bg-pixels.standalone .cell:nth-of-type(109) {
  transition-delay: 0.9966227437s;
}
.bg-pixels.standalone .cell:nth-of-type(110) {
  transition-delay: 0.7378978794s;
}
.bg-pixels .cell {
  display: block;
  aspect-ratio: 1;
  opacity: 0;
  transition: opacity 0.01s ease;
}
.bg-pixels .cell:nth-of-type(1) {
  transition-delay: 0.655868593s;
}
.bg-pixels .cell:nth-of-type(2) {
  transition-delay: 0.3201412436s;
}
.bg-pixels .cell:nth-of-type(3) {
  transition-delay: 0.9821450525s;
}
.bg-pixels .cell:nth-of-type(4) {
  transition-delay: 0.5724195928s;
}
.bg-pixels .cell:nth-of-type(5) {
  transition-delay: 0.5497286618s;
}
.bg-pixels .cell:nth-of-type(6) {
  transition-delay: 0.0960655168s;
}
.bg-pixels .cell:nth-of-type(7) {
  transition-delay: 0.8525896274s;
}
.bg-pixels .cell:nth-of-type(8) {
  transition-delay: 0.1247966202s;
}
.bg-pixels .cell:nth-of-type(9) {
  transition-delay: 0.6173431883s;
}
.bg-pixels .cell:nth-of-type(10) {
  transition-delay: 0.3519977404s;
}
.bg-pixels .cell:nth-of-type(11) {
  transition-delay: 0.1135441328s;
}
.bg-pixels .cell:nth-of-type(12) {
  transition-delay: 0.6552675799s;
}
.bg-pixels .cell:nth-of-type(13) {
  transition-delay: 0.7993920199s;
}
.bg-pixels .cell:nth-of-type(14) {
  transition-delay: 0.7960995198s;
}
.bg-pixels .cell:nth-of-type(15) {
  transition-delay: 0.8428718733s;
}
.bg-pixels.has-been-seen .cell {
  opacity: 1;
}

.overlay-image {
  position: absolute !important;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
}
@media all and (max-width: 900px) {
  .overlay-image {
    position: relative !important;
    transform: translateY(0);
    width: 50%;
    align-self: end;
  }
}

html[dir=rtl] .overlay-image {
  right: auto;
  left: 0;
}

.button {
  display: inline-block;
  background-color: rgb(var(--poppy-red));
  color: rgb(var(--white));
  text-decoration: none;
  padding: 1.5rem 2rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 0.98vw + 0.52rem, 2.4rem);
  box-shadow: 7px 7px 0px rgba(var(--white));
  transition: all 0.4s var(--easeOut);
}
@media (hover: hover) {
  .button:hover {
    box-shadow: 5px 5px 0px rgba(var(--white));
  }
}
.button:active {
  box-shadow: 3px 3px 0px rgba(var(--white));
}

footer {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
  padding: 5rem 0;
  font-size: clamp(1.4rem, 0.2vw + 1.22rem, 1.6rem);
}
footer .footer-logo {
  max-width: 290px;
}
@media all and (max-width: 900px) {
  footer .footer-logo {
    max-width: 190px;
  }
}

.partners-section p {
  max-width: 58rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.6rem, 0.78vw + 0.89rem, 2.4rem);
}

.logo-slider-wrap {
  padding: 0 60px;
}

.logo-slider .logo-slider-block {
  width: calc((100% - 100px) / 3.2);
  margin-right: 50px;
  transition: opacity 0.6s var(--easeOut);
}
.logo-slider .logo-slider-block .logo-slider-image {
  opacity: 0.5;
  transform: scale(0.7);
  transition: all 0.6s var(--easeOut);
}
.logo-slider .logo-slider-block .logo-slider-content {
  margin-top: 50px;
  width: 200%;
  transform: translateX(-25%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.6s var(--easeOut);
}
@media all and (max-width: 900px) {
  .logo-slider .logo-slider-block .logo-slider-content {
    width: 100%;
    transform: translateX(0);
  }
}
.logo-slider .logo-slider-block.is-selected .logo-slider-image {
  opacity: 1;
  transform: scale(1);
}
.logo-slider .logo-slider-block.is-selected .logo-slider-content {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media all and (max-width: 900px) {
  .logo-slider .logo-slider-block {
    width: 80%;
    margin-right: 30px;
  }
}
.logo-slider .flickity-button {
  background: transparent;
}
.logo-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  transition: all 0.6s var(--easeOut);
}
.logo-slider .flickity-button-icon {
  fill: rgb(var(--sunshine-yellow));
}
.logo-slider .flickity-button-icon:not(:disabled):hover {
  opacity: 0.8;
}
.logo-slider .flickity-button:disabled {
  display: none;
}
.logo-slider .flickity-prev-next-button.previous {
  left: -60px;
}
.logo-slider .flickity-prev-next-button.next {
  right: -60px;
}

html[dir=rtl] .logo-slider .logo-slider-content {
  transform: translateX(25%);
}
@media all and (max-width: 900px) {
  html[dir=rtl] .logo-slider .logo-slider-content {
    transform: translateX(0);
  }
}

.logo-slider-image {
  aspect-ratio: 1;
  background-color: rgb(var(--white));
}
.logo-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9hc3NldHMvc2Nzcy9zdHlsZS5zY3NzIiwiLi4vc3JjL2Fzc2V0cy9zY3NzL192YXJpYWJsZXMuc2NzcyIsInN0eWxlLmNzcyIsIi4uL3NyYy9hc3NldHMvc2Nzcy9fcmVzZXQuc2NzcyIsIi4uL3NyYy9hc3NldHMvc2Nzcy9fZ3JpZC5zY3NzIiwiLi4vc3JjL2Fzc2V0cy9zY3NzL190eXBvZ3JhcGh5LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztDQUFBO0FDc0NBLHlDQUFBO0FBWUE7RUFDQyxjQUFBO0VBQ0EseUJBQUE7RUFDQSxrREFBQTtFQUNBLDJEQUFBO0VBQ0EsdURBQUE7RUFDQSxnRUFBQTtFQUNBLHdDQUFBO0VBQ0EsMkNBQUE7RUFHQyxtQkFBQTtFQUFBLHNCQUFBO0VBQUEsOEJBQUE7RUFBQSxzQkFBQTtFQUFBLDJCQUFBO0VBQUEsMEJBQUE7RUFBQSwwQkFBQTtBQ3JDRjtBRHdDQztFQWREO0lBZUUseUJBQUE7RUNyQ0E7QUFDRjs7QUR3Q0EsWUFBQTtBQUdDO0VBQ0MsbUNBQUE7QUN2Q0Y7O0FEMENDO0VBQ0MsdUJBQUE7QUN2Q0Y7O0FEMENDO0VBQ0Msd0JBQUE7QUN2Q0Y7O0FEOEJDO0VBQ0MsbUNBQUE7QUMzQkY7O0FEOEJDO0VBQ0MsdUJBQUE7QUMzQkY7O0FEOEJDO0VBQ0Msd0JBQUE7QUMzQkY7O0FEa0JDO0VBQ0MsNkNBQUE7QUNmRjs7QURrQkM7RUFDQyxpQ0FBQTtBQ2ZGOztBRGtCQztFQUNDLGtDQUFBO0FDZkY7O0FETUM7RUFDQyx1Q0FBQTtBQ0hGOztBRE1DO0VBQ0MsMkJBQUE7QUNIRjs7QURNQztFQUNDLDRCQUFBO0FDSEY7O0FETkM7RUFDQywwQ0FBQTtBQ1NGOztBRE5DO0VBQ0MsOEJBQUE7QUNTRjs7QUROQztFQUNDLCtCQUFBO0FDU0Y7O0FEbEJDO0VBQ0MseUNBQUE7QUNxQkY7O0FEbEJDO0VBQ0MsNkJBQUE7QUNxQkY7O0FEbEJDO0VBQ0MsOEJBQUE7QUNxQkY7O0FEOUJDO0VBQ0MsdUNBQUE7QUNpQ0Y7O0FEOUJDO0VBQ0MsMkJBQUE7QUNpQ0Y7O0FEOUJDO0VBQ0MsNEJBQUE7QUNpQ0Y7O0FDbEhBOzs7RUFHRSxzQkFBQTtBRHFIRjs7QUNsSEE7RUFDRSxTQUFBO0VBQ0EsVUFBQTtBRHFIRjs7QUNsSEE7O0VBRUUsZ0JBQUE7QURxSEY7O0FDbEhBO0VBQ0UsbUNBQUE7QURxSEY7O0FDbEhBO0VBQ0UsaUNBQUE7VUFBQSw4QkFBQTtBRHFIRjs7QUNsSEE7Ozs7O0VBS0UsY0FBQTtFQUNBLGVBQUE7QURxSEY7O0FDbEhBOzs7O0VBSUUsYUFBQTtBRHFIRjs7QUNsSEE7Ozs7Ozs7RUFPRSx5QkFBQTtBRHFIRjs7QUNsSEE7RUFDRTtJQUNFLHFDQUFBO0lBQ0EsdUNBQUE7SUFDQSxzQ0FBQTtJQUNBLGdDQUFBO0VEcUhGO0FBQ0Y7QUNsSEE7RUFDRSxxQkFBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLG9CQUFBO0VBQ0Esa0JBQUE7QURvSEY7O0FDakhBO0VBQ0UsMENBQUE7QURvSEY7O0FDakhBO0VBQ0Usa0JBQUE7QURvSEY7O0FDakhBO0VBQ0UsaUJBQUE7QURvSEY7O0FGak1BOzs7Ozs7Q0FBQTtBSUVBO0VBQ0UsYUFBQTtFQUNBLGVBQUE7RUFDQSxpQ0FBQTtFQUNBLFdBQUE7RUFDQSw4QkFBQTtPQUFBLHlCQUFBO0VBQ0Esc0JBQUE7RUFDQSxhQUFBO0VBQ0Esc0NBQUE7RUFDQSxpQkhWUTtFR1dSLG1CQUFBO0FGeU1GO0FFdk1FO0VBWkY7SUFhSSxZQUFBO0VGME1GO0FBQ0Y7QUV4TUU7RUFDRSxVQUFBO0FGME1KO0FFdk1FO0VBQ0UsbUJBQUE7QUZ5TUo7QUVyTUk7RUFERjtJQUVJLDhCQUFBO0VGd01KO0FBQ0Y7QUVwTUk7RUFERjtJQUVJLDhCQUFBO0VGdU1KO0FBQ0Y7QUVwTUU7RUFDRSxXQUFBO0FGc01KO0FFbk1FO0VBQ0UsOEJBQUE7QUZxTUo7O0FFak1BO0VBQ0Usb0JBQUE7QUZvTUY7O0FFak1BO0VBQ0UsT0FBQTtBRm9NRjtBRWxNRTtFQUhGO0lBSUksVUFBQTtJQUNBLFdBQUE7RUZxTUY7QUFDRjs7QUVsTUE7O0VBRUUsVUFBQTtFQUNBLHlHQUFBO0FGcU1GOztBRWxNQTs7RUFFRSwySUFBQTtBRnFNRjs7QUVsTUE7O0VBRUUsc0pBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsU0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxTQUFBO0FGcU1GOztBRWxNQTtFQUNFLFNBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsU0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxTQUFBO0FGcU1GOztBRWxNQTtFQUNFLFNBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsU0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxTQUFBO0FGcU1GOztBRWxNQTtFQUNFLFNBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsVUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxVQUFBO0FGcU1GOztBRWxNQTtFQUNFLFVBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsVUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxVQUFBO0FGcU1GOztBRWxNQTtFQUNFLFVBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsVUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxVQUFBO0FGcU1GOztBRWxNQTtFQUNFLFVBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsVUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxVQUFBO0FGcU1GOztBRWxNQTtFQUNFLFVBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsVUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxVQUFBO0FGcU1GOztBRWxNQTtFQUNFLFVBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsV0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxXQUFBO0FGcU1GOztBRWxNQTtFQUNFLFdBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsV0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxXQUFBO0FGcU1GOztBRWxNQTtFQUNFLFdBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsV0FBQTtBRnFNRjs7QUVsTUE7RUFDRSxXQUFBO0FGcU1GOztBRWxNQTtFQUNFLFdBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsWUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxZQUFBO0FGcU1GOztBRWxNQTtFQUNFLFlBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsWUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxZQUFBO0FGcU1GOztBRWxNQTtFQUNFLFlBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsWUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxZQUFBO0FGcU1GOztBRWxNQTtFQUNFLFlBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsWUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxZQUFBO0FGcU1GOztBRWxNQTtFQUNFLFlBQUE7QUZxTUY7O0FFbE1BO0VBQ0UsWUFBQTtBRnFNRjs7QUVsTUE7RUFDRSxZQUFBO0FGcU1GOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksU0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksVUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUkseUJBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFdBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFlBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFNBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLFVBQUE7RUZxTUY7QUFDRjs7QUVqTUU7RUFERjtJQUVJLHlCQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxXQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxZQUFBO0VGcU1GO0FBQ0Y7O0FFMUhFO0VBeEVGOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUF5RUksU0FBQTtFRnFNRjtBQUNGOztBRTNLRTtFQXZCRjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUF3QkksV0FBQTtJQUNBLHlCQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxTQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSxVQUFBO0VGcU1GO0FBQ0Y7O0FFak1FO0VBREY7SUFFSSx5QkFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksV0FBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWpNRTtFQURGO0lBRUksWUFBQTtFRnFNRjtBQUNGOztBRWxNQTtFQUNFLGFBQUE7QUZxTUY7QUVuTUU7RUFIRjtJQUlJLGFBQUE7RUZzTUY7QUFDRjs7QUVuTUE7RUFDRSxhQUFBO0FGc01GO0FFcE1FO0VBSEY7SUFJSSxhQUFBO0VGdU1GO0FBQ0Y7O0FFcE1BO0VBQ0Usd0JBQUE7QUZ1TUY7QUVyTUU7RUFIRjtJQUlJLHdCQUFBO0VGd01GO0FBQ0Y7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K0JBQUE7QUV5aURWO0FGMWlEUTtFQUNFLDhCQUFBO0FFNGlEVjtBRjdpRFE7RUFDRSwrQkFBQTtBRStpRFY7QUZoakRRO0VBQ0UsK0JBQUE7QUVrakRWO0FGbmpEUTtFQUNFLCtCQUFBO0FFcWpEVjtBRnRqRFE7RUFDRSwrQkFBQTtBRXdqRFY7QUZ6akRRO0VBQ0UsK0JBQUE7QUUyakRWO0FGNWpEUTtFQUNFLCtCQUFBO0FFOGpEVjtBRi9qRFE7RUFDRSwrQkFBQTtBRWlrRFY7QUZsa0RRO0VBQ0UsK0JBQUE7QUVva0RWO0FGcmtEUTtFQUNFLCtCQUFBO0FFdWtEVjtBRnhrRFE7RUFDRSwrQkFBQTtBRTBrRFY7QUYza0RRO0VBQ0UsOEJBQUE7QUU2a0RWO0FGOWtEUTtFQUNFLCtCQUFBO0FFZ2xEVjtBRmpsRFE7RUFDRSw4QkFBQTtBRW1sRFY7QUZwbERRO0VBQ0UsK0JBQUE7QUVzbERWO0FGdmxEUTtFQUNFLCtCQUFBO0FFeWxEVjtBRjFsRFE7RUFDRSwrQkFBQTtBRTRsRFY7QUY3bERRO0VBQ0UsK0JBQUE7QUUrbERWO0FGaG1EUTtFQUNFLCtCQUFBO0FFa21EVjtBRm5tRFE7RUFDRSw4QkFBQTtBRXFtRFY7QUZ0bURRO0VBQ0UsK0JBQUE7QUV3bURWO0FGem1EUTtFQUNFLCtCQUFBO0FFMm1EVjtBRjVtRFE7RUFDRSwrQkFBQTtBRThtRFY7QUYvbURRO0VBQ0UsK0JBQUE7QUVpbkRWO0FGbG5EUTtFQUNFLCtCQUFBO0FFb25EVjtBRnJuRFE7RUFDRSwrQkFBQTtBRXVuRFY7QUZ4bkRRO0VBQ0UsK0JBQUE7QUUwbkRWO0FGM25EUTtFQUNFLCtCQUFBO0FFNm5EVjtBRjluRFE7RUFDRSwrQkFBQTtBRWdvRFY7QUZqb0RRO0VBQ0UsOEJBQUE7QUVtb0RWO0FGcG9EUTtFQUNFLCtCQUFBO0FFc29EVjtBRnZvRFE7RUFDRSwrQkFBQTtBRXlvRFY7QUYxb0RRO0VBQ0UsK0JBQUE7QUU0b0RWO0FGN29EUTtFQUNFLCtCQUFBO0FFK29EVjtBRmhwRFE7RUFDRSwrQkFBQTtBRWtwRFY7QUZucERRO0VBQ0UsK0JBQUE7QUVxcERWO0FGdHBEUTtFQUNFLCtCQUFBO0FFd3BEVjtBRnpwRFE7RUFDRSwrQkFBQTtBRTJwRFY7QUY1cERRO0VBQ0UsK0JBQUE7QUU4cERWO0FGL3BEUTtFQUNFLCtCQUFBO0FFaXFEVjtBRmxxRFE7RUFDRSwrQkFBQTtBRW9xRFY7QUZycURRO0VBQ0UsK0JBQUE7QUV1cURWO0FGeHFEUTtFQUNFLCtCQUFBO0FFMHFEVjtBRjNxRFE7RUFDRSwrQkFBQTtBRTZxRFY7QUY5cURRO0VBQ0UsOEJBQUE7QUVnckRWO0FGanJEUTtFQUNFLCtCQUFBO0FFbXJEVjtBRnByRFE7RUFDRSwrQkFBQTtBRXNyRFY7QUZ2ckRRO0VBQ0UsK0JBQUE7QUV5ckRWO0FGMXJEUTtFQUNFLCtCQUFBO0FFNHJEVjtBRjdyRFE7RUFDRSwrQkFBQTtBRStyRFY7QUZoc0RRO0VBQ0UsK0JBQUE7QUVrc0RWO0FGbnNEUTtFQUNFLCtCQUFBO0FFcXNEVjtBRnRzRFE7RUFDRSwrQkFBQTtBRXdzRFY7QUZ6c0RRO0VBQ0UsK0JBQUE7QUUyc0RWO0FGNXNEUTtFQUNFLCtCQUFBO0FFOHNEVjtBRi9zRFE7RUFDRSwrQkFBQTtBRWl0RFY7QUZsdERRO0VBQ0UsK0JBQUE7QUVvdERWO0FGcnREUTtFQUNFLCtCQUFBO0FFdXREVjtBRnh0RFE7RUFDRSwrQkFBQTtBRTB0RFY7QUYzdERRO0VBQ0UsK0JBQUE7QUU2dERWO0FGOXREUTtFQUNFLCtCQUFBO0FFZ3VEVjtBRmp1RFE7RUFDRSw4QkFBQTtBRW11RFY7QUZwdURRO0VBQ0UsK0JBQUE7QUVzdURWO0FGdnVEUTtFQUNFLCtCQUFBO0FFeXVEVjtBRjF1RFE7RUFDRSwrQkFBQTtBRTR1RFY7QUY3dURRO0VBQ0UsK0JBQUE7QUUrdURWO0FGaHZEUTtFQUNFLCtCQUFBO0FFa3ZEVjtBRm52RFE7RUFDRSwrQkFBQTtBRXF2RFY7QUZ0dkRRO0VBQ0UsK0JBQUE7QUV3dkRWO0FGenZEUTtFQUNFLCtCQUFBO0FFMnZEVjtBRjV2RFE7RUFDRSwrQkFBQTtBRTh2RFY7QUYvdkRRO0VBQ0UsK0JBQUE7QUVpd0RWO0FGbHdEUTtFQUNFLCtCQUFBO0FFb3dEVjtBRnJ3RFE7RUFDRSwrQkFBQTtBRXV3RFY7QUZ4d0RRO0VBQ0UsK0JBQUE7QUUwd0RWO0FGM3dEUTtFQUNFLCtCQUFBO0FFNndEVjtBRjl3RFE7RUFDRSwrQkFBQTtBRWd4RFY7QUZqeERRO0VBQ0UsNkJBQUE7QUVteERWO0FGcHhEUTtFQUNFLDhCQUFBO0FFc3hEVjtBRnZ4RFE7RUFDRSwrQkFBQTtBRXl4RFY7QUYxeERRO0VBQ0UsK0JBQUE7QUU0eERWO0FGdHhERTtFQUNFLGNBQUE7RUFDQSxlQUFBO0VBQ0EsVUFBQTtFQUNBLDhCQUFBO0FFd3hESjtBRnJ4RE07RUFDRSw4QkFBQTtBRXV4RFI7QUZ4eERNO0VBQ0UsK0JBQUE7QUUweERSO0FGM3hETTtFQUNFLCtCQUFBO0FFNnhEUjtBRjl4RE07RUFDRSwrQkFBQTtBRWd5RFI7QUZqeURNO0VBQ0UsK0JBQUE7QUVteURSO0FGcHlETTtFQUNFLCtCQUFBO0FFc3lEUjtBRnZ5RE07RUFDRSwrQkFBQTtBRXl5RFI7QUYxeURNO0VBQ0UsK0JBQUE7QUU0eURSO0FGN3lETTtFQUNFLCtCQUFBO0FFK3lEUjtBRmh6RE07RUFDRSwrQkFBQTtBRWt6RFI7QUZuekRNO0VBQ0UsK0JBQUE7QUVxekRSO0FGdHpETTtFQUNFLCtCQUFBO0FFd3pEUjtBRnp6RE07RUFDRSwrQkFBQTtBRTJ6RFI7QUY1ekRNO0VBQ0UsK0JBQUE7QUU4ekRSO0FGL3pETTtFQUNFLCtCQUFBO0FFaTBEUjtBRi95REk7RUFDRSxVQUFBO0FFaXpETjs7QUY1eURBO0VBQ0UsNkJBQUE7RUFDQSxRQUFBO0VBQ0EsUUFBQTtFQUNBLDJCQUFBO0VBQ0EsVUFBQTtBRSt5REY7QUY3eURFO0VBUEY7SUFRSSw2QkFBQTtJQUNBLHdCQUFBO0lBQ0EsVUFBQTtJQUNBLGVBQUE7RUVnekRGO0FBQ0Y7O0FGN3lEQTtFQUNFLFdBQUE7RUFDQSxPQUFBO0FFZ3pERjs7QUY3eURBO0VBQ0UscUJBQUE7RUFDQSx1Q0FBQTtFQUNBLHdCQUFBO0VBQ0EscUJBQUE7RUFDQSxvQkFBQTtFQUNBLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSx5QkFBQTtFQUNBLGtEQUFBO0VBQ0EsMENBQUE7RUFDQSxtQ0FBQTtBRWd6REY7QUY5eURFO0VBQ0U7SUFDRSwwQ0FBQTtFRWd6REo7QUFDRjtBRjd5REU7RUFDRSwwQ0FBQTtBRSt5REo7O0FGM3lEQTtFQUNFLG1DQUFBO0VBQ0Esd0JBQUE7RUFDQSxlQUFBO0VBQ0EsaURBQUE7QUU4eURGO0FGNXlERTtFQUNFLGdCQUFBO0FFOHlESjtBRjV5REk7RUFIRjtJQUlJLGdCQUFBO0VFK3lESjtBQUNGOztBRjF5REU7RUFDRSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLGtEQUFBO0FFNnlESjs7QUZ6eURBO0VBQ0UsZUFBQTtBRTR5REY7O0FGeHlERTtFQUNFLGlDQUFBO0VBQ0Esa0JBQUE7RUFDQSx1Q0FBQTtBRTJ5REo7QUZ6eURJO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0EsbUNBQUE7QUUyeUROO0FGeHlESTtFQUNFLGdCQUFBO0VBQ0EsV0FBQTtFQUNBLDJCQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0Esb0JBQUE7RUFDQSxtQ0FBQTtBRTB5RE47QUZ4eURNO0VBVEY7SUFVSSxXQUFBO0lBQ0Esd0JBQUE7RUUyeUROO0FBQ0Y7QUZ2eURNO0VBQ0UsVUFBQTtFQUNBLG1CQUFBO0FFeXlEUjtBRnR5RE07RUFDRSxVQUFBO0VBQ0EsbUJBQUE7RUFDQSxtQkFBQTtBRXd5RFI7QUZweURJO0VBdkNGO0lBd0NJLFVBQUE7SUFDQSxrQkFBQTtFRXV5REo7QUFDRjtBRnB5REU7RUFDRSx1QkFBQTtBRXN5REo7QUZueURFO0VBQ0UsV0FBQTtFQUNBLFlBQUE7RUFDQSxtQ0FBQTtBRXF5REo7QUZseURFO0VBQ0UsaUNBQUE7QUVveURKO0FGanlERTtFQUNFLFlBQUE7QUVteURKO0FGaHlERTtFQUNFLGFBQUE7QUVreURKO0FGL3hERTtFQUNFLFdBQUE7QUVpeURKO0FGOXhERTtFQUNFLFlBQUE7QUVneURKOztBRjF4REk7RUFDRSwwQkFBQTtBRTZ4RE47QUYzeERNO0VBSEY7SUFJSSx3QkFBQTtFRTh4RE47QUFDRjs7QUZ6eERBO0VBQ0UsZUFBQTtFQUNBLG1DQUFBO0FFNHhERjtBRnp4REU7RUFDRSxXQUFBO0VBQ0EsWUFBQTtFQUNBLG9CQUFBO0tBQUEsaUJBQUE7QUUyeERKIiwiZmlsZSI6InN0eWxlLmNzcyJ9 */