/* COLORI */

:root {
 --primo: #BE1723;
 /*--secondo: #2B2D42;*/
 --secondo: #3d3d3c;
 --terzo: #8D99AE;
 --quarto: #EDF2F4;
 --quinto: #F4E4BA;
 --nero: #0D1321;
 --bianco: #ffffff;
 --grigio: #f2f2f2;
 --trasp: rgba(0, 0, 0, 0);
 --nero-trasp: rgba(13, 19, 33, 0.4);
 --bianco-trasp: rgba(255, 255, 255, 0.6);
 --secondo-trasp: rgba(61, 61, 60, 0.8);
}


/* FINE COLORI */

/*
font-family: "Mozilla Headline", sans-serif;
font-family: "Mozilla Text", sans-serif;
*/

body {
  color: var(--nero);
  background-color: var(--bianco);
  font-family: "Mozilla Text", sans-serif;
}

p{
  position: relative;
  z-index: auto;
  font-size: 20px;
  line-height: 40px;
  font-weight: 200;
  color: var(--nero);
  padding: 0;
  margin-bottom: 30px;
}

p strong{
  font-weight: 500;
}

a {
  color: var(--primo);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--quinto);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primo);
  font-family: "Mozilla Headline", sans-serif;
}

.header .logo img {
  max-height: 40px;
  /*filter: brightness(0) invert(1);*/
  filter: brightness(1) invert(0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 50%;
    background: var(--quarto);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background-image: url(../img/sfondo_hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
  z-index: 2;
  background-attachment: fixed;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header {
  color: var(--bianco);
  /*background-color: var(--trasp);*/
  background-color: var(--secondo)!important;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 997;
}

/*.scrolled .header {
  background-color: var(--secondo-trasp)!important;
  backdrop-filter: blur(10px);
}

.scrolled .header .logo img{
  filter: brightness(1) invert(0);
}*/

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--bianco-trasp);
    padding: 18px 15px;
    font-size: 16px;
    font-family: "Mozilla Headline", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 90;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--secondo);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--primo);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.hero h1{
  background-image: url(../img/logo_hero.png);
  background-size: contain;
  margin: 0 40px 0 0;
  padding: 0;
  line-height: 140px;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
}

.hero blockquote{
  color: var(--primo);
  padding-left: 20px;
  border-left: 2px solid var(--primo);
  margin: 80px 0;
}

.hero blockquote p{
  font-size: 40px;
  line-height: 60px;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  padding: 0;
  color: var(--primo)!important;
}

.section_video {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	overflow: hidden;
	z-index: -1;
}
.section_video video {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	z-index: 1;
}

section,
.section {
  color: var(--nero);
  background-color: var(--trasp);
  padding: 120px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.cta-hero{
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--bianco);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--secondo);
  overflow: hidden;
  margin-right: 20px;
  border: 2px solid var(--secondo);
}

.cta-hero:hover{
  color: var(--primo);
  background-color: var(--trasp);
  border: 2px solid var(--primo);
}

/*.cta-hero{
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--primo);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--quinto);
  overflow: hidden;
  margin-right: 20px;
}

.cta-hero:hover{
  background-color: var(--bianco);
  color: var(--primo);
}

.cta-hero::before{
  content: "";
  position: absolute;
  top:-20px;
  left: -20px;
  background-color: var(--primo);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta-hero:hover::before{
  transform: rotate(45deg) scale(0.5);
}

.cta-hero::after{
  content: "";
  position: absolute;
  bottom:-20px;
  right: -20px;
  background-color: var(--primo);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta-hero:hover::after{
  transform: rotate(45deg) scale(0.5);
}*/

.cta-white{
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--bianco);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--secondo);
  border: 2px solid var(--secondo);
  overflow: hidden;
  margin-right: 20px;
}

.cta-white:hover{
  color: var(--primo);
  background-color: var(--trasp);
  border: 2px solid var(--primo);
}

/*.cta-white{
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--bianco);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--terzo);
  overflow: hidden;
  margin-right: 20px;
}

.cta-white:hover{
  background-color: var(--primo);
  color: var(--bianco);
}

.cta-white::before{
  content: "";
  position: absolute;
  top:-20px;
  left: -20px;
  background-color: var(--bianco);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta-white:hover::before{
  transform: rotate(45deg) scale(0.5);
}

.cta-white::after{
  content: "";
  position: absolute;
  bottom:-20px;
  right: -20px;
  background-color: var(--bianco);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta-white:hover::after{
  transform: rotate(45deg) scale(0.5);
}*/

.intro{
  position: relative;
  background-color: var(--bianco);
}

.intro .container{
  position: relative;
  z-index: 2;
}

h2.section-title, .content h2{
  position: relative;
  border-left: 2px solid var(--primo);
  padding: 0 0 0 20px;
  margin-bottom: 60px;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  text-align: left;
}

.intro::before{
  content: "";
  position: absolute;
  background-image: url(../img/intro_01.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  top:0;
  left: 0;
  height: 100%;
  width: calc(50% - 220px);
}

.cosa-facciamo{
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--quarto);
}

.box_cosa-facciamo_home{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bianco);
  padding: 60px 40px;
  min-height: 560px;
  height:auto !important;
  height: 560px;
  overflow: hidden;
}

.box_cosa-facciamo_home-cont-title{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: var(--quarto);
  padding: 60px 40px;
  min-height: 560px;
  height:auto !important;
  height: 560px;
  overflow: hidden;
}

.box_cosa-facciamo_home.box-link_01{
  background-color: var(--primo);
}

.box_cosa-facciamo_home.box-link_02{
  background-color: var(--terzo);
}

.box_cosa-facciamo_home.box-link_03{
  background-color: var(--quinto);
}

.box_cosa-facciamo_home.box-link_04{
  background-color: var(--secondo);
}

.box_cosa-facciamo_home.box-link_05{
  background-color: var(--bianco);
}

.box_cosa-facciamo_home h4{
  position: absolute;
  z-index: auto;
  left: 0px;
  top:0px;
  padding: 60px 40px 0 40px;
  font-size: 40px;
  line-height: 40px;
  color: var(--primo);
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.box_cosa-facciamo_home p{
  position: relative;
  /*transform: translateY(80px);
  opacity: 0;*/
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.box_cosa-facciamo_home.box-link_01 h4,
.box_cosa-facciamo_home.box-link_01 p,
.box_cosa-facciamo_home.box-link_04 h4,
.box_cosa-facciamo_home.box-link_04 p{
  color: var(--bianco);
}

/*.box_cosa-facciamo_home:hover h4{
  filter: blur(10px) opacity(0);
}

.box_cosa-facciamo_home:hover p{
  transform: translateY(0px);
  opacity: 1;
}*/

.box_cosa-facciamo_home::before{
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 30%;
  background-position:center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  aspect-ratio: 1/1;
    // Fallback
    @supports not (aspect-ratio: 1/1) {
    &::before {
      float: left;
      padding-top: 100.00%;
      content: "";
    }

    &::after {
      display: block;
      content: "";
      clear: both;
    }
  }
}

.box_cosa-facciamo_home.box-link_01.box_cosa-facciamo_home::before{
  background-image: url(../img/icon_servizi_01.png);
}

.box_cosa-facciamo_home.box-link_02.box_cosa-facciamo_home::before{
  background-image: url(../img/icon_servizi_04.png);
}

.box_cosa-facciamo_home.box-link_03.box_cosa-facciamo_home::before{
  background-image: url(../img/icon_servizi_03.png);
}

.box_cosa-facciamo_home.box-link_04.box_cosa-facciamo_home::before{
  background-image: url(../img/icon_servizi_05.png);
}

.box_cosa-facciamo_home.box-link_05.box_cosa-facciamo_home::before{
  background-image: url(../img/icon_servizi_02.png);
}

.box_cosa-facciamo_home:hover::before{
  /*filter: blur(10px) opacity(0);*/
  transform: translateY(-10px);
  opacity: 1;
  width: 32%;
}

/* MAPPA */

.mappa{
  position:relative;
  margin: 0;
  padding: 0;
}

#map{
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
}

.leaflet-tile-pane {
  -webkit-filter: grayscale(100%)!important;
  filter: grayscale(100%)!important;
}

/* FINE MAPPA */

.contact {
  background-image: url("../img/contact-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.contact .info-item i {
  background: var(--primo);
  color: var(--bianco);
  font-size: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 200;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 20px;
  font-weight: 200;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--nero);
  background-color: var(--trasp);
  border: 0px;
  border-bottom:1px solid var(--secondo);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-bottom:1px solid var(--primo);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--nero);
}

.contact .php-email-form button[type=submit],
.contact input[type=submit] {
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--primo);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--trasp);
  border: 2px solid var(--primo);
  overflow: hidden;
  margin-right: 20px;
  border-radius: 0;
}

.contact .php-email-form button[type=submit]:hover,
.contact input[type=submit]:hover{
  background-color: var(--primo);
  color: var(--bianco);
}

/*.contact .php-email-form button[type=submit] {
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--bianco);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--terzo);
  overflow: hidden;
  margin-right: 20px;
  border-radius: 0;
}

.contact .php-email-form button[type=submit]:hover{
  background-color: var(--primo);
  color: var(--bianco);
}

.contact .php-email-form button[type=submit]::before{
  content: "";
  position: absolute;
  top:-20px;
  left: -20px;
  background-color: var(--bianco);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.contact .php-email-form button[type=submit]:hover::before{
  transform: rotate(45deg) scale(0.5);
}

.contact .php-email-form button[type=submit]::after{
  content: "";
  position: absolute;
  bottom:-20px;
  right: -20px;
  background-color: var(--bianco);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.contact .php-email-form button[type=submit]:hover::after{
  transform: rotate(45deg) scale(0.5);
}*/

.footer {
  color: var(--bianco);
  background-color: var(--secondo);
  font-size: 20px;
  position: relative;
}

.footer .footer-about p {
  font-size: 16px;
  font-family: "Mozilla Text", sans-serif;
  line-height: 24px;
  color: var(--bianco);
  font-weight: 200;
}

.footer .copyright {
  border-top: 1px solid var(--terzo);
  margin-top: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--bianco);
  font-size: 16px;
  line-height: 24px;
}

.footer .copyright p a:link,
.footer .copyright p a:visited{
  display: inline-block;
  position: relative;
  color: var(--bianco);
  line-height: 16px;
}

.footer .copyright p a:hover{
  position: relative;
  color: var(--primo);
}

.footer .copyright p a::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 0;
  bottom:-5px;
  background-color: var(--bianco);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: none!important;
}

.footer .copyright p a:hover::before{
  width: 0%;
  background-color: var(--primo);
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--bianco-trasp);
  font-size: 16px;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer .footer-links ul a:hover {
  color: var(--bianco);
}

.footer h4 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-contact p {
  font-size: 16px;
  font-family: "Mozilla Text", sans-serif;
  line-height: 24px;
  color: var(--bianco);
  font-weight: 200;
}

.footer .credits {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 200;
}

.footer .credits a:link,
.footer .credits a:visited{
  display: inline-block;
  position: relative;
  color: var(--bianco);
  line-height: 16px;
}

.footer .credits a:hover{
  position: relative;
  color: var(--primo);
}

.footer .credits a::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 0;
  bottom:-5px;
  background-color: var(--bianco);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer .credits a:hover::before{
  width: 0%;
  background-color: var(--primo);
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primo);
  width: 40px;
  height: 40px;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.scroll-top i {
  font-size: 24px;
  color: var(--bianco);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--quinto);
  color: var(--primo);
}

.scroll-top:hover i{
  color: var(--primo);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.footer .social-links a {
  color: var(--bianco);
  background-color: var(--primo);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0px;
  font-size: 16px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer .social-links a:hover {
  color: var(--primo);
  background-color: var(--bianco);
}

/* PAGINA INTERNA */

.page-title{
  color: var(--bianco);
  background-color: var(--secondo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 220px 0 120px 0;
  text-align: left;
  position: relative;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content:flex-start;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumbs ol li a:link,
.breadcrumbs ol li a:visited{
  position: relative;
  z-index: auto;
  color: var(--quinto);
}

.breadcrumbs ol li a::before{
  content: "";
  display: block;
  position: absolute;
  right:0;
  bottom:-5px;
  height: 2px;
  width: 100%;
  background-color: var(--quinto);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.breadcrumbs ol li a:hover{
  color: var(--primo);
}

.breadcrumbs ol li a:hover::before{
  width: 0%;
  background-color: var(--primo);
}

.page-title h1{
  position: relative;
  border-left: 2px solid var(--bianco);
  padding: 0 0 0 20px;
  margin-bottom: 60px;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  text-align: left;
  color: var(--bianco);
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--secondo), transparent 40%);
  position: absolute;
  inset: 0;
}

.about,
.about-2,
.tech,
.why,
.why-2,
.servizi,
.servizi_01,
.servizi_02,
.servizi_03,
.servizi_04,
.servizi_05{
  position: relative;
  overflow: hidden;
}

.about::before{
  content: "";
  position: absolute;
  background-image: url(../img/chi-siamo_01.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.about .content p,
.about-2 .content p,
.tech .content p,
.why .content p,
.why-2 .content p,
.servizi p,
.content ul li, .content ol li {
  position: relative;
  z-index: auto;
  font-size: 20px;
  line-height: 40px;
  font-weight: 200;
  color: var(--nero);
  padding: 0;
  margin-bottom: 30px;
  margin-top: 30px;
}

.content ul, .content ol {
    margin-left: 30px;
}

.about .content ul li i, .content ol li i  {
  color: var(--primo)!important;
  position: absolute;
  left: -30px;
}

.content ol li i  {
  left: -60px;
}

.content ul li, .content ul li {
  line-height: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content ul li, .content ol li {
  display: block !important;
}

.content ol li:nth-child(1) i.bi-check-circle-fill::before {
    content: "1";
}
.content ol li:nth-child(2) i.bi-check-circle-fill::before {
    content: "2";
}
.content ol li:nth-child(3) i.bi-check-circle-fill::before {
    content: "3";
}
.content ol li:nth-child(4) i.bi-check-circle-fill::before {
    content: "4";
}
.content ol li:nth-child(5) i.bi-check-circle-fill::before {
    content: "5";
}
.content ol li:nth-child(6) i.bi-check-circle-fill::before {
    content: "6";
}
.content ol li:nth-child(7) i.bi-check-circle-fill::before {
    content: "7";
}
.content ol li:nth-child(8) i.bi-check-circle-fill::before {
    content: "8";
}
.content ol li:nth-child(9) i.bi-check-circle-fill::before {
    content: "9";
}
.content ol li:nth-child(10) i.bi-check-circle-fill::before {
    content: "10";
}
.content ol li:nth-child(11) i.bi-check-circle-fill::before {
    content: "11";
}
.content ol li:nth-child(12) i.bi-check-circle-fill::before {
    content: "12";
}
.content ol li:nth-child(13) i.bi-check-circle-fill::before {
    content: "13";
}
.content ol li:nth-child(14) i.bi-check-circle-fill::before {
    content: "14";
}
.content ol li:nth-child(15) i.bi-check-circle-fill::before {
    content: "15";
}
.content ol li:nth-child(16) i.bi-check-circle-fill::before {
    content: "16";
}
.content ol li:nth-child(17) i.bi-check-circle-fill::before {
    content: "17";
}
.content ol li:nth-child(18) i.bi-check-circle-fill::before {
    content: "18";
}
.content ol li:nth-child(19) i.bi-check-circle-fill::before {
    content: "19";
}
.content ol li:nth-child(20) i.bi-check-circle-fill::before {
    content: "14";
}

.content ol li i.bi-check-circle-fill::before {
    color: var(--bianco);
    font-family: "Mozilla Headline", sans-serif !important;
    font-size: 20px;
    font-weight: 700 !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--primo);
    text-align: center;
}

h3.page-section-title, .content h3{
  font-size: 40px!important;
  line-height: 40px!important;
  color: var(--primo)!important;
  font-weight: 700!important;
  border-left: 2px solid var(--primo);
  padding: 0 0 0 20px;
  margin-bottom: 60px;
}

h4.page-section-subtitle{
  font-size: 36px!important;
  line-height: 36px!important;
  color: var(--primo)!important;
  font-weight: 700!important;
}

.about-2::before{
  content: "";
  position: absolute;
  background-image: url(../img/chi-siamo_02.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  right: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--secondo), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

a.cta-page{
  position: relative;
  display: inline-block;
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
  color: var(--bianco);
  font-size: 16px;
  padding: 15px 40px;
  background-color: var(--trasp);
  border: 2px solid var(--bianco);
  overflow: hidden;
  margin-right: 20px;
  border-radius: 0;
}

a.cta-page:hover{
  background-color: var(--primo);
  color: var(--bianco);
  border: 2px solid var(--primo);
}

.call-to-action h3 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: var(--quinto);
}

.tech::before{
  content: "";
  position: absolute;
  background-image: url(../img/tech_01.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.tech .content ul {
  list-style: none;
  padding: 0;
}

.tech .content ul li {
  padding: 0 0 15px 0;
  font-weight: 200;
  display: flex;
  font-size: 20px;
  line-height: 30px;
}

.tech .content ul i {
  color: var(--primo);
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
}

.text-link:link,
.text-link:visited{
  position: relative;
  color: var(--primo);
  font-weight: 500;
}

.text-link:hover{
  color: var(--quinto);
}

.text-link::before{
  content: "";
  display: block;
  position: absolute;
  right:0;
  bottom:-5px;
  height: 2px;
  width: 100%;
  background-color: var(--primo);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.text-link:hover::before{
  width: 0%;
  background-color: var(--quinto);
}

.why::before{
  content: "";
  position: absolute;
  background-image: url(../img/perche_01.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.why .content ul,
.why-2 .content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.why .content ul li,
.why-2 .content ul li {
  padding: 0 0 15px 0;
  font-weight: 200;
  display: flex;
  font-size: 20px;
  line-height: 30px;
}

.why .content ul li strong,
.why-2 .content ul li strong{
  font-weight: 700;
}

.why .content ul i{
  color: var(--primo);
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
}

.why-2::before{
  content: "";
  position: absolute;
  background-image: url(../img/perche_02.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  right: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.why-2 .content ul li i.bi-check-circle-fill {
  margin-right: 15px;
}

.why-2 .content ul li i.bi-check-circle-fill::before {
  color: var(--bianco);
  font-family: "Mozilla Headline", sans-serif!important;
  font-size: 20px;
  font-weight: 700!important;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--primo);
  text-align: center;
}

.why-2 .content ul li:nth-child(1) i.bi-check-circle-fill::before {
  content: "1";
}

.why-2 .content ul li:nth-child(2) i.bi-check-circle-fill::before {
  content: "2";
}

.why-2 .content ul li:nth-child(3) i.bi-check-circle-fill::before {
  content: "3";
}

.why-2 .content ul li:nth-child(4) i.bi-check-circle-fill::before {
  content: "4";
}

.why-2 .content ul li:nth-child(5) i.bi-check-circle-fill::before {
  content: "5";
}

.why-2 .content ul li:nth-child(6) i.bi-check-circle-fill::before {
  content: "6";
}

.why-2 .content ul li:nth-child(7) i.bi-check-circle-fill::before {
  content: "7";
}

.why-2 .content ul li:nth-child(8) i.bi-check-circle-fill::before {
  content: "8";
}

.why-2 .content ul li:nth-child(9) i.bi-check-circle-fill::before {
  content: "9";
}

.why-2 .content ul li:nth-child(10) i.bi-check-circle-fill::before {
  content: "10";
}

.why-2 .content ul li:nth-child(11) i.bi-check-circle-fill::before {
  content: "11";
}

.bg-grey{
  background-color: var(--quarto);
}

.servizi_01::before{
  content: "";
  position: absolute;
  background-image: url(../img/cosa_facciamo_01.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.servizi_02::before{
  content: "";
  position: absolute;
  background-image: url(../img/cosa_facciamo_02.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  right: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.servizi_03::before{
  content: "";
  position: absolute;
  background-image: url(../img/cosa_facciamo_03.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.servizi_04::before{
  content: "";
  position: absolute;
  background-image: url(../img/cosa_facciamo_04.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  right: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.servizi_05::before{
  content: "";
  position: absolute;
  background-image: url(../img/cosa_facciamo_05.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: var(--primo);
  background-attachment: fixed;
  background-size: auto;
  bottom: 0;
  left: 0;
  height: calc(100% - 80px);
  width: calc(50% - 220px);
}

.pulsantiera a{
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* STILI PER MOBILE */
@media only screen and (min-width: 1920px) {
}

@media only screen and (max-width: 1400px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 10px;
    font-size: 14px;
  }
  h2.section-title, .content h2{
    margin-bottom: 40px;
    font-size: 60px;
    line-height: 60px;
  }
  .page-title h1{
    margin-bottom: 40px;
    font-size: 60px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 1300px) {
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 1239px) {
}

@media only screen and (max-width: 1199px) {
  .hero h1{
    margin: 0;
  }
  p{
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .tech .content ul li {
    padding: 0 0 10px 0;
    font-size: 18px;
    line-height: 27px;
  }

  .tech .content ul i {
    color: var(--primo);
    font-size: 18px;
    line-height: 27px;
    margin-right: 15px;
  }

  .why .content ul li,
  .why-2 .content ul li {
    padding: 0 0 10px 0;
    font-size: 18px;
    line-height: 27px;
  }

  .why .content ul i{
    color: var(--primo);
    font-size: 18px;
    line-height: 27px;
    margin-right: 15px;
  }

  .why-2 .content ul li i.bi-check-circle-fill::before {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--secondo-trasp);
    transition: 0.3s;
  }
  .mobile-nav-toggle {
    color: var(--bianco-trasp);
    font-size: 30px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus {
    color: var(--bianco);
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 20px 0;
    margin: 0;
    border-radius: 0px;
    background-color: var(--secondo);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--bianco-trasp);
    padding: 10px 20px;
    font-size: 20px;
    font-family: "Mozilla Headline", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 90;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--bianco);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: var(--primo);
    color: var(--bianco);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--bianco);
    color: var(--primo);
  }

  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--bianco);
    color: var(--primo);
    transform: rotate(180deg);
    }

  .navmenu .dropdown>.dropdown-active {
    background-color: var(--bianco);
  }

  .navmenu .dropdown>.dropdown-active a:link,
  .navmenu .dropdown>.dropdown-active a:visited{
    color: var(--secondo);
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .navmenu .dropdown>.dropdown-active a:hover{
    color: var(--primo);
  }

  .hero:before{
    background-position: right;
  }
  .box_cosa-facciamo_home h4{
    position: relative;
    padding: 0px 0px 30px 0px;
    font-size: 30px;
    line-height: 30px;
    min-height: 120px;
    height:auto !important;
    height: 120px;
  }
  .box_cosa-facciamo_home{
    padding: 60px 30px;
    min-height: 480px;
    height:auto !important;
    height: 480px;
    overflow: hidden;
    justify-content: flex-start;
  }
  .box_cosa-facciamo_home-cont-title{
    padding: 60px 30px;
    min-height: 480px;
    height:auto !important;
    height: 480px;
    overflow: hidden;
  }
  .contact .info-item h3 {
    font-size: 26px;
    line-height: 26px;
  }
  .contact .info-item p {
    font-size: 18px;
    line-height: 27px;
  }
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 18px;
  }
  .footer .footer-about p {
    font-size: 14px;
    line-height: 21px;
  }

  .footer h4 {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .footer .footer-contact p {
    font-size: 14px;
    line-height: 21px;
  }

  .footer .credits {
    font-size: 14px;
  }
  .footer .copyright p {
    font-size: 14px;
    line-height: 21px;
  }
  .footer .footer-links ul a {
    font-size: 14px;
  }

  h3.page-section-title, .content h3{
    font-size: 36px!important;
    line-height: 36px!important;
    margin-bottom: 40px;
  }

  h4.page-section-subtitle{
    font-size: 32px!important;
    line-height: 32px!important;
  }

  .about .content p,
  .about-2 .content p,
  .tech .content p,
  .why .content p,
  .why-2 .content p,
  .servizi p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .call-to-action h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 1043px) {
  .hero:before{
    opacity: 0.4;
  }
}

@media only screen and (max-width: 991px) {
  .hero:before {
    position: absolute;
    content: "";
    background-image: url(../img/sfondo_hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    inset: 0;
    z-index: 2;
    background-attachment: local;
  }
  .intro::before{
    content: "";
    position: absolute;
    background-image: url(../img/intro_01_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    top: auto;
    bottom:0;
    left: 0;
    height: 400px;
    width: 100%;
  }
  .intro{
    padding-bottom: 520px;
  }

  .about::before{
    content: "";
    position: absolute;
    background-image: url(../img/chi-siamo_01_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .about-2::before{
    content: "";
    position: absolute;
    background-image: url(../img/chi-siamo_02_mobile.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    right: 0;
    height: 400px;
    width: 100%;
  }

  .tech::before{
    content: "";
    position: absolute;
    background-image: url(../img/tech_01_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .why::before{
    content: "";
    position: absolute;
    background-image: url(../img/perche_01_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .why-2::before{
    content: "";
    position: absolute;
    background-image: url(../img/perche_02_mobile.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    right: 0;
    height: 400px;
    width: 100%;
  }

  .servizi_01::before{
    content: "";
    position: absolute;
    background-image: url(../img/cosa_facciamo_01_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .servizi_02::before{
    content: "";
    position: absolute;
    background-image: url(../img/cosa_facciamo_02_mobile.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    right: 0;
    height: 400px;
    width: 100%;
  }

  .servizi_03::before{
    content: "";
    position: absolute;
    background-image: url(../img/cosa_facciamo_03_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .servizi_04::before{
    content: "";
    position: absolute;
    background-image: url(../img/cosa_facciamo_04_mobile.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    right: 0;
    height: 400px;
    width: 100%;
  }

  .servizi_05::before{
    content: "";
    position: absolute;
    background-image: url(../img/cosa_facciamo_05_mobile.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: var(--primo);
    background-attachment: local;
    background-size:cover;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 100%;
  }

  .about, .about-2, .tech, .why, .why-2, .servizi_01, .servizi_02, .servizi_03, .servizi_04, .servizi_05 {
    padding-bottom: 520px;
  }

  .servizi{
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero blockquote p {
    font-size: 32px;
    line-height: 48px;
  }

  a.cta-hero{
    font-size: 14px;
  }
  a.cta-white{
    font-size: 14px;
  }

  a.cta-page{
    font-size: 14px;
  }

  .box_cosa-facciamo_home-cont-title{
    padding: 40px 20px;
    min-height: auto;
    height: auto;
  }
  .box_cosa-facciamo_home{
    padding: 40px 20px;
    min-height: auto;
    height: auto;
  }
  .box_cosa-facciamo_home h4{
    min-height: auto;
    height: auto;
  }
  .contact .php-email-form button[type=submit] {
    font-size: 14px;
  }
  .page-title{
    padding: 130px 0 60px 0;
  }
  .page-title .breadcrumbs ol {
    font-size: 14px;
  }

  .call-to-action{
    padding: 60px 0 60px 0;
  }
}

@media only screen and (max-width: 620px) {
}

@media only screen and (max-width: 575px) {
}

@media only screen and (max-width: 559px) {
  p{
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .tech .content ul li {
    font-size: 16px;
    line-height: 24px;
  }

  .tech .content ul i {
    font-size: 16px;
    line-height: 24px;
  }

  .why .content ul li,
  .why-2 .content ul li {
    font-size: 16px;
    line-height: 24px;
  }

  .why .content ul i{
    font-size: 16px;
    line-height: 24px;
  }

  .why-2 .content ul li i.bi-check-circle-fill::before {
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }

  .hero:before{
    opacity: 0.2;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 16px;
  }
  .navmenu .dropdown>.dropdown-active a:link,
  .navmenu .dropdown>.dropdown-active a:visited{
    font-size: 12px;
  }

  .hero blockquote {
    margin: 40px 0 80px 0;
  }

  .hero blockquote p {
    font-size: 28px;
    line-height: 42px;
  }

  a.cta-hero{
    font-size: 12px;
  }
  a.cta-white{
    font-size: 12px;
  }

  a.cta-page{
    font-size: 12px;
  }

  .contact .php-email-form button[type=submit] {
    font-size: 12px;
  }

  h2.section-title, .content h2{
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 40px;
  }
  .box_cosa-facciamo_home h4{
    padding: 0px 0px 20px 0px;
    font-size: 24px;
    line-height: 24px;
  }
  .contact .info-item h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .contact .info-item p {
    font-size: 16px;
    line-height: 24px;
  }
  .contact .info-item i {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 16px;
  }
  .footer .footer-about p {
    font-size: 12px;
    line-height: 18px;
  }
  .footer h4 {
    font-size: 16px;
  }
  .footer .footer-contact p {
    font-size: 12px;
    line-height: 18px;
  }

  .footer .credits {
    font-size: 12px;
  }
  .footer .copyright p {
    font-size: 12px;
    line-height: 18px;
  }
  .footer .footer-links ul a {
    font-size: 12px;
  }
  .page-title h1{
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 50px;
  }
  .page-title .breadcrumbs ol {
    font-size: 12px;
  }

  h3.page-section-title, .content h3{
    font-size: 30px!important;
    line-height: 30px!important;
    margin-bottom: 20px;
  }

  h4.page-section-subtitle{
    font-size: 24px!important;
    line-height: 24px!important;
  }
  .about .content p,
  .about-2 .content p,
  .tech .content p,
  .why .content p,
  .why-2 .content p,
  .servizi p {
    font-size: 16px;
    line-height: 32px;
  }
  .call-to-action h3 {
    font-size: 30px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 479px) {
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {

}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (orientation: landscape) {
}


.footer-contact a {
  color: var(--bianco);
  text-decoration: underline;
}

.footer-contact a:hover {
  text-decoration: none;
}
