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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  overscroll-behavior: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal !important;
}

@font-face {
  font-family: "Aeonik";
  src: url("./assets/Aeonik-Regular_1.woff2") format("woff2"), url("./assets/Aeonik-Regular_1.woff") format("woff"), url("./assets/Aeonik-Regular_1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Aeonik";
  max-height: 100vh;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.25;
  font-size: 16px;
}


.newsletter-popup{
  position: fixed;
  bottom: 100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  width: 450px;
  padding: 20px;
  border: 1px solid black;
  border-radius: 20px;
  z-index: 999;
  background: white;
}
.newsletter-popup.open{
  opacity: 1;
  visibility: visible;
}
.popup-container{
  position: relative;
}
.close-popup{
  position: absolute;
  right: -5px;
  top:-10px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 100px;
  color:black;
  background: white;
  padding: 4px 10px;
  border: 1px solid black;
  z-index: 9;
}
.close-popup:hover{
  color:white;
  background: black;
}

#mc_embed_signup div.response{
  font-weight: normal !important;
  margin-top: 0 !important;
}
#mc_embed_signup .brandingLogo{
  display: none !important;
}
#mc_embed_signup .button{
  background-color: black !important;
  text-transform: uppercase;
  border-radius: 60px !important;
  margin-top: 20px !important;
  padding: 10px 20px !important;
  height: auto !important;
  line-height: normal !important;
  font-family: "Aeonik" !important;
  letter-spacing: 1px !important;
}
#mc_embed_signup .mc-field-group label, #mc_embed_signup h2{
  font-family: "Aeonik" !important;
  font-weight: normal !important;
}
#mc_embed_signup input{
  border: 1px solid black !important;
  border-radius: 0px !important;
  font-family: "Aeonik" !important;
}
#mc_embed_signup input:focus{
  outline: none !important;
}
#mc_embed_signup div#mce-responses{
  margin: 0px !important;
  font-family: "Aeonik" !important;
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
  font-family: "Aeonik" !important;
  margin: 0 !important;
  padding-left: 0 !important;
}

.c-scrollbar {
  display: none;
}

.quote {
  font-size: 30px;
  line-height: 1.25;
}

.inner-wrap {
  padding-top: 15vh;
}

.big-text {
  height: calc(100vh - 20px );
  min-height: calc(100vh - 20px );
  top: 10px;
}

.header-title {
  font-size: 20px;
  text-transform: uppercase;
}

.section-title {
  border-top: 1px solid black;
  height: 150px;
}
.section-title svg {
  height: 130px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: flex;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.section-title {
  font-size: 180px;
  line-height: 130px;
  margin: 0 15px;
  overflow: hidden;
}

.bck-image {
  height: 100vh;
  width: 45vw;
}
.bck-image img {
  height: 100%;
  width: auto;
  min-width: 100%;
  object-fit: cover;
}

.info-content {
  min-width: 800px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 4;
}
.info-content .header-title {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 9px 0px 10px 0px;
}
.info-content .header-title h2 {
  padding-left: 15px;
  line-height: 15px;
}

.splitting .char {
  -webkit-animation: slide-in 1.1s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: slide-in 1.1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-delay: calc(45ms * var(--char-index));
  animation-delay: calc(45ms * var(--char-index));
  transform: translateY(0%);
}

@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
  }
}
@keyframes slide-in {
  from {
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
  }
}
#preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: black;
  color: #ffffff;
}

#preloader .txt {
  position: absolute;
  bottom: 0px;
  left: 20px;
  color: white;
}

#preloader .txt-perc {
  font-size: 15vw;
  font-family: "Aeonik", Helvetica, Arial, sans-serif;
  opacity: 1;
  line-height: 1;
}

#preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.is-loading {
  overflow: hidden;
}

#circle-logo {
  position: absolute;
  mix-blend-mode: difference;
  cursor: pointer;
  top: 20px;
  height: 85px;
  top: 20px;
  left: -10px;
  z-index: 99999;
}

.header {
  position: fixed;
  z-index: 999;
}
.header .mail {
  position: absolute;
  top: 40px;
  line-height: 22px;
  left: 300px;
  background: white;
  border-radius: 80px;
  width: 130px;
  padding: 7px 5px;
  border: 1px solid black;
  text-align: center;
  -webkit-box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
}
.header .mail:hover {
  background: black;
  border-color: white;
}
.header .mail:hover a {
  color: white;
}
.header .mail a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
}

.apply {
  z-index: 999;
  font-size: 20px;
  position: absolute;
  bottom: 40px;
  line-height: 22px;
  left: 600px;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  background: white;
  border-radius: 80px;
  width: 140px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 7px 5px;
  border: 1px solid black;
  text-align: center;
  -webkit-box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.apply:hover {
  background: black;
  border-color: white;
}
.apply:hover button {
  color: white;
}
.apply:hover span {
  color: white;
}
.apply span {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.apply button {
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.apply button:focus {
  outline: none;
}

.main-container {
  display: flex !important;
}

.home-section {
  z-index: 1;
  display: flex;
  background: white;
}
.home-section .home-quote {
  padding-left: 20px;
  width: 500px;
}
.home-section .home-text {
  min-width: 1000px;
  width: 1000px;
}
.home-section .inner-wrap {
  display: flex;
  align-items: center;
}

#pa {
  position: absolute;
  left: 35%;
}

.image-quote {
  z-index: 3;
  position: absolute;
  top: 14vh;
  color: white;
  z-index: 2;
  margin-left: 30px;
  width: 40vw;
}

.about-section {
  display: flex;
  z-index: 3;
  height: 100vh;
}
.about-section .about {
  min-width: 800px;
  background: white;
  z-index: 4;
  display: flex;
  flex-direction: column;
}
.about-section .about .about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-section .about .header-title {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 9px 0px 10px 0px;
}
.about-section .about .header-title h2 {
  padding-left: 15px;
  line-height: 15px;
}
.about-section .about .about-row {
  display: flex;
}
.about-section .about .about-row .about-text {
  width: 60%;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 40px;
}
.about-section .about .about-row .about-img {
  width: 40%;
  padding-top: 15px;
  padding-right: 15px;
}
.about-section .about .about-row .about-img img {
  max-width: 100%;
  height: auto;
  padding-bottom: 15px;
}
.about-section .about .about-row .about-img img:last-child {
  padding-bottom: 5px;
}
.about-section .about .about-row .about-img .caption {
  color: #9D9D9D;
}

.blackAcc {
  background: black;
}

.accordion {
  background: transparent;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding: 0px;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0px;
  max-height: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: max-height 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: max-height 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.panel p {
  padding-bottom: 0px;
  margin: 10px 0;
}
.panel ul, .panel ol {
  margin: 0 0 18.5px 30px;
}
.panel ul li, .panel ol li {
  margin-bottom: 2px;
}

.acc-title:after {
  content: "+";
  line-height: 20px;
  font-size: 25px;
  position: absolute;
  right: 15px;
  top: 4px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.activeA:after {
  content: "-";
}

.who-image {
  z-index: 2;
}
.who-image .bck-image {
  overflow: hidden;
}
.who-image #l {
  position: absolute;
  left: 6%;
  z-index: 2;
}
.who-image .image-quote {
  z-index: 5;
  width: 40vw;
}

.who-section {
  z-index: 3;
}
.who-section .header-title.primary {
  background: white;
  color: black;
}
.who-section .header-title.secondary {
  margin-top: 0px;
  background: black;
  color: white;
  text-align: left;
}
.who-section .info-upper {
  max-height: calc(100% - 150px);
  overflow: scroll;
  padding: 0px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.who-section .info-upper::-webkit-scrollbar {
  display: none;
}
.who-section .accordion-list {
  border-bottom: 1px solid black;
}
.who-section .accordion-list .accordion:first-child {
  border-color: white;
}
.who-section .on-site-team {
  margin-bottom: 30px;
}
.who-section .on-site-team li {
  font-size: 20px;
  margin-bottom: 5px;
  margin-left: 15px;
}
.who-section .accordion {
  border-top: 1px solid black;
}
.who-section .accordion .acc-title {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
}
.who-section .accordion .name {
  width: 40%;
}
.who-section .accordion .role {
  width: 60%;
}
.who-section .accordion .name, .who-section .accordion .role {
  padding-left: 15px;
  font-size: 20px;
  pointer-events: none;
}
.who-section .accordion .role {
  color: #9D9D9D;
  margin-left: 15px;
  font-size: 16px;
}
.who-section .panel {
  display: flex;
}
.who-section .panel .panel-img {
  margin: 15px;
  margin-top: 0px;
  width: 50%;
}
.who-section .panel .panel-img img {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
}
.who-section .panel .panel-text {
  width: 50%;
  margin: 15px;
  margin-top: 0px;
  padding-top: 5px;
}

#who-list .border-top{
  height: 1px;
  background: black;
  width:100%;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top:0px;
}

#who-list #members a:nth-child(3) {
  border-bottom: none !important;
}
#who-list .block {
  font-size: 20px;
  padding: 0px 15px;
}
#who-list .block .block__link_who {
  padding: 8px 0px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid;
}
#who-list .block .block__link_who:last-child {
  border-bottom: none;
}
#who-list .block .block__link_who .name {
  font-size: 20px;
  width: 40%;
}
#who-list .block .block__link_who .role {
  font-size: 20px;
  width: 60%;
  color: #9D9D9D;
}
#who-list .on-site-team a {
  padding: 10px 0px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid black;
}
#who-list .hover-reveal {
  position: fixed;
  width: 250px;
  height: 200px;
  top: 0;
  right: 15px !important;
  left: unset !important;
  pointer-events: none;
  opacity: 0;
}

.palazzo-image {
  z-index: 3;
}
.palazzo-image #a {
  position: absolute;
  left: -8%;
}

.palazzo-text {
  color: white;
  z-index: 3;
}
.palazzo-text .info-content {
  background: black;
  width: 920px !important;
}
.palazzo-text .info-content .header-title {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.palazzo-text #palazzo-tit {
  margin-right: 0px;
}

#z {
  position: absolute;
  left: 15px;
}

.palazzo-letter #z {
  z-index: -1;
  position: relative;
  top: 10px;
}

.loghi-press {
  margin-top: 15px;
}
.loghi-press ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.loghi-press ul li {
  padding: 15px;
  padding-top: 0px;
}
.loghi-press ul li img {
  width: 150px;
}

.bubble.is-inview {
  opacity: 1;
}

.bubble {
  opacity: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  background: white;
  border: 1px solid black;
  color: black;
  z-index: 999;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  -webkit-box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  overflow-y: scroll;
}
.bubble .bubble-content {
  position: relative;
}
.bubble .bubble-content p {
  line-height: 1.25;
}
.bubble .bubble-link {
  margin-top: 15px;
}
.bubble a {
  text-transform: uppercase;
  text-decoration: underline;
  color: black;
  font-size: 16px;
}
.bubble .bubble-image {
  width: 100%;
}
.bubble .bubble-image img {
  max-width: 50%;
}

#bubble-1 {
  width: 350px;
  height: 350px;
  top: 29vh;
  left: 100px;
  font-size: 18px;
}

#bubble-2 {
  width: 280px;
  height: 280px;
  top: 22vh;
  left: 450px;
  font-size: 16px;
}

#bubble-3 {
  width: 250px;
  height: 250px;
  top: 50vh;
  left: 800px;
  font-size: 15px;
}

#bubble-4 {
  width: 280px;
  height: 280px;
  top: 13vh;
  left: 1100px;
  font-size: 16px;
}

#bubble-5 {
  width: 230px;
  height: 230px;
  top: 58vh;
  left: 1150px;
  font-size: 16px;
}

#bubble-6 {
  width: 250px;
  height: 250px;
  top: 8vh;
  left: 781px;
  font-size: 15px;
}
#bubble-7 {
  width: 250px;
  height: 250px;
  top: 61vh;
  left: 565px;
  font-size: 14px;
}

.community-section .info-upper {
  max-height: calc(100% - 150px);
  min-height: calc(100% - 150px);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.community-section .info-upper::-webkit-scrollbar {
  display: none;
}
.community-section .info-content {
  padding-left: 15px;
  padding-right: 15px;
  min-width: 600px;
  min-width: 600px;
}
.community-section .info-content h2 {
  padding-left: 0px;
}
.community-section .info-content .header-title {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0px;
  background: white;
}
.community-section .info-container {
  font-size: 30px;
}
.community-section #artists-tit {
  min-height: 150px;
  margin-right: 0px;
}
.community-section .section-title {
  margin-left: 0px;
}

.artist-list-wrap{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.artist-list-wrap li{
  padding: 0px;
}

.info-container span {
  position: relative;
}
.info-container span:hover img {
  -webkit-animation: scale-up-left 0.15s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-left 0.15s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.info-container span img {
  opacity: 0;
  position: absolute;
  top: -10px;
  left: 70%;
  height: 120px;
  width: 120px;
  z-index: 8;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 35px;
  z-index: -1;
}

.block__link {
  cursor: pointer;
}

.hover-reveal {
  position: fixed;
  width: 200px;
  height: 150px;
  top: 0;
  z-index: 99999;
  right: 15px !important;
  left: unset !important;
  pointer-events: none;
  opacity: 0;
}

.hover-reveal__inner,
.hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hover-reveal__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #181314;
}

.hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
}

.community-image {
  z-index: -1;
}
.community-image #z {
  left: -20%;
}

.palazzo-letter-two {
  z-index: -2;
}
.palazzo-letter-two .bck-image {
  width: 45vw;
}
.palazzo-letter-two #oo {
  position: absolute;
  left: -16%;
}

.curators-section {
  color: white;
}
.curators-section h2 {
  color: white;
}
.curators-section .header-title {
  border-color: white;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0px;
  background: black;
}
.curators-section .header-title h2 {
  padding-left: 0px;
}
.curators-section .info-content {
  background: black;
}
.curators-section .info-upper {
  padding: 15px;
  padding-top: 0px;
  overflow-y: scroll;
}
#curators-tit{
  min-height: 150px;
}
.curators-section .info-container .curator-quote {
  padding-top: 10px;
  font-size: 30px;
  margin-bottom: 40px;
}
.curators-section .info-container .single-curator {
  display: flex;
  min-height: 100px;
}
.curators-section .info-container .single-curator:last-child .curator-title, .curators-section .info-container .single-curator:last-child .curator-info {
  border-bottom: 1px solid white;
}
.curators-section .info-container .single-curator .curator-title {
  flex: 1;
  border-top: 1px solid white;
  padding-top: 5px;
  margin-right: 15px;
  padding-bottom: 20px;
}
.curators-section .info-container .single-curator .curator-title h3, .curators-section .info-container .single-curator .curator-title h4 {
  font-size: 20px;
}
.curators-section .info-container .single-curator .curator-title h4 {
  color: #9D9D9D;
}
.curators-section .info-container .single-curator .curator-info {
  flex: 1;
  border-top: 1px solid white;
  padding: 5px 0px 20px 0px;
}
.curators-section .info-container .single-curator .curator-info a {
  color: white;
}

.curators-letter .bck-image {
  width: 45vw;
}
.curators-letter #m {
  position: absolute;
  left: 15px;
}

.supporters-section {
  color: white;
}
.supporters-section h2 {
  color: white;
}
.supporters-section .header-title {
  border-color: white;
}
.supporters-section .header-title h2 {
  padding-left: 0px;
}
.supporters-section .info-content {
  background: black;
  min-width: 600px;
  padding-left: 15px;
  padding-right: 15px;
}
.supporters-section .support {
  padding-top: 10px;
  font-size: 20px;
}
.supporters-section .support a {
  text-decoration: none;
  color: white;
}
.supporters-section .info-container.support {
  min-height: 20vh;
}
.supporters-section .collab-images {
  margin-top: 30px;
  display: flex;
}
.supporters-section .collab-images ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.supporters-section .collab-images li{
padding-bottom: 30px;
}
.supporters-section .collab-images img {
  max-width: 150px;
  padding: 0px 10px;
}

.support-letter #o {
  position: absolute;
  left: 15px;
}
.support-letter .bck-image {
  width: 400px;
}

.our-community-section {
  z-index: 3;
  opacity: 1 !important;
}
.our-community-section .info-content {
  min-width: unset;
  width: unset;
  background: white;
  border-left: 1px solid black;
}
.our-community-section .info-upper {
  min-height: 100%;
}
.our-community-section .info-container {
  display: flex;
  height: 100%;
}
.our-community-section .info-container .left-col {
  width: 400px;
  height: 85vh;
  padding-left: 15px;
  background: white;
  z-index: 10;
}
.our-community-section .info-container .left-col .title-bottom {
  position: absolute;
  bottom: 0px;
  width: calc( 100vw - 30px );
}
.our-community-section .info-container .left-col .title-bottom .section-title {
  margin-left: 0px;
}
.our-community-section .info-container .left-col .col-content {
  padding-left: 0px;
  padding-top: 10px;
  padding-right: 15px;
  height: calc( 100% - 185px );
  -webkit-box-shadow: 12px 1px 31px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 12px 1px 31px -20px rgba(0, 0, 0, 0.2);
}
.our-community-section .info-container .left-col .col-content a {
  color: black;
}
.our-community-section .info-container .left-col .col-content .callTo {
  margin-top: 30px;
}
.our-community-section .info-container .left-col .col-content .callTo a {
  color: black;
}
.our-community-section .info-container .left-col .col-content .caption-show {
  border-top: 1px solid #9D9D9D;
  margin-top: 30%;
  color: #9D9D9D;
}
.our-community-section .info-container .left-col .header-title h2 {
  padding-left: 0px;
}
.our-community-section .info-container .image-slider {
  width: 100%;
  display: inline-flex;
  align-items: flex-start;
  height: calc(100% - 150px);
}
.our-community-section .info-container .image-slider .slider {
  display: flex;
  height: calc(85vh - 150px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.our-community-section .info-container .image-slider .slider .slider-image {
  position: relative;
}
.our-community-section .info-container .image-slider .slider .slider-image span {
  position: absolute;
  bottom: 15px;
  left: 30px;
  color: white;
  mix-blend-mode: difference;
}
.our-community-section .info-container .image-slider .slider img {
  height: 100%;
  width: 1200px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 15px;
}

.support-two-letter .section-title {
  position: absolute;
  bottom: 0px;
  background: white;
  width: 100%;
  margin-left: 0px;
}
.support-two-letter .big-text {
  position: absolute;
  right: 3%;
}

.support-final-section {
  background: black;
  color: white;
}
.donate-btn a{
  border: 1px solid white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 20px;
  padding: 7px 20px;
}

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

.donate-btn a:hover{
  background: white;
  color:black !important;
}

.support-final-section h2 {
  color: white;
}
.support-final-section .header-title {
  border-color: white;
}
.support-final-section .header-title h2 {
  padding-left: 0px;
}
.support-final-section .info-content {
  background: black;
  min-width: unset;
  width: 800px;
}
.support-final-section .info-content.friend {
  width: 600px;
  min-width: unset;
  display: flex;
  position: relative;
  flex-direction: row;
  left: -61vh;
}
.support-final-section .info-content.friend .big-text {
  position: absolute;
  right: -16vh;
}
.support-final-section .info-upper {
  padding: 15px;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.support-final-section .info-upper .header-title {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top:0px;
  background: black;
}

.support-final-section .supp-quote {
  font-size: 30px;
  padding-top: 10px;
}

.support-final-section .supp-quote a {
  color:white;
}
.support-final-section .supp-quote p{
  margin-bottom: 10px;
}

.support-final-section .letterT {
  z-index: 9;
  pointer-events: none;
}

.support-final-section .letterT .big-text {
  position: relative;
  left: -40%;
}
.support-final-section .credits {
  position: absolute;
  right: 20vh;
  bottom: 20px;
}
.support-final-section .credits a {
  color: white;
}
.support-final-section .backTo {
  margin-bottom: 0px;
  text-transform: uppercase;
  height: 150px;
  width: 150px;
  background: white;
  border: 2px solid black;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.support-final-section .backTo svg {
  fill: black;
  width: 70px;
}
.support-final-section .backTo:hover {
  background: black;
  border: 2px solid white;
}
.support-final-section .backTo:hover svg {
  fill: white;
}
.support-final-section .collab {
  margin-top: 5px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.support-final-section .collab a {
  color: white;
}
.support-final-section .collab .credit-footer {
  font-size: 13px;
  color: #9D9D9D;
}
.support-final-section .collab .credit-footer a {
  color: #9D9D9D;
}

.friend {
  z-index: 10;
  background: transparent !important;
}

#friendlist {
  cursor: grab;
}

#sidePanel {
  width: 500px;
  height: calc( 100vh - 70px );
  background: white;
  border: 1px solid black;
  position: fixed;
  top: 20px;
  border-radius: 30px;
  left: -100%;
  -o-transition: left 0.7s ease;
  transition: left 0.7s ease;
  -webkit-transition: left 0.7s ease;
  z-index: 999999;
  padding: 15px;
  text-align: center;
  -webkit-box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
  box-shadow: 0 30px 84.39px 2.61px rgba(0, 0, 0, 0.14);
}
#sidePanel #close-btn {
  height: 15px;
  width: 15px;
  position: absolute;
  right: 20px;
  top: 13px;
  border: 1px solid black;
  padding: 15px;
  border-radius: 30px;
  background: white;
  cursor: pointer;
  z-index: 2;
}
#sidePanel #close-btn:hover {
  background: black;
  fill: white;
}

#sidePanel.open {
  left: 15px;
}

#nf-form-1-cont h3 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: left;
}
#nf-form-1-cont .nf-field-label label {
  font-family: "Aeonik" !important;
  font-size: 20px;
  font-weight: normal !important;
}
#nf-form-1-cont textarea {
  background: white !important;
  border: 1px solid black !important;
  color: black !important;
  font-family: "Aeonik" !important;
  font-size: 20px;
}
#nf-form-1-cont textarea::placeholder {
  font-family: "Aeonik" !important;
}
#nf-form-1-cont .nf-form-content {
  max-width: 100% !important;
  padding: 0px !important;
}
#nf-form-1-cont .nf-form-content .label-above .nf-field-label {
  margin-bottom: 5px !important;
}
#nf-form-1-cont .nf-form-content input:not([type=button]) {
  background: white !important;
  border: 1px solid black !important;
  color: black !important;
  font-family: "Aeonik" !important;
  font-size: 20px;
}
#nf-form-1-cont .nf-form-content input:not([type=button])::placeholder {
  font-family: "Aeonik" !important;
}
#nf-form-1-cont .nf-form-content input[type=button] {
  background: black;
  width: 150px;
  border-radius: 50px;
  border: 1px solid black;
  font-size: 20px;
  padding: 5px;
  height: 40px;
  font-family: "Aeonik" !important;
  transition: none !important;
}
#nf-form-1-cont .nf-form-content input[type=button]:hover {
  color: black;
  background: white;
}

.nf-error-msg, .ninja-forms-req-symbol {
  color: black !important;
  text-align: left;
}

.nf-form-fields-required {
  display: none;
}

.nf-error.field-wrap .nf-field-element:after {
  background: black !important;
  transition: none !important;
  font-size: 15px;
  top: 6px;
  right: 7px;
  bottom: 1px;
  height: 39px;
  width: 39px;
  line-height: 42px;
  text-align: center;
}

.nf-error-msg {
  font-size: 16px !important;
}

.nf-pass.field-wrap .nf-field-element:after {
  color: black !important;
}

.nf-response-msg {
  position: absolute;
  top: 45%;
  margin: 0 auto;
  text-align: center;
  width: 500px;
  left: 15px;
  font-size: 20px;
}

.mobile-version {
  display: none;
}

.desktop-version {
  display: block;
}

.mobile {
  display: none;
}

.desktop {
  display: flex;
}


#policy{
  background-image: none !important;
  background: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: underline !important;
  color: white !important;
  font-weight: normal !important;
  font-family: "Aeonik", sans-serif !important;
  font-size: 16px !important;
}

@media only screen and (max-width: 1024px) {

  /* newsletter popup  */
  .newsletter-popup{
    width:90vw;
    left: 5vw;
    box-sizing: border-box;
  }

  .donate-btn{
    margin: 0px;
    padding-bottom: 60px;
    border-bottom: 1px solid white;
  }

  .mobile-version {
    display: block;
  }

  .mobile {
    display: flex;
  }

  .desktop {
    display: none !important;
  }

  .is-loading {
    overflow: hidden !important;
  }

  .quote, .block, .curator-quote, .support-final-section h2,  {
    font-size: 25px !important;
  }
  .quote *, .curator-quote *{
    font-size: 25px !important;
  }
  .quote{
      font-size: 25px !important;
  }

  .support-final-section .supp-quote{
    font-size: 25px;
  }

  .support-final-section h2 {
    color: white;
    padding-top: 0px;
    padding-bottom: 30px;
  }


  .support-final-section .supp-quote {
    padding-top: 15px;
  }

  section {
    max-width: 100vw !important;
    overflow: hidden;
    margin-top: -2px;
  }

  .desktop-version {
    display: none;
  }

  #preloader .txt {
    bottom: 15px;
    left: 15px;
  }
  #preloader .txt .txt-perc {
    font-size: 80px;
  }

  body {
    overflow-y: scroll !important;
    overflow-x: hidden;
  }

  .big-text {
    display: none;
  }

  .title-bottom {
    position: relative !important;
  }

  #circle-logo {
    position: fixed;
    height: 65px;
    top: 15px;
    left: -20px;
  }

  .section-title {
    font-size: 60px;
    line-height: 60px;
    height: 60px;
    margin: 0px 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    overflow: hidden;
    border-top: none;
    border-bottom: 1px solid;
  }

  #who-tit {
    border: none;
  }

  #show-tit {
    margin: 0px;
  }

  #support-tit {
    padding-bottom: 15px;
  }

  .palazzo-text #palazzo-tit {
    margin-right: 15px;
  }

  .community-section #artists-tit {
    min-height: 60px;
    margin-right: 0px;
  }

  .info-content {
    min-width: 100%;
    flex-direction: column-reverse;
  }

  .header-title {
    display: none;
  }

  .header-title.secondary {
    display: flex;
    font-size: 16px;
  }

  .bck-image {
    height: 90vh;
    width: auto;
    position: relative;
    overflow: hidden;
  }

  .header .mail {
    top: 15px;
    left: calc(100vw - 140px);
    width: 115px;
  }
  .header .mail a {
    font-size: 16px;
    text-transform: none;
    text-transform: uppercase;
  }

  .apply {
    left: 15px;
    position: fixed;
    bottom: 15px;
    width: 130px;
  }
  .apply button {
    font-size: 16px;
  }

  .image-quote {
    top: 30px;
    margin-left: 15px;
    width: calc(100% - 30px);
  }

  .about-section .about .about-content {
    flex-direction: column-reverse;
  }

  .palazzo-letter-two .bck-image {
    display: none;
  }

  .palazzo-text .info-content {
    background: black;
    width: 100% !important;
  }

  .palazzo-text .info-container {
    position: relative;
    height: calc(100vw + 70px);
  }

  .bubble {
    position: relative !important;
    height: 100vw !important;
    top: 30px !important;
    left: 0px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    font-size: 16px !important;
    bottom: unset !important;
  }

  .palazzo-image, .community-image, .curators-letter {
    position: relative;
  }


  .home-section .bck-image, .who-image {
    position: relative;
  }


  .community-section .info-content {
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
    min-width: unset;
  }
  .community-section .info-content #artists-tit {
    padding-left: 15px;
    padding-right: 15px;
  }

  .support-letter .bck-image {
    display: none;
  }

  .support-two-letter {
    display: none;
  }

  .inner-wrap {
    padding-top: 0px;
    border-left: none !important;
  }

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

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

  .home-section .home-text {
    min-width: 100%;
    width: 100%;
  }

  .home-section .home-quote {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    height: 101vh;
    display: flex;
    align-items: center;
  }

  .about-section {
    height: auto;
  }

  .about-section .about {
    width: auto;
    min-width: unset;
  }
  .about-section .about .about-row {
    flex-direction: column;
  }
  .about-section .about .about-row .about-text {
    width: auto;
    padding: 15px;
  }
  .about-section .about .about-row .about-img {
    width: auto;
    padding: 15px;
    padding-bottom: 30px;
  }

  .supporters-section .header-title {
    display: flex;
    border-top: none;
  }
  .supporters-section .info-upper {
    padding-top: 15px;
  }
  .supporters-section .collab-images {
    margin-top: 30px;
  }
  .supporters-section .collab-images img {
    padding: 0px 15px;
  }
  .collab-images .slick-list{
    width:100vw;
  }
  .collab-images .slick-list ul{
    flex-wrap: unset;
    width: 100vw !important;
  }

  .supporters-section .info-content {
    background: black;
    width: auto;
    min-width: unset;
    height: 50vh;
    display: flex;
    justify-content: flex-end;
    padding-left: 15px;
    padding-right: 15px;
  }

  .curators-letter .bck-image {
    width: 100vw;
  }

  .support-final-section .info-content {
    background: black;
    min-width: unset;
    width: auto;
  }

  .support-final-section .info-content.friend {
    width: auto;
    left: 0px;
  }

  .support-final-section .info-upper {
    padding: 0px;
    padding-top: 0px;
  }

  .support-final-section .credits {
    position: relative;
    right: unset;
    bottom: unset;
  }

  canvas {
    touch-action: pan-y;
  }

  .supp-quote {
    padding: 0px 15px;
  }

  .support-final-section .collab {
    margin-top: 5px;
    line-height: 1.5;
    padding-top: 5px;
    margin: 0px 15px;
    margin-top: 15px;
    border-top: 1px solid;
    display: flex;
    flex-direction: column;
    height: 150px;
  }

  .who-section .accordion .name {
    width: 100%;
  }

  .who-section .accordion .acc-title {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .accordion-list {
    margin: 0px 15px;
    border-bottom: none !important;
  }
  .accordion-list .accordion {
    width: unset;
  }
  .accordion-list .accordion .name {
    padding-left: 0px;
  }

  .acc-title:after {
    right: 5px;
  }

  .panel {
    flex-direction: column;
  }
  .panel .role {
    padding-left: 0px;
    color: #9D9D9D;
  }
  .panel .panel-img {
    width: 100% !important;
    margin: 0px !important;
  }
  .panel .panel-img img {
    width: 100%;
  }

  .acc-title:after {
    top: 9px;
    font-size: 20px;
  }

  .on-site-team li {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .curators-section .info-container .curator-quote {
    padding-top: 15px;
    margin-bottom: 30px;
  }

  .curators-section .info-container .single-curator {
    display: flex;
    flex-direction: column;
  }

  .curators-section .info-container .single-curator .curator-info {
    flex: 1;
    border-top: none;
    padding: 5px 0px 20px 0px;
  }

  .curators-section .info-container .single-curator .curator-title {
    padding-top: 10px;
    margin-right: 0px;
  }

  .curators-section .info-container .single-curator:last-child .curator-title, .curators-section .info-container .single-curator:last-child .curator-info {
    border-bottom: none;
  }

  .our-community-section .info-container {
    flex-direction: column;
    padding-bottom: 15px;
  }

  .our-community-section .info-container .left-col {
    flex-direction: column-reverse;
    display: flex;
    width: auto;
    height: auto;
  }
  .our-community-section .info-container .left-col .col-content {
    height: auto;
    margin-bottom: 30px;
    padding-top: 15px;
  }

  #slider-mobile {
    max-width: 100vw;
    width:100vw;
    padding: 0px 15px;
    margin-bottom: 20px;
    position: relative;
  }
  #slider-mobile img {
    max-width: 100%;
    min-width: 100%;
    max-height: 250px;
    height: 250px;
    object-fit: cover;
  }
  #slider-mobile .slide-cont {
    position: relative;
  }
  #slider-mobile .slide-cont .slider-caption {
    color: #9D9D9D;
    max-width: 90%;
    padding-top: 5px;
  }

  #artists-tit {
    border-bottom: none;
  }

  .marquee3k__wrapper {
    white-space: nowrap !important;
  }

  .marquee3k {
    border-top: 1px solid;
  }
  .marquee3k ul {
    display: flex;
    flex-wrap: nowrap;
  }
  .marquee3k ul li {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 10px 20px;
    font-size: 25px;
  }

  #artist-marquee {
    flex-direction: column;
    overflow-x: hidden;
  }

  canvas {
    pointer-events: none;
  }

  .credits {
    padding: 0px;
    padding-bottom: 70px;
    color: #9D9D9D;
  }
  .credits a {
    color: #9D9D9D;
  }
  .credits .backTo {
    margin-bottom: 0px;
    height: 50px;
    width: 50px;
    position: absolute;
    right: 15px;
    bottom: 15px;
  }
  .credits .backTo svg {
    height: 37px;
  }
}

/*# sourceMappingURL=style.css.map */
