@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap");
.footer {
  min-height: 100px;
  background-color: #242425;
}

.footer-info {
  color: #9d9d9c;
  text-align: center;
  margin: 25px auto;
  font-size: .8rem;
  font-family: "Maven Pro", sans-serif;
}

.footer-info a {
  color: #00a296;
  font-weight: bold;
}

.main-header {
  height: 100vh;
  background-position: top, right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.head-bar {
  height: 60px;
  background-color: white;
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1280px) {
  .head-bar {
    height: 90px;
  }
}

.logos-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo-sx img,
.logo-dx img {
  height: 50px;
  width: auto;
  display: inline-block;
  margin: 5px 10px;
}

@media (min-width: 1280px) {
  .logo-sx img,
  .logo-dx img {
    margin: 5px 0;
    height: 75px;
  }
}

.brochure-link {
  margin-top: 20px;
  display: block;
  font-family: "Lato", sans-serif;
  color: #8a8e8f !important;
  font-weight: bolder;
  text-decoration: none;
}

.brochure-link img {
  height: 20px;
  padding: 0 5px;
}

.logo-imer-box {
  margin-right: 20%;
}

.logo-imer-box img {
  height: 150px;
  margin-left: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-imer-box img {
    height: 250px;
  }
}

.stamp {
  position: relative;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  10% {
    opacity: .50;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(-2deg) scale(5);
            transform: rotate(-2deg) scale(5);
    -webkit-transition: all 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: all 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-15deg) scale(1);
            transform: rotate(-15deg) scale(1);
  }
}

.scroll-box {
  position: absolute;
  margin: 0 auto;
  display: inline-block;
  bottom: 0;
  left: calc(50% - 17.1px);
}

.scroll-box img {
  height: 40px;
  width: auto;
  margin: auto;
  display: block;
}

.scroll-box p {
  font-size: 12px;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #8a8e8f;
}

.down-arrow {
  -webkit-animation: bump 1s ease infinite;
          animation: bump 1s ease infinite;
  cursor: pointer;
}

.down-arrow:hover {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes bump {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}

@keyframes bump {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}

.title-bar {
  width: 50px;
  height: 3px;
  background-color: #00a296;
}

.video-box {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.title {
  margin: 50px auto;
}

@media (min-width: 768px) {
  .title {
    margin: 100px auto;
  }
}

.title h1 {
  font-family: "Lato", sans-serif;
  color: #00a296;
  font-weight: bold;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 6px;
}

@media (min-width: 768px) {
  .title h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .main-title {
    font-size: 3.5rem !important;
  }
}

.content-box {
  padding: 10px;
}

@media (min-width: 768px) {
  .content-box {
    width: 70%;
  }
}

@media (min-width: 1025px) {
  .content-box {
    margin-top: calc(40vh - 80px);
  }
}

.text-content {
  padding: 0 20px;
  color: #8a8e8f;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-style: italic;
  margin: 50px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .text-content {
    padding: 0 100px;
    font-size: 1.4rem;
    margin: 50px 30px;
  }
}

.container-main {
  background-color: #ededed;
  padding: 15px;
}

@media (min-width: 768px) {
  .container-main {
    background-color: transparent;
    width: 70%;
    margin: 0 auto;
  }
}

.input-field {
  border: none;
  border-bottom: 2px solid white;
  margin: 30px 10px;
  width: 100%;
  background-color: inherit;
}

.input-field::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

.input-field:-ms-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

.input-field::-ms-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

.input-field::placeholder {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

.privacy-label {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

.privacy-label span {
  color: #00a296;
  font-weight: bold;
}

.campi-obbligatori {
  font-family: "Lato", sans-serif;
  color: #8a8e8f;
}

#home-page {
  position: relative;
}

.background-grey {
  position: absolute;
  width: 100%;
  height: 130vh;
  bottom: 0;
  left: 0;
  background-color: #ededed;
  z-index: -10;
}

.invia-form {
  color: white !important;
  font-family: "Lato", sans-serif;
  padding: 15px 60px;
  background-color: #00a296;
  display: inline-block;
  margin-left: auto;
  height: 54px;
  margin-top: 9px;
  border: none;
}

.bottone-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.privacy-row {
  margin: 20px auto 150px auto;
}

.form-mc-new {
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  padding: 1rem;
  margin: 50px auto;
}

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

@media (min-width: 768px) {
  .privacy-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.content__gdpr {
  margin-top: 20px;
}

#mce-success-response {
  font-family: "Lato", sans-serif;
  color: #00a296;
  font-size: 30px;
  text-decoration: underline;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.wpcf7-form {
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  padding: 1rem;
  margin: 50px auto;
}

.wpcf7-form p {
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .wpcf7-form p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.privacy {
  color: #8a8e8f;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  margin-left: 10px;
  padding-right: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .privacy {
    text-align: left;
  }
}

.privacy a {
  color: #00a296;
  margin: 0 3px;
}

.mainForm__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainForm__input {
  font-family: "Lato", sans-serif;
  margin: 40px 0;
  width: 220px;
  display: block;
  border: none;
  padding: 20px 0 5px 0;
  border-bottom: solid 1px white;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, white 4%);
  background-position: -238.5px 0;
  background-size: 238.5px 100%;
  background-repeat: no-repeat;
  color: #656f6e;
}

@media (min-width: 768px) {
  .mainForm__input {
    width: 30%;
    background-position: -385.5px 0;
    background-size: 385.5px 100%;
  }
}

.mainForm__input:focus, .mainForm__input:valid {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background-position: 0 0;
}

.mainForm__input:focus::-webkit-input-placeholder, .mainForm__input:valid::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #98a2a1;
  font-size: 10px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  visibility: visible !important;
}

.mainForm__input__textarea {
  resize: none;
  margin: 40px 0px;
  width: 313px;
  display: block;
  border: none;
  padding: 20px 0 5px 0;
  border-bottom: solid 1px white;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, white 4%);
  background-position: -313px 0;
  background-size: 313px 100%;
  background-repeat: no-repeat;
  color: #656f6e;
}

@media (min-width: 768px) {
  .mainForm__input__textarea {
    width: 100%;
    background-position: -600px 0;
    background-size: 600px 100%;
  }
}

@media (min-width: 1024px) {
  .mainForm__input__textarea {
    background-position: -800px 0;
    background-size: 800px 100%;
  }
}

@media (min-width: 1440px) {
  .mainForm__input__textarea {
    background-position: -1400px 0;
    background-size: 1400px 100%;
  }
}

.mainForm__input__textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background-position: 0 0;
}

.mainForm__input__textarea:focus::-webkit-input-placeholder {
  color: #98a2a1;
  font-size: 10px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  visibility: visible !important;
}

.wpcf7-form-control.wpcf7-submit {
  color: white !important;
  font-family: "Lato", sans-serif;
  padding: 15px 60px;
  background-color: #00a296;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 54px;
  margin-top: 9px;
  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;
  border: none;
}

@media (min-width: 768px) {
  .wpcf7-form-control.wpcf7-submit {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1000px) {
  .mainForm__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainForm__group input {
    width: 100% !important;
  }
}
/*# sourceMappingURL=style.css.map */