@charset "UTF-8";
:root {
  /* Colors: */
  --main-color: #3C735F;
  --light-color: #fff;
  --dark-color: #000000;
  --middle-color: #AAAAAA;
  /* Font Size */
  --h1-size: 64px;
  --h2-size: 48px;
  --btn-invia-size: 36px;
  --h3-size: 20px;
  --p-size: 16px;
  --accettazione-size: 14px;
  /* Font Family */
  --font-main: "Inter", sans-serif;
  --font-secondary: "Belleza", sans-serif;
  --font-third: "Viaoda Libre", cursive;
}

/* easing -> come si deve comportare la tranzione (le sue curve) */
/* che tipo di animazione è : all -> prende tutte le proprietà del css (si può mettere, es.: opacity o height, ecc...)*/
.animation_base { /* pacchetto per i vari browser */
  transition: all 0.3s ease-in-out;
}

/* Web kit and fade */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.animated-path {
  opacity: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 4s;
          animation-duration: 4s; /* or: Xms */
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal; /* or: normal */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* or: ease, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /* or: backwards, both, none */
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
/* Opera < 12.1 */
.page-template-template_privacy_policy .navbar-expand-md .navbar-collapse, .page-template-template_cookie_policy .navbar-expand-md .navbar-collapse {
  display: none !important;
}
.page-template-template_privacy_policy button.navbar-toggler, .page-template-template_cookie_policy button.navbar-toggler {
  display: none !important;
}

.display-f {
  display: flex;
}

.flx-center {
  justify-content: center !important;
}

.flx-start {
  justify-content: start;
}

.flx-end {
  justify-content: flex-end;
}

.m-t1 {
  margin-top: 1rem;
}

.m-t2 {
  margin-top: 2rem;
}

.m-t3 {
  margin-top: 3rem;
}

.m-t4 {
  margin-top: 4rem;
}

.m-t5 {
  margin-top: 5rem;
}

.m-b1 {
  margin-bottom: 1rem;
}

.m-b2 {
  margin-bottom: 2rem;
}

.m-b3 {
  margin-bottom: 3rem;
}

.m-b4 {
  margin-bottom: 4rem;
}

.m-b5 {
  margin-bottom: 5rem;
}

.p-t1 {
  padding-top: 1rem;
}

.p-t2 {
  padding-top: 2rem;
}

.p-t3 {
  padding-top: 3rem;
}

.p-t4 {
  padding-top: 4rem;
}

.p-t5 {
  padding-top: 5rem;
}

.p-b1 {
  padding-bottom: 1rem;
}

.p-b2 {
  padding-bottom: 2rem;
}

.p-b3 {
  padding-bottom: 3rem;
}

.p-b4 {
  padding-bottom: 4rem;
}

.p-b5 {
  padding-bottom: 5rem;
}

.p-r0 {
  padding-right: 0;
}

.p-l0 {
  padding-left: 0;
}

.p0 {
  padding: 0 !important;
}

.txt-center {
  text-align: center;
}

.w-color {
  color: var(--light-color) !important;
}

.nav-link {
  color: var(--light-color) !important;
  font-size: 20px;
}

a.nav-link:hover {
  opacity: 100% !important;
}

.cont-head {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

nav#header {
  background-color: transparent !important;
  padding-top: 2rem;
}

.navbar-expand-md .navbar-collapse {
  display: flex !important;
  justify-content: center !important;
}

.me-auto {
  margin-right: 0 !important;
}

li a.nav-link::after {
  content: "|";
  padding-left: 1rem;
}

#menu-item-18 a.nav-link::after {
  content: " ";
}

body {
  font-family: var(--font-main);
  font-weight: 200;
}

a {
  color: var(--dark-color);
  text-decoration: none;
}
a:hover {
  opacity: 50%;
  color: var(--dark-color);
}

::-moz-selection {
  color: #fff;
  background: var(--main-color);
  -webkit-text-fill-color: #fff;
}

::selection {
  color: #fff;
  background: var(--main-color);
  -webkit-text-fill-color: #fff;
}

.cont1 {
  background-color: var(--main-color);
  background-repeat: no-repeat;
  background-size: cover;
  height: 101vh;
  margin-top: -6rem;
  align-items: center;
}

h1 {
  color: var(--light-color);
  font-size: var(--h1-size);
  line-height: 70px;
}

.h3-tit {
  color: var(--light-color);
  font-size: var(--h3-size);
  text-align: center;
}

.h3-sez-bl {
  color: var(--dark-color);
  font-size: var(--h3-size);
  font-weight: 200;
  line-height: 30px;
}

.h2-sez-gr {
  color: var(--main-color);
  font-family: var(--font-secondary);
  font-size: var(--h2-size);
  line-height: 50px;
}

.num-bl {
  background-repeat: no-repeat;
  height: 5rem;
  background-position: left;
  display: flex;
  justify-content: right;
  align-items: center;
  font-size: var(--h3-size);
}

.img-chisiamo-1, .img-chisiamo-2, .img-chisiamo-3 {
  height: 23rem;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.cont-verde {
  background-color: var(--main-color);
}

.h3-sez-wt {
  color: var(--light-color);
  font-size: var(--h3-size);
  font-weight: 200;
  line-height: 30px;
}

.h2-sez-wt {
  color: var(--light-color);
  font-family: var(--font-secondary);
  font-size: var(--h2-size);
  line-height: 50px;
}

.icon {
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hr-servizi {
  height: 2px !important;
  color: var(--light-color);
}

.p-servizi {
  font-size: var(--p-size);
  color: var(--light-color);
}

.img-loghi {
  height: 4rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 50%;
}
.img-loghi:hover {
  opacity: 100%;
}

.a-loghi:hover {
  opacity: 100%;
}

.wt {
  color: var(--light-color);
}

input[type=text], input[type=email], select, textarea {
  width: 100%;
  margin-bottom: 2rem;
  background-color: transparent !important;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid var(--light-color);
  color: var(--light-color);
  font-weight: 200;
}

input[type=text], input[type=email], select, textarea:focus-visible {
  outline-color: var(--middle-color);
}

select {
  margin-top: 4px;
}

.wpcf7-list-item-label {
  color: var(--light-color);
  font-size: var(--accettazione-size);
}

/* Formattazione delle checkbox */
input#check-c {
  margin-right: 1rem;
}

input[type=checkbox]:checked::before {
  background-color: var(--light-color) !important;
  border-color: var(--light-color) !important;
}

input[type=checkbox]:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  margin-top: -10px;
  width: 18px;
  height: 19px;
  background: var(--main-color);
  border: 1px solid var(--light-color);
  border-radius: 0px;
  cursor: pointer;
}

input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  /* left: 5px; */
  left: -2px;
  top: 8px;
  background: var(--main-color) !important;
  width: 2px;
  height: 2px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.btn-invia {
  background-color: transparent;
  border: 0;
  color: var(--light-color);
  font-family: var(--font-third);
  font-size: var(--btn-invia-size);
  line-height: 40px;
}

/* Messaggi form */
.wpcf7-response-output {
  width: 80% !important;
  text-align: center !important;
  margin-left: 8rem !important;
  color: var(--light-color);
}

.wpcf7-not-valid-tip {
  margin-top: -2rem;
  margin-bottom: 2rem;
  color: var(--middle-color);
}

#logo-mountech {
  /*   background-image: url("./Risorsa_11_nero.svg"); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.cont-foot-green {
  background-color: var(--main-color);
}

.h3-tit-404 {
  color: var(--light-color);
  font-size: var(--h3-size);
  font-family: var(--font-third);
  text-align: center;
}

/****************************************/
/************ RESPONSIVE *************+*/
/****************************************/
@media screen and (min-width: 751px) {
  .phone {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .desk {
    display: none !important;
  }
  nav#header {
    padding: 0;
  }
  .cont-head {
    padding: 0 !important;
    background-color: var(--main-color) !important;
  }
  a.navbar-brand {
    padding-left: 2rem !important;
  }
  li a.nav-link {
    text-align: center;
  }
  li a.nav-link::after {
    content: " ";
  }
  #nav-icon2 {
    width: 60px;
    height: 45px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  #nav-icon2 span {
    display: block;
    position: absolute;
    height: 1px;
    width: 25%;
    background: var(--light-color);
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
  }
  #nav-icon2 span:nth-child(odd) {
    left: 15px;
    border-radius: 9px 0 0 9px;
  }
  #nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
    top: 11px;
  }
  #nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
    top: 18px;
  }
  #nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
    top: 25px;
  }
  #nav-icon2.open1 span:nth-child(1), #nav-icon2.open1 span:nth-child(6) {
    transform: rotate(45deg);
    background-color: var(--light-color);
  }
  #nav-icon2.open1 span:nth-child(2), #nav-icon2.open1 span:nth-child(5) {
    transform: rotate(-45deg);
    background-color: var(--light-color);
  }
  #nav-icon2.open1 span:nth-child(1) {
    left: 16px;
    top: 16px;
  }
  #nav-icon2.open1 span:nth-child(2) {
    left: calc(52% - 5px);
    top: 16px;
  }
  #nav-icon2.open1 span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }
  #nav-icon2.open1 span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  #nav-icon2.open1 span:nth-child(5) {
    left: 16px;
    top: 26px;
  }
  #nav-icon2.open1 span:nth-child(6) {
    left: calc(52% - 5px);
    top: 26px;
  }
  .navbar-toggler {
    display: block !important;
    position: relative;
    z-index: 99;
  }
  .navbar-collapse .collapse .show #menu-main-menu {
    display: block !important;
  }
  .collapse:not(.show) #menu-main-menu {
    display: none !important;
  }
  .navbar-light .navbar-toggler {
    border-color: transparent !important;
    color: transparent !important;
  }
  .titoletto-resp {
    margin-left: 1rem;
  }
  .text-resp {
    text-align: center !important;
  }
  h3.num-bl {
    margin-left: 2rem;
  }
  .num-bl {
    justify-content: center;
    background-position: left;
  }
  .img-chisiamo-1, .img-chisiamo-2, .img-chisiamo-3 {
    background-position: bottom;
  }
  .img-chisiamo-3 {
    height: 17rem !important;
  }
  .width50 {
    position: relative;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .img-chisiamo-1, .img-chisiamo-2, .img-chisiamo-3 {
    background-size: cover;
    background-repeat: no-repeat;
  }
  .btn-invia {
    margin-top: 3rem;
  }
  .cont-btn-invia {
    margin-left: 2rem;
    justify-content: center;
  }
  .wpcf7-response-output {
    width: 84% !important;
    margin-left: 2rem !important;
  }
  #logo-mountech {
    display: flex;
    justify-content: left;
    margin-left: 0;
  }
  .page-template-template_privacy_policy h1 {
    text-align: center;
  }
  .page-template-template_cookie_policy h1 {
    text-align: center;
  }
  .page-template-404 h1 {
    text-align: center;
  }
}/*# sourceMappingURL=main_mountech.css.map */