@font-face {
  font-family: "OpenSauceOneRegular";
  src: url(font/OpenSauceOne-Regular.woff);
}

@font-face {
  font-family: "OpenSauceOneBold";
  src: url(font/OpenSauceOne-Bold.woff);
}

@font-face {
  font-family: "OpenSauceOneLight";
  src: url(font/OpenSauceOne-Light.woff);
}

@font-face {
  font-family: "OpenSauceOneMedium";
  src: url(font/OpenSauceOne-Medium.woff);
}

@font-face {
  font-family: "OpenSauceOneExtraBold";
  src: url(font/OpenSauceOne-ExtraBold.woff);
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

a {
  cursor: pointer;
}

.fade {
  animation: fade 1s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slideUp {
  animation: slideUp 1s ease-out forwards;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

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

.fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideIn {
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideInFromRight {
  animation: slideInFromRight 1s ease-out forwards;
}

:root {
  --font-size-sm: clamp(0.7rem, 0.17vw + 0.7rem, 0.8rem);
  --font-size-base: clamp(0.9rem, 0.34vw + 0.85rem, 1rem);
  --font-size-md: clamp(1rem, 0.61vw + 0.9rem, 1.3rem);
  --font-size-lg: clamp(1.2rem, 1vw + 1rem, 1.7rem);
  --font-size-xl: clamp(1.5rem, 1.56vw + 1.2rem, 2.2rem);
  --font-size-xxl: clamp(1.8rem, 2.38vw + 1.4rem, 2.8rem);
  --font-size-xxxl: clamp(2.2rem, 3.54vw + 1.6rem, 3.8rem);
}

h1 {
  font-size: var(--font-size-xxxl);
  font-family: "Sora";
  color: #000011;
  font-weight: 600;
  margin: 0;
}

h2 {
  font-size: var(--font-size-xxl);
  font-family: "Sora";
  font-weight: 600;
  color: #000011;
  margin: 0;
}

h3 {
  font-size: var(--font-size-xl);
  font-family: "Sora";
  font-weight: 600;
  color: #000011;
  margin: 0;
  line-height: normal;
}

h4 {
  font-size: var(--font-size-l);
  font-family: "OpenSauceOneRegular";
  margin: 0;
}

h5 {
  font-size: var(--font-size-m);
  margin: 0;
  font-family: "Sora";
  color: #000011;
  font-weight: 600;
}

p {
  font-size: var(--font-size-base);
  font-family: "Sora";
  letter-spacing: 2%;
  font-weight: 400;
  margin: 0;
}

* {
  text-decoration: none;
  margin: 0px;
  box-sizing: border-box;
  padding: 0;
}

body {
  overflow-x: hidden;
}

/* Buttons */
.black-button {
  font-family: "OpenSauceOneBold";
  background-color: #000011;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75em;
  border-radius: 1000px;
  border: 1px solid #000011;
  letter-spacing: 0.05em;
  padding: 1em 2.1em 1.1em;
  max-width: fit-content;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.black-button:hover {
  background-color: #ffffff;
  color: #000011;
  border: 1px solid #000011;
  transform: scale(1.1);
}

.orange-button {
  background-color: #f7981b;
  border-radius: 1000px;
  padding: 1em 2.1em 1.1em;
  border: none;
  font-family: "OpenSauceOneBold";
  color: #000011;
  font-weight: 900;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.orange-button:hover {
  background-color: #000011;
  border-radius: 1000px;
  border: none;
  font-family: "OpenSauceOneBold";
  color: #f7981b;
  font-weight: 900;
  letter-spacing: 0.05em;
  cursor: pointer;
  transform: scale(1.1);
}

.black-button-with-icon {
  font-family: "OpenSauceOneBold";
  font-weight: 900;
  background-color: #000011;
  text-align: center;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  border-radius: 1000px;
  border: 1px solid #000011;
  padding: 1em 2.1em 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  height: auto;
}

.black-button-with-icon svg {
  height: 1.1em;
}

.black-button-with-icon:hover {
  background-color: #ffffff;
  text-align: center;
  color: #000011;
  transform: scale(1.1);
}

.black-button-with-icon:hover svg path {
  fill: black;
}

.blue-button {
  font-family: "OpenSauceOneBold";
  font-weight: 900;
  background-color: #18228c;
  text-align: center;
  color: #ffffff;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  border-radius: 1000px;
  border: 1px solid #18228c;
  padding: 1em 2.1em 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.blue-button:hover {
  background-color: #ffffff;
  text-align: center;
  color: #18228c;
  transform: scale(1.1);
}

.white-button {
  background-color: #ffffff;
  border-radius: 1000px;
  padding: 1em 2.1em 1.1em;
  border: 1px solid transparent;
  font-family: "OpenSauceOneBold";
  color: #000011;
  font-weight: 900;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  max-width: fit-content;
}

.white-button:hover {
  background-color: #000011;
  border: 1px solid transparent;
  color: #ffffff;
  font-weight: 900;
  transform: scale(1.1);
}

.grid-item-three button:hover {
  border: 1px solid #ffffff !important;
}

.form-container button:hover {
  border: 1px solid #ffffff !important;
}

.white-button-with-icon {
  font-family: "OpenSauceOneBold";
  font-weight: 900;
  background-color: #ffffff;
  text-align: center;
  color: #000011;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  border-radius: 1000px;
  border: 1px solid #000011;
  padding: 1em 2.1em 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.white-button-with-icon:hover {
  background-color: #000011;
  text-align: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  cursor: pointer;
  transform: scale(1.1);
}

.white-button-with-icon:hover svg path {
  fill: #ffffff;
}

.dark-button {
  background-color: #000011;
  border-radius: 1000px;
  padding: 1em 2.1em 1.1em;
  border: 1px solid #ffffff;
  font-family: "OpenSauceOneBold";
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.dark-button:hover {
  background-color: #ffffff;
  border-radius: 1000px;
  padding: 1em 2.1em 1.1em;
  border: 1px solid #000011;
  font-family: "OpenSauceOneBold";
  color: #000011;
  text-align: center;
  font-weight: 900;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  transform: scale(1.1);
}

/*Navbar*/
.navbar {
  display: flex;
  justify-content: space-between;
  max-height: fit-content;
  align-items: center;
  margin: 20px 50px 20px 50px;
}

.logo img {
  max-width: 150px;
}

.first-nav-link {
  display: flex;
  background-color: transparent;
  column-gap: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  position: relative;
  z-index: 10;
  width: fit-content;
  padding: 10px 30px;
}

.option {
  text-decoration: none;
  font-family: "OpenSauceOneBold";
  font-size: 15px;
  color: #000011;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 1000px;
  position: relative;
  z-index: 100000;
  transition: color 0.3s;
  pointer-events: auto;
}

.option-company {
  text-decoration: none;
  font-family: "OpenSauceOneBold";
  font-size: 15px;
  color: #000011;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 1000px;
  position: relative;
  z-index: 100000;
  transition: color 0.3s;
  pointer-events: auto;
}

.option.active,
.option:hover {
  color: #000011;
}

.option-company.active,
.option-company:hover {
  color: white;
}

.option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7981b;
  border-radius: 1000px;
  z-index: -2;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.option-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #18228c;
  border-radius: 1000px;
  z-index: -2;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.option.active::before,
.option:hover::before {
  transform: scale(1.2);
}

.option-company.active::before,
.option-company:hover::before {
  transform: scale(1.2);
}

.second-nav-link {
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.second-nav-link a {
  font-family: "OpenSauceOneBold";
  color: #000011;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  padding: 20px;
  text-decoration: none;
}

.second-nav-link a:hover {
  color: #ffffff;
  background-color: #000011;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  padding: 20px;
}

.nav-button {
  background-color: #000011;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 1000px;
  border: 1px solid #000011;
  padding: 20px;
  cursor: pointer;
}

.nav-button:hover {
  background-color: #ffffff;
  color: #000011;
  border: 1px solid #000011;
  font-weight: 800;
  font-size: 16px;
  border-radius: 1000px;
  padding: 20px;
}

.hero {
  opacity: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  text-align: center;
  margin: 5% 10% 0 10%;
}

/* Menu Navbar */
.box {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 50px;
}

.logo img {
  max-width: 150px;
}

.second-nav-link {
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.second-nav-link a {
  font-family: "OpenSauceOneBold";
  color: #000011;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  padding: 20px;
  text-decoration: none;
}

.second-nav-link a:hover {
  color: #ffffff;
  background-color: #000011;
}

.nav-button {
  background-color: #000011;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 1000px;
  border: 1px solid #000011;
  padding: 20px;
  cursor: pointer;
}

.nav-button:hover {
  background-color: #ffffff;
  color: #000011;
}

/*Prima sezione*/
.first-section {
  display: flex;
  justify-content: center;
  margin-top: 10%;
  margin-bottom: 10%;
}

.first-section img {
  width: 60%;
}

.img-first-section {
  width: 40%;
  text-align: center;
  opacity: 0;
}

ul {
  list-style-type: none;
}

ul li {
  position: relative;
  padding-left: 15px;
  font-family: "Sora";
  font-size: var(--font-size-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 20px 0;
}

ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.copy-first-section {
  opacity: 0;
}

.copy-first-section p {
  margin-top: 0.5rem;
}

.button-first-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5%;
}

/*Seconda sezione*/
.second-section {
  background-color: #000011;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10% 2%;
  row-gap: 50px;
  text-align: center;
  overflow-x: hidden;
}

.logo {
  overflow: hidden;
  white-space: nowrap;
}

.logo-slider {
  display: inline-block;
  animation: 9s slider infinite linear;
}

.logo-slider::after {
  content: "";
  display: inline-block;
  width: 0;
}

.logo-slider img {
  height: 50px;
  margin: 0 40px;
}

/*Terza sezione*/
.third-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 10%;
  text-align: center;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  column-gap: 2%;
  margin-top: 10%;
}

.card {
  position: relative;
  width: 22rem;
  height: 22rem;
  background-color: #000011;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.card p {
  font-family: "OpenSauceOneRegular";
  font-size: 0.75rem;
  padding: 15px;
}

.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #000011;
}

.card:hover .cover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(-2deg) translateY(-50px);
  -ms-transform: rotate(-2deg) translateY(-50px);
  transform: rotate(-2deg) translateY(-50px);
}

.testo {
  background-color: white;
  text-align: center;
  color: #000011;
}

.testo p {
  font-size: var(--font-size-m);
  font-weight: 500;
  margin-top: 10%;
}

.sottotesto-blu {
  background-color: #18228c;
  text-align: center;
  color: #ffffff;
}

.sottotesto-arancione {
  background-color: #f7981b;
  text-align: center;
  color: #000011;
}

.sottotesto-arancione p {
  font-family: "OpenSauceOneBold";
  font-size: 0.9rem;
}

/*Quarta sezione*/
.fourth-section {
  background-color: #000011;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  padding-top: 5%;
  padding-bottom: 5%;
}

.accordion-section {
  display: flex;
  padding-left: 1%;
  padding-right: 1%;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 0;
  margin-top: 2%;
  margin-left: 6%;
}

.accordion-section .image {
  text-align: center;
}

.accordion {
  border-bottom: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  cursor: pointer;
}

.accordion .question h3 {
  color: #ffffff;
}

.accordion .answer p {
  color: #ffffff;
}

.accordion.active .answer {
  max-height: 800px;
  opacity: 1;
}

/*Quinta sezione*/
.fifth-section {
  color: #000011;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  text-align: center;
  padding: 8% 10%;
  opacity: 0;
}

.fifth-section h3 {
  margin-left: 6%;
}

.img-section {
  background-image: url(img/section-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 3%;
}

/*Sezione delle FAQ*/
.faq-section {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8%;
  margin-bottom: 8%;
  text-align: start !important;
  margin-left: 2%;
  margin-right: 2%;
  row-gap: 1.5rem;
}

.faq {
  margin-top: 2%;
  border-bottom: 1px solid #000011;
  cursor: pointer;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  font-family: "Sora";
  font-size: 1.5rem;
  font-weight: 600;
  color: #000011;
  flex-grow: 1;
}

.question svg {
  flex-shrink: 0;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
  padding-top: 1rem;
  padding-right: 1rem;
}

.answer p {
  font-family: "Sora";
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #000011;
  padding-bottom: 1rem;
}

.accordion.active .answer {
  max-height: 600px;
  opacity: 1;
}

.accordion.active svg {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in;
}

.accordion svg {
  transform: rotate(0);
  transition: transform 0.5s ease-in;
}

.faq.active .answer {
  max-height: 600px;
  opacity: 0;
}

.faq.active svg {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in;
}

.faq svg {
  transform: rotate(0);
  transition: transform 0.5s ease-in;
}

/*Footer*/
footer {
  background-color: #000011;
  padding-top: 2%;
  padding-bottom: 1%;
}

.footer-section {
  display: flex;
  margin: 3%;
  justify-content: space-between;
}

.footer-img img {
  max-width: 200px;
  margin: 60px 50px 20px 50px;
}

.first-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.first-col h3 {
  font-family: "Sora";
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
}

.first-col p {
  font-family: "OpenSauceOneLight";
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-white-70, rgba(255, 255, 255, 0.7));
}

.second-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.25rem;
}

.sotto-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sotto-col h4 {
  font-family: "Sora";
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

.sotto-col a {
  font-family: "OpenSauceOneLight";
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-white-70, rgba(255, 255, 255, 0.7));
}

.under-section {
  display: flex;
  margin: 8% 2% 2% 2%;
  justify-content: space-between;
  align-items: center;
}

.under-section a {
  margin-right: 2rem;
  font-family: "OpenSauceOneLight";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  color: rgba(255, 255, 255, 0.6);
}

.under-section p {
  font-family: "OpenSauceOneLight";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.social {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
}

.hero-img {
  margin-top: 40px;
}

.hero-img-index {
  background-image: url(img/hero-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 961px;
}

.hero-img-aziende {
  background-image: url(img/hero-img-aziende.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 961px;
}

.img-section-aziende {
  background-image: url(img/section-img-aziende.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 961px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.three-col {
  opacity: 0;
  display: flex;
  flex-direction: row;
  margin: 6%;
  column-gap: 2%;
}

.three-col h3 {
  color: #ffffff;
  font-size: 6rem;
}

.img-section-aziende p {
  font-family: "Sora";
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.img-section-two {
  background-attachment: fixed;
  background-image: url(img/section-img-unisciti-a-noi.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 961px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2%;
  row-gap: 30px;
}

.three-cards {
  opacity: 0;
  display: flex;
  margin: 0 8% 8% 8%;
  column-gap: 3%;
}

.one-card {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.one-card h3 {
  font-family: "OpenSauceOneBold";
  font-size: 1.5rem;
}

.black-section {
  background-color: #000011;
  text-align: center;
  padding: 10% 2%;
}

.black-section .button-first-section {
  justify-content: center;
}

.grid-container {
  opacity: 0;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20%;
  row-gap: 9%;
  margin: 0 10% 10% 10%;
}

.grid-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.grid-item h3 {
  font-family: "Sora";
  font-size: 2rem;
  font-weight: 600;
}

/* Pagina Faqs*/
.all-faqs {
  margin-left: 15%;
  margin-right: 15%;
}

.answer ul {
  padding: 0;
}

.answer li {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Pagina Contattaci */
.email-link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

.email-link a {
  font-family: "Sora";
  font-size: clamp(1rem, 5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000011;
}

.form-container {
  display: flex;
  justify-content: center;
  background-color: #000011;
  padding: 5%;
  margin-top: 6%;
}

.contattaci {
  width: 60%;
}

.form-container .accept label {
  color: #ffffff !important;
}

.form-container .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 1px solid #ffffff;
  border-radius: 0px;
  transition: all 0.3s;
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "OpenSauceOneLight";
  background-color: #000011;
}

label {
  font-family: "Sora";
  color: #ffffff;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  margin: 15px;
}

.checkbox-container {
  display: flex;
  margin: 0 0 20px 0;
}

.checkbox-container label {
  color: #ffffff;
}

.checkbox-container a {
  color: #ffffff;
}

.accept label {
  font-family: "OpenSauceOneLight";
  font-size: 16px;
  color: #000011;
  font-weight: 400;
}

.submit {
  margin-top: 20px;
}

.social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  row-gap: 40px;
}

/* Pagina Candidatura Talento*/
.hero-two {
  opacity: 0;
  display: flex;
  text-align: center;
  gap: 5%;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 5% 10% 0 10%;
}

.hero-two h1 {
  left: 25%;
  top: 0;
  font-size: clamp(1.875rem, 6vw, 3.75rem);
  text-align: center;
}

.back-button {
  padding: 1%;
  margin-left: 10px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 10%;
  font-family: "OpenSauceOneBold";
  font-size: clamp(0.75rem, 2vw, 1rem);
  align-items: center;
  align-self: flex-start;
}

.hero-two svg {
  width: clamp(12px, 5vw, 30px) !important;
  height: auto !important;
}

.subtitle h3 {
  font-family: "Sora";
  font-size: clamp(14px, 5vw, 22px);
  font-weight: 500;
  text-align: center;
  color: #000011;
  margin: 5% 2% 5% 2%;
}

.candidatura {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2% 5% 2%;
}

.email-submit {
  width: 800px;
}

.email-submit input:not([type="checkbox"]),
.email-submit textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #000011;
  border-radius: 0;
  font-size: 1rem;
  color: #000011;
  background-color: transparent;
  font-family: "OpenSauceOneLight";
}

.email-submit label {
  font-family: "Sora";
  color: #000011;
  font-size: clamp(1.1rem, 4vw, 2.2rem);
  font-weight: 700;
}

/* Pagina Newsletter */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4%;
  width: 100%;
}

.form-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter {
  margin-bottom: 50px;
}

.form-grid input:not([type="checkbox"]),
.form-grid textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #000011;
  border-radius: 0;
  font-size: 1rem;
  color: #000011;
  background-color: transparent;
  font-family: "OpenSauceOneLight";
}

.form-grid label {
  font-family: "Sora";
  color: #000011;
  font-size: 1rem;
  font-weight: 700;
  margin: 15px;
}

#opzioni {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #000011;
  border-radius: 0;
  font-size: 1rem;
  color: #000011;
  background-color: transparent;
  font-family: "OpenSauceOneLight";
}

.menu-tendina-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #000011;
  border-radius: 0;
  font-size: 1rem;
  color: #000011;
  background-color: transparent;
  font-family: "OpenSauceOneLight";
}

.checkbox-wrapper-46 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
  margin: auto auto 20px auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000011;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: #000011;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
  background: #506eec;
  border-color: #506eec;
  animation: wave-46 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.checkbox-wrapper-46 label span {
  font-family: "OpenSauceOneLight";
  font-family: 1rem;
}

.cbx {
  display: flex;
  align-items: center;
}

/* Pagina Unisciti a Noi*/
.d-flex {
  display: flex;
}

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

.two-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.orange-item,
.blu-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f7981b;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.blu-item {
  background-color: #18228c;
}

.orange-item h3 {
  font-size: 1rem;
}

.blu-item h3 {
  font-size: 1rem;
  color: #ffffff;
}

.subtitle p {
  text-align: center;
  margin: 5%;
}

.grid-container-two {
  opacity: 0;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3%;
  row-gap: 2rem;
  margin: 50px 50px;
}

.grid-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.img-section-three {
  background-attachment: fixed;
  background-image: url(img/section-img-categorie.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 869px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 70px;
}

.img-section-three h2 {
  opacity: 0;
  color: #ffffff;
}

.img-section-three h3 {
  opacity: 0;
  font-family: "Sora";
  font-size: 1.5rem;
  font-weight: 500;
  margin: 30px 10%;
  color: #ffffff;
}

.img-section-three .button-first-section {
  opacity: 0;
}

.categorie-section .fifth-section {
  padding: 0 0 2% 0;
}

.grid-container-three {
  opacity: 0;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  margin: 0 5% 5% 5%;
}

.grid-item-three {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  row-gap: 25px;
  font-family: "Sora";
  background-color: #000011;
  color: #ffffff;
  padding: 50px;
  width: 100%;
}

.grid-item-three h2 {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}

.grid-item-three p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
}

.grid-container-four {
  opacity: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  margin: 50px 50px;
}

@media (max-width: 768px) {
  * {
    text-decoration: none;
    margin: 0px;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  h3 {
    overflow: hidden;
  }

  p {
    overflow: hidden;
  }

  label {
    overflow: hidden;
  }

  /* | | | | | | | | | | | | |
    /* Hamburger Menu */
  .box {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
    background-color: transparent;
    overflow: hidden;
    max-height: fit-content;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .logo {
    height: 40px;
    width: auto;
    margin-right: 20px;
  }

  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: inline-block;
  }

  .burger input {
    display: none;
  }

  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }

  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }

  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }

  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }

  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }

  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }

  .submenu {
    display: none;
    margin-top: 10px;
  }

  .submenu a {
    display: block;
    margin-top: 10px;
  }

  .box.expanded {
    max-height: 500px;
    padding-bottom: 20px;
  }

  .box.expanded .submenu {
    display: block;
    flex-basis: 100%;
  }

  .under-menu {
    padding: 9px;
    width: 95%;
    margin: 10px auto 20px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }

  /* | | | | | | */
  .fifth-section h3 {
    margin-left: 0;
  }

  .navbar {
    display: none;
  }

  .hero {
    margin: 10px 1.25rem;
  }

  .first-section {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin: 1rem 1rem;
  }

  .two-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .orange-item,
  .blu-item {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
  }

  .grid-container-two {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px 0;
  }

  .grid-container-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .button-first-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 5%;
  }

  .grid-container-four {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin: 50px 0;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .form-newsletter {
    width: 90%;
  }

  .checkbox-wrapper-46 span {
    font-family: "OpenSauceOneLight";
    font-size: 12px;
  }

  .checkbox-wrapper-46 .cbx span {
    font-size: 12px;
  }

  .contattaci {
    width: 100%;
  }

  .logo-slider img {
    height: 30px;
    margin: 0 10px;
  }

  .black-button {
    padding: 10px 20px;
  }

  .black-button-with-icon {
    padding: 10px 20px;
  }

  .white-button {
    padding: 10px 20px;
  }

  .dark-button {
    padding: 10px 20px;
  }

  .white-button-with-icon {
    padding: 10px 20px;
  }

  .blue-button {
    padding: 10px 20px;
  }

  .orange-button {
    padding: 10px 20px;
  }

  * {
    overflow-x: hidden;
  }

  .option.active {
    overflow: hidden;
  }

  .option {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .option-company {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .hero-img-index {
    min-height: 250px;
    background-size: contain;
    background-attachment: unset;
  }

  .hero-img-aziende {
    height: 250px;
    background-size: contain;
    background-attachment: unset;
  }

  .img-section {
    height: 250px;
    background-size: contain;
    background-attachment: unset;
  }

  .accordion > svg {
    height: 50px;
  }

  .question > svg {
    height: 30px;
  }

  .section-title > h2 {
    margin-bottom: 40px;
  }

  .question h3 {
    font-size: 1.2rem;
  }

  .answer p {
    font-size: 0.7rem;
  }

  .accordion-section .image > img {
    width: 50%;
  }

  .second-section {
    padding: 5% 2%;
    row-gap: 1.5rem;
  }

  .img-section-two {
    height: 40vh;
    row-gap: 20px;
  }

  .img-section-aziende {
    background-position: 0px 30px;
    height: 500px;
    background-attachment: unset;
  }

  .img-section-three {
    height: 700px;
    background-attachment: unset;
  }

  .img-section-two {
    height: 400px;
    background-attachment: unset;
  }

  .form-newsletter .black-button {
    align-self: start;
  }

  .second-nav-link a {
    padding: 10px 20px;
  }

  .grid-item {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-bottom: 6%;
  }

  .grid-item h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  * {
    text-decoration: none;
    margin: 0px;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  .hero {
    margin: 10px 0.6rem;
  }

  .first-section {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin: 1rem 1rem;
  }

  .img-first-section {
    width: 60%;
    text-align: left;
  }

  .img-section {
    background-image: url(img/section-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 32vh;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 3%;
  }

  .faq {
    margin-top: 2%;
    border-bottom: 1px solid #000011;
    cursor: pointer;
    margin-bottom: 10%;
  }

  .footer-section {
    display: flex;
    margin: 3%;
    flex-direction: column;
    row-gap: 2rem;
  }

  .footer-img img {
    max-width: 150px;
    margin: 20px;
  }

  .second-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10%;
    margin-top: 2%;
  }

  .under-section {
    display: flex;
    flex-direction: column;
    margin: 20% 2% 2% 2%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    row-gap: 1rem;
  }

  .accordion-section {
    display: flex;
    flex-direction: column;
  }

  .card-row {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    row-gap: 20px;
    overflow: scroll;
  }

  .three-col {
    display: flex;
    flex-direction: column;
    margin: 6%;
    gap: 10px;
  }

  .three-col h3 {
    font-size: 3rem;
  }

  .three-col p {
    font-size: 1rem;
  }

  .three-cards {
    display: flex;
    flex-direction: column;
    margin: 0 2% 0% 2%;
  }

  .one-card {
    margin-bottom: 30px;
  }

  .grid-container {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr;
    margin: 2% 2% 2% 2%;
    row-gap: 1%;
  }

  .grid-item {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-bottom: 6%;
  }

  .grid-item h3 {
    font-size: 1.5rem;
  }

  .logo {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .all-faqs {
    margin-left: 5%;
    margin-right: 5%;
  }

  .faq-page .hero {
    align-items: start;
    margin-left: 6%;
  }

  .form-container {
    margin-top: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-two {
    margin: 0%;
  }

  .grid-container-three {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(6, 1fr);
    overflow-x: scroll;
  }

  .slider-container {
    opacity: 0;
    overflow-x: hidden;
    margin-top: 20px;
  }

  .card-slider {
    width: 100%;
    overflow-x: auto;
    margin-top: 0;
    scroll-snap-type: x mandatory;
    margin-left: 10px;
  }

  .w80 {
    width: 90%;
  }

  .grid-item-three {
    min-width: 300px;
    padding: 20px;
  }

  .grid-item-three h2 {
    font-size: 18px;
  }

  .grid-item-three p {
    font-size: 14px;
  }

  .grid-button {
    font-size: 12px;
  }
}
