/** Core **/ /* -------------------------------------------------------------------------------- */
/* ! VARIABILI DEL SITO */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------- */
/* ! COLORI */
/* -------------------------------------- */
/* -------------------------------------- */
/* ! FONTS */
/* -------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* ! Animazioni del sito con observer e GSAP */
/* -------------------------------------------------------------------------------- */
/** Stile per tutte le animazioni del sito **/
/** Burger button **/
.burgermenu {
  border: none;
  background: none;
  width: 33px;
  height: 40px;
  position: relative;
  padding: 0;
  opacity: 1;
  outline: none;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}

.burgermenu.opened {
  transform: rotate(360deg);
}

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

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

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

.burgermenu span:after {
  top: -10px;
}

/** Stato APERTO: animazioni a X **/
.burgermenu.opened span {
  background-color: transparent !important;
}

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

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

/** Stato CHIUSURA: torna a hamburger **/
.burgermenu.closing span:before {
  top: 10px;
  animation: topLineBurger 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

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

/** Keyframes con effetto "vortice" **/
@keyframes topLineCross {
  0% {
    transform: translateY(10px) rotate(0deg);
  }
  50% {
    transform: translateY(5px) rotate(180deg);
  }
  100% {
    transform: translateY(0px) rotate(405deg);
  }
}
@keyframes bottomLineCross {
  0% {
    transform: translateY(-10px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-180deg);
  }
  100% {
    transform: translateY(0px) rotate(-405deg);
  }
}
@keyframes topLineBurger {
  0% {
    transform: translateY(0px) rotate(405deg);
  }
  50% {
    transform: translateY(5px) rotate(180deg);
  }
  100% {
    transform: translateY(10px) rotate(0deg);
  }
}
@keyframes bottomLineBurger {
  0% {
    transform: translateY(0px) rotate(-405deg);
  }
  50% {
    transform: translateY(-5px) rotate(-180deg);
  }
  100% {
    transform: translateY(-10px) rotate(0deg);
  }
}
.fade-in {
  opacity: 0;
  transition: 1.3s all ease-out;
}

.fade-in.in-page {
  opacity: 1;
}

.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: 200px !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: visible !important;
  font-family: "Inter Tight", sans-serif !important;
}

body,
input,
textarea,
select,
button {
  --wp--preset--font-family--prompt: "Inter Tight", sans-serif;
}

a {
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

figure {
  margin: 0;
}

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;
}

/** Utility class site **/
.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

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

.no-link:hover > button {
  color: #0E313A;
}

.center {
  text-align: center;
}

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

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

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

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

.b-10 {
  border: 2px solid #0E313A;
}

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

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

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

.img-center {
  margin: 0 auto;
}

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

.wp-element-button {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/** Text selection **/
::-moz-selection {
  /* Code for Firefox */
  color: var(--wp--preset--color--principale);
  background: var(--wp--preset--color--secondario);
}

::selection {
  color: var(--wp--preset--color--principale);
  background: var(--wp--preset--color--secondario);
}

:root :where(p) {
  line-height: unset;
}

:root :where(.wp-element-button, .wp-block-button__link) {
  padding: 0 !important;
  border: unset !important;
}

.background-dark {
  background-color: #0E313A;
}

.color-evidence {
  color: #BDE6CB;
}

.color-light {
  color: #ffffff;
}

.color-dark {
  color: #0E313A;
}

/* -------------------------------------- */
/* ! 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 */
/* ---------------------------------------- */
/* -------------------------------------- */
/* ! TIPOGRAFIA DI BASE */
/* -------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  word-wrap: break-word;
}

h1 {
  color: #ffffff;
}

h2 {
  font-size: var(--wp--preset--font-size--40-px, clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) !important;
  font-weight: 600 !important;
  font-family: Inter Tight !important;
}

p {
  font-size: var(--wp--preset--font-size--22-px);
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #0E313A;
  line-height: 150%;
}

.subtitles {
  font-size: 22px !important;
}

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

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

/** Layout **/
/* -------------------------------------- */
/* Header del sito */
/* -------------------------------------- */
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0E313A;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ffffff;
}
.header__container-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6vw;
  position: relative;
  padding: 0 30px 0;
  top: 0;
  left: 0;
  z-index: 800;
}
.header__container-inner .menu-mobile {
  display: none;
}
.header__container-inner .header__logo {
  position: relative;
  top: 0;
  left: 0;
  z-index: 800;
}
.header__container-inner .header__logo a {
  display: inline-block;
  height: fit-content;
}
.header__container-inner .header__logo svg {
  width: 100%;
  height: auto;
  max-width: 180px;
  min-width: 100px;
}
.header__container-inner .header__col-dx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-left: auto;
}
.header__container-inner .header__col-dx .header-desktop .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6vw;
  list-style: none;
  margin-right: 40px;
}
.header__container-inner .header__col-dx .header-desktop .menu li {
  padding: 40px 0;
}
.header__container-inner .header__col-dx .header-desktop .menu .menu-item-has-children {
  position: relative;
  top: 0;
  left: 0;
}
.header__container-inner .header__col-dx .header-desktop .menu .menu-item-has-children .sub-menu {
  padding: 35px 40px 25px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  backdrop-filter: blur(30px) brightness(1.15);
  -webkit-backdrop-filter: blur(30px) brightness(1.15);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 77%;
  left: -40px;
  width: max-content;
  max-width: 445px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__container-inner .header__col-dx .header-desktop .menu .menu-item-has-children .sub-menu li {
  padding: 0 !important;
}
.header__container-inner .header__col-dx .header-desktop .menu .menu-item-has-children .sub-menu li a {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 0 !important;
}
.header__container-inner .header__col-dx .header-desktop .menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.header__container-inner .header__col-dx .header-desktop .menu li a {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: var(--wp--preset--font-size--22-px);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 48px 0;
}
.header__container-inner .header__col-dx .header-desktop .menu li a:hover {
  color: #BDE6CB;
}
.header__container-inner .header__col-dx .header-desktop .menu .current-menu-item > a {
  color: #BDE6CB;
}
.header__container-inner .header__col-dx .header-desktop .menu .ar-contatti-button {
  display: inline-block;
  background: #0E313A;
  padding: 3px;
  clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
  transition: background 0.3s ease;
}
.header__container-inner .header__col-dx .header-desktop .menu .ar-contatti-button a {
  all: unset;
  display: block;
  padding: 10px 26px;
  background-color: #ffffff;
  color: #0E313A;
  clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: var(--wp--preset--font-size--22-px);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__container-inner .header__col-dx .header-desktop .menu .ar-contatti-button:hover {
  background: #ffffff;
}
.header__container-inner .header__col-dx .header-desktop .menu .ar-contatti-button:hover a {
  background-color: #0E313A;
  color: #ffffff;
}
.header__container-inner .wpml-ls-current-language a {
  padding: 0 !important;
  text-transform: uppercase;
}
.header__container-inner .wpml-ls-statics-shortcode_actions ul {
  list-style: none;
}
.header__container-inner .wpml-ls-statics-shortcode_actions ul a {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: var(--wp--preset--font-size--22-px);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-transform: uppercase;
}
.header__container-inner .wpml-ls-statics-shortcode_actions ul a:hover {
  color: #BDE6CB;
}
.header__container-inner .header-login,
.header__container-inner .header__search {
  position: relative;
  top: 0;
  left: 0;
  z-index: 800;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
.header__container-inner .header-login svg,
.header__container-inner .header__search svg {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__container-inner .header-login svg:hover,
.header__container-inner .header__search svg:hover {
  transform: translateY(-5px);
}
.header__container-inner .search-mega-menu-close {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
}
.header__container-inner .burger-container {
  display: none;
}
.header__container-inner .burgermenu {
  display: none;
}
.header__container-inner .header__search {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row;
  position: relative;
  left: 0;
  top: 0;
  z-index: 502;
}
.header__container-inner .header__search .search-button {
  cursor: pointer;
}
.header__container-inner .header__search .search-mega-menu {
  position: fixed;
  padding: 25px 3vw;
  top: -100%;
  width: 100%;
  min-height: 50vh;
  background-color: #ffffff;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 11000;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0px 3px 3px -3px #000000;
}
.header__container-inner .header__search .search-mega-menu .search-mega-menu-close {
  position: absolute;
  right: 5vw;
  top: 20px;
  color: #202020;
  font-size: 20px;
  z-index: 11000;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header__container-inner .header__search .search-mega-menu form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.header__container-inner .header__search .search-mega-menu form label {
  position: relative;
  display: block;
  width: 100%;
}
.header__container-inner .header__search .search-mega-menu form .search-form-search {
  position: absolute;
  background-color: transparent;
  border: none;
  cursor: pointer;
  right: 10px;
  top: 15px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__container-inner .header__search .search-mega-menu form .search-form-search:hover {
  transform: translateY(-5px);
}
.header__container-inner .header__search .search-mega-menu form .search-form-search .fa-magnifying-glass {
  color: #202020 !important;
  font-size: 20px;
}
.header__container-inner .header__search .search-mega-menu .search-field::placeholder {
  font-size: var(--wp--preset--font-size--22-px);
  color: #202020 !important;
  text-transform: none !important;
  font-family: "Inter Tight", sans-serif;
}
.header__container-inner .header__search .search-mega-menu .search-field {
  padding-left: 20px;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 0.5px solid #202020 !important;
  color: #202020 !important;
  text-transform: none !important;
}
.header__container-inner .header__search .search-mega-menu input[type=search] {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid #202020;
  font-size: 30px;
  color: #202020 !important;
  background-color: #ffffff;
  font-weight: 700;
  text-transform: none !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__container-inner .header__search .search-mega-menu input[type=search]::placeholder {
  font-size: 30px;
  font-weight: 700;
  color: #202020;
}
.header__container-inner .header__search .search-show {
  top: 0 !important;
}

/** Footer **/
.footer {
  background-color: #0E313A;
  clip-path: polygon(95% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}
.footer .footer__container {
  padding: 90px 30px 40px;
}
.footer__row {
  display: flex;
  gap: 120px;
}
.footer__row .footer__col-logo {
  display: flex;
  flex-direction: column;
  width: 30%;
  min-width: 205px;
  gap: 50px;
}
.footer__row .footer__col-logo .footer__brand {
  display: flex;
  justify-content: flex-start;
  gap: 20%;
}
.footer__row .footer__col-logo .footer__brand img {
  width: 100%;
  max-width: 185px;
  min-width: 120px;
  height: auto;
}
.footer__row .footer__col-menu {
  width: 70%;
}
.footer__row ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.footer__row ul li {
  list-style: none;
}
.footer__row ul li a {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: Inter Tight !important;
  color: var(--wp--preset--color--light, #ffffff) !important;
  transition-property: all !important;
  transition-duration: 0.49s !important;
  transition-timing-function: cubic-bezier(0.47, 0, 0.07, 1) !important;
  transition-delay: 0s !important;
}
.footer__row ul li a:hover {
  color: var(--wp--preset--color--secondario, #BDE6CB) !important;
}

/* ----------------------------------------------------------------------- */
/* VARIABILI */
/* ----------------------------------------------------------------------- */
/** Utility **/
.ar-wrapper {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px;
}

.m0a {
  margin: 0 auto;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.mta {
  margin-top: auto !important;
}

.mba {
  margin-bottom: auto;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.regular {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.vh100 {
  height: 100vh;
}

.vh50 {
  height: 50vh;
}

.vh60 {
  height: 60vh;
}

.vh70 {
  height: 70vh;
}

.vh80 {
  height: 80vh;
}

.h100 {
  height: 100%;
}

.h50 {
  height: 50%;
}

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

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

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

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

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

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

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

/* ----------------------------------------------------------------------- */
/* 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;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
: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;
}

.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-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !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;
}

.flex {
  display: flex;
}

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

.f-row {
  flex-direction: row;
}

.f-column {
  flex-direction: column;
}

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

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

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

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

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

.f-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;
}

@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;
  }
  .f-sm-fill {
    flex: 1 1 auto !important;
  }
  .f-sm-row {
    flex-direction: row !important;
  }
  .f-sm-column {
    flex-direction: column !important;
  }
  .f-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .f-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .f-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .f-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .f-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .f-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .f-sm-wrap {
    flex-wrap: wrap !important;
  }
  .f-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .f-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;
  }
  .f-md-fill {
    flex: 1 1 auto !important;
  }
  .f-md-row {
    flex-direction: row !important;
  }
  .f-md-column {
    flex-direction: column !important;
  }
  .f-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .f-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .f-md-grow-0 {
    flex-grow: 0 !important;
  }
  .f-md-grow-1 {
    flex-grow: 1 !important;
  }
  .f-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .f-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .f-md-wrap {
    flex-wrap: wrap !important;
  }
  .f-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .f-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;
  }
  .f-lg-fill {
    flex: 1 1 auto !important;
  }
  .f-lg-row {
    flex-direction: row !important;
  }
  .f-lg-column {
    flex-direction: column !important;
  }
  .f-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .f-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .f-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .f-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .f-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .f-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .f-lg-wrap {
    flex-wrap: wrap !important;
  }
  .f-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .f-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;
  }
  .f-xl-fill {
    flex: 1 1 auto !important;
  }
  .f-xl-row {
    flex-direction: row !important;
  }
  .f-xl-column {
    flex-direction: column !important;
  }
  .f-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .f-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .f-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .f-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .f-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .f-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .f-xl-wrap {
    flex-wrap: wrap !important;
  }
  .f-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .f-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;
  }
  .f-xxl-fill {
    flex: 1 1 auto !important;
  }
  .f-xxl-row {
    flex-direction: row !important;
  }
  .f-xxl-column {
    flex-direction: column !important;
  }
  .f-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .f-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .f-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .f-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .f-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .f-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .f-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .f-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .f-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;
  }
}
/** Elementi del sito **/
/* -------------------------------------- */
/* ! PULSANTI DEL SITO */
/* -------------------------------------- */
/** Torna al top **/
/** pagination bullet **/
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
}

.swiper-pagination-bullet-active {
  width: 90px !important;
}

/** Torna al top **/
.up {
  width: 34px;
  height: 34px;
  position: fixed;
  bottom: 55px;
  right: 20px;
  background: #0E313A;
  color: #ffffff;
  z-index: 11;
  cursor: pointer;
  display: inline-block;
  display: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.up i {
  text-align: center;
}
.up:hover {
  background: #BDE6CB;
}

.up .up-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logout-button {
  border-radius: 0 !important;
  background-color: #BDE6CB !important;
  padding: 15px 25px !important;
  font-family: "Sora", sans-serif !important;
  font-size: 16px !important;
  color: #0E313A !important;
  font-weight: 700 !important;
  width: fit-content !important;
}

/* -------------------------------------- */
/* !BREADCRUMBS */
/* -------------------------------------- */
/** Formattazione delle breadcrumbs del sito **/
.rank-math-breadcrumb a {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-size: 16px;
}
.rank-math-breadcrumb a:hover {
  color: #BDE6CB;
}
.rank-math-breadcrumb .separator {
  color: #ffffff;
  font-size: 16px;
}
.rank-math-breadcrumb .last {
  color: #ffffff;
  font-size: 16px;
}

.breadcrumbs-dark a {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-size: 16px;
}
.breadcrumbs-dark a:hover {
  color: #BDE6CB;
}
.breadcrumbs-dark .separator {
  color: #0E313A;
  font-size: 16px;
}
.breadcrumbs-dark .last {
  color: #0E313A;
  font-size: 16px;
}

/* -------------------------------------- */
/* !all site*/
/* -------------------------------------- */
/** Home filter **/
.gspb-posts-grid-wrap a {
  min-width: 150px !important;
  max-width: 280px !important;
}
.gspb-posts-grid-wrap a .post-name {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 85%;
  margin: 0 auto;
  min-width: 150px !important;
}
.gspb-posts-grid-wrap a:hover .post-name {
  color: #12A767 !important;
}

/** slider tag **/
.centered-wrapper {
  justify-content: center !important;
}

.ar-slider-tag {
  /* Stile per la freccia di destra */
  /* Stile per la freccia di sinistra */
}
.ar-slider-tag li:hover .wp-block-greenshift-blocks-dynamic-post-title h3 a {
  color: #BDE6CB;
}
.ar-slider-tag .wp-block-greenshift-blocks-dynamic-post-title {
  text-align: center;
  max-width: 180px !important;
}
.ar-slider-tag .wp-block-greenshift-blocks-dynamic-post-title h3 a {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-slider-tag .swiper-button-next::after {
  font-family: "Font Awesome 6 Free" !important;
  /* Usa Font Awesome */
  content: "\f148" !important;
  /* Codice dell'icona (qui freccia destra) */
  font-weight: 900 !important;
  /* Imposta la giusta pesantezza */
  font-size: 24px !important;
  /* Dimensione icona */
  color: #ffffff !important;
  /* Colore icona */
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-slider-tag .swiper-button-prev::after {
  font-family: "Font Awesome 6 Free" !important;
  content: "\f149" !important;
  /* Codice dell'icona (qui freccia sinistra) */
  font-weight: 900 !important;
  font-size: 24px !important;
  color: #ffffff !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-slider-tag .swiper-button-next,
.ar-slider-tag .swiper-button-prev {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-slider-tag .swiper-button-prev {
  transform: rotate(90deg);
}
.ar-slider-tag .swiper-button-next {
  transform: rotate(90deg);
}
.ar-slider-tag .swiper-button-next:hover::after,
.ar-slider-tag .swiper-button-prev:hover::after {
  color: #BDE6CB !important;
}

.ar-slider-tag-dark {
  /* Stile per la freccia di sinistra */
}
.ar-slider-tag-dark .swiper-button-next::after {
  color: #0E313A !important;
  /* Colore icona */
}
.ar-slider-tag-dark .swiper-button-prev::after {
  color: #0E313A !important;
}

/** Story slider **/
.ar-story-slider {
  /* Stile per la freccia di destra */
  /* Stile per la freccia di sinistra */
}
.ar-story-slider .swiper-button-next::after {
  font-family: "Font Awesome 6 Free" !important;
  /* Usa Font Awesome */
  content: "\f148" !important;
  /* Codice dell'icona (qui freccia destra) */
  font-weight: 900 !important;
  /* Imposta la giusta pesantezza */
  font-size: 24px !important;
  /* Dimensione icona */
  color: #0E313A !important;
  /* Colore icona */
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-story-slider .swiper-button-prev::after {
  font-family: "Font Awesome 6 Free" !important;
  content: "\f149" !important;
  /* Codice dell'icona (qui freccia sinistra) */
  font-weight: 900 !important;
  font-size: 24px !important;
  color: #0E313A !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-story-slider .swiper-button-next,
.ar-story-slider .swiper-button-prev {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  top: unset;
  bottom: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
}
.ar-story-slider .swiper-button-prev {
  transform: rotate(90deg);
  left: calc(45% - 15px) !important;
  right: unset;
}
.ar-story-slider .swiper-button-next {
  transform: rotate(90deg);
  right: calc(45% - 15px) !important;
  left: unset;
}
.ar-story-slider .swiper-button-next:hover::after,
.ar-story-slider .swiper-button-prev:hover::after {
  color: #BDE6CB !important;
}
@media (max-width: 1024px) {
  .ar-story-slider .swiper-button-prev {
    left: calc(40% - 35px) !important;
    right: unset;
  }
  .ar-story-slider .swiper-button-next {
    right: calc(40% - 35px) !important;
    left: unset;
  }
}

.settori-swiper {
  min-height: 350px;
  /* Contenitore dello Swiper */
  /* Wrapper delle slide */
  /* Ogni slide */
  /* Card */
  /* Frecce centrate sotto */
}
.settori-swiper .swiper.settoreSwiper {
  width: 100%;
  padding-bottom: 3rem;
  position: relative;
}
.settori-swiper .swiper-wrapper {
  align-items: stretch;
}
.settori-swiper .swiper-slide {
  width: auto;
  /* per slides dinamiche in base al contenuto */
}
.settori-swiper .settore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.settori-swiper .settore-card img {
  width: 100%;
  height: 100%;
  min-height: 208px;
  max-height: 220px;
  object-fit: cover;
  margin-bottom: 17px;
}
.settori-swiper .settore-name {
  font-weight: 400 !important;
  color: #ffffff;
  font-size: var(--wp--preset--font-size--22-px) !important;
  font-family: "Inter Tight", sans-serif;
}
.settori-swiper .swiper-button-next,
.settori-swiper .swiper-button-prev {
  position: absolute;
  top: unset;
  bottom: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
}
.settori-swiper .swiper-button-prev {
  left: calc(45% - 15px) !important;
  right: unset;
}
.settori-swiper .swiper-button-next {
  right: calc(45% - 15px) !important;
  left: unset;
}
@media (max-width: 1024px) {
  .settori-swiper .swiper-button-prev {
    left: calc(40% - 35px) !important;
    right: unset;
  }
  .settori-swiper .swiper-button-next {
    right: calc(40% - 35px) !important;
    left: unset;
  }
}
.settori-swiper .swiper-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 1rem;
}

/** Contatti **/
.ar-card-contatti__title {
  margin-bottom: 20px !important;
}

/** Home prodotti **/
/* Contenitore griglia orizzontale */
.grid-home {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 70px;
  padding: 0 35px;
  margin: 0 auto !important;
  max-width: 1700px !important;
  width: 100% !important;
  -webkit-overflow-scrolling: touch;
  /* per iOS */
}

/* WebKit (Chrome, Safari, Edge) */
.grid-home::-webkit-scrollbar {
  display: none !important;
}

/* Firefox */
.grid-home {
  scrollbar-width: none;
  /* nasconde la scrollbar */
  -ms-overflow-style: none;
  /* IE 10+ */
}

/* Tutti i browser */
.grid-home {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.grid-sizer {
  display: none;
}

/* Card singola */
.grid-home .box-prodotto {
  flex: 0 0 auto;
  width: 28.5%;
  max-width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
  margin-right: 0 !important;
}

@media (max-width: 768px) {
  .grid-home {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 20px;
    max-width: 100% !important;
  }
  .grid-home .box-prodotto {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/** Hero page-template **/
.main-page__container {
  height: 100vh;
  max-height: 1080px;
  background-color: #0E313A;
  border-bottom: 2px solid #ffffff;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  min-height: 910px;
}
.main-page__container .main-page__text {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  max-width: 41%;
}
.main-page__container .main-page__text h1 {
  font-size: var(--wp--preset--font-size--90-px, clamp(3.125rem, 2.625rem + 2.5vw, 5.625rem));
  font-weight: 600;
  font-family: Inter Tight;
  color: var(--wp--preset--color--light, #ffffff);
  line-height: 100%;
  padding-bottom: 20px;
}
.main-page__container .main-page__text p {
  font-size: var(--wp--preset--font-size--22-px, clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem));
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
  line-height: 150%;
  color: #ffffff;
}
.main-page__container .main-page__text .rank-math-breadcrumb a {
  color: #ffffff;
}
.main-page__container .main-page__text .rank-math-breadcrumb a:hover {
  color: #BDE6CB;
}
.main-page__container .main-page__text .rank-math-breadcrumb p {
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
  color: var(--wp--preset--color--light, #ffffff);
}
.main-page__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 1024px) {
  .main-page__container {
    min-height: 100vh;
  }
  .main-page__container::after {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.main-page {
  background-size: cover;
  background-position: 50% 62%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 100px;
  right: 30px;
  width: 100vw;
  height: 100%;
  max-width: 58%;
  max-height: calc(100% - 260px);
  clip-path: polygon(7% 0, 100% 0, 100% 90%, 93% 100%, 0 100%, 0 10%);
}

/** Sez-pagee-template **/
.sec-page {
  padding: 90px 30px 70px;
  height: auto;
}
.sec-page .sec-page__container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.sec-page .color-dark {
  color: #0E313A;
}
.sec-page h2 {
  font-size: var(--wp--preset--font-size--40-px, clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) !important;
  font-weight: 600 !important;
  font-family: Inter Tight !important;
  padding-bottom: 20px;
}
.sec-page p {
  font-size: var(--wp--preset--font-size--22-px, clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem));
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
  line-height: 150%;
  padding-bottom: 40px;
}
.sec-page .clipped-button {
  padding: 13px 43px;
}

/** Archivio Prodotti **/
/** Filtraggio **/
.filter-tabs {
  list-style: none;
  border-width: 1px;
  border-style: solid;
  border-color: var(--wp--preset--color--principale, #0E313A);
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
}
.filter-tabs .filter-tab {
  margin: 0;
  font-size: var(--wp--preset--font-size--25-px, clamp(1.375rem, 1.3375rem + 0.1875vw, 1.5625rem));
  font-family: Inter Tight;
  font-weight: 600;
  color: var(--wp--preset--color--principale, #0E313A);
  width: 25%;
  min-width: 10vw;
  background-color: var(--wp--preset--color--light, #ffffff);
  cursor: pointer;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 103px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: var(--wp--preset--color--principale, #0E313A);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.filter-tabs .filter-tab:hover {
  background-color: #BDE6CB;
}
.filter-tabs .filter-tab:last-child {
  border-right: none;
}
.filter-tabs .is-active {
  background-color: #BDE6CB;
}

/** button container **/
.button-container {
  margin-top: 75px;
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-end;
}

/** prodotti card **/
.grid {
  position: relative;
  margin: 0 -35px;
}

.grid-sizer {
  width: 33.33%;
}

.box-prodotto {
  width: calc(33.33% - 70px);
  margin-bottom: 70px;
  margin-right: 35px;
  margin-left: 35px;
  box-sizing: border-box;
  float: left;
}

@media (max-width: 1024px) {
  .grid-sizer {
    width: 50%;
  }
  .box-prodotto {
    width: calc(50% - 70px);
  }
}
@media (max-width: 768px) {
  .grid-sizer {
    width: 100%;
  }
  .box-prodotto {
    width: calc(100% - 70px);
  }
}
/** prodotti card **/
.card-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card-title {
  text-align: center;
  font-weight: 600;
  font-family: "Inter Tight", sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  min-height: 28px;
}

/** Media text prodotti **/
.media-text__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 70px;
}

.media-text__image {
  flex: 1 1 45%;
}

.media-text__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 620px;
  aspect-ratio: 4/3;
  clip-path: polygon(12% 0, 100% 0, 100% 86%, 90% 100%, 0 100%, 0 13%);
}

.image-download img {
  object-fit: contain;
}

.media-text__content {
  flex: 1 1 45%;
}

@media (max-width: 768px) {
  .media-text__inner {
    flex-direction: column;
  }
  .media-text__image,
  .media-text__content {
    flex: 1 1 100%;
  }
}
/** Taxonomy tipologia **/
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 70px;
  margin-top: 40px;
}
.product-grid .card-link:hover .card-title {
  color: #12A767;
}
.product-grid .card-title {
  color: #0E313A;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.product-card {
  width: calc(33.33% - 47px);
  /* 70px gap = 3 card layout */
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .product-card {
    width: calc(50% - 35px);
  }
}
@media (max-width: 768px) {
  .product-card {
    width: 100%;
  }
}
/** Archivio blog **/
.blog-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .blog-grid {
    flex-direction: column;
  }
}

.blog-col-left {
  flex: 1 1 70%;
}

.blog-col-right {
  flex: 1 1 30%;
}

/* Card articolo */
.blog-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.blog-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card__content {
  padding-top: 20px;
}
.blog-card__content p {
  padding-bottom: 0;
}

.blog-card__meta {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #0E313A !important;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
}
.blog-card__meta a {
  color: #0E313A !important;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.blog-card__meta a:hover {
  color: #12A767 !important;
}

.blog-card__title {
  font-size: var(--wp--preset--font-size--40-px);
  margin-bottom: 15px;
  font-weight: 600;
}
.blog-card__title a {
  color: #0E313A !important;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
}
.blog-card__title a:hover {
  color: #12A767 !important;
}

.blog-card__excerpt {
  font-size: var(--wp--preset--font-size--22-px);
  color: #0E313A;
  margin-bottom: 20px;
}

.blog-card__readmore {
  margin-top: 20px;
  margin-bottom: 120px;
  width: fit-content;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar .wp-block-latest-posts__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sidebar .wp-block-latest-posts__list li {
  margin-bottom: 40px;
}
.sidebar .wp-block-latest-posts__list img {
  width: 100vw;
  max-width: 280px;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 18px;
}
.sidebar .wp-block-latest-posts__list .wp-block-latest-posts__post-title {
  font-size: 18px;
  font-weight: 600;
  color: #0E313A;
  font-family: "Inter Tight", sans-serif;
  text-decoration: none;
  transition: color 0.3s;
}
.sidebar .wp-block-latest-posts__list .wp-block-latest-posts__post-title:hover {
  color: #12A767;
}
.sidebar .wp-block-categories-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sidebar .wp-block-categories-list li {
  width: fit-content;
  border: 1px solid #0E313A;
  padding: 5px 13px;
}
.sidebar .wp-block-categories-list li a {
  color: #0E313A;
  font-family: "Inter Tight", sans-serif;
}
.sidebar .wp-block-categories-list li a:hover {
  color: #12A767;
}
.sidebar :root :where(.is-layout-flow) > * {
  margin-block-start: 0;
}

/* Pagination */
.pagination {
  margin-top: 60px;
  text-align: center;
}

/** Single article **/
/* Liste (ul, ol) */
.single-post ul,
.single-post ol {
  font-size: var(--wp--preset--font-size--22-px, clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem));
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
  line-height: 150%;
  padding-left: 15px;
  padding-bottom: 40px;
  list-style-position: inside;
}

.single-post .header ul {
  padding-bottom: 0 !important;
}

/* Elementi della lista */
.single-post ul li,
.single-post ol li {
  margin-bottom: 10px;
}

/* Link dentro ai paragrafi */
.single-post p a {
  color: #12A767;
  text-decoration: underline;
  transition: color 0.4s ease;
}

.single-post p a:hover {
  color: #0d794b;
}

/* Titoli H2 */
.single-post h2 {
  font-size: var(--wp--preset--font-size--40-px, clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) !important;
  font-weight: 600 !important;
  font-family: "Inter Tight", sans-serif !important;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Titoli H3 */
.single-post h3 {
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 2rem) !important;
  font-weight: 600 !important;
  font-family: "Inter Tight", sans-serif !important;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Titoli H4 */
.single-post h4 {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.6rem) !important;
  font-weight: 600 !important;
  font-family: "Inter Tight", sans-serif !important;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-card__meta {
  padding: 50px 0;
}

/** Compare product  **/
#compare-form #compare-btn {
  border: none;
  cursor: pointer;
}

.compare-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin: 0 -35px 70px;
  padding: 0;
  list-style: none;
}
.compare-products .product {
  width: calc(100% - 70px);
  margin: 0 35px;
  box-sizing: border-box;
  background-color: transparent;
  transition: transform 0.3s ease;
  border: none;
}
.compare-products .product:hover {
  transform: translateY(-5px);
}
.compare-products .product.selected {
  border: 2px solid #12A767;
}
.compare-products .product label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.compare-products .product input[type=checkbox] {
  display: none;
}
.compare-products .product img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 15px;
}
.compare-products .product h3 {
  text-align: center;
  font-weight: 600;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}
@media (max-width: 1024px) {
  .compare-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .compare-products {
    grid-template-columns: 1fr;
  }
}

/** Tab comparazione **/
.compare-results {
  overflow-x: auto;
  padding: 40px 0;
}

.overlay-comparison {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99997;
  display: none;
}

.overlay-comparison.visible {
  display: block;
}

.compare-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 1600px;
  overflow-x: auto;
  overflow-y: auto;
  height: 700px;
  background: #fff;
  z-index: 99998;
  padding: 40px;
  display: none;
}

.compare-container.openCompair {
  display: flex;
}

.close-comparison {
  position: fixed;
  top: 20px;
  right: 6vw;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 99999;
  color: #fff;
  background-color: #0E313A;
  padding: 10px;
}

.close-comparison {
  display: none;
}

.close-comparison.visible {
  display: block;
}

.compare-table {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
}

.compare-column {
  background: #fff;
  border: 2px solid #12A767;
  padding: 20px;
  min-width: 250px;
  width: 330px;
  flex: 0 0 auto;
  margin-right: 15px;
  height: inherit;
  box-sizing: border-box;
  height: max-content;
}

.compare-thumb img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.compare-title {
  text-align: center;
  font-weight: 600;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.1rem;
  margin: 15px 0 50px;
  min-height: 60px;
}

.caratteristica-forza-lavante {
  margin-left: 55px;
}

.caratteristiche-list-compare {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.caratteristiche-list-compare p {
  min-height: 100px;
  padding-bottom: 0;
}

.compare-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
}

.single-prodotto {
  padding: 145px 0;
}
@media (max-width: 1024px) {
  .single-prodotto {
    padding: 120px 30px;
  }
}
@media (max-width: 787px) {
  .single-prodotto {
    padding: 70px 30px;
  }
}

.single-prodotto__container {
  display: flex;
  gap: 6vw;
  align-items: stretch;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .single-prodotto__container {
    flex-direction: column;
  }
}

.single-prodotto__image-wrap {
  position: relative;
  flex: 0 0 auto;
  max-width: 40%;
}
@media (max-width: 1520px) {
  .single-prodotto__image-wrap {
    max-width: 50%;
  }
}
@media (max-width: 1024px) {
  .single-prodotto__image-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.single-prodotto__image-wrap .featured-image,
.single-prodotto__image-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  object-position: top;
}

.bollino {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
}
@media (max-width: 1024px) {
  .bollino {
    right: 0px;
    width: 120px;
  }
}

.single-prodotto__content {
  flex: 1 1 40%;
  padding-top: 60px;
  max-width: 60%;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  .single-prodotto__content {
    max-width: 100%;
    padding-right: 0;
  }
}

.breadcrumbs {
  font-size: 16px;
  color: #0E313A;
  font-family: "Inter Tight", sans-serif;
}
.breadcrumbs a {
  color: #0E313A;
  text-decoration: none;
  transition: all 0.4s ease;
}
.breadcrumbs a:hover {
  color: #12A767;
}

.titolo-prodotto {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.5rem, 2.0625rem + 2.1875vw, 4.6875rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #0E313A;
  line-height: 100%;
}

.sottotitolo,
.descrizione {
  font-size: var(--wp--preset--font-size--22-px);
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #0E313A;
  line-height: 150%;
  margin-bottom: 35px;
}

.caratteristiche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.caratteristica {
  display: flex;
  align-items: start;
  gap: 15px;
  flex: 1 1 45%;
  min-height: 100px;
}
.caratteristica i {
  font-size: 40px;
  color: #12A767;
}
.caratteristica svg {
  width: 40px;
  height: auto;
  fill: #12A767;
}

.caratteristica-abrasivo svg {
  width: 40px;
}

.caratteristica__text {
  font-size: var(--wp--preset--font-size--22-px);
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #0E313A;
  line-height: 150%;
  max-width: 210px;
}
.caratteristica__text strong {
  display: block;
  font-weight: 700;
}
.caratteristica__text svg {
  width: 180px;
  min-height: 28px;
}

/** Prodotti accessori **/
.tab-panel-download {
  display: flex;
  gap: 40px;
  margin-bottom: 2rem;
  padding-bottom: 120px;
  flex-wrap: wrap;
}
@media (max-width: 787px) {
  .tab-panel-download {
    gap: 0px;
  }
}

.video-accessori {
  width: 100%;
  max-width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tabs */
.tabs-nav {
  margin-top: 70px;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #0E313A;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 787px) {
  .tabs-nav {
    gap: 0px;
  }
}

.tab-button {
  background: none;
  border: none;
  font-size: var(--wp--preset--font-size--40-px);
  font-weight: 400;
  cursor: pointer;
  padding: 30px;
  color: #0E313A;
  font-family: "Inter Tight", sans-serif !important;
}
.tab-button.active {
  color: #12A767;
}
@media (max-width: 1024px) {
  .tab-button {
    padding: 10px 30px;
  }
}
@media (max-width: 787px) {
  .tab-button {
    width: 100%;
    border-top: 1px solid #0E313A;
    text-align: center;
  }
}

.special-products .tab-button {
  font-size: var(--wp--preset--font-size--22-px) !important;
}

.tabs-content {
  min-height: 400px;
  padding-top: 80px;
  padding-bottom: 70px;
}
.tabs-content p {
  line-height: 150% !important;
}
@media (max-width: 787px) {
  .tabs-content {
    padding-top: 40px;
  }
}

.tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tab-panel.active {
  display: block;
  opacity: 1;
}
.tab-panel ul {
  list-style: none;
  padding-top: 30px;
}
.tab-panel ul li a {
  font-size: var(--wp--preset--font-size--22-px);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: #0E313A;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.tab-panel ul li a:hover {
  color: #12A767;
}
.tab-panel p {
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
}

/* Caratteristiche grid */
.caratteristiche-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 40px;
}
@media (max-width: 1024px) {
  .caratteristiche-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}
@media (max-width: 787px) {
  .caratteristiche-grid {
    grid-template-columns: 1fr;
  }
}

/* Download tab */
.tab-panel-download {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  max-width: 90%;
}
@media (max-width: 1024px) {
  .tab-panel-download {
    flex-direction: column;
    max-width: 100%;
  }
}
.tab-panel-download .download-info {
  max-width: 45%;
}
@media (max-width: 1024px) {
  .tab-panel-download .download-info {
    max-width: 100%;
  }
}
.tab-panel-download .button-container {
  margin: 0 !important;
}
.tab-panel-download .button-wrapper button {
  border: none;
  width: 100%;
  cursor: pointer;
  padding-left: 40px;
  padding-right: 40px;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 787px) {
  .download-list {
    width: 100%;
  }
}

/* Popup login */
.popup-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-login.hidden {
  display: none;
}
.popup-login .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  max-width: 400px;
  width: 90%;
  position: relative;
}
.popup-login .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.um-account-meta-img,
.um-misc-img {
  display: none;
}

.um-account-name a,
.um-misc-with-img strong {
  pointer-events: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #0E313A;
}

.um-misc-ul {
  list-style: none;
}
.um-misc-ul a {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #0E313A;
}

.um-account-profile-link {
  display: none;
}

.um-account-heading {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  color: #0E313A;
}

.um-form label {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #0E313A;
}
.um-form option,
.um-form .select2-selection__rendered,
.um-form .um-link-alt,
.um-form .um-field-block,
.um-form .um-toggle-gdpr {
  font-family: "Inter Tight", sans-serif !important;
  font-size: 16px;
  color: #0E313A;
}
.um-form .um-request-button,
.um-form .um-button {
  border-radius: 0 !important;
  background-color: #BDE6CB !important;
  padding: 15px 25px !important;
  font-family: "Inter Tight", sans-serif !important;
  font-size: 16px !important;
  color: #0E313A !important;
  font-weight: 700 !important;
}
.um-form .um-request-button:hover,
.um-form .um-button:hover {
  background-color: #12A767 !important;
  color: #ffffff !important;
}

.um-account-side ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.um-account-side li {
  padding: 10px 0 !important;
}
.um-account-side li i {
  font-size: 26px;
}

.um-account-link {
  display: flex !important;
  height: auto !important;
}

.um-account-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #0E313A;
  text-decoration: none;
  transition: all 0.4s ease;
}
.um-account-title:hover {
  color: #12A767;
}

/* ---------------------------------- */
/* ! CONTACT FORM 7 SETUP  */
/* ---------------------------------- */
.ar-form,
.ar-form-light {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 22px;
  /** Autofill **/
}
.ar-form input:-webkit-autofill,
.ar-form-light input:-webkit-autofill {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.3) !important;
  -webkit-box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.3);
}
.ar-form input:-webkit-autofill:focus,
.ar-form-light input:-webkit-autofill:focus {
  box-shadow: 0 0 0 50px rgba(0, 0, 0, 0.3) inset !important;
  -webkit-box-shadow: 0 0 0 50px rgba(0, 0, 0, 0.3) inset;
}
.ar-form label,
.ar-form .wpcf7-list-item-label,
.ar-form-light label,
.ar-form-light .wpcf7-list-item-label {
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
}
.ar-form label a,
.ar-form .wpcf7-list-item-label a,
.ar-form-light label a,
.ar-form-light .wpcf7-list-item-label a {
  text-decoration: underline;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ar-form label a:hover,
.ar-form .wpcf7-list-item-label a:hover,
.ar-form-light label a:hover,
.ar-form-light .wpcf7-list-item-label a:hover {
  color: #12A767 !important;
  text-decoration: none;
}
.ar-form label,
.ar-form-light label {
  width: 100% !important;
}
.ar-form .form-row,
.ar-form-light .form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.ar-form input[type=text],
.ar-form input[type=email],
.ar-form input[type=tel],
.ar-form textarea,
.ar-form select,
.ar-form-light input[type=text],
.ar-form-light input[type=email],
.ar-form-light input[type=tel],
.ar-form-light textarea,
.ar-form-light select {
  padding: 12px 30px;
  width: 100% !important;
  background-color: transparent;
  border: none;
  border: 2px solid #0E313A;
  color: #0E313A;
  font-size: var(--wp--preset--font-size--20-px);
  font-weight: 600;
  font-family: "Inter Tight", sans-serif;
}
.ar-form input[type=text]::placeholder,
.ar-form input[type=email]::placeholder,
.ar-form input[type=tel]::placeholder,
.ar-form textarea::placeholder,
.ar-form select::placeholder,
.ar-form-light input[type=text]::placeholder,
.ar-form-light input[type=email]::placeholder,
.ar-form-light input[type=tel]::placeholder,
.ar-form-light textarea::placeholder,
.ar-form-light select::placeholder {
  color: #0E313A;
  font-family: "Inter Tight", sans-serif;
}
.ar-form textarea,
.ar-form-light textarea {
  height: 150px;
  resize: none;
}
.ar-form .wpcf7-list-item-label,
.ar-form .wpcf7-quiz-label,
.ar-form-light .wpcf7-list-item-label,
.ar-form-light .wpcf7-quiz-label {
  color: #0E313A;
}
.ar-form .wpcf7-list-item-label a,
.ar-form .wpcf7-quiz-label a,
.ar-form-light .wpcf7-list-item-label a,
.ar-form-light .wpcf7-quiz-label a {
  color: #0E313A;
  text-decoration: underline;
}
.ar-form .wpcf7-list-item-label a:hover,
.ar-form .wpcf7-quiz-label a:hover,
.ar-form-light .wpcf7-list-item-label a:hover,
.ar-form-light .wpcf7-quiz-label a:hover {
  color: #12A767;
}
.ar-form .wpcf7-form-control-wrap,
.ar-form-light .wpcf7-form-control-wrap {
  height: fit-content;
  display: inline-block;
  width: 100%;
}
.ar-form .wpcf7-not-valid-tip,
.ar-form-light .wpcf7-not-valid-tip {
  color: red;
}
.ar-form .wpcf7-submit,
.ar-form-light .wpcf7-submit {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  background: #BDE6CB;
  color: #0E313A !important;
  font-family: "Inter Tight", sans-serif;
  font-size: var(--wp--preset--font-size--22-pixels, clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem));
  font-weight: 600;
  padding: 12px 60px !important;
  width: fit-content;
  border: 2px solid #BDE6CB !important;
  border-radius: unset !important;
}
.ar-form .wpcf7-submit:hover,
.ar-form-light .wpcf7-submit:hover {
  background-color: #ffffff !important;
  color: #12A767 !important;
  border-color: #12A767 !important;
}
.ar-form .wpcf7-list-item,
.ar-form-light .wpcf7-list-item {
  margin-left: 0;
}
.ar-form .wpcf7-spinner,
.ar-form-light .wpcf7-spinner {
  display: none;
}

/* ---------------------------------------- */
/* ! BARRE DI SCORRIMENTO DEL SITO */
/* ---------------------------------------- */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

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

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

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

/** Mobile **/
/* -------------------------------------- */
/* ! Medium devices (tablets, less than 1024px) */
/* -------------------------------------- */
@media (max-width: 1024px) {
  /** typography **/
  .subtitles {
    font-size: 18px !important;
  }
  .header {
    position: fixed;
    left: 0;
    right: 0;
  }
  .header .burger-container {
    display: block;
  }
  .header__container-inner {
    padding-top: 20px;
    padding-bottom: 15px;
    min-height: 93px;
  }
  .header__container-inner .header__logo svg {
    max-width: 100px;
    min-width: 90px;
  }
  .header__container-inner .header__col-dx {
    gap: 20px;
  }
  .header__container-inner .header-login svg,
  .header__container-inner .search-button svg {
    width: 20px;
  }
  .header .header-desktop {
    display: none;
  }
  .header .menu-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: -100%;
    margin-top: 94px;
    width: 100%;
    height: calc(100vh - 94px);
    min-height: 100vh;
    background-color: #0E313A;
    overflow-y: auto;
    padding: 0 30px 120px;
  }
  .header .menu-mobile .header__menu .menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start !important;
    gap: 30px;
    list-style: none;
    margin-right: 40px;
    padding: 50px 0 80px;
  }
  .header .menu-mobile .header__menu .menu li {
    padding: 0 !important;
  }
  .header .menu-mobile .header__menu .menu li a {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: var(--wp--preset--font-size--40-px) !important;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 0 !important;
  }
  .header .menu-mobile .header__menu .menu li a:hover {
    color: #BDE6CB;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button {
    display: inline-block;
    background: #0E313A;
    padding: 3px !important;
    clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
    transition: background 0.3s ease;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button a {
    all: unset;
    display: block;
    padding: 10px 26px !important;
    background-color: #ffffff;
    color: #0E313A;
    clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: var(--wp--preset--font-size--40-px) !important;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button:hover {
    background: #ffffff;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button:hover a {
    background-color: #0E313A;
    color: #ffffff;
  }
  .header .menu-mobile .header__menu .menu .menu-item-has-children {
    position: relative;
    top: 0;
    left: 0;
  }
  .header .menu-mobile .header__menu .menu .menu-item-has-children .sub-menu {
    padding: 20px;
    background: #0E313A;
    border: none;
    backdrop-filter: blur(30px) brightness(1.15);
    -webkit-backdrop-filter: blur(30px) brightness(1.15);
    opacity: 1;
    visibility: visibile;
    position: static;
    top: 100%;
    left: 0;
    width: fit-content;
    max-width: 300px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .header .menu-mobile .header__menu .menu .menu-item-has-children .sub-menu li {
    padding: 0 !important;
  }
  .header .menu-mobile .header__menu .menu .menu-item-has-children .sub-menu li a {
    font-family: "Inter Tight", sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    padding: 0 !important;
  }
  .header .menu-mobile .header__menu .menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .header .menu-mobile .header__menu .menu li a {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: var(--wp--preset--font-size--22-px);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 48px 0;
  }
  .header .menu-mobile .header__menu .menu li a:hover {
    color: #BDE6CB;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button {
    display: inline-block;
    background: #0E313A;
    padding: 3px;
    clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
    transition: background 0.3s ease;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button a {
    all: unset;
    display: block;
    padding: 10px 26px;
    background-color: #ffffff;
    color: #0E313A;
    clip-path: polygon(12% 0, 100% 0, 100% 73%, 88% 100%, 0 100%, 0 33%);
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: var(--wp--preset--font-size--22-px);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button:hover {
    background: #ffffff;
  }
  .header .menu-mobile .header__menu .menu .ar-contatti-button:hover a {
    background-color: #0E313A;
    color: #ffffff;
  }
  .header .menu-mobile .header__menu .menu::-webkit-scrollbar {
    display: none;
    /* Nasconde la scrollbar */
  }
  .header .menu-mobile .header__menu .menu {
    scrollbar-width: none;
  }
  .header .menu-mobile .header__menu .menu::-webkit-scrollbar {
    display: none;
    /* Nasconde la scrollbar */
    scrollbar-width: none;
  }
  .header .burgermenu {
    display: block;
  }
  .header .wpml-ls-item > a {
    color: #BDE6CB !important;
  }
  .header .wpml-ls-item .sub-menu {
    padding: 20px 20px 20px 0 !important;
  }
  .header .wpml-ls-item .sub-menu a .wpml-ls-display {
    font-size: var(--wp--preset--font-size--40-px) !important;
    font-weight: 600;
    color: #ffffff;
  }
  .current-menu-item > a {
    color: #BDE6CB !important;
  }
  .open-menu .menu-mobile {
    left: 0;
    display: block;
  }
  /** footer **/
  .footer {
    clip-path: polygon(92% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
  }
  .footer__brand {
    width: 100%;
    flex-direction: column;
    gap: 70px !important;
  }
  .footer__brand img {
    width: 100%;
    max-width: 140px !important;
    height: auto;
  }
  .footer__row {
    flex-direction: column;
    gap: 70px;
  }
  .footer__row .footer__col-logo {
    width: 100%;
  }
  /** Slider settori **/
  .gspb_slider-id-gsbp-e69b0c2 .swiper-button-next {
    right: calc(40% - 35px) !important;
  }
  .gspb_slider-id-gsbp-e69b0c2 .swiper-button-prev {
    left: calc(40% - 35px) !important;
  }
  .ar-mask {
    top: -35px !important;
  }
  /** hero page-template **/
  /** Hero page-template **/
  .main-page__container {
    min-height: 100vh;
    background-color: #0E313A;
    border-bottom: 2px solid #ffffff;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
  }
  .main-page__container .main-page__text {
    max-width: 930px;
  }
  .main-page {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    clip-path: unset;
  }
  /** Filter **/
  .filter-tabs {
    flex-direction: column;
  }
  .filter-tabs li {
    width: 100% !important;
    border-right: unset !important;
    border-bottom: 1px solid #0E313A;
  }
  .filter-tabs li:last-child {
    border-bottom: unset !important;
  }
  .up {
    display: none !important;
  }
  .video-accessori {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  /** Confronta **/
  .compare-container {
    max-width: 100%;
  }
}
/* 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) {
  .ar-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
  /** footer **/
  .footer {
    clip-path: polygon(87% 0, 100% 4%, 100% 100%, 0 100%, 0 0);
  }
  .button-wrapper {
    width: fit-content;
  }
  .button-wrapper button,
  .button-wrapper a {
    border: none;
    width: 100%;
    cursor: pointer;
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* Display 5.5", iPad Portrait, iPhone 6, 6s, 7, 8, X, Xs, 11, 12, 13, SE2 Portrait and landscape, iPhone 5s landscape */

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