
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    padding: 0;
    margin: 0;
    
}

button{
    cursor: pointer;
}

body{
    background-color: #fff;
}



.regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  nav{
    position: fixed;
    transform: translate(-50%,0);
    top: 0;
    left: 50%;
    height: 70px;
    width: 100vw;
/* From https://css.glass */
background: rgba(255, 255, 255, 0.25);

box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10.5px);
-webkit-backdrop-filter: blur(10.5px);
border: 1px solid rgba(255, 255, 255, 0.39);
    z-index: 2;
  }


  nav h3{
    position: absolute;
    transform: translate(0,-50%);
    top: 50%;
   /* left: calc(50% - 90vw); */
   left: 50px;
    font-size: 35px;
    color: #000000;
  }

  .small{
    display: none;
    font-size: 14px;
    margin-left: 0px;
  }


  .herosection{
    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 0%;
    width: 100vw;
    height: 510px;
   
  }

#heromobilepic{

    position: absolute;
    transform: translate(-50%,0);
    top: -0px;
    left: 50%;
    width: 100%;
    height: auto;
   
    display: block;
}

  .herosection img{
    display: none;
    width: 100vw;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: -0px;
    z-index: 1;
    height: 100%;

  }  
  
  .herosection h1{
    position: relative;
    transform: translate(-50%,-50%);
    font-size: 31px;
    left: 50%;
    top: 45%;
    z-index: 2;
    color: #fff;
    line-height: 48px;
    width: 90%;

  }
  .herosection button{
    position: absolute;

    transform: translate(0%,-50%);
    font-size: 19px;
    left: 5%;
    top: 75%;
    z-index: 2;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
  }

  .section2{
    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 600px;
    width: 100vw;
    height: 1230px;
    background-color: rgb(248, 248, 248);
  }


  .section2 .container{
    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 10%;
    width: 90vw;
    height: 530px;

 
  }

  .section2 .container h2{
    position: absolute;
    width: max-content;
    transform: translateX(-50%);
    left: 50%;
    margin-top: 16px;
    font-size: 38px;
  }

  .section2 .container p{
    position: absolute;
    width: 80%;
    transform: translateX(-50%);
    left: 50%;
    top: 100px;
    font-size: 16px;

  }
  .section2 .container img{
    transform: translate(-50%,0%);
    position: absolute;
    height: 180px;
    left: 50%;
    top: 154%;
    border-radius: 15px;
  }

  .section2 button{
   
    transform: translate(0%,-50%);
    font-size: 19px;
    left: 0;
    margin-top: 52px;

 
    z-index: 2;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    background-color: #D98352;
    color: #fff;
    display: none;
  }

  .section3{
    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 1800px;
    width: 90vw;
    height: 530px;
    
  }


  .section3 h2{
    position: absolute;
    transform: translate(-50%,0);
    top: 80px;
    left: 50%;
    font-size: 28px;
    width: max-content;
  }
  

  .section3 p{
    position: absolute;
    font-size: 16px;
    line-height: 20px;
    transform: translate(-50%,0);
    top: 150px;
    left: 50%;
    width: 85vw;
    text-align: center;

  }



.wrapper {

    margin-top: 230px;

    width: 80%;
    max-width: 90vw;
    margin-inline: auto;
    position: relative;
    height: 140px;

    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgb(0,0,0,0),
        rgb(0,0,0,1)20%,
        rgb(0,0,0,1)80%,
        rgb(0,0,0,0)
        );
}


.wrapper:hover .item {
    animation-play-state: paused; /* Blocca l'animazione */
}





.item{

    width: 200px; /* Imposta la larghezza delle immagini */
    height: 70px; /* Mantiene le proporzioni delle immagini */
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px*5), 100%);
    animation-name: scrollleft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

}


.item:hover{

}


.item img{

    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;

}



.item1 { animation-delay: calc(30s/5 * (5 - 1) * -1); }
.item2 { animation-delay: calc(30s/5 * (5 - 1) * -2); }
.item3 { animation-delay: calc(30s/5 * (5 - 1) * -3); }
.item4 { animation-delay: calc(30s/5 * (5 - 1) * -4); }
.item5 { animation-delay: calc(30s/5 * (5 - 1) * -5); }



.item6 { animation-delay: calc(30s/5 * (5 - 1) * -1); }
.item7 { animation-delay: calc(30s/5 * (5 - 1) * -2); }
.item8 { animation-delay: calc(30s/5 * (5 - 1) * -3); }
.item9 { animation-delay: calc(30s/5 * (5 - 1) * -4); }
.item10 { animation-delay: calc(30s/5 * (5 - 1) * -5); }


@keyframes scrollleft {


    to{
        left: -200px;
    }


}





@keyframes scrollright {
    from {
        right: calc(160% + 200px); /* Inizia fuori dal contenitore a destra */
    }
    to {
        right: -730px; /* Termina fuori dal contenitore a sinistra */
    }
}

.wrapper2 {
    margin-top: -40px;
    width: 80%;
    max-width: 90vw;
    margin-inline: auto;
    position: relative;
    height: 140px;
    overflow: hidden; /* Nasconde gli elementi fuori dal contenitore */
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0)
    );
}






.wrapper:hover .itemx {
    animation-play-state: paused; /* Blocca l'animazione */
}




.itemx {
    width: 200px; /* Imposta la larghezza delle immagini */
    height: 70px; /* Mantiene le proporzioni delle immagini */
    border-radius: 6px;
    position: absolute;
    right: calc(100% + 200px); /* Posizione iniziale fuori dal contenitore */
    animation-name: scrollright;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.itemx:hover{

}


.itemx img{

    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;

}




.section4{
    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 2350px;
    width: 100vw;
    height: 1030px;
    background-color: rgb(248, 248, 248);
}






.section4 .container {
 

    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 90vw   ;
    border-radius: 10px;
    height: 100%;

}
.section4  .contact1 {

    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: 10%;
    width: 250px;
    height  : 250px;

 
}

.section4 .contact1 p , .section4 .contact2 p , .section4 .contact3 p{
    text-align: center;
    margin-top: 20px;
}


.section4 .contact1 img{
    position: relative;
    transform: translate(-50%,0);
    top: 0px;
    left: 50%;
    width: 40px;
    padding: 10px;
    border-radius: 50%;
    background-color: #D98352;
}

.section4  .contact2 {

    position: absolute;
    transform: translate(-50%,0%);
    left: 50%;
    top: calc(10% + 250px);

  
    width: 250px;
    height  : 250px;
 
}

.section4 .contact2 img{
    position: relative;
    transform: translate(-50%,0);
    top: 0px;
    left: 50%;
    width: 40px;
    padding: 10px;
    border-radius: 50%;
    background-color: #D98352;
}


.section4  .contact3 {

    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: calc(20% + 500px);


    width: 250px;
    height  : 250px;
 
}


.section4 .contact3 img{
    position: relative;
    transform: translate(-50%,0);
    top: 0px;
    left: 50%;
    width: 40px;
    padding: 10px;
    border-radius: 50%;
    background-color: #D98352;
}




footer {
    position: absolute;
    transform: translate(-50%,0%);
    top: 3250px;
    left: 50%;
    width: 100vw;
    height: 600px;
    background-color: #D98352;
    color: white;
    font-size: 12px;
  
 

    
}

.footer-content {

    margin-top: 130px;

   
}

.footer-content h3{
    position: relative;
    transform: translate(0%,0%);
    top: 0px;
    left: 0%;
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
  
    


}


.footer-content .logo {

    position: absolute;
    transform: translate(0,0);
    top: 5%;


    font-size: 38px; 

   
    margin: 0!important;
    padding: 0!important;
    
    left: 10%;
}

.footer-section {
 
    font-family: 'Poppins';
    text-align: left;

    width: 200px;
    height: 200px;
}

.footer-section ul {
    list-style: none; /* Rimuove il pallino dell'elenco */
    padding: 0; /* Rimuove l'eventuale padding predefinito */
    margin: 0; /* Rimuove l'eventuale margine predefinito */
    font-family: Arial, sans-serif;
}

.footer-section ul li a {
    text-decoration: none; /* Rimuove la sottolineatura */
    color: white; /* Imposta il colore del testo */
   
}



.footer-section ul li{
    margin-top: 6px;
    width: max-content;
}



.sec1{
    position: absolute;
    transform: translate(0%,0);
    left: 10%;
}

.sec2{
    position: absolute;
    transform: translate(-100%,0);
    left: 95%;
}

.sec3{
    position: absolute;
    transform: translate(-0%,0);
    left: 10%;
    top: 50%;
}