

html, body {
  z-index: -100;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    overflow-x: hidden; 
    background-color: black;
    transition-delay: 30ms;
    color: whitesmoke;
    scroll-behavior: smooth;
}html.loading {
  visibility: hidden;
  opacity: 0;
}

html.loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.Smooth-Animation{
  animation: opacity 1.5s ease;
}

.SuperSmooth-Animation{
  animation: opacity 3s ease;
}
h1{
    font-family: 'Tiempos';
    margin: 0;
    margin-top: 40px;
    font-weight: 550; /* o 600, o 400 a seconda del font */
}
h2{
  font-size: 5vw;
  font-family: 'ITC';
  margin: 0;
  margin-top: 40px;
  font-weight: 700; /* o 600, o 400 a seconda del font */
}


@keyframes opacity {
  0%{
    opacity: 0%;
  }
  100%{
    opacity: 100%;
  }
}

@font-face {
    font-family: 'Tiempos Corsivo';
    src: url(fonts/TiemposHeadline-LightItalic.otf);
    
}
    
@font-face {
    font-family: 'Tiempos';
    src: url(fonts/TiemposHeadline-SemiboldItalic.otf);
    
} 
@font-face {
    font-family: 'ITC Bold';
    src: url(fonts/ITCAvantGardePro-Bold2.otf);
    
}
    
@font-face {
    font-family: 'ITC';
    src: url(fonts/ITCAvantGardePro-Medium.ttf);
    
}

@font-face {
  src: url(fonts/ITCAvantGardePro-XLt.otf);
  font-family: 'ITC Light';
}


header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 6.6em;
    padding: 0px 80px;
    width: 100%;
    z-index: 1000000000000;

    font-family: 'ITC';

    
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
  will-change: transform, opacity;
}
.scrolled{
    background-color: black;
    opacity: 1;
}

.hamburger {
    display: none;

}

.nav-bar ul{
    display: flex;
    list-style: none;
}
.nav-bar ul li a{
    display: block;
    color: #fefefe;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.2s;
    margin: 0 10px;
    text-decoration: none;
}

.nav-bar ul li a:hover{
    color: black;
    background: #fefefe;
}

.nav-bar ul li a.active{
    font-family: 'ITC';
    color: #3c4043;
    background: #fefefe;
}
@media only screen and (max-width: 10020px) {
    header {
        padding: 0 50px;
    }.video-background-fullscreen-Container h1{
      font-size: 10vw;
  }.heading h1 {
    font-size: 3vw;
  }.heading h2 {
    font-size: 2vw;
  }.autospappo{
    margin-top: 620px;
  }.video-background-fullscreen-Content h2{
    font-size: 3vw;
  }.chi-siamo{
  margin-top: 15%;
  margin-bottom: 5%;
  }.Puntini{
    font-size: 3vw;
    margin-top: 10px;
  }.work-flex{
    padding-top: 50px;
  }.video-wrapper{
    padding-left: 50px;
  }
  section h3 {

    width: 40%;
  }section p {
    font-size: 2rem;
  }section .definizione{

  font-size: 2rem;
  }
  .heading {
    transform: translateY(-30vh) translateZ(1px) scale(1.5);
  }
  section .titoletto{
    font-size: 3rem;
  }

}
@media only screen and (max-width: 900px) {
  .business-card{
    display: none;
  }
    header {
        padding: 0 30px;
    }
    .parallax{
       max-height: 50vh;
    }.heading h1 {
      font-size: 5vw;
    }
    .video-background-fullscreen-Container h1{
      font-size: 13vw;
  }.heading h2 {
    font-size: 4vw;
  }.autospappo{
    margin-top: 450px;
  }.video-background-fullscreen-Content h2{
    font-size: 4vw;
  }.chi-siamo{
    margin-top: 20%;
    margin-bottom: 10%;
    }.Puntini{
      font-size: 3vw;
      margin-top: 10px;
    }.work-flex{
      padding-top: 130px;
    }.video-wrapper{
      padding-left: 00px;
      }
      section h3 {
        width: 60%;
      }section p {
        font-size: 2rem;
      }section .definizione{

        font-size: 2rem;
        }
        .heading {
          transform: translateY(-33vh) translateZ(1px) scale(1.5);
        }
        section .titoletto{
          font-size: 3rem;
        }
}
@media only screen and (max-width: 700px) {
  .business-card{
    display: none;
  }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger .line {
        width: 30px;
        height: 3px;
        background: #fefefe;
        margin: 6px 30px;
    }
    .nav-bar {
        height: 0px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: black;
        transition: 0.2s;
        transition-delay: 0.21s;
        overflow: hidden;
    }
    .nav-bar.active {
        height: 300px;
    }

    .nav-bar ul {
        display: block;
        padding: 0;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul {
        opacity: 1;
    } 
    .nav-bar ul li a {
        margin-bottom: 12px;
    }
    .parallax{
      max-height: 50vh;
    }.heading h1 {
      font-size: 6vw;
      font-weight: 700;
    }
    .video-background-fullscreen-Container h1{
      font-size: 13vw;
  }.video-background-fullscreen-Content h2{
    font-size: 24px;
  }.chi-siamo{
    margin-top: 30%;
    margin-bottom: 10%;
    font-size: 40px;
  }.Puntini{
    font-size: 40px;
    margin-top: 15px;
  }.work-flex{
    padding-top: 15vw;
  }.video-wrapper{
  padding-left: 0px;
  }section h3 {
    width: 70%;
  }section p {
    font-size: 1rem;
    line-height: 1.8;
  }section .definizione{

    font-size: 1rem;
    line-height: 0;
    }
    section .titoletto{
      line-height: 0;
      font-size: 2.2rem;
    }
    .heading {
      transform: translateY(-33vh) translateZ(1px) scale(1.5);
    }
}


.video-background-fullscreen-Container{
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.video-background-fullscreen-Container video{
    z-index: -100;
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.logo {
    height: 50px;
    margin-right: auto;
    margin-top: 10px;
    padding-left: 30px;
}

.menu {
    left: 5%;
}

.menu a {
    font-family: 'ITC';
    color: whitesmoke;
    margin: 20px;
}

.autoscatto{
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  height: auto;
  border-radius: 10px;
  filter: blur(5px) opacity(30%);
  transition: filter 1.6s ease;
}
.autoscatto.clear {
  filter: blur(0px) opacity(100%);
}

.video-background-fullscreen-Content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    color: whitesmoke;
    width: 100%;
    max-width: 90vw;
    pointer-events: none;

}


.video-background-fullscreen-Container h1{
    font-family: 'Tiempos';
    margin: 0;
    margin-top: 40px;
}

.video-background-fullscreen-Content h2{
    font-family: 'ITC', sans-serif;
    margin: 0;
    padding-bottom: 40px;
}

.video-background-fullscreen-Container span{   
    font-family: 'Tiempos Corsivo';
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: -10;
}

.button-17 {
    align-items: center;
    pointer-events: auto !important;
    z-index: 9999;
    appearance: none;
    background-color: #ffffffe7;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "ITC";
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform,opacity;
    z-index: 0;
  }
  
  .button-17:hover {
    background: rgb(14, 14, 14);
    color: #ffffff;
  }
  
  .button-17:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
  }
  
  .button-17:focus {
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.333)
    f4;
  }
  
  .button-17:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .button-17:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
  }
  
  .button-17:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .button-17:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
  }
  
  .button-17:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .black-page {
    background-color: black;
    position: relative;
    height: auto;
    min-height: 800px;
    overflow: hidden;
   z-index: 40;
  }

.contatti {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    color: whitesmoke;
    font-family: 'ITC';
    text-decoration: none;
}
  .contatto {
    margin: 28px;
  }

  .recapiti a{
    color: whitesmoke;
  }
  .recapiti a:hover{
    color: rgb(218, 218, 218);
  }


  .contatto h1{
    font-family: 'ITC';
    font-weight: 300;
    font-size: 50px;
    margin: 0;
    margin-bottom: 0px;
  }
  @media (max-width: 600px) {
        .contatto {
            margin: 30px 10px;
        }

        .vertical-line{
          display: none;
        }

        .contatto h1 {
            font-size: 1.5em;
        }

        .recapiti a {
            font-size: 0.9em;
            word-break: break-word;
            padding: 0px;
        }
    }
    
    .About {
        align-items: center;
    }
    

    /* From Uiverse.io by neerajbaniwal */ 
.btn-shine {
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #f1f185 0, #9bdae7 10%, whitesmoke 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'ITC';
  }
  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

button {
  display: block;
  position: relative;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
  cursor: pointer;
  outline: inherit;
  z-index: 10;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.big {
  font-size: 150%;
}

.med {
  font-size: 100%;
  letter-spacing: .5px;
}

.small {
  font-size: 65%;
  letter-spacing: .5px;
}

.no-space {
  letter-spacing: 0px;
}

.business-card {
  position: absolute;
  left: 60%;
  background-color: #f4f1eb;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  height: 232.05px;
  width: 350px;
  margin: 20vh auto 0 auto;
  transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg);
  /*transform-origin: 50% 100%;*/
  box-shadow: 0;
  transition: transform .4s ease,
              box-shadow .4s ease;
}

.business-card:hover {
  cursor: pointer;
  transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) translateZ(10px);
  box-shadow: 20px 20px 20px rgba(0, 0, 0, .4);
}

.business-card:focus {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(10px);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .4);
}

.business-card:focus::before {
  transform: skewX(0deg) translateX(0px) translateY(0px);
  height: 0px;
}

.business-card:focus::after {
  transform: skewY(0deg) translateX(0px) translateY(0px);
  width: 0px;
}

.business-card::before,
.business-card::after {
  content: "";
  position: absolute;
  display: block;
  background-color: grey;
  transition: transform .4s ease,
              height .4s ease,
              width .4s ease;
}

.business-card::before {
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  transform: skewX(45deg) translateX(-3px) translateY(6px);
}

.business-card::after {
  height: 100%;
  width: 6px;
  top: 0;
  right: 0;
  transform: skewY(45deg) translateX(6px) translateY(-3px);
}

.row {
  display: block;
  text-align: center;
}

.row:nth-child(2) {
  margin: 35px 0 50px 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

p {
  margin: 0;
}

.vertical-line {
  width: 4px;               /* spessore sottile */
  height: 100px;            /* altezza personalizzabile */
  background-color: whitesmoke;  /* colore della linea */
  position:absolute;
  margin-top: -100px;
  margin-left: -30px;
}
.card{
  margin: 20px;
  padding: 10px;
  width: 80vw;
  max-width: 900px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, rgba(8, 4, 16, 0.333));
  border-radius: 34px;
  /* resulting css */
  z-index: 1000;
  filter: contrast(100%);
  background: rgb(15, 15, 15);}
  
.card h1{
  color: whitesmoke;
  padding-left: 10px;
  padding-top: 20px;
  font-family: 'Tiempos';
  mix-blend-mode:hard-light;
  opacity: 90%;
  padding-bottom: 0px;
  margin-bottom: 0px;

}
.card p{
  color: whitesmoke;
  padding-left: 10px;
  padding-right: 30px;
  font-size: 14px;
  font-family: 'ITC';
  mix-blend-mode:hard-light;
  opacity: 90%;
  padding-top: 0;
  margin-top: 10px;
}

.card img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}


.gallery h1{
  color: whitesmoke;

}


.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.content{
  container: figure / inline-size;
  overflow: hidden;

  display: grid;
}

.content a video{
  width: 100%;
  margin: 0px;
  padding: 0px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
}

.content .hover-text{
  position: absolute;
  align-self: end;
}

.hover-text h1{
  font-family: 'ITC';
  font-size: 1.8rem;
  padding-top: 20px;
  padding-left: 20px;
  margin: 0px;
  z-index: 100;
}
.hover-text h2{
  font-family: 'ITC';
  font-size: 0.8rem;
  padding-left: 23px;
  margin: 0px;
  z-index: 100;
  margin-bottom: 20px;
}
.hover-text h3{
  font-family: 'ITC';
  font-size: 0.8rem;
  padding-left: 20px;
  margin: 0px;
  z-index: 100;
  margin-bottom: 10px;
}

.info-work{
  max-width: 500px;
  margin-left: 7%;
  margin-right: 7%;
}

.work-vimeo {
  width: 50vw;
}

light {
  font-family: 'ITC Light';
  margin: 0;
  margin-top: 40px;
}

TiemposCorsivo {
  font-family: 'Tiempos Corsivo';
  margin: 0;
  margin-top: 40px;
}

.parallax {
  max-height: 200vh;
  display: grid;
  grid-template-areas: "stack";
}



.parallax > * {
  grid-area: stack;
  /* animation: parallax linear;
  animation-timeline: scroll(); */
  animation-delay: 0ms;
}
.parallax h2{
  font-size: 4vw;
}

section h3{
  font-family: 'ITC';
  font-size: 0.7rem;
  min-width: 120px;
  font-weight: 100;
  background-color: whitesmoke;
  color: black;
  
  padding: 10px 15px;
  padding-top: 12px;
  border-radius: 12px;
  margin-top: 270px;
  margin-bottom: 0px;
}

.titoletto{

  font-family: 'ITC';
  font-weight: 700;
  color: white;
  font-style: normal;
}

.Fonetico {
  font-family: arial;
  font-size: 1.2rem;
  color: #e0e0e0;
  font-style: normal;
}
.definizione{
  font-family: 'ITC';
  font-weight: 200;
  font-size: 2rem;
  color: white;
  font-style: normal;
}

.logoSfondo {
  width: 100%;
  opacity: 15%;
  position: absolute;
  left: 30%;
  /* --parallax-speed: 20; */
  z-index: 10;
}
.logoSfondoNoParallax {
  width: 100%;
  opacity: 15%;
  position: fixed;
  z-index: 1000000;
  left: 40%;
}


@keyframes parallax {
  to {
    transform: translateY(calc(var(--parallax-speed) * 200px));
  }
}

/* Parallax image effect handled by JS */
.logoSfondo {
  transition: transform 0.2s ease-out;
  will-change: transform;
  z-index: -100;
}



.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
  place-items: center;
}

.slider {
  margin-top: 10px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  background-color: white;
  padding: 1em 0em;
}
.slide{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* opzionale */
  height: 100%;
}

.slider img {
  width: 100px;
  height: auto;
  animation: scroll 60s linear infinite;
  mix-blend-mode: multiply;
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}

.work-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: minmax(10px, auto-fit);
  margin-top: 50px;
  color: whitesmoke;
  padding-left: 0vw;
  padding-right: 0vw;
  min-height: 80vh;
}

.work-flex .info-work {
  min-width: 300px;
  max-width: 600px;
  padding-top: 0px;
  margin-left: 0px;
  margin-right: 0;
  height: auto;

  align-self:center;
}

.work-flex .video-wrapper {
  position: relative;
  height: auto;
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}

.work-flex h1{
  margin-left: 4vw;
  margin-bottom: 0;
  font-size: 40px;
  font-family: 'ITC';
  font-weight: 700;
}
.work-flex h2{
  margin-left: 4vw;
  font-family: 'ITC';
  font-size: 17px;
  padding-right: 20px;
  margin-top: 4px;
  line-height: 1.4;
}
.work-flex p{
  margin-left: 4vw;
  font-family: 'ITC';
  font-weight: 100;
  font-size: 14px;
  white-space: pre-line;
  padding-right: 20px;
  color:rgb(241, 241, 241);
  line-height: 1.9;
}

header.hide-navbar {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

header:not(.hide-navbar) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background-color: black;
  color: white;
  padding: 40px;
  font-family: 'ITC';
  font-size: 12px;
  text-align: center;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.contacts {
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-phones div {
  margin: 5px 0;
}

.contact-email,
.contact-phones {
  color: #cccccc; /* Colore base per il testo dei contatti */
}
.contact-email a,
.contact-phones a {
  color: #dddddd; /* Colore più chiaro per i link nei contatti */
  text-decoration: underline;
}

.contact-email a:hover,
.contact-phones a:hover {
  color: white;
}

.contact-email {
  margin-bottom: 0.8em; /* Spazio sotto l'email su mobile */
}
.contact-phones div{
  margin-bottom: 0.3em;
}
.contact-phones div:last-child {
  margin-bottom: 0;
}

.parallax-about {
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
  perspective: 3px;
  padding: 0;
  margin: 0;
}
.parallax-about::-webkit-scrollbar{
  display: none;
}
body::-webkit-scrollbar{
  display: none;
}

section {
  background-size: cover;
  color: white;
  background-color: var(--bg, --color-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;


  &.image {
    background-position: center center;
    transform: translateZ(-1px) scale(1.5);
    /* Force the background image to fill the whole element. */
    background-size: cover;
    /* Keep the image from overlapping sibling elements. */
    z-index: -1;
    height: 70vh;
    margin-bottom: 0px;
    opacity: 5%;
  }
  &.text {
    height: 10vh;
  }
  &.heading {
    z-index: 200;
    padding-left: 30%;
    padding-right: 30%;
  }
  &.heading h1 {
    word-wrap:normal;
    font-family: 'ITC';
    text-align: center;
    font-weight: 700; /* o 600, o 400 a seconda del font */
    line-height: 1;
    letter-spacing: 0.2px;
  }&.heading h2 {
    word-wrap:normal;
    font-family: 'ITC';
    text-align: center;
  }& p{
    font-family: 'ITC';
    padding: 100px 10vw;
    margin-top: 0px;
    position: relative;
    top: -90px;
    max-width: 700px;
    color: #b8b8b8;
    font-style: italic;
  }
}

.Puntini{
  color: rgba(255, 255, 255, 0.189);
}

.Puntini:hover {
  color: #ffffff65;
}


.chi-siamo{
  padding: 6%;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0px;
}
.white-line {
  border: none;
  border-top: 1px solid white;
  margin: 20px 0; /* opzionale, per spazio sopra e sotto */
  margin-top: 10px;
}

