.IntroIT {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 100000;
}

.superBig {
  position: relative;
  overflow: hidden;
}

@-webkit-keyframes animazioneAfter {
  0% {
    bottom: 50%;
    left: 0;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  25% {
    bottom: 90%;
    left: 50%;
    -webkit-box-shadow: -19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: -19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  50% {
    bottom: 50%;
    left: 95%;
    -webkit-box-shadow: 19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  75% {
    bottom: 0%;
    left: 50%;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  100% {
    bottom: 50%;
    left: 0;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
}

@keyframes animazioneAfter {
  0% {
    bottom: 50%;
    left: 0;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  25% {
    bottom: 90%;
    left: 50%;
    -webkit-box-shadow: -19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: -19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  50% {
    bottom: 50%;
    left: 95%;
    -webkit-box-shadow: 19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 19px 0px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  75% {
    bottom: 0%;
    left: 50%;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
  100% {
    bottom: 50%;
    left: 0;
    -webkit-box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
            box-shadow: 0 19px 28px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }
}

#slide2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: red;
  will-change: contents;
  -webkit-animation: animazioneAfter 20s infinite linear;
          animation: animazioneAfter 20s infinite linear;
}

@-webkit-keyframes animazioneBigContainer {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

@keyframes animazioneBigContainer {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

.animazioneBigContainer {
  -webkit-animation: animazioneBigContainer 0.5s forwards;
          animation: animazioneBigContainer 0.5s forwards;
}

.containerAnimazione {
  will-change: contents;
  opacity: 0;
  height: 85%;
  width: 0%;
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 30px;
  position: relative;
  background: rgba(192, 192, 192, 0.25);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  z-index: 11;
  overflow: hidden;
}

@-webkit-keyframes internoBlockAni {
  from {
    height: 0%;
  }
  to {
    height: 92%;
  }
}

@keyframes internoBlockAni {
  from {
    height: 0%;
  }
  to {
    height: 92%;
  }
}

.animazioneinternoBlockAni {
  -webkit-animation: internoBlockAni 0.5s forwards;
          animation: internoBlockAni 0.5s forwards;
}

.internoBlock {
  will-change: contents;
  background-color: #158980;
  -webkit-transform-origin: top;
          transform-origin: top;
  height: 0px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  position: relative;
}

@-webkit-keyframes animazioneBottoni {
  from {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
  to {
    width: 12%;
    height: 8%;
    opacity: 1;
  }
}

@keyframes animazioneBottoni {
  from {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
  to {
    width: 12%;
    height: 8%;
    opacity: 1;
  }
}

.animazioneBottoniAni {
  -webkit-animation: animazioneBottoni forwards 0.5s;
          animation: animazioneBottoni forwards 0.5s;
}

@-webkit-keyframes animazioneDue {
  from {
    background-color: #f2f2f2;
  }
  to {
    background-color: #1dc2b4;
  }
}

@keyframes animazioneDue {
  from {
    background-color: #f2f2f2;
  }
  to {
    background-color: #1dc2b4;
  }
}

.animation2Activator {
  -webkit-animation: animazioneDue 0.5s forwards;
          animation: animazioneDue 0.5s forwards;
}

.bottoniAni {
  background: none;
  border: #383838 solid 1px;
  padding: 0;
  width: 0%;
  height: 5%;
  position: absolute;
  bottom: 10%;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none !important;
}

.bottone1 {
  left: 5%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  color: white;
  font-weight: 600;
  background-color: #383838;
}

.bottone1:hover {
  background: none;
  color: #383838;
  border: solid 1px #383838;
}

.bottone2 {
  left: 20%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  border: #e72525 solid 2px;
  color: #383838;
  font-weight: 600;
}

.bottone2:hover {
  background: #e72525;
  color: white;
}

@-webkit-keyframes textAnimation1 {
  from {
    top: 25%;
    opacity: 0;
  }
  to {
    top: 15%;
    opacity: 1;
  }
}

@keyframes textAnimation1 {
  from {
    top: 25%;
    opacity: 0;
  }
  to {
    top: 15%;
    opacity: 1;
  }
}

.textOneActivator {
  -webkit-animation: textAnimation1 forwards 0.5s;
          animation: textAnimation1 forwards 0.5s;
}

@-webkit-keyframes textAnimation2 {
  from {
    top: 35%;
    opacity: 0;
  }
  to {
    top: 25%;
    opacity: 1;
  }
}

@keyframes textAnimation2 {
  from {
    top: 35%;
    opacity: 0;
  }
  to {
    top: 25%;
    opacity: 1;
  }
}

.textTwoActivator {
  -webkit-animation: textAnimation2 forwards 0.5s;
          animation: textAnimation2 forwards 0.5s;
}

.websiteText:nth-of-type(1) {
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 0;
  opacity: 0;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 30px;
}

.websiteText:nth-of-type(2) {
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 0;
  opacity: 0;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 30px;
}

@-webkit-keyframes hrAnimation {
  from {
    width: 0%;
  }
  to {
    width: 40%;
  }
}

@keyframes hrAnimation {
  from {
    width: 0%;
  }
  to {
    width: 40%;
  }
}

.hrActivator {
  -webkit-animation: hrAnimation 0.5s forwards;
          animation: hrAnimation 0.5s forwards;
}

.divider {
  will-change: contents;
  width: 0%;
  height: 1px !important;
  opacity: 1;
  background-color: #158980;
  position: absolute;
  top: 35%;
  left: 5%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes animazioneCerchi {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.circleActivator {
  -webkit-animation: animazioneCerchi 2s infinite;
          animation: animazioneCerchi 2s infinite;
}

.internoBlock span:nth-of-type(1) {
  will-change: contents;
  position: absolute;
  bottom: 10%;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  opacity: 0;
  border: solid white 1px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.internoBlock span:nth-of-type(2) {
  will-change: contents;
  position: absolute;
  bottom: 9%;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  opacity: 0;
  border: solid white 1px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.internoBlock span:nth-of-type(3) {
  will-change: contents;
  position: absolute;
  bottom: 8%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  opacity: 0;
  border: solid white 1px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.internoBlock span:nth-of-type(4) {
  will-change: contents;
  position: absolute;
  bottom: 7%;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  opacity: 0;
  border: solid white 1px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes iconReveals {
  from {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  to {
    opacity: 1;
    width: 30px;
    height: 30px;
  }
}

@keyframes iconReveals {
  from {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  to {
    opacity: 1;
    width: 30px;
    height: 30px;
  }
}

.iconActivator {
  -webkit-animation: iconReveals 0.5s forwards !important;
          animation: iconReveals 0.5s forwards !important;
}

@-webkit-keyframes paraAndTitleAniamation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.paraActivator {
  -webkit-animation: paraAndTitleAniamation 1s forwards;
          animation: paraAndTitleAniamation 1s forwards;
}

.iconContainer {
  position: absolute;
  top: 45%;
  left: 3%;
}

.iconContainer p {
  margin-top: 10px;
  opacity: 0;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.iconContainer span {
  opacity: 0;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.icons {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
  width: 0px;
  height: 0px;
  opacity: 0;
}

@-webkit-keyframes immagineAni {
  from {
    top: 100%;
  }
  to {
    bottom: 0;
  }
}

@keyframes immagineAni {
  from {
    top: 100%;
  }
  to {
    bottom: 0;
  }
}

.manoActivator {
  -webkit-animation: immagineAni 1s forwards;
          animation: immagineAni 1s forwards;
}

.mano {
  will-change: contents;
  width: 100%;
  height: 90%;
  position: absolute;
  left: -1%;
  z-index: 12;
  bottom: -100%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  pointer-events: none;
}

.scrittaSniper {
  position: absolute;
  width: 270px;
  height: 80px;
  left: 15%;
  top: 20%;
  opacity: 0;
  -webkit-animation: paraAndTitleAniamation 0.5s forwards;
          animation: paraAndTitleAniamation 0.5s forwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.menuWebImage {
  width: 30px;
  height: 30px;
  margin-top: 15px;
}

.bottoneTop {
  color: white;
  width: 90px;
  height: 40px;
  background-color: #383838;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 13px;
  border: 0;
  font-size: 14px;
  outline: none !important;
}

@-webkit-keyframes animazioneLogo {
  from {
    width: 0px;
    height: 0px;
  }
  to {
    width: 40px;
    height: 40px;
  }
}

@keyframes animazioneLogo {
  from {
    width: 0px;
    height: 0px;
  }
  to {
    width: 40px;
    height: 40px;
  }
}

.activateLogo {
  -webkit-animation: animazioneLogo 0.5s forwards;
          animation: animazioneLogo 0.5s forwards;
}

.logoWeb {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.webNav {
  padding-right: 10px;
  margin-top: 45px !important;
  margin-left: 2.5%;
}

.webNav span {
  font-size: 13px;
}

@media (max-width: 480px) {
  @-webkit-keyframes textAnimation1 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 20%;
      opacity: 1;
    }
  }
  @keyframes textAnimation1 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 20%;
      opacity: 1;
    }
  }
  @-webkit-keyframes textAnimation2 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 25%;
      opacity: 1;
    }
  }
  @keyframes textAnimation2 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 25%;
      opacity: 1;
    }
  }
  .containerAnimazione {
    border-radius: 0;
  }
  .mano {
    display: none;
  }
  .websiteText:nth-of-type(1) {
    left: 11%;
    font-size: 18px;
  }
  .websiteText:nth-of-type(2) {
    left: 11%;
    font-size: 18px;
  }
  .divider {
    left: 11%;
    top: 30%;
  }
  .icons {
    margin-top: -40px;
  }
  .internoBlock {
    display: none;
  }
  .superBig {
    padding: 0 !important;
  }
  .iconContainer {
    width: 100% !important;
  }
  .bottone1 {
    left: 11%;
  }
  .bottone2 {
    left: 41%;
  }
  @-webkit-keyframes hrAnimation {
    from {
      width: 0%;
    }
    to {
      width: 80%;
    }
  }
  @keyframes hrAnimation {
    from {
      width: 0%;
    }
    to {
      width: 80%;
    }
  }
  @-webkit-keyframes animazioneBigContainer {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 100%;
    }
  }
  @keyframes animazioneBigContainer {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 100%;
    }
  }
  .containerAnimazione {
    height: 100%;
  }
  @-webkit-keyframes animazioneBottoni {
    from {
      width: 0%;
      height: 0%;
      opacity: 0;
    }
    to {
      width: 25%;
      height: 8%;
      opacity: 1;
    }
  }
  @keyframes animazioneBottoni {
    from {
      width: 0%;
      height: 0%;
      opacity: 0;
    }
    to {
      width: 25%;
      height: 8%;
      opacity: 1;
    }
  }
  .iconContainer {
    position: absolute !important;
    left: 5%;
  }
  .iconContainer p {
    font-size: 12px;
  }
  .iconContainer span {
    font-size: 15px;
    display: block;
  }
  .webNav {
    margin-left: 0;
  }
  .logoWeb {
    position: absolute;
    left: 12%;
    top: 6%;
  }
  #slide2::after {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  #slide2::after {
    display: none;
  }
  @-webkit-keyframes animazioneBigContainer {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 95%;
    }
  }
  @keyframes animazioneBigContainer {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 95%;
    }
  }
  @-webkit-keyframes textAnimation1 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 25%;
      opacity: 1;
    }
  }
  @keyframes textAnimation1 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 25%;
      opacity: 1;
    }
  }
  @-webkit-keyframes textAnimation2 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 30%;
      opacity: 1;
    }
  }
  @keyframes textAnimation2 {
    from {
      top: 35%;
      opacity: 0;
    }
    to {
      top: 30%;
      opacity: 1;
    }
  }
  .containerAnimazione {
    height: 50% !important;
    margin-top: 20% !important;
  }
  @-webkit-keyframes animazioneBottoni {
    from {
      width: 0%;
      height: 0%;
      opacity: 0;
    }
    to {
      width: 10%;
      height: 8%;
      opacity: 1;
    }
  }
  @keyframes animazioneBottoni {
    from {
      width: 0%;
      height: 0%;
      opacity: 0;
    }
    to {
      width: 10%;
      height: 8%;
      opacity: 1;
    }
  }
  .bottoniAni {
    font-size: 14px;
  }
  .scrittaSniper {
    width: 180px;
    height: 50px;
  }
  .websiteText:nth-of-type(1) {
    font-size: 18px;
  }
  .websiteText:nth-of-type(2) {
    font-size: 18px;
  }
  .mano {
    height: 80%;
  }
  .iconContainer p {
    font-size: 12px;
  }
  .iconContainer span {
    font-size: 15px;
  }
  @-webkit-keyframes iconReveals {
    from {
      opacity: 0;
      width: 0px;
      height: 0px;
    }
    to {
      opacity: 0;
      width: 25px;
      height: 25px;
    }
  }
  @keyframes iconReveals {
    from {
      opacity: 0;
      width: 0px;
      height: 0px;
    }
    to {
      opacity: 0;
      width: 25px;
      height: 25px;
    }
  }
  .menuWebImage {
    width: 20px;
    height: 20px;
  }
  .bottoneTop {
    width: 70px;
    height: 30px;
    font-size: 12px;
  }
  .logoWeb {
    position: absolute;
    top: 3%;
    left: 5%;
  }
}

@media (min-width: 1030px) and (max-width: 1466px) {
  .logoWeb {
    position: absolute;
    left: 5%;
    top: 5.4%;
  }
  .websiteText:nth-of-type(1) {
    font-size: 22px;
  }
  .websiteText:nth-of-type(2) {
    font-size: 22px;
  }
}
/*# sourceMappingURL=stile1.css.map */