section {
    overflow-x: hidden;
  }
  
  section.one {
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
  }
  section.one .row {
    margin-bottom: 130px;
    min-height: 500px;
    border-top: 1px solid white;
  }
  section.one .img-wrap.bg:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  section.one .logo {
    width: 200px;
  }
  
  section.servizi .servizio {
    margin: 75px 0;
  }
  @media (min-width: 1400px) {
    section.servizi .servizio {
      margin: 150px 0;
    }
  }
  section.servizi .servizio .titolo-servizio {
    font-size: 35px;
  }
  @media (min-width: 992px) {
    section.servizi .servizio .titolo-servizio {
      font-size: 45px;
    }
  }
  @media (min-width: 1400px) {
    section.servizi .servizio .titolo-servizio {
      font-size: 60px;
    }
  }
  section.servizi .servizio .testo-servizio p {
    margin-bottom: 30px;
    font-weight: 200;
    letter-spacing: 0.4px;
    font-size: 16px;
    line-height: 1.7em;
  }
  @media (min-width: 992px) {
    section.servizi .servizio .testo-servizio p {
      font-size: 20px;
      line-height: 2em;
    }
  }
  section.servizi .servizio .img-wrap {
    min-height: 210px;
    max-height: 700px;
  }
  section.servizi .servizio .button:before {
    left: 9%;
  }
  section.servizi .servizio .button:hover:before {
    left: 83% !important;
  }
  section.servizi .servizio .img-col {
    padding: 50px 0;
    order: -1;
  }
  @media (min-width: 992px) {
    section.servizi .servizio .img-col {
      padding: 0 0;
      padding-left: 0;
      padding-right: 50px;
    }
    section.servizi .servizio .img-col.first {
      order: 1;
    }
  }
  @media (min-width: 992px) {
    section.servizi .servizio .img-col.first {
      padding-right: 0;
      padding-left: 50px;
    }
  }
  @media (min-width: 1400px) {
    section.servizi .servizio .text-col {
      padding: 0 50px;
    }
  }
  section.servizi .servizio .order-first {
    order: 1;
  }
  
  .wrapper-image.image-full {
    /* background-attachment: fixed !important; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 90vh;
  }
  
  #load-more {
    position: relative;
    display: block;
    width: 115px;
    height: 115px;
    border: 2px solid white;
    border-radius: 50%;
    margin-top: 100px;
    margin-bottom: 200px;
    transition: transform 500ms ease;
  }
  #load-more:after {
    content: "";
    display: inline-block;
    background-color: white;
    width: 50px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #load-more:before {
    content: "";
    display: inline-block;
    background-color: white;
    width: 2px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #load-more:hover {
    transform: rotate(180deg);
  }
  #load-more:hover .no-more {
    transform: scale(1.1);
  }
  #load-more:active:after, #load-more:focus:after {
    animation-name: load-more-width;
    animation-duration: 300ms;
    animation-iteration-count: infinite;
  }
  #load-more:active:before, #load-more:focus:before {
    animation-name: load-more-height;
    animation-duration: 300ms;
    animation-iteration-count: infinite;
  }
  @keyframes load-more-width {
    from {
      width: 50px;
    }
    to {
      width: 75px;
    }
  }
  @keyframes load-more-height {
    from {
      height: 50px;
    }
    to {
      height: 75px;
    }
  }
  
  #no-more {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    text-transform: uppercase;
    transition: transform 300ms ease;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  section.servizi-extra .servizio {
    padding: 100px 20px;
  }
  @media (min-width: 992px) {
    section.servizi-extra .servizio {
      padding: 100px;
      height: 600px;
    }
  }
  section.servizi-extra .servizio .title {
    font-weight: 200;
    line-height: 1em;
    max-width: 565px;
  }
  @media (min-width: 992px) {
    section.servizi-extra .servizio .title {
      font-size: 60px;
    }
  }
  section.servizi-extra .servizio .testo {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 400px;
    line-height: 1.5em;
  }
  section.servizi-extra .img-wrap {
    filter: brightness(0.6);
  }