@charset "UTF-8";

/*
0-600px:     Phone
600-900px:   Tablet Portrait
900-1200px:   Tablet Landscape
[1200-1800] is where our normal styles apply
1800px + :    Big desktop
*/

/*
$breakpoint argument choises:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography / general layout + grid / page layout / components
1em - 16px;
*/

:root {
  --nav-width: 320px;
  --content-max-width: 1600px;
  --color-body: rgba(0,0,0);
  --color-white: #fff;
  --text-base-color: #D1D1D0;
  --text-base-dark: #002300;
  --gutter-base: 4rem;
  --container-gutter: 10rem;
  --container-gutter-sm: 5rem;
  --container-gutter-xs: 2.5rem;
  --container-gutter-sm: 5rem;
}

/*
  1. Use a more-intuitive box-sizing model.
*/

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

/*
2. Remove default margin
*/

* {
  margin: 0;
}

/*
3. Allow percentage-based heights in the application
*/

html {
  font-size: 62.5%;
}

@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

/*
Typographic tweaks!
4. Add accessible line-height
5. Improve text rendering
*/

body {
  background-color: #000000;
  font-size: 16px;
  font-family: "Helvetica-Neue", sans-serif;
  color: #ffffff;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

/*
6. Improve media defaults
*/

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

/*
7. Remove built-in form typography styles
*/

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: transparent;
}

/*
8. Avoid text overflows
*/

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

/*
default padding for p
*/

p {
  margin-bottom: 1.2rem;
}

/*
9. Create a root stacking context
*/

/*
10. a herf remove styles default hover
*/

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease-in;
}

/*
10. input remove styles
*/

input {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*
10. unorder list remove styles
*/

ul {
  list-style-type: none;
  padding: 0px;
}

/*
11.addres remove styles
*/

address {
  font-style: normal;
}

#root,
#__next {
  isolation: isolate;
}

@font-face {
  font-family: "Helvetica-Neue-Light";
  src: url(/fonts/HelveticaNeue-Light.woff2?07353a39429d811a6c85418e469a94b9) format("woff2"), url(/fonts/HelveticaNeue-Light.woff?f7f82565854b33b8bdbaf50cc58f10ed) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica-Neue-italic";
  src: url(/fonts/HelveticaNeue-Italic.woff2?b4ccb7be51b1d064fc983a7545f9a85a) format("woff2"), url(/fonts/HelveticaNeue-Italic.woff?614700244cc3cea2c0b21286990f7078) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica-Neue";
  src: url(/fonts/HelveticaNeue.woff2?3c477ba1d02ca5bc49d49e6e8f367edb) format("woff2"), url(/fonts/HelveticaNeue.woff?23b513a0d98d1f887f8dc5b849c50871) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HHelvetica-Neue-thin";
  src: url(/fonts/HelveticaNeue-Thin.woff2?74764d22c7440d640a0d5b9f19a9e0b7) format("woff2"), url(/fonts/HelveticaNeue-Thin.woff?261e4567941a9bfe59eb7143e05b5b6c) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.visibility-hidden {
  opacity: 0;
}

.display-desktop {
  display: block;
}

@media (max-width: 64em) {
  .display-desktop {
    display: none;
  }
}

.display-mobile {
  display: none;
}

@media (max-width: 64em) {
  .display-mobile {
    display: block;
  }
}

.hidden {
  visibility: hidden;
  height: 0;
}

.pointer {
  cursor: pointer;
}

.overflow-hidden {
  overflow: hidden;
}

.hover-opacity {
  transition: opacity 0.3s;
}

.hover-opacity:hover {
  opacity: 0.6;
}

.hover-blue {
  transition: color 0.3s;
}

.hover-blue:hover {
  color: #B2C0D8;
}

.fixed-horizontal {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: -1;
}

@media (max-width: 64em) {
  .fixed-horizontal {
    display: none;
  }
}

.fixed-bottom {
  position: fixed;
  left: 0;
  bottom: 40px;
  z-index: -1;
}

.flex {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.content-start {
  align-content: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-start {
  align-self: flex-start;
}

.direction-column-reverse {
  flex-direction: column-reverse;
}

.height-auto {
  height: auto;
  min-height: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.list-plain {
  list-style: none;
  padding: 0;
}

.list-plain li {
  text-transform: uppercase;
  text-decoration: none;
}

.list-plain li a {
  text-decoration: inherit;
  color: inherit;
}

.text-box p {
  margin-bottom: 12px;
}

.text-box-xl p {
  margin-bottom: 20px;
}

.text-color-base {
  color: var(--text-base-color);
}

.purple-text {
  color: #8586BF;
}

.purple-bg {
  background-color: #8586BF;
}

.purple-bg--light {
  background-color: rgba(133, 134, 191, 0.12);
}

.black-text {
  color: #000000;
}

.black-bg {
  background-color: #000000;
}

.gray-text {
  color: #777777;
}

.gray-bg {
  background-color: #777777;
}

.white-text {
  color: #ffffff;
}

.white-bg {
  background-color: #ffffff;
}

.blue-bg {
  background-color: #B2C0D8;
}

.blue-bg--secondary {
  background-color: #d2dcef;
}

.blue-bg--light {
  background-color: #E7ECF7;
}

.blue-bg--light--light {
  background-color: rgba(178, 192, 216, 0.12);
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.text-color-base {
  color: var(--text-base-color);
}

.text-color-dark {
  color: var(--text-base-dark);
}

.color-gray {
  color: #6E7A82;
}

.bb-2 {
  border-bottom: 2px solid var(--text-base-color);
}

.bl-2 {
  border-left: 2px solid var(--text-base-color);
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.p-5 {
  padding: 5rem;
}

.p-6 {
  padding: 6rem;
}

.p-7 {
  padding: 7rem;
}

.p-8 {
  padding: 8rem;
}

.p-9 {
  padding: 9rem;
}

.p-10 {
  padding: 10rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

.pl-9 {
  padding-left: 9rem;
}

.pl-10 {
  padding-left: 10rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pr-9 {
  padding-right: 9rem;
}

.pr-10 {
  padding-right: 10rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-02 {
  padding-top: 0.2rem;
}

.pt-05 {
  padding-top: 0.5rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-7 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.px-8 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.px-9 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.px-10 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.m-6 {
  margin: 6rem;
}

.m-7 {
  margin: 7rem;
}

.m-8 {
  margin: 8rem;
}

.m-9 {
  margin: 9rem;
}

.m-10 {
  margin: 10rem;
}

.ml-auto {
  margin-left: auto;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.ml-7 {
  margin-left: 7rem;
}

.ml-8 {
  margin-left: 8rem;
}

.ml-9 {
  margin-left: 9rem;
}

.ml-10 {
  margin-left: 10rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mr-10 {
  margin-right: 10rem;
}

.mt-full {
  margin-top: 100vh;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mt-14 {
  margin-top: 14rem;
}

.mt-15 {
  margin-top: 15rem;
}

.mt-100vh {
  margin-top: 100vh;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-6 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-7 {
  margin-left: 7rem;
  margin-right: 7rem;
}

.mx-8 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.mx-9 {
  margin-left: 9rem;
  margin-right: 9rem;
}

.mx-10 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-7 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-8 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-9 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.text-xs {
  font-size: 1.2rem;
  /* 12px */
  line-height: 1.2rem;
  /* 12px */
}

.text-sm {
  font-size: 1.4rem;
  /* 14px */
  line-height: 1.6rem;
  /* 20px */
}

.text-base {
  font-size: 1.6rem;
  /* 16px */
  line-height: 2.4rem;
  /* 24px */
}

.text-lg {
  font-size: 1.8rem;
  /* 18px */
  line-height: 2.8rem;
  /* 28px */
}

.text-xl {
  font-size: 2rem;
  /* 20px */
  line-height: 2.8rem;
  /* 28px */
}

.text-2xl {
  font-size: 2.4rem;
  /* 24px */
  line-height: 3.2rem;
  /* 32px */
}

.text-3xl {
  font-size: 3rem;
  /* 30px */
  line-height: 3.6rem;
  /* 36px */
}

.text-4xl {
  font-size: 3.6rem;
  /* 36px */
  line-height: 4rem;
  /* 40px */
}

.text-5xl {
  font-size: 4.6rem;
  /* 48px */
  line-height: 5.8rem;
}

@media only screen and (max-width: 1024px) {
  .text-5xl {
    font-size: 4rem;
    line-height: 4.5rem;
  }
}

@media (max-width: 37.5em) {
  .text-5xl {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

.text-6xl {
  font-size: 6rem;
  /* 60px */
  line-height: 1;
}

@media (max-width: 37.5em) {
  .text-6xl {
    font-size: 3.4rem;
  }
}

.text-7xl {
  font-size: 7.2rem;
  /* 72px */
  line-height: 1;
}

.text-8xl {
  font-size: 8rem;
  /* 80px */
  line-height: 8rem;
}

@media (max-width: 75em) {
  .text-8xl {
    font-size: 7rem;
  }
}

@media (max-width: 37.5em) {
  .text-8xl {
    font-size: 3.5rem;
  }
}

.text-9xl {
  font-size: 9.6rem;
  /* 96px */
  line-height: 1;
}

.text-10xl {
  font-size: 10rem;
  /* 128px */
  line-height: 1;
}

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

.text-justify {
  text-align: justify;
}

.text-left {
  text-align: left;
}

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

.text-underline {
  text-decoration: underline;
}

.text-nowrap {
  white-space: nowrap;
}

.w-full {
  width: 100%;
  max-width: 100%;
}

.w-1 {
  width: 6.25em;
  flex: 0 0 6.25em;
}

.w-2 {
  width: 12.5em;
  flex: 0 0 12.5em;
}

.w-3 {
  width: 18.75em;
  flex: 0 0 18.75em;
}

.w-4 {
  width: 25rem;
  flex: 0 0 25rem;
}

.w-5 {
  width: 31.25em;
  flex: 0 0 31.25em;
}

.w-6 {
  width: 37.5em;
  flex: 0 0 37.5em;
}

.w-7 {
  width: 43.75em;
  flex: 0 0 43.75em;
}

.w-8 {
  width: 50em;
  flex: 0 0 50em;
}

.w-9 {
  width: 56.25em;
  flex: 0 0 56.25em;
}

.w-10 {
  width: 62.5em;
  flex: 0 0 62.5em;
}

.max-w-1 {
  max-width: 10rem;
}

.max-w-2 {
  max-width: 20rem;
}

.max-w-3 {
  max-width: 30rem;
}

.max-w-4 {
  max-width: 40rem;
}

.max-w-5 {
  max-width: 50rem;
}

.max-w-6 {
  max-width: 60rem;
}

.max-w-7 {
  max-width: 70rem;
}

.max-w-8 {
  max-width: 80rem;
}

.max-w-9 {
  max-width: 90rem;
}

.max-w-10 {
  max-width: 100rem;
}

.max-w-1--5 {
  max-width: 9.37em;
  flex: 0 0 9.37em;
}

.max-w-2--5 {
  max-width: 15.62em;
  flex: 0 0 15.62em;
}

.max-w-3--5 {
  max-width: 21.87em;
  flex: 0 0 21.87em;
}

.max-w-4--5 {
  max-width: 28.12em;
  flex: 0 0 28.12em;
}

.max-w-5--5 {
  max-width: 34.37em;
  flex: 0 0 34.37em;
}

.max-w-6--5 {
  max-width: 40.62em;
  flex: 0 0 40.62em;
}

.max-w-7--5 {
  max-width: 46.87em;
  flex: 0 0 46.87em;
}

.max-w-8--5 {
  max-width: 53.12em;
  flex: 0 0 53.12em;
}

.max-w-9--5 {
  max-width: 59.37em;
  flex: 0 0 59.37em;
}

.max-w-10--5 {
  max-width: 65.62em;
  flex: 0 0 65.62em;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

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

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

/* animations */

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(0px, -7%);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(0px, -8%);
  }
}

.biennale-di-venezia__logo--header {
  width: 18rem;
  padding-left: 1.5rem;
  transition: opacity 0.3s;
}

.biennale-di-venezia__logo--section {
  width: 23rem;
}

.biennial__logo {
  width: 18rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 64em) {
  .biennial__logo {
    width: 18rem;
  }
}

header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  transition: background 0.3s;
  width: 100%;
  z-index: 3;
}

@media (max-width: 64em) {
  header {
    margin-top: 10rem;
  }
}

header.variable__position {
  position: absolute;
}

header .header-logos {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 64em) {
  header .header-logos {
    align-items: center;
  }
}

header .nav--main {
  font-size: 20px;
}

header .nav--main ul li {
  line-height: 2.5rem;
  margin: 0rem 0rem 0rem 50px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

header .nav--main ul li:after {
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  background: #ffffff;
  transition: width 0.4s;
  transition-delay: 0.2s;
}

header .nav--main ul li.active:after {
  width: 100%;
}

header .nav--main ul li:hover:not(.has-parent) {
  opacity: 0.7;
}

header .nav--main .has-child {
  position: relative;
  transition: height 0.3s;
}

header .nav--main .has-child ul li {
  margin: 0.6rem 0;
}

@media (max-width: 75em) {
  header .nav--main .has-child ul li {
    margin: 1.5rem 0rem;
  }
}

header .nav--main .has-parent {
  font-size: 1.8rem;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 25px;
  transition: max-height 0.4s, padding 0.2s, opacity 0.3s;
  transition-delay: 0.1s;
  color: #989898;
  z-index: 3;
  max-height: 0px;
  min-width: 80px;
}

@media (max-width: 75em) {
  header .nav--main .has-parent {
    position: static;
  }
}

header .nav--main .has-parent a:hover {
  opacity: 0.7;
}

header .nav--main .has-child:hover .has-parent {
  max-height: 200px;
  opacity: 1;
  padding-top: 0px;
  visibility: visible;
}

@media (max-width: 64em) {
  header .nav {
    position: fixed;
    top: 4rem;
    right: 0rem;
  }

  header .nav--main {
    display: none;
    position: absolute;
    top: 70px;
    right: 0rem;
    padding: 0 4rem 0 2rem;
  }
}

@media (max-width: 64em) and (max-width: 52.5em) {
  header .nav--main {
    padding-right: 3rem;
  }
}

@media (max-width: 64em) {
  header .nav--main ul {
    display: flex;
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
  }

  header .nav--main ul li {
    margin: 0px 0px 25px 0;
    padding: 0.2rem;
    width: -moz-max-content;
    width: max-content;
  }

  header .nav--main ul .has-parent li {
    margin: 10px 0px 0px 0;
  }
}

@media (max-width: 64em) {
  header .nav-mobile {
    display: block;
    cursor: pointer;
  }

  header .nav-mobile .navicon {
    width: 5rem;
    height: 5rem;
    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 5rem;
    transition: background 0.3s;
  }
}

@media (max-width: 64em) {
  header.is-open .navicon {
    background: #ffffff;
  }
}

.biennial__exhibition {
  padding-top: 8rem;
  width: 100%;
  min-height: calc(100vh - 160px);
  font-size: 20px;
}

@media (max-width: 64em) {
  .biennial__exhibition {
    min-height: calc(100vh - 320px);
  }
}

.biennial__contact {
  width: 100%;
  min-height: calc(100vh - 160px);
  font-size: 20px;
}

@media (max-width: 64em) {
  .biennial__contact {
    min-height: calc(100vh - 380px);
  }
}

.biennial__logo-months {
  width: 55rem;
}

.biennial__logo-months img {
  width: 100%;
}

@media (max-width: 92.5em) {
  .biennial__logo-months {
    padding-right: 4rem;
  }
}

@media (max-width: 64em) {
  .biennial__logo-months {
    max-width: 50rem;
  }
}

@media (max-width: 37.5em) {
  .biennial__logo-months {
    padding-right: 6rem;
    max-width: 40rem;
    width: 40rem;
  }
}

@media (max-width: 30em) {
  .biennial__logo-months {
    padding-right: 6rem;
    max-width: 30rem;
    width: 30rem;
  }
}

.biennial__intro {
  max-width: 85rem;
  padding: 4rem 8rem 4rem 0rem;
}

@media (max-width: 64em) {
  .biennial__exhibition {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .biennial__exhibition .biennial__logo {
    display: block;
    visibility: hidden;
  }

  .biennial__intro,
  .biennial__contact {
    max-width: 62rem;
    padding: 4rem 0rem 4rem 0rem;
  }
}

.biennial__section--last {
  font-size: 4.6rem;
}

@media (max-width: 75em) {
  .biennial__section--last {
    font-size: 2.8rem;
  }
}

@media (max-width: 37.5em) {
  .biennial__section--last {
    font-size: 2.2rem;
  }
}

.stone--half {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 75%;
  transform: translate(0%, -12%);
  background-image: url(/images/bg-stone-half.png?e230320ded81f9e9227b88e1f5acb41b);
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 100%;
  z-index: -1;
  transition: transform 3s;
}

.stone--half.in-view {
  transform: translate(0%, -8%);
}

.stone__text {
  top: 41%;
  right: 0px;
  margin-top: 24%;
  width: 66%;
  margin-bottom: 140px;
}

@media (max-width: 75em) {
  .stone__text {
    width: 56%;
    margin-bottom: 40px;
  }
}

@media (max-width: 75em) {
  .stone__text .italic {
    padding-right: 40px;
  }
}

@media (max-width: 37.5em) {
  .stone__text {
    width: 66%;
    margin-bottom: 40px;
    line-height: 2.4rem;
    font-size: 2rem;
  }

  .stone__text .italic {
    padding-right: 0px;
  }
}

@media (max-width: 30em) {
  .stone__text {
    width: 72%;
    line-height: 2rem;
    font-size: 1.8rem;
  }
}

.stone--full {
  position: relative;
  transform: translate(0%, -19rem);
  z-index: -1;
}

@media (max-width: 64em) {
  .stone--full {
    display: none;
  }
}

.stone--full--mobile {
  display: none;
}

@media (max-width: 64em) {
  .stone--full--mobile {
    transform: translate(0%, 0rem);
    display: block;
  }
}

.about div {
  width: 25%;
  margin-bottom: 14rem;
}

@media (max-width: 64em) {
  .about div {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.about div ul {
  padding-right: 2rem;
  font-size: 2rem;
  font-family: "HHelvetica-Neue-thin";
}

.about div li {
  opacity: 0.9;
}

.about div h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.biennial__news {
  margin: 0 -4rem 0 2.3rem;
}

@media (max-width: 64em) {
  .biennial__news {
    margin: 0rem;
    padding-left: 6.3rem;
  }
}

@media (max-width: 37.5em) {
  .biennial__news {
    margin: 0rem;
    padding-left: 0rem;
  }
}

.biennial__news .article {
  width: 33.33%;
  padding: 0 4rem;
  margin-bottom: 14rem;
}

@media (max-width: 64em) {
  .biennial__news .article {
    width: 100%;
    margin-bottom: 4rem;
    padding: 0rem;
  }
}

.biennial__news .article .description {
  padding-right: 2rem;
  font-size: 2rem;
}

.biennial__news .article h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

@media (max-width: 52.5em) {
  .news__header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.news__images {
  width: 51%;
  padding-right: 6rem;
}

@media (max-width: 52.5em) {
  .news__images {
    width: 100%;
    padding-right: 0rem;
  }
}

.news__title {
  width: 49%;
}

@media (max-width: 52.5em) {
  .news__title {
    width: 100%;
    padding-bottom: 2rem;
  }
}

.contact {
  align-items: center;
  font-size: 2.3rem;
}

@media (max-width: 64em) {
  .contact {
    flex-direction: column;
    justify-content: flex-end;
    padding: 0rem;
    align-items: flex-start;
  }
}

.contact .biennial__location {
  width: auto;
  max-width: 55rem;
  margin-bottom: 40px;
}

@media (max-width: 64em) {
  .contact .biennial__location {
    max-width: 100%;
  }
}

.contact p {
  font-family: "Helvetica-Neue-Light";
  margin: 0px;
}

.img-cover {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
}

footer {
  padding-bottom: 140px;
}

footer .biennial__logos {
  flex-wrap: wrap;
}

footer .biennial__logos--item {
  min-width: 20%;
  max-width: 20%;
}

footer .biennial__logos--item img {
  width: 100%;
}

footer .biennial__logos--item:nth-of-type(1) {
  min-width: 20%;
  max-width: 20%;
}

footer .biennial__logos--item:nth-of-type(1) img {
  max-width: 16rem;
}

footer .biennial__logos--item:nth-of-type(2) {
  min-width: 20%;
  max-width: 20%;
}

footer .biennial__logos--item:nth-of-type(2) img {
  max-width: 36rem;
}

footer .biennial__logos--item:nth-of-type(3) {
  display: flex;
  justify-content: flex-end;
  padding-right: 2%;
  width: 16rem;
  min-width: 20%;
  max-width: 20%;
}

footer .biennial__logos--item:nth-of-type(3) img {
  max-width: 16rem;
}

footer .biennial__logos--item:nth-of-type(4) {
  display: flex;
  justify-content: flex-end;
  width: 16rem;
  min-width: 20%;
  max-width: 20%;
}

footer .biennial__logos--item:nth-of-type(4) img {
  max-width: 22rem;
}

footer .biennial__logos--item:nth-of-type(5) {
  width: 20%;
  padding-left: 5%;
}

footer .biennial__logos--item:nth-of-type(5) img {
  max-width: 22rem;
}

footer .biennial__logos--item:nth-of-type(6) {
  margin-top: 8rem;
  padding-left: 1%;
  width: 20%;
}

footer .biennial__logos--item:nth-of-type(6) img {
  max-width: 14rem;
}

footer .biennial__logos--item:nth-of-type(7) {
  display: flex;
  margin-top: 8rem;
  width: 20%;
}

footer .biennial__logos--item:nth-of-type(7) img {
  max-width: 20rem;
  margin: auto;
}

footer .biennial__logos--item:nth-of-type(8) {
  margin-top: 8rem;
  width: 20%;
}

footer .biennial__logos--item:nth-of-type(8) img {
  max-width: 21rem;
  margin: auto;
}

footer .biennial__logos--item:nth-of-type(9) {
  display: flex;
  justify-content: flex-end;
  margin-top: 8rem;
  width: 20%;
}

footer .biennial__logos--item:nth-of-type(9) img {
  max-width: 21rem;
  margin: auto;
}

footer .biennial__logos--item:nth-of-type(10) {
  display: flex;
  justify-content: flex-end;
  margin-top: 8rem;
  width: 20%;
}

footer .biennial__logos--item:nth-of-type(10) img {
  max-width: 21rem;
  margin: auto;
}

@media (max-width: 75em) {
  footer .biennial__logos--item:nth-of-type(1) {
    min-width: 20%;
    max-width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(1) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(2) {
    display: flex;
    justify-content: center;
    width: 36rem;
    min-width: 20%;
    max-width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(2) img {
    max-width: 36rem;
  }

  footer .biennial__logos--item:nth-of-type(3) {
    display: flex;
    justify-content: flex-end;
    width: 16rem;
    min-width: 20%;
    max-width: 20%;
    padding-right: 2%;
  }

  footer .biennial__logos--item:nth-of-type(3) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(4) {
    display: flex;
    justify-content: flex-end;
    width: 22rem;
    min-width: 20%;
    max-width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(4) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(5) {
    margin-top: 0rem;
    width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(5) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(6) {
    padding-left: 4rem;
    width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(6) img {
    max-width: 14rem;
  }

  footer .biennial__logos--item:nth-of-type(7) {
    display: flex;
    justify-content: center;
    margin-top: 8rem;
    padding-left: 4rem;
    width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(7) img {
    max-width: 20rem;
  }

  footer .biennial__logos--item:nth-of-type(8) {
    margin-top: 8rem;
    padding-left: 4rem;
    width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(8) img {
    max-width: 21rem;
  }

  footer .biennial__logos--item:nth-of-type(9) {
    display: flex;
    justify-content: flex-end;
    margin-top: 8rem;
    width: 20%;
  }

  footer .biennial__logos--item:nth-of-type(9) img {
    max-width: 21rem;
  }
}

@media (max-width: 64em) {
  footer .biennial__logos--item {
    min-width: 33.33%;
    max-width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(1) {
    width: 16rem;
    min-width: 33.33%;
    max-width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(1) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(2) {
    display: flex;
    justify-content: center;
    width: 36rem;
    min-width: 33.33%;
    max-width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(2) img {
    max-width: 36rem;
  }

  footer .biennial__logos--item:nth-of-type(3) {
    display: flex;
    justify-content: flex-end;
    width: 16rem;
    min-width: 33.33%;
    max-width: 33.33%;
    padding-right: 2%;
  }

  footer .biennial__logos--item:nth-of-type(3) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(4) {
    margin-top: 8rem;
    display: flex;
    justify-content: flex-start;
    width: 22rem;
    min-width: 33.33%;
    max-width: 33.33%;
    padding-left: 3%;
  }

  footer .biennial__logos--item:nth-of-type(4) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(5) {
    display: flex;
    justify-content: center;
    margin-top: 8rem;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(5) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(6) {
    display: flex;
    justify-content: center;
    margin-top: 8rem;
    padding-left: 4rem;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(6) img {
    max-width: 14rem;
  }

  footer .biennial__logos--item:nth-of-type(7) {
    display: flex;
    justify-content: flex-start;
    margin-top: 8rem;
    padding-left: 0rem;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(7) img {
    max-width: 20rem;
  }

  footer .biennial__logos--item:nth-of-type(8) {
    margin-top: 8rem;
    padding-left: 4rem;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(8) img {
    max-width: 21rem;
  }

  footer .biennial__logos--item:nth-of-type(9) {
    display: flex;
    justify-content: flex-end;
    margin-top: 8rem;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(9) img {
    max-width: 21rem;
  }

  footer .biennial__logos--item:nth-of-type(10) {
    display: flex;
    justify-content: flex-start;
    width: 33.33%;
  }

  footer .biennial__logos--item:nth-of-type(10) img {
    max-width: 21rem;
    margin: initial;
  }
}

@media (max-width: 37.5em) {
  footer .biennial__logos--item {
    min-width: 100%;
    max-width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(1) {
    margin-top: 8rem;
    width: 16rem;
    min-width: 100%;
    max-width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(1) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(2) {
    margin-top: 8rem;
    display: flex;
    justify-content: flex-start;
    width: 36rem;
    min-width: 100%;
    max-width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(2) img {
    max-width: 36rem;
  }

  footer .biennial__logos--item:nth-of-type(3) {
    margin-top: 8rem;
    display: flex;
    justify-content: flex-start;
    width: 16rem;
    min-width: 100%;
    max-width: 100%;
    padding-right: 2%;
  }

  footer .biennial__logos--item:nth-of-type(3) img {
    max-width: 16rem;
  }

  footer .biennial__logos--item:nth-of-type(4) {
    margin-top: 8rem;
    display: flex;
    justify-content: flex-start;
    width: 22rem;
    min-width: 100%;
    max-width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(4) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(5) {
    display: flex;
    justify-content: flex-start;
    margin-top: 8rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(5) img {
    max-width: 22rem;
  }

  footer .biennial__logos--item:nth-of-type(6) {
    display: flex;
    justify-content: flex-start;
    margin-top: 8rem;
    padding-left: 0rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(6) img {
    max-width: 14rem;
  }

  footer .biennial__logos--item:nth-of-type(7) {
    display: flex;
    justify-content: flex-start;
    margin-top: 4rem;
    padding-left: 0rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(7) img {
    max-width: 20rem;
    margin: inherit;
  }

  footer .biennial__logos--item:nth-of-type(8) {
    margin-top: 2rem;
    padding-left: 0rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(8) img {
    max-width: 21rem;
    margin: inherit;
  }

  footer .biennial__logos--item:nth-of-type(9) {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(9) img {
    max-width: 21rem;
    margin: inherit;
  }

  footer .biennial__logos--item:nth-of-type(10) {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
    width: 100%;
  }

  footer .biennial__logos--item:nth-of-type(10) img {
    max-width: 21rem;
    margin: inherit;
  }
}

.container__main {
  padding-left: 7rem;
  padding-right: 7rem;
}

@media (max-width: 75em) {
  .container__main {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 52.5em) {
  .container__main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.container__video {
  position: relative;
  padding-bottom: 56.25%;
}

.container__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Slider */

.slick-loading .slick-list {
  background: #fff url(/images/ajax-loader.gif?fb6f3c230cb846e25247dfaa1da94d8f) center center no-repeat;
}

/* Icons */

/* Arrows */

.default-slide .slick-prev,
.default-slide .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: -50px;
  display: block;
  width: 50px;
  height: 40px;
  padding: 10px;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.default-slide .slick-prev:hover,
.default-slide .slick-prev:focus,
.default-slide .slick-next:hover,
.default-slide .slick-next:focus {
  outline: none;
  opacity: 0.6;
}

.default-slide .slick-prev:hover:before,
.default-slide .slick-prev:focus:before,
.default-slide .slick-next:hover:before,
.default-slide .slick-next:focus:before {
  opacity: 1;
}

.default-slide .slick-prev.slick-disabled:before,
.default-slide .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.default-slide .slick-prev:before,
.default-slide .slick-next:before {
  font-family: "slick";
  font-size: 14px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.default-slide--silk .slick-prev,
.default-slide--silk .slick-next {
  bottom: -10px;
}

.silk-slide .slick-prev,
.silk-slide .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 70px;
  display: block;
  width: 50px;
  height: 40px;
  padding: 10px;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.silk-slide .slick-prev:hover,
.silk-slide .slick-prev:focus,
.silk-slide .slick-next:hover,
.silk-slide .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.silk-slide .slick-prev:hover:before,
.silk-slide .slick-prev:focus:before,
.silk-slide .slick-next:hover:before,
.silk-slide .slick-next:focus:before {
  opacity: 1;
}

.silk-slide .slick-prev.slick-disabled:before,
.silk-slide .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.silk-slide .slick-prev:before,
.silk-slide .slick-next:before {
  font-family: "slick";
  font-size: 14px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -100px;
}

.slick-prev:before {
  content: "\e901";
}

[dir=rtl] .slick-prev:before {
  content: "\e900";
}

.default-slide .slick-prev {
  left: 1rem;
  background-color: #8586BF;
}

.default-slide .slick-prev:before {
  content: "\e901";
}

[dir=rtl] .default-slide .slick-prev:before {
  content: "\e900";
}

.slick-next {
  left: -50px;
}

.slick-next:before {
  content: "\e900";
}

[dir=rtl] .slick-next:before {
  content: "\e901";
}

.default-slide .slick-next {
  left: 6rem;
  background-color: #8586BF;
}

.default-slide .slick-next:before {
  content: "\e900";
}

[dir=rtl] .default-slide .slick-next:before {
  content: "\e901";
}

.bg-blue__silk-slide .slick-next {
  background-color: #CAD5E8;
}

.bg-silk__silk-slide .slick-next {
  background-color: #8586BF;
}

.bg-blue__silk-slide .slick-prev {
  background-color: #B2C0D8;
}

.bg-silk__silk-slide .slick-prev {
  background-color: #9495CB;
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider.silk-slide {
  width: 120%;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


