/*
Theme Name: Portfolio Custom
Description: Tema custom per portfolio con GSAP
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  font-family: "Inter";
  margin: 0px;
  letter-spacing: -0.05em;
}
html,
body {
  margin: 0px;
}
button {
  padding: 0px;
  width: fit-content;
  height: fit-content;
}
.header {
  z-index: 99998;
  position: fixed;
  width: calc(100% - 128px);
  padding: 32px 64px;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
/*
.header:has(.headerNav a:hover),
.header:has(.logoHeader:hover) {
  mix-blend-mode: normal;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
*/
.headerNav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: end;
  align-items: center;
}
.headerNav a {
  color: #006cd8;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Inter";
  text-decoration: none;
}
.activeMenu {
  font-weight: bold !important;
}
.headerNav a:hover {
  color: #ff9327;
  text-decoration: underline;
}
.logoHeader:hover svg path {
  fill: #ff9327;
}
.hero {
  width: 100%;
  height: 100svh;
}
.hero video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
main {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.lavoriWrap {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  margin: 0px 64px;
  gap: 32px;
}
.lavori {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-flow: row dense; /* 🔑 THIS */
  width: 100%;
}
.titleLavori {
  width: 100%;
  text-align: left;
  grid-column: span 12;
  font-size: 4rem;
  color: #006cd8;
}
.linkProgetto {
  position: relative;
  grid-column: span 6;
  text-decoration: none;
  color: white;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  box-sizing: border-box; /* 🔑 */
  height: 100%;
}
.linkProgetto::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -9;
  background-color: #006cd8;
  opacity: 0;
  top: 0px;
  left: 0px;
  transition: all ease 0.3s;
}
.linkProgetto:hover::before {
  opacity: 0.5;
}
.lavori > a.is-tall {
  max-height: 90svh;
  min-height: 90svh;
  width: 100%;
  grid-row: span 2;
}

.chip {
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: #006cd8;
  border-radius: 10000px;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
.wrapChips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
.imgGrid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
}
.btn {
  width: fit-content;
  padding: 0.75rem 4rem;
  background-color: #006cd8;
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.btn:hover {
  background-color: #ff9327;
  color: white;
}
.banner {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
  padding: 128px 64px;
  background-color: #006cd8;
  display: grid;
  border-radius: 1.25rem;
}
.col1 {
  grid-column: span 1;

  display: flex;
  justify-content: center;
  align-items: center;
}
.changeText {
  font-size: 8rem;
  font-weight: bold;
  color: white;
  line-height: 8rem;
  display: inline-block;
  white-space: nowrap;
}
.borderRight {
  font-size: 8rem;
  font-weight: bold;
  color: white;
  line-height: 8rem;
  display: inline-block;
  white-space: nowrap;
  border-right: 2px solid rgb(255, 255, 255); /* cursor effect */

  animation: blinkCursor 0.7s steps(1) infinite;
}
/* blinking keyframes */
@keyframes blinkCursor {
  0%,
  50% {
    border-color: rgb(255, 255, 255);
  }
  50.1%,
  100% {
    border-color: transparent;
  }
}
.col2 {
  grid-column: span 1;
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
}
.contactsWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
  margin: 0px 64px;
}
.contactsCol {
  display: flex;
  flex-direction: column;
  gap: 128px;
  grid-column: span 1;
}
.contactsHead {
  font-size: 4rem;
  font-weight: bold;
  color: #006cd8;
}
.contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact {
  color: #006cd8;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}
.copyMail {
  cursor: pointer;
}
.contact:hover {
  text-decoration: underline;
  color: #0050a0;
}
.formCol {
  grid-column: span 1;
  background-color: #006cd8;
  border-radius: 1.25rem;
  height: fit-content;
}
.formCol form {
  padding: 32px !important;
  margin: 0px !important;
}
input {
  background-color: transparent !important;
  border: none !important;
  color: white !important;
  resize: none !important;
  border: none !important;
  padding: 0px !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  line-height: 1.5rem !important;
  color: white !important;
}
input::placeholder,
textarea::placeholder,
label,
.forminator-required {
  color: white !important;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
label {
  font-weight: 400 !important;
}
textarea {
  resize: none !important;
  border: none !important;
  padding: 0px !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  height: 164px !important;
  line-height: 1.5rem !important;
  color: white !important;
}
.forminator-checkbox__label p {
  color: white !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  line-height: 1.5rem !important;
}
.forminator-checkbox__label p a {
  color: white !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  line-height: 1.5rem !important;
}
.forminator-checkbox__label p a:hover {
  color: #ff9327 !important;
}
.forminator-checkbox__label {
  margin: 0px !important;
}
.forminator-button {
  width: 100% !important;
  background-color: white !important;
  color: #006cd8 !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  line-height: 1.5rem !important;
  border-radius: 0.75rem !important;
  transition: none !important;
}
.forminator-button:hover {
  background-color: #ff9327 !important;
  color: white !important;
  box-shadow: none !important;
}
.forminator-row-last {
  margin: 0px !important;
}
.forminator-checkbox__wrapper {
  display: flex !important;
  flex-direction: row !important;
  justify-content: start !important;
  align-items: center !important;
  gap: 8px !important;
}
.forminator-row-last .forminator-col {
  padding: 0px !important;
}
.forminator-error-message {
  margin: 0px !important;
  padding: 0px !important;
  color: #ff9327 !important;
}
.wrapFooter {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 256px;
  padding: 64px 64px 32px 64px;
  border-radius: 1.25rem 1.25rem 0rem 0rem;
  background-color: #006cd8;
}
.footerColsWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.col1Footer {
  grid-column: span 1;
  display: grid;
  flex-direction: column;
  gap: 96px 16px;
  grid-template-columns: repeat(3, 1fr);
}
.contactsFooter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: span 3;
}
.logoFooterWrap {
  grid-column: span 1;
}
.logoFooter {
  width: 100%;
  height: auto;
}
.headContactsFooter {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: white;
}
.contactFooter {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
}
.contactFooter:hover {
  mix-blend-mode: difference;
  text-decoration: underline;
}
.col2Footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.colNavFooter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapNavFooter {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.wrapContactsFooter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.headNavFooter {
  color: rgb(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
}
.navFooter {
  font-size: 4rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.navFooter:hover {
  text-decoration: underline;
  mix-blend-mode: difference;
}
.headSingleContactFooter {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.75rem;
  text-decoration: none;
}
.headSingleContactFooter:hover {
  mix-blend-mode: difference;
  text-decoration: underline;
}
.footerEnd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.footerEndText {
  color: rgb(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
a.footerEndText {
  text-decoration: none;
}
a.footerEndText:hover {
  text-decoration: underline;
  color: white;
}
.heroSingle {
  width: 100%;
  height: 100svh;
  position: relative;
}
.imgHeroSingle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}
.heroSingle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 108, 216, 0.7) 0%,
    rgba(0, 108, 216, 0) 35%
  );
  /*rgba(0, 0, 0, 0.5);*/
  z-index: 3;
  top: 0;
  left: 0;
}
.titleSingle {
  position: absolute;
  bottom: 64px;
  left: 64px;
  z-index: 4;
  color: white;
  font-size: 4rem;
}
.wrapPage {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.infoCols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 0px 64px;
}
.cols3 {
  grid-column: span 3;
}
.cols6 {
  grid-column: span 6;
}
.info {
  font-size: 1.5rem;
  color: #006cd8;
  font-weight: bold;
}
.descrizioneSingle {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 0px 64px;
}
.descrizioneSingle p {
  grid-column: 7 / span 6;
  color: #006cd8;
  font-size: 2rem;
  font-weight: bold;
}
.wrapBlocchiLavoro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapBloccoLavoro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 0px 64px;
  grid-auto-flow: row dense; /* 🔑 THIS */
}
.imgGrandeSingle {
  grid-column: span 12;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 16/9;
}
.testoImgSingle {
  grid-column: 7 / span 6;
  color: #006cd8;
  font-size: 2rem;
  font-weight: bold;
}

.sx2 > img:nth-child(1),
.sx2 > video:nth-child(1) {
  grid-row: span 1;
  grid-column: 1 / span 6;
}
.sx2 > img:nth-child(2),
.sx2 > video:nth-child(2) {
  grid-row: span 1;
  grid-column: 1 / span 6;
}
.sx2 > img:nth-child(3),
.sx2 > video:nth-child(3) {
  grid-row: span 2;
  grid-column: 7 / span 6;
  height: 100%;
}
.sx1 > img:nth-child(1),
.sx1 > video:nth-child(1) {
  grid-row: span 2;

  grid-column: 1 / span 6;
  height: 100%;
}
.sx1 > img:nth-child(2),
.sx1 > video:nth-child(2) {
  grid-row: span 1;
  grid-column: 7 / span 6;
}
.sx1 > img:nth-child(3),
.sx1 > video:nth-child(3) {
  grid-row: span 1;
  grid-column: 7 / span 6;
}
.bigsx > img:nth-child(1),
.bigsx > video:nth-child(1) {
  grid-column: span 8;
}
.bigsx > img:nth-child(2),
.bigsx > video:nth-child(2) {
  grid-column: span 4;
  height: 100%;
}
.bigdx > img:nth-child(1),
.bigdx > video:nth-child(1) {
  grid-column: span 4;
  height: 100%;
}
.bigdx > img:nth-child(2),
.bigdx > video:nth-child(2) {
  grid-column: span 8;
}
.imgsxTestodx video,
.imgsxTestodx img {
  aspect-ratio: 4/5;
  height: 100%;
  grid-column: span 6;
}
.imgsxTestodx .testoImgSingle {
  grid-column: span 6;
  color: #006cd8;
  font-size: 2rem;
  font-weight: bold;
}
.images2center {
  grid-column: span 6;
  aspect-ratio: 4/3;
}
.images2left {
  grid-column: 1 / span 6;
  aspect-ratio: 16/9;
}
.images2right {
  grid-column: 7 / span 6;
  aspect-ratio: 16/9;
}
.relatedWorks {
  margin: 0px 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 16px;
}
.relatedHead {
  grid-column: span 12;
  font-family: "Inter";
  font-size: 4rem;
  color: #006cd8;
}
.relatedGrid {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 16px;
}
.relatedGrid a {
  grid-column: span 4;
  aspect-ratio: 16/9;
}
.marginTop {
  padding-top: 204px;
}
.heroAbout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0px 64px;
  gap: 16px;
}
.titleAbout {
  width: 100%;
  text-align: left;
  grid-column: span 6;
  font-size: 4rem;
  color: #006cd8;
}
.wrapDescAbout {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.descAbout {
  font-size: 2rem;
  color: #006cd8;
  font-weight: bold;
}
.bannerAbout {
  padding: 96px 64px;
  width: calc(100% - 128px);
  background-color: #006cd8;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
.changeTextAbout {
  font-size: 8rem;
  font-weight: bold;
  color: white;
  line-height: 8rem;
  display: inline-block;
  white-space: nowrap;
}
.subheadBannerAbout {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  text-align: center;
}
.team {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 0px 64px;
}
.titleTeam {
  width: 100%;
  text-align: left;
  grid-column: span 6;
  font-size: 4rem;
  color: #006cd8;
}
.wrapTeam {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 16px;
  grid-column: span 6;
}
.cardTeam {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: span 1;
}
.imgPerson {
  aspect-ratio: 1/1;
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.userIcon {
  aspect-ratio: 1/1;
  border-radius: 20px;
  width: 100%;
  height: auto;
  background-color: #006cd8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapTextCardTeam {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.namePerson {
  font-size: 2rem;
  color: #006cd8;
  font-weight: bold;
}
.categoriePerson {
  font-size: 1.25rem;
  color: #006cd8;
  font-weight: 500;
}
.wrapLinks {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: start;
  align-items: center;
}
.btnAbout {
  width: 100%;
  padding: 0.75rem 0px;
  background-color: #006cd8;
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.btnAbout:hover {
  background-color: #ff9327;
  color: white;
}
.desktopHidden {
  display: none;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 48px 0;
  white-space: nowrap;
  position: relative;
}
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 256px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.logos-slide img {
  max-height: 64px;
  max-width: calc(10%-64px);
  min-width: calc(10%-64px);
  object-fit: contain;
  margin: 0px 32px;
}
.titleClienti {
  margin-left: 64px;
  margin-bottom: 32px;
  text-align: left;
  font-weight: bold;
  font-size: 4rem;
  color: #006cd8;
}
.privacyPolicyWrap {
  margin: 0px 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.privacyPolicyTitle {
  text-align: left;
  font-weight: bold;
  font-size: 4rem;
  color: #006cd8;
  grid-column: span 6;
}
.privacyPolicyContent {
  font-weight: bold;
  font-size: 2rem;
  color: #006cd8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: span 6;
}
.forminator-response-message {
  padding: 0px !important;
  color: #ff9327 !important;
  font-size: 1.5rem !important;
}
.lightbox {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99998;
}

.lightbox.active {
  display: flex;
}

.lightbox__inner {
  position: relative;
  width: calc(100% - 128px);
  max-height: 90vh;
  margin: 0px 64px 0px 64px;
}
.lightbox__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox__content img,
.lightbox__content video {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  z-index: 99999;
}

.lightbox__nav--prev {
  left: 0px;
}
.lightbox__nav--next {
  right: 0px;
}

.lightbox__close {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 780px) {
  main {
    gap: 64px;
  }
  .lavoriWrap {
    margin: 0px 16px;
  }
  .titleLavori,
  .contactsHead,
  .relatedHead,
  .titleAbout,
  .titleTeam {
    font-size: 2rem;
  }
  .lavori {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .lavoriWrap {
    gap: 16px;
  }
  .linkProgetto {
    aspect-ratio: 4/5;
    max-height: none;
    min-height: auto;
    padding: 1.5rem;
  }
  .lavori > a.is-tall {
    max-height: none;
    min-height: auto;
  }
  .lpHome:nth-child(4),
  .lpHome:nth-child(4),
  .lpHome:nth-child(5),
  .lpHome:nth-child(5),
  .lpHome:nth-child(6),
  .lpHome:nth-child(6) {
    display: none;
  }
  .btn {
    width: 100%;
    padding: 0.75rem 0px;
  }
  .banner,
  .bannerAbout {
    display: flex;
    flex-direction: column;
    padding: 64px 16px;
    gap: 64px;
    width: calc(100% - 32px);
  }
  .bannerAbout {
    min-height: 50svh;
  }
  .changeText,
  .borderRight {
    font-size: 4rem;
    line-height: 4rem;
  }
  .wrapFooter {
    margin-top: 64px;
    gap: 64px;
  }
  .contactsWrap {
    display: flex;
    flex-direction: column;
    margin: 0px 16px;
    justify-content: start;
    align-items: start;
  }
  .contactsCol {
    gap: 32px;
  }
  .footer {
    padding: 32px 16px;
  }
  .footerColsWrap,
  .col2Footer,
  .footer {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .logoFooterWrap {
    grid-column: span 2;
  }
  .footerEnd {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .navFooter {
    font-size: 3rem;
  }
  .titleSingle {
    left: 16px;
    font-size: 2rem;
  }
  .wrapPage {
    gap: 64px;
  }
  .infoCols,
  .descrizioneSingle,
  .wrapBloccoLavoro,
  .relatedWorks {
    display: flex;
    flex-direction: column;
    margin: 0px 16px;
  }
  .relatedGrid {
    display: flex;
    flex-direction: column;
  }
  .chip {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
  .heroAbout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0px 16px;
  }
  .descAbout {
    font-size: 1.5rem;
  }
  .changeTextAbout,
  .borderRight {
    font-size: 4rem;
    line-height: 4rem;
  }
  .team {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0px 16px;
  }
  .wrapTeam {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .titleClienti {
    font-size: 2rem;
    margin-left: 16px;
    margin-bottom: 16px;
  }
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 64px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  .header {
    width: calc(100% - 32px);
    padding: 32px 16px;
    mix-blend-mode: normal;
  }
  .headerNav {
    height: 0px;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    justify-content: center; /* vertical centering */
    align-items: center; /* horizontal centering */
  }
  .hamburger,
  .logoHeader {
    z-index: 10000000000;
  }

  .headerNav a {
    font-size: 2rem;
    opacity: 0;
  }
  .desktopHidden {
    display: flex;
  }
  .hamburger {
    border: none;
    background-color: #006cd8;
    width: fit-content;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .openHamburger,
  .closeHamburger {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 0px;
    border: transparent;
    padding: 0px;
    margin: 0px;
  }
  .closeHamburger {
    display: none;
  }
  .privacyPolicyWrap {
    margin: 0px 16px;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .privacyPolicyTitle {
    font-size: 2rem;
  }
  .privacyPolicyContent {
    font-size: 1.5rem;
  }
  .linkProgetto::before {
    opacity: 1;
    height: 30%;
    background: linear-gradient(
      to bottom,
      rgba(0, 108, 216, 0.7) 0%,
      rgba(0, 108, 216, 0) 100%
    );
    background-color: transparent;
  }
  .linkProgetto:hover::before {
    opacity: 1;
  }
  .linkProgetto::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -9;
    background-color: #006cd8;
    opacity: 1;
    height: 30%;
    background: linear-gradient(
      to top,
      rgba(0, 108, 216, 0.7) 0%,
      rgba(0, 108, 216, 0) 100%
    );
    background-color: transparent;
    bottom: 0px;
    left: 0px;
  }
  .linkProgetto h1 {
    visibility: visible;
    opacity: 1;
    font-size: 1.5rem;
  }
  .header {
    transition: none;
  }
}
