/* Primary style
------------------------------------------ */
*, *::after, *::before {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem;
  line-height: 1.3em;
  background-color: #EAEAEA;
  font-family: 'Source Sans Pro', sans-serif;
  color: #231F20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body, html {
  overflow-x: hidden; }

body.navigation-is-open {
  height: 100vh;
  overflow: hidden; }

a {
  color: #009964;
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  color: #231F20;
  font-weight: 700; }

.cd-image-replace {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent; }

#wrapper {
  background: #EAEAEA;
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: opacity 0.3s cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: opacity 0.3s cubic-bezier(0.91, 0.01, 0.6, 0.99); }

.navigation-is-open #wrapper {
  opacity: 0; }

/* SECTION
--------------------------------------- */
.cd-section {
  width: 100%;
  height: 100vh;
  position: relative;
  clear: both; }

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; }

.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 20px;
  width: 44px;
  height: 80px;
  cursor: pointer;
  background: url(img/scroll.svg) no-repeat center center;
  -webkit-transition: bottom 0.3s ease;
  -moz-transition: bottom 0.3s ease;
  -ms-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease; }
  .cd-scroll-down:hover {
    bottom: 10px; }

header[role="banner"] {
  text-align: right;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999; }
  header[role="banner"] a img {
    display: inline-block;
    width: 210px;
    margin-right: 20px; }
  header[role="banner"] a.user-log {
    display: inline-block;
    border-right: 1px solid #ccc;
    padding-right: 10px;
    text-align: center;
    margin-right: 10px;
    position: relative;
    top: -7px;
    opacity: 1;
    background: url(img/sprite.png) no-repeat 0 95%;
    width: 56px;
    height: 56px;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    header[role="banner"] a.user-log img {
      width: auto;
      margin-right: 0; }
    header[role="banner"] a.user-log:hover {
      opacity: 0.5; }

a.back-page {
  /* color: #fff; */
  font-weight: 700;
  position: relative;
  top: -60px;
  text-transform: uppercase;
  background-color: transparent;
  /*background-image: url(img/arroe-sx-color.png);
  background-position: 0 50%;*/
  background-image: url(img/sprite.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  height: 25px;
  padding-left: 50px;
  -webkit-transition: background-position 0.3s ease;
  -moz-transition: background-position 0.3s ease;
  -ms-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
  float: left;
  left: 40px; }
  a.back-page:hover {
    background-position: 0 0;
    opacity: 0.4;
    transition: .4s;
    -webkit-transition: .4s; }

/* Navigation trigger
------------------------------------- */
.cd-nav-trigger {
  display: block;
  position: fixed;
  z-index: 99999;
  bottom: 15px;
  right: 15px;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: #009964;
  border: 1px solid #fff;
  /* reset button style */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none; }

.cd-nav-trigger span {
  /* central dot */
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* bottom and top dots */
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: inherit; }

.cd-nav-trigger span::before {
  top: -9px; }

.cd-nav-trigger span::after {
  bottom: -9px; }

@media only screen and (min-width: 800px) {
  .cd-nav-trigger {
    display: none; } }

/* Vertical navigation
-------------------------------- */
.cd-vertical-nav {
  position: fixed;
  z-index: 99999;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: auto;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
  border-radius: 0.25em;
  background-color: #009964;
  border: 1px solid #fff; }

.cd-vertical-nav ul {
  margin: 0; }

.cd-vertical-nav a {
  display: block;
  padding: 1em;
  color: #fff;
  font-weight: bold;
  border-bottom: 1px solid rgba(58, 44, 65, 0.1);
  opacity: 0.7; }

.cd-vertical-nav a.active {
  color: #fff;
  opacity: 1; }

.cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-overflow-scrolling: touch; }

.cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent; }

.cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(58, 44, 65, 0); }

.cd-vertical-nav.open + .cd-nav-trigger span::before, .cd-vertical-nav.open + .cd-nav-trigger span::after {
  /* transform dots in 'X' icon */
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px; }

.cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px; }

.cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0; }

@media only screen and (min-width: 800px) {
  .cd-vertical-nav {
    right: 10px;
    top: 0;
    bottom: auto;
    height: 100vh;
    width: 90px;
    max-width: none;
    max-height: none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    background-color: transparent;
    display: table;
    z-index: 8;
    border: none; }
  .cd-vertical-nav ul {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-align: left; }
  .cd-vertical-nav ul li {
    height: 30px;
    line-height: 30px; }
  .cd-vertical-nav a {
    position: relative;
    padding: 0;
    display: block;
    margin: 0;
    border-bottom: none;
    font-size: 1.2rem;
    color: #231F20;
    cursor: pointer; }
  .cd-vertical-nav a.active {
    color: #009964; }
  .cd-vertical-nav a::before {
    content: '';
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    height: 2px;
    width: 50px;
    background: #231F20;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.4s, background-color 0.2s;
    -moz-transition: width 0.4s, background-color 0.2s;
    transition: width 0.4s, background-color 0.2s; }
  .cd-vertical-nav a.active::before,
  .no-touch .cd-vertical-nav a:hover::before {
    background-color: #009964; }
  .cd-vertical-nav a.active::before,
  .cd-vertical-nav a:hover::before {
    width: 20px; }
  .cd-vertical-nav .label {
    display: block;
    position: absolute;
    left: 100%;
    top: 2px;
    width: 100px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    transition: left 0.4s; }
  .cd-vertical-nav a.active .label,
  .cd-vertical-nav a:hover .label {
    left: 25px; }
  .touch .cd-vertical-nav .label {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

/* BANNER 
-------------------------------------------- */
#banner.banner-rivenditore .banner__cont-img {
  width: 48%;
  float: left;
  opacity: 0; }
  #banner.banner-rivenditore .banner__cont-img img {
    width: 100%;
    position: relative;
    left: -120px;
    opacity: 1;
    top: 100px; }

#banner.banner-rivenditore .banner__cont-img.show-start img {
  opacity: 1;
  -webkit-transform: translateX(-120px);
  transform: translateX(-120px); }

#banner .banner__testo {
  position: relative;
  top: 320px;
  width: 50%;
  float: left;
  max-width: 600px;
  opacity: 0; }
  #banner .banner__testo h2 {
    font-size: 48px;
    line-height: 47px;
    font-weight: 700;
    margin: 10px 0; }
  #banner .banner__testo h2:after {
    content: "";
    width: 160px;
    height: 1px;
    display: block;
    background-color: #282828;
    margin: 30px 0 0 0; }
  #banner .banner__testo p {
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 460px;
    line-height: 1.2em; }

#banner.banner-utilizzatore .banner__testo {
  left: 16%; }

#banner.banner-utilizzatore .banner__cont-img {
  width: 50%;
  float: right;
  opacity: 0; }
  #banner.banner-utilizzatore .banner__cont-img img {
    width: auto;
    top: 70px;
    right: 0;
    position: relative; }

.banner__btn-line, .banner__btn-line-no-link, .banner__btn-line-news {
  min-width: 150px;
  max-width: 250px;
  display: block;
  padding: 1em 2em;
  text-align: center;
  border: 1px solid #009964;
  background: none;
  color: #009964;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  width: 245px;
  margin-top: 30px;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }
  .banner__btn-line:hover, .banner__btn-line-no-link:hover, .banner__btn-line-news:hover {
    color: #fff;
    border-color: #fff; }
  .banner__btn-line::before, .banner__btn-line-no-link::before, .banner__btn-line-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #37474f;
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s; }
  .banner__btn-line:hover::before, .banner__btn-line-no-link:hover::before, .banner__btn-line-news:hover::before {
    opacity: 1;
    background-color: #009964;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.banner__btn-line-news {
  width: 290px;
  max-width: 650px;
  margin: 0 auto; }
  .banner__btn-line-news:hover {
    opacity: 1; }

#banner.banner-page {
  height: 82vh; }
  #banner.banner-page h2 {
    font-size: 72px; }
  #banner.banner-page .banner__testo {
    top: 420px; }

/* PERCHE
------------------------------------------*/
#perche {
  padding: 3em 0;
  text-align: center; }
  #perche h2 {
    font-size: 48px;
    margin-bottom: 2em; }
    #perche h2:after {
      content: "";
      display: block;
      width: 200px;
      margin: 20px auto;
      height: 1px;
      background-color: #231F20; }
  #perche .perche__item h3 {
    font-size: 18px; }
  #perche .perche__item figure {
    height: 100px;
    cursor: pointer; }
  #perche .perche__item:nth-child(4) img {
    position: relative;
    top: 15px; }
  #perche .perche__item:nth-child(3) img {
    position: relative;
    top: 10px; }
  #perche .brand {
    margin-top: 80px; }
    #perche .brand .brand__item {
      border-right: 1px solid #ccc;
      height: 150px;
      line-height: 150px; }
      #perche .brand .brand__item:nth-child(4) {
        border-right: none; }
      #perche .brand .brand__item figure img {
        max-width: 100%; }

.main-perche {
  width: 100%;
  height: 0px;
  background-image: linear-gradient(77deg, #009964 0%, #00CA9E 73%);
  color: #fff;
  text-align: left;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.7s cubic-bezier(0.2, 1, 0.3, 1);
  -ms-transition: height 0.7s cubic-bezier(0.2, 1, 0.3, 1);
  -ms-transition: height 0.7s cubic-bezier(0.2, 1, 0.3, 1);
  transition: height 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
  .main-perche a.close-perche {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 99; }
  .main-perche .cont-perche {
    padding: 4em;
    opacity: 0;
    position: absolute; }
    .main-perche .cont-perche figure {
      float: left;
      width: 30%;
      border-right: 1px solid #fff;
      padding: 20px;
      text-align: center;
      min-height: 250px; }
      .main-perche .cont-perche figure img {
        position: relative;
        top: 20px; }
    .main-perche .cont-perche .cont-text-perche {
      float: left;
      width: 60%;
      padding: 20px; }
      .main-perche .cont-perche .cont-text-perche h3 {
        color: #fff; }

.main-perche.open {
  height: 413px; }

/* CASE HISTORY
------------------------------------------*/
#history {
  padding: 0;
  color: #fff;
  position: relative;
  height: 75vh; }
  #history img.chiave-bg {
    position: absolute;
    left: 0;
    bottom: -100px;
    display: block; }

.history__banner {
  background: transparent url(img/history.png) no-repeat 0 0;
  background-size: cover;
  position: relative;
  height: 450px;
  width: 100%;
  top: 50px;
  text-align: center; }
  .history__banner h2 {
    color: #fff;
    padding-top: 10%;
    font-size: 48px; }
  .history__banner p {
    max-width: 60%;
    margin: 0 auto; }
  .history__banner .banner__btn-line-no-link {
    margin: 20px auto; }

.history__banner.case-utilizzatore {
  background: transparent url(img/history-utilizzatore.png) no-repeat 0 0;
  background-size: cover;
  margin-top: 0;
  position: relative;
  top: -100px; }

/* CASE HISTORY
------------------------------------------*/
#media {
  padding: 99px 0px 0px 0px;
  background-color: #009964;
  background-image: linear-gradient(-251deg, #009964 1%, #00CA9E 94%);
  margin-top: 200px;
  height: 88vh; }
  #media::before {
    content: "";
    display: block;
    height: 150px;
    width: 110%;
    position: absolute;
    z-index: 1;
    top: -3px;
    background-color: #009964;
    background-image: linear-gradient(-251deg, #009964 1%, #00CA9E 94%);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  #media::after {
    content: "";
    display: block;
    height: 150px;
    width: 110%;
    position: absolute;
    z-index: 1;
    left: -10px;
    bottom: -85px;
    background-color: #009964;
    background-image: linear-gradient(-335deg, #009964 1%, #00CA9E 94%);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  #media .titolo-h {
    text-align: right;
    position: relative;
    top: -450px; }
    #media .titolo-h h2 {
      font-size: 48px;
      display: inline-block;
      text-align: left;
      position: relative;
      left: -50px; }
      #media .titolo-h h2:after {
        content: "";
        display: block;
        width: 60%;
        margin: 20px 0;
        height: 1px;
        background-color: #231F20;
        float: right;
   }
  #media .media__item, #media .grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 360px;
    background-color: #000;
    margin: 10px; }
    #media .media__item img, #media .grid-item img {
      position: relative;
      display: block;
      height: 100%;
      width: 100%;
      opacity: 0.7;
      -webkit-transition: opacity 0.35s;
      transition: opacity 0.35s; }
    #media .media__item a, #media .grid-item a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
      text-indent: -100%; }
    #media .media__item .media__item__text, #media .grid-item .media__item__text {
      color: #fff;
      text-transform: uppercase;
      font-size: 1.25em;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      text-align: left;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 3;
      padding: 2em 1em;
      width: 100%;
      height: 50%; }
      #media .media__item .media__item__text h3, #media .media__item .media__item__text p, #media .media__item .media__item__text time, #media .grid-item .media__item__text h3, #media .grid-item .media__item__text p, #media .grid-item .media__item__text time {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0); }
      #media .media__item .media__item__text time, #media .grid-item .media__item__text time {
        display: block;
        font-style: italic;
        font-size: 16px;
        font-weight: 700;
        text-transform: none; }
      #media .media__item .media__item__text h3, #media .media__item .media__item__text time, #media .grid-item .media__item__text h3, #media .grid-item .media__item__text time {
        -webkit-transition: -webkit-transform 0.35s;
        transition: transform 0.35s; }
      #media .media__item .media__item__text h3, #media .grid-item .media__item__text h3 {
        font-size: 24px;
        color: #fff;
        text-transform: none;
        margin: 5px 0; }
      #media .media__item .media__item__text p, #media .grid-item .media__item__text p {
        color: rgba(255, 255, 255, 0.8);
        opacity: 0;
        text-transform: none;
        font-size: 15px;
        -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
        transition: opacity 0.2s, transform 0.35s; }
    #media .media__item:hover img, #media .grid-item:hover img {
      opacity: 0.4; }
    #media .media__item:hover img,
    #media .media__item:hover h3, #media .media__item:hover p, #media .media__item:hover time, #media .grid-item:hover img,
    #media .grid-item:hover h3, #media .grid-item:hover p, #media .grid-item:hover time {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
    #media .media__item:hover p, #media .grid-item:hover p {
      opacity: 1;
      -webkit-transition-delay: 0.05s;
      transition-delay: 0.05s;
      -webkit-transition-duration: 0.35s;
      transition-duration: 0.35s; }
  #media .cont-media {
    position: absolute;
    top: -220px; }
  #media .media__item--small {
    height: 333px;
    margin-top: 25px;
    margin-right: 0; }
    #media .media__item--small:nth-child(2) {
      margin-top: 35px; }
  #media .grid {
    width: 100%; overflow: hidden;}
    #media .grid .grid-sizer,
    #media .grid .grid-item {
      width: 31%;
      float: left;
      margin: 1%; }
    #media .grid .grid-item--width2 {
      width: 64%;
      height: 700px; }
      #media .grid .grid-item--width2 .media__item__text {
        height: auto; }
    #media .grid .grid-item--small {
      height: 340px; }

#media.case-history {
  background-color: transparent;
  background-image: none;
  margin-top: 0px;
  height: auto;
  padding: 0; }
  #media.case-history:after {
    display: none; }
  #media.case-history:before {
    display: none; }

/* NEWS / BLOG
------------------------------------------*/
#news {
  padding-top: 200px;
  height: auto; }
  #news h2 {
    text-align: center;
    font-size: 48px;
    margin: 90px 0; }
    #news h2:after {
      content: "";
      display: block;
      width: 200px;
      margin: 20px auto;
      height: 1px;
      background-color: #231F20; }
  #news .content_news-home {
    clear: both; }
  #news .news__item__img {
    overflow: hidden;
    height: 250px;
    margin-bottom: 25px; }
    #news .news__item__img img {
      width: 100%;
      height: 100%; }
  #news h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #009964; }
  #news aside.col > h3 {
    font-size: 24px; }
  #news .news__item--home a {
    text-transform: uppercase;
    font-weight: 700;
    opacity: 1;
    font-size: 1.2rem;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    #news .news__item--home a:hover {
      opacity: 0.6; }
  #news .news__item--home {
    margin-bottom: 50px;
    min-height: 38vh; }
  #news a.all-news {
    display: inline-block;
    position: relative;
    top: 0px;
    padding-right: 56px;
    left: 10px;
    background-color: transparent;
    background-image: url(img/arrow-news.png);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    transition: background-position 0.3s ease;
    font-weight: 700;
    float: right; }
    #news a.all-news:hover {
      background-position: 100% 50%; }

#news.news-page {
  padding-top: 0; }
  #news.news-page p {
    font-size: 18px;
    line-height: 1.2em; }
  #news.news-page h1 {
    font-size: 48px;
    color: #009964; }
  #news.news-page h2 {
    text-align: left;
    font-size: 24px;
    margin: 10px 0 20px 0; }
    #news.news-page h2:after {
      display: none; }
  #news.news-page blockquote {
    border-left: 5px solid #009964;
    font-style: italic;
    font-weight: 400;
    padding: 20px; }
  #news.news-page img {
    width: 100%;margin: 15px 0;
    height: auto; }
  #news.news-page .commenti {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc; }
    #news.news-page .commenti .commento {
      overflow: hidden;
      margin: 15px 0; }
      #news.news-page .commenti .commento figure {
        width: 115px;
        height: 115px;
        overflow: hidden;
        border-radius: 50%;
        margin: 1em 15px 1em 10px;
        float: left; }
      #news.news-page .commenti .commento .cont-commento {
        float: left;
        width: 70%;
        position: relative; }
        #news.news-page .commenti .commento .cont-commento a {
          position: absolute;
          right: 0;
          top: 20px;
          left: auto;
          padding-left: 35px;
          background: transparent url(img/reply.png) no-repeat left center;
          display: inline-block;
          height: 40px;
          line-height: 40px;
          font-weight: 400;
          text-transform: none;
          color: #231F20; }
          #news.news-page .commenti .commento .cont-commento a:hover {
            background: transparent url(img/reply-h.png) no-repeat left center;
            color: #009964; }
      #news.news-page .commenti .commento h4 {
        color: #009964;
        font-size: 20px;
        margin: 20px 0 0 0; }
      #news.news-page .commenti .commento time {
        font-style: italic;
        font-size: 13px;
        font-weight: 700; }
      #news.news-page .commenti .commento p {
        font-size: 16px;
        margin-top: 5px; }
    #news.news-page .commenti .commento.comment-comment {
      padding-left: 60px;
      background: transparent url(img/freccia-comment.png) no-repeat left center; }
  #news.news-page #form-commenti {
    margin-top: 50px; }
  #news.news-page #textarea-commenti {
    background-color: #D8D8D8;
    border-radius: 30px;
    height: 250px;
    padding: 20px;
    width: 90%; }
  #news.news-page .banner__btn-line {
    margin-top: 10px; }

.content_news aside.col {
  padding: 25px; }
  .content_news aside.col article {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc; }
    .content_news aside.col article figure {
      width: 95px;
      height: 95px;
      overflow: hidden;
      -webkit-border-radius: 20%;
      -moz-border-radius: 20%;
      border-radius: 20%;
      float: left;
      margin-right: 10px;
      margin-left: 10px; }
      #news .content_news aside.col article figure img {
        height: 100%;margin: 0; }
        

#news .main-post h3 {
  font-size: 14px;
  margin-bottom: 0;
  padding-bottom: 5px; }

#news.news-page .main-post p {
  font-size: 14px;
  line-height: 1.2em;
  margin-top: 0; }

#news .main-post a {
  font-size: 14px; }
  
#news ul li {list-style: circle; font-size: 18px;}  

/* FOOTER
------------------------------------------*/
#footer {
  background-image: linear-gradient(-251deg, #009964 1%, #00CA9E 94%);
  width: 100%;
  height: 350px;
  text-align: center;
  position: relative;
  margin-top: 160px; }
  #footer::before {
    content: "";
    display: block;
    height: 100px;
    width: 110%;
    position: absolute;
    z-index: 1;
    top: -3px;
    background-image: linear-gradient(-251deg, #009964 1%, #00CA9E 94%);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  #footer .banner__btn-line {
    margin: 0 auto; }
  #footer img {
    width: 400px;
    height: auto; }
  #footer .cont-footer {
    padding-top: 60px; }
  #footer p {
    font-size: 14px;
    color: #fff;
    margin-top: 0; }
  #footer a.up img {
    width: auto; }

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: transparent url(img/sprite.png) no-repeat 0 42%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 9999;
  cursor: pointer; }

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s; }

.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1; }

.cd-top.cd-fade-out {
  opacity: 1; }

.no-touch .cd-top:hover {
  opacity: 0.5; }

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px; } }

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px; } }

/* PANEL FORM
-----------------------------------------*/
.cd-panel, .cd-panel-registrazione {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  overflow: hidden;
  /* Rectangle: */
  background-color: #009964;
  background-image: linear-gradient(-262deg, #009964 0%, #00CA9E 99%);
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition: -moz-transform 0.7s cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition: transform 0.7s cubic-bezier(0.86, 0.01, 0.77, 0.78); }
  .cd-panel h3, .cd-panel-registrazione h3 {
    color: #fff;
    font-size: 48px; }
    .cd-panel h3::after, .cd-panel-registrazione h3::after {
      content: "";
      width: 250px;
      background-color: #fff;
      height: 1px;
      margin: 10px 0;
      display: block; }

.cd-panel .cd-navigation-wrapper, .cd-panel-registrazione .cd-navigation-wrapper {
  /* all navigation content */
  height: 100%;
  -webkit-overflow-scrolling: touch;
  padding: 70px 4%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch; }
  .cd-panel .cd-navigation-wrapper a.back-panel, .cd-panel-registrazione .cd-navigation-wrapper a.back-panel {
    color: #fff;
    font-weight: 700;
    position: relative;
    top: -10px;
    text-transform: uppercase;
    background-color: transparent;
    background-image: url(img/arroe-sx.png);
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding-left: 70px;
    -webkit-transition: background-position 0.3s ease;
    -moz-transition: background-position 0.3s ease;
    -ms-transition: background-position 0.3s ease;
    transition: background-position 0.3s ease; }
    .cd-panel .cd-navigation-wrapper a.back-panel:hover, .cd-panel-registrazione .cd-navigation-wrapper a.back-panel:hover {
      background-position: 3px 50%; }

.navigation-is-open .cd-panel {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78); }

.cd-panel-registrazione.open-reg {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78); }

.cartina {
  text-align: center; }

.no-js main {
  height: auto;
  overflow: visible; }

.no-js .cd-panel {
  position: static;
  visibility: visible; }

.no-js .cd-panel .cd-paneligation-wrapper {
  height: auto;
  overflow: visible;
  padding: 100px 5%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.input-field label {
  color: #fff;
  font-size: 16px; }

/* label focus color */
.input-field input[type=text]:focus + label {
  color: #fff;
  font-size: 16px; }

/* label underline focus color */
.input-field input[type=text]:focus {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff;
  font-size: 16px; }

/* valid color */
.input-field input[type=text].valid {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff; }

/* invalid color */
.input-field input[type=text].invalid {
  border-bottom: 1px solid #d45d5d;
  box-shadow: 0 1px 0 0 #d45d5d; }

/* icon prefix focus color */
.input-field .prefix.active {
  color: #fff; }

.select-wrapper span.caret {
  color: initial;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 10px;
  display: inline-block;
  margin: auto 0;
  font-size: 10px;
  line-height: 10px;
  overflow: hidden;
  text-indent: 999px;
  width: 30px;
  height: 20px;
  background: transparent url(img/arrow-select.png) no-repeat center center; }

form.diventa-rive {
  margin-top: 60px; }

textarea.materialize-textarea {
  height: 150px; }

form.diventa-rive .btn, form.diventa-rive .btn, form.login .btn {
  background-color: #fff;
  border-radius: 30px;
  width: 200px;
  height: 50px;
  color: #009964;
  box-shadow: none;
  float: right; }

form.login {
  width: 80%; }
  form.login .btn {
    float: left; }

.cd-panel-registrazione .registra-form {
  border-left: 1px solid #fff;
  padding: 0 2em; }
  .cd-panel-registrazione .registra-form .btn {
    float: left; }

/* no-js
------------------------------------------ */
.no-js .cd-nav-trigger {
  display: none; }

.no-js .cd-vertical-nav {
  position: static;
  height: auto;
  width: 100%;
  max-width: none;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.no-js .cd-vertical-nav::before {
  display: none; }

.no-js .cd-vertical-nav ul::after {
  clear: both;
  content: "";
  display: table; }

.no-js .cd-vertical-nav li {
  display: inline-block;
  float: left; }

.no-js .cd-vertical-nav a {
  padding: 0 1em;
  margin: 1.5em 1em;
  color: #eaf2e3; }

.no-js .cd-vertical-nav a.active {
  color: #c0a672; }

.no-js .cd-vertical-nav a::after, .no-js .cd-vertical-nav a::before {
  display: none; }

.no-js .cd-vertical-nav .label {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

/* for-big-desktop-up */
@media (min-width: 1800px) {
  #footer::before {
    height: 120px; }
  #media::after {
    bottom: -120px; } }

/* for-desktop-only */
@media (max-width: 1610px) {
  #history, #media {
    height: 100vh; } }

/* for-desktop-only */
@media (max-width: 1400px) {
  .history__banner.case-utilizzatore {
    top: -10px; }
  #news h2 {
    font-size: 42px;
    margin: 60px 0; }
  #banner .banner__testo {
    top: 245px; }
  #history img.chiave-bg {
    left: -110px;bottom: -160px; }
  .cd-panel .cd-navigation-wrapper {
    padding: 51px 4%; }
  .cd-panel h3 {
    font-size: 42px; }
  form.diventa-rive {
    margin-top: 15px; }
  #news.news-page {
    height: auto; }
  #banner.banner-page {
    height: 88vh;
    margin-bottom: 70px; } }

/*for-desktop*/
@media (max-width: 1280px) {
  .content-wrapper {
    width: 1000px; }
  #history img.chiave-bg {
    left: -180px; } }

/*for-tablet-landscape-only */
@media (max-width: 1100px) {
  #banner .banner__testo {
    top: 200px; }
  .content-wrapper {
    width: 100%;
    padding: 0 3em; }
  #history img.chiave-bg {
    left: -35%; }
  #banner .banner__testo h2 {
    font-size: 40px;
    line-height: 40px; }
  #banner .banner__testo p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 382px;
    line-height: 1.2em; }
  .cartina img {
    position: relative;
    right: -10%; }
  #banner.banner-page .banner__testo {
    top: 320px;
    left: 6%; }
  #banner.banner-utilizzatore .banner__cont-img img {
    top: -15px; }
  #banner.banner-page {
    height: 75vmin; }
  #media .media__item .media__item__text h3 {
    font-size: 24px; }
  #media .grid .grid-sizer, #media .grid .grid-item {
    height: 280px; }
  #media .grid .grid-item--width2 {
    height: 620px; }
  #media .grid .grid-item--small {
    height: 301px; } }

/*for-tablet-landscape-up */
@media (max-width: 900px) {
  .cd-section, #history, #media {
    height: auto;
    margin-top: 0px;
    padding: 20px 0 0 0; }
  #banner .banner__testo h2 {
    font-size: 36px;
    line-height: 36px;
    margin: 10px 0; }
  #banner .banner__testo h2:after {
    margin: 20px 0 0 0; }
  #banner .banner__testo p {
    font-size: 18px;
    margin-bottom: 20px; }
  #banner.banner-rivenditore .banner__cont-img img {
    width: 145%;
    left: -50%;
    top: 80px; }
  #perche h2 {
    font-size: 42px;
    margin-bottom: 1em; }
  #perche .brand .brand__item {
    border-right: none; }
  #perche {
    padding: 5em 0; }
  .history__banner {
    height: 354px;
    top: 0px; }
  #history img.chiave-bg {
    left: -35%;
    bottom: 30px;
    position: relative; }
  #media .titolo-h h2:after {
    margin: 20px auto;
    background-color: #fff;width: 80%; }
  #media .titolo-h h2 {
    font-size: 48px;
    display: block;
    text-align: center;
    left: 0;
    width: 100%;
    margin-top: 50px;
    color: #fff; }
  #media .cont-media {
    position: relative;
    top: 0; }
  #media .titolo-h {
    top: -12px; }
  #media {
    background-image: none; }
    #media:after {
      background-image: none; }
    #media:before {
      background-image: none; }
  .cd-top {
    display: none; }
  #news {
    padding-top: 100px; }
  
  .content-wrapper {
    padding: 0 4em; }
  .cartina {
    display: none; }
  form.diventa-rive {
    margin-top: 50px; }
  .cd-panel .cd-navigation-wrapper {
    overflow-y: auto; }
  .cd-panel .cd-navigation-wrapper, .cd-panel-registrazione .cd-navigation-wrapper {
    overflow-y: auto; }
  .cd-panel-registrazione .registra-form {
    border-left: none;
    padding: 1em;
    border-top: 1px solid #fff;
    margin: 50px 0; }
  #media .grid .grid-sizer,
  #media .grid .grid-item,
  #media .grid .grid-item--width2,
  #media .grid .grid-item--small {
    width: 100%;
    height: 300px; }
  #media .media__item .media__item__text,
  #media .grid-item .media__item__text {
    padding: 1em; }
  #media .media__item .media__item__text h3,
  #media .grid-item .media__item__text h3 {
    font-size: 24px; } }

/* for-phone-only */
@media (max-width: 599px) {
  header[role="banner"] a.logo img {
    width: 121px;
    position: relative;
    top: -8px;
    margin-right: 11px; }
  .content-wrapper {
    padding: 0 1em; }
  #media .media__item {
    height: 320px; }
  #media .media__item--big {
    height: 420px; }
  #banner .banner__testo p {
    font-size: 16px;
    margin-bottom: 15px; }
  #banner .banner__testo h2 {
    font-size: 25px;
    line-height: 25px;
    margin: 10px 0; }
  #banner .banner__testo {
    top: 100px; }
  .banner__btn-line {
    width: 200px;
    padding: 0.8em 0; }
  #history img.chiave-bg {
    left: -80%; }
  #media .media__item .media__item__text h3 {
    font-size: 24px; }
  #footer img {
    width: 310px; }
  .cd-section, #history, #media {
    min-height: 58vh; }
  .cd-scroll-down {
    display: none; }
  #banner.banner-utilizzatore .banner__cont-img img {
    top: -174px; }
  #banner.banner-page .banner__testo {
    top: 232px;
    left: 6%; }
  #news.news-page .commenti .commento figure {
    width: 70px;
    height: 70px; }
  #news.news-page .commenti .commento .cont-commento a {
    right: 5%; }
  #news.news-page .commenti .commento h4 {
    font-size: 18px; }
  #news.news-page .commenti .commento time {
    font-size: 12px; }
  #news.news-page .commenti .commento p {
    font-size: 14px; }
  .cd-panel .cd-navigation-wrapper, .cd-panel-registrazione .cd-navigation-wrapper {
    padding: 60px 4%; }
  a.back-page {
    top: -50px;
    left: 22px; } }

/* for-phone-only */
@media (max-width: 380px) {
	p.logo {margin: 1rem 0 1.68rem;}
	a.back-page {top: -60px;left: 18px;}
  header[role="banner"] a img {
    width: 115px;
    position: relative;
    top: -10px;
    margin-right: 10px; }
    header[role="banner"] a.user-log img {top: 1px;}

  #media .media__item {
    height: 260px; }
  #media .media__item .media__item__text {
    height: 58%;
    padding: 1em; }
  #banner .banner__testo p {
    display: none; }
  .banner__btn-line {
    width: 160px; }
  #perche h2 {
    font-size: 30px; }
  .history__banner h2 {
    font-size: 36px; }
  #media .media__item {
    height: 220px; }
  #media .media__item .media__item__text h3 {
    font-size: 20px; }
  #banner.banner-page .banner__testo {
    top: 225px;
    left: 10%; }
  #banner.banner-utilizzatore .banner__cont-img img {
    top: -55px;
    right: 188px; }
  #news.news-page .commenti .commento figure {
    width: 100px;
    height: 100px;
    float: none;
    margin: 0 auto; }
  #news.news-page .commenti .commento .cont-commento {
    float: none;
    width: 95%;
    position: relative;
    text-align: center; }
  #news.news-page .commenti .commento .cont-commento a {
    right: 5%;
    top: 0; }
  #news.news-page .commenti .commento.comment-comment {
    padding-left: 0px; }
  .content_news aside.col {
    padding: 20px 7px; } }

/* INTRO
------------------------------------*/
html.full, body.intro-body {
  width: 100%;
  height: 100vh;
  overflow: hidden; }
  html.full #wrapper, body.intro-body #wrapper {
    height: 100%; }

.swiper-container {
  border-right: 1px solid #cfcfcf;
  padding: 20px;
  width: 300px;
  height: 90px;
  margin: 0;
  float: right;
  top: -95px;
  right: 250px;
  background-color: transparent; }
  .swiper-container .swiper-slide {
    text-align: right;
    background-color: transparent;
    font-size: 12px; }
    .swiper-container .swiper-slide h3 {
      font-size: 14px;
      margin: 0;
      padding: 0;
      line-height: 1.2em; }
    .swiper-container .swiper-slide p {
      line-height: 1.2em;
      padding-top: 0px;
      margin-top: 5px; }

#intro {
  position: relative;
  height: 100%; }
  #intro .row {
    height: 100%; }
  #intro p {
    color: #555555; }
  #intro .intro__text {
    padding: 20px;
    position: absolute;
    bottom: 20vh;
    max-width: 450px;
    opacity: 0; }
    #intro .intro__text em {
      font-style: normal;
      font-size: 48px;
      display: block;
      margin-top: 10px; }
  #intro a.scopri {
    text-transform: uppercase;
    font-weight: 700;
    color: #231F20;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-top: 15px;
    }
    #intro a.scopri:hover {
      color: #009968; }
  #intro h2 {
    color: #009968;
    font-weight: 400;
    width: 400px;
    margin: 0 auto;
    position: relative;
    top: 100px;
    font-size: 42px;
    text-align: center;
    opacity: 0; }
    #intro h2 strong {
      font-weight: 700; }
    #intro h2 em {
      display: block; }
  #intro .intro__rivenditore {
    text-align: right;
    position: relative;
    height: 100%; }
    #intro .intro__rivenditore img {
      width: 80%;
      position: relative;
      left: -35%;
      top: -20px;
      opacity: 0; }
    #intro .intro__rivenditore::after {
      content: " ";
      width: 3px;
      height: 646px;
      display: block;
      background: transparent url(img/divisorio.png) no-repeat center center;
      position: absolute;
      top: 130px;
      left: 100%; }
    #intro .intro__rivenditore a.scopri {
      background: transparent url(img/chiave-icon.png) no-repeat left center;
      padding-left: 85px; }
    #intro .intro__rivenditore a.scopri:hover {
      background: transparent url(img/chiave-icon-verde.png) no-repeat left center; }
    #intro .intro__rivenditore .intro__text {
      right: 1%; }
  #intro .intro__utilizzatore {
    position: relative;
    height: 100%; }
    #intro .intro__utilizzatore img {
      position: relative;
      left: 18%;
      top: -40px;
      opacity: 0;
      width: 130%; }
    #intro .intro__utilizzatore .intro__text {
      left: 1%; }
    #intro .intro__utilizzatore a.scopri {
      background: transparent url(img/cacciavite-icon-right.png) no-repeat right center;
      padding-right: 85px; }
    #intro .intro__utilizzatore a.scopri:hover {
      background: transparent url(img/cacciavite-icon-right-verde.png) no-repeat right center; }

/*for-tablet-landscape-only */
@media (max-width: 1100px) {
  #intro .intro__utilizzatore img {
    top: 0px;
    width: 130%; } }

/*for-tablet-landscape-up */
@media (max-width: 900px) {
  #intro .intro__rivenditore img {
    width: 120%;
    left: -45%;
    top: 13%; }
  #intro .intro__utilizzatore img {
    top: -12px;
    width: auto; } }

/* for-phone-only */
@media (max-width: 600px) {
  #intro .intro__rivenditore {
    height: 50vh; }
  #intro .intro__utilizzatore {
    height: 50vh;
    border-top: 1px solid #ccc; }
  #intro .intro__rivenditore .intro__text {
    bottom: 3vh; }
  #intro p {
    display: none; }
  #intro h2 {
    font-size: 20px;
    top: 90px;
    width: auto; }
  #intro .intro__rivenditore img {
    width: 56%;
    left: -64%;
    top: 26%; }
  #intro .intro__utilizzatore img {
    top: 0px;
    width: 80%;
    left: 56%; }
  .swiper-container {display: none;}
  .swiper-container .swiper-slide p {
    font-size: 10px; }
  #intro .intro__text em {
    font-size: 36px;
    margin-top: 5px; }
  #intro .intro__utilizzatore .intro__text {
    left: 1%;
    bottom: 10vh; } }

/* for-phone-only */
@media (max-width: 325px) {
  #intro .intro__text em {
    font-size: 30px;
    margin-top: 0px; }
  .swiper-container {
    width: 200px;
    top: -71px;
    right: 120px;
    padding: 20px 10px;
    height: 83px; }
  #intro .intro__utilizzatore img {
    top: 0px;
    width: 84%;
    left: 45%; }
  #intro .intro__rivenditore img {
    top: 34%; }
  #intro h2 {
    font-size: 18px; } }
    
@media (min-width: 1700px) {
	.cd-panel .cd-navigation-wrapper, .cd-panel-registrazione .cd-navigation-wrapper {padding: 120px 4%;}
}
    
    

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


