/*
Theme Name: K Theme
Theme URI: https://skriba.cloud/themes/k-theme
Author: Skriba
Author URI: https://skriba.cloud
Description: Custom starter theme used by Skriba for tailored WordPress builds.
Version: 1.4.0
Text Domain: k_theme
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --blue: #00A2E2;
  --lightgray: #EFEFEF;
  --gray: #636463;
  --darkgray: #2F3634;
}

@font-face {
  font-family: "DM";
  src: url(./fonts/DMSans-VariableFont_opsz\,wght.ttf) format("truetype");
}


html {
  margin: 0;
  padding: 0;
  font-size: 18px;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

body {
  overflow-x: hidden;
  font-size: 1rem;
  font-family: 'DM', sans-serif;
  background-color: white;
  position: relative;
  color: var(--darkgray);
  margin: 0;
  padding: 0;
}

body p:empty:before {
  content: none;
}

body p:empty {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

h1 {
  font-weight: 600;
  font-size: calc(2.3rem + 1.2vw);
}

h2 {
  font-size: calc(2.1rem + 1vw);
}

h3 {}

h4 {
  text-align: center;
  text-transform: uppercase;
}

a {
  color: var(--blue);
  text-decoration: none;

}

a:hover {
  color: var(--blue);
}

a:focus,
a:hover {
  text-decoration: none;
}

span.wpcf7-list-item {
  margin: 0;
}

div.wpcf7 {
  text-align: center;
}

label.accetta {
  font-family: 'DM';
  font-weight: 400;
  color: white;
  font-size: 0.8rem;
}

label.accetta a {
  color: white;
  text-decoration: underline;
}

label.accetta a:hover {}

input:focus,
textarea:focus {
  outline-offset: 0;
  outline: 0;
}

.preloader {
  background-color: var(--blue);
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000000;
  bottom: 0;
  left: 0;
}

.preloader.out {
  height: 0;
  width: 0;
  -webkit-transition: height cubic-bezier(.29, .78, .31, .95) .5s, bottom ease-in 0.3s;
  -o-transition: height cubic-bezier(.29, .78, .31, .95) 0.5s, bottom ease-in 0.3s;
  transition: height cubic-bezier(.29, .78, .31, .95) 0.5s, bottom ease-in 0.3s;
}

.standard .content {
  padding-top: 50px;
  padding-bottom: 80px;
}

.standard .content h2,
.standard .content h3,
.standard .content h4 {
  text-align: inherit;
  text-transform: inherit;
  margin-bottom: 10px;
  margin-top: 20px;
}

/* buttòn */

button {}


/* form */

label {
  font-family: 'DM', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: lowercase;
  color: #706f6f;
  width: 100%;

}

input {
  max-width: 100%;
  font-size: 0.9rem;
  font-family: 'DM';
  margin-top: 10px;
  border: 0;
  padding: 15px;
  background-color: white;
  color: var(--darkgray);
  width: 100%;
  border-radius: 3px;
}

textarea {
  width: 100%;
  border: 0;
  font-size: 0.9rem;
  font-family: 'DM';
  padding: 15px;
  margin-top: 10px;
  background-color: white;
  color: var(--darkgray);
  border-radius: 3px;
}

input[type=checkbox] {
  width: auto;
}

input[type=submit] {
  background-color: var(--darkgray);
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  float: right;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 3px;
  margin-top: 0;
  font-family: 'DM', sans-serif;
  width: fit-content;
  position: relative;
}

input[type=submit]:before {
  content: "\f345";
  display: block;
  font-family: 'Dashicons';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.3rem;
}

.flexslider {
  border: 0;
}

/* colours */

.white {
  background-color: white;
  color: black;
}

.black {
  background-color: black;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

.flex-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-height {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contain {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.evidenza {
  width: 100%;
  height: 30vw;
}

.clearfix {
  clear: both;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.relative {
  position: relative;
}

.main {
  padding-top: 125px;
}

.loop {
  margin-top: 150px;
  margin-bottom: 150px;
}

/* Menu icon css */

#nav-icon1 {
  width: 35px;
  height: 25px;
  position: relative;
  margin-left: auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  top: 6px;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--blue);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  right: 20px;
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}



/*-------------------*/

/* header */

.top {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: padding 0.3s ease-in-out;
  -o-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}

.top.scroll {}

.logo-top-head {
  max-width: 350px;
}

.header-container {
  padding-top: 35px;
  padding-bottom: 35px;
}

/* menu */

.main-menu a {
  color: var(--darkgray);
  font-size: 1rem;
  text-transform: uppercase;
  font-family: 'DM', sans-serif;
  font-weight: 600;
}

.main-menu .current-menu-item a {
  color: var(--blue);
}

.menu {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  margin-block-start: 0;
}

.menu li:not(:last-child) {
  margin-right: 4vw;
}

.menu-mobile {
  display: none;
}

/* home */

.slider {
  position: relative;
  transition: all 0.3s ease-in;
}

.flexslider {
  position: relative;
  border-radius: 0;
  border: 0;
  background: none;
  margin-bottom: 0;
}

.slide {
  height: 60vh;
  min-height: 460px;
  max-height: 780px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0) 60%);
}

.slider.up {
  padding: 0 0 100px 0;
  transition: all 0.4s ease-out;
}

.slide-text {
  font-weight: 600;
  padding-right: 24px;
}

.slide-caption {
  position: absolute;
  color: white;
  width: 45%;
  left: 0;
  height: 100%;
  background-color: var(--blue);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 7% 0 8%;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}

.slide-caption .slide-text h2 {
  color: white;
  width: 100%;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: calc(1.5rem + 0.5vw);
  font-weight: 600;
  text-transform: uppercase;
}

.slide-caption .slide-text {
  position: relative;
  z-index: 2;
}

.slide-caption:before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 32px;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.06;
}

.slide-caption p {
  margin-bottom: 26px;
  line-height: 1.6;
  font-weight: 400;
}

.slide-caption a {
  text-transform: uppercase;
  background-color: white;
  color: var(--blue);
  padding: 8px 20px;
  font-family: 'DM', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.02em;
}

.slide-caption h3 {
  font-family: 'DM', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 2.3rem;
  position: relative;
  padding-bottom: 0;
  letter-spacing: 0.02em;
}

.slide-caption h3:before {
  display: none;
}

.slide-caption h3+p {
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  padding-top: 18px;
}

.flex-control-nav {
  bottom: 0px;
  right: 26%;
  width: auto;
}

.flex-control-paging li a {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: white;
  box-shadow: 0;
}

.flex-control-paging li a.flex-active {
  background: var(--blue);
  box-shadow: 0;
}

.home .servizi {
  background-color: var(--lightgray);
  padding: 80px 0;
}

.home .servizi h2 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--blue);
  color: white;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  width: 100%;
  font-weight: 600;
  font-size: calc(1.7rem + 0.5vw);
}

.home .servizi .servizio .immagine-servizio {
  width: 100%;
  height: 400px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.home .servizi .servizio .pulsante {
  background-color: var(--blue);
  color: white;
  font-size: calc(1rem + 0.2vw);
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: inline-block;
  width: 100%;
}

.home .presentazione-home {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home .presentazione-home #anim {
  width: 75%;
}

.home .presentazione-home .testo-presentazione {
  color: white;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
}

.home .presentazione-home .testo-presentazione:before {
  content: '';
  display: block;
  background-color: var(--gray);
  height: 100%;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.home .presentazione-home .testo-presentazione h3 {
  color: white;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--blue);
  text-transform: uppercase;
  font-size: calc(1.6rem + 0.6vw);
}

.home .presentazione-home .testo-presentazione a {
  margin-top: 0;
  background-color: var(--blue);
  color: white;
  font-weight: 600;
  border: 0;
  padding: 8px 20px;
  border-radius: 5px;
  text-transform: uppercase;
}

/* standard page */

.standard .page-title {
  font-size: calc(2rem + 1.5vw);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  background-color: var(--blue);
  width: 100%;
  color: white;
  padding: 30px 0;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* chi siamo */

.chisiamo .heading {
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.chisiamo .heading h1 {
  color: white;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  padding: 30px 0;
}

.chisiamo .heading h1:after {
  content: "";
  display: block;
  width: 70vw;
  height: 100%;
  border-bottom-right-radius: 10px;
  background-color: var(--blue);
  position: absolute;
  right: -17vw;
  bottom: 0;
  z-index: -1;
}

.chisiamo .heading .subtitle {
  position: relative;
  z-index: 1;
  font-size: calc(1rem + 0.1vw);
  color: white;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 600;
}

.chisiamo .heading .subtitle:after {
  content: "";
  display: block;
  width: 60vw;
  height: 100%;
  border-bottom-right-radius: 10px;
  background-color: var(--gray);
  position: absolute;
  right: -6vw;
  bottom: 0;
  z-index: -1;
}

.chisiamo .heading .cover {
  width: 50vw;
  height: 30vw;
  border-bottom-left-radius: 10px;
  position: relative;
  left: 0;
}

.chisiamo .content {
  position: relative;
  z-index: 1;
  margin-bottom: calc(0px + 10%);
}

.chisiamo .content:before {
  content: "";
  display: block;
  width: 58vw;
  height: calc(115% + 250px);
  background-color: var(--lightgray);
  position: absolute;
  top: -250px;
  left: 0;
  z-index: -1;
  border-bottom-right-radius: 10px;
}

/* servizi */

.servizi .heading {
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.servizi .heading h1 {
  color: white;
  text-transform: uppercase;
  padding-top: 50px;
  padding-bottom: 5px;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
}

.servizi .heading .title {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.servizi .heading .title .subtitle {
  font-size: calc(1rem + 0.1vw);
  color: white;
  padding-top: 15px;
  padding-bottom: 80px;
  font-weight: 600;
}

.servizi .heading .title:after {
  content: "";
  display: block;
  width: 70vw;
  height: 100%;
  border-bottom-right-radius: 10px;
  background-color: var(--blue);
  position: absolute;
  right: -5vw;
  bottom: 0;
  z-index: -1;
}

.servizi .heading .cover {
  width: 50vw;
  height: 25vw;
  border-bottom-left-radius: 10px;
  position: relative;
  left: 0;
}

.servizi .form {
  margin-top: 80px;
}

.servizi .flex-control-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  right: 0;
  bottom: 15px;
}

.servizi h3 {
  margin-top: 80px;
  margin-bottom: 40px;
  background-color: var(--blue);
  color: white;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.servizi .immagine-prodotto {
  width: 100%;
  height: 250px;
}

.servizi .testo {
  margin-bottom: 40px;
}

.servizi .download a {
  display: block;
}

/* fv */

.fv .content {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 100px;
}

.fv .content:before {
  content: '';
  display: block;
  position: absolute;
  height: 150%;
  width: 100vw;
  top: -50%;
  left: 0;
  background-color: var(--lightgray);
  z-index: -1;
}

.fv .content .img-presentazione {
  width: 100%;
  height: 320px;
  border-radius: 10px;
}

.fv .progetti {
  background-color: var(--gray);
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

.fv .progetti .slider-progetti {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.fv .progetti .slider-progetti .project-slide {
  padding-top: 65%;
}

.incentivi {
  padding: 50px 0;
  border-radius: 10px;
}

.incentivi figure {
  margin-bottom: 30px;
}

.incentivi .incentivo-card {
  padding: 0 0 26px 0;
  margin-bottom: 26px;
}

.incentivi .incentivo-card .immagine {
  width: 100%;
  height: 280px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}

.incentivi .incentivo-card .testo {
  background-color: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 280px;
  padding: 50px 70px;
  background-color: var(--lightgray);
}

.incentivi .incentivo-card .testo h4 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: calc(1rem + 0.1vw);
  text-align: inherit;
  text-transform: inherit;
}

.incentivi .incentivo-card .testo a {
  margin-top: 0;
  background-color: var(--darkgray);
  color: white;
  font-weight: 600;
  border: 0;
  padding: 8px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  margin-left: auto;
}

.incentivi h3 {
  margin-top: 80px;
  margin-bottom: 40px;
  background-color: var(--blue);
  color: white;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.content h2 {
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: calc(1.1rem + 0.3vw);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 5px;
  margin-bottom: 30px;
  margin-top: 50px;
}

/* vmc */

.vmc .loghi {
  border-top: 1px solid var(--blue);
  margin-bottom: 50px;
  padding-top: 20px;
}

.vmc .loghi .col-12 {
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vmc .applicazioni {
  background-color: var(--gray);
  color: white;
  padding-bottom: 60px;
}

.vmc .applicazioni .gallery {
  display: flex;
  justify-content: center;
}

.vmc .applicazioni .slider-applicazioni {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.vmc .applicazioni .applicazioni-slide {
  padding-top: 55%;
  border-radius: 10px;
}

.vmc .applicazioni .flex-control-nav li a {
  background: rgba(255, 255, 255, 0.5);
}

.vmc .applicazioni .flex-control-nav li a.flex-active,
.vmc .applicazioni .flex-control-nav li a:hover {
  background: white;
}

.vmc .presentazione-prodotto {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--lightgray);
}

.vmc .presentazione-prodotto .row {
  margin-bottom: 100px;
}

.vmc .presentazione-prodotto .descrizioni h4 {
  color: var(--blue);
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: inherit;
  border-bottom: 1px solid var(--blue);
}

.vmc .presentazione-prodotto .img-presentazione {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.vmc .presentazione-prodotto .img-presentazione img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.vmc .funzionamento .img {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.servizi .immagine-prodotto {
  margin-bottom: 100px;
}

.vmc .funzionamento h4 {
  color: var(--blue);
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 20px;
  text-transform: inherit;
  text-align: inherit;
}

.vmc .funzionamento .row {
  margin-bottom: 50px;
}

.vmc .prodotti {
  padding-bottom: 50px;
}

.vmc .prodotti h4 {
  color: var(--blue);
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 20px;
  text-align: inherit;
}

/* contatti */

.contatti .heading {
  text-align: center;
  margin-bottom: 60px;
  background-color: var(--blue);
  color: white;
  font-weight: 700;
  padding: 20px 0;
  border-radius: 10px;
  margin-top: 60px;
  width: 100%;
  text-transform: uppercase;
}

.form {
  background-color: var(--blue);
  padding: 50px 100px;
  border-radius: 10px;
  margin-bottom: 100px;
}

.form h4 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}

/* boxed */

.boxed {
  padding-top: 80px;
}

.boxed .box {
  color: white;
  padding: 40px 60px;
  display: inline-flex;
  width: 100%;
  margin-bottom: 80px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--blue);
}

.boxed .box button {
  margin-top: 0;
  background-color: var(--darkgray);
  color: white;
  font-weight: 600;
  border: 0;
  padding: 8px 20px;
  border-radius: 5px;
  text-transform: uppercase;
}

.boxed .box h5 {
  font-size: calc(1.3rem + 0.5vw);
  max-width: 65%;
  min-width: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.boxed .box a {
  display: block;
  margin: 0 auto;
}

/* 404 */

.notfound {
  padding-top: 16vw;
  text-align: center;
  background: var(--darkgray);
  padding-bottom: 8vw;
}

.notfound h2 {
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
  font-size: calc(2.3rem + 1.4vw);
}

.notfound h1 {
  color: var(--blue);
  margin-top: 4vw;
  font-weight: 600;
  font-size: calc(2rem + 1vw);
  margin-bottom: 8vw;
}

.notfound h1 span {
  font-size: calc(4rem + 10vw);
}

.notfound a {
  margin-bottom: 5vw;
}

.notfound a button {
  border: 2px solid var(--blue);
  background-color: var(--lightgray);
  padding: 12px 20px;
  font-weight: 500;
  text-transform: uppercase;
}

/* footer */

.footer p {
  margin-bottom: 0;
}

.footer .footer-dati {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.9rem;
}

.footer .logo-footer {
  width: 150px;
}

.footer {
  background: var(--darkgray);
  color: white;
}

.footer .footer-bottom {
  background-color: var(--blue);
  font-size: 0.8rem;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer a {
  color: white;
  text-decoration: underline;
}

.footer .anni-footer {
  height: 60px;
  width: 60px;
}

.footer .social ul {
  list-style-type: none;
}

.footer .st0 {
  fill: white;
}


/* media queries incasinate */

@media (max-width: 1399.98px) {}


@media (max-width: 1199.98px) {

  #nav-icon1 {
    z-index: 100;
  }

  .menu-mobile .menu-contain>ul>li>a {
    padding: 15px 0;
    width: fit-content;
    margin: 0 auto;
    font-size: calc(2rem + 0.9vw);
    font-weight: 700;
    line-height: calc(4rem + 0.9vw);
    color: white;
  }


  .menu .sub-menu {
    left: auto;
    transform: none;
    z-index: 1000;
    width: 75%;
    margin: 0 auto;
    background-color: white;
  }

  .menu nav>ul>li {
    height: auto;
  }

  .menu ul {
    display: block;
    float: none;
  }

  .menu-mobile {
    z-index: 0;
    position: fixed;
    top: 1vw;
    padding-top: 30vw;
    right: 1vh;
    width: 0;
    height: 0;
    background-color: var(--blue);
    transition: height 600ms cubic-bezier(0.23, 1, 0.32, 1), width 600ms cubic-bezier(0.23, 1, 0.32, 1), border-radius 600ms cubic-bezier(0.23, 1, 0.32, 1), top 600ms cubic-bezier(0.23, 1, 0.32, 1), right 600ms cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
    border-radius: 50%;
  }

  .menu-mobile.menu-ham {
    display: block;
    z-index: 99;
    transition: height 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), width 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), border-radius 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), top 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), right 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    height: 100%;
    width: 100%;
    border-radius: 0;
    top: 0;
    right: 0;
  }

  .menu-contain .main-menu li,
  .menu-contain .main-menu .sub-menu li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .menu-contain .main-menu .sub-menu {
    display: block;
  }

  .main-menu ul {
    position: relative;
  }

}

@media (max-width: 991.98px) {

  .header-container {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header-container .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-top-head {
    max-width: 220px;
  }

  #nav-icon1 {
    top: 0;
  }

  .main {
    padding-top: 70px;
  }

  .home .presentazione-home #anim {
    width: 70%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .servizio {
    margin-bottom: 30px;
  }

  .servizi .heading .title:after {
    width: 120vw;
  }

  .servizi .heading .cover {
    display: none;
  }

  .vmc .presentazione-prodotto .img-presentazione {
    margin-bottom: 40px;
  }

  .footer .flex-center {
    display: block;
  }

  .footer .footer-dati {
    text-align: center;
  }

  .footer .logo-footer {
    margin: 0 auto 10px auto;
  }

  .footer .social ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .home .presentazione-home .testo-presentazione {
    padding: 40px 22px;
  }

  .home .presentazione-home .testo-presentazione:before {
    width: calc(100% + 44px);
    left: -22px;
    border-radius: 10px;
  }

  .vmc .presentazione-prodotto {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .vmc .presentazione-prodotto .row {
    margin-bottom: 50px;
  }

  .vmc .funzionamento .img {
    height: 240px;
  }

  .vmc .applicazioni {
    padding: 40px 0;
  }

  .incentivi {
    padding: 40px 0;
  }

  .incentivi .incentivo-card .immagine {
    height: 200px;
    border-radius: 10px 10px 0 0;
  }

  .incentivi .incentivo-card .testo {
    height: auto;
    padding: 30px 28px;
    border-radius: 0 0 10px 10px;
  }

  .boxed {
    padding-top: 60px;
  }

  .boxed .box {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .boxed .box h5 {
    max-width: 100%;
    text-align: left;
  }

  .boxed .box button {
    width: 100%;
    text-align: center;
  }

  .slide {
    height: 65vh;
    min-height: 320px;
    max-height: 400px;
    background-position: right;
  }

  .slide-caption {
    width: 100%;
    height: auto;
    bottom: calc(-100% + 10px);
    padding: 0 18px;
    position: relative;
    clip-path: none;
  }

  .slide-text {
    padding-right: 0;
    width: 100%;
  }

  .chisiamo .heading h1:after,
  .chisiamo .heading .subtitle:after,
  .servizi .heading .title:after {
    width: 100%;
    left: 0;
    right: auto;
    border-radius: 10px;
  }

  .chisiamo .content:before,
  .fv .content:before {
    width: 100%;
    left: 0;
  }

  .fv .content:before {
    top: -20%;
    height: 140%;
  }

  .chisiamo .heading h1:after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    border-bottom-right-radius: 10px;
    background-color: var(--blue);
    position: absolute;
    left: -4vw;
    bottom: 0;
    z-index: -1;
  }

  .chisiamo .heading .subtitle:after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    border-bottom-right-radius: 10px;
    background-color: var(--gray);
    position: absolute;
    left: -4vw;
    bottom: 0;
    z-index: -1;
  }

  .chisiamo .content:before {
    content: "";
    display: block;
    width: 100vw;
    height: calc(115% + 250px);
    background-color: var(--lightgray);
    position: absolute;
    top: -250px;
    left: 0;
    z-index: -1;
    border-bottom-right-radius: 10px;
  }

  .chisiamo .heading .cover {
    width: 100vw;
    height: 70vw;
    border-bottom-left-radius: 10px;
    position: relative;
    left: 0;
  }

  .content h2 {
    margin-top: 20px;
  }

  .order-1 {
    order: 1;
  }

  .order-0 {
    order: 0;
  }

  .home .presentazione-home {
    padding-top: 0;
  }

  .home .presentazione-home #anim {
    margin-bottom: 0;
    margin-top: 90px;
  }

  .form {
    padding: 50px 30px;
  }

  .no-padding-right,
  .no-padding-left {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

}

@media (max-width: 575.98px) {

  .vmc .presentazione-prodotto {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .vmc .presentazione-prodotto .row {
    margin-bottom: 35px;
  }

  .vmc .funzionamento .img {
    height: 200px;
  }

  .incentivi {
    padding: 30px 0;
  }

  .incentivi .incentivo-card {
    margin-bottom: 18px;
  }

  .incentivi .incentivo-card .immagine {
    height: 180px;
  }

  .incentivi .incentivo-card .testo {
    padding: 22px 20px;
  }

  .boxed {
    padding-top: 50px;
    z-index: 2;
    position: relative;
  }

  .boxed .box {
    padding: 28px 22px;
    gap: 12px;
  }

  .boxed .box h5 {
    font-size: 1.2rem;
    text-align: center;
  }

  .boxed .box button {
    width: 100%;
  }

  .footer .footer-dati {
    font-size: 0.85rem;
  }
}