/* 
---
== Global Rules
---
= @_0ff
*/
/* 
---
== Variable System
---
1. Import Function
2. Font Rules
3. Colors
---
= @_0ff
*/
/* === FUNCTION === */
/* 
---
== Style Function System
---
1. Convertitore da px a rem
2. Clamp generator
---
= @_0ff
*/
/* === Font/Text Function === */
/* === FONT SISTEM === */
@font-face {
  font-family: "GothamRounded-Bold";
  src: url("/asset/font/GothamRnd-Bold.woff") format("woff"), url("/asset/font/GothamRnd-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Medium";
  src: url("/asset/font/GothamRnd-Medium.woff") format("woff"), url("/asset/font/GothamRnd-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Book";
  src: url("/asset/font/GothamRnd-Book.woff") format("woff"), url("/asset/font/GothamRnd-Book.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Light";
  src: url("/asset/font/GothamRnd-Light.woff") format("woff"), url("/asset/font/GothamRnd-Light.woff2") format("woff2");
}
/* = Font Size = */
/* === COLOR SISTEM === */
/* == Rules */
.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  overflow: hidden;
}

.title_container {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
}

.eventCard {
  cursor: pointer;
  background-color: #fff;
  border-radius: 40px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eventCard .image_wrapper img {
  width: 100%;
  border-radius: 32px;
}
.eventCard .info_container {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  margin: 0 20px;
  margin-bottom: 20px;
}
.eventCard .info_container .mainInfo_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eventCard .info_container .mainInfo_wrapper h3 span {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  display: block;
  font-family: "GothamRounded-Light", sans-serif;
}
.eventCard .info_container .mainInfo_wrapper p {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.eventCard .info_container .locationInfo {
  display: flex;
  padding-bottom: 12px;
  border-bottom: dashed 1px #000817;
  gap: 8px;
}
.eventCard .info_container .locationInfo svg {
  width: 20px;
}
.eventCard .info_container .locationInfo svg > path:first-child {
  stroke: #000817;
}
.eventCard .info_container .locationInfo svg > path:last-child {
  stroke: #000817;
}
.eventCard .info_container .locationInfo p {
  margin: 0;
}

.overlay {
  position: absolute;
}
.overlay.gradient.white {
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.overlay.gradient.white.right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.overlay.gradient.white.left {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.overlay.gradient.blue {
  background: #000817;
  background: linear-gradient(180deg, rgba(0, 8, 23, 0) 0%, rgb(0, 8, 23) 100%);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 !important;
}

body {
  overflow-x: hidden;
  background-color: #000817;
  margin: 0;
}

/* 
---
== Font System
== Gerarchia Font
---
1. Import Variables
2. Global Text Rules
4. Color
= @_0ff
*/
/* 
---
== Variable System
---
1. Import Function
2. Font Rules
3. Colors
---
= @_0ff
*/
/* === FUNCTION === */
/* 
---
== Style Function System
---
1. Convertitore da px a rem
2. Clamp generator
---
= @_0ff
*/
/* === Font/Text Function === */
/* === FONT SISTEM === */
@font-face {
  font-family: "GothamRounded-Bold";
  src: url("/asset/font/GothamRnd-Bold.woff") format("woff"), url("/asset/font/GothamRnd-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Medium";
  src: url("/asset/font/GothamRnd-Medium.woff") format("woff"), url("/asset/font/GothamRnd-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Book";
  src: url("/asset/font/GothamRnd-Book.woff") format("woff"), url("/asset/font/GothamRnd-Book.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Light";
  src: url("/asset/font/GothamRnd-Light.woff") format("woff"), url("/asset/font/GothamRnd-Light.woff2") format("woff2");
}
/* = Font Size = */
/* === COLOR SISTEM === */
/* == GLOBAL TEXT RULES == */
h2 {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-family: "GothamRounded-Bold", sans-serif;
  line-height: 1;
}
h2.title {
  font-size: clamp(2.5rem, 2.35rem + 0.75vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-family: "GothamRounded-Medium", sans-serif;
  line-height: 1.25;
}

p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  font-family: "GothamRounded-Book", sans-serif;
  line-height: 1.618;
  margin: 0;
}
p.headings {
  font-size: clamp(2.5rem, 2.35rem + 0.75vw, 3.25rem);
  line-height: 1;
}
p.headings strong {
  font-family: "GothamRounded-Medium", sans-serif;
}
p.bigText {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
}

a {
  text-decoration: none;
  font-family: "GothamRounded-Book", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  line-height: 1.618;
  width: -moz-fit-content;
  width: fit-content;
}

button, .button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 28px;
}
button.text, .button.text {
  font-family: "GothamRounded-Book", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  line-height: 1.618;
}
button.text.bianco, .button.text.bianco {
  background-color: #000817;
}
button.text.notte, .button.text.notte {
  background-color: #fff;
}

.bianco {
  color: #fff;
}

.notte {
  color: #000817;
}

/* 
---
== Header Rules
---
= @_0ff
*/
/* 
---
== Variable System
---
1. Import Function
2. Font Rules
3. Colors
---
= @_0ff
*/
/* === FUNCTION === */
/* 
---
== Style Function System
---
1. Convertitore da px a rem
2. Clamp generator
---
= @_0ff
*/
/* === Font/Text Function === */
/* === FONT SISTEM === */
@font-face {
  font-family: "GothamRounded-Bold";
  src: url("/asset/font/GothamRnd-Bold.woff") format("woff"), url("/asset/font/GothamRnd-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Medium";
  src: url("/asset/font/GothamRnd-Medium.woff") format("woff"), url("/asset/font/GothamRnd-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Book";
  src: url("/asset/font/GothamRnd-Book.woff") format("woff"), url("/asset/font/GothamRnd-Book.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Light";
  src: url("/asset/font/GothamRnd-Light.woff") format("woff"), url("/asset/font/GothamRnd-Light.woff2") format("woff2");
}
/* = Font Size = */
/* === COLOR SISTEM === */
header {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding-left: 10vw;
  padding-right: 10vw;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  min-width: 100vw;
  z-index: 999;
  height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 690px) {
  header {
    height: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header #luna svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  filter: drop-shadow(0 0 12px #fff);
}
header #menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
header #menu .divider {
  height: 100%;
  width: 2px;
  border-radius: 2px;
  background-color: #fff;
}
header #menu .menu-item {
  color: #fff;
  font-family: "GothamRounded-Book", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 690px) {
  header #menu .menu-item {
    font-size: 0.75rem !important;
    text-align: center;
    max-width: 33%;
    display: flex;
    align-items: center;
  }
}

footer {
  padding-bottom: 0 !important;
  background-color: #000817;
}
footer .main {
  max-width: 85vw;
  margin: auto;
  border-top: dashed 1px #fff;
}
footer .main .footer_container {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 999px) {
  footer .main .footer_container {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
footer .main .footer_container .contact_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .main .footer_container .contact_wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .main .footer_container .contact_wrapper > div .social_wrapper {
  gap: 12px;
}
footer .main .footer_container .contact_wrapper > div .social_wrapper .linea {
  width: 466px;
  margin: 8px 0;
  border-top: dashed 1px #fff;
}
@media (max-width: 999px) {
  footer .main .footer_container .contact_wrapper > div .social_wrapper .linea {
    width: 100%;
  }
}
footer .main .footer_container .contact_wrapper > div .social_wrapper > div a {
  display: block;
}
footer .main .footer_container .mapSite_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
footer .main .footer_container .mapSite_wrapper > div {
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  footer .main .footer_container .mapSite_wrapper > div {
    justify-content: space-between;
    width: 100%;
  }
}
footer .main .footer_container .mapSite_wrapper > div .bianco {
  display: inline-block;
  border: 1px dashed rgba(255, 255, 255, 0.4392156863);
  line-height: 1;
  border-radius: 10px;
  padding: 4px 12px;
}
@media (max-width: 999px) {
  footer .main .footer_container .mapSite_wrapper > div .bianco {
    text-align: center;
  }
}
footer .main .footer_container .mapSite_wrapper button {
  margin-top: 20px;
  width: 100% !important;
}
footer .copyright {
  background-color: #fff;
  padding: 12px 0;
}
footer .copyright p {
  text-align: center;
  font-size: 12px;
}

/* 
---
== Section Rules
---
1. Import
2. Global Section
3. Specific Section
---
= @_0ff
*/
/* 
---
== Variable System
---
1. Import Function
2. Font Rules
3. Colors
---
= @_0ff
*/
/* === FUNCTION === */
/* 
---
== Style Function System
---
1. Convertitore da px a rem
2. Clamp generator
---
= @_0ff
*/
/* === Font/Text Function === */
/* === FONT SISTEM === */
@font-face {
  font-family: "GothamRounded-Bold";
  src: url("/asset/font/GothamRnd-Bold.woff") format("woff"), url("/asset/font/GothamRnd-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Medium";
  src: url("/asset/font/GothamRnd-Medium.woff") format("woff"), url("/asset/font/GothamRnd-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Book";
  src: url("/asset/font/GothamRnd-Book.woff") format("woff"), url("/asset/font/GothamRnd-Book.woff2") format("woff2");
}
@font-face {
  font-family: "GothamRounded-Light";
  src: url("/asset/font/GothamRnd-Light.woff") format("woff"), url("/asset/font/GothamRnd-Light.woff2") format("woff2");
}
/* = Font Size = */
/* === COLOR SISTEM === */
/* === Global Section === */
.hero {
  margin-top: -120px;
  height: 120svh;
  position: relative;
  overflow: hidden;
}
.hero .video_bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .video_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero_content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero_content h1 svg {
  width: 20vw;
  fill: #e8e8e8;
}
@media (max-width: 690px) {
  .hero .hero_content h1 svg {
    width: 50vw;
  }
}
.hero .hero_content.info {
  flex-direction: column;
  gap: 20px;
}
.hero .overlay.gradient {
  width: 100%;
  height: 32vh;
  left: 0;
  bottom: 0;
}

.main, footer {
  padding: 80px 0;
}
.main .content, footer .content {
  gap: 40px;
  display: flex;
  flex-direction: column;
  max-width: 80vw;
  margin: auto;
}
@media (max-width: 767px) {
  .main, footer {
    padding: 40px 0;
  }
  .main .content, footer .content {
    max-width: 90vw;
  }
}

#infoNotte .info_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 999px) {
  #infoNotte .info_container {
    align-items: center;
    gap: 40px;
    flex-direction: column;
  }
}
#infoNotte .info_container .info_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#infoNotte .info_container .info_wrapper .info_box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#infoNotte .info_container .info_wrapper .info_box h2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#infoNotte .info_container .info_wrapper .info_box h2 span {
  font-size: 20px;
  font-family: "GothamRounded-Light", sans-serif;
}
@media (max-width: 999px) {
  #infoNotte .info_container .info_wrapper .info_box h2, #infoNotte .info_container .info_wrapper .info_box p {
    text-align: center;
  }
}
#infoNotte .info_container .cta_wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}
#infoNotte .info_container .cta_wrapper h3 {
  text-align: right;
}
@media (max-width: 999px) {
  #infoNotte .info_container .cta_wrapper {
    width: 100%;
    align-items: center;
  }
  #infoNotte .info_container .cta_wrapper h3 {
    text-align: center;
  }
}

/* === Specific Section === */
#homeHero #skyParallax_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 100%;
  overflow: hidden;
  display: flex;
  z-index: -1;
  background-color: #000;
}
#homeHero #skyParallax_wrapper .sky_bg {
  height: 100%;
  width: 100vw;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#homeHero .cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 100%;
  background-color: #000;
  mix-blend-mode: screen;
  display: flex;
}
#homeHero .cloud img {
  width: 100vw;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#homeHero .cloud.cloud_front {
  z-index: 3;
}

#nextEdition {
  margin-top: calc(-18vh - 80px);
  position: relative;
}
#nextEdition .content .title_container svg {
  width: 20px;
  height: 20px;
}
#nextEdition .content .title_container svg path {
  stroke-width: 2px;
  stroke: #fff;
}
#nextEdition .content .card_container {
  display: flex;
  gap: 40px;
}
#nextEdition .content .card_container .event_wrapper {
  display: flex;
  width: 100%;
  gap: 16px;
}
#nextEdition .content .card_container .event_wrapper .eventCard {
  filter: drop-shadow(0 0 8px rgba(0, 8, 23, 0.2));
}
#nextEdition .content .card_container .form_wrapper {
  padding: 60px;
  width: 40%;
}
#nextEdition .content .card_container .form_wrapper .formCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
#nextEdition .content .card_container .form_wrapper .formCard h3 {
  text-align: center;
}
@media (max-width: 999px) {
  #nextEdition .content .card_container {
    flex-direction: column;
  }
  #nextEdition .content .card_container .event_wrapper {
    flex-direction: column;
  }
  #nextEdition .content .card_container .form_wrapper {
    width: 100%;
    padding: 0;
  }
  #nextEdition .content .card_container .form_wrapper h3 {
    max-width: 80%;
  }
}

#prevEdition {
  padding-bottom: 120px;
}
#prevEdition .title_container svg {
  width: 32px;
  height: 32px;
}
#prevEdition .title_container svg path {
  stroke-width: 3px;
  stroke: #000817;
}
#prevEdition .edition_wrapper {
  width: 90vw;
  margin-left: -5vw;
}
#prevEdition .edition_wrapper .splide__list {
  gap: 16px;
}
#prevEdition .edition_wrapper .splide__list .splide__slide {
  list-style: none;
  padding: 32px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 56px;
}
#prevEdition .edition_wrapper .splide__list .splide__slide .annata {
  display: flex;
  gap: 16px;
}
#prevEdition .edition_wrapper .splide__list .splide__slide .annata svg {
  stroke: #000817;
  stroke-width: 4px;
  width: 28px;
}
#prevEdition .edition_wrapper .splide__list .splide__slide .location_wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#prevEdition .edition_wrapper .splide__list .splide__slide .location_wrapper .location {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 12px;
  background-color: #fff;
  padding: 24px;
  border-radius: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
#prevEdition .edition_wrapper .splide__arrows {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 10vw;
  top: -120px;
}
@media (max-width: 690px) {
  #prevEdition .edition_wrapper .splide__arrows {
    position: static;
    margin-left: 5vw;
    margin-bottom: 40px;
  }
}
#prevEdition .edition_wrapper .splide__arrows .splide__arrow {
  position: relative;
  transform: none;
  height: 40px;
  width: 40px;
  left: 0;
  right: 0;
  background-color: #000817;
}
#prevEdition .edition_wrapper .splide__arrows .splide__arrow svg {
  fill: #fff;
}
#prevEdition .edition_wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 10vw;
  z-index: 99;
  pointer-events: none;
}
#prevEdition .edition_wrapper .overlay.right {
  right: 0;
}
#prevEdition .edition_wrapper .overlay.left {
  left: 0;
}
@media (max-width: 690px) {
  #prevEdition .edition_wrapper .overlay {
    display: none;
  }
}

#partnerComm {
  max-width: 85vw;
  padding: 120px 0;
  margin: auto;
  border-bottom: dashed 1px #000817;
  border-top: dashed 1px #000817;
}
#partnerComm .content .cta_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#partnerComm .content .cta_wrapper p {
  width: 80%;
}
@media (max-width: 690px) {
  #partnerComm .content .cta_wrapper {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }
}

#partnerIst {
  padding-top: 120px;
  padding-bottom: 0;
}
@media (max-width: 999px) {
  #partnerIst h2 {
    text-align: center;
  }
}
#partnerIst .partner_container {
  width: 90vw;
  left: -5vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 690px) {
  #partnerIst .partner_container {
    width: 100vw;
  }
}
#partnerIst .partner_container .partner_wrapper {
  z-index: 99;
  position: relative;
  display: flex;
  gap: 16px;
}
@media (max-width: 999px) {
  #partnerIst .partner_container .partner_wrapper {
    flex-wrap: wrap;
  }
}
#partnerIst .partner_container .partner_wrapper .img_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f8f8f8;
  padding: 60px;
  border-radius: 40px;
}
#partnerIst .partner_container .partner_wrapper .img_container img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 999px) {
  #partnerIst .partner_container .partner_wrapper .img_container {
    width: 60%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
#partnerIst .partner_container .partner_wrapper.politics .img_container {
  width: 100%;
  background-color: #fff;
}
@media (max-width: 999px) {
  #partnerIst .partner_container .partner_wrapper.politics .img_container {
    width: 60%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
#partnerIst .partner_container .bg {
  background-color: #000817;
  position: absolute;
  bottom: 0;
  left: -5vw;
  height: 80%;
  width: 100vw;
  z-index: 1;
}
@media (max-width: 690px) {
  #partnerIst .partner_container .bg {
    left: 0;
  }
}/*# sourceMappingURL=style.css.map */