* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #f0783c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d96627;
}

body {
  color: #060c18;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* --------------------------------- Header styles */
.header {
  width: 100vw;
  text-align: center;
  margin-top: 24px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.logo img {
  height: 60px;
  margin-bottom: 36px;
}

.navigation {
  height: 60px;
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 36px;
}

.navigation li {
  font-size: 18px;
}

.navigation a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.navigation a span {
  font-style: italic;
}

.highlight {
  font-weight: 900;
  font-style: italic;
}

/* --------------------------------- Section styles */
.section {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  font-family: "Poppins";
}

/* --------------------------------- Section benvenuto */
#benvenuto {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.section-benvenuto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

.logo-outline-top {
  width: 80vw;
}

.claim-h2 {
  color: #f0783c;
  font-weight: 800;
}

.claim-p {
  width: 720px;
  text-align: center;
}

.mouse {
  width: 24px;
  height: 60px;
  border: 1px solid #f0783c;
  border-radius: 60px 0px 60px 0px;
  margin-top: 10px;
  transform: translateX(-50%);
  margin-bottom: 24px;
  position: absolute;
  bottom: 50%;
  left: 95%;
}

.mouse::before {
  content: "";
  width: 6px;
  height: 18px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f0783c;
  border-radius: 60px 0px 60px 0px;
  opacity: 1;
  animation: wheel 2s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 40px;
  }
}

/* --------------------------------- Section cosa è */
.section-content-cosa-e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  padding: 120px 0 120px 0;
}

.section-content-cosa-e .text-content {
  width: 468px;
}

.section-content-cosa-e .text-content h2 {
  font-family: "Poppins";
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  text-transform: uppercase;
  color: #f0783c;
}

.section-content-cosa-e .text-content p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
}

.section-content-cosa-e .image-content {
  width: 900px;
  transform: translateX(-54px);
}

/* --------------------------------- Section per i fan */
.section-content-per-i-fan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  padding: 120px 0 120px 0;
}

.section-content-per-i-fan .text-content {
  width: 648px;
}

.section-content-per-i-fan .text-content h2 {
  font-family: "Poppins";
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  text-transform: uppercase;
  color: #060c18;
}

.section-content-per-i-fan .text-content p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
}

.section-content-per-i-fan .image-content {
  width: 900px;
  transform: translateX(-20px);
}

/* --------------------------------- Section per i creator */
.section-content-per-i-creator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  padding: 120px 0 120px 0;
}

.section-content-per-i-creator .text-content {
  width: 660px;
  z-index: 999;
}

.section-content-per-i-creator .text-content h2 {
  font-family: "Poppins";
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  text-transform: uppercase;
  color: #f0783c;
  z-index: 999;
}

.section-content-per-i-creator .text-content p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  z-index: 999;
}

.section-content-per-i-creator .image-content {
  width: 660px;
  transform: translateX(-360px);
  z-index: 1;
}

/* --------------------------------- Section per i brand */
.section-content-per-i-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  padding: 120px 0 120px 0;
}

.section-content-per-i-brand .text-content {
  width: 697px;
}

.section-content-per-i-brand .text-content h2 {
  font-family: "Poppins";
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  text-transform: uppercase;
  color: #ffffff;
}

.section-content-per-i-brand .text-content p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #060c18;
}

.section-content-per-i-brand .image-content {
  width: 900px;
  transform: translateX(360px);
}

/* --------------------------------- Section alfa version */
.alfa-version {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 120px 0 0 0;
}


.proponi {
  background-color: #f0783c;
  border-radius: 0 60px 0 60px;
  font-family: 'Poppins';
  font-weight: 600;
  color: white;
  font-size: 24px;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #f0783c;
  padding: 12px 120px 12px 120px;
}

.proponi:hover {
  border: 1px solid #f0783c;
  background: transparent;
  color: #f0783c;
}


.alfa-version .alfa-content {
  display: grid;
  place-items: center;
}

.alfa-version .alfa-content div {
  max-width: 900px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.alfa-version .alfa-content div p {
  text-align: center;
}

.nter-logo-footer {
  margin-top: 60px;
}

/* --------------------------------- Typography */
h1, h2 {
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin: 36px 0 36px 0;
}

p {
  font-weight: 200;
  font-style: italic;
  font-size: 24px;
  line-height: 36px;
  font-family: "Poppins", sans-serif;
}

.parallax {
  position: relative;
}

/* --------------------------------- Varie */
.fade-in {
  opacity: 0;
  animation: fadeIn ease 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

::selection {
  background: #f0783c;
  color: #060c18;
}

img {
  pointer-events: none;
}

a {
  text-decoration: none;
}
