/* ---------------------------------------------- */
/* SPIN by Terno Scorrevoli --------------------- */
/* ---------------------------------------------- */
html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

#spin {
  margin-top: 100px;
  line-height: 0;
}
#spin .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
#spin section {
  padding: 50px 0;
  position: relative;
}
#spin .bgGrey {
  background-color: #EAEAEB;
}
#spin .presentation {
  text-align: left;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(20px, 2vw, 26px);
}
#spin .presentation p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(20px, 2vw, 26px);
}
#spin .presentation h1 {
  text-align: center;
  border-bottom: 0;
  color: #FFF;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 120%;
}
#spin .presentation h2, #spin .presentation h3 {
  text-align: left;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 120%;
}
#spin .presentation h2 span, #spin .presentation h3 span {
  color: #D6001C;
}
#spin .presentation h3 {
  font-size: clamp(18px, 3vw, 26px);
  margin: 0 0 40px 0;
  padding: 0;
  color: #707070;
}
#spin .presentation.img-container {
  padding: 0 !important;
  height: calc(100vh - 100px);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  line-height: 0;
}
#spin .presentation.img-container .container-small {
  max-width: auto;
  margin: 0;
  background: rgba(0, 0, 0, 0.75);
  height: auto;
  padding: clamp(15px, 2vw, 30px);
  text-align: center;
  margin-left: 60%;
}
#spin .presentation.img-container .container-small img {
  width: auto;
  margin-bottom: clamp(10px, 2vw, 20px);
}
#spin .presentation.scrollNext {
  height: calc(100vh - 100px);
}
#spin .presentation.gallerySpin {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#spin .presentation.gallerySpin img {
  flex: 0 0 calc(50% - 5px);
}
#spin .presentation.gallerySpin img:nth-child(1), #spin .presentation.gallerySpin img:nth-child(3) {
  margin-right: 5px;
  margin-bottom: 10px;
}
#spin .presentation.gallerySpin img:nth-child(2), #spin .presentation.gallerySpin img:nth-child(4) {
  margin-left: 5px;
  margin-bottom: 10px;
}
#spin .presentation .vantaggi-spin {
  background-color: #eaeaeb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  align-content: center;
  padding: clamp(20px, 5vw, 50px) !important;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  margin-top: clamp(20px, 2vw, 50px);
  line-height: 150%;
}
#spin .presentation .vantaggi-spin h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  border-bottom: 1px solid #D6001C;
  display: inline-block;
  padding-bottom: 10px;
}
#spin .presentation .vantaggi-spin ul {
  list-style: none;
}
#spin .presentation .vantaggi-spin ul li {
  position: relative;
  margin-bottom: 8px;
}
#spin .presentation .vantaggi-spin ul li::before {
  position: absolute;
  top: 0;
  left: -35px;
  content: url("/library/pagination/icons/checked.svg");
}
#spin .line {
  height: 1px;
  background-color: #D6001C;
  width: 100%;
  margin: clamp(5px, 2vw, 10px) 0;
  padding: 0;
  display: block;
}
#spin .btn-download {
  line-height: normal;
}

/* ---------------------------------------------------------------------------------------------------- */
/* ANIMAZIONI ----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.toAnimate {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimate.in {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  will-change: transform;
  opacity: 1;
}

.toAnimateLeft {
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  transform: translateX(-100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimateLeft.in {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  will-change: transform;
  opacity: 1;
}

.toAnimateRight {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimateRight.in {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  will-change: transform;
  opacity: 1;
}

/* ---------------------------------------------------------------------------------------------------- */
/* MEDIA QUERY ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  a.scrollDown {
    left: calc(50% - 20px);
    right: inherit;
  }
}
@media (max-width: 1023px) {
  #spin {
    margin-top: 66px;
  }
  #spin .presentation .vantaggi-spin {
    width: calc(100% - clamp(40px, 10vw, 100px));
  }
  #spin .presentation.img-container {
    height: calc(100vh - 66px);
  }
  #spin .presentation.img-container .container-small {
    margin-left: 40%;
  }
  #spin .presentation.scrollNext {
    height: auto;
  }
  #spin .presentation.scrollNext .flex {
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  #spin .logo-spin {
    width: 180px !important;
  }
}
@media (max-width: 767px) {
  #spin .logo-spin {
    display: block;
    margin: 0 auto;
    margin-bottom: clamp(10px, 2vw, 20px);
    width: 150px !important;
  }
  #spin .flex {
    flex-direction: column;
  }
  #spin .presentation.img-container {
    justify-content: center;
  }
  #spin .presentation.img-container .container-small {
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 60vw;
    height: 60vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  #spin .presentation h1 {
    color: #FFF;
    padding: 0 10px;
  }
  #spin .presentation h2 {
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 0;
  }
  #spin .presentation h3 {
    margin-bottom: 15px;
    margin-top: 0;
  }
  #spin a.scrollDown {
    display: none;
  }
}

/*# sourceMappingURL=spin.css.map */
