@charset "UTF-8";
/** Core **/ /* -------------------------------------------------------------------------------- */
/* ! VARIABILI DEL SITO */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------- */
/* ! COLORI */
/* -------------------------------------- */
/* -------------------------------------- */
/* ! FONTS */
/* -------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* ! Animazioni del sito con observer e GSAP */
/* -------------------------------------------------------------------------------- */
/** Stile per tutte le animazioni del sito **/
/* -------------------------------------- */
/* ! GSAP */
/* -------------------------------------- */
/* -------------------------------------- */
/* ! OBSERVER */
/* -------------------------------------- */
.fade-down {
  transform: translateY(-40px);
  opacity: 0;
  transition: 1s all ease;
}

.fade-down.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fade-down1 {
  transform: translateY(-40px);
  opacity: 0;
  transition: 2s all ease;
}

.fade-down1.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fade-down2 {
  transform: translateY(-40px);
  opacity: 0;
  transition: 3s all ease;
}

.fade-down2.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fade-in {
  transform: translateY(40px);
  opacity: 0;
  transition: 1s all ease;
}

.fade-in.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fade-in1 {
  transform: translateY(40px);
  opacity: 0;
  transition: 2s all ease;
}

.fade-in1.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fade-in2 {
  transform: translateY(40px);
  opacity: 0;
  transition: 3s all ease;
}

.fade-in2.in-page {
  transform: translateY(0);
  opacity: 1;
}

.fixed-header .fade-out {
  opacity: 0;
  visibility: hidden;
}

.fade-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fade-left.in-page {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(70px);
  transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fade-right.in-page {
  opacity: 1;
  transform: translateX(0);
}

.footer-animation {
  transform: translateY(-80px);
  opacity: 0;
  transition: 1.3s all ease-out;
}

.footer-animation.in-page {
  transform: translateY(0);
  opacity: 1;
}

/* ---------------------------------- */
/* ! SETUP DEL SITO  */
/* ---------------------------------- */
html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 150px !important;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}

*:focus {
  outline: none;
}

body {
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

body,
input,
textarea,
select,
button {
  font-family: "Helvetica Now Display", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

figure {
  margin: 0;
}

/** Utility class **/
.ar-container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

.ar-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

.ar-background-grey {
  background-color: #eaeaea;
}

.meduim-text {
  font-weight: 500;
}

.text-grey {
  color: #000;
  opacity: 30%;
}

.light,
.light a {
  color: #ffffff !important;
}
.light::after,
.light::before,
.light a::after,
.light a::before {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.dark {
  color: #000 !important;
}
.dark::after,
.dark::before {
  color: #000 !important;
  border-color: #000 !important;
}

.green {
  color: #71bd0d;
}

.text-upper {
  text-transform: uppercase;
}

.text-lower {
  text-transform: none !important;
}

.no-scroll {
  overflow-y: hidden !important;
}

.no-link > a {
  cursor: default;
}

.pos-relative {
  position: relative;
  top: 0;
  left: 0;
}

.open-menu .header__menu a {
  pointer-events: visible !important;
}

.obj-cover {
  object-fit: cover;
}

.aspect-23 {
  aspect-ratio: 2/3;
}

.d-grid {
  display: grid;
}

.ml5 {
  margin-left: 5px;
}

.mt15 {
  margin-top: 15px;
}

.g-column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.wh100 {
  height: 100vh;
}

.wh60 {
  height: 60vh;
}

.wh70 {
  height: 70vh;
}

.flex {
  display: flex;
}

.flex-c {
  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.spacer-60 {
  padding: 60px 0;
}

.spacer-small {
  padding-bottom: 3px;
}

.spacer-5 {
  padding: 5px 0;
}

.spacer-15 {
  padding: 15px 0;
}

.spacer-20 {
  padding: 20px 0;
}

.spacer-25 {
  padding: 25px 0;
}

.spacer-30 {
  padding: 30px 0;
}

.spacer-40 {
  padding: 40px 0;
}

.spacer-50 {
  padding: 50px 0;
}

.spacer-70 {
  padding: 70px 0;
}

.spacer-100 {
  padding: 100px 0;
}

.spacer-120 {
  padding: 120px 0;
}

.center {
  text-align: center;
}

.col-10-5 {
  flex: 0 0 auto;
  width: 89.33333333%;
}

.wh100p {
  height: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.responsive,
.responsive img {
  width: 100%;
  height: auto;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 700 !important;
}

.img-center {
  margin: 0 auto;
}

.underline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

/* -------------------------------------- */
/* ! CLASSI DI WORDPRESS */
/* -------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #ffffff;
  border: 1px solid var(--grey);
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* ---------------------------------------- */
/* ! TIPOGRAFIA DEL SITO */
/* ---------------------------------------- */
/* -------------------------------------- */
/* ! FONTS CARICATI */
/* -------------------------------------- */
/* -------------------------------------- */
/* ! TIPOGRAFIA DI BASE */
/* -------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  word-wrap: break-word;
}

h1,
.fake-h1 {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 2px;
}

h2,
.fake-h2 {
  margin-bottom: 7px;
  font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
  text-transform: uppercase;
}

.h2-special {
  text-transform: none !important;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 42px;
}

h3,
.fake-h3 {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  color: #000;
  font-weight: 500;
}

p,
.fake-p {
  color: #000;
  font-size: 16px;
  font-family: "Helvetica Now Display", sans-serif;
  font-weight: 400;
}

/* -------------------------------------- */
/* ! TIPOGRAFIA ALTERNATIVA */
/* -------------------------------------- */
.text-small {
  font-size: 14px;
}

.big-p {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 500;
  padding-bottom: 20px;
  line-height: 1.6;
}

.overline {
  position: relative;
  left: 0;
  top: 0;
}
.overline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  max-width: 100px;
  width: 100%;
  background-color: #71bd0d;
}
.overline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  max-width: 100px;
  width: 100%;
  background-color: #4ec3e0;
  opacity: 0;
}

.animato::after {
  animation: animazione 1s forwards;
}

@keyframes animazione {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100px) !important;
    opacity: 1;
    left: 100px;
  }
}
.fake-p {
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}

.panel a {
  color: #71bd0d;
  position: relative;
  top: 0;
  left: 0;
}
.panel a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #71bd0d;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.panel a:hover::after {
  width: 100%;
}

/* --------------------------------------- */
/* ! GUTENBERG BLOCKS */
/* --------------------------------------- */
/** Stile per tutti i blocchi standard di Gutenberg **/
/* -------------------------------------- */
/* ! LAYOUT */
/* -------------------------------------- */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.alignwide {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

/** CITAZIONE **/
.wp-block-pullquote blockquote {
  border-left: none;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  padding: 30px;
}

/** Layout **/
/* -------------------------------------- */
/* ! HEADER DEL SITO */
/* -------------------------------------- */
/** is admin logged header **/
.admin-bar header {
  margin-top: 32px;
}

/** Header **/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 90px;
}

.header-top-content {
  background-color: #ffffff;
  padding-right: 6vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-top-content .lingue {
  padding: 0 30px;
}
.header-top-content .lingue a {
  font-size: 12px;
}
.header-top-content .lingue a:hover {
  font-weight: 700;
}
.header-top-content .header__menu .menu,
.header-top-content .lingue ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.header-top-content .header__menu .menu li,
.header-top-content .lingue ul li {
  list-style: none;
}
.header-top-content .header__menu .menu li a,
.header-top-content .lingue ul li a {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-top-content .header__menu .menu .wpml-ls-current-language,
.header-top-content .lingue ul .wpml-ls-current-language {
  font-weight: 700;
}
.header-top-content .header__menu .menu .menu a,
.header-top-content .lingue ul .menu a {
  color: #000;
}
.header-top-content .header__menu .menu .menu a:hover,
.header-top-content .lingue ul .menu a:hover {
  color: #000 !important;
}
.header-top-content #menu-menu-top li,
.header-top-content #menu-menu-top-en li {
  list-style: none;
  padding: 0 20px;
}
.header-top-content #menu-menu-top li a,
.header-top-content #menu-menu-top-en li a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  padding: 10px 0;
}
.header-top-content #menu-menu-top li a::after,
.header-top-content #menu-menu-top-en li a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 7px;
  left: 0;
  background-color: #000;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-top-content #menu-menu-top li a:hover::after,
.header-top-content #menu-menu-top-en li a:hover::after {
  width: 100%;
}
.header-top-content #menu-menu-top .pulsante-tecnico,
.header-top-content #menu-menu-top-en .pulsante-tecnico {
  background-color: #71bd0d;
}
.header-top-content #menu-menu-top .pulsante-tecnico a,
.header-top-content #menu-menu-top-en .pulsante-tecnico a {
  color: #ffffff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
}
.header-top-content #menu-menu-top .pulsante-tecnico a::after,
.header-top-content #menu-menu-top-en .pulsante-tecnico a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #71bd0d;
}
.header-top-content #menu-menu-top .pulsante-tecnico a:hover::after,
.header-top-content #menu-menu-top-en .pulsante-tecnico a:hover::after {
  width: 0;
}
.header-top-content #menu-menu-top .pulsante-tecnico a:hover::before,
.header-top-content #menu-menu-top-en .pulsante-tecnico a:hover::before {
  transform: translateY(2px);
}
.header-top-content #menu-menu-top .pulsante-tecnico a::before,
.header-top-content #menu-menu-top-en .pulsante-tecnico a::before {
  font-family: "FontAwesome";
  content: "\f019";
  display: inline-block;
  margin-left: 5px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-top-content .wpml-ls-legacy-list-horizontal {
  padding: 0;
}
.header-top-content .header__search {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row;
  position: relative;
  left: 0;
  top: 0;
  z-index: 502;
  /*Search bar*/
}
.header-top-content .header__search .fa-magnifying-glass {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-top-content .header__search .search-button:hover .fa-magnifying-glass {
  transform: translateY(-3px);
}
.header-top-content .header__search .search-button {
  cursor: pointer;
}
.header-top-content .header__search .search-mega-menu {
  position: fixed;
  padding: 25px 3vw;
  top: -100%;
  width: fit-content;
  background-color: #333;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 11000;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0px 3px 3px -3px #000000;
}
.header-top-content .header__search .search-mega-menu .search-mega-menu-close {
  position: absolute;
  right: 5vw;
  top: 20px;
  color: #ffffff;
  font-size: 20px;
  z-index: 11000;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header-top-content .header__search .search-mega-menu form {
  width: 100%;
}
.header-top-content .header__search .search-mega-menu form label {
  position: relative;
  display: block;
  width: 100%;
}
.header-top-content .header__search .search-mega-menu form .search-form-search {
  position: absolute;
  background-color: transparent;
  border: none;
  cursor: pointer;
  right: 30px;
  top: 15px;
}
.header-top-content
  .header__search
  .search-mega-menu
  form
  .search-form-search
  .fa-magnifying-glass {
  color: #ffffff !important;
}
.header-top-content
  .header__search
  .search-mega-menu
  .search-field::placeholder {
  padding-left: 20px;
  color: #ffffff !important;
  text-transform: none !important;
}
.header-top-content .header__search .search-mega-menu .search-field {
  padding-left: 20px;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 0.5px solid #ffffff !important;
  color: #ffffff !important;
  text-transform: none !important;
}
.header-top-content .header__search .search-mega-menu input[type="search"] {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid #4ec3e0;
  font-size: 30px;
  color: #ffffff !important;
  font-weight: 700;
  text-transform: none !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-top-content
  .header__search
  .search-mega-menu
  input[type="search"]::placeholder {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
.header-top-content .header__search .search-show {
  top: 0 !important;
}

.header-content {
  background-color: transparent;
  position: relative;
  top: 0;
  left: 0;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .header__logo {
  width: fit-content;
  z-index: 5;
}
.header-content .header__logo img {
  object-fit: cover;
  max-width: 235px;
}
.header-content .sistemi-img {
  width: 50%;
  min-height: 120px;
}
.header-content .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.header-content .menu li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  top: 0;
  left: 0;
  padding: 10px 15px;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .menu li a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 7px;
  left: 15px;
  background-color: #71bd0d;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .menu li a:hover::after {
  width: calc(100% - 30px);
}
.header-content .menu li:hover .header-content {
  background-color: #333;
}
.header-content .menu li:hover .mega-menu {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: visible !important;
}
.header-content .menu .current-item a::after {
  display: inline-block;
  width: calc(100% - 30px);
}
.header-content .menu .mega-menu {
  position: absolute;
  top: -500px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  min-height: 60vh;
  padding: 90px 6vw 70px;
  background-color: #333;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .menu .mega-menu .sub-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 50px;
  border-top: 1px solid #6f6e6e;
}
.header-content .menu .mega-menu .sub-menu li {
  list-style: none;
}
.header-content .menu .mega-menu .sub-menu li a {
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .menu .mega-menu .sub-menu li a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 7px;
  left: 15px;
  background-color: #71bd0d;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-content .menu .mega-menu .sub-menu li a:hover {
  color: #71bd0d !important;
}
.header-content .menu .mega-menu .sub-menu li a:hover::after {
  width: 0;
}
.header-content .menu .mega-menu .mega-menu__row-images {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  position: relative;
  top: 0;
  left: 0;
}
.header-content .menu .mega-menu .mega-menu__row-images .ar-img-menu-product,
.header-content .menu .mega-menu .mega-menu__row-images .immagine {
  max-width: 310px;
  height: 260px;
  max-height: 260px;
  object-fit: cover;
}
.header-content .menu .mega-menu .mega-menu__row-images .immagine {
  z-index: 2;
  width: 310px;
  height: 260px;
  position: absolute;
  top: calc(50% - 105px);
  left: calc(50% - 155px);
}
.header-content .mega-menu__row-submenu-sistemi .sub-menu {
  gap: 70px !important;
}
.header-content .mega-menu__row-submenu-sistemi .sub-menu .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-direction: column;
}
.header-content .burger-container {
  display: none;
}

.bg-dark {
  background-color: #333;
}

.open-menu #menu-menu-principale,
.open-menu #menu-menu-principale-en {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: visible !important;
  overflow-y: scroll;
  height: 100vh;
}

.open-menu #menu-menu-principale a,
.open-menu #menu-menu-principale-en a {
  pointer-events: visible !important;
}

.wpml-ls-legacy-list-horizontal a {
  padding: 0 !important;
}

.search-button {
  display: none;
}

/** popup **/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup.hidden {
  display: none;
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('../images/pop-up.jpeg'); /* Sostituisci con il tuo file */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* -------------------------------------- */
/* !BREADCRUMBS */
/* -------------------------------------- */
/** Formattazione delle breadcrumbs del sito **/
.yoast-breadcrumbs,
.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
}
.yoast-breadcrumbs span,
.breadcrumbs span {
  display: flex;
  color: #000;
  font-size: 15px;
  opacity: 0.5;
}
.yoast-breadcrumbs p,
.yoast-breadcrumbs a,
.breadcrumbs p,
.breadcrumbs a {
  color: #000;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
}
.yoast-breadcrumbs a,
.breadcrumbs a {
  margin: 0 5px;
}
.yoast-breadcrumbs .breadcrumb_last,
.breadcrumbs .breadcrumb_last {
  margin-left: 5px;
  opacity: 1;
}

/* -------------------------------------- */
/* ! PULSANTI DEL SITO */
/* -------------------------------------- */
/** Torna al top **/
.up {
  position: fixed;
  bottom: 55px;
  right: 20px;
  z-index: 11;
  cursor: pointer;
  display: inline-block;
  display: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.up .up-container {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #eaeaea;
  padding: 0;
  width: 90px;
  height: 90px;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.up .up-container span {
  font-size: 14px;
}
.up .up-container i {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.up:hover i {
  transform: translateY(-4px);
}

/** Pulsante principale **/
.button,
.wp-block-button__link {
  display: inline-block;
  background-color: #333;
  border: 1px solid #333;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  font-weight: 400;
  width: fit-content;
  padding: 16px 39px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.button:hover,
.wp-block-button__link:hover {
  background-color: transparent;
  color: #333;
}

.button-large {
  padding: 16px 75px;
}

.ar-tecnica__accordion {
  width: fit-content;
  font-size: 16px;
  background-color: transparent;
  color: #000;
  border: none;
  width: 100%;
  padding: 0;
}

.button-naked,
.button-naked-gutenberg a {
  width: fit-content;
  font-size: 18px;
  text-transform: uppercase;
  background-color: transparent;
  color: #000;
  border: none;
  width: fit-content;
  padding: 0;
}
.button-naked::after,
.button-naked-gutenberg a::after {
  font-family: "FontAwesome";
  content: "\f061";
  display: inline-flex;
  margin-left: 20px;
  font-size: 22px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.button-naked:hover::after,
.button-naked-gutenberg a:hover::after {
  transform: translateX(5px);
}

.button-line {
  width: 100%;
  padding: 24px 24px 30px;
  border-bottom: 1px solid #000;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.button-line::after {
  font-family: "FontAwesome";
  content: "\f061";
  display: inline-flex;
  margin-right: 10px;
  font-size: 22px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.button-line:hover::after {
  transform: translateX(5px);
}

.button-alternative {
  position: relative;
}

/** Pulsante scrolla giù **/
.burger-container {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
}

/** Burger button **/
.burgermenu {
  border: none;
  background: none;
  width: 40px;
  height: 30px;
  position: relative;
  padding: 0;
  opacity: 1;
  outline: none;
  cursor: pointer;
}

.burgermenu span {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 2px;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.burgermenu span:before,
.burgermenu span:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.burgermenu span:before {
  top: 15px;
}

.burgermenu span:before {
  animation: topLineBurger 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.burgermenu span:after {
  animation: bottomLineBurger 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.burgermenu.opened span {
  background-color: transparent !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.burgermenu.opened span:before {
  top: 0;
  animation: topLineCross 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  background-color: #ffffff !important;
}

.burgermenu.opened span:after {
  animation: bottomLineCross 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  top: 0;
  background-color: #ffffff !important;
}

@keyframes topLineCross {
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes bottomLineCross {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px) rotate(-45deg);
  }
}
@keyframes topLineBurger {
  0% {
    transform: translateY(0px) rotate(45deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes bottomLineBurger {
  0% {
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
/* -------------------------------------- */
/* ! FOOTER DEL SITO */
/* -------------------------------------- */
/** Footer **/
#footer {
  background-color: #333;
  padding: 90px 60px;
}
#footer p {
  color: #ffffff;
  font-size: 16px;
}
#footer h3 {
  color: #656363;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 80px;
  height: 50px;
  display: flex;
  align-items: end;
  font-weight: 500;
}
#footer .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#footer .menu li {
  list-style: none;
}
#footer .menu li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#footer .menu li a:hover {
  color: #71bd0d;
}
#footer .policy-container {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
#footer .policy-container a {
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#footer .policy-container a:hover {
  color: #71bd0d;
}

.social-container ul {
  display: flex;
  gap: 10px;
}
.social-container ul li {
  list-style: none;
}
.social-container ul li a {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  width: 27.5px;
  height: 27.5px;
  background-color: #ffffff;
  color: #333;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.social-container ul li:hover a {
  transform: translateY(-5px);
}

/* ---------------------------------- */
/* ! CONTACT FORM 7 SETUP  */
/* ---------------------------------- */
/** Autofill **/
input:-webkit-autofill {
  box-shadow: inset 0 0 0 9999px #ffffff;
  -webkit-box-shadow: inset 0 0 0 9999px #ffffff;
}

input:-webkit-autofill:focus {
  box-shadow: 0 0 0 50px #ffffff inset;
  -webkit-box-shadow: 0 0 0 50px #ffffff inset;
}

/** Campi del form **/
.form-container {
  max-width: 860px;
  margin: 0 auto;
}

.form-container__inner {
  display: flex;
  gap: 65px;
}
.form-container__inner .form-col {
  width: 50%;
}
.form-container__inner .wpcf7-response-output {
  max-width: 860px;
}
.form-container__inner input[type="text"],
.form-container__inner input[type="email"],
.form-container__inner input[type="tel"] {
  width: 100%;
  font-size: 14px;
  padding: 15px 24px;
  border: 1px solid #c9c4c4;
  margin-bottom: 19px;
  min-height: 60px;
}
.form-container__inner input[type="text"]:nth-child(n-1) {
  margin-bottom: 20px;
}
.form-container__inner .input-textarea {
  margin-top: 50px;
}
.form-container__inner .wpcf7-form-control-wrap {
  margin-top: 12px;
  display: inline-block;
  width: 100%;
}
.form-container__inner .input-row {
  width: 100%;
}
.form-container__inner label {
  font-size: 14px;
  margin-bottom: 14px;
}
.form-container__inner .consenso-privacy {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-container__inner .consenso-privacy input[type="checkbox"] {
  border-radius: 50%;
}
.form-container__inner .consenso-privacy .wpcf7-form-control-wrap {
  margin-top: 0;
}
.form-container__inner .consenso-privacy p {
  font-size: 14px;
  font-weight: 700;
}
.form-container__inner textarea {
  width: 100%;
  font-size: 14px;
  padding: 15px 24px;
  border: 1px solid #c9c4c4;
  min-height: 300px;
  resize: none;
}
.form-container__inner .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 700;
  margin: 0 15px 0 5px;
}
.form-container__inner .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-submit {
  width: 100% !important;
  margin-top: 50px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: rgb(190, 46, 46);
}

.wpcf7-response-output {
  font-family: "Open Sans", sans-serif;
  border: none !important;
  margin: 2em 0 !important;
  padding: 0 !important;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgb(190, 46, 46);
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #000 !important;
}

/** newsletter **/
._form ._form-content {
  display: grid;
  column-gap: 80px;
  grid-template-columns: repeat(2, 1fr);
}
._form label {
  font-size: 14px;
  font-weight: 700;
}
._form ._field-wrapper {
  margin-top: 14px;
}
._form input[type="text"] {
  width: 100%;
  font-size: 14px;
  padding: 15px 24px;
  border: 1px solid #c9c4c4;
  margin-bottom: 19px;
  min-height: 60px;
}
._form ._button-wrapper {
  display: flex;
  align-items: center;
}
._form ._submit {
  display: inline-block;
  background-color: #333;
  border: 1px solid #333;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  font-weight: 400;
  width: fit-content;
  padding: 16px 39px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  top: 6px;
  left: 0;
}
._form ._submit:hover {
  background-color: transparent;
  color: #333;
}
._form ._form-branding {
  display: none;
}
._form ._form-fieldset {
  border: none;
}

/** Elementi del sito **/
/* --------------------------------------- */
/* ! BLOCCHI CUSTOM DI GUTENBERG(front-end) */
/* --------------------------------------- */
/** Stile per tutti i blocchi custom fatti per Gutenberg **/
/* Faq */
.accordion {
  background-color: transparent;
  color: #000;
  cursor: pointer;
  padding: 40px 0 40px 0px;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  transition: 0.4s;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion::after {
  font-family: "FontAwesome";
  content: "+";
  display: inline-flex;
  margin-left: auto;
  font-size: 22px;
  width: 30px;
  height: 30px;
  min-width: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 13px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #ffffff;
}

.accordion-container-inner {
  position: relative;
  top: 0;
  left: 0;
}

.extend {
  animation: fadeIn 0.3s;
  display: block !important;
  border-bottom: 1px solid #000;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #ffffff;
  z-index: 9;
}

.extend-down {
  animation: fadeIn 0.3s;
  display: block !important;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  z-index: 9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.active {
  content: "";
  font-weight: 700;
}

.active::before,
.active::after {
  background-color: transparent;
}

.active::before {
  transform: rotate(90deg);
}

.active .accordion::after {
  font-family: "FontAwesome";
  content: "\f068";
  display: inline-flex;
  margin-left: auto;
  font-size: 22px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color: transparent;
  color: transparent;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  display: none;
}

.panel p {
  padding: 30px;
}

/** Before and after **/
.prima-dopo {
  position: relative;
}

/* --------------------------------------- */
/* ! BLOCCHI CUSTOM DI GUTENBERG(backend) */
/* --------------------------------------- */
/** Stile per tutti i blocchi custom fatti per Gutenberg **/
/* ---------------------------------------- */
/* ! BARRE DI SCORRIMENTO DEL SITO */
/* ---------------------------------------- */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

/* ----------------------------------------------------------------------- */
/* VARIABILI */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* GRID SYSTEM */
/* ----------------------------------------------------------------------- */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
  .pl15 {
    padding-left: calc(50vw - 570px);
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
  .pl15 {
    padding-left: calc(50vw - 660px);
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 0;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

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

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/** Pagine **/
/* -------------------------------------- */
/* ! 404 */
/* -------------------------------------- */
.ar-main-404 {
  width: 100%;
  height: 70vh;
}
.ar-main-404__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ar-main-404__container {
  height: 100%;
  width: 100%;
}
.ar-main-404__text {
  height: 100%;
  justify-content: center;
  align-items: center;
}
.ar-main-404__text h1 {
  color: #ffffff;
}

.button-center {
  margin: 30px auto 0;
}

/* -------------------------------------- */
/* ! HOME PAGE DEL SITO */
/* -------------------------------------- */
.ar-main-fp,
.ar-main-single-progetti {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: relative;
  top: 0;
  left: 0;
}

.ar-main-inner-sup {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ar-main__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
}

.ar-main__container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.ar-main__text {
  justify-content: center;
}

.ar-main__text h1,
.ar-main__text h2,
.ar-main__text p,
.ar-main__text a {
  color: #ffffff;
}

.ar-main__text p {
  width: 60%;
}

.ar-main__text h2 {
  text-transform: none;
}

.side-button {
  color: #71bd0d;
  width: 300px;
  height: fit-content;
  position: absolute;
  bottom: calc(50% - 85px);
  right: 3vw;
  z-index: 5;
  font-size: 14px;
  transform: rotate(-90deg);
  transform-origin: right;
  display: inline-flex;
  gap: 15px;
}
.side-button span {
  min-width: 150px;
}
.side-button .second-span {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}
.side-button .second-span::after {
  font-family: "FontAwesome";
  content: "\f061";
  display: inline-block;
  position: absolute;
  font-size: 22px;
  right: -30px;
  top: 10px;
  color: #71bd0d;
  transform: rotate(90deg);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.side-button:hover .second-span::after {
  transform: rotate(90deg) translateX(5px);
}
.side-button a {
  position: relative;
  right: -120px;
  bottom: -120px;
}

.slick-dots {
  display: flex;
  justify-content: flex-end;
  padding-right: 6vw;
  position: absolute;
  bottom: 70px;
  right: 0;
}
.slick-dots li {
  width: 100px;
  height: 3px;
  margin: 0;
}
.slick-dots li button::before {
  width: 100px;
  height: 3px;
  padding: 0;
  content: "";
  background-color: #f2f1ed;
  opacity: 0.5;
}
.slick-dots .slick-active button::before {
  background-color: #71bd0d !important;
  opacity: 1 !important;
}

.applications-open {
  right: 0 !important;
}

.applications-container {
  background-color: #4ec3e0;
  height: 60vh;
  max-height: 600px;
  padding: 22px 40px 30px;
  z-index: 3;
  position: absolute;
  top: 0;
  right: -600px;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.applications-container .close-applications {
  background-color: transparent;
  display: inline-flex;
  font-size: 22px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.applications-container .close-applications:hover {
  transform: translateX(5px);
}
.applications-container .close-applications i {
  color: #ffffff;
}
.applications-container .applications-container__inner {
  padding: 70px 50px 0;
}
.applications-container .applications-container__inner h2 {
  color: #ffffff;
  margin-bottom: 50px;
}
.applications-container .applications-container__inner .prodotti-categorie ul {
  display: flex;
  flex-direction: column;
}
.applications-container
  .applications-container__inner
  .prodotti-categorie
  ul
  li {
  list-style-type: none;
}
.applications-container
  .applications-container__inner
  .prodotti-categorie
  ul
  li
  a {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  transform: unset;
  font-weight: 700;
  padding: 0;
  width: auto;
  height: auto;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffffff;
}
.applications-container
  .applications-container__inner
  .prodotti-categorie
  ul
  li
  a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transform: rotate(0);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.applications-container
  .applications-container__inner
  .prodotti-categorie
  ul
  li
  a:hover::after {
  transform: rotate(0);
  width: 100%;
}

.three-columns__text {
  padding-right: 6vw;
}

.overlay-laterale {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ar-banner:hover .overlay-laterale {
  opacity: 0;
}

.ar-banner-fp {
  height: auto;
}
.ar-banner-fp .ar-menu_term {
  padding: 60px 0 30px;
}
.ar-banner-fp .ar-menu_term ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ar-banner-fp .ar-menu_term ul li {
  list-style-type: none;
}
.ar-banner-fp .ar-menu_term ul li a {
  padding: 15px;
  opacity: 0.36;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-banner-fp .ar-menu_term ul li a:hover {
  opacity: 1;
}
.ar-banner-fp .ar-menu_term .term_selected {
  opacity: 1;
}
.ar-banner-fp .side-button {
  bottom: calc(50% + 50px);
  color: #ffffff;
}
.ar-banner-fp .side-button .second-span::after {
  color: #ffffff;
}

.ar-container__inner {
  gap: 3px;
}
.ar-container__inner .ar-card-fp {
  width: 100%;
}
.ar-container__inner .ar-card-fp .ar-card__container__img {
  min-height: 450px;
  display: flex;
  align-items: end;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ar-container__inner .ar-card-fp .ar-card__container__img h3 {
  width: 100%;
  text-align: center;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 20px 0 35px;
}
.ar-container__inner .ar-card-fp p {
  min-height: 250px;
  height: 100%;
  max-height: 290px;
  padding: 40px 40px 50px;
  line-height: 2.2;
  background-color: #333;
}

.layer-form {
  display: none;
}

.bafg-twentytwenty-container {
  max-width: 100% !important;
}

/* -------------------------------------- */
/* ! Pagna del singolo prodotto */
/* -------------------------------------- */
.ar-title_single-product {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 700;
  font-family: "Helvetica Now Display", sans-serif;
  color: #000;
}

.sub-title {
  padding-bottom: 32px;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

.next-post,
.prev-post {
  text-transform: uppercase;
  font-size: 14px;
}

.next-post a,
.prev-post a {
  display: flex;
  padding-bottom: 30px;
  align-items: center;
}

.prev-post a::before {
  font-family: "Font Awesome 6 pro";
  content: "\f060";
  display: inline-block;
  margin-right: 20px;
  font-size: 22px;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.next-post a::after {
  font-family: "Font Awesome 6 pro";
  content: "\f061";
  display: inline-block;
  margin-left: 20px;
  font-size: 22px;
  font-weight: light;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.prev-post a:hover::before {
  transform: translateX(-5px);
}

.next-post a:hover::after {
  transform: translateX(5px);
}

.ar-technical-container {
  min-height: 70vh;
}

.ar-sp-disegno-col {
  border-left: 1px solid #000;
  height: 630px;
}
.ar-sp-disegno-col h3 {
  font-size: 18px;
  font-weight: 700;
}

.ar-dati-tecnici p {
  font-size: 16px;
}

.ar-sp-finitura-col {
  max-height: 630px;
  min-height: 630px;
  overflow: hidden;
}
.ar-sp-finitura-col button {
  width: 100%;
  text-align: left;
  padding-left: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-sp-finitura-col button:hover {
  transform: translateX(5px);
}
.ar-sp-finitura-col .active {
  color: #000;
  opacity: 1;
}
.ar-sp-finitura-col .opacity-30 {
  opacity: 30%;
}
.ar-sp-finitura-col .ar-sp-finitura-col-inner {
  overflow-y: auto;
  padding: 0 7px;
}

.codice-prodotto {
  padding-left: 50px;
}

.ar-sp-disegno-col-left {
  padding-left: 40px;
  padding-right: 0;
  height: 630px;
  max-height: 630px;
  min-height: 630px;
}

.ar-sp-disegno-col-center {
  padding-left: 0 !important;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.ar-sp-disegno-col-center .abs {
  position: absolute;
  top: 0;
  left: 0;
}
.ar-sp-disegno-col-center img {
  z-index: -1;
}
.ar-sp-disegno-col-center .immagine-render {
  max-height: 470px;
  max-width: 580px;
  object-fit: cover;
}
.ar-sp-disegno-col-center .image-container {
  position: relative;
  top: 0;
  left: 0;
}

.immagine-finitura {
  object-fit: cover;
  width: 180px;
  height: 40px;
}

.ar-box-render {
  height: fit-content;
}

.col-descizione {
  padding-left: 30px;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  visibility: visible;
}

.col-descizione {
  gap: 30px;
}

.file-container {
  border-bottom: 1px solid #333;
}

.download:hover::after {
  transform: translateY(-4px);
}

.download::after {
  font-family: "FontAwesome";
  content: "\f019";
  display: inline-block;
  margin-left: 20px;
  font-size: 22px;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ar-tecnica__download-diretto-li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ar-banner-title {
  padding-top: 50px;
  font-size: clamp(2.125rem, 1.95rem + 0.875vw, 3rem);
}

.ar-banner {
  width: 100%;
  height: 85vh;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
.ar-banner .ar-banner-title__container {
  z-index: 2;
  position: relative;
  top: 0;
  left: 0;
}
.ar-banner .overlay-laterale {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.faq-box {
  min-height: 80vh;
  padding-bottom: 100px;
}

.faq-img-sx,
.faq-img-dx {
  width: 100%;
  height: 100%;
  min-height: 60vh;
}

/* -------------------------------------- */
/* ! Pagna del singolo progetto */
/* -------------------------------------- */
.ar-main-single-progetti {
  height: 75vh;
  min-height: 640px;
}

.ar-media-text-col2-special {
  gap: 3px !important;
}
.ar-media-text-col2-special__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: calc(50% - 760px);
}
.ar-media-text-col2-special .image_1 img {
  min-width: 960px;
}

.localita-container {
  padding-left: calc(50% - 760px);
  width: 100%;
  max-width: 960px;
}
.localita-container__inner {
  display: flex;
  gap: 60px;
}

.second-part {
  display: flex;
  gap: 35px;
  padding-left: 100px;
}

.text-container-special {
  padding-left: 100px;
}
.text-container-special .text-container__inner {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: auto;
}

.overline-large::before,
.overline-large::after {
  left: calc(50% - 760px);
}

.slick-next {
  right: 50px;
}

.slick-next::before {
  font-family: "Font Awesome 6 pro";
  content: "\f105";
  display: inline-block;
  font-weight: 200;
  font-size: 70px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slick-prev {
  left: 50px;
  z-index: 2;
}

.slick-prev::before {
  font-family: "Font Awesome 6 pro";
  content: "\f104";
  display: inline-block;
  font-weight: 200;
  font-size: 70px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.block-image-container {
  gap: 3px;
}
.block-image-container img {
  min-height: 640px;
  height: auto;
  margin-right: 1.5px;
  margin-left: 1.5px;
}

.map-container {
  min-height: 660px;
}
.map-container iframe {
  width: 100%;
  min-height: 660px;
}

/* -------------------------------------- */
/* ! Pagna del singolo prodotto */
/* -------------------------------------- */
.ar-main-tassonomie {
  height: 70vh;
  max-height: 600px;
}

.ar-progetti-container,
.ar-prodotti-container {
  height: 60vh;
  max-height: 600px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
}

.descrizione-img {
  min-height: 100px;
}

.ar-list-icon-container {
  height: 70vh;
}

.ar-progetti-title,
.ar-prodotti-title {
  width: 70px;
  height: 100%;
  background-color: #71bd0d;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
}

.ar-prodotti-title {
  background-color: #4ec3e0;
  position: relative;
  top: 0;
  left: 0;
}

.ar-progetti-title a,
.ar-prodotti-title a {
  position: absolute;
  bottom: 0;
  left: 68px;
  height: 70px;
  width: 60vh;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  white-space: nowrap;
  font-weight: 500;
  margin: 0;
  padding: 0 22px 3px 35px;
}
.ar-progetti-title a::after,
.ar-prodotti-title a::after {
  transform: rotate(90deg);
  font-size: 17px;
}
.ar-progetti-title a:hover::after,
.ar-prodotti-title a:hover::after {
  transform: rotate(90deg) translateX(5px);
}

.ar-filter-button {
  gap: 160px;
  padding: 15px 0 20px;
  border-bottom: 1px solid #000;
}
.ar-filter-button .filter-button {
  cursor: pointer;
  min-height: 60px;
  justify-content: space-between;
  padding: 5px;
}
.ar-filter-button p {
  font-size: 16px;
  padding-top: 10px;
}

.ar-product-container .ar-row-product {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.ar-product-container .box-prodotto {
  margin: 0 40px 40px 0;
  width: calc(33.3333333333% - 40px);
}
.ar-product-container .box-prodotto h3 {
  font-size: 18px;
  font-weight: 700;
}
.ar-product-container .box-prodotto .box-prodotto__title {
  padding-bottom: 15px;
}
.ar-product-container .box-prodotto .box-prodotto-inner {
  border: 1px solid #000;
  overflow: hidden;
}
.ar-product-container .box-prodotto .text-container {
  padding: 25px;
}
.ar-product-container .box-prodotto .text-container .text-inner {
  gap: 20px;
}
.ar-product-container .box-prodotto .box-prodotto__image {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-product-container .box-prodotto .box-prodotto__image img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.ar-product-container .box-prodotto:hover .box-prodotto__image {
  transform: scale(1.15);
}

.ar-project-container_inner .box-project {
  width: 33.33%;
}

.show-all {
  border-bottom: 1px solid #000;
  padding: 100px 0 30px;
}
.show-all .show-all-button {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.show-all .show-all-button::after {
  font-family: "FontAwesome";
  content: "\f063";
  display: inline-block;
  margin-top: 30px;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.show-all .show-all-button:hover::after {
  transform: translateY(5px);
}

.hidden-product {
  display: none !important;
}

.rotate:hover::after {
  transform: translateY(-5px) rotate(180deg) !important;
}
.rotate::after {
  transform: rotate(180deg);
}

.ar-category-projects h2 {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  color: #000;
  font-weight: 500;
  text-transform: none;
  padding-bottom: 20px;
}
.ar-category-projects p {
  width: 95%;
}

.ar-media-text-col2 .text-contenitore {
  padding-left: calc(50% - 660px);
}
.ar-media-text-col2 .text-container {
  width: 90%;
}
.ar-media-text-col2 img {
  width: 100%;
  max-height: 600px;
}

.ar-project-container_inner {
  min-height: 85vh;
  max-height: 850px;
  gap: 1px;
}
.ar-project-container_inner .box-project {
  position: relative;
  top: 0;
  left: 0;
}
.ar-project-container_inner .box-project::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-project-container_inner .box-project:hover::after {
  background-color: rgba(0, 0, 0, 0);
}
.ar-project-container_inner .box-project__inner {
  width: 50%;
  min-height: 265px;
  z-index: 2;
}
.ar-project-container_inner .box-project__inner h3 {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
}

.ar-finiture-contaienr {
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.ar-finiture-contaienr img {
  object-fit: cover;
  min-height: 305px;
}

.mappa-projects .acf-map {
  height: 100%;
  width: 100%;
}

.ar-map2_container {
  height: 500px;
}

.img-icon {
  gap: 25px;
}
.img-icon img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 50px;
  height: 50px;
}

.finiture-container1,
.finiture-container2 {
  height: 350px;
  overflow: hidden;
}

.related-post__container {
  justify-content: space-between;
  gap: 20px;
}
.related-post__container .related-post__card {
  width: 100%;
  max-width: 420px;
}
.related-post__container .related-post__card .related-post__img {
  width: 100%;
  height: 230px;
}

.ar-row-products {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.ar-row-products .box-prodotto {
  min-height: 380px;
  height: 400px;
  width: 100%;
}
.ar-row-products .box-prodotto a {
  height: 400px;
}
.ar-row-products .box-prodotto a img {
  height: 280px;
}

/* -------------------------------------- */
/* ! page Area tecnica */
/* -------------------------------------- */
.ar-tecnica li {
  list-style: none;
}

.tecslide-schede {
  display: none;
}

.category-li {
  border-top: 1px solid #000;
}

.category-li:nth-last-child(1) {
  border-top: 1px solid #000;
  /*border-bottom: 1px solid #000;*/
}

.mfp-content {
  background-color: #ffffff;
  padding: 120px 30px 30px;
  z-index: 99999;
  position: relative;
  top: 0;
  left: 0;
  width: fit-content !important;
}

.category-li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.category-li > a .ar-tecnica__download-button::after {
  font-family: "FontAwesome";
  content: "\f063";
  display: inline-flex;
  margin-left: 60px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-li > a .img-title-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.category-li > a .img-title-container .category-name {
  font-size: 18px;
}

.ar-schede-tecniche .ar-tecnica__download-diretto-li {
  padding: 16px 0 16px 140px;
  padding-left: 128px;
}
.ar-schede-tecniche .ar-tecnica__accordion {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 140px;
  padding-left: 128px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.ar-schede-tecniche .ar-tecnica__accordion .plus-container {
  display: inline-flex;
  margin-left: 20px;
  font-size: 22px;
  width: 30px;
  height: 30px;
  min-width: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  top: 0;
  left: 0;
}
.ar-schede-tecniche .ar-tecnica__accordion .plus-container .plus-1.rotate {
  transform: rotate(90deg);
}
.ar-schede-tecniche .ar-tecnica__accordion .plus-container .plus-1,
.ar-schede-tecniche .ar-tecnica__accordion .plus-container .plus-2 {
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 1px);
  display: inline-block;
  width: 2px;
  height: 12px;
  background-color: #71bd0d;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-schede-tecniche .ar-tecnica__accordion .plus-container .plus-2 {
  width: 12px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 6px);
}
.ar-schede-tecniche .product-container {
  /*border-bottom: 1px solid #000;*/
  display: none;
}
.ar-schede-tecniche .product-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 520px;
  width: fit-content;
  padding: 16px 0 16px 0;
  margin-left: 188px;
  border-bottom: 1px solid #000;
}
.ar-schede-tecniche .product-li p {
  min-width: 200px;
}
.ar-schede-tecniche .product-li a:nth-last-child(1) {
  margin-left: 80px;
}
.ar-schede-tecniche .product-li .request-cad-button {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.ar-schede-tecniche .product-li .request-cad-button::after {
  font-family: "FontAwesome";
  content: "\f061";
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-schede-tecniche .product-li:nth-last-child(1) {
  border-bottom: none;
}

/* -------------------------------------- */
/* ! Stile per le pagine */
/* -------------------------------------- */
/** Template Azienda **/
.ar-container-text-left {
  width: 100%;
  height: 90vh;
  max-height: 700px;
}
.ar-container-text-left__inner h2 {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: none;
}

.title-long-image {
  color: #71bd0d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.media-testo-azienda .text-container {
  padding-left: calc(50% - 300px);
}

.ar-image-page {
  width: 100%;
  height: 100vh;
}

.media_text_tp .text-container {
  padding-left: calc(50% - 660px);
}

.ar-container__inner-tp h3 {
  font-size: 22px;
  font-weight: 500;
}
.ar-container__inner-tp .ar-card-fp p {
  height: auto;
  max-height: unset;
  min-height: unset;
  padding: 0;
}
.ar-container__inner-tp .ar-card-fp .text-container {
  min-height: 250px;
  height: 100%;
  max-height: 290px;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px 8vw 50px;
  line-height: 2.2;
  background-color: #333;
}

.media-text-tp-terzo__inner {
  height: fit-content;
}
.media-text-tp-terzo__inner .text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: calc(50% - 658.5px);
}
.media-text-tp-terzo__inner .text-container p {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 500;
  padding-bottom: 20px;
  line-height: 1.6;
}
.media-text-tp-terzo__inner .text-container li {
  list-style: none;
  color: #000;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  font-family: "Helvetica Now Display", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.media-text-tp-terzo__inner img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 2/3;
  object-fit: cover;
}

.certificazioni-container .loghi-conteiner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.certificazioni-container .file-container {
  padding-right: 25px;
}

.img-container {
  display: flex;
  gap: 5px;
}
.img-container .ar-block-image {
  height: 60vh;
  max-height: 630px;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.ar-link-banner {
  height: 100%;
}

.ar-banner .ar-banner-title__container {
  height: 100%;
}

.ar-banner-tp {
  display: flex;
  align-items: end;
}
.ar-banner-tp h2 {
  text-transform: none;
}

.text-container-fp {
  display: flex;
  justify-content: end !important;
  padding: 0 !important;
  padding-bottom: 30px !important;
  min-height: 170px !important;
  max-height: 190px !important;
}

.file-container-tp {
  border-top: 1px solid #000;
  width: 100%;
}

.gradient-container {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.gradient-container::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgb(39, 110, 66) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.three-columns-tp__img img {
  width: 645px;
}

.ar-banner__inner h2,
.ar-banner__inner a {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
}

/** Template contatti **/
.ar-spacer-top {
  padding-top: 180px;
}

.social-contact a {
  background-color: #625e5e !important;
  color: #ffffff !important;
}

.text-social-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-social-container h1 {
  padding-left: 100px;
}

.ar-map-container {
  position: relative;
  top: 0;
  left: 0;
}
.ar-map-container iframe {
  width: 100%;
  max-height: 500px;
  height: 62vh;
}
.ar-map-container .info-container {
  width: fit-content;
  padding: 67px 50px 45px;
  background-color: #ffffff;
  box-shadow: 3px 0px 10px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 55px;
  left: 95px;
}
.ar-map-container .info-container__title {
  font-weight: 800;
  font-size: 20px;
}
.ar-map-container .info-container__inner {
  display: flex;
  flex-direction: column;
}

.phone-element,
.email-element {
  font-weight: 700;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block;
}
.phone-element::before,
.email-element::before {
  font-family: "FontAwesome";
  content: "\f095";
  display: inline-flex;
  margin-right: 15px;
  font-size: 18px;
  font-weight: 300;
  justify-content: center;
  align-items: center;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.phone-element:hover,
.email-element:hover {
  color: #71bd0d;
}

.email-element-no-icon,
.phone-element-no-icon {
  font-weight: 700;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block;
}
.email-element-no-icon:hover,
.phone-element-no-icon:hover {
  color: #71bd0d;
}

.email-element::before {
  content: "\f0e0" !important;
}

.dati-container h3 {
  font-size: 18px !important;
}
.dati-container__col-center {
  border-left: 1px solid #71bd0d;
  border-right: 1px solid #71bd0d;
}

.dati-container__col-left {
  padding-left: 150px;
}
.dati-container__col-left h3,
.dati-container__col-left p {
  padding-left: 38px;
}

.dati-container__col-center {
  padding-left: 70px;
  padding-right: 6vw;
}

.dati-container__col-right {
  padding-left: 70px;
}

.maxi-button {
  display: inline-block;
  width: 100%;
  padding: 28px 10px;
  background-color: #71bd0d;
}

.ar-card-tp .text-container-fp {
  padding: 15px !important;
}

.main-blog {
  height: 100vh;
}

/* -------------------------------------- */
/* ! Pagna del archivio prgoetto */
/* -------------------------------------- */
.filter-button {
  font-size: 18px;
  background: transparent;
  border: none;
  display: flex;
  gap: 15px;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.filter-button i {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.filter-progetti__nav h3 {
  font-weight: 700;
  font-size: 16px;
}
.filter-progetti__nav ul {
  justify-content: space-between;
}
.filter-progetti__nav ul li {
  list-style: none;
}
.filter-progetti__nav .terms_level {
  display: flex;
  flex-direction: column;
  min-width: 106px;
}
.filter-progetti__nav .terms_level .filter-button__terms {
  height: fit-content;
}
.filter-progetti__nav .terms_level .filter-button {
  font-size: 16px;
  font-weight: 700;
}
.filter-progetti__nav .terms_level .filter-progetti__panel {
  padding-top: 32px;
}
.filter-progetti__nav .terms_level .filter-progetti__panel li {
  padding-bottom: 12px;
}
.filter-progetti__nav .terms_level .filter-progetti__panel .filter-button {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: 0;
  left: 0;
}
.filter-progetti__nav
  .terms_level
  .filter-progetti__panel
  .filter-button::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.filter-progetti__nav
  .terms_level
  .filter-progetti__panel
  .filter-button__term-active::before {
  background-color: #000;
}

.filter-progetti__panel {
  display: none;
}

.mappa-projects {
  display: none;
}

.ar-map2_container {
  height: 500px;
}

.button-map {
  display: flex;
  align-items: center;
  gap: 15px;
}
.button-map::before {
  font-family: "FontAwesome";
  content: "\f3c5";
  display: inline-flex;
  font-size: 28px;
  justify-content: center;
  align-items: center;
  font-weight: light;
  color: #71bd0d;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.projects__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  gap: 3px;
}
.projects__list .project-card {
  margin-bottom: 40px;
}
.projects__list .project-card .prjects-card__image {
  height: 450px;
  margin-bottom: 20px;
}
.projects__list .project-card .project-card__meta {
  padding-left: 40px;
}
.projects__list .project-card .project-card__meta h3 {
  font-size: 18px;
}

.show {
  opacity: 1;
  visibility: visible;
}

#loading-progetti {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
}

.projects__empty {
  display: none;
}

.projects__empty--show {
  display: block;
}

.rotate-i i {
  transform: rotate(-180deg);
}

/** Mobile **/
/* -------------------------------------- */
/* ! RESPONSIVE TABLET */
/* -------------------------------------- */
/* -------------------------------------- */
/* ! Large devices (desktops, more than 1520px)  */
/* -------------------------------------- */
@media (min-width: 1520px) {
  .ar-container {
    max-width: 1520px;
  }
  .ar-wrapper {
    max-width: 1320px;
  }
}
/* ! Large devices (desktops, less than 1520px)  */
@media (max-width: 1520px) {
  .ar-container {
    max-width: 1320px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .ar-wrapper {
    max-width: 1200px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .p-col-large {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
  .p-col-large::before,
  .p-col-large::after {
    left: 20px;
  }
  .primo-blocco .img-container .ar-block-image {
    height: auto !important;
  }
  /** template contatti **/
  .dati-container__col-left {
    padding-left: 4vw;
  }
  .dati-container__col-center {
    padding: 0 3vw;
  }
}
/* ! Large devices (desktops, more than 1320px)  */
@media (max-width: 1320px) {
  .three-columns__img {
    width: 33.3333%;
  }
  .three-columns-inner {
    width: 66.66666%;
  }
  .ar-card-container__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 90px;
  }
  .ar-container-large {
    max-width: 1000px;
  }
  .three-columns-tp__text {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
    width: 100%;
  }
  .three-columns-tp__inner {
    width: 100%;
  }
  .three-columns-tp__img {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .media-text-tp-terzo__inner .text-container {
    padding-left: 6vw;
  }
  .media-text-tp-terzo .big-p {
    padding-left: calc(6vw - 30px);
  }
}
/* ! Large devices (desktops, more than 1200px)  */
@media (max-width: 1200px) {
  .ar-footer-col {
    margin-bottom: 70px;
  }
  .ar-footer-col .ar-col {
    width: 33%;
  }
  .slick-dots {
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 70px;
    padding-right: 0;
    right: calc(50% - 150px);
  }
  .side-button {
    right: 6vw;
  }
  .three-columns__img {
    width: 33%;
  }
  .dati-container__col-center .info-container__inner {
    flex-direction: column;
  }
  .ar-category-media-txt {
    height: auto !important;
    aspect-ratio: unset !important;
  }
  .ar-technical-container {
    flex-direction: column-reverse;
  }
  .ar-technical-container .ar-sp-disegno-col {
    width: 100%;
  }
  .ar-technical-container .ar-finitura-spazzolata-container,
  .ar-technical-container .ar-finitura-liscie-container {
    display: flex;
    gap: 10px;
    padding: 20px 0;
  }
  .ar-technical-container .ar-finitura-spazzolata-container .immagine-finitura,
  .ar-technical-container .ar-finitura-liscie-container .immagine-finitura {
    height: auto;
  }
  .ar-technical-container .ar-sp-finitura-col {
    border-left: 0px !important;
    height: auto !important;
    min-height: unset !important;
    padding-bottom: 30px;
  }
  .ar-sp-disegno-col-center .immagine-render {
    max-height: unset !important;
    max-width: unset !important;
    object-fit: cover;
  }
  .ar-sp-disegno-col {
    border-left: 0px solid #000;
    height: auto !important;
  }
  .ar-box-render {
    flex-direction: column;
    align-items: start !important;
    padding-bottom: 50px;
    gap: 15px;
  }
  .ar-sp-disegno-col-left {
    height: auto !important;
    max-height: unset !important;
    min-height: unset !important;
  }
  .file-container {
    width: 100% !important;
  }
}
/* -------------------------------------- */
/* ! Medium devices (tablets, less than 1024px) */
/* -------------------------------------- */
@media (max-width: 1024px) {
  .p-col {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
  .no-padding {
    padding: 0;
  }
  .gap10 {
    gap: 50px;
  }
  /** Front page **/
  .three-columns {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .three-columns__img {
    width: 100%;
  }
  .three-columns-inner {
    width: 100%;
  }
  .three-columns__text-button-lat-container {
    flex-direction: row;
  }
  .three-columns__button-lat {
    width: 16.33%;
  }
  .three-columns__button-lat .ar-progetti-container,
  .three-columns__button-lat .ar-prodotti-container {
    max-height: 500px;
  }
  .three-columns__button-lat .ar-progetti-title a,
  .three-columns__button-lat .ar-prodotti-title a {
    max-width: 500px;
  }
  .three-columns__text {
    padding-right: 6vw;
    padding-left: 8vw;
    width: 83.33%;
  }
  .ar-banner {
    max-height: 600px;
  }
  .ar-first-banner {
    min-height: 600px !important;
  }
  .ar-container-large {
    max-width: 720px;
  }
  /** Template laboratorio **/
  .ar-container-text-left {
    background-size: cover !important;
    position: relative;
    top: 0;
    left: 0;
    height: 55vh !important;
    min-height: 700px;
  }
  .three-columns-tp__text {
    padding-left: calc(6vw + 30px) !important;
    padding-right: calc(6vw + 30px) !important;
    width: 100%;
  }
  .three-columns-tp__inner {
    margin-top: 30px;
    padding-right: 0;
  }
  .media_text_tp .row {
    margin: 0;
  }
  .accordion-container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .primo-blocco .img-container {
    flex-direction: column;
  }
  .primo-blocco .img-container .ar-block-image {
    height: auto !important;
  }
  .media-testo-azienda__inner {
    flex-direction: column;
  }
  .media-testo-azienda__inner img {
    padding-top: 30px;
  }
  /** Template contatti **/
  .text-social-container h1 {
    padding-left: 0 !important;
  }
  .dati-container .row {
    flex-direction: column;
  }
  .dati-container .dati-container__col-left h3,
  .dati-container .dati-container__col-left p {
    padding-left: 0;
  }
  .dati-container .dati-container__col-left {
    padding: 0;
  }
  .dati-container .dati-container__col-left .spacer-30 {
    padding: 0;
  }
  .dati-container .dati-container__col-center {
    border-left: 0px solid #71bd0d;
    border-right: 0px solid #71bd0d;
    padding: 30px 0;
  }
  .dati-container .dati-container__col-right {
    padding-left: 0;
  }
  .dati-container .dati-container__col-right .spacer-30 {
    padding: 0;
  }
  .three-columns-ac {
    flex-direction: column;
  }
  .three-columns-ac .col-lg-6,
  .three-columns-ac .three-columns-ac__grid {
    width: 100%;
  }
  .three-columns-ac .col-lg-6 .ar-category-media-txt,
  .three-columns-ac .three-columns-ac__grid .ar-category-media-txt {
    width: 67%;
  }
  /* -------------------------------------- */
  /* ! Header responsive */
  /* -------------------------------------- */
  .burger-container {
    display: block !important;
  }
  .search-mega-menu-close {
    font-size: 14px !important;
  }
  .header-top-content
    .header__search
    .search-mega-menu
    form
    .search-form-search {
    top: 20px;
  }
  .header-top-content .header__search .search-mega-menu {
    width: 100%;
    padding: 70px 6vw 30px;
  }
  #menu-menu-principale,
  #menu-menu-principale-en {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #333;
    width: 100%;
    padding: 140px 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #menu-menu-principale a,
  #menu-menu-principale-en a {
    pointer-events: none;
    font-size: 18px;
  }
  #menu-menu-principale .no-mobile,
  #menu-menu-principale-en .no-mobile {
    display: none;
  }
  #menu-menu-principale .mega-menu,
  #menu-menu-principale-en .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: visible !important;
    position: relative !important;
    top: 0;
    left: 30px;
    min-height: unset;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 15vw;
    align-items: center;
    pointer-events: none !important;
  }
  #menu-menu-principale .mega-menu .mega-menu__row-submenu-sistemi .sub-menu,
  #menu-menu-principale .mega-menu .mega-menu__row-submenu .sub-menu,
  #menu-menu-principale-en .mega-menu .mega-menu__row-submenu-sistemi .sub-menu,
  #menu-menu-principale-en .mega-menu .mega-menu__row-submenu .sub-menu {
    flex-direction: column;
    border-top: unset;
    justify-content: flex-start;
    align-items: start;
    padding-top: 0;
    gap: 20px !important;
  }
  #menu-menu-principale .mega-menu .mega-menu__row-submenu-sistemi img,
  #menu-menu-principale .mega-menu .mega-menu__row-submenu img,
  #menu-menu-principale-en .mega-menu .mega-menu__row-submenu-sistemi img,
  #menu-menu-principale-en .mega-menu .mega-menu__row-submenu img {
    display: none;
  }
  #menu-menu-principale .mega-menu .mega-menu__row-submenu-sistemi .sub-menu,
  #menu-menu-principale-en
    .mega-menu
    .mega-menu__row-submenu-sistemi
    .sub-menu {
    gap: 0 !important;
  }
  #menu-menu-principale .mega-menu .mega-menu__row-images-inner .immagine,
  #menu-menu-principale-en .mega-menu .mega-menu__row-images-inner .immagine {
    display: none;
  }
  #menu-menu-principale .mega-menu .mega-menu__row-images,
  #menu-menu-principale-en .mega-menu .mega-menu__row-images {
    padding-top: 0;
  }
  #menu-menu-principale .mega-menu .ar-img-menu-product,
  #menu-menu-principale-en .mega-menu .ar-img-menu-product {
    pointer-events: none;
  }
  .ar-project-container_inner .box-project__inner {
    width: 70%;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .ar-row-products {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .ar-media-text-col2 {
    flex-direction: column-reverse;
  }
  .ar-media-text-col2 .image_1 {
    width: 100%;
  }
  .ar-media-text-col2 .image_1 img {
    min-width: unset !important;
  }
}
/* -------------------------------------- */
/* ! Medium devices (tablets, less than 992px) */
/* -------------------------------------- */
@media (max-width: 991.98px) {
  /* -------------------------------------- */
  /* ! Utility class */
  /* -------------------------------------- */
  .spacer-60 {
    padding: 30px 0 !important;
  }
  .spacer-60-special {
    padding: 60px 0 !important;
  }
  .spacer-120 {
    padding: 60px 0 !important;
  }
  .ar-container-text-left {
    background-size: cover !important;
    position: relative;
    top: 0;
    left: 0;
    height: 50vh !important;
    min-height: 550px;
  }
  .ar-container-text-left::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
      90deg,
      rgb(255, 255, 255) 0%,
      rgba(255, 255, 255, 0.7) 100%
    );
  }
  .three-columns-tp__text {
    width: 100%;
  }
  .three-columns-tp__img {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
  .ar-container__inner-tp {
    flex-wrap: wrap;
  }
  .ar-container__inner-tp .ar-card-fp {
    width: 100%;
  }
  .ar-container__inner-tp .ar-card-fp:nth-child(3) {
    width: 100% !important;
    margin-top: 36px;
  }
  .media-text-tp-terzo__inner .row {
    flex-direction: column;
  }
  .media-text-tp-terzo .big-p {
    padding-left: calc(6vw - 30px);
    padding-top: 100px;
  }
  .media-text-tp-terzo__inner .row {
    gap: 70px;
  }
  .loghi-conteiner {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  /** Front-page **/
  .ar-main-fp,
  .ar-main-inner-sup {
    height: 70vh;
    min-height: 600px;
  }
  .side-button {
    right: 6vw;
  }
  .side-button {
    bottom: calc(50% - 60px);
  }
  .ar-banner-fp .ar-menu_term a {
    padding: 15px 5px !important;
    text-align: justify;
  }
  .ar-banner-fp .ar-menu_term ul {
    justify-content: space-between;
  }
  .ar-container__inner .ar-card-fp .ar-card__container__img {
    min-height: 350px;
  }
  .ar-map-container .info-container {
    position: static;
    margin-top: 30px;
    width: 100%;
  }
  /** Area tecnica **/
  .ar-tecnica__accordion,
  .ar-tecnica__download-diretto-li {
    padding-left: 6vw !important;
  }
  .ar-schede-tecniche .product-li {
    margin-left: 6vw;
  }
  .category-name {
    font-size: 16px !important;
  }
  .category-li > a .ar-tecnica__download-button::after {
    margin-left: auto;
  }
  .mfp-content .form-container__inner {
    flex-direction: column;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .mfp-content .form-container__inner .form-col {
    width: 100%;
  }
  .ar-category-title-container {
    width: 100%;
  }
  .ar-filter-button {
    gap: 20px;
  }
  .ar-product-container .ar-row-product {
    grid-template-columns: repeat(2, 1fr);
  }
  .ar-product-container .ar-row-product .box-prodotto {
    width: 50%;
  }
  .ar-project-container_inner {
    flex-direction: column;
    min-height: unset !important;
    max-height: unset !important;
  }
  .box-project {
    height: 40vh;
    width: 100% !important;
  }
  .spacer-100 {
    padding: 30px 0;
  }
  .ar-media-text-category {
    flex-direction: column;
    gap: 50px;
  }
  .ar-finiture-contaienr img {
    min-height: 160px;
  }
  .finiture-container1,
  .finiture-container2 {
    height: 220px;
  }
  .show-all {
    border-bottom: 1px solid #000;
    padding: 33px 0 30px;
  }
  .related-post__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .related-post__container .related-post__card {
    max-width: unset !important;
  }
  .related-post__container .related-post__card .related-post__img {
    height: 365px;
  }
  .ar-button-justify-start {
    justify-content: start !important;
  }
  .ar-project-container_inner .box-project__inner {
    width: 100% !important;
  }
  /** Archivio progetti **/
  .ar-filter-button-container {
    gap: 40px;
  }
  .filter-progetti__nav {
    width: 84%;
  }
  .filter-progetti__nav .flex {
    gap: 10px;
  }
  .filter-button {
    gap: 10px;
  }
  .filter-button__terms {
    min-height: 37px;
  }
  .project-card__title a {
    font-size: 16px !important;
  }
  /* -------------------------------------- */
  /* ! Footer responsive */
  /* -------------------------------------- */
  #footer {
    padding: 70px 0;
  }
  #footer h3 {
    margin: 30px 0;
  }
  #footer .ar-footer-col {
    margin-bottom: 70px;
  }
  #footer .ar-footer-col .ar-col {
    width: 50%;
  }
}
/* -------------------------------------- */
/* ! RESPONSIVE MOBILE */
/* -------------------------------------- */
/* Display 5.5", iPad Portrait, iPhone 6, 6s, 7, 8, X, Xs, 11, 12, 13, SE2 Portrait and landscape, iPhone 5s landscape */
@media (max-width: 767px) {
  .admin-bar .header {
    margin-top: 46px;
  }
  .row {
    margin: 0;
  }
  .row > * {
    padding: 0;
  }
  .up-container {
    width: 50px !important;
    height: 50px !important;
  }
  .up-container span {
    display: none;
  }
  /** utility class **/
  .spacer-50 {
    padding: 12.5px;
  }
  .spacer-70 {
    padding: 20px;
  }
  /** Per avere il blocco Media-text responsie **/
  .wp-block-media-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .wp-block-media-text__media {
    width: 100%;
  }
  .wp-block-media-text__content {
    width: 100%;
  }
  /** Utility class **/
  /** Scroll on top **/
  .scroll-on-top {
    display: none;
  }
  /** Header **/
  .header-content .header__logo img {
    max-width: 160px;
  }
  #menu-menu-principale,
  #menu-menu-principale-en {
    padding: 140px 20px;
  }
  #menu-menu-principale .ar-img-menu-product,
  #menu-menu-principale-en .ar-img-menu-product {
    display: none;
  }
  /** Footer **/
  #footer h3 {
    margin-bottom: 20px;
  }
  #footer .policy-container {
    justify-content: flex-start;
    margin-top: 30px;
    flex-direction: column;
    align-items: start;
  }
  #footer .ar-footer-col {
    margin-bottom: 70px;
  }
  #footer .ar-footer-col .ar-col {
    width: 100%;
  }
  /** Breadcrumbs **/
  .yoast-breadcrumbs span,
  .breadcrumbs span {
    justify-content: center;
  }
  /**---- PAGES ---- **/
  /** Front-page **/
  .slick-dots {
    justify-content: center;
    right: 0;
  }
  .slick-dots li,
  .slick-dots button::before {
    width: 70px !important;
  }
  .big-p {
    font-size: 22px !important;
  }
  .ar-main__text p {
    width: 100%;
  }
  .prima-dopo-text {
    display: none;
  }
  .prima-dopo {
    display: none;
  }
  .side-button {
    display: none;
  }
  .three-columns {
    margin: 0;
  }
  .three-columns__text-button-lat-container {
    padding-left: 6vw;
    padding-right: 6vw;
    margin: 0;
  }
  .three-columns__text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .three-columns__button-lat {
    display: none;
  }
  .ar-menu_term {
    display: none;
  }
  .ar-banner {
    margin-bottom: 60px;
    max-height: 320px;
  }
  .ar-card-container__box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 90px;
  }
  .ar-container-large {
    max-width: 360px;
  }
  .show-all {
    padding: 30px;
  }
  .button-naked,
  .wp-block-button__link {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  }
  /** Template laboratorio **/
  .three-columns-tp__button-lat {
    display: none;
  }
  .three-columns-tp__text {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
    width: 100%;
  }
  .three-columns-tp__img {
    width: 100%;
  }
  .ar-container-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .ar-container__inner-tp {
    flex-wrap: wrap;
    gap: 100px;
  }
  .ar-container__inner-tp .ar-card-fp {
    width: 100%;
  }
  .ar-container__inner-tp .ar-card-fp:nth-child(3) {
    width: 100% !important;
    margin-top: 0;
  }
  .ar-wrapper-tp {
    padding: 0;
  }
  .ar-container-text-left {
    min-height: unset;
    max-height: unset;
    height: auto !important;
  }
  .loghi-conteiner {
    flex-direction: column;
  }
  .ar-wrapper {
    padding: 0;
  }
  .ar-footer-col,
  .policy-container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .no-padding-moblie {
    padding: 0 !important;
  }
  .img-title-container img {
    width: 70px;
  }
  .category-li > a .img-title-container {
    gap: 0 !important;
  }
  .product-li {
    min-width: unset !important;
    gap: 20px;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .product-li p {
    min-width: unset !important;
  }
  .ar-category-projects {
    margin-bottom: 30px;
  }
  .ar-media-text-col2 .text-container {
    width: 100%;
  }
  .ar-finiture-contaienr {
    grid-template-columns: repeat(1, 1fr);
  }
  .img-icon {
    margin-bottom: 20px;
  }
  .ar-product-container .ar-row-product {
    grid-template-columns: repeat(1, 1fr);
  }
  .ar-product-container .ar-row-product .box-prodotto {
    width: 100%;
  }
  .ar-project-container_inner .box-project__inner {
    min-height: 200px;
  }
  .next-post,
  .prev-post {
    display: none;
  }
  .sub-title {
    width: 100%;
  }
  .ar-sp-disegno-col-center .immagine-render {
    max-height: 470px !important;
    max-width: 500px !important;
    object-fit: cover;
  }
  .projects__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ar-filter-button-container {
    flex-direction: column;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .filter-progetti__nav .flex {
    flex-direction: column;
  }
  .text-container-special {
    padding-left: 0;
    padding-top: 30px;
  }
  .ar-row-products {
    grid-template-columns: repeat(1, 1fr);
  }
  .second-part {
    padding-left: 0;
    padding-bottom: 30px;
  }
  .block-image-container img {
    min-height: unset !important;
  }
  /** form **/
  .form-container__inner {
    flex-direction: column;
  }
  .form-container__inner .form-col {
    width: 100%;
  }
}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .three-columns-ac .col-lg-2 {
    display: none;
  }
  .g-column-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .ar-list-icon-container {
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
