* {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  font-weight: 400;
  width: 100%;
  background-color: #333333;
  color: #000000;
  padding: 0;
  margin: 0;
  line-height: 1.2;
  cursor: none !important;
}
a {
  cursor: none !important;
}
.div1600 {
  width: 1600px;
  margin: 0 auto;
}
.header {
  width: 100%;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
}
.header .header-container {
  display: flex;
}
.header .header-container .header-left {
  width: 600px;
}
.header .header-container .header-left .logo {
  width: 100%;
}
.header .header-container .header-left .logo img {
  width: 100%;
}
.header .header-container .header-left .header-text {
  padding: 30px 0 0 110px;
}
.header .header-container .header-left .header-text h1 {
  font-size: 55px;
  color: #000000;
  font-weight: 700;
}
.header .header-container .header-left .header-text p {
  font-size: 23px;
  font-weight: 400;
}
.header .header-container .header-right {
  flex: 1;
  padding-top: 150px;
}
.header .header-container .header-right .slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}
.header .header-container .header-right .slider {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header .header-container .header-right .slide {
  position: absolute;
  width: 500px;
  height: 350px;
  left: 50%;
  top: 40%;
  transform-origin: center center;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header .header-container .header-right .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .header-container .header-right .slide:nth-child(1) {
  transform: translate(-50%, -50%) translateZ(0) scale(1);
  z-index: 5;
}
.header .header-container .header-right .slide:nth-child(2) {
  transform: translate(-50%, -50%) translateX(280px) translateZ(-150px) scale(0.8);
  z-index: 4;
  opacity: 0.9;
}
.header .header-container .header-right .slide:nth-child(3) {
  transform: translate(-30%, -30%) translateX(180px) translateY(-10px) translateZ(-150px) scale(0.6);
  z-index: 2;
  opacity: 0.6;
}
.header .header-container .header-right .slide:nth-child(4) {
  transform: translate(-30%, -30%) translateX(-180px) translateY(-10px) translateZ(-150px) scale(0.6);
  z-index: 2;
  opacity: 0.6;
}
.header .header-container .header-right .slide:nth-child(5) {
  transform: translate(-50%, -50%) translateX(-280px) translateZ(-150px) scale(0.8);
  z-index: 4;
  opacity: 0.9;
}
.header .header-container .header-right .slider.rotating {
  animation: rotate 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(10deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.header .header-container .header-right-gestioni {
  padding-top: 190px;
}
.footer {
  padding: 90px 250px;
  background-color: #333333;
  font-size: 17px;
  color: #ffffff;
}
.footer .div1600 {
  width: 100%;
}
.footer h2 {
  font-size: 23px;
  color: #ffffff;
  font-weight: 600;
}
.footer .footer-container {
  padding-top: 19px;
  display: flex;
  gap: 70px;
}
.footer .footer-container h3 {
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
}
.footer .footer-container p {
  font-size: 15px;
  line-height: 1.5;
}
.footer .footer-container a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}
.footer .footer-container a:hover {
  text-decoration: underline;
}
.footer .footer-container .footer-right a {
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
}
.copy {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #585858;
  width: 100%;
  font-size: 13px;
  line-height: 1.7;
}
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #FFED00;
}
.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 237, 0, 0.3);
}
@media only screen and (min-width: 0px) and (max-width: 1700px) {
  .div1600 {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .footer {
    padding: 70px 90px;
    font-size: 16px;
  }
  .footer h2 {
    font-size: 21px;
  }
  .footer .footer-container {
    padding-top: 15px;
    gap: 60px;
  }
  .footer .footer-container h3 {
    font-size: 16px;
  }
  .footer .footer-container p {
    font-size: 15px;
  }
  .footer .footer-container .footer-right a {
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1500px) {
  .header {
    padding-bottom: 80px;
  }
  .header .header-container .header-left {
    width: 500px;
  }
  .header .header-container .header-left .header-text {
    padding: 25px 0 0 90px;
  }
  .header .header-container .header-left .header-text h1 {
    font-size: 45px;
  }
  .header .header-container .header-left .header-text p {
    font-size: 19px;
  }
  .header .header-container .header-right {
    padding-top: 130px;
  }
  .header .header-container .header-right .slider-container {
    height: 350px;
  }
  .header .header-container .header-right .slide {
    width: 450px;
    height: 300px;
  }
  .header .header-container .header-right-gestioni {
    padding-top: 160px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1350px) {
  .header {
    padding-bottom: 80px;
  }
  .header .header-container .header-left {
    width: 430px;
  }
  .header .header-container .header-left .header-text {
    padding: 25px 0 0 70px;
  }
  .header .header-container .header-left .header-text h1 {
    font-size: 37px;
  }
  .header .header-container .header-left .header-text p {
    font-size: 18px;
  }
  .header .header-container .header-right {
    padding-top: 130px;
  }
  .header .header-container .header-right .slider-container {
    height: 300px;
  }
  .header .header-container .header-right .slide {
    width: 350px;
    height: 250px;
  }
  .header .header-container .header-right-gestioni {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
  .header {
    padding-bottom: 50px;
  }
  .header .header-container {
    flex-direction: column;
  }
  .header .header-container .header-left {
    text-align: center;
    width: 100%;
  }
  .header .header-container .header-left .logo {
    width: 400px;
    margin: 0 auto;
  }
  .header .header-container .header-left .header-text {
    padding: 25px 0 0 0;
  }
  .header .header-container .header-left .header-text h1 {
    font-size: 37px;
  }
  .header .header-container .header-left .header-text p {
    font-size: 18px;
  }
  .header .header-container .header-right {
    padding-top: 90px;
  }
  .header .header-container .header-right .slider-container {
    height: 300px;
  }
  .header .header-container .header-right .slide {
    width: 350px;
    height: 250px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1023px) {
  .footer {
    padding: 50px 25px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .div1600 {
    padding: 0 9px;
  }
  .header {
    padding-bottom: 30px;
  }
  .header .header-container .header-left .logo {
    width: 350px;
  }
  .header .header-container .header-left .header-text {
    padding: 19px 0 0 0;
  }
  .header .header-container .header-left .header-text h1 {
    font-size: 33px;
  }
  .header .header-container .header-left .header-text p {
    font-size: 17px;
  }
  .footer {
    padding: 50px 15px;
    font-size: 15px;
  }
  .footer h2 {
    font-size: 18px;
  }
  .footer .footer-container {
    padding-top: 13px;
    gap: 35px;
  }
  .footer .footer-container h3 {
    font-size: 15px;
  }
  .footer .footer-container p {
    font-size: 14px;
  }
  .footer .footer-container .footer-right a {
    padding-bottom: 13px;
  }
  .copy span {
    display: block;
    font-size: 0;
  }
}
@media only screen and (min-width: 0px) and (max-width: 500px) {
  .header {
    padding-bottom: 19px;
  }
  .header .header-container .header-left .logo {
    width: 300px;
  }
  .header .header-container .header-left .header-text {
    padding: 15px 0 0 0;
  }
  .header .header-container .header-left .header-text h1 {
    font-size: 29px;
  }
  .header .header-container .header-left .header-text p {
    font-size: 16px;
  }
  .header .header-container .header-right {
    padding-top: 60px;
  }
  .header .header-container .header-right .slider-container {
    height: 290px;
  }
  .header .header-container .header-right .slide {
    width: 310px;
    height: 230px;
  }
  .footer {
    padding: 35px 15px;
    font-size: 14px;
  }
  .footer h2 {
    font-size: 18px;
  }
  .footer .footer-container {
    padding-top: 11px;
    flex-direction: column;
    gap: 25px;
  }
  .footer .footer-container h3 {
    font-size: 14px;
  }
  .footer .footer-container p {
    font-size: 13px;
  }
  .footer .footer-container .footer-right a {
    padding-bottom: 13px;
  }
}
