@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Michroma&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background-color: #fff;
  color: #424242;
  position: relative;
}

h1, h3 {
  letter-spacing: 1px;
  font-family: 'Michroma', sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 150%;
}

a {
  display: inline-block;
  text-decoration: none;
}

b {
  color: #BBC400 !important;
}

.btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn1 span {
  display: inline-block;
  color: #BBC400;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  border-left: 1rem solid #BBC400;
  padding: 2rem;
  letter-spacing: 2px;
}

.btn1 img {
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.btn1:hover img {
  -webkit-transform: translateX(2rem);
          transform: translateX(2rem);
}

/*nuovo style*/
.corpo__wrap h2 { font-size:3rem; padding-top:2rem; margin-bottom:2rem; letter-spacing: 1px; font-family: 'Michroma', sans-serif; }
.icons { display:flex; flex-wrap:wrap; gap:2%; margin:3rem 0 }
.icons .box { width:23%; text-align:center; background-color:#f2f2f2; border-radius:2rem; padding:4rem 3rem 1rem }
.icons .box img { height:10rem; margin-bottom:2rem }

.t1 { font-size: 3rem; margin-bottom: 1rem; font-family: 'Michroma', sans-serif; }
.t2 { font-size: 2.5rem; color:#808080; letter-spacing: 2px;
  font-weight: 400; font-family: 'Lato', sans-serif; }

@media (max-width: 768px) {
.icons .box { width:48%; margin-bottom:2% }
}

@media (max-width: 600px) {
.icons .box { width:100%; margin-bottom:2rem }
}

@media (min-width: 1200px) {
  main {
    z-index: 2;
    position: relative;
    background-color: #fff;
    margin-bottom: 45rem;
  }
}

@media (min-width: 1200px) {
  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 45rem;
  }
}

.menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 1000;
}

.menu-btn__burger {
  width: 3rem;
  height: .3rem;
  background: #424242;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.menu-btn__burger::before, .menu-btn__burger::after {
  content: '';
  position: absolute;
  height: .3rem;
  background: #424242;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.menu-btn__burger::before {
  -webkit-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
  width: 3rem;
}

.menu-btn__burger::after {
  -webkit-transform: translateY(0.8rem);
          transform: translateY(0.8rem);
  width: 3rem;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 3rem;
}

.menu-btn.open .menu-btn__burger::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 3rem;
}

.menu-mobile {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#C6C6C6), to(#fff));
  background-image: linear-gradient(to right top, #C6C6C6, #fff);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: -100%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 1000;
}

.menu-mobile ul li {
  list-style: none;
}

.menu-mobile ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.menu-mobile ul li a {
  color: #424242;
  font-size: 1.8rem;
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  font-weight: bolder;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .menu-mobile {
    display: none;
  }
}

.menu-mobile.open {
  left: 0;
  opacity: 1;
}

.navbar {
  height: 6rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.navbar__wrap {
  height: 100%;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar__wrap--logo {
  height: 100%;
}

.navbar__wrap--logo a {
  color: #424242;
  font-size: 2rem;
  height: 100%;
}

.navbar__wrap--logo a img {
  display: block;
  height: 100%;
}

.navbar__wrap--desk {
  display: none;
}

@media (min-width: 1024px) {
  .navbar {
    height: 8rem;
  }
  .navbar__wrap {
    padding: 0;
  }
  .navbar__wrap--logo {
    width: 50%;
    padding: 1rem 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navbar__wrap--logo a {
    display: inline-block;
    width: 100%;
    max-width: 72rem;
  }
  .navbar__wrap--desk {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 50%;
    border-left: 3px solid #BBC400;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c6c6c6), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to bottom, #c6c6c6, rgba(255, 255, 255, 0));
  }
  .navbar__wrap--desk ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    width: 100%;
    max-width: 72rem;
  }
  .navbar__wrap--desk ul li:not(:last-child) {
    margin-right: 2rem;
  }
  .navbar__wrap--desk ul li a {
    color: #424242;
    -webkit-transition: border .2s;
    transition: border .2s;
    border-bottom: 3px solid transparent;
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding-bottom: 3px;
    font-weight: bolder;
    letter-spacing: 1px;
  }
  .navbar__wrap--desk ul li a:hover {
    border-color: #fff;
  }
}

a.is-active {
  border-color: #fff !important;
}

.footer {
  background-color: #151515;
}

.footer__wrap {
  padding: 4rem 2rem;
  max-width: 144rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
}

.footer__wrap__item h5 {
  color: #BBC400;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer__wrap__item__half:not(:last-child) {
  margin-bottom: 4rem;
}

.footer__wrap__item:nth-child(1) {
  text-align: center;
}

.footer__wrap__item:nth-child(1) a {
  margin-bottom: 2rem;
}

.footer__wrap__item:nth-child(1) a img {
  display: block;
  width: 100%;
}

.footer__wrap__item:nth-child(1) p {
  color: #fff;
  text-align: left;
  font-size: 1.4rem;
}

.footer__wrap__item:nth-child(2) ul li {
  list-style: none;
}

.footer__wrap__item:nth-child(2) ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer__wrap__item:nth-child(2) ul li a {
  color: #fff;
  font-size: 1.4rem;
}

.footer__wrap__item:nth-child(2) ul li a::before {
  content: '▪';
  margin-right: 1rem;
}

.footer__wrap__item:nth-child(3) ul li {
  color: #fff;
  list-style: none;
  font-size: 1.4rem;
}

.footer__wrap__item:nth-child(3) ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer__wrap__item:nth-child(3) ul li a {
  color: #fff;
}

.footer__wrap__item:nth-child(3) ul li a img {
  margin-right: 1rem;
}

.footer__wrap__item:nth-child(3) ul li img {
  margin-right: 1rem;
}

.footer__wrap__item:nth-child(3) p {
  color: #fff;
  font-size: 1.4rem;
}

.footer__wrap__item:nth-child(3) p:not(:last-child) {
  margin-bottom: 1rem;
}

.footer__wrap__item:nth-child(4) {
  text-align: center;
}

.footer__wrap__item:nth-child(4) hr {
  border: none;
  border-top: 5px solid #BBC400;
  width: 5rem;
  margin: 2rem auto;
}

.footer__wrap__item:nth-child(4) p {
  font-size: 1.4rem;
  color: #808080;
}

.footer__wrap__item:nth-child(4) p a {
  color: #808080;
}

@media (min-width: 768px) {
  .footer__wrap {
    padding: 4rem;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .footer__wrap__item h5 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .footer__wrap__item:nth-child(1) {
    text-align: left;
  }
  .footer__wrap__item:nth-child(1) a {
    margin-bottom: 4rem;
  }
  .footer__wrap__item:nth-child(4) {
    grid-column: 1 / -1;
  }
}

.privacy {
  font-weight: 400;
}

.privacy__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.privacy__wrap hr {
  margin: 2rem auto;
}

.privacy__wrap__item h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.privacy__wrap__item h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.privacy__wrap__item h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.privacy__wrap__item h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.privacy__wrap__item p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.privacy__wrap__item ul {
  margin-bottom: 2rem;
  list-style-position: inside;
}

.privacy__wrap__item ul li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.privacy__wrap__item form {
  font-size: 1.6rem;
}

.privacy__wrap__item form button {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background-color: #BBC400;
  color: #fff;
  font-weight: 700;
  margin-top: 2rem;
}

.privacy__wrap__item form input {
  margin-bottom: 1rem;
}

.errori-page {
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.errori-page__wrap {
  padding: 2rem;
  text-align: center;
}

.errori-page__wrap h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.errori-page__wrap p {
  margin-bottom: 2rem;
}

.errori-page__wrap a {
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #fff;
  background-color: #000;
}

@media (min-width: 768px) {
  .errori-page__wrap {
    padding: 4rem;
  }
  .errori-page__wrap h1 {
    font-size: 4.5rem;
  }
  .errori-page__wrap p {
    font-size: 2rem;
  }
}

.sitemap__wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sitemap__wrap ul {
  list-style-position: inside;
}

.sitemap__wrap ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.sitemap__wrap ul li a {
  color: #424242;
  font-weight: 700;
  font-size: 2rem;
  -webkit-transition: margin .2s;
  transition: margin .2s;
}

.sitemap__wrap ul li a:hover {
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .sitemap__wrap ul li:not(:last-child) {
    margin-bottom: 4rem;
  }
  .sitemap__wrap ul li a {
    font-size: 3rem;
  }
}

.cta-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 6rem;
  width: 100%;
  z-index: 100;
}

.cta-menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-menu__wrap__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-menu__wrap__items hr {
  border: none;
  border-left: 3px solid #C6C6C6;
  height: 4rem;
}

.cta-menu__wrap__items a {
  margin-top: 2rem;
  background-color: #BBC400;
  padding: .5rem 1rem;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.cta-menu__wrap__items a img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-menu__wrap__items a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 768px) {
  .cta-menu {
    display: block;
  }
}

@media (min-width: 1024px) {
  .cta-menu {
    top: 8rem;
  }
}

.slider {
  height: 90vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80vh, 90% 100%, 10% 100%, 0 80vh);
          clip-path: polygon(0 0, 100% 0, 100% 80vh, 90% 100%, 10% 100%, 0 80vh);
}

.slider__btn {
  position: absolute;
  z-index: 10;
  width: 80%;
  max-width: 152rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider__btn a.prev,
.slider__btn a.next {
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  background-color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__btn a.prev:hover,
.slider__btn a.next:hover {
  color: #424242;
}

.slider__item {
  height: 100%;
  width: 100%;
  position: relative;
}

.slider__item picture {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.slider__item picture img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.slider__item--text {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  padding: 2rem;
}

.slider__item--text h1, .slider__item--text h4 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Michroma', sans-serif;
}

.slider__item--text h2, .slider__item--text h5 {
  color: #808080;
  letter-spacing: 2px;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .slider__item--text {
    padding: 4rem 8rem;
  }
  .slider__item--text h1, .slider__item--text h4 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .slider__item--text h2, .slider__item--text h5 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .slider {
    height: 100vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90vh, 90% 100%, 10% 100%, 0 90vh);
            clip-path: polygon(0 0, 100% 0, 100% 90vh, 90% 100%, 10% 100%, 0 90vh);
  }
}

.fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}

.sub-header__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
}

.sub-header__wrap__item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sub-header__wrap__item:nth-child(1) h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.sub-header__wrap__item:nth-child(1) a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.sub-header__wrap__item:nth-child(2) p {
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .sub-header__wrap {
    padding: 4rem;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .sub-header__wrap__item:nth-child(1) h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.sub-header-img__wrap__item picture img {
  display: block;
  width: 100%;
}

.sub-header-img__wrap__item:nth-child(1) picture img {
  padding-right: 2rem;
}

.sub-header-img__wrap__item:nth-child(2) picture img {
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .sub-header-img__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sub-header-img__wrap__item:nth-child(1) {
    border-right: 2px solid #BBC400;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .sub-header-img__wrap__item:nth-child(1) picture img {
    padding-right: 0;
  }
  .sub-header-img__wrap__item:nth-child(2) {
    padding-bottom: 12rem;
  }
  .sub-header-img__wrap__item:nth-child(2) picture img {
    padding-left: 0;
  }
}

.cta-contatti {
  padding: 4rem 2rem;
}

.cta-contatti__wrap {
  padding: 2rem;
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(95, 99, 0, 0.5)), to(rgba(187, 196, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(95, 99, 0, 0.5), rgba(187, 196, 0, 0.5));
}

.cta-contatti__wrap picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-contatti__wrap picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cta-contatti__wrap__text p {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 2rem;
}

.cta-contatti__wrap__text p b {
  color: #fff !important;
}

.cta-contatti__wrap__text a span {
  color: #fff;
  border-color: #fff;
}

@media (min-width: 768px) {
  .cta-contatti {
    padding: 4rem;
    padding-top: 0;
  }
  .cta-contatti__wrap {
    padding: 4rem;
  }
  .cta-contatti__wrap__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta-contatti__wrap__text p {
    margin-bottom: 0;
    margin-right: 4rem;
    font-size: 2.5rem;
  }
}

.cta-contatti2__wrap {
  min-height: 50vh;
  padding: 4rem 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(95, 99, 0, 0.5)), to(rgba(187, 196, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(95, 99, 0, 0.5), rgba(187, 196, 0, 0.5));
}

.cta-contatti2__wrap picture.sfondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-contatti2__wrap picture.sfondo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cta-contatti2__wrap__text {
  max-width: 144rem;
  margin: 0 auto;
  margin-top: 10rem;
}

.cta-contatti2__wrap__text p {
  color: #fff;
  margin-bottom: 4rem;
  font-weight: 400;
  font-size: 2rem;
}

.cta-contatti2__wrap__text p b {
  color: #fff !important;
}

.cta-contatti2__wrap__text a span {
  color: #fff;
  border-color: #fff;
}

.cta-contatti2__wrap__vettore {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.cta-contatti2__wrap__vettore img {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-contatti2__wrap {
    padding: 4rem;
  }
  .cta-contatti2__wrap__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cta-contatti2__wrap__text p {
    margin-bottom: 0;
    margin-right: 4rem;
    font-size: 2.5rem;
  }
}

.cta-consulenza {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.cta-consulenza__wrap {
  padding: 2rem;
  border: 2px solid #BBC400;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
}

.cta-consulenza__wrap__item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.cta-consulenza__wrap__item:nth-child(1) h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.cta-consulenza__wrap__item:nth-child(1) a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.cta-consulenza__wrap__item:nth-child(2) p {
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .cta-consulenza {
    padding: 4rem;
  }
  .cta-consulenza__wrap {
    padding: 4rem;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    max-width: 120rem;
    margin-left: auto;
  }
  .cta-consulenza__wrap__item:nth-child(1) h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .cta-consulenza__wrap__item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 1512px) {
  .cta-consulenza {
    padding-right: 0;
  }
}

.slider-servizi {
  padding: 2rem 0 4rem;
}

.slider-servizi a {
  height: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider-servizi a:hover .immagine picture img {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.slider-servizi a .immagine {
  aspect-ratio: 1/1;
  max-width: 50rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.slider-servizi a .immagine picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}

.slider-servizi a h3 {
  color: #424242;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.splide__pagination {
  position: relative !important;
  margin-top: 2rem !important;
}

.splide__pagination__page.is-active {
  background-color: #BBC400 !important;
}

.studio-cta {
  padding: 2rem 0;
}

.studio-cta__wrap {
  display: -ms-grid;
  display: grid;
}

.studio-cta__wrap__item:nth-child(1) {
  z-index: 1;
  -ms-grid-row: 1;
  grid-row: 1 / 1;
  -ms-grid-column: 1;
  grid-column: 1 / 1;
}

.studio-cta__wrap__item:nth-child(1) picture img {
  display: block;
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  width: 90%;
  margin-left: auto;
}

.studio-cta__wrap__item:nth-child(2) {
  z-index: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  -ms-grid-column: 1;
  grid-column: 1 / 1;
}

.studio-cta__wrap__item:nth-child(2) picture img {
  display: block;
  width: 100%;
  margin-top: -1rem;
}

.studio-cta__wrap__item:nth-child(3) {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.studio-cta__wrap__item:nth-child(3) h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.studio-cta__wrap__item:nth-child(3) a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.studio-cta__wrap__item:nth-child(3) p {
  margin-top: 4rem;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .studio-cta {
    padding: 4rem 0;
  }
  .studio-cta__wrap {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .studio-cta__wrap__item:nth-child(1) {
    z-index: 1;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    grid-column: 1 / -1;
  }
  .studio-cta__wrap__item:nth-child(1) picture img {
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
  }
  .studio-cta__wrap__item:nth-child(2) {
    z-index: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
  }
  .studio-cta__wrap__item:nth-child(3) {
    grid-column: 1 / -1;
    padding: 2rem;
  }
  .studio-cta__wrap__item:nth-child(3) h3 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .studio-cta__wrap__item:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .studio-cta__wrap__item:nth-child(3) {
    max-width: 72rem;
    background-color: #fff;
    z-index: 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / 4;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    padding: 4rem;
  }
}

.title__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.title__wrap h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .title__wrap {
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .title__wrap h3 {
    font-size: 3rem;
    margin-bottom: 0;
  }
}

.cta-news__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}

.cta-news__wrap__item {
  color: #424242;
  font-family: 'Michroma', sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cta-news__wrap__item:hover span {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.cta-news__wrap__item:hover .cta-news__wrap__item__img picture img {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.cta-news__wrap__item__img {
  aspect-ratio: 4/3;
  max-width: 80rem;
  margin-bottom: 2rem;
}

.cta-news__wrap__item__img picture img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

.cta-news__wrap__item p {
  margin-bottom: 2rem;
}

.cta-news__wrap__item span {
  display: inline-block;
  background-color: #808080;
  color: #BBC400;
  font-size: 1.6rem;
  border-radius: 2rem;
  padding: .5rem 1rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

@media (min-width: 768px) {
  .cta-news__wrap {
    padding: 4rem;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .cta-news__wrap__item:nth-child(2) {
    grid-column: span 2;
  }
}

.copertina-interna {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.copertina-interna picture {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

.copertina-interna picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

.copertina-interna__wrap {
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}

.copertina-interna__wrap__text {
  max-width: 144rem;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.copertina-interna__wrap__text h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.copertina-interna__wrap__text h2 {
  color: #808080;
  letter-spacing: 2px;
  font-size: 1.8rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .copertina-interna__wrap__text {
    padding: 16rem 8rem 12rem;
    padding-left: 4rem;
    text-align: left;
  }
  .copertina-interna__wrap__text h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .copertina-interna__wrap__text h2 {
    font-size: 2.5rem;
  }
}

.breadcrumb__wrap {
  border-bottom: 5px solid #BBC400;
  text-transform: uppercase;
  font-family: 'Michroma', sans-serif;
  font-weight: 700;
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.breadcrumb__wrap a {
  color: #808080;
  margin: 1rem;
  -webkit-transition: color .2s;
  transition: color .2s;
  font-size: 1.2rem;
}

.breadcrumb__wrap a:after {
  content: '>>';
  margin-left: 1rem;
}

.breadcrumb__wrap a:hover {
  color: #424242;
}

.breadcrumb__wrap span {
  display: inline-block;
  color: #BBC400;
  font-size: 1.2rem;
  margin: 1rem;
}

@media (min-width: 768px) {
  .breadcrumb__wrap {
    padding: 2rem 4rem;
  }
}

.corpo__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.corpo__wrap h3, .corpo__wrap h4, .corpo__wrap h5 {
  padding-top: 2rem;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.corpo__wrap p {
  margin-bottom: 2rem;
}

.corpo__wrap ul, .corpo__wrap ol {
  margin-bottom: 2rem;
  list-style-position: inside;
}

.corpo__wrap ul li, .corpo__wrap ol li {
  font-size: 1.6rem;
}

.corpo__wrap ul li:not(:last-child), .corpo__wrap ol li:not(:last-child) {
  margin-bottom: 1rem;
}

.corpo__wrap a {
  color: #BBC400;
  font-weight: 700;
}

.corpo__wrap__high {
  border: 2px solid #BBC400;
  padding: 2rem;
}

@media (min-width: 768px) {
  .corpo__wrap {
    padding: 4rem;
  }
  .corpo__wrap h3, .corpo__wrap h4, .corpo__wrap h5 {
    font-size: 3rem;
  }
  .corpo__wrap p {
    font-size: 1.8rem;
  }
  .corpo__wrap ul li, .corpo__wrap ol li {
    font-size: 1.8rem;
  }
}

.grid__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid__wrap__item {
  color: #424242;
}

.grid__wrap__item:hover .grid__wrap__item__img picture img {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.grid__wrap__item__img {
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
}

.grid__wrap__item__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

.grid__wrap__item h3 {
  text-transform: uppercase;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .grid__wrap {
    padding: 4rem;
    -ms-grid-columns: (minmax(30%, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
}

.grid-articolo__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid-articolo__wrap__item {
  color: #424242;
}

.grid-articolo__wrap__item:hover .grid-articolo__wrap__item__img picture img {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.grid-articolo__wrap__item:hover .grid-articolo__wrap__item__text span {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.grid-articolo__wrap__item__img {
  aspect-ratio: 4/3;
  max-width: 80rem;
  margin-bottom: 2rem;
}

.grid-articolo__wrap__item__img picture img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

.grid-articolo__wrap__item__text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.grid-articolo__wrap__item__text p {
  font-size: 1.6rem;
  color: #BBC400;
}

.grid-articolo__wrap__item__text span {
  display: inline-block;
  background-color: #808080;
  color: #BBC400;
  font-size: 1.6rem;
  border-radius: 2rem;
  padding: .5rem 1rem;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  justify-self: flex-end;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.grid-articolo__wrap__item__text h3 {
  font-size: 2rem;
  grid-column: span 2;
}

.grid-articolo__wrap__item__text h4 {
  color: #808080;
  font-size: 1.8rem;
  font-weight: 400;
  grid-column: span 2;
}

@media (min-width: 768px) {
  .grid-articolo__wrap {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-articolo__wrap {
    padding: 4rem;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.paginazione__wrap {
  max-width: 160rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.paginazione__wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.paginazione__wrap ul li:not(:last-child) {
  margin-right: 1rem;
}

.paginazione__wrap ul li a {
  -webkit-transition: border .2s;
  transition: border .2s;
  border-bottom: 2px solid transparent;
  padding: 1rem;
  color: #424242;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Michroma', sans-serif;
}

.paginazione__wrap ul li a.attivo {
  border-bottom: 2px solid #BBC400 !important;
}

.paginazione__wrap ul li a:hover {
  border-color: #BBC400 !important;
}

.articolo-intro__wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 2rem;
}

.articolo-intro__wrap__img {
  aspect-ratio: 4/3;
  max-width: 80rem;
  margin-bottom: 1rem;
}

.articolo-intro__wrap__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.articolo-intro__wrap__text {
  border-bottom: 1px solid #C6C6C6;
  padding-bottom: 2rem;
}

.articolo-intro__wrap__text p {
  margin-bottom: 1rem;
  color: #BBC400;
}

.articolo-intro__wrap__text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.articolo-intro__wrap__text h2 {
  font-size: 1.8rem;
  color: #808080;
  font-weight: 400;
}

.articolo-intro__wrap__text__download {
  margin-top: 2rem;
}

.articolo-intro__wrap__text__download a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.articolo-intro__wrap__text__download a span {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .articolo-intro__wrap {
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .articolo-intro__wrap__img {
    margin-bottom: 0;
    margin-right: 4rem;
    width: 40%;
  }
  .articolo-intro__wrap__text {
    padding-bottom: 0;
    border-bottom: none;
    width: 60%;
  }
  .articolo-intro__wrap__text p {
    margin-bottom: 2rem;
  }
  .articolo-intro__wrap__text h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .articolo-intro__wrap__text h2 {
    font-size: 2rem;
  }
  .articolo-intro__wrap__text__download {
    margin-top: 4rem;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.form__item .g-recaptcha * {
  width: 100% !important;
  max-width: 304px !important;
}

.form__item:not(:last-child) {
  margin-bottom: 2rem;
}

.form__item span {
  font-size: 1.6rem;
  text-align: left;
}

.form__item__input, .form__item__textarea {
  outline: transparent;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #BBC400;
  padding: 1rem;
  font-size: 1.6rem;
  width: 100%;
  font-family: 'Lato', sans-serif;
}

.form__item__textarea {
  resize: none;
}

.form__item__check {
  margin-right: 1rem;
}

.form__item__btn {
  cursor: pointer;
  border: none;
  display: inline-block;
  background-color: #808080;
  color: #BBC400;
  font-size: 2rem;
  border-radius: 2rem;
  padding: .5rem 1rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.form__item__btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contatti__wrap {
  max-width: 144rem;
  margin: 0 auto;
}

.contatti__wrap__item:nth-child(1) {
  aspect-ratio: 4/3;
}

.contatti__wrap__item:nth-child(1) iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contatti__wrap__item:nth-child(2) {
  padding: 2rem;
}

@media (min-width: 768px) {
  .contatti__wrap {
    padding: 4rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .contatti__wrap__item:nth-child(1) {
    aspect-ratio: unset;
    border-right: 2px solid #BBC400;
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
  .contatti__wrap__item:nth-child(2) {
    padding: 4rem;
    padding-top: 0;
  }
}

.lavora__wrap {
  padding: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lavora__wrap {
    padding: 4rem;
  }
}

.lavora-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 2px solid #BBC400;
  padding: 1rem;
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
}

.lavora-field label {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #808080;
}
/*# sourceMappingURL=style.css.map */