:root {
  --green: #007a3e;
  --ink: #454545;
  --paper: #fff;
  --soft: #efefef;
  --footer: #494948;
  --max: 1514px;
  --font-main: "Sora", Arial, Helvetica, sans-serif;
  font-family: var(--font-main);
}

html {
  overflow-x: clip;
}

@media (max-width: 980px) {
  .import-intro,
  .brand-detail-hero,
  .brand-detail-body {
    grid-template-columns: 1fr;
  }

  .import-brand-grid,
  .import-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-detail-logo {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .import-intro {
    padding-top: 46px;
  }

  .import-intro-actions {
    align-items: flex-start;
  }

  .import-brand-grid,
  .import-solution-grid {
    grid-template-columns: 1fr;
  }

  .import-brand-card {
    min-height: 190px;
  }

  .brand-detail-body {
    gap: 28px;
    padding-top: 48px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: inherit;
  overflow-x: clip;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: clip;
  background: #fff;
}

body.is-desktop-preview .site-header {
  overflow: visible;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100px;
  min-height: 100px;
  padding: 0 40px;
}

.brand {
  flex: 0 0 212px;
  width: 212px;
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 38px;
  min-width: 0;
}

.nav-primary,
.nav-secondary {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-primary {
  flex: 0 0 auto;
  gap: 25px;
}

.nav-primary a,
.nav-link,
.nav-secondary a {
  position: relative;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-primary a,
.nav-link {
  font-size: 18px;
  font-weight: 700;
}

.nav-primary a::after,
.nav-link::after,
.nav-secondary a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-primary a:hover,
.nav-primary a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-secondary a:hover,
.nav-secondary a:focus-visible {
  color: var(--green);
}

.nav-primary a:hover::after,
.nav-primary a:focus-visible::after,
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-secondary a:hover::after,
.nav-secondary a:focus-visible::after {
  transform: scaleX(1);
}

.language {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.language svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.language-current {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-options {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 74px;
  padding: 8px;
  border: 1px solid rgba(0, 122, 62, .16);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-switcher.is-open .language-options,
.language-switcher:focus-within .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-secondary .language-options a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 700;
}

.nav-secondary .language-options a::after {
  display: none;
}

.nav-secondary .language-options a.is-active {
  color: #fff;
  background: var(--green);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-toggle span:not(.nav-toggle-label) {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}

.nav-toggle span:nth-of-type(2) {
  top: 17px;
}

.nav-toggle span:nth-of-type(3) {
  top: 24px;
}

.nav-toggle span:nth-of-type(4) {
  top: 31px;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  top: 24px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
  top: 24px;
  transform: rotate(-45deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  min-height: 364px;
  padding: 48px 152px 70px;
  background: #f3f3f3;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.mega-menu.is-open,
body.mega-open .mega-menu {
  display: block;
}

body.is-desktop-preview .mega-menu {
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mega-close {
  position: absolute;
  top: 38px;
  right: 47px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mega-close::before,
.mega-close::after {
  position: absolute;
  top: 15px;
  left: 4px;
  width: 24px;
  height: 2px;
  content: "";
  background: var(--ink);
}

.mega-close::before {
  transform: rotate(45deg);
}

.mega-close::after {
  transform: rotate(-45deg);
}

.mega-panel {
  display: none;
  --mega-panel-width: 1210px;
  width: min(var(--mega-panel-width), 100%);
  margin-right: auto;
  margin-left: auto;
}

.mega-panel.is-active {
  display: block;
}

.mega-panel[data-panel="idro"] {
  --mega-panel-width: 1720px;
}

.mega-panel[data-panel="agri"] {
  --mega-panel-width: 1440px;
}

.mega-panel[data-panel="import"] {
  --mega-panel-width: 1617px;
}

.mega-overview {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.mega-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 86px;
  max-width: 1210px;
}

.mega-panel[data-panel="idro"] .mega-columns {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 62px;
  max-width: 1720px;
}

.mega-panel[data-panel="agri"] .mega-brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px 104px;
  max-width: 1440px;
}

.mega-panel[data-panel="agri"] .mega-brand-grid a {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
}

.mega-panel[data-panel="import"] .mega-import-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
  max-width: 1617px;
}

.mega-panel[data-panel="import"] .mega-import-logo-card {
  display: grid;
  aspect-ratio: 213 / 157;
  width: 100%;
  margin: 0 0 24px;
  place-items: center;
  background: #fff;
  text-decoration: none;
}

.mega-panel[data-panel="import"] .mega-import-logo-card img {
  width: 72%;
  max-height: 78px;
  object-fit: contain;
}

.mega-panel[data-panel="import"] .mega-import-grid h2 {
  margin-bottom: 20px;
}

.mega-columns h2 {
  margin: 0 0 19px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-columns h2 .mega-heading-link {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: inherit;
  text-decoration: none;
}

.mega-columns h2 .mega-heading-link:hover,
.mega-columns h2 .mega-heading-link:focus-visible {
  color: var(--green);
}

.mega-columns a,
.mega-columns .mega-item {
  display: block;
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.mega-columns .mega-item {
  cursor: default;
}

.mega-columns a:hover,
.mega-columns a:focus-visible {
  color: var(--green);
}

.mega-used-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1210px;
}

.mega-used-grid a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  text-decoration: none;
}

.mega-used-grid a:hover,
.mega-used-grid a:focus-visible {
  color: #fff;
  background: var(--green);
}

.mega-used-grid a:hover .used-category-icon,
.mega-used-grid a:focus-visible .used-category-icon {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.home-hero-stack {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #00813f;
}

.home-hero-stack::before {
  display: none;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: calc(70vh - 100px);
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #00813f;
}

.hero > div {
  width: 50%;
}

.hero-photo {
  position: relative;
  background: url("../images/home-hero-webdesigner-v1.jpg") right bottom / auto no-repeat;
  background-size: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 129, 63, 1) 0%, rgba(0, 129, 63, 0) 100%);
}

.hero-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  background-color: #00813f;
  text-align: right;
}

.hero-copy > div {
  width: 50%;
}

.hero h1 {
  margin: 0 0 40px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 80px;
  line-height: .9375;
  font-weight: 400;
  letter-spacing: 0;
  text-align: right;
}

.hero h1 strong {
  font-weight: 700;
}

.hero p {
  margin: 0 0 40px;
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.33;
  font-weight: 400;
  text-align: right;
}

.hero .button {
  min-width: 0;
  min-height: 0;
  padding: 13px 28px;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.hero .button-light {
  border-color: #fff;
  color: #fff;
}

.hero .button-light:hover,
.hero .button-light:focus-visible {
  border-color: #fff;
  color: var(--green);
  background: #fff;
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 98px;
  }
}

@media (max-width: 1366px) {
  .hero-copy > div {
    width: 60%;
  }
}

@media (max-width: 1100px) {
  .hero-copy > div {
    width: 65%;
  }

  .hero h1 {
    font-size: 75px;
  }
}

@media (max-width: 960px) {
  .hero-copy > div {
    width: 100%;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero > div {
    width: 100%;
  }

  .hero-photo {
    height: 350px;
    background-size: cover;
    background-position: left top;
  }

  .hero-copy > div {
    width: 60%;
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 525px) {
  .hero-copy > div {
    width: 70%;
  }

  .hero h1 {
    font-size: 70px;
  }
}

@media (max-width: 450px) {
  .hero-copy > div {
    width: 75%;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 340px) {
  .hero-copy > div {
    width: 80%;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero .button-light {
    font-size: 14px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 198px;
  padding: 0 28px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: transparent;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.button-light {
  border-color: #fff;
  color: #fff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: #fff;
  color: var(--green);
  background: #fff;
}

.contatti-form button,
.brand-detail-cta a,
.used-search button,
.used-filters button,
.used-seller-button {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.contatti-form button:hover,
.contatti-form button:focus-visible,
.brand-detail-cta a:hover,
.brand-detail-cta a:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.used-search button:hover,
.used-search button:focus-visible,
.used-filters button:hover,
.used-filters button:focus-visible,
.used-seller-button:hover,
.used-seller-button:focus-visible {
  color: var(--green);
  background: #fff;
  border-color: var(--green);
}

.stats {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns:
    clamp(305px, 21vw, 430px)
    clamp(305px, 21vw, 430px)
    clamp(350px, 24.5vw, 502px);
  column-gap: clamp(58px, 6.1vw, 125px);
  margin-top: -1px;
  justify-content: center;
  padding: clamp(92px, 8.2vw, 124px) clamp(24px, 4vw, 80px) clamp(32px, 2.75vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, #00813f 0%, #454544 78%, #454544 100%);
}

.stats article {
  text-align: left;
}

.stats article:nth-child(1) {
  margin-top: 0;
}

.stats article:nth-child(2) {
  margin-top: 74px;
}

.stats article:nth-child(3) {
  margin-top: 148px;
}

.stats strong {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(82px, 7.275vw, 110px);
  line-height: 1.018;
  font-weight: 700;
}

.stats p {
  width: auto;
  max-width: none;
  margin: 23px 0 0;
  font-family: var(--font-main);
  font-size: clamp(18px, 1.587vw, 24px);
  line-height: 1.27;
  font-weight: 400;
}

.stats article:nth-child(1) p {
  width: clamp(430px, 23vw, 470px);
}

.stats article:nth-child(2) p {
  width: clamp(500px, 25.4vw, 520px);
}

.stats article:nth-child(3) p {
  width: clamp(520px, 28.3vw, 580px);
}

.division-band {
  margin-top: 0;
  padding: clamp(32px, 2.1vw, 40px) 0 0;
  color: #fff;
  background: linear-gradient(180deg, #454544 0%, #454544 68%, #fff 68% 100%);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.division-band h2 {
  max-width: 790px;
  margin: 0 0 clamp(70px, 6.2vw, 118px) clamp(44px, 2.95vw, 60px);
  font-family: var(--font-main);
  font-size: clamp(38px, 3.175vw, 48px);
  line-height: 1.24;
  font-weight: 700;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 373px);
  gap: 34px;
  max-width: 1187px;
  margin: 0 auto;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 2.5vw, 36px);
}

.division-card {
  position: relative;
  display: block;
  width: 373px;
  height: 566px;
  min-height: 566px;
  padding: 0;
  color: var(--ink);
  background: #f1f1f1;
}

.archive-card {
  display: grid;
  gap: 20px;
  padding: 32px;
  color: var(--ink);
  background: #f1f1f1;
}

.division-card h3 {
  position: absolute;
  top: 37px;
  left: 30px;
  width: 313px;
  margin: 0;
  color: #004a98;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}

.division-card:nth-child(2) h3 {
  color: var(--green);
}

.division-card p {
  position: absolute;
  top: 88px;
  left: 30px;
  width: 306px;
  min-height: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.division-card img {
  position: absolute;
  top: 247px;
  left: 15px;
  width: 343px;
  height: 229px;
  max-width: none;
  object-fit: cover;
  margin: 0;
}

.division-card .button {
  position: absolute;
  top: 498px;
  left: 76px;
  width: 222px;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.division-card-green {
  color: #fff;
  background: var(--green);
}

.division-card-green h3 {
  color: #fff;
}

.division-card-green img {
  left: 17px;
}

.division-card-green .button {
  top: 500px;
  left: 69px;
  width: 235px;
}

.social-feed,
.news {
  padding: 96px clamp(24px, 8vw, 160px);
  background: #fff;
}

.section-heading {
  text-align: center;
}

.section-heading p,
.news-head p,
.brands h2,
.prefooter h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 70px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1187px;
  margin: 0 auto 50px;
}

.post-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f7;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}

.post-card:hover,
.post-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .12);
}

.post-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.instagram-card::after {
  content: "Instagram";
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card p,
.post-card span {
  display: block;
  padding: 0 18px;
}

.post-card p {
  min-height: 76px;
  margin: 18px 0 12px;
  line-height: 1.32;
}

.post-card span {
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 700;
}

.instagram-feed-embed {
  max-width: 1187px;
  margin: 0 auto 48px;
}

.instagram-feed-embed-three {
  --casella-instagram-columns: 3;
}

.instagram-feed-embed #sb_instagram #sbi_images {
  gap: 34px !important;
}

.instagram-feed-embed #sb_instagram #sbi_images .sbi_item {
  padding: 0 !important;
}

.social-feed > .button,
.instagram-follow {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.brands {
  padding: 80px clamp(24px, 8vw, 160px) 105px;
  background: var(--green);
}

.brands h2 {
  color: #fff;
}

.brand-slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.brand-slider.is-dragging {
  cursor: grabbing;
}

.brand-track {
  display: flex;
  transition: transform .55s cubic-bezier(.2, .78, .22, 1);
  will-change: transform;
}

.brand-page {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 152px;
  align-content: start;
  gap: 30px;
}

.brand-page .brand-card {
  display: grid;
  height: 100%;
  min-height: 152px;
  place-items: center;
  padding: 10px 12px;
  background: #fff;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand-page a.brand-card:hover,
.brand-page a.brand-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.brand-page img {
  max-width: 96%;
  max-height: 118px;
  object-fit: contain;
}

.slider-dots {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.slider-dots button {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots .is-active {
  background: #fff;
}

.slider-dots-green {
  margin-top: 58px;
}

.support {
  padding: 37px 0 clamp(92px, 7vw, 134px);
  background: linear-gradient(180deg, var(--green) 0 296px, #fff 296px 100%);
}

.support-panel {
  position: relative;
  width: 1188px;
  max-width: 1188px;
  height: 469px;
  margin: 0 auto;
  color: #fff;
  background: #474746;
}

.support-panel img {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 444px;
  height: 444px;
  object-fit: cover;
  object-position: right center;
}

.support-panel > div {
  position: static;
}

.support h2,
.support p {
  position: absolute;
  margin: 0;
}

.support h2 {
  top: 53px;
  left: 490px;
  width: 527px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.17;
}

.support p {
  top: 98px;
  left: 490px;
  width: 656px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.support-badge {
  position: absolute;
  top: 189px;
  left: 494px;
  display: grid;
  width: 89px;
  height: 89px;
  border-radius: 50%;
  background: var(--green);
}

.support-badge::before {
  width: 42px;
  height: 53px;
  place-self: center;
  content: "";
  background: url("../images/support-badge-figma.svg") center / contain no-repeat;
}

.support ul {
  position: absolute;
  top: 183px;
  left: 597px;
  width: 533px;
  margin: 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  list-style-type: square;
}

.support li {
  margin: 0 0 14px;
}

.support .button {
  position: absolute;
  top: 369px;
  left: 491px;
  width: 181px;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border-color: #fff;
}

.support .button:hover,
.support .button:focus-visible {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

@media (max-width: 1240px) {
  .support {
    padding: 80px 24px 96px;
    background: linear-gradient(180deg, var(--green) 0 46%, #fff 46% 100%);
  }

  .support-panel {
    display: grid;
    width: min(100%, 760px);
    height: auto;
    min-height: 0;
    padding: 20px;
  }

  .support-panel img,
  .support h2,
  .support p,
  .support-badge,
  .support ul,
  .support .button {
    position: static;
  }

  .support-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .support-panel > div {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px 24px;
    padding: 34px 4px 0;
  }

  .support h2,
  .support p {
    grid-column: 1 / -1;
    width: auto;
  }

  .support h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .support p {
    font-size: 16px;
  }

  .support-badge {
    width: 78px;
    height: 78px;
  }

  .support-badge::before {
    width: 37px;
    height: 47px;
  }

  .support ul {
    width: auto;
    padding-left: 20px;
  }

  .support .button {
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 181px;
    margin-top: 8px;
  }
}

.news {
  background: #f1f1f1;
  min-height: 904px;
  padding: 118px 0 104px;
}

.news-head {
  position: relative;
  width: min(100%, 1517px);
  min-height: 160px;
  margin: 0 auto;
}

.news-head p {
  position: absolute;
  top: 0;
  left: 42px;
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

.news-head h2 {
  position: absolute;
  top: 39px;
  left: 42px;
  width: 1040px;
  max-width: none;
  margin: 0;
  color: var(--charcoal);
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  white-space: nowrap;
}

.news-head .button {
  position: absolute;
  top: 23px;
  left: 1125px;
  width: 225px;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  border-width: 2px;
  font-size: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 335px);
  gap: 30px;
  width: min(100%, 1431px);
  margin: 0 auto;
}

.news-grid article {
  position: relative;
  display: block;
  width: 335px;
  height: 522px;
  min-height: 522px;
  padding: 0;
  background: #fff;
}

.news-meta {
  position: absolute;
  top: 41px;
  left: 20px;
  display: flex;
  gap: 4px;
  align-items: baseline;
  color: var(--charcoal);
  font-size: 13px;
  line-height: 18px;
}

.news-meta time,
.news-meta a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.news-grid h3 {
  position: absolute;
  top: 78px;
  left: 20px;
  display: -webkit-box;
  width: 294px;
  max-height: 170px;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  color: var(--green);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.news-grid h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.news-grid article.is-title-long h3 {
  font-size: 16px;
  line-height: 1.28;
}

.news-grid img {
  position: absolute;
  top: 257px;
  left: 18px;
  width: 299px;
  height: 199px;
  max-width: none;
  object-fit: fill;
}

.news-grid article::after {
  position: absolute;
  top: 455px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f1f1f1;
  content: "";
  pointer-events: none;
}

.news-grid .read-more {
  position: absolute;
  top: 481px;
  left: 21px;
  padding: 0;
  color: var(--green);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.news-grid article:hover h3,
.news-grid article:focus-within h3,
.news-grid article:hover .read-more,
.news-grid article:focus-within .read-more {
  color: #000;
}

@media (max-width: 1180px) {
  .news {
    min-height: 0;
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .news-head {
    display: grid;
    gap: 24px;
    min-height: 0;
  }

  .news-head p,
  .news-head h2,
  .news-head .button {
    position: static;
  }

  .news-head h2 {
    width: auto;
    line-height: 1.2;
    white-space: normal;
  }

  .news-head .button {
    width: fit-content;
    padding: 0 28px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 335px);
    justify-content: center;
    margin-top: 56px;
  }
}

@media (max-width: 760px) {
  .news {
    padding-right: 20px;
    padding-left: 20px;
  }

  .news-grid {
    grid-template-columns: minmax(0, 335px);
  }
}

@media (max-width: 768px) {
  .home .home-hero-stack {
    overflow: hidden;
  }

  .home .home-hero-stack .hero {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home .home-hero-stack .hero > div {
    width: 100%;
  }

  .home .home-hero-stack .hero-photo {
    height: min(88vw, 350px);
    background-position: left top;
  }

  .home .home-hero-stack .hero-copy {
    min-height: 430px;
    margin-top: 0;
    padding: 56px 24px 72px;
    align-items: start;
    text-align: center;
  }

  .home .home-hero-stack .hero-copy > div {
    width: min(100%, 330px);
    padding: 0;
  }

  .home .home-hero-stack .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(50px, 15vw, 64px);
    line-height: .98;
  }

  .home .home-hero-stack .hero p {
    max-width: 310px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.32;
  }

  .home .stats {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 34px;
    justify-items: stretch;
    padding: 46px 24px 58px;
    background: linear-gradient(180deg, #00813f 0%, #454544 100%);
  }

  .home .stats article,
  .home .stats article:nth-child(1),
  .home .stats article:nth-child(2),
  .home .stats article:nth-child(3) {
    width: 100%;
    margin-top: 0;
    text-align: left;
  }

  .home .stats strong {
    font-size: clamp(58px, 19vw, 76px);
    line-height: 1;
  }

  .home .stats p,
  .home .stats article:nth-child(1) p,
  .home .stats article:nth-child(2) p,
  .home .stats article:nth-child(3) p {
    width: auto;
    max-width: 310px;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.28;
  }

  .home .division-band {
    padding: 44px 0 66px;
    background: linear-gradient(180deg, #454544 0 322px, #fff 322px 100%);
  }

  .home .division-band .section-inner {
    width: 100%;
    max-width: none;
  }

  .home .division-band h2 {
    width: min(342px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto 42px;
    font-size: 34px;
    line-height: 1.18;
  }

  .home .division-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    width: min(342px, calc(100% - 48px));
    max-width: none;
  }

  .home .division-card {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 24px 28px;
    gap: 16px;
  }

  .home .division-card h3,
  .home .division-card p,
  .home .division-card img,
  .home .division-card .button {
    position: static;
    left: auto;
    top: auto;
    width: auto;
  }

  .home .division-card h3 {
    font-size: 26px;
  }

  .home .division-card p {
    font-size: 15px;
    line-height: 1.38;
  }

  .home .division-card img,
  .home .division-card-green img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 343 / 229;
    object-fit: cover;
  }

  .home .division-card .button,
  .home .division-card-green .button {
    justify-self: center;
    width: min(100%, 235px);
    min-height: 48px;
    margin-top: 4px;
    padding: 0 18px;
    font-size: 16px;
  }

  .home .social-feed,
  .home .news {
    padding: 64px 20px;
  }

  .home .section-heading h2 {
    margin-bottom: 42px;
    font-size: 24px;
    line-height: 1.32;
  }

  .home .instagram-feed-embed {
    width: min(342px, 100%);
    margin-bottom: 34px;
  }

  .home .feed-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(342px, 100%);
  }

  .home .brands {
    padding: 56px 24px 66px;
  }

  .home .brand-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 102px;
    gap: 14px;
  }

  .home .brand-page .brand-card {
    min-height: 102px;
    padding: 12px;
  }

  .home .brand-page img {
    max-height: 70px;
  }

  .home .slider-dots-green {
    margin-top: 30px;
  }

  .home .support {
    padding: 56px 20px 72px;
    background: linear-gradient(180deg, var(--green) 0 210px, #fff 210px 100%);
  }

  .home .support-panel {
    width: min(342px, 100%);
    padding: 16px;
  }

  .home .support-panel img {
    aspect-ratio: 4 / 3;
  }

  .home .support-panel > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 26px 2px 0;
  }

  .home .support-badge {
    display: none;
  }

  .home .support h2 {
    font-size: 30px;
  }

  .home .support ul {
    padding-left: 18px;
  }

  .home .support .button {
    justify-self: start;
    margin-top: 2px;
  }

  .home .news {
    min-height: 0;
  }

  .home .news-head {
    width: min(335px, 100%);
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .home .news-head h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  .home .news-head .button {
    width: fit-content;
  }

  .home .news-grid {
    width: min(335px, 100%);
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    margin-top: 36px;
  }

  .home .news-grid article {
    width: 100%;
  }
}

.institutional-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.institutional-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.institutional-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 132, 61, .98) 0%, rgba(0, 132, 61, .86) 45%, rgba(0, 132, 61, .34) 100%);
}

.institutional-hero-media img {
  width: 100%;
  height: 100%;
  filter: blur(4px);
  object-fit: cover;
  transform: scale(1.04);
}

.institutional-hero .breadcrumb,
.institutional-hero > div:not(.institutional-hero-media) {
  position: relative;
  z-index: 2;
}

.institutional-hero .breadcrumb a,
.institutional-hero .breadcrumb strong {
  color: #fff;
}

.news-list-hero {
  padding: 32px clamp(24px, 8vw, 160px) 88px;
  color: #fff;
  background: var(--green);
}

.news-list-hero > div {
  max-width: 880px;
  margin-top: 88px;
}

.news-list-hero p,
.news-single-hero .detail-hero-copy > p {
  margin: 0 0 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-list-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .98;
}

.news-list {
  padding: 86px clamp(24px, 8vw, 160px);
  background: #efefef;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
}

.news-list-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
}

.news-list-media {
  display: block;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #ddd url("../images/social-feed.jpg") center / cover no-repeat;
}

.news-list-media img,
.news-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-card > div {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 28px 24px 30px;
}

.news-list-card time {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.news-list-card h2 {
  margin: 22px 0 18px;
  font-size: 28px;
  line-height: 1.08;
}

.news-list-card h2 a {
  text-decoration: none;
}

.news-list-card p {
  margin: 0 0 28px;
  line-height: 1.45;
}

.news-list-card .read-more {
  align-self: end;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.news-figma {
  background: #fff;
}

.news-figma-hero .supporto-hero-copy {
  max-width: 820px;
}

.news-figma-hero .supporto-hero p {
  max-width: 760px;
}

.news-figma-list {
  padding: 96px 0 132px;
  background: #fff;
}

.news-figma-intro {
  width: min(946px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto 76px;
}

.news-figma-intro p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #474746;
}

.news-figma .news-list-grid {
  width: min(1460px, calc(100% - 104px));
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 335px));
  gap: 52px 40px;
  justify-content: center;
  align-items: start;
}

.news-figma .news-list-card {
  display: block;
  width: 335px;
  min-height: 522px;
  border: 0;
  background: #f1f1f1;
}

.news-figma .news-card-inner {
  position: relative;
  display: flex;
  min-height: 522px;
  padding: 39px 18px 25px;
  flex-direction: column;
  align-items: flex-start;
}

.news-figma .news-card-meta {
  display: flex;
  margin: 0 0 19px;
  align-items: baseline;
  gap: 4px;
  color: #474746;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.news-figma .news-card-meta time {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.news-figma .news-card-meta span {
  text-decoration: underline;
}

.news-figma .news-list-card h2 {
  min-height: 155px;
  margin: 0 0 27px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.38;
  transition: color .2s ease;
}

.news-figma .news-list-card h2 a {
  color: inherit;
}

.news-figma .news-list-card.is-text-only h2 {
  min-height: 230px;
}

.news-figma .news-list-media {
  width: 299px;
  height: 199px;
  margin: 0 0 34px;
  aspect-ratio: auto;
  background-image: none;
}

.news-figma .news-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-figma .read-more {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #dedede;
  width: 100%;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease;
}

.news-figma .news-list-card:hover h2,
.news-figma .news-list-card:focus-within h2,
.news-figma .news-list-card:hover .read-more,
.news-figma .news-list-card:focus-within .read-more {
  color: #000;
}

.news-pagination {
  display: flex;
  width: min(1460px, calc(100% - 104px));
  max-width: none;
  margin: 72px auto 0;
  justify-content: center;
}

.news-pagination ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.news-pagination .current {
  color: #fff;
  background: var(--green);
}

.news-pagination .prev,
.news-pagination .next {
  min-width: 118px;
}

@media (max-width: 1550px) {
  .news-figma .news-list-grid {
    width: min(1424px, calc(100% - 48px));
    grid-template-columns: repeat(4, minmax(0, 335px));
    column-gap: 28px;
  }

  .news-pagination {
    width: min(1424px, calc(100% - 48px));
  }
}

@media (max-width: 1440px) {
  .news-figma .news-list-grid {
    width: min(1085px, calc(100% - 72px));
    grid-template-columns: repeat(3, minmax(0, 335px));
    column-gap: 40px;
  }

  .news-pagination {
    width: min(1085px, calc(100% - 72px));
  }
}

@media (max-width: 1180px) {
  .news-figma .news-list-grid {
    width: min(710px, calc(100% - 48px));
    grid-template-columns: repeat(2, minmax(0, 335px));
  }

  .news-pagination {
    width: min(710px, calc(100% - 48px));
  }
}

@media (max-width: 760px) {
  .news-figma-list {
    padding: 72px 0 96px;
  }

  .news-figma .news-list-grid {
    width: min(335px, calc(100% - 40px));
    grid-template-columns: minmax(0, 335px);
    gap: 34px;
  }

  .news-pagination {
    width: min(335px, calc(100% - 40px));
    margin-top: 56px;
  }

  .news-figma .news-list-card {
    width: 100%;
  }

  .news-figma .news-card-inner {
    padding-right: 22px;
    padding-left: 22px;
  }

  .news-figma .news-list-media {
    width: 100%;
  }

  .news-pagination ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.news-single-hero .detail-hero-media::before {
  background: linear-gradient(90deg, rgba(0, 132, 61, .95) 0%, rgba(0, 132, 61, .82) 45%, rgba(0, 132, 61, .25) 100%);
}

.content-page.news-single-content {
  max-width: 920px;
  margin: 0 auto 90px;
}

.news-single-figma {
  background: #fff;
}

.news-single-strip {
  position: relative;
  min-height: 149px;
  overflow: hidden;
  padding: 29px clamp(28px, 3.7vw, 56px);
  color: #fff;
  background: #007A3E;
}

.news-single-strip::before {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% * 585 / 1512);
  height: 100%;
  background: url("../images/figma-detail-irrigatori-hero.jpg") center 58% / cover no-repeat;
  content: "";
  pointer-events: none;
}

.news-single-strip::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: calc(100% * 585 / 1512);
  height: 100%;
  background: linear-gradient(90deg, #007A3E 0%, rgba(0, 122, 62, 0) 100%);
  content: "";
  pointer-events: none;
}

.news-single-strip .breadcrumb {
  position: relative;
  z-index: 2;
  gap: 6px;
  font-size: 14px;
}

.news-single-strip .breadcrumb a,
.news-single-strip .breadcrumb span,
.news-single-strip .breadcrumb strong {
  color: #fff;
}

.news-single-strip .breadcrumb strong {
  display: inline-block;
  max-width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-single-watermark {
  position: absolute;
  top: 39px;
  right: clamp(88px, 10vw, 205px);
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: .92;
  text-align: right;
}

.news-single-watermark strong {
  font-weight: 800;
}

.news-single-article {
  display: grid;
  width: min(1225px, calc(100% - 48px));
  grid-template-columns: minmax(0, 697px) 458px;
  column-gap: 70px;
  margin: 0 auto;
  padding: 82px 0 62px;
  align-items: start;
}

.news-single-head {
  display: contents;
}

.news-single-title {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
}

.news-single-meta {
  display: flex;
  order: 2;
  margin: 27px 0 0;
  gap: 5px;
  color: #474746;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.news-single-meta span {
  text-decoration: underline;
}

.news-single-title h1 {
  order: 1;
  max-width: 697px;
  margin: 0;
  color: #474746;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.16;
}

.news-single-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 458px;
  height: 306px;
  margin: 0;
  overflow: hidden;
  background: #f1f1f1;
}

.news-single-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-single-content {
  grid-column: 1;
  grid-row: 2;
  max-width: 697px;
  margin-top: 58px;
  color: #474746;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.news-single-content > *:first-child {
  margin-top: 0;
}

.news-single-content h2 {
  margin: 58px 0 26px;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.news-single-content h3 {
  margin: 48px 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-single-content h4,
.news-single-content h5,
.news-single-content h6 {
  margin: 42px 0 18px;
  color: #474746;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.news-single-content p,
.news-single-content ul,
.news-single-content ol {
  margin: 0 0 26px;
}

.news-single-content ul,
.news-single-content ol {
  padding-left: 20px;
}

.news-single-content li {
  margin: 0 0 14px;
}

.news-single-content strong {
  font-weight: 700;
}

.news-single-content a {
  color: var(--green);
  text-underline-offset: 3px;
}

.news-single-content img {
  max-width: 100%;
  height: auto;
}

.news-single-cta {
  width: min(1500px, calc(100% - 48px));
  margin: 92px auto 122px;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-single-cta h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.news-single-cta p {
  margin: 0 0 36px;
  color: #474746;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.news-single-cta .button {
  min-width: 180px;
  min-height: 50px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.news-single-cta .button:hover,
.news-single-cta .button:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.news-single-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 63px minmax(0, 1fr);
  width: min(1225px, calc(100% - 48px));
  margin: 0 auto 148px;
  align-items: center;
  gap: 32px;
}

.news-single-nav-left {
  justify-self: start;
}

.news-single-nav-right {
  justify-self: end;
}

.news-single-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 27px;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease;
}

.news-single-nav-link strong {
  font-weight: 400;
}

.news-single-arrow {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  transition: transform .2s ease;
}

.news-single-arrow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 66px;
  height: 1px;
  background: var(--green);
  transition: background-color .2s ease;
}

.news-single-arrow::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transition: border-color .2s ease;
}

.news-single-arrow-left::after {
  left: 1px;
  transform: rotate(-135deg);
}

.news-single-arrow-right::after {
  right: 1px;
  transform: rotate(45deg);
}

.news-single-nav-link:hover,
.news-single-nav-link:focus-visible {
  color: #000;
}

.news-single-nav-link:hover .news-single-arrow::before,
.news-single-nav-link:focus-visible .news-single-arrow::before {
  background: #000;
}

.news-single-nav-link:hover .news-single-arrow::after,
.news-single-nav-link:focus-visible .news-single-arrow::after {
  border-color: #000;
}

.news-single-nav-link.previous:hover .news-single-arrow,
.news-single-nav-link.previous:focus-visible .news-single-arrow {
  transform: translateX(-6px);
}

.news-single-nav-link.next:hover .news-single-arrow,
.news-single-nav-link.next:focus-visible .news-single-arrow {
  transform: translateX(6px);
}

.news-single-back {
  display: inline-flex;
  width: 63px;
  height: 63px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--green);
  text-decoration: none;
}

.news-single-grid-icon {
  display: grid;
  width: 63px;
  height: 63px;
  grid-template-columns: repeat(2, 17px);
  grid-template-rows: repeat(2, 17px);
  gap: 9px;
  place-content: center;
}

.news-single-grid-icon i {
  display: block;
  width: 17px;
  height: 17px;
  border: 1px solid var(--green);
  box-sizing: border-box;
  transition: border-color .2s ease;
}

.news-single-back:hover .news-single-grid-icon i,
.news-single-back:focus-visible .news-single-grid-icon i {
  border-color: #000;
}

@media (max-width: 1180px) {
  .news-single-article {
    display: block;
    width: min(900px, calc(100% - 48px));
  }

  .news-single-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 56px;
  }

  .news-single-title,
  .news-single-image,
  .news-single-content {
    grid-column: auto;
    grid-row: auto;
  }

  .news-single-image {
    width: min(458px, 100%);
  }

  .news-single-content {
    margin-top: 0;
  }

  .news-single-cta {
    margin: 76px auto 98px;
  }

  .news-single-cta h2 {
    font-size: 38px;
  }

  .news-single-nav {
    width: min(900px, calc(100% - 48px));
  }

  .news-single-nav-link {
    gap: 22px;
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .news-single-strip {
    min-height: 132px;
  }

  .news-single-watermark {
    display: none;
  }

  .news-single-strip .breadcrumb strong {
    max-width: 180px;
  }

  .news-single-article {
    padding: 58px 0 46px;
  }

  .news-single-title h1 {
    font-size: 34px;
  }

  .news-single-image {
    height: auto;
    aspect-ratio: 458 / 306;
  }

  .news-single-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(360px, calc(100% - 40px));
    gap: 28px;
    margin-bottom: 84px;
  }

  .news-single-cta {
    margin: 64px auto 72px;
  }

  .news-single-cta h2 {
    font-size: 34px;
  }

  .news-single-cta p {
    font-size: 18px;
  }

  .news-single-cta .button {
    min-width: 220px;
    min-height: 54px;
    font-size: 16px;
  }

  .news-single-nav-left,
  .news-single-nav-right {
    justify-self: center;
  }

  .news-single-nav-link {
    gap: 14px;
    font-size: 16px;
  }

  .news-single-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .news-single-arrow::before {
    width: 44px;
    top: 21px;
  }

  .news-single-arrow::after {
    top: 13px;
    width: 16px;
    height: 16px;
  }
}

.media-hub {
  background: #fff;
}

.media-hero {
  padding: 32px clamp(24px, 8vw, 160px) 74px;
  color: #fff;
  background: var(--green);
}

.media-hero > div {
  max-width: 880px;
  margin-top: 72px;
}

.media-hero p,
.media-section-head p {
  margin: 0 0 18px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.media-hero p {
  color: #fff;
}

.media-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: .96;
}

.media-hero span,
.contact-hero span {
  display: block;
  max-width: 640px;
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.35;
}

.media-section {
  padding: 72px clamp(24px, 8vw, 160px);
}

.media-section-compact {
  padding-block: 64px;
}

.media-section:nth-of-type(even) {
  background: #efefef;
}

.media-section-head {
  max-width: var(--max);
  margin: 0 auto 34px;
}

.media-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.02;
}

.media-doc-grid,
.media-video-grid,
.media-gallery-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 28px;
}

.media-doc-grid {
  grid-template-columns: repeat(2, 1fr);
}

.media-doc-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  text-decoration: none;
}

.media-section:nth-of-type(odd) .media-doc-card {
  background: #efefef;
}

.media-doc-cover {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 38px;
  font-weight: 900;
}

.media-doc-card h3,
.media-video-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.08;
}

.media-doc-card p,
.media-video-card p {
  margin: 0 0 24px;
  line-height: 1.45;
}

.media-doc-card span,
.media-video-card span {
  color: var(--green);
  font-weight: 800;
}

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

.media-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
}

.media-video-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.media-video-card > div {
  padding: 24px;
}

.media-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.media-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.contact-hero {
  padding: 32px clamp(24px, 8vw, 160px) 84px;
  color: #fff;
  background: var(--green);
}

.contact-hero > div {
  max-width: 900px;
  margin-top: 78px;
}

.contact-hero p,
.contact-card p,
.contact-map p {
  margin: 0 0 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .96;
}

.contact-overview {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 28px;
  padding: 78px clamp(24px, 8vw, 160px);
  background: #efefef;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 270px;
  padding: 32px;
  background: #fff;
}

.contact-card-main {
  color: #fff;
  background: var(--green);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.05;
}

.contact-card address {
  font-style: normal;
  line-height: 1.5;
}

.contact-card a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.contact-card:not(.contact-card-main) p,
.contact-card:not(.contact-card-main) a,
.contact-team article span,
.contact-team article a,
.contact-map p {
  color: var(--green);
}

.contact-team {
  padding: 82px clamp(24px, 8vw, 160px);
  background: #fff;
}

.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-team article {
  display: grid;
  gap: 10px;
  min-height: 240px;
  padding: 28px 22px;
  background: #efefef;
}

.contact-team article span {
  font-weight: 800;
  text-transform: uppercase;
}

.contact-team h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.08;
}

.contact-team a {
  font-weight: 800;
  text-decoration: none;
}

.contact-map {
  padding: 74px clamp(24px, 8vw, 160px);
  background: linear-gradient(135deg, #efefef 0 50%, #fff 50% 100%);
}

.contact-map > div {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-map h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 62px);
}

.prefooter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid #fff;
  background: #f1f1f1;
}

.prefooter > div {
  display: grid;
  grid-template-columns: minmax(250px, 330px) auto;
  grid-template-rows: auto auto;
  column-gap: clamp(38px, 5vw, 76px);
  row-gap: 8px;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-height: 191px;
  padding: 44px clamp(34px, 6vw, 92px);
}

.prefooter > div + div {
  border-left: 2px solid #fff;
}

.prefooter p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.prefooter h2 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0;
  line-height: 1.1;
}

.social-icons {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  gap: 18px;
  justify-content: flex-end;
}

.social-icons a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.social-icons a[aria-label="YouTube"] span {
  width: 25px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 4px;
  position: relative;
}

.social-icons a[aria-label="YouTube"] span::after {
  position: absolute;
  top: 4px;
  left: 9px;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #f1f1f1;
}

.prefooter .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 292px;
  min-width: max-content;
  min-height: 47px;
  padding-inline: 32px;
  justify-self: end;
  flex-shrink: 0;
  white-space: nowrap;
  background: transparent;
  font-size: 16px;
}

.prefooter .button:hover,
.prefooter .button:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.detail-hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  padding: 29px 43px 70px;
  color: #fff;
  background: var(--green);
}

.detail-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.detail-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 45%, rgba(0, 132, 61, .45) 100%);
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb,
.detail-claim,
.detail-hero-copy {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.detail-claim {
  position: absolute;
  top: 28px;
  right: 160px;
  font-size: 29px;
  font-weight: 800;
  line-height: .82;
  text-align: center;
}

.detail-hero-copy {
  max-width: 670px;
  margin: 139px 0 0 123px;
}

.detail-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 5vw, 68px);
  line-height: 1;
}

.detail-hero p {
  max-width: 620px;
  margin: 39px 0 0;
  font-size: 28px;
}

.detail-body {
  min-height: 298px;
  padding: 63px 24px 44px;
  background: #fff;
}

.detail-copy-block {
  max-width: 946px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.45;
}

.detail-copy-block a {
  display: block;
  width: max-content;
  margin: 23px auto 0;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.detail-more {
  padding: 72px clamp(40px, 9vw, 164px) 92px;
  background: var(--soft);
}

.machine-list-section {
  padding: 72px clamp(40px, 9vw, 164px) 92px;
  background: var(--soft);
}

.detail-section-head {
  max-width: var(--max);
  margin: 0 auto 54px;
}

.detail-section-head p {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-section-head h2 {
  max-width: 1200px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
}

.machine-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1190px;
  margin: 0 auto;
}

.machine-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 14px 14px 0;
  background: #efefef;
}

.machine-card img {
  width: 100%;
  height: 230px;
  background: #fff;
  object-fit: contain;
}

.machine-card > div {
  padding: 27px 4px 32px;
}

.machine-card h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 25px;
  line-height: 1.1;
}

.machine-card p {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.35;
}

.machine-more {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.machine-more::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  content: "";
  background: var(--green);
}

.machine-detail-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr .8fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.machine-detail-grid article {
  min-height: 320px;
  padding: 34px;
  background: #fff;
}

.machine-detail-grid h3 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 26px;
}

.machine-detail-grid p,
.machine-detail-grid li {
  font-size: 18px;
  line-height: 1.45;
}

.machine-card-link,
.machine-card-title-link {
  color: inherit;
  text-decoration: none;
}

.machine-card-link {
  transition: transform .2s ease, box-shadow .2s ease;
}

.machine-card-link:hover {
  transform: translateY(-3px);
}

.machine-card-media {
  display: block;
  overflow: hidden;
}

.machine-card-title-link:hover,
.machine-card-link:hover h2 {
  color: var(--green);
}

.product-category-page .machine-list-section {
  padding-top: 58px;
  background: #f3f3f1;
}

.product-category-page .detail-section-head {
  margin-bottom: 34px;
}

.product-category-page.has-subcategories .detail-section-head {
  margin-bottom: 24px;
}

.product-category-page .detail-section-head h2 {
  font-size: clamp(36px, 3.6vw, 52px);
}

.product-category-page .machine-list-grid {
  gap: 28px;
}

.product-category-page .machine-card {
  min-height: 0;
  padding: 0;
  background: #fff;
}

.product-category-page .machine-card-media {
  display: flex;
  height: 260px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
}

.product-category-page .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-category-page .machine-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 30px;
}

.product-category-page .machine-card h2 {
  color: var(--ink);
  font-size: 30px;
}

.product-category-page .machine-card > div > p:not(.machine-card-variants) {
  min-height: 72px;
}

.machine-card-variants {
  min-height: 0;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.35;
}

.machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-category-page .machine-more {
  display: block;
  margin: auto -24px 0;
  padding: 22px 24px 0;
  border-top: 2px solid #fff;
}

.product-category-page .machine-more::after {
  display: none;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero-media {
  background: var(--green);
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero-media {
  background: var(--green);
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero-media {
  background: var(--green);
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-irrigatori-con-recupero-a-motore .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-irrigatori-con-motopompa-incorporata .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-irrigatori-con-recupero-a-turbina .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card-variants {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-variants {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-variants {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-card-link:hover h2,
.prod-cat-irrigatori-con-recupero-a-motore .machine-card-link:focus-visible h2,
.prod-cat-irrigatori-con-recupero-a-motore .machine-card-link:hover .machine-more,
.prod-cat-irrigatori-con-recupero-a-motore .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-link:hover h2,
.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-link:focus-visible h2,
.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-link:hover .machine-more,
.prod-cat-irrigatori-con-motopompa-incorporata .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-link:hover h2,
.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-link:focus-visible h2,
.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-link:hover .machine-more,
.prod-cat-irrigatori-con-recupero-a-turbina .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-irrigatori-con-recupero-a-motore .machine-more::after {
  display: none;
}

.prod-cat-irrigatori-con-motopompa-incorporata .machine-more::after {
  display: none;
}

.prod-cat-irrigatori-con-recupero-a-turbina .machine-more::after {
  display: none;
}

.prod-cat-carrelli .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-carrelli .detail-hero-media {
  background: var(--green);
}

.prod-cat-carrelli .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-carrelli .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-carrelli .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-carrelli .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-carrelli .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-carrelli .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-carrelli .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-carrelli .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-carrelli .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-carrelli .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-carrelli .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-carrelli .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-carrelli .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-carrelli .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-carrelli .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-carrelli .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-carrelli .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-carrelli .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-carrelli .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-carrelli .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-carrelli .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-carrelli .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-carrelli .machine-card-link:hover h2,
.prod-cat-carrelli .machine-card-link:focus-visible h2,
.prod-cat-carrelli .machine-card-link:hover .machine-more,
.prod-cat-carrelli .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-carrelli .machine-more::after {
  display: none;
}

.prod-cat-centraline .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-centraline .detail-hero-media {
  background: var(--green);
}

.prod-cat-centraline .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-centraline .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-centraline .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-centraline .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-centraline .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-centraline .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-centraline .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-centraline .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-centraline .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-centraline .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-centraline .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-centraline .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-centraline .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-centraline .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-centraline .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-centraline .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-centraline .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-centraline .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-centraline .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-centraline .machine-card-variants {
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-centraline .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-centraline .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-centraline .machine-card-link:hover h2,
.prod-cat-centraline .machine-card-link:focus-visible h2,
.prod-cat-centraline .machine-card-link:hover .machine-more,
.prod-cat-centraline .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-centraline .machine-more::after {
  display: none;
}

.prod-cat-altri-optional .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-altri-optional .detail-hero-media {
  background: var(--green);
}

.prod-cat-altri-optional .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-altri-optional .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-altri-optional .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-altri-optional .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-altri-optional .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-altri-optional .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-altri-optional .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-altri-optional .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-altri-optional .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-altri-optional .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-altri-optional .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-altri-optional .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-altri-optional .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-altri-optional .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-altri-optional .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-altri-optional .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-altri-optional .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-altri-optional .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-altri-optional .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-altri-optional .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-altri-optional .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-altri-optional .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-altri-optional .machine-card-link:hover h2,
.prod-cat-altri-optional .machine-card-link:focus-visible h2,
.prod-cat-altri-optional .machine-card-link:hover .machine-more,
.prod-cat-altri-optional .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-altri-optional .machine-more::after {
  display: none;
}

.prod-cat-gruppi-motopompa .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-gruppi-motopompa .detail-hero-media {
  background: var(--green);
}

.prod-cat-gruppi-motopompa .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 48%, rgba(0, 132, 61, .92) 56%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .04) 0%, rgba(0, 132, 61, .3) 100%);
}

.prod-cat-gruppi-motopompa .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-gruppi-motopompa .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-gruppi-motopompa .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-gruppi-motopompa .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-gruppi-motopompa .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-gruppi-motopompa .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-gruppi-motopompa .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-gruppi-motopompa .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-gruppi-motopompa .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-gruppi-motopompa .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-gruppi-motopompa .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-gruppi-motopompa .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-gruppi-motopompa .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-gruppi-motopompa .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-gruppi-motopompa .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-gruppi-motopompa .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-gruppi-motopompa .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-gruppi-motopompa .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-gruppi-motopompa .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-gruppi-motopompa .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-gruppi-motopompa .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-gruppi-motopompa .machine-card-link:hover h2,
.prod-cat-gruppi-motopompa .machine-card-link:focus-visible h2,
.prod-cat-gruppi-motopompa .machine-card-link:hover .machine-more,
.prod-cat-gruppi-motopompa .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-rulli-compattatori-lisci .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-rulli-compattatori-lisci .detail-hero-media {
  background: var(--green);
}

.prod-cat-rulli-compattatori-lisci .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 56%, rgba(0, 132, 61, .98) 62%, rgba(0, 132, 61, .82) 74%, rgba(0, 132, 61, .46) 90%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .34) 100%);
}

.prod-cat-rulli-compattatori-lisci .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-rulli-compattatori-lisci .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-rulli-compattatori-lisci .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-rulli-compattatori-lisci .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-rulli-compattatori-lisci .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-rulli-compattatori-lisci .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-rulli-compattatori-lisci .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-rulli-compattatori-lisci .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-rulli-compattatori-lisci .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-rulli-compattatori-lisci .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-rulli-compattatori-lisci .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-rulli-compattatori-lisci .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-rulli-compattatori-lisci .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-rulli-compattatori-lisci .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-rulli-compattatori-lisci .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-rulli-compattatori-lisci .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-rulli-compattatori-lisci .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-rulli-compattatori-lisci .machine-card > div > p:not(.machine-card-variants) {
  min-height: 116px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rulli-compattatori-lisci .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rulli-compattatori-lisci .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-rulli-compattatori-lisci .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-rulli-compattatori-lisci .machine-card-link:hover h2,
.prod-cat-rulli-compattatori-lisci .machine-card-link:focus-visible h2,
.prod-cat-rulli-compattatori-lisci .machine-card-link:hover .machine-more,
.prod-cat-rulli-compattatori-lisci .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-rulli-compattatori-lisci .machine-more::after {
  display: none;
}

.prod-cat-rulli-compattatori-cambridge .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-rulli-compattatori-cambridge .detail-hero-media {
  background: var(--green);
}

.prod-cat-rulli-compattatori-cambridge .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 56%, rgba(0, 132, 61, .98) 62%, rgba(0, 132, 61, .82) 74%, rgba(0, 132, 61, .46) 90%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .34) 100%);
}

.prod-cat-rulli-compattatori-cambridge .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-rulli-compattatori-cambridge .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-rulli-compattatori-cambridge .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-rulli-compattatori-cambridge .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-rulli-compattatori-cambridge .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-rulli-compattatori-cambridge .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-rulli-compattatori-cambridge .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-rulli-compattatori-cambridge .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-rulli-compattatori-cambridge .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-rulli-compattatori-cambridge .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-rulli-compattatori-cambridge .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-rulli-compattatori-cambridge .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-rulli-compattatori-cambridge .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-rulli-compattatori-cambridge .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-rulli-compattatori-cambridge .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-rulli-compattatori-cambridge .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-rulli-compattatori-cambridge .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-rulli-compattatori-cambridge .machine-card > div > p:not(.machine-card-variants) {
  min-height: 116px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rulli-compattatori-cambridge .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rulli-compattatori-cambridge .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-rulli-compattatori-cambridge .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-rulli-compattatori-cambridge .machine-card-link:hover h2,
.prod-cat-rulli-compattatori-cambridge .machine-card-link:focus-visible h2,
.prod-cat-rulli-compattatori-cambridge .machine-card-link:hover .machine-more,
.prod-cat-rulli-compattatori-cambridge .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-rulli-compattatori-cambridge .machine-more::after {
  display: none;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-media {
  background: var(--green);
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 56%, rgba(0, 132, 61, .98) 62%, rgba(0, 132, 61, .82) 74%, rgba(0, 132, 61, .46) 90%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .34) 100%);
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-list-grid {
  grid-template-columns: 373px;
  gap: 86px 34px;
  max-width: 373px;
  justify-content: center;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card > div > p:not(.machine-card-variants) {
  min-height: 116px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-link:hover h2,
.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-link:focus-visible h2,
.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-link:hover .machine-more,
.prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-rimorchi-ribaltabili-pomodoro .machine-more::after {
  display: none;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero-media {
  background: var(--green);
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 48%, rgba(0, 132, 61, .92) 56%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .04) 0%, rgba(0, 132, 61, .3) 100%);
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-impianti-irrigazione-pivot-reinke .detail-copy-block a {
  display: none;
}

.prod-cat-impianti-sotterranei .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-impianti-sotterranei .detail-hero-media {
  background: var(--green);
}

.prod-cat-impianti-sotterranei .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 48%, rgba(0, 132, 61, .92) 56%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .04) 0%, rgba(0, 132, 61, .3) 100%);
}

.prod-cat-impianti-sotterranei .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-impianti-sotterranei .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-impianti-sotterranei .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-impianti-sotterranei .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-impianti-sotterranei .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-impianti-sotterranei .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-impianti-sotterranei .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-impianti-sotterranei .detail-copy-block a {
  display: none;
}

.prod-cat-interramento-liquami .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-interramento-liquami .detail-hero-media {
  background: var(--green);
}

.prod-cat-interramento-liquami .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 58%, rgba(0, 132, 61, .98) 64%, rgba(0, 132, 61, .82) 78%, rgba(0, 132, 61, .42) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .1) 0%, rgba(0, 132, 61, .38) 100%);
}

.prod-cat-interramento-liquami .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-interramento-liquami .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-interramento-liquami .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-interramento-liquami .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-interramento-liquami .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-interramento-liquami .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-interramento-liquami .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-interramento-liquami .detail-copy-block a {
  display: none;
}

.prod-cat-sistemi-ombelicali .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-sistemi-ombelicali .detail-hero-media {
  background: var(--green);
}

.prod-cat-sistemi-ombelicali .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.prod-cat-sistemi-ombelicali .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-sistemi-ombelicali .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-sistemi-ombelicali .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-sistemi-ombelicali .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-sistemi-ombelicali .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-sistemi-ombelicali .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-sistemi-ombelicali .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-sistemi-ombelicali .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-sistemi-ombelicali .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-sistemi-ombelicali .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-sistemi-ombelicali .machine-list-grid {
  grid-template-columns: repeat(2, 373px);
  gap: 86px 34px;
  max-width: 780px;
  justify-content: center;
}

.prod-cat-sistemi-ombelicali .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-sistemi-ombelicali .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-sistemi-ombelicali .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-sistemi-ombelicali .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-sistemi-ombelicali .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-sistemi-ombelicali .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-sistemi-ombelicali .machine-card > div > p:not(.machine-card-variants) {
  min-height: 124px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-sistemi-ombelicali .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-sistemi-ombelicali .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-sistemi-ombelicali .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-sistemi-ombelicali .machine-card-link:hover h2,
.prod-cat-sistemi-ombelicali .machine-card-link:focus-visible h2,
.prod-cat-sistemi-ombelicali .machine-card-link:hover .machine-more,
.prod-cat-sistemi-ombelicali .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-sistemi-ombelicali .machine-more::after {
  display: none;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero {
  min-height: 544px;
  padding: 29px 43px 70px;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero-media {
  background: var(--green);
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero-media::before {
  inset: 0;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 48%, rgba(0, 132, 61, .92) 56%, rgba(0, 132, 61, .2) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .04) 0%, rgba(0, 132, 61, .3) 100%);
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  min-width: 614px;
  height: 544px;
  object-fit: cover;
  object-position: center;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero-copy {
  max-width: 760px;
  margin: 139px 0 0 123px;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero h1 {
  max-width: 760px;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-hero p {
  max-width: 491px;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-body {
  min-height: 298px;
  padding: 79px 24px 42px;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-copy-block {
  max-width: 943px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-copy-block a {
  display: none;
  margin-top: 23px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.prod-cat-sistemi-irrigazione-a-goccia .detail-copy-block.has-overflow-link a {
  display: block;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-list-section {
  padding: 58px 24px 108px;
  background: #fff;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-list-grid {
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  max-width: 1187px;
  justify-content: center;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card {
  width: 373px;
  min-height: 566px;
  background: #efefef;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card-media {
  width: 343px;
  height: 229px;
  margin: 15px 15px 0;
  padding: 0;
  background: #fff;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card > div {
  min-height: 322px;
  padding: 39px 22px 0;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  transition: color .2s ease;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card > div > p:not(.machine-card-variants) {
  min-height: 93px;
  color: #4d4d4d;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card-variants {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card-variants strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-more {
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-card-link:hover h2,
.prod-cat-sistemi-irrigazione-a-goccia .machine-card-link:focus-visible h2,
.prod-cat-sistemi-irrigazione-a-goccia .machine-card-link:hover .machine-more,
.prod-cat-sistemi-irrigazione-a-goccia .machine-card-link:focus-visible .machine-more {
  color: #000;
}

.prod-cat-sistemi-irrigazione-a-goccia .machine-more::after {
  display: none;
}

.pivot-reinke-feature {
  padding: 58px 24px 108px;
  background: #fff;
}

.pivot-reinke-feature-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.pivot-reinke-feature img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.underground-systems-feature {
  padding: 20px 24px 116px;
  background: #fff;
}

.underground-systems-inner {
  max-width: 1187px;
  margin: 0 auto;
}

.underground-systems-lead {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.underground-systems-lead-copy .section-kicker,
.underground-advantages-head .section-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.underground-systems-lead-copy h2,
.underground-advantages-head h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.underground-systems-lead-copy p:not(.section-kicker) {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.underground-systems-media {
  display: block;
}

.underground-systems-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.underground-systems-map {
  min-height: 0;
}

.underground-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.underground-process-list li {
  min-height: 218px;
  padding: 26px 24px 24px;
  background: #efefef;
}

.underground-process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.underground-process-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.underground-process-list p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.underground-advantages {
  margin-top: 86px;
}

.underground-advantages-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.underground-advantages-head h2 {
  margin-bottom: 0;
}

.underground-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.underground-advantages-grid article {
  min-height: 232px;
  padding: 30px 24px 28px;
  border-top: 5px solid var(--green);
  background: #efefef;
}

.underground-advantages-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.underground-advantages-grid p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.liquid-injection-feature {
  padding: 20px 24px 116px;
  background: #fff;
}

.liquid-injection-inner {
  max-width: 1187px;
  margin: 0 auto;
}

.liquid-injection-lead {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.liquid-injection-lead-copy .section-kicker,
.liquid-process-head .section-kicker,
.liquid-ripper-copy .section-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.liquid-injection-lead-copy h2,
.liquid-process-head h2,
.liquid-ripper-copy h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.liquid-injection-lead-copy p:not(.section-kicker),
.liquid-ripper-copy p:not(.section-kicker) {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.54;
}

.liquid-injection-media {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
}

.liquid-injection-media img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.liquid-process {
  margin-top: 78px;
}

.liquid-process-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.liquid-process-head h2 {
  margin-bottom: 0;
}

.liquid-process-figure {
  margin: 0 0 46px;
  background: #fff;
}

.liquid-process-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.liquid-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.liquid-process-list li {
  min-height: 236px;
  padding: 26px 24px 24px;
  background: #efefef;
}

.liquid-process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.liquid-process-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.liquid-process-list p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.liquid-ripper-panel {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 78px;
  padding: 42px;
  background: #efefef;
}

.liquid-ripper-copy h2 {
  margin-bottom: 24px;
}

.liquid-ripper-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.liquid-ripper-features article {
  min-height: 198px;
  padding: 28px 22px 24px;
  border-top: 5px solid var(--green);
  background: #fff;
}

.liquid-ripper-features strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.liquid-ripper-features p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.prod-cat-gruppi-motopompa .machine-more::after {
  display: none;
}

.irrigatori-figma-page {
  background: #fff;
}

.irrigatori-figma-hero {
  min-height: 544px;
  padding: 29px 43px 58px;
  background: #007a3e;
}

.irrigatori-figma-hero .detail-hero-media::before {
  display: none;
}

.irrigatori-figma-hero .detail-hero-media {
  background: #007a3e;
}

.irrigatori-figma-hero .detail-hero-media::after {
  position: absolute;
  top: 0;
  right: 42px;
  bottom: 0;
  z-index: 1;
  width: 577px;
  content: "";
  background: url("../images/irrigatori-hero-fade.svg") left top / 100% 100% no-repeat;
}

.irrigatori-figma-hero .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 619px;
  height: 544px;
  object-fit: cover;
  content: url("../images/irrigatori-hero-photo.svg");
}

.irrigatori-figma-hero .breadcrumb a,
.irrigatori-figma-hero .breadcrumb strong {
  color: #fff;
}

.irrigatori-figma-hero .detail-claim {
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  width: 77px;
  font-size: 24px;
  font-weight: 800;
  line-height: .92;
  text-align: right;
}

.irrigatori-figma-hero .detail-hero-copy {
  max-width: 610px;
  margin: 189px 0 0 123px;
}

.irrigatori-figma-hero .detail-hero-copy h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.irrigatori-page .irrigatori-figma-hero .detail-hero-copy {
  max-width: 720px;
}

.irrigatori-page .irrigatori-figma-hero .detail-hero-copy h1 {
  white-space: nowrap;
}

.irrigatori-page .irrigatori-figma-hero .detail-hero-copy p {
  max-width: 720px;
  white-space: nowrap;
}

.irrigatori-figma-hero .detail-hero-copy p {
  max-width: 491px;
  margin-top: 35px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
}

.irrigatori-figma-intro {
  padding: 83px 24px 102px;
  background: #fff;
}

.irrigatori-figma-intro p {
  max-width: 915px;
  margin: 0 auto;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.54;
}

.liquami-page .liquami-figma-intro + .irrigatori-figma-intro,
.oltre-irrigazione-page .oltre-irrigazione-figma-intro + .irrigatori-figma-intro {
  display: none;
}

.irrigatori-solutions {
  padding: 0 clamp(40px, 8vw, 142px) 118px;
  background: #fff;
}

.irrigatori-solutions-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.irrigatori-solutions .section-kicker {
  margin-bottom: 36px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.irrigatori-solution-row {
  display: grid;
  grid-template-columns: 453px minmax(0, 1fr);
  gap: 74px;
  align-items: center;
  padding: 0 0 76px;
  border-bottom: 2px solid #ededed;
}

.irrigatori-solution-row + .irrigatori-solution-row {
  padding-top: 66px;
}

.irrigatori-solution-media {
  height: 301px;
  overflow: hidden;
  background: transparent;
}

.irrigatori-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.irrigatori-solution-copy h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--green);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.07;
}

.irrigatori-solution-copy p {
  max-width: 669px;
  margin: 0 0 34px;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.irrigatori-solution-copy .button {
  min-width: 197px;
  min-height: 50px;
  font-size: 16px;
  font-weight: 800;
}

.idro-product-strip {
  position: relative;
  min-height: 149px;
  padding: 29px clamp(40px, 9vw, 164px);
  color: #fff;
  overflow: hidden;
  background: var(--green);
}

.idro-product-strip::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(620px, 39.5vw, 820px);
  content: "";
  background:
    linear-gradient(90deg, var(--green) 0%, rgba(0, 126, 60, .92) 18%, rgba(0, 126, 60, .62) 44%, rgba(0, 126, 60, .22) 74%, rgba(0, 126, 60, .08) 100%),
    url("../images/water-field.jpg") center / cover no-repeat;
  pointer-events: none;
}

.idro-product-strip .breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1190px;
  margin: 0 auto;
  color: #fff;
}

.idro-product-strip .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.idro-product-strip .detail-claim {
  top: 29px;
  right: clamp(60px, 8vw, 164px);
  z-index: 1;
  width: 77px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: .92;
  text-align: right;
}

.idro-product-showcase {
  --idro-product-gallery-stage-height: 470px;
  --idro-product-gallery-thumbs-gap: 19px;
  --idro-product-gallery-thumbs-height: 87px;
  --idro-product-showcase-height: calc(var(--idro-product-gallery-stage-height) + var(--idro-product-gallery-thumbs-gap) + var(--idro-product-gallery-thumbs-height));
  display: grid;
  width: min(1188px, calc(100% - 48px));
  grid-template-columns: 456px minmax(0, 702px);
  gap: 30px;
  align-items: stretch;
  margin: 52px auto 0;
  padding: 0 0 72px;
  background: #fff;
}

.idro-product-card {
  display: flex;
  box-sizing: border-box;
  height: var(--idro-product-showcase-height);
  min-height: 0;
  flex-direction: column;
  background: #f0f0f0;
}

.idro-product-card-main {
  min-height: 0;
  flex: 1 1 auto;
  padding: 36px 30px 42px;
}

.idro-product-card h1 {
  margin: 0 0 28px;
  color: #4a4a4a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}

.idro-product-summary {
  max-width: 360px;
  margin: 0 0 36px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.idro-product-variant-label {
  display: flex;
  gap: 13px;
  align-items: baseline;
  margin-bottom: 14px;
}

.idro-product-variant-label strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.idro-product-variant-label span {
  color: #4b4b4b;
  font-size: 13px;
}

.idro-product-variant-list {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.idro-product-compatibility {
  margin-top: 28px;
}

.idro-product-compatibility strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.idro-product-compatibility ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.25;
  list-style: none;
}

.idro-product-compatibility li::before {
  content: "- ";
}

.idro-product-card-actions {
  flex: 0 0 auto;
  padding: 22px 30px 24px;
  color: #fff;
  text-align: center;
  background: var(--green);
}

.idro-product-card-actions .button {
  min-width: 232px;
  min-height: 46px;
  padding: 12px 28px;
  border-color: #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  background: transparent;
}

.idro-product-card-actions .button:hover {
  color: var(--green);
  background: #fff;
}

.idro-product-secondary-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.idro-product-action-separator {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.idro-product-brochure-link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.idro-product-brochure-link:hover,
.idro-product-brochure-link:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.idro-product-gallery {
  display: flex;
  height: var(--idro-product-showcase-height);
  min-height: 0;
  min-width: 0;
  flex-direction: column;
}

.idro-product-gallery-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: var(--idro-product-gallery-stage-height);
  min-height: 0;
  flex: 0 0 var(--idro-product-gallery-stage-height);
  place-items: center;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.idro-product-gallery-stage > img[data-gallery-main] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.idro-product-gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 29px;
  height: 88px;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: default;
  transform: translateY(-50%);
}

.idro-product-gallery-arrow::before {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.idro-product-gallery-prev {
  left: 0;
}

.idro-product-gallery-prev::before {
  transform: rotate(-135deg);
}

.idro-product-gallery-next {
  right: 0;
}

.idro-product-gallery-next::before {
  transform: rotate(45deg);
}

.idro-product-gallery-thumbs {
  display: flex;
  flex: 0 0 var(--idro-product-gallery-thumbs-height);
  gap: 13px;
  min-height: var(--idro-product-gallery-thumbs-height);
  margin-top: var(--idro-product-gallery-thumbs-gap);
}

.idro-product-gallery-thumbs button {
  width: 131px;
  height: var(--idro-product-gallery-thumbs-height);
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.idro-product-gallery-thumbs button.is-active {
  outline: 3px solid transparent;
}

.idro-product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.idro-product-description {
  max-width: 872px;
  margin: 0 auto;
  padding: 14px 0 42px;
  color: #4a4a4a;
}

.idro-product-description h2 {
  margin: 0 0 19px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.idro-product-description h2:not(:first-child) {
  margin-top: 42px;
}

.idro-product-description p,
.idro-product-description li {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.idro-product-description ul {
  margin: 0;
  padding-left: 22px;
}

.idro-product-description li::marker {
  color: var(--green);
}

.idro-product-request {
  max-width: 872px;
  margin: 0 auto 96px;
  text-align: center;
}

.idro-product-request .button {
  min-width: 232px;
  min-height: 50px;
  font-size: 16px;
  font-weight: 700;
}

.import-product-page {
  background: #fff;
}

.import-product-strip {
  position: relative;
  min-height: 149px;
  padding: 29px clamp(40px, 9vw, 164px);
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.import-product-strip::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(620px, 39.5vw, 820px);
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green) 0%, rgba(0, 126, 60, .92) 18%, rgba(0, 126, 60, .62) 44%, rgba(0, 126, 60, .22) 74%, rgba(0, 126, 60, .08) 100%),
    url("../images/water-field.jpg") center / cover no-repeat;
}

.import-product-strip .breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1188px;
  margin: 0 auto;
  color: #fff;
}

.import-product-strip .breadcrumb a,
.import-product-strip .breadcrumb strong {
  color: #fff;
}

.import-product-claim {
  position: absolute;
  top: 29px;
  right: clamp(60px, 8vw, 164px);
  z-index: 1;
  width: 77px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: .92;
  text-align: right;
  letter-spacing: 0;
}

.import-product-showcase {
  --import-product-card-height: 576px;
  --import-product-gallery-stage-height: 470px;
  --import-product-showcase-height: var(--import-product-card-height);
  display: grid;
  width: min(1188px, calc(100% - 48px));
  grid-template-columns: 457px minmax(0, 702px);
  gap: 29px;
  align-items: stretch;
  margin: 52px auto 0;
  padding: 0 0 72px;
  background: #fff;
}

.import-product-card {
  display: flex;
  box-sizing: border-box;
  height: var(--import-product-showcase-height);
  min-height: 0;
  flex-direction: column;
  background: #f1f1f1;
}

.import-product-card-main {
  min-height: 0;
  flex: 1 1 auto;
  padding: 36px 40px 28px;
}

.import-product-card h1 {
  margin: 0 0 24px;
  color: #1f1f1f;
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.import-product-summary {
  margin: 0 0 28px;
  color: #1f1f1f;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.import-product-facts {
  margin: 0 0 24px;
}

.import-product-facts h2 {
  margin: 0 0 11px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.import-product-facts ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
  list-style: none;
}

.import-product-card-actions {
  flex: 0 0 auto;
  padding: 39px 40px 35px;
  color: #fff;
  text-align: center;
  background: var(--green);
}

.import-product-card-actions .button {
  width: 238px;
  max-width: 100%;
  min-width: 238px;
  min-height: 50px;
  padding: 13px 27px;
  border-color: #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  background: transparent;
}

.import-product-card-actions .button:hover,
.import-product-card-actions .button:focus-visible {
  color: var(--green);
  background: #fff;
}

.import-product-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.import-product-secondary-actions span {
  font-weight: 400;
}

.import-product-secondary-actions a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.import-product-secondary-actions a:hover,
.import-product-secondary-actions a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.import-product-gallery {
  display: flex;
  height: auto;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  align-self: start;
}

.import-product-gallery-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: var(--import-product-gallery-stage-height);
  min-height: 0;
  flex: 0 0 var(--import-product-gallery-stage-height);
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.import-product-gallery-image-button {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.import-product-gallery-image-button img[data-gallery-main] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.import-product-gallery-thumbs {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-top: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.import-product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.import-product-gallery-thumbs button {
  width: 130px;
  height: 87px;
  flex: 0 0 130px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.import-product-gallery-thumbs button:hover,
.import-product-gallery-thumbs button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: -3px;
}

.import-product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.import-product-detail {
  width: min(905px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 0;
  color: #1f1f1f;
}

.import-product-detail-copy {
  padding-top: 0;
}

.import-product-detail-copy section + section {
  margin-top: 72px;
  padding-top: 0;
}

.import-product-detail h2 {
  margin: 0 0 29px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.import-product-detail p,
.import-product-detail li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.import-product-detail p {
  margin: 0 0 20px;
}

.import-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.import-product-feature-grid li {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 3px 0 0 36px;
}

.import-product-feature-grid li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.import-product-seller-wrap {
  width: min(1188px, calc(100% - 48px));
  margin: 0 auto 96px;
}

.import-product-seller {
  display: grid;
  width: 457px;
  max-width: 100%;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 154px 0 0;
  padding: 0 0 39px;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
}

.import-product-seller-icon {
  display: block;
  width: 46px;
  height: 46px;
}

.import-product-seller h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.import-product-seller p {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.import-product-seller-name {
  font-weight: 700 !important;
}

.import-product-seller a {
  color: #1f1f1f;
  font-weight: 400;
  text-decoration: none;
}

.import-product-seller a:hover,
.import-product-seller a:focus-visible {
  color: var(--green);
  text-decoration: underline;
}

.import-product-seller .import-product-seller-email {
  font-weight: 700;
}

@media (max-width: 1180px) {
  .import-product-showcase,
  .import-product-seller-wrap {
    width: min(960px, calc(100% - 48px));
  }

  .import-product-detail {
    width: min(905px, calc(100% - 48px));
  }

  .import-product-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .import-product-card,
  .import-product-gallery {
    height: auto;
  }

  .import-product-card {
    min-height: 576px;
  }

  .import-product-seller {
    margin-top: 96px;
  }
}

@media (max-width: 760px) {
  .import-product-strip {
    min-height: 132px;
    padding: 24px;
  }

  .import-product-strip::before {
    width: 78vw;
  }

  .import-product-strip .breadcrumb {
    max-width: calc(100% - 102px);
  }

  .import-product-claim {
    top: 24px;
    right: 24px;
  }

  .import-product-showcase,
  .import-product-detail,
  .import-product-seller-wrap {
    width: calc(100% - 32px);
  }

  .import-product-showcase {
    --import-product-gallery-stage-height: min(470px, 66vw);
    margin-top: 36px;
    padding-bottom: 48px;
  }

  .import-product-card {
    min-height: 0;
  }

  .import-product-card-main {
    padding: 30px 28px 30px;
  }

  .import-product-card h1 {
    font-size: 36px;
  }

  .import-product-summary {
    font-size: 22px;
  }

  .import-product-card-actions {
    padding: 32px 28px 30px;
  }

  .import-product-gallery,
  .import-product-gallery-stage {
    height: var(--import-product-gallery-stage-height);
  }

  .import-product-gallery {
    height: auto;
  }

  .import-product-gallery-thumbs {
    margin-top: 24px;
  }

  .import-product-detail {
    margin-bottom: 0;
  }

  .import-product-detail-copy {
    padding-top: 0;
  }

  .import-product-detail-copy section + section {
    margin-top: 48px;
    padding-top: 0;
  }

  .import-product-feature-grid {
    grid-template-columns: 1fr;
  }

  .import-product-seller {
    grid-template-columns: 40px minmax(0, 1fr);
    margin-top: 72px;
    padding-bottom: 32px;
  }

  .import-product-seller-icon {
    width: 40px;
    height: 40px;
  }
}

.agri-division-page {
  background: #fff;
}

.agri-division-hero {
  position: relative;
  min-height: 754px;
  overflow: hidden;
  padding: 29px 43px 68px;
  color: #fff;
  background: var(--green);
}

.agri-division-hero::before,
.agri-division-hero::after {
  content: "";
  display: none;
}

.agri-division-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(1100px, 58vw);
  z-index: 0;
  background-image: url("../images/agri-division-hero-figma-art.png?v=20260713-3");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: min(52vw, 763px) auto;
}

.agri-division-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green) 0%, rgba(0, 132, 61, .82) 10%, rgba(0, 132, 61, .35) 22%, rgba(0, 132, 61, 0) 38%),
    linear-gradient(180deg, rgba(0, 132, 61, 0) 30%, rgba(0, 132, 61, .28) 48%, rgba(0, 132, 61, .78) 66%, var(--green) 86%);
}

.agri-division-hero .breadcrumb,
.agri-division-claim,
.agri-division-hero-copy,
.agri-division-intro {
  position: relative;
  z-index: 2;
}

.agri-division-hero .breadcrumb a,
.agri-division-hero .breadcrumb strong {
  color: #fff;
}

.agri-division-claim {
  position: absolute;
  top: 43px;
  right: clamp(150px, 10vw, 214px);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: .98;
  text-align: left;
}

.agri-division-hero-copy {
  max-width: 790px;
  margin: 196px 0 0 123px;
}

.agri-division-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.agri-division-hero-copy > p:not(.agri-division-kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.agri-division-intro {
  position: relative;
  z-index: 2;
  max-width: 1195px;
  margin: 145px auto 0;
  padding: 0;
  background: transparent;
}

.agri-division-intro p {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.agri-brand-section {
  padding: 72px 24px 64px;
  background: #fff;
}

.agri-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 31px;
  max-width: 1195px;
  margin: 0 auto;
}

.agri-brand-card {
  display: flex;
  min-height: 512px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: #efefef;
}

.agri-brand-card-logo {
  display: block;
  margin: 17px 16px 0;
  padding: 0;
  background: transparent;
}

.agri-brand-card-logo img {
  display: block;
  width: 343px;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.agri-brand-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 16px 0;
}

.agri-brand-card-copy strong {
  margin: 0 0 21px;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
}

.agri-brand-card-copy > span {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
}

.agri-brand-card-copy em {
  display: block;
  width: calc(100% + 32px);
  margin: auto -16px 0;
  padding: 24px 16px;
  color: var(--green);
  border-top: 2px solid #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.agri-brand-card:hover .agri-brand-card-copy em,
.agri-brand-card:focus-visible .agri-brand-card-copy em {
  color: #1f1f1f;
  background: transparent;
}

.agri-brand-card:hover .agri-brand-card-copy strong,
.agri-brand-card:focus-visible .agri-brand-card-copy strong {
  color: var(--ink);
}

.agri-brand-pagination {
  max-width: 1190px;
  margin-right: auto;
  margin-left: auto;
}

.agri-other-brands {
  padding: 56px 24px 96px;
  background: #fff;
}

.agri-other-brands h2 {
  max-width: 1195px;
  margin: 0 auto 42px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
}

.agri-logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 31px;
  max-width: 1195px;
  margin: 0 auto;
}

.agri-logo-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.agri-logo-item img {
  display: block;
  width: 213px;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.idro-division-page {
  background: #fff;
}

.idro-division-hero {
  position: relative;
  min-height: 754px;
  overflow: hidden;
  padding: 29px 43px 68px;
  color: #fff;
  background: var(--green);
}

.idro-division-hero::before,
.idro-division-hero::after {
  content: "";
  display: none;
}

.idro-division-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(1100px, 58vw);
  z-index: 0;
  background-image: url("https://casella.it/wp-content/uploads/2026/06/idro-division-hero-figma-art.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: min(52vw, 763px) auto;
}

.idro-division-hero .breadcrumb,
.idro-division-claim,
.idro-division-hero-copy,
.idro-division-intro {
  position: relative;
  z-index: 2;
}

.idro-division-hero .breadcrumb a,
.idro-division-hero .breadcrumb strong {
  color: #fff;
}

.idro-division-claim {
  display: none;
}

.idro-division-hero-copy {
  max-width: 640px;
  margin: 196px 0 0 123px;
}

.idro-division-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.idro-division-hero-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.idro-division-intro {
  max-width: 1187px;
  margin: 145px auto 0;
}

.idro-division-intro p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.idro-division-overview,
.idro-division-category-section {
  padding: 86px clamp(40px, 9vw, 160px) 92px;
  background: #fff;
}

.idro-category-box-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
}

.idro-category-box {
  min-height: 96px;
  background: #fff;
}

.idro-category-box summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: start;
  min-height: 96px;
  padding: 26px 22px 22px;
  cursor: pointer;
  list-style: none;
}

.idro-category-box summary::-webkit-details-marker {
  display: none;
}

.idro-category-box summary span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.idro-category-box summary i {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.idro-category-box summary i::before,
.idro-category-box summary i::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--green);
}

.idro-category-box summary i::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.idro-category-box[open] summary i::after {
  transform: rotate(0);
}

.idro-category-box-body {
  padding: 0 22px 28px;
}

.idro-category-box-body p {
  margin: 0 0 22px;
  color: #4d4d4d;
  font-size: 17px;
  line-height: 1.35;
}

.idro-category-box-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idro-category-box-body a,
.idro-category-box-body span {
  color: #222;
  font-size: 17px;
  line-height: 1.3;
  text-decoration: none;
}

.idro-category-box-body a {
  color: var(--green);
  font-weight: 800;
}

.idro-category-box-body a:hover {
  text-decoration: underline;
}

.idro-division-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 30px;
  max-width: 1190px;
  margin: 0 auto;
}

.idro-division-card {
  display: grid;
  min-height: 566px;
  grid-template-rows: 244px minmax(252px, 1fr);
  color: inherit;
  background: #efefef;
  text-decoration: none;
}

.idro-division-card-media {
  display: block;
  height: 244px;
  overflow: hidden;
  padding: 14px;
  background: #efefef;
}

.idro-division-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.idro-division-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 16px 0;
}

.idro-division-card-copy strong {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.idro-division-card-copy > span {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.38;
}

.idro-division-card-copy em {
  display: block;
  width: calc(100% + 32px);
  max-width: 100%;
  margin: auto -16px 0;
  padding: 21px 16px 26px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.idro-division-card-copy em::after {
  display: none;
}

.idro-division-card[href]:hover .idro-division-card-copy strong,
.idro-division-card[href]:focus-visible .idro-division-card-copy strong,
.idro-division-card[href]:hover .idro-division-card-copy em,
.idro-division-card[href]:focus-visible .idro-division-card-copy em {
  color: var(--ink);
}

.idro-division-card.is-disabled {
  color: inherit;
}

.idro-division-card.is-disabled .idro-division-card-copy em {
  opacity: 1;
}

.idro-division-story-section {
  padding: 52px clamp(40px, 9vw, 160px) 132px;
  background: #fff;
}

.idro-division-story-grid {
  display: grid;
  gap: 118px;
  max-width: 1190px;
  margin: 0 auto;
}

.idro-division-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.idro-division-story-row:nth-child(even) .idro-division-story-copy {
  order: 2;
}

.idro-division-story-row:nth-child(even) .idro-division-story-media {
  order: 1;
}

.idro-division-story-copy h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
}

.idro-division-story-copy p {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.idro-division-story-media {
  height: 360px;
  overflow: hidden;
  background: #efefef;
}

.idro-division-story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-main {
  padding: 80px clamp(24px, 8vw, 160px);
}

.page-main-has-hero {
  padding: 0;
}

.page-main-has-hero .content-page {
  padding-block: 80px;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
}

.content-page-wide {
  max-width: 1120px;
  padding: 74px clamp(24px, 6vw, 96px);
  background: #fff;
}

.page-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-page h1 {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
}

.page-content {
  font-size: 21px;
  line-height: 1.5;
}

.page-content h2 {
  margin: 54px 0 18px;
  color: var(--green);
  font-size: 30px;
}

.page-content ul {
  padding-left: 24px;
}

.page-main.legal-page {
  padding: 0;
  background: #fff;
}

.supporto-hero.legal-hero {
  min-height: 370px;
}

.supporto-hero.legal-hero .supporto-hero-inner {
  min-height: 370px;
}

.legal-hero .supporto-hero-copy {
  margin-top: 150px;
}

.legal-hero h1 {
  margin-bottom: 0;
}

.legal-content {
  width: min(946px, calc(100% - 48px));
  max-width: none;
  padding: 94px 0 132px;
}

.legal-content.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.legal-content .page-content {
  color: #474747;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.legal-content .page-content h2 {
  margin: 54px 0 18px;
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.legal-content .page-content h2:first-child {
  margin-top: 0;
}

.legal-content .page-content h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.legal-content .page-content p {
  margin: 0 0 28px;
}

.legal-content .page-content ul {
  margin: 24px 0 32px;
  padding-left: 24px;
}

.legal-content .page-content li + li {
  margin-top: 12px;
}

.legal-content .page-content a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 520px) {
  .legal-content {
    width: calc(100% - 32px);
    padding: 42px 0 76px;
  }

  .legal-content .page-content {
    font-size: 16px;
    line-height: 1.55;
  }

  .legal-content .page-content h2 {
    margin: 38px 0 16px;
    font-size: 26px;
  }

  .legal-content .page-content h2:first-child {
    margin-top: 0;
  }

  .legal-content .page-content h3 {
    font-size: 19px;
  }
}

.page-visual-hero {
  min-height: 560px;
}

.page-visual-hero .detail-hero-media::before {
  background: linear-gradient(90deg, rgba(0, 132, 61, .94) 0%, rgba(0, 132, 61, .78) 43%, rgba(0, 132, 61, .18) 100%);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 46px 0;
}

.company-stats strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.company-stats span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.25;
}

.company-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 34px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.company-timeline li {
  padding: 22px 0 22px 26px;
  border-left: 3px solid var(--green);
}

.company-timeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 24px;
}

.azienda-page {
  background: #fff;
}

.azienda-hero {
  min-height: 620px;
}

.azienda-hero .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(0, 132, 61, .96) 0%, rgba(0, 132, 61, .82) 45%, rgba(0, 132, 61, .28) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08), rgba(0, 132, 61, .5));
}

.azienda-hero .detail-hero-media img {
  filter: blur(4px);
  transform: scale(1.04);
}

.azienda-eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.azienda-hero .azienda-eyebrow {
  color: #fff;
}

.azienda-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 130px);
  padding: 92px clamp(24px, 8vw, 160px);
  background: #fff;
}

.azienda-intro > div {
  max-width: 690px;
}

.azienda-intro h2,
.azienda-section-head h2,
.azienda-story-copy h2,
.azienda-green-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.02;
}

.azienda-intro-copy {
  align-self: end;
  font-size: 22px;
  line-height: 1.48;
}

.azienda-intro-copy p {
  margin: 0 0 26px;
}

.azienda-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 5vw, 86px);
  padding: 10px clamp(24px, 8vw, 160px) 110px;
  color: #fff;
  background: linear-gradient(180deg, var(--green), #454545 86%);
}

.azienda-stats article:nth-child(1) {
  margin-top: 0;
}

.azienda-stats article:nth-child(2) {
  margin-top: 44px;
}

.azienda-stats article:nth-child(3) {
  margin-top: 88px;
}

.azienda-stats article:nth-child(4) {
  margin-top: 132px;
}

.azienda-stats strong {
  display: block;
  font-size: clamp(66px, 7vw, 116px);
  line-height: .92;
}

.azienda-stats p {
  max-width: 310px;
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.azienda-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: #efefef;
}

.azienda-story-media {
  min-height: 620px;
}

.azienda-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.azienda-story-copy {
  align-self: center;
  padding: 84px clamp(32px, 7vw, 118px);
}

.azienda-story-copy p:not(.section-kicker),
.azienda-green-copy p {
  margin: 28px 0 0;
  font-size: 21px;
  line-height: 1.48;
}

.azienda-divisions {
  padding: 92px clamp(24px, 8vw, 160px) 108px;
  color: #fff;
  background: #4b4b4a;
}

.azienda-section-head {
  max-width: var(--max);
  margin: 0 auto 62px;
}

.azienda-divisions .section-kicker,
.azienda-divisions .azienda-section-head h2,
.azienda-green .section-kicker,
.azienda-green h2,
.azienda-green p {
  color: #fff;
}

.azienda-division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
}

.azienda-division-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  color: var(--ink);
  background: #f5f5f5;
}

.azienda-division-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.azienda-division-card > div {
  display: flex;
  flex-direction: column;
  padding: 34px 28px 36px;
}

.azienda-division-card h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.05;
}

.azienda-division-card p {
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.36;
}

.azienda-division-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.azienda-division-card-green {
  color: #fff;
  background: var(--green);
}

.azienda-division-card-green h3 {
  color: #fff;
}

.azienda-green {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(42px, 8vw, 116px);
  padding: 98px clamp(24px, 8vw, 160px);
  background:
    linear-gradient(90deg, rgba(0, 132, 61, .97), rgba(0, 132, 61, .86)),
    url("../images/old-casella-sede-2.jpg") center / cover no-repeat;
}

.azienda-green-copy {
  max-width: 760px;
}

.azienda-green-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  align-self: center;
}

.azienda-green-list span {
  display: flex;
  min-height: 116px;
  align-items: end;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  font-size: 20px;
  font-weight: 800;
}

.azienda-timeline {
  padding: 92px clamp(24px, 8vw, 160px) 112px;
  background: #efefef;
}

.azienda-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: azienda-timeline;
}

.azienda-timeline-grid li {
  position: relative;
  min-height: 250px;
  padding: 32px 28px 28px;
  background: #fff;
}

.azienda-timeline-grid li::before {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: #efefef;
  counter-increment: azienda-timeline;
  content: counter(azienda-timeline, decimal-leading-zero);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
}

.azienda-timeline-grid strong {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 38px;
  line-height: 1;
}

.azienda-timeline-grid span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 330px;
  font-size: 19px;
  line-height: 1.38;
}

.azienda-figma {
  background: #fff;
}

.azienda-figma-hero {
  padding: 0;
}

.azienda-figma-hero .breadcrumb {
  gap: 6px;
  font-size: 15px;
}

.azienda-figma-hero .breadcrumb a,
.azienda-figma-hero .breadcrumb strong {
  color: #fff;
}

.azienda-figma-content {
  width: min(946px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 94px 0 132px;
  color: var(--ink);
}

.azienda-figma-content p,
.azienda-figma-content li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.azienda-figma-content p {
  margin: 0 0 28px;
}

.azienda-figma-content ul {
  margin: 24px 0 32px;
  padding-left: 24px;
}

.azienda-figma-content li + li {
  margin-top: 12px;
}

.azienda-figma-text-block {
  max-width: 829px;
}

.azienda-machines .azienda-text-main {
  max-width: 840px;
}

.azienda-machines .azienda-brand-list {
  max-width: 844px;
}

.azienda-machines .azienda-wide-copy {
  max-width: 886px;
}

.azienda-green-section .azienda-text-main {
  max-width: 935px;
}

.azienda-green-section .azienda-green-intro {
  max-width: 916px;
}

.azienda-green-section .azienda-green-bullets {
  max-width: 862px;
}

.azienda-world-section .azienda-text-main {
  max-width: 821px;
}

.azienda-brand-list strong,
.azienda-green-bullets strong {
  font-weight: 700;
}

.azienda-figma-photo {
  margin: 76px 0 88px;
}

.azienda-figma-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.azienda-figma-section {
  margin-top: 78px;
}

.azienda-figma-section h2,
.azienda-history h2 {
  margin: 0 0 31px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.06;
}

.azienda-machines h2 {
  max-width: 946px;
}

.azienda-green-section h2 {
  max-width: 946px;
}

.azienda-world-section h2 {
  max-width: 900px;
}

.azienda-figma-section h3 {
  margin: 56px 0 18px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.azienda-world-map {
  width: 100%;
  margin: 84px auto 102px;
}

.azienda-world-map img {
  display: block;
  width: 100%;
  height: auto;
}

.supporto-figma {
  background: #fff;
}

.supporto-hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  color: #fff;
  background: #007A3E;
}

.supporto-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(39.6vw, 599px);
  height: 100%;
  background: linear-gradient(90deg, #007A3E 0%, rgba(0, 122, 62, 0) 100%);
  pointer-events: none;
}

.supporto-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 544px;
  margin: 0 auto;
  padding: 31px clamp(28px, 3.7vw, 56px) 72px;
}

.supporto-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: min(40.94vw, 619px);
  height: 100%;
}

.supporto-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.supporto-hero-watermark {
  position: absolute;
  top: 38px;
  right: clamp(88px, 10vw, 205px);
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: .92;
  text-align: right;
}

.supporto-hero-watermark strong {
  font-weight: 800;
}

.supporto-hero .breadcrumb {
  gap: 6px;
  font-size: 14px;
}

.supporto-hero .breadcrumb a,
.supporto-hero .breadcrumb span,
.supporto-hero .breadcrumb strong {
  color: #fff;
}

.supporto-hero-copy {
  max-width: 820px;
  margin-top: 178px;
  margin-left: clamp(72px, 7vw, 164px);
}

.supporto-hero h1 {
  max-width: none;
  margin: 0 0 28px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.supporto-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.34;
}

.supporto-hero.azienda-figma-hero {
  min-height: 544px;
  padding: 0;
}

.supporto-hero.azienda-figma-hero .supporto-hero-copy {
  max-width: 820px;
}

.supporto-hero.azienda-figma-hero p {
  max-width: 580px;
}

.supporto-content {
  width: min(962px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 92px 0 132px;
}

.supporto-intro {
  width: min(931px, 100%);
  margin-bottom: 128px;
}

.supporto-intro p {
  margin: 0;
  color: #454744;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.supporto-intro p + p {
  margin-top: 32px;
}

.supporto-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 86px;
  border-top: 0;
}

.supporto-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
  padding: 0 0 78px;
  border-bottom: 2px solid #f1f1f1;
  text-align: center;
}

.supporto-service.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.supporto-service-icon {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 116px;
  margin-bottom: 44px;
}

.supporto-service-icon img {
  display: block;
  width: auto;
  height: auto;
}

.supporto-service:nth-child(1) .supporto-service-icon img {
  max-width: 79px;
  max-height: 80px;
}

.supporto-service:nth-child(2) .supporto-service-icon img {
  max-width: 128px;
  max-height: 81px;
}

.supporto-service:nth-child(3) .supporto-service-icon img {
  max-width: 86px;
  max-height: 86px;
}

.supporto-service:nth-child(4) .supporto-service-icon img {
  max-width: 71px;
  max-height: 88px;
}

.supporto-service:nth-child(5) .supporto-service-icon img {
  max-width: 81px;
  max-height: 77px;
}

.supporto-service:nth-child(6) .supporto-service-icon img {
  max-width: 88px;
  max-height: 86px;
}

.supporto-service-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.supporto-service h2 {
  max-width: 440px;
  margin: 0;
  color: #474746;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.supporto-service-link {
  display: block;
  width: 208px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
}

.supporto-hero.supporto-detail-hero {
  min-height: 370px;
}

.supporto-hero.supporto-detail-hero .supporto-hero-inner {
  min-height: 370px;
}

.supporto-detail-hero .supporto-hero-watermark {
  top: 34px;
}

.supporto-detail-hero .supporto-hero-copy {
  max-width: 940px;
  margin-top: 150px;
}

.supporto-detail-hero h1 {
  margin-bottom: 0;
}

.supporto-detail-content {
  width: min(943px, calc(100% - 48px));
  margin: 0 auto;
  padding: 89px 0 132px;
}

.supporto-detail-section h2 {
  max-width: 930px;
  margin: 0 0 31px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
}

.supporto-detail-copy {
  color: #474746;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.supporto-detail-copy p {
  margin: 0;
}

.supporto-detail-copy p + p {
  margin-top: 30px;
}

.supporto-detail-copy strong {
  font-weight: 700;
}

.supporto-detail-copy a {
  color: var(--green);
  text-decoration: none;
}

.supporto-detail-copy a:hover,
.supporto-detail-copy a:focus-visible {
  text-decoration: underline;
}

.supporto-detail-media {
  margin: 51px 0 0;
}

.supporto-detail-media img {
  display: block;
  width: 100%;
  height: auto;
}

.supporto-detail-media + .supporto-detail-section {
  margin-top: 51px;
}

.supporto-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  min-height: 50px;
  margin-top: 49px;
  padding: 13px 32px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.supporto-detail-button:hover,
.supporto-detail-button:focus-visible {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.supporto-magazzini-ecommerce .supporto-detail-button {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.supporto-hero.assistenza-post-hero {
  min-height: 370px;
}

.supporto-hero.assistenza-post-hero .supporto-hero-inner {
  min-height: 370px;
}

.assistenza-post-hero .supporto-hero-watermark {
  top: 34px;
}

.assistenza-post-hero .supporto-hero-copy {
  max-width: 940px;
  margin-top: 150px;
}

.assistenza-post-hero h1 {
  margin-bottom: 0;
}

.assistenza-post-content {
  width: min(942px, calc(100% - 48px));
  margin: 0 auto;
  padding: 89px 0 132px;
}

.assistenza-post-media {
  margin: 0 0 51px;
}

.assistenza-post-media img {
  display: block;
  width: 100%;
  height: auto;
}

.assistenza-post-section + .assistenza-post-section {
  margin-top: 94px;
}

.assistenza-post-section h2 {
  max-width: 930px;
  margin: 0 0 31px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
}

.assistenza-post-copy {
  color: #474746;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.assistenza-post-copy p {
  margin: 0;
}

.assistenza-post-copy p + p {
  margin-top: 30px;
}

.assistenza-post-copy strong {
  font-weight: 700;
}

.assistenza-post-copy a {
  color: var(--green);
  text-decoration: none;
}

.assistenza-post-copy a:hover,
.assistenza-post-copy a:focus-visible {
  text-decoration: underline;
}

.assistenza-post-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 50px;
  margin-top: 49px;
  padding: 13px 32px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.assistenza-post-button:hover,
.assistenza-post-button:focus-visible {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .supporto-detail-content {
    width: calc(100% - 48px);
    padding: 54px 0 84px;
  }

  .supporto-detail-section h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .supporto-detail-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .supporto-detail-media,
  .supporto-detail-media + .supporto-detail-section {
    margin-top: 36px;
  }

  .supporto-detail-button {
    margin-top: 38px;
  }

  .assistenza-post-content {
    width: calc(100% - 48px);
    padding: 54px 0 84px;
  }

  .assistenza-post-media {
    margin-bottom: 36px;
  }

  .assistenza-post-section + .assistenza-post-section {
    margin-top: 58px;
  }

  .assistenza-post-section h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .assistenza-post-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .assistenza-post-button {
    margin-top: 38px;
  }
}

@media (max-width: 520px) {
  .supporto-hero.supporto-detail-hero .supporto-hero-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .supporto-hero.assistenza-post-hero .supporto-hero-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .supporto-detail-hero .breadcrumb {
    max-width: 210px;
    flex-wrap: wrap;
    line-height: 1.3;
  }

  .assistenza-post-hero .breadcrumb {
    max-width: 210px;
    flex-wrap: wrap;
    line-height: 1.3;
  }

  .supporto-detail-hero .supporto-hero-watermark {
    top: 76px;
    right: 22px;
    font-size: 18px;
  }

  .assistenza-post-hero .supporto-hero-watermark {
    top: 76px;
    right: 22px;
    font-size: 18px;
  }

  .supporto-detail-hero .supporto-hero-copy {
    max-width: calc(100% - 32px);
    margin-top: 124px;
    margin-left: 0;
  }

  .assistenza-post-hero .supporto-hero-copy {
    max-width: calc(100% - 32px);
    margin-top: 124px;
    margin-left: 0;
  }

  .supporto-detail-hero h1 {
    font-size: 40px;
  }

  .assistenza-post-hero h1 {
    font-size: 40px;
  }

  .supporto-detail-content {
    width: calc(100% - 32px);
    padding-top: 42px;
  }

  .supporto-detail-section h2 {
    font-size: 26px;
  }

  .supporto-detail-copy {
    font-size: 16px;
  }

  .assistenza-post-content {
    width: calc(100% - 32px);
    padding-top: 42px;
  }

  .assistenza-post-section h2 {
    font-size: 26px;
  }

  .assistenza-post-copy {
    font-size: 16px;
  }
}

.supporto-service-link:hover,
.supporto-service-link:focus-visible {
  color: #005b2f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.supporto-service p {
  margin: 0;
  color: #454744;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contatti-figma,
.media-figma {
  background: #fff;
}

.contatti-hero .supporto-hero-copy {
  max-width: 760px;
}

.contatti-hero h1 {
  margin-bottom: 0;
}

.contatti-content {
  width: min(1300px, calc(100% - 112px));
  max-width: none;
  margin: 0 auto;
  padding: 76px 0 112px;
}

.contatti-info {
  display: grid;
  grid-template-columns: minmax(0, 599px) minmax(0, 701px);
  gap: 0;
  align-items: start;
  margin-bottom: 104px;
}

.contatti-address h2,
.contatti-direct h2 {
  margin: 0 0 30px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contatti-address address,
.contatti-address p,
.contatti-direct p {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  font-style: normal;
}

.contatti-address a,
.contatti-direct a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.contatti-direct details {
  margin-bottom: 24px;
  background: #f1f1f1;
}

.contatti-direct details + details {
  margin-top: 0;
}

.contatti-direct summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px 0 34px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.contatti-direct summary::-webkit-details-marker {
  display: none;
}

.contatti-direct summary::after {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--green);
  content: "+";
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
}

.contatti-direct details[open] summary::after {
  content: "-";
}

.contatti-direct details > div {
  padding: 16px 34px 56px 127px;
}

.contatti-direct-person + .contatti-direct-person {
  margin-top: 20px;
}

.contatti-direct-person p:last-child {
  margin-bottom: 0;
}

.contatti-form-box {
  width: min(1187px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 94px 0 104px;
  background: #f1f1f1;
  text-align: center;
}

.contatti-form-box h2 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
}

.contatti-form-box > p {
  margin: 0 0 57px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.contatti-form {
  display: grid;
  width: min(700px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  text-align: left;
}

.contatti-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.contatti-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contatti-form-message {
  max-width: 720px;
  margin: 20px auto 28px !important;
  padding: 14px 18px;
  border: 1px solid currentColor;
  font-weight: 700;
  text-align: center;
}

.contatti-form-message-success {
  color: var(--green);
  background: #fff;
}

.contatti-form-message-error {
  color: #9f1d1d;
  background: #fff;
}

.contatti-form input,
.contatti-form textarea {
  width: 100%;
  border: 1px solid var(--green);
  border-radius: 0;
  background: #fff;
  min-height: 50px;
  padding: 12px;
  font: inherit;
}

.contatti-form textarea {
  min-height: 95px;
  resize: vertical;
}

.contatti-form-wide,
.contatti-privacy {
  grid-column: 1 / -1;
}

.contatti-privacy {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.contatti-privacy input {
  width: 14px;
  min-height: 14px;
}

.contatti-form button {
  width: max-content;
  min-height: 50px;
  padding: 0 42px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.media-video-list {
  padding: 96px 0 132px;
  background: #fff;
}

.media-figma-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 335px));
  justify-content: center;
  align-items: start;
  width: min(1460px, calc(100% - 104px));
  max-width: none;
  margin: 0 auto;
  gap: 52px 40px;
}

.media-figma-card {
  display: flex;
  width: 335px;
  height: 522px;
  min-height: 522px;
  padding: 39px 18px 25px;
  flex-direction: column;
  align-items: flex-start;
  background: #f1f1f1;
}

.media-figma-card h2 {
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.38;
  transition: color .2s ease;
}

.media-figma-card p {
  min-height: 74px;
  margin: 0 0 27px;
  color: #474746;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42;
}

.media-play-card {
  position: relative;
  display: block;
  width: 299px;
  height: 199px;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
  background: #ddd;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
}

.media-play-card img,
.media-play-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-play-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: background-color .2s ease;
}

.media-play-card span::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.media-watch {
  display: inline-flex;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid #dedede;
  color: var(--green);
  background: transparent;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease;
}

.media-figma-card:hover h2,
.media-figma-card:hover .media-watch:not(.media-watch-disabled) {
  color: #000;
}

.media-figma-card:hover .media-play-card span,
.media-figma-card:focus-within .media-play-card span {
  background: #000;
}

.media-watch-disabled {
  cursor: default;
}

.media-video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 32px;
  align-items: center;
  justify-content: center;
}

.media-video-modal.is-open {
  display: flex;
}

.media-video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .72);
  cursor: pointer;
}

.media-video-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 64px));
  background: #111;
}

.media-video-dialog video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  background: #111;
}

.media-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.media-video-close::before,
.media-video-close::after {
  position: absolute;
  top: 14px;
  left: 8px;
  width: 14px;
  height: 2px;
  content: "";
  background: #fff;
}

.media-video-close::before {
  transform: rotate(45deg);
}

.media-video-close::after {
  transform: rotate(-45deg);
}

body.media-video-open {
  overflow: hidden;
}

@media (max-width: 1550px) {
  .media-figma-grid {
    width: min(1424px, calc(100% - 48px));
    grid-template-columns: repeat(4, minmax(0, 335px));
    column-gap: 28px;
  }
}

@media (max-width: 1440px) {
  .media-figma-grid {
    width: min(1085px, calc(100% - 72px));
    grid-template-columns: repeat(3, minmax(0, 335px));
    column-gap: 40px;
  }
}

@media (max-width: 1180px) {
  .media-figma-grid {
    width: min(710px, calc(100% - 48px));
    grid-template-columns: repeat(2, minmax(0, 335px));
  }
}

@media (max-width: 760px) {
  .media-video-list {
    padding: 72px 0 96px;
  }

  .media-figma-grid {
    width: min(335px, calc(100% - 40px));
    grid-template-columns: minmax(0, 335px);
    gap: 34px;
  }

  .media-figma-card {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .media-play-card {
    width: 100%;
  }

  .media-video-modal {
    padding: 20px;
  }

  .media-video-dialog {
    width: calc(100vw - 40px);
  }
}

.azienda-history {
  margin-top: 18px;
}

.azienda-history details {
  border-bottom: 2px solid #d8d8d8;
}

.azienda-history summary {
  display: grid;
  grid-template-columns: 23px 1fr 44px;
  align-items: center;
  column-gap: 26px;
  min-height: 109px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.azienda-history summary::-webkit-details-marker {
  display: none;
}

.azienda-history summary::before {
  width: 23px;
  height: 21px;
  content: "";
  background: url("../images/azienda-history-leaf.svg") center / contain no-repeat;
}

.azienda-history summary::after {
  content: "";
  justify-self: end;
  width: 44px;
  height: 44px;
  background: url("../images/azienda-history-arrow.svg") center / contain no-repeat;
  transition: transform .18s ease;
}

.azienda-history details[open] summary::after {
  transform: rotate(180deg);
}

.azienda-history summary span {
  min-width: 0;
}

.azienda-history-panel {
  display: grid;
  grid-template-columns: minmax(260px, 452px) 1fr;
  gap: 42px;
  padding: 0 0 44px 49px;
}

.azienda-history-panel img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.azienda-history-panel p {
  align-self: center;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.azienda-figma + .footer {
  margin-top: 0;
}

.brand-hero .detail-hero-media::before {
  background: linear-gradient(90deg, var(--green) 0%, rgba(0, 132, 61, .86) 45%, rgba(0, 132, 61, .35) 100%);
}

.import-hero .detail-hero-media::before {
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 48%, rgba(0, 122, 62, .62) 100%);
}

.import-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  max-width: 1188px;
  margin: 0 auto;
  padding: 72px clamp(24px, 8vw, 110px) 46px;
  align-items: center;
  background: #fff;
}

.import-intro-copy {
  max-width: 760px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.48;
}

.import-intro-copy p {
  margin: 0 0 18px;
}

.import-intro-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.button-ghost {
  color: var(--green);
  background: transparent;
}

.import-brands,
.import-solutions {
  padding: 74px clamp(24px, 8vw, 160px);
  background: var(--soft);
}

.import-brands {
  padding-top: 58px;
  background: #fff;
}

.import-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 816px;
  margin: 0 auto;
}

.import-brand-card {
  display: grid;
  min-height: 286px;
  grid-template-rows: 132px auto 1fr auto;
  gap: 0;
  padding: 10px;
  color: var(--ink);
  background: #efefef;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.import-brand-card:hover,
.import-brand-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.import-brand-card span {
  display: grid;
  height: 126px;
  place-items: center;
  padding: 12px 14px;
  background: #fff;
}

.import-brand-card img {
  width: 174px;
  height: 86px;
  object-fit: contain;
}

.import-brand-card strong {
  margin-top: 20px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.import-brand-card em {
  margin-top: 38px;
  color: var(--green);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
}

.import-brand-card::after {
  content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor...";
  margin-top: 10px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
}

.import-brand-maschio-gaspardo img,
.import-brand-vervaet img {
  width: 190px;
  height: 88px;
}

.import-brand-massey-ferguson img,
.import-brand-mts img {
  width: 144px;
  height: 98px;
}

.import-brand-roc img {
  width: 148px;
  height: 98px;
}

.import-brand-fliegl img,
.import-brand-ferrari-growtech img {
  width: 184px;
  height: 78px;
}

.import-brand-fendt img,
.import-brand-grim img,
.import-brand-merlo img,
.import-brand-lemken img,
.import-brand-krone img,
.import-brand-matrix img {
  width: 182px;
  height: 82px;
}

.import-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1188px;
  margin: 0 auto;
}

.import-solution-grid a {
  min-height: 220px;
  padding: 31px;
  color: #fff;
  background: var(--green);
  text-decoration: none;
}

.import-solution-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.import-solution-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
}

.import-overview-page {
  background: #fff;
}

.import-overview-hero {
  position: relative;
  min-height: 754px;
  overflow: hidden;
  padding: 29px 43px 68px;
  color: #fff;
  background: var(--green);
}

.import-overview-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 122, 62, 0) 28%, rgba(0, 122, 62, .45) 44%, rgba(0, 122, 62, .92) 60%, var(--green) 68%, var(--green) 100%);
}

.import-overview-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 544px;
}

.import-overview-hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.import-overview-hero .breadcrumb,
.import-overview-claim,
.import-overview-hero-copy {
  position: relative;
  z-index: 2;
}

.import-overview-hero .breadcrumb a,
.import-overview-hero .breadcrumb strong {
  color: #fff;
}

.import-overview-claim {
  position: absolute;
  top: 30px;
  right: clamp(150px, 11vw, 166px);
  width: 97px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: .93;
  text-align: right;
}

.import-overview-claim strong {
  font-weight: 700;
}

.import-overview-hero-copy {
  max-width: 720px;
  margin: 213px 0 0 123px;
}

.import-overview-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.import-overview-hero-copy p {
  max-width: 562px;
  margin: 28px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
}

.import-overview-intro-copy {
  position: relative;
  z-index: 2;
  max-width: 1188px;
  margin: 200px auto 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.import-overview-intro-copy p {
  margin: 0;
}

.import-overview-intro-copy p + p {
  margin-top: 18px;
}

.import-overview-brands {
  padding: 74px 24px 112px;
  background: #fff;
}

.import-overview-brand-list {
  max-width: 1188px;
  margin: 0 auto;
}

.import-overview-brand-row {
  display: grid;
  grid-template-columns: 453px minmax(0, 1fr);
  gap: 47px;
  align-items: center;
  padding: 74px 0;
  border-top: 2px solid #efefef;
}

.import-overview-brand-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.import-overview-brand-row:last-child {
  border-bottom: 2px solid #efefef;
}

.import-overview-brand-logo {
  display: grid;
  width: 100%;
  min-height: 301px;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.import-overview-brand-logo img {
  width: min(74%, 318px);
  max-height: 132px;
  object-fit: contain;
}

.import-overview-brand-vervaet .import-overview-brand-logo img {
  width: min(58%, 250px);
}

.import-overview-brand-reinke .import-overview-brand-logo img {
  width: min(64%, 286px);
}

.import-overview-brand-trioliet .import-overview-brand-logo img {
  width: min(70%, 305px);
}

.import-overview-brand-copy {
  max-width: 688px;
}

.import-overview-brand-copy h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.import-overview-brand-copy p {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
}

.import-overview-brand-button {
  min-width: 165px;
  min-height: 50px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 700;
}

.import-overview-brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 24px;
}

.import-overview-brand-links a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.import-overview-brand-links a:hover,
.import-overview-brand-links a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .import-overview-hero {
    min-height: 720px;
  }

  .import-overview-hero-copy {
    margin-left: 56px;
  }

  .import-overview-brand-row {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 36px;
  }

  .import-overview-brand-logo {
    min-height: 230px;
  }
}

@media (max-width: 860px) {
  .import-overview-hero {
    min-height: 680px;
    padding: 24px;
  }

  .import-overview-hero::after {
    background: linear-gradient(180deg, rgba(0, 122, 62, 0) 22%, rgba(0, 122, 62, .78) 56%, var(--green) 68%, var(--green) 100%);
  }

  .import-overview-claim {
    top: 78px;
    right: 24px;
    width: 84px;
    font-size: 20px;
  }

  .import-overview-hero-copy {
    margin: 168px 0 0;
  }

  .import-overview-hero-copy h1 {
    font-size: 46px;
  }

  .import-overview-hero-copy p {
    font-size: 20px;
  }

  .import-overview-intro-copy {
    margin-top: 96px;
    font-size: 17px;
  }

  .import-overview-brand-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 0;
  }

  .import-overview-brand-logo {
    min-height: 150px;
    justify-items: start;
  }

  .import-overview-brand-logo img {
    width: min(70%, 260px);
    max-height: 104px;
  }

  .import-overview-brand-copy h2 {
    font-size: 32px;
  }
}

.brand-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 72px;
  align-items: center;
}

.brand-detail-hero .breadcrumb,
.brand-detail-hero .detail-hero-copy {
  grid-column: 1;
}

.brand-detail-logo {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 46px;
  background: #fff;
}

.brand-detail-logo img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.brand-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 62px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 92px;
  background: #fff;
}

.brand-detail-copy {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.48;
}

.brand-detail-copy p {
  margin: 0 0 18px;
}

.brand-detail-cta {
  padding: 31px;
  background: var(--soft);
  align-self: start;
}

.brand-detail-cta p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.42;
}

.brand-detail-cta a {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.agri-brand-page {
  background: #fff;
}

.agri-brand-hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.agri-brand-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 132, 61, 1) 0%,
      rgba(0, 132, 61, 1) 50%,
      rgba(0, 132, 61, .94) 61%,
      rgba(0, 132, 61, .62) 80%,
      rgba(0, 132, 61, .16) 100%
    ),
    linear-gradient(180deg, rgba(0, 132, 61, .04) 0%, rgba(0, 132, 61, .26) 100%);
}

.agri-brand-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 54%;
}

.agri-brand-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.agri-brand-hero .breadcrumb {
  position: absolute;
  top: 42px;
  left: 43px;
  z-index: 2;
  color: #fff;
}

.agri-brand-claim {
  position: absolute;
  top: 83px;
  right: 148px;
  z-index: 2;
  font-size: 24px;
  font-weight: 400;
  line-height: .95;
  text-align: center;
}

.agri-brand-claim strong {
  font-weight: 800;
}

.agri-brand-hero-copy {
  position: absolute;
  top: 230px;
  left: clamp(60px, 10.98vw, 166px);
  z-index: 2;
  max-width: 720px;
}

.agri-brand-hero-copy h1 {
  margin: 0 0 38px;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.agri-brand-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.agri-brand-intro {
  display: grid;
  grid-template-columns: 212px minmax(0, 686px);
  gap: clamp(34px, 4vw, 56px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 24px 24px;
  background: #fff;
}

.agri-brand-logo-panel {
  display: grid;
  width: 212px;
  min-height: 141px;
  place-items: center;
  padding: 0;
  background: transparent;
}

.agri-brand-logo-panel img {
  width: 212px;
  max-width: 100%;
  max-height: 141px;
  object-fit: contain;
}

.agri-brand-intro-copy {
  max-width: 700px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.agri-brand-intro-copy p {
  margin: 0 0 20px;
}

.agri-brand-solutions {
  max-width: 1188px;
  margin: 0 auto;
  padding: 38px 24px 92px;
  background: #fff;
}

.agri-brand-section-head p {
  margin: 0 0 38px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.agri-brand-solution-list {
  display: grid;
  gap: 0;
}

.agri-brand-solution-card {
  display: grid;
  color: #4a4a4a;
}

.agri-brand-solution-card + .agri-brand-solution-card {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 2px solid #f1f1f1;
}

.agri-brand-solution-card:last-child {
  padding-bottom: 64px;
  border-bottom: 2px solid #f1f1f1;
}

.agri-brand-solution-body {
  display: grid;
  grid-template-columns: minmax(300px, 453px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}

.agri-brand-solution-card img {
  width: 100%;
  max-width: 453px;
  aspect-ratio: 453 / 302;
  object-fit: cover;
}

.agri-brand-solution-card h2 {
  margin: 0 0 23px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.agri-brand-solution-copy {
  max-width: 610px;
}

.agri-brand-solution-copy > p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.agri-brand-solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  align-items: center;
  margin-top: 34px;
}

.agri-brand-solution-actions .button {
  min-width: 238px;
  font-size: 16px;
  font-weight: 700;
}

.agri-brand-solution-actions p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.agri-brand-solution-actions p a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.agri-brand-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  max-width: 1188px;
  margin: 0 auto;
  padding: 22px 24px 104px;
}

.agri-brand-commercial-contact strong {
  display: block;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.agri-brand-commercial-contact p,
.agri-brand-commercial-contact a {
  display: block;
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.agri-brand-commercial-contact a:hover,
.agri-brand-commercial-contact a:focus-visible,
.agri-brand-solution-actions p a:hover,
.agri-brand-solution-actions p a:focus-visible,
.agri-brand-contact-actions p a:hover,
.agri-brand-contact-actions p a:focus-visible {
  color: var(--green);
}

.agri-brand-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  align-items: center;
  justify-content: flex-end;
}

.agri-brand-contact-actions .button {
  min-width: 238px;
  font-size: 16px;
  font-weight: 700;
}

.agri-brand-contact-actions p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.agri-brand-contact-actions p a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.import-brand-page {
  background: #fff;
}

.import-brand-hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.import-brand-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 132, 61, 1) 0%,
      rgba(0, 132, 61, 1) 57%,
      rgba(0, 132, 61, .94) 65%,
      rgba(0, 132, 61, .62) 82%,
      rgba(0, 132, 61, .24) 100%
    ),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.import-brand-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(40.94vw, 619px);
  overflow: hidden;
}

.import-brand-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--green) 0%, rgba(0, 132, 61, .96) 16%, rgba(0, 132, 61, .58) 58%, rgba(0, 132, 61, 0) 100%);
}

.import-brand-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.import-brand-hero .breadcrumb {
  position: absolute;
  top: 42px;
  left: 43px;
  z-index: 2;
  color: #fff;
}

.import-brand-claim {
  position: absolute;
  top: calc(100% * 31 / 399);
  right: clamp(86px, 9.8vw, 148px);
  z-index: 2;
  width: 97px;
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 400;
  line-height: .96;
  text-align: right;
  letter-spacing: 0;
}

.import-brand-claim strong {
  font-weight: 700;
}

.import-brand-hero-copy {
  position: absolute;
  top: 230px;
  left: clamp(60px, 10.98vw, 166px);
  z-index: 2;
  max-width: 720px;
}

.import-brand-hero-copy h1 {
  margin: 0 0 38px;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.import-brand-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.import-brand-intro {
  display: grid;
  grid-template-columns: 212px minmax(0, 686px);
  gap: clamp(34px, 4vw, 56px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 24px 24px;
  background: #fff;
}

.import-brand-logo-panel {
  display: grid;
  width: 212px;
  min-height: 141px;
  place-items: center;
  padding: 0;
  background: transparent;
}

.import-brand-logo-panel img {
  width: 212px;
  max-width: 100%;
  max-height: 141px;
  object-fit: contain;
}

.import-brand-intro-copy {
  max-width: 700px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.import-brand-intro-copy p {
  margin: 0 0 20px;
}

.import-brand-solutions {
  max-width: 1188px;
  margin: 0 auto;
  padding: 38px 24px 92px;
  background: #fff;
}

.import-brand-section-head p {
  margin: 0 0 38px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.import-brand-solution-list {
  display: grid;
  gap: 0;
}

.import-brand-solution-card {
  display: grid;
  color: #4a4a4a;
}

.import-brand-solution-card + .import-brand-solution-card {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 2px solid #f1f1f1;
}

.import-brand-solution-card:last-child {
  padding-bottom: 64px;
  border-bottom: 2px solid #f1f1f1;
}

.import-brand-solution-body {
  display: grid;
  grid-template-columns: minmax(300px, 453px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}

.import-brand-solution-card img {
  width: 100%;
  max-width: 453px;
  aspect-ratio: 453 / 302;
  object-fit: cover;
}

.import-brand-solution-card h2 {
  margin: 0 0 23px;
  color: var(--green);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.import-brand-solution-copy {
  max-width: 610px;
}

.import-brand-solution-copy > p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.import-brand-solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  align-items: center;
  margin-top: 34px;
}

.import-brand-solution-actions .button {
  min-width: 197px;
  min-height: 50px;
  font-size: 16px;
  font-weight: 700;
}

.import-subcategory-page {
  background: #fff;
}

.import-subcat-hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.import-subcat-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green) 0%, var(--green) 57%, rgba(0, 132, 61, .94) 65%, rgba(0, 132, 61, .62) 82%, rgba(0, 132, 61, .24) 100%),
    linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .36) 100%);
}

.import-subcat-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 46vw;
  min-width: 696px;
}

.import-subcat-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.import-subcat-hero .breadcrumb {
  position: absolute;
  top: 42px;
  left: 43px;
  z-index: 2;
  color: #fff;
}

.import-subcat-hero .breadcrumb a,
.import-subcat-hero .breadcrumb strong {
  color: #fff;
}

.import-subcat-claim {
  position: absolute;
  top: 42px;
  right: clamp(86px, 9.8vw, 148px);
  z-index: 2;
  width: 97px;
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 400;
  line-height: .93;
  text-align: right;
  letter-spacing: 0;
}

.import-subcat-claim strong {
  font-weight: 700;
}

.import-subcat-hero-copy {
  position: absolute;
  top: 176px;
  left: clamp(60px, 10.98vw, 166px);
  z-index: 2;
  max-width: 780px;
}

.import-subcat-hero-copy h1 {
  max-width: 780px;
  margin: 0 0 34px;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.import-subcat-hero-copy p {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.import-subcat-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: 70px;
  align-items: start;
  max-width: 1187px;
  margin: 0 auto;
  padding: 60px 24px 34px;
  background: #fff;
}

.import-subcat-logo-panel {
  display: grid;
  width: 150px;
  min-height: 141px;
  place-items: center;
  padding-top: 0;
}

.import-subcat-logo-panel img {
  width: 150px;
  max-width: 100%;
  max-height: 141px;
  object-fit: contain;
}

.import-subcat-intro-copy {
  max-width: 760px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.import-subcat-intro-content {
  --collapsed-height: 9999px;
  max-height: var(--collapsed-height);
  overflow: hidden;
}

.import-subcat-intro-content.is-expanded {
  max-height: none;
}

.import-subcat-intro-content > :first-child {
  margin-top: 0;
}

.import-subcat-intro-content p {
  margin: 0 0 22px;
}

.import-subcat-intro-content strong {
  font-weight: 700;
}

.import-subcat-intro-content ul {
  margin: -8px 0 0 17px;
  padding: 0;
  list-style-type: square;
}

.import-subcat-intro-content li {
  margin: 5px 0;
  padding-left: 6px;
  font-weight: 700;
}

.import-subcat-intro-content > :last-child {
  margin-bottom: 0;
}

.import-subcat-readmore-button {
  display: block;
  margin: 22px auto 0;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  background: transparent;
  cursor: pointer;
}

.import-subcat-readmore-button[hidden] {
  display: none;
}

.import-subcat-solutions {
  padding: 42px 24px 112px;
  background: #fff;
}

.import-subcat-solutions-inner {
  max-width: 1187px;
  margin: 0 auto;
}

.import-subcat-solutions .section-kicker {
  margin: 0 0 38px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.import-subcat-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 373px);
  gap: 86px 34px;
  justify-content: center;
}

.import-subcat-empty-cta {
  display: flex;
  justify-content: center;
  padding: 36px 0 16px;
}

.import-subcat-empty-cta .button {
  min-width: 238px;
}

.import-subcat-product-card {
  display: flex;
  width: 373px;
  min-height: 566px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: #efefef;
  transition: transform .2s ease;
}

.import-subcat-product-card:hover,
.import-subcat-product-card:focus-visible {
  transform: translateY(-3px);
}

.import-subcat-product-media {
  display: grid;
  width: 343px;
  height: 229px;
  place-items: center;
  margin: 15px 15px 0;
  overflow: hidden;
  background: #fff;
}

.import-subcat-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.import-subcat-product-body {
  display: flex;
  min-height: 322px;
  flex: 1;
  flex-direction: column;
  padding: 39px 22px 0;
}

.import-subcat-product-name {
  display: block;
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  transition: color .2s ease;
}

.import-subcat-product-description {
  display: block;
  min-height: 190px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.import-subcat-product-more {
  display: block;
  margin: auto -22px 0;
  padding: 24px 22px 18px;
  border-top: 2px solid #fff;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .2s ease;
}

.import-subcat-product-card:hover .import-subcat-product-name,
.import-subcat-product-card:focus-visible .import-subcat-product-name,
.import-subcat-product-card:hover .import-subcat-product-more,
.import-subcat-product-card:focus-visible .import-subcat-product-more {
  color: #000;
}

.import-fliegl-botti-page .import-subcat-solution-card img {
  object-fit: contain;
  background: #fff;
}

.import-fliegl-botti-page .import-subcat-solution-card p + p {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .import-subcat-hero-copy {
    left: 60px;
    max-width: 680px;
  }

  .import-subcat-hero-copy h1 {
    max-width: 680px;
  }

  .import-subcat-product-grid {
    grid-template-columns: repeat(2, 373px);
  }
}

@media (max-width: 900px) {
  .import-subcat-hero {
    min-height: 650px;
  }

  .import-subcat-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 132, 61, 1) 0%, rgba(0, 132, 61, .97) 47%, rgba(0, 132, 61, .72) 72%, rgba(0, 132, 61, .24) 100%);
  }

  .import-subcat-hero-media {
    top: auto;
    width: 100%;
    min-width: 0;
    height: 330px;
  }

  .import-subcat-hero-media img {
    object-position: center bottom;
  }

  .import-subcat-hero .breadcrumb {
    top: 28px;
    left: 24px;
    right: 24px;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .import-subcat-claim {
    top: 86px;
    right: 24px;
    width: 84px;
    font-size: 20px;
  }

  .import-subcat-hero-copy {
    top: 180px;
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .import-subcat-hero-copy h1 {
    max-width: 460px;
    margin-bottom: 22px;
    font-size: 46px;
    line-height: 52px;
  }

  .import-subcat-hero-copy p {
    max-width: 420px;
    font-size: 20px;
    line-height: 1.32;
  }

  .import-subcat-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 44px;
  }

  .import-subcat-logo-panel {
    width: 170px;
    min-height: 110px;
    justify-self: start;
    padding-top: 0;
  }

  .import-subcat-logo-panel img {
    width: 170px;
  }

  .import-subcat-intro-content {
    --collapsed-height: 430px;
  }

  .import-subcat-solutions {
    padding-top: 30px;
    padding-bottom: 86px;
  }

  .import-subcat-product-grid {
    grid-template-columns: minmax(0, 373px);
  }

  .import-subcat-product-card {
    width: 100%;
  }

  .import-subcat-product-media {
    width: calc(100% - 30px);
  }
}

@media (max-width: 520px) {
  .import-subcat-hero {
    min-height: 610px;
  }

  .import-subcat-hero .breadcrumb {
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
  }

  .import-subcat-hero .breadcrumb a,
  .import-subcat-hero .breadcrumb strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .import-subcat-claim {
    display: none;
  }

  .import-subcat-hero-copy {
    top: 150px;
    right: 24px;
    width: auto;
    max-width: calc(100vw - 48px);
  }

  .import-subcat-hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 45px;
  }

  .import-subcat-hero-copy p {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .import-subcat-hero-media {
    height: 285px;
  }

  .import-subcat-intro-copy {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .import-subcat-product-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .import-subcat-product-card {
    min-height: 0;
  }

  .import-subcat-product-body {
    min-height: 0;
  }
}

.used-page {
  background: #fff;
}

.used-hero {
  position: relative;
  height: calc(100vw * 399 / 1512);
  min-height: 399px;
  max-height: 540px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(90deg, #007a3e 0%, #007a3e 58.9%, rgba(0, 122, 62, 1) 59%, rgba(0, 122, 62, .88) 67%, rgba(0, 122, 62, .58) 77%, rgba(0, 122, 62, .25) 89%, rgba(0, 122, 62, 0) 100%),
    url("../images/used-hero-figma-new.jpg") right center / 40.94% 100% no-repeat,
    var(--green);
}

.used-hero .breadcrumb {
  position: absolute;
  top: calc(100% * 30 / 399);
  left: calc(100% * 42 / 1512);
  z-index: 1;
}

.used-hero-copy {
  position: absolute;
  top: calc(100% * 143 / 399);
  left: calc(100% * 166 / 1512);
  max-width: 610px;
  margin-top: 0;
}

.used-hero-copy p {
  max-width: 700px;
  margin: 31px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.used-hero-mark {
  position: absolute;
  top: calc(100% * 31 / 399);
  right: calc(100% * 150 / 1512);
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 400;
  line-height: .96;
  text-align: right;
}

.used-hero-mark strong {
  font-weight: 700;
}

.used-results-head p {
  margin: 0 0 17px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.used-hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.used-list-hero h1 {
  margin: 0;
  font-size: clamp(58px, 5vw, 92px);
  line-height: 1;
}

.used-search-section {
  padding: 82px clamp(24px, 8vw, 160px) 0;
  background: #fff;
}

.used-search-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.used-search-wrap h2 {
  margin: 0 0 36px;
  color: var(--green);
  font-size: clamp(24px, 1.7vw, 31px);
  line-height: 1.08;
  text-transform: uppercase;
}

.used-search {
  max-width: 650px;
  margin: 0;
}

.used-search label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.used-search div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.used-search input,
.used-search button,
.used-filters button {
  min-height: 54px;
  border: 2px solid var(--green);
  font: inherit;
}

.used-search input {
  padding: 0 22px;
  color: var(--ink);
  background: #fff;
}

.used-search button,
.used-filters button {
  padding: 0 30px;
  color: #fff;
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.used-categories,
.used-results,
.used-browser {
  padding: 44px clamp(24px, 8vw, 160px) 112px;
}

.used-categories h2 {
  max-width: 1620px;
  margin: 0 auto 36px;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.used-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 42px);
  max-width: 1620px;
  margin: 0 auto;
}

.used-category-grid a {
  display: grid;
  grid-template-rows: minmax(190px, 1fr) minmax(118px, auto);
  min-height: 310px;
  padding: 0;
  color: var(--green);
  background: #f0f0f0;
  font-size: clamp(14px, .9vw, 15px);
  font-weight: 800;
  line-height: 1.08;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.used-category-grid a:hover,
.used-category-grid a:focus-visible {
  color: #fff;
  background: var(--green);
}

.used-category-icon {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 214px;
  padding: 24px;
  place-items: center;
  color: #4b4b4b;
  background: transparent;
}

.used-category-icon svg,
.used-category-icon img {
  display: block;
  width: 100px;
  height: 100px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.used-category-icon img {
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  opacity: .88;
}

.used-category-icon svg {
  fill: currentColor;
  overflow: visible;
  transform: scaleX(-1);
  transform-origin: center;
}

.used-category-icon svg * {
  fill: currentColor !important;
}

.used-category-name {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 118px;
  align-items: center;
  justify-items: center;
  align-content: center;
  padding: 14px 12px;
  border-top: 2px solid #fff;
  overflow-wrap: break-word;
  word-break: normal;
}

.used-category-count {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.used-category-grid a:hover .used-category-icon,
.used-category-grid a:focus-visible .used-category-icon {
  color: #fff;
  background: transparent;
}

.used-category-grid a:hover .used-category-count,
.used-category-grid a:focus-visible .used-category-count {
  color: #fff;
}

@media (max-width: 1500px) {
  .used-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .used-hero,
  .used-category-hero {
    min-height: 440px;
  }

  .used-hero-copy {
    margin-top: 82px;
  }

  .used-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .used-filter-combos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .used-hero,
  .used-category-hero {
    min-height: 430px;
    padding-bottom: 64px;
  }

  .used-hero h1,
  .used-list-hero h1 {
    font-size: clamp(50px, 14vw, 74px);
  }

  .used-hero-copy p {
    font-size: 24px;
  }

  .used-hero-mark {
    top: 52px;
    right: 28px;
    font-size: 24px;
  }

  .used-search-section {
    padding-top: 54px;
  }

  .used-search div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .used-search input,
  .used-search button {
    width: 100%;
  }

  .used-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .used-filter-bar {
    padding-block: 28px;
  }
}

@media (max-width: 560px) {
  .used-category-grid {
    grid-template-columns: 1fr;
  }

  .used-filter-combos {
    grid-template-columns: 1fr;
  }
}

.used-results {
  background: #fff;
}

.used-results-head {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.used-results-head p {
  color: var(--green);
}

.used-results-head h2 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 44px);
}

.used-clear-search {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 28px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.used-clear-search:hover,
.used-clear-search:focus-visible {
  color: #fff;
  background: var(--green);
}

.used-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.used-card {
  display: grid;
  grid-template-rows: 210px minmax(232px, 1fr);
  min-height: 442px;
  background: #f0f0f0;
}

.used-card-media {
  position: relative;
  display: grid;
  width: 100%;
  height: 210px;
  overflow: hidden;
  place-items: center;
  background: #f0f0f0;
  padding: 16px 16px 0;
  text-decoration: none;
}

.used-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.used-card-placeholder {
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.used-card-sold-badge {
  position: absolute;
  inset: 16px 16px 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255, 255, 255, .66);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.used-card-body {
  display: grid;
  grid-template-rows: auto minmax(104px, 1fr) auto;
  align-content: start;
  padding: 22px 20px 0;
}

.used-card-brand {
  margin: 0 0 10px;
  color: #555;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.used-status {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.used-card h2 {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.used-card h2 a {
  color: inherit;
  text-decoration: none;
}

.used-card-more {
  display: flex;
  align-self: end;
  min-height: 66px;
  align-items: center;
  margin: 22px -20px 0;
  padding: 0 20px;
  border-top: 2px solid #fff;
  background: #f0f0f0;
  font-size: 14px;
  font-weight: 700;
}

.used-card-more::after {
  display: none;
}

.used-card:hover h2 a,
.used-card:focus-within h2 a,
.used-card:hover .used-card-more,
.used-card:focus-within .used-card-more {
  color: #000;
}

.used-card dl,
.used-specs dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.used-card dl {
  align-self: start;
}

.used-card dl div,
.used-specs dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 8px;
}

.used-card dt,
.used-specs dt {
  color: #777;
  font-weight: 400;
}

.used-card dd,
.used-specs dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.used-list-hero {
  padding: 32px clamp(24px, 8vw, 160px) 80px;
  color: #fff;
  background: var(--green);
}

.used-category-hero {
  position: relative;
  height: calc(100vw * 399 / 1512);
  min-height: 399px;
  max-height: 540px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, #007a3e 0%, #007a3e 58.9%, rgba(0, 122, 62, 1) 59%, rgba(0, 122, 62, .88) 67%, rgba(0, 122, 62, .58) 77%, rgba(0, 122, 62, .25) 89%, rgba(0, 122, 62, 0) 100%),
    url("../images/used-category-hero-figma.jpg") right center / 40.94% 100% no-repeat,
    var(--green);
}

.used-list-hero h1 {
  margin-top: 92px;
}

.used-category-hero h1 {
  position: absolute;
  top: calc(100% * 143 / 399);
  left: calc(100% * 166 / 1512);
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0;
}

.used-category-hero .breadcrumb {
  position: absolute;
  top: calc(100% * 30 / 399);
  left: calc(100% * 42 / 1512);
  z-index: 1;
}

.used-filter-bar {
  padding: 36px clamp(24px, 8vw, 160px);
  background: #454542;
}

.used-filter-combos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.used-filter-combo {
  position: relative;
  min-height: 80px;
  border: 2px solid var(--green);
  background: #fff;
}

.used-filter-combo > summary,
.used-filter-combo.is-disabled {
  display: grid;
  min-height: 76px;
  align-content: center;
  padding: 11px 36px 12px 16px;
  cursor: pointer;
  list-style: none;
}

.used-filter-combo > summary::-webkit-details-marker {
  display: none;
}

.used-filter-combo::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid #6a6a6a;
  border-bottom: 2px solid #6a6a6a;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.used-filter-combo[open]::after {
  transform: translateY(-35%) rotate(225deg);
}

.used-filter-combo span {
  color: #666;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.used-filter-combo em {
  display: block;
  min-height: 20px;
  margin-top: 8px;
  color: var(--green);
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.used-filter-combo em.is-placeholder {
  color: #8a8a8a;
  font-weight: 400;
}

.used-filter-combo > summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.used-filter-options {
  position: absolute;
  top: calc(100% + 8px);
  left: -2px;
  right: -2px;
  z-index: 20;
  max-height: 320px;
  overflow-y: auto;
  border: 2px solid var(--green);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.used-filter-options a {
  display: block;
  padding: 14px 16px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.14;
  text-decoration: none;
}

.used-filter-options a + a {
  border-top: 1px solid #e4e4e4;
}

.used-filter-options a:hover,
.used-filter-options a:focus-visible,
.used-filter-options a.is-selected {
  color: #fff;
  background: var(--green);
}

.used-filter-combo.is-disabled {
  opacity: .64;
  cursor: default;
}

.used-filter-combo.is-disabled::after {
  opacity: .4;
}

.used-filter-submit {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.used-browser {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
}

.used-browser.used-category-results {
  display: block;
}

.used-category-results .pagination {
  width: 100%;
  max-width: var(--max);
  margin: 64px auto 0;
}

.used-filters {
  align-self: start;
  padding: 28px 22px;
  background: #fff;
}

.used-filters h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 24px;
}

.used-filters fieldset {
  margin: 0 0 30px;
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.used-filters legend {
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.used-filters label {
  display: block;
  margin: 12px 0;
}

.used-filters button {
  width: 100%;
  border-color: var(--green);
}

.used-filters a {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.used-sort {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: var(--max);
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.used-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto 26px;
}

.used-active-filters a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 2px solid var(--green);
  color: var(--green);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.used-active-filters a:hover,
.used-active-filters a:focus-visible {
  color: #fff;
  background: var(--green);
}

.used-active-filters b {
  font-size: 18px;
  line-height: 1;
}

.used-active-filters .used-clear-filters {
  color: #4b4b4b;
  border-color: #d6d6d6;
}

.used-empty {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 22px;
}

.used-detail-hero .detail-hero-media::before {
  background:
    linear-gradient(90deg, #007a3e 0%, #007a3e 58.9%, rgba(0, 122, 62, 1) 59%, rgba(0, 122, 62, .88) 67%, rgba(0, 122, 62, .58) 77%, rgba(0, 122, 62, .25) 89%, rgba(0, 122, 62, 0) 100%);
}

.used-detail-hero {
  height: calc(100vw * 231 / 1512);
  min-height: 231px;
  max-height: 320px;
  padding: 0;
  background: var(--green);
}

.used-detail-hero .detail-hero-media {
  display: block;
  pointer-events: none;
}

.used-detail-hero .detail-hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 40.94%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.used-detail-hero .breadcrumb {
  position: absolute;
  top: calc(100% * 30 / 231);
  left: var(--casella-breadcrumb-x, calc(100% * 42 / 1512));
  z-index: 2;
  color: #fff;
}

.used-detail-hero .breadcrumb a,
.used-detail-hero .breadcrumb strong {
  color: #fff;
}

.used-detail-hero .detail-hero-copy {
  position: absolute;
  top: calc(100% * 104 / 231);
  left: calc(100% * 166 / 1512);
  max-width: min(760px, calc(100% - 332px));
  margin: 0;
}

.used-detail-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.used-detail-hero .used-hero-mark {
  top: calc(100% * 30 / 231);
  right: calc(100% * 150 / 1512);
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: .96;
}

.used-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 702px) minmax(340px, 457px);
  gap: 30px;
  align-items: start;
  justify-content: center;
  width: min(1189px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 88px;
  background: #fff;
}

.used-detail-main,
.used-detail-sidebar {
  min-width: 0;
}

.used-detail-gallery {
  --used-detail-gallery-stage-height: 470px;
  --used-detail-gallery-thumbs-gap: 19px;
  --used-detail-gallery-thumb-width: 130px;
  --used-detail-gallery-thumb-height: 87px;
  --used-detail-gallery-thumb-gap: 13px;
  --used-detail-gallery-arrow-width: 40px;
}

.used-detail-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  height: var(--used-detail-gallery-stage-height);
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.used-detail-gallery-stage img,
.used-detail-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.used-detail-sold-badge {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255, 255, 255, .64);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.used-detail-sold-badge[hidden] {
  display: none;
}

.used-detail-thumbs {
  display: grid;
  grid-template-columns: var(--used-detail-gallery-arrow-width) minmax(0, 1fr) var(--used-detail-gallery-arrow-width);
  align-items: stretch;
  min-height: var(--used-detail-gallery-thumb-height);
  margin-top: var(--used-detail-gallery-thumbs-gap);
}

.used-detail-thumb-list {
  display: flex;
  gap: var(--used-detail-gallery-thumb-gap);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.used-detail-thumb-list::-webkit-scrollbar {
  display: none;
}

.used-detail-thumb-list button {
  flex: 0 0 var(--used-detail-gallery-thumb-width);
  width: var(--used-detail-gallery-thumb-width);
  height: var(--used-detail-gallery-thumb-height);
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.used-detail-thumb-list button.is-active {
  outline: 4px solid var(--green);
  outline-offset: -4px;
}

.used-detail-thumb-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.used-detail-gallery-arrow {
  position: relative;
  width: var(--used-detail-gallery-arrow-width);
  height: var(--used-detail-gallery-thumb-height);
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.used-detail-gallery-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.used-detail-gallery-arrow:hover,
.used-detail-gallery-arrow:focus-visible {
  color: var(--green);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--green);
}

.used-detail-thumb-list button:hover,
.used-detail-thumb-list button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: -3px;
}

.used-detail-gallery-prev::before {
  transform: translate(-32%, -50%) rotate(-45deg);
}

.used-detail-gallery-next::before {
  transform: translate(-68%, -50%) rotate(135deg);
}

.used-detail-gallery-count {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.used-gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .94);
}

.used-gallery-lightbox.is-open {
  display: flex;
}

body.gallery-open {
  overflow: hidden;
}

.used-gallery-lightbox-frame {
  position: relative;
  display: flex;
  width: min(100vw - 144px, 1460px);
  height: min(100vh - 116px, 840px);
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.used-gallery-lightbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .18s ease;
  transform-origin: center;
  will-change: transform;
}

.used-gallery-lightbox-frame.is-zoomed img {
  cursor: zoom-out;
  transform: scale(1.65);
}

.used-gallery-lightbox-close,
.used-gallery-lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.used-gallery-lightbox-close {
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
}

.used-gallery-lightbox-close::before,
.used-gallery-lightbox-close::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 8px;
  width: 30px;
  height: 3px;
  background: currentColor;
}

.used-gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.used-gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.used-gallery-lightbox-arrow {
  top: 50%;
  width: 64px;
  height: 86px;
  transform: translateY(-50%);
  transition: color .2s ease, background-color .2s ease;
}

.used-gallery-lightbox-close:hover,
.used-gallery-lightbox-close:focus-visible,
.used-gallery-lightbox-arrow:hover,
.used-gallery-lightbox-arrow:focus-visible {
  color: var(--green);
  background: #fff;
}

.used-gallery-lightbox-prev {
  left: 24px;
}

.used-gallery-lightbox-next {
  right: 24px;
}

.used-gallery-lightbox-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.used-gallery-lightbox-prev::before {
  transform: translate(-30%, -50%) rotate(-45deg);
}

.used-gallery-lightbox-next::before {
  transform: translate(-70%, -50%) rotate(135deg);
}

.used-gallery-lightbox-dots {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.used-gallery-lightbox-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
}

.used-gallery-lightbox-dots span.is-active {
  background: #fff;
}

.used-share-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 42px 0 40px;
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-underline-offset: .18em;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.used-share-button:hover,
.used-share-button:focus-visible {
  color: #474746;
  text-decoration: underline;
}

.used-share-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.used-detail-section {
  margin-top: 0;
}

.used-detail-section h2,
.used-top-specs h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.used-description {
  padding: 0;
  background: transparent;
  color: #5a5a5a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.used-description p {
  margin: 0 0 22px;
}

.used-detail-specs {
  margin-top: 52px;
}

.used-detail-specs dl {
  margin: 0;
}

.used-detail-specs div {
  display: grid;
  grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 4px;
  border-bottom: 2px solid #ededed;
}

.used-detail-specs dt,
.used-detail-specs dd {
  margin: 0;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.4;
}

.used-detail-specs dt {
  font-weight: 700;
}

.used-detail-specs dd {
  font-weight: 400;
  text-align: right;
}

.used-request-button {
  display: flex;
  width: fit-content;
  margin: 48px auto 0;
  min-width: 260px;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.used-request-button:hover,
.used-request-button:focus-visible {
  border-color: var(--green);
  color: var(--green);
  background: #fff;
}

.used-detail-sidebar {
  padding-top: 2px;
}

.used-top-specs dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 40px;
  background: #efefef;
}

.used-top-specs div {
  min-height: 90px;
  padding: 20px 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
}

.used-top-specs dt,
.used-top-specs dd {
  margin: 0;
}

.used-top-specs dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.used-top-specs dd {
  margin-top: 13px;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}

.used-seller-button {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.used-contact-block {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 31px 0;
  border-top: 2px solid #ededed;
}

.used-contact-block h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.used-contact-block p {
  margin: 0 0 9px;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.35;
}

.used-contact-block strong {
  font-weight: 700;
}

.used-contact-block a,
.used-map-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.used-contact-icon {
  position: relative;
  width: 36px;
  height: 36px;
  color: var(--green);
}

.used-contact-icon-person::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 11px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.used-contact-icon-person::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 2px;
  width: 28px;
  height: 14px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.used-contact-icon-pin::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.used-contact-icon-pin::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.reveal-on-scroll {
  opacity: 0;
  transform:
    translate3d(var(--reveal-x, 0), var(--reveal-y, 42px), 0)
    scale(.94);
  transform-origin: center bottom;
  transition:
    opacity .72s ease,
    transform .86s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed,
.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.used-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.footer {
  overflow: hidden;
  color: #fff;
  background: #474746;
}

.footer-inner {
  position: relative;
  width: min(100%, 1517px);
  min-height: 751px;
  margin: 0 auto;
  padding: 0;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 1004px;
  z-index: 0;
  width: 638px;
  height: 602px;
  background: url("../images/footer-mark-outline.svg") center / contain no-repeat;
  pointer-events: none;
}

.footer-logo {
  position: absolute;
  top: 48px;
  left: 52px;
  z-index: 1;
  width: 67px;
  height: auto;
  margin: 0;
  opacity: 1;
}

.footer-intro {
  position: absolute;
  top: 150px;
  left: 162px;
  z-index: 1;
  width: 1188px;
}

.footer-intro h2 {
  margin: 0 0 29px;
  font-size: 20px;
  line-height: 23px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-intro p {
  max-width: 1188px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.footer-read-more {
  display: inline-block;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-columns {
  position: absolute;
  top: 366px;
  left: 162px;
  z-index: 1;
  display: grid;
  grid-template-columns: 335px 398px 393px;
  gap: 31px;
  width: 1188px;
  margin: 0;
}

.footer-columns h3 {
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 23px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-columns p {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.55;
}

.footer-columns strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-address p:last-child,
.footer-contact p:last-child {
  margin-top: 27px;
  font-weight: 800;
}

.footer a {
  color: inherit;
}

.footer-bottom {
  position: absolute;
  top: 668px;
  left: 40px;
  right: 45px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 0;
  padding-top: 29px;
  border-top: 2px solid rgba(255, 255, 255, .9);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-bottom a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1400px) {
  .footer-inner {
    overflow: hidden;
    min-height: 0;
    padding: 48px 24px 36px;
  }

  .footer-inner::before {
    top: 20px;
    right: -230px;
    left: auto;
    width: 520px;
    height: 491px;
    opacity: .65;
  }

  .footer-logo,
  .footer-intro,
  .footer-columns,
  .footer-bottom {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
  }

  .footer-logo {
    display: block;
    width: 67px;
    margin-bottom: 64px;
  }

  .footer-intro {
    max-width: 860px;
  }

  .footer-intro p {
    max-width: 860px;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-top: 82px;
  }

  .footer-bottom {
    margin-top: 82px;
  }
}

@media (max-width: 1180px) {
  body.nav-open,
  body.mega-open {
    overflow: hidden;
  }

  .header-bar {
    position: relative;
    min-height: 78px;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 88px 14px 20px;
  }

  .brand {
    flex: 0 1 auto;
    width: auto;
    max-width: calc(100vw - 104px);
  }

  .brand img {
    width: min(168px, calc(100vw - 116px));
  }

  .nav-toggle {
    position: absolute;
    top: 13px;
    right: 20px;
    z-index: 45;
    display: grid;
    margin-left: 0;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 36px;
    min-height: 0;
    padding: 34px 24px 46px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-primary,
  .nav-secondary {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-primary {
    border-top: 1px solid #dedede;
  }

  .nav-primary .nav-link,
  .nav-secondary a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid #dedede;
    font-size: 24px;
    line-height: 1.1;
  }

  .nav-secondary a {
    font-size: 18px;
    font-weight: 400;
  }

  .nav-primary a::after,
  .nav-link::after,
  .nav-secondary a::after {
    display: none;
  }

  .language {
    min-height: 58px;
  }

  .mega-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 35;
    min-height: 0;
    padding: 34px 24px 70px;
    overflow-y: auto;
  }

  .mega-close {
    top: 23px;
    right: 21px;
  }

  .mega-overview {
    margin: 0 48px 34px 0;
    font-size: 18px;
  }

  .mega-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mega-panel[data-panel="idro"] .mega-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .mega-panel[data-panel="agri"] .mega-brand-grid,
  .mega-panel[data-panel="import"] .mega-import-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega-columns h2 {
    margin-bottom: 14px;
  }

  .mega-columns a {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .mega-used-grid {
    grid-template-columns: 1fr;
  }

  .mega-used-grid a {
    grid-template-columns: 48px 1fr;
    min-height: 84px;
    padding: 16px;
  }
}

@media (max-width: 1180px) {
  html.nav-open,
  html.mega-open,
  body.nav-open,
  body.mega-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.nav-open .site-header,
  body.mega-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    overflow: visible;
  }

  body.nav-open .site-nav,
  body.mega-open .mega-menu {
    height: calc(100dvh - 78px);
    max-height: calc(100dvh - 78px);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 1180px) {
    body.nav-open .site-nav,
    body.mega-open .mega-menu {
      height: calc(100vh - 78px);
      max-height: calc(100vh - 78px);
    }
  }
}

@media (max-width: 860px) {
  body.nav-open,
  body.mega-open {
    overflow: hidden;
  }

  .header-bar {
    position: relative;
    min-height: 78px;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 88px 14px 20px;
  }

  .brand {
    flex: 0 1 auto;
    width: auto;
    max-width: calc(100vw - 104px);
  }

  .brand img {
    width: min(168px, calc(100vw - 116px));
  }

  .nav-toggle {
    display: grid;
    position: absolute;
    top: 13px;
    right: 20px;
    z-index: 45;
    margin-left: 0;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 36px;
    min-height: 0;
    padding: 34px 24px 46px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-primary,
  .nav-secondary {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-primary {
    border-top: 1px solid #dedede;
  }

  .nav-primary .nav-link,
  .nav-secondary a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid #dedede;
    font-size: 24px;
    line-height: 1.1;
  }

  .nav-secondary a {
    font-size: 18px;
    font-weight: 400;
  }

  .nav-primary a::after,
  .nav-link::after,
  .nav-secondary a::after {
    display: none;
  }

  .language {
    min-height: 58px;
  }

  .mega-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 35;
    min-height: 0;
    padding: 34px 24px 70px;
    overflow-y: auto;
  }

  .mega-close {
    top: 23px;
    right: 21px;
  }

  .mega-overview {
    margin: 0 48px 34px 0;
    font-size: 18px;
  }

  .mega-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mega-columns h2 {
    margin-bottom: 14px;
  }

  .mega-columns a {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .mega-used-grid a {
    grid-template-columns: 48px 1fr;
    min-height: 84px;
    padding: 16px;
  }

  .hero,
  .stats,
  .azienda-intro,
  .azienda-stats,
  .azienda-story,
  .azienda-division-grid,
  .azienda-green,
  .azienda-green-list,
  .azienda-timeline-grid,
  .division-grid,
  .archive-grid,
  .feed-grid,
  .brand-page,
  .mega-used-grid,
  .support-panel,
  .news-grid,
  .news-list-grid,
  .media-doc-grid,
  .media-video-grid,
  .media-gallery-grid,
  .media-figma-grid,
  .contact-overview,
  .contact-team-grid,
  .contatti-info,
  .contatti-form,
  .prefooter,
  .machine-list-grid,
  .machine-detail-grid,
  .used-card-grid,
  .used-browser,
  .used-detail-body,
  .used-detail-layout,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .used-detail-layout {
    width: min(100% - 48px, 760px);
    padding-top: 58px;
  }

  .used-detail-gallery {
    --used-detail-gallery-stage-height: clamp(340px, 62vw, 470px);
  }

  .used-detail-sidebar {
    padding-top: 24px;
  }

  .media-doc-card {
    grid-template-columns: 1fr;
  }

  .used-gallery-modal {
    padding: 14px;
  }

  .used-gallery-dialog {
    max-height: calc(100vh - 28px);
    padding: 12px;
  }

  .used-gallery-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .used-gallery-thumbs button {
    flex-basis: 92px;
  }

  .company-stats,
  .company-timeline {
    grid-template-columns: 1fr;
  }

  .azienda-hero {
    min-height: 560px;
  }

  .azienda-intro,
  .azienda-divisions,
  .azienda-green,
  .azienda-timeline {
    padding: 64px 24px;
  }

  .azienda-intro h2,
  .azienda-section-head h2,
  .azienda-story-copy h2,
  .azienda-green-copy h2 {
    font-size: 40px;
  }

  .azienda-stats {
    padding: 24px 24px 72px;
  }

  .azienda-stats article,
  .azienda-stats article:nth-child(1),
  .azienda-stats article:nth-child(2),
  .azienda-stats article:nth-child(3),
  .azienda-stats article:nth-child(4) {
    margin-top: 0;
  }

  .azienda-stats strong {
    font-size: 72px;
  }

  .azienda-stats p {
    font-size: 21px;
  }

  .azienda-story-media {
    min-height: 360px;
  }

  .azienda-story-copy {
    padding: 54px 24px 64px;
  }

  .azienda-division-card {
    min-height: 0;
  }

  .azienda-timeline-grid li {
    min-height: 220px;
  }

  .supporto-hero {
    min-height: 460px;
  }

  .supporto-hero::after {
    right: 0;
    width: 62%;
  }

  .supporto-hero-inner {
    min-height: 460px;
    padding: 28px 24px 46px;
  }

  .supporto-hero-media {
    right: -90px;
    width: 52%;
  }

  .supporto-hero-watermark {
    top: 34px;
    right: 54px;
    font-size: 22px;
  }

  .supporto-hero-copy {
    max-width: 360px;
    margin-top: 92px;
    margin-left: 0;
  }

  .supporto-hero h1 {
    font-size: 42px;
    white-space: normal;
  }

  .supporto-hero p {
    font-size: 18px;
  }

  .supporto-hero.azienda-figma-hero {
    min-height: 460px;
  }

  .used-detail-hero {
    height: auto;
    min-height: 340px;
    padding: 0;
  }

  .used-detail-hero .detail-hero-media img {
    width: 62%;
  }

  .used-detail-hero .breadcrumb {
    top: 28px;
    left: 24px;
    flex-wrap: wrap;
    max-width: calc(100% - 146px);
  }

  .used-detail-hero .detail-hero-copy {
    top: 128px;
    left: 24px;
    max-width: calc(100% - 48px);
    margin: 0;
  }

  .used-detail-hero h1 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .used-detail-hero .used-hero-mark {
    top: 28px;
    right: 28px;
  }

  .used-description,
  .used-detail-specs dt,
  .used-detail-specs dd {
    font-size: 18px;
  }

  .supporto-content {
    width: calc(100% - 48px);
    padding: 54px 0 72px;
  }

  .supporto-intro {
    margin-bottom: 52px;
  }

  .supporto-intro p {
    font-size: 17px;
  }

  .supporto-service-list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .supporto-service {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px 0;
    text-align: left;
  }

  .supporto-service:nth-last-child(-n+2) {
    border-bottom: 2px solid #f1f1f1;
  }

  .supporto-service:last-child {
    border-bottom: 0;
  }

  .supporto-service-icon {
    place-items: start center;
    width: auto;
    min-height: 64px;
    margin-bottom: 0;
  }

  .supporto-service-icon img {
    max-width: 64px;
    max-height: 64px;
  }

  .supporto-service:nth-child(1) .supporto-service-icon img,
  .supporto-service:nth-child(2) .supporto-service-icon img,
  .supporto-service:nth-child(3) .supporto-service-icon img,
  .supporto-service:nth-child(4) .supporto-service-icon img,
  .supporto-service:nth-child(5) .supporto-service-icon img,
  .supporto-service:nth-child(6) .supporto-service-icon img {
    max-width: 64px;
    max-height: 64px;
  }

  .supporto-service-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: flex-start;
  }

  .supporto-service h2 {
    font-size: 15px;
  }

  .supporto-service-link {
    font-size: 14px;
  }

  .supporto-service p {
    font-size: 16px;
    font-weight: 400;
  }

  .contatti-content {
    padding: 42px 24px 72px;
  }

  .contatti-info {
    gap: 36px;
    margin-bottom: 54px;
  }

  .contatti-form-box {
    padding: 42px 24px 54px;
  }

  .contatti-form-wide,
  .contatti-privacy {
    grid-column: auto;
  }

  .azienda-figma-content {
    width: calc(100% - 48px);
    padding: 54px 0 72px;
  }

  .azienda-figma-section h2,
  .azienda-history h2 {
    font-size: 28px;
  }

  .azienda-figma-content p,
  .azienda-figma-content li,
  .azienda-history-panel p {
    font-size: 16px;
  }

  .azienda-figma-photo {
    margin: 46px 0 58px;
  }

  .azienda-figma-section {
    margin-top: 52px;
  }

  .azienda-history summary {
    grid-template-columns: 23px 1fr 44px;
    column-gap: 18px;
    min-height: 86px;
    font-size: 30px;
  }

  .azienda-history-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 34px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 72px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .prefooter > div {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 38px 24px;
  }

  .social-icons,
  .prefooter .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .prefooter h2,
  .prefooter p {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .contatti-figma .contatti-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 42px 24px 72px;
  }

  .contatti-figma .contatti-info {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    margin-bottom: 54px;
  }

  .contatti-figma .contatti-address,
  .contatti-figma .contatti-direct,
  .contatti-figma .contatti-direct details {
    width: 100%;
    min-width: 0;
  }

  .contatti-figma .contatti-address h2,
  .contatti-figma .contatti-address p,
  .contatti-figma .contatti-address address,
  .contatti-figma .contatti-direct h2,
  .contatti-figma .contatti-direct p,
  .contatti-figma .contatti-direct a {
    overflow-wrap: anywhere;
  }

  .contatti-figma .contatti-direct summary {
    min-height: 64px;
    gap: 14px;
    padding: 14px 16px 14px 18px;
    font-size: 16px;
    line-height: 1.25;
  }

  .contatti-figma .contatti-direct summary::after {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 32px;
  }

  .contatti-figma .contatti-direct details > div {
    padding: 12px 18px 30px;
  }

  .contatti-figma .contatti-form-box {
    width: 100%;
    max-width: none;
    padding: 42px 20px 54px;
  }

  .contatti-figma .contatti-form-box h2 {
    font-size: 32px;
  }

  .contatti-figma .contatti-form-box > p {
    margin-bottom: 34px;
  }

  .contatti-figma .contatti-form {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .contatti-figma .contatti-form-wide,
  .contatti-figma .contatti-privacy {
    grid-column: 1;
  }

  .contatti-figma .contatti-privacy {
    align-items: flex-start;
  }

  .contatti-figma .contatti-privacy input {
    flex: 0 0 14px;
  }

  .contatti-figma .contatti-form button {
    justify-self: start;
  }

  .used-category-hero {
    height: auto;
    min-height: 360px;
    padding: 0;
  }

  .used-category-hero .breadcrumb {
    top: 24px;
    right: 24px;
    left: 24px;
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 48px);
    font-size: 13px;
    line-height: 1.25;
  }

  .used-category-hero h1 {
    top: 138px;
    right: 24px;
    left: 24px;
    width: auto;
    max-width: calc(100% - 48px);
    font-size: clamp(32px, 10.4vw, 42px);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .used-category-hero .used-hero-mark {
    top: 24px;
    right: 24px;
    font-size: 18px;
  }

  .used-filter-bar {
    padding: 26px 24px;
  }

  .used-filter-combos {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 342px;
  }

  .used-filter-combo {
    min-width: 0;
    width: 100%;
  }

  .used-filter-combo > summary,
  .used-filter-combo.is-disabled {
    min-height: 72px;
    padding: 12px 44px 12px 16px;
  }

  .used-filter-combo em {
    line-height: 1.22;
    overflow-wrap: normal;
    word-break: normal;
  }

  .used-filter-options {
    max-height: 280px;
  }

  .used-detail-hero {
    min-height: 360px;
  }

  .used-detail-hero .detail-hero-media img {
    width: 100%;
  }

  .used-detail-hero .breadcrumb {
    top: 24px;
    right: 104px;
    left: 16px;
    max-width: none;
    font-size: 13px;
    line-height: 1.25;
  }

  .used-detail-hero .detail-hero-copy {
    top: 122px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .used-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .used-detail-hero .used-hero-mark {
    top: 22px;
    right: 16px;
    font-size: 18px;
  }

  .used-detail-layout {
    width: calc(100% - 32px);
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .used-detail-gallery {
    --used-detail-gallery-stage-height: min(470px, 75vw);
    --used-detail-gallery-thumb-width: 94px;
    --used-detail-gallery-thumb-height: 65px;
    --used-detail-gallery-thumb-gap: 8px;
    --used-detail-gallery-arrow-width: 34px;
  }

  .used-detail-gallery-stage {
    aspect-ratio: 4 / 3;
  }

  .used-detail-thumbs {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .used-detail-thumb-list {
    grid-auto-columns: 94px;
    gap: 8px;
  }

  .used-share-button {
    margin: 34px 0 34px;
    font-size: 16px;
  }

  .used-share-button svg {
    width: 26px;
    height: 26px;
  }

  .used-description,
  .used-detail-specs dt,
  .used-detail-specs dd {
    font-size: 18px;
  }

  .used-detail-specs div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .used-detail-specs dd {
    text-align: left;
  }

  .used-top-specs dl {
    grid-template-columns: 1fr;
  }

  .used-contact-block {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
  }

  .used-contact-block p {
    font-size: 16px;
  }

  .used-gallery-lightbox-frame {
    width: 100vw;
    height: calc(100vh - 92px);
  }

  .used-gallery-lightbox-arrow {
    width: 48px;
    height: 72px;
  }

  .used-gallery-lightbox-prev {
    left: 4px;
  }

  .used-gallery-lightbox-next {
    right: 4px;
  }
}

.breadcrumb a {
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.breadcrumb strong,
.breadcrumb span {
  text-decoration: none;
}

:root {
  --casella-breadcrumb-x: clamp(24px, 2.78vw, 56px);
}

.agri-division-hero,
.idro-division-hero,
.idro-product-strip {
  padding-left: var(--casella-breadcrumb-x);
  padding-right: var(--casella-breadcrumb-x);
}

.used-hero .breadcrumb,
.used-category-hero .breadcrumb {
  left: var(--casella-breadcrumb-x);
}

.idro-product-strip .breadcrumb {
  width: auto;
  max-width: none;
  margin: 0;
}

@media (max-width: 1180px) {
  .agri-division-hero {
    min-height: 700px;
  }

  .agri-division-hero-copy {
    margin-left: 56px;
  }

  .agri-division-intro {
    max-width: 1195px;
    margin: 145px auto 0;
  }

  .agri-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agri-logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .idro-division-hero {
    min-height: 700px;
  }

  .idro-division-hero-copy {
    margin-left: 56px;
  }

  .idro-division-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .idro-category-box-grid,
  .idro-division-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .irrigatori-solution-row,
  .idro-division-story-row {
    gap: 42px;
  }

  .idro-product-showcase {
    grid-template-columns: 1fr;
    width: auto;
    max-width: min(760px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
  }

  .idro-product-card {
    height: auto;
    min-height: 0;
  }

  .idro-product-gallery {
    height: auto;
  }

  .idro-product-gallery-stage {
    height: clamp(340px, 62vw, 470px);
    flex-basis: clamp(340px, 62vw, 470px);
  }
}

@media (max-width: 860px) {
  .agri-division-hero {
    min-height: 620px;
    padding: 24px 24px 54px;
  }

  .agri-division-hero-media {
    width: 100%;
    opacity: .45;
    background:
      linear-gradient(90deg, rgba(0, 132, 61, .96) 0%, rgba(0, 132, 61, .88) 100%),
      url("../images/agri-division-hero-figma-art.png?v=20260713-3") right top / cover no-repeat;
  }

  .agri-division-claim {
    display: none;
  }

  .agri-division-hero-copy {
    max-width: calc(100vw - 48px);
    margin: 142px 0 0;
  }

  .agri-division-hero-copy h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .agri-division-hero-copy > p:not(.agri-division-kicker) {
    max-width: 340px;
    font-size: 22px;
  }

  .agri-brand-section,
  .agri-other-brands {
    padding-right: 24px;
    padding-left: 24px;
  }

  .agri-division-page .agri-brand-section {
    padding-top: 48px;
  }

  .agri-division-page .agri-brand-section.reveal-on-scroll,
  .agri-division-page .agri-other-brands.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .agri-division-intro {
    max-width: calc(100vw - 48px);
    margin: 58px 0 0;
    padding: 0;
  }

  .agri-brand-grid,
  .agri-logo-cloud {
    grid-template-columns: 1fr;
  }

  .agri-brand-card-logo {
    height: auto;
  }

  .agri-brand-card {
    min-height: 0;
  }

  .product-category-page .irrigatori-figma-hero.detail-hero {
    min-height: 560px;
    padding: 24px;
  }

  .product-category-page .irrigatori-figma-hero .detail-claim {
    top: 24px;
    right: 24px;
    font-size: 22px;
  }

  .product-category-page .irrigatori-figma-hero .detail-hero-copy {
    max-width: calc(100vw - 48px);
    margin: 158px 0 0;
  }

  .product-category-page .irrigatori-figma-hero .detail-hero-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .product-category-page .irrigatori-figma-hero .detail-hero-copy p {
    max-width: 340px;
    margin-top: 30px;
    font-size: 24px;
    line-height: 1.2;
  }

  .product-category-page.irrigatori-page .irrigatori-figma-hero .detail-hero-copy h1,
  .product-category-page.irrigatori-page .irrigatori-figma-hero .detail-hero-copy p {
    max-width: 100%;
    white-space: normal;
  }

  .product-category-page.irrigatori-page .irrigatori-figma-hero .detail-hero-copy h1 {
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 46px;
  }

  .product-category-page.irrigatori-page .irrigatori-figma-hero .detail-hero-copy p {
    font-size: clamp(20px, 5.4vw, 23px);
    line-height: 1.18;
  }

  .irrigatori-figma-intro {
    padding: 50px 24px 64px;
  }

  .irrigatori-figma-intro p {
    font-size: 18px;
  }

  .liquami-page .irrigatori-figma-intro,
  .liquami-page .irrigatori-solutions,
  .oltre-irrigazione-page .irrigatori-figma-intro,
  .oltre-irrigazione-page .irrigatori-solutions {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .liquami-page .irrigatori-figma-intro p,
  .liquami-page .irrigatori-solution-row,
  .liquami-page .irrigatori-solution-copy,
  .liquami-page .irrigatori-solution-copy p,
  .oltre-irrigazione-page .irrigatori-figma-intro p,
  .oltre-irrigazione-page .irrigatori-solution-row,
  .oltre-irrigazione-page .irrigatori-solution-copy,
  .oltre-irrigazione-page .irrigatori-solution-copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .liquami-page .irrigatori-figma-intro p,
  .liquami-page .irrigatori-solution-copy p,
  .oltre-irrigazione-page .irrigatori-figma-intro p,
  .oltre-irrigazione-page .irrigatori-solution-copy p {
    overflow-wrap: break-word;
  }

  .irrigatori-solutions {
    padding: 0 24px 72px;
  }

  .irrigatori-solution-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 52px;
  }

  .irrigatori-solution-row + .irrigatori-solution-row {
    padding-top: 52px;
  }

  .irrigatori-solution-media {
    height: 240px;
  }

  .irrigatori-solution-copy h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .irrigatori-solution-copy p {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .product-category-page .detail-hero {
    min-height: 532px;
    padding: 24px;
  }

  .product-category-page .breadcrumb {
    flex-wrap: wrap;
    max-width: calc(100% - 120px);
    font-size: 14px;
    line-height: 1.25;
  }

  .product-category-page .detail-claim {
    top: 24px;
    right: 24px;
    font-size: 22px;
  }

  .product-category-page .detail-hero-copy {
    max-width: calc(100vw - 48px);
    margin: 132px 0 0;
  }

  .product-category-page .detail-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .product-category-page .detail-hero p {
    max-width: 320px;
    margin-top: 28px;
    font-size: 25px;
    line-height: 1.18;
  }

  .idro-division-hero {
    min-height: 620px;
    padding: 24px 24px 54px;
  }

  .idro-division-hero::before,
  .idro-division-hero::after,
  .idro-division-claim {
    display: none;
  }

  .idro-division-hero-media {
    width: 100%;
    opacity: .45;
    background:
      linear-gradient(90deg, rgba(0, 132, 61, .96) 0%, rgba(0, 132, 61, .88) 100%),
      url("https://casella.it/wp-content/uploads/2026/06/idro-division-hero-figma-art.png") right top / cover no-repeat;
  }

  .idro-division-hero-copy,
  .idro-division-intro {
    margin-left: 0;
  }

  .idro-division-hero-copy {
    margin-top: 150px;
  }

  .idro-division-overview,
  .idro-division-category-section {
    padding: 52px 24px 64px;
  }

  .idro-division-story-section {
    padding: 22px 24px 72px;
  }

  .idro-division-story-grid {
    gap: 62px;
  }

  .idro-division-story-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .idro-division-story-row:nth-child(even) .idro-division-story-copy,
  .idro-division-story-row:nth-child(even) .idro-division-story-media {
    order: initial;
  }

  .idro-division-story-copy h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .idro-division-story-copy p {
    font-size: 18px;
  }

  .idro-division-story-media {
    height: 240px;
  }

  .idro-category-box-grid,
  .idro-division-card-grid {
    grid-template-columns: 1fr;
  }

  .idro-division-card {
    min-height: 0;
  }

  .idro-division-card-media {
    height: 240px;
  }

  .idro-division-card-copy {
    padding: 30px 28px 32px;
  }

  .idro-division-card-copy em {
    width: calc(100% + 56px);
    max-width: none;
    margin-right: -28px;
    margin-left: -28px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .irrigatori-page .detail-hero h1 {
    line-height: 46px;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .detail-hero h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-card-variants {
    margin-top: 20px;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-more {
    margin-top: 20px;
  }

  .product-category-page .machine-card-media {
    height: 220px;
  }

  .idro-product-strip {
    min-height: 130px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .idro-product-strip::before {
    width: 100%;
    opacity: .32;
  }

  .idro-product-strip .breadcrumb {
    flex-wrap: wrap;
    max-width: calc(100% - 104px);
    line-height: 1.25;
  }

  .idro-product-strip .detail-claim {
    right: 24px;
    width: 70px;
    font-size: 22px;
    text-align: right;
  }

  .idro-product-showcase {
    max-width: calc(100% - 32px);
    margin-top: 32px;
    padding-bottom: 54px;
  }

  .idro-product-card-main {
    padding: 30px 24px;
  }

  .idro-product-card h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .idro-product-summary {
    font-size: 22px;
  }

  .idro-product-gallery-stage {
    height: clamp(280px, 64vw, 470px);
    min-height: 0;
    flex-basis: clamp(280px, 64vw, 470px);
  }

  .idro-product-gallery-thumbs {
    flex-basis: 70px;
    min-height: 70px;
  }

  .idro-product-gallery-thumbs button {
    width: 104px;
    height: 70px;
  }

  .idro-product-description {
    max-width: calc(100% - 48px);
    padding-bottom: 38px;
  }

  .idro-product-request {
    max-width: calc(100% - 48px);
    margin-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .used-detail-layout {
    width: calc(100% - 32px);
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .used-detail-gallery-stage {
    aspect-ratio: 4 / 3;
  }

  .used-detail-thumbs {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .used-detail-thumb-list {
    grid-auto-columns: 94px;
    gap: 8px;
  }

  .used-share-button {
    margin: 34px 0 34px;
    font-size: 16px;
  }

  .used-share-button svg {
    width: 26px;
    height: 26px;
  }

  .used-description,
  .used-detail-specs dt,
  .used-detail-specs dd {
    font-size: 18px;
  }

  .used-detail-specs div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .used-detail-specs dd {
    text-align: left;
  }

  .used-top-specs dl {
    grid-template-columns: 1fr;
  }

  .used-contact-block {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
  }

  .used-contact-block p {
    font-size: 16px;
  }

  .used-gallery-lightbox-frame {
    width: 100vw;
    height: calc(100vh - 92px);
  }

  .used-gallery-lightbox-arrow {
    width: 48px;
    height: 72px;
  }

  .used-gallery-lightbox-prev {
    left: 4px;
  }

  .used-gallery-lightbox-next {
    right: 4px;
  }
}

@media (max-width: 640px) {
  .used-detail-hero {
    min-height: 372px;
  }

  .used-detail-hero .detail-hero-copy {
    top: 138px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .used-detail-hero h1 {
    width: auto;
    max-width: 100%;
    font-size: clamp(25px, 7.2vw, 30px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 1180px) {
  .underground-systems-lead,
  .liquid-injection-lead,
  .liquid-ripper-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .underground-process-list,
  .liquid-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .underground-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .prod-cat-impianti-sotterranei .detail-hero-media img,
  .prod-cat-interramento-liquami .detail-hero-media img,
  .prod-cat-sistemi-ombelicali .detail-hero-media img,
  .prod-cat-rulli-compattatori-lisci .detail-hero-media img,
  .prod-cat-rulli-compattatori-cambridge .detail-hero-media img,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-media img {
    width: 100%;
    min-width: 0;
    opacity: .48;
  }

  .prod-cat-impianti-sotterranei .detail-hero-copy,
  .prod-cat-interramento-liquami .detail-hero-copy,
  .prod-cat-sistemi-ombelicali .detail-hero-copy,
  .prod-cat-rulli-compattatori-lisci .detail-hero-copy,
  .prod-cat-rulli-compattatori-cambridge .detail-hero-copy,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero-copy {
    max-width: calc(100vw - 48px);
    margin: 132px 0 0;
  }

  .prod-cat-impianti-sotterranei .detail-hero h1,
  .prod-cat-interramento-liquami .detail-hero h1,
  .prod-cat-sistemi-ombelicali .detail-hero h1,
  .prod-cat-rulli-compattatori-lisci .detail-hero h1,
  .prod-cat-rulli-compattatori-cambridge .detail-hero h1,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .prod-cat-interramento-liquami .detail-hero h1 {
    font-size: clamp(34px, 11.2vw, 52px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .prod-cat-rulli-compattatori-lisci .detail-hero h1,
  .prod-cat-rulli-compattatori-cambridge .detail-hero h1,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero h1 {
    font-size: clamp(36px, 10.8vw, 48px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .prod-cat-impianti-sotterranei .detail-hero p,
  .prod-cat-interramento-liquami .detail-hero p,
  .prod-cat-sistemi-ombelicali .detail-hero p,
  .prod-cat-rulli-compattatori-lisci .detail-hero p,
  .prod-cat-rulli-compattatori-cambridge .detail-hero p,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-hero p {
    max-width: 340px;
    margin-top: 28px;
    font-size: 24px;
    line-height: 1.2;
  }

  .prod-cat-impianti-sotterranei .detail-body,
  .prod-cat-interramento-liquami .detail-body,
  .prod-cat-sistemi-ombelicali .detail-body,
  .prod-cat-rulli-compattatori-lisci .detail-body,
  .prod-cat-rulli-compattatori-cambridge .detail-body,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-body {
    min-height: 0;
    padding: 54px 24px 38px;
  }

  .prod-cat-impianti-sotterranei .detail-copy-block,
  .prod-cat-interramento-liquami .detail-copy-block,
  .prod-cat-sistemi-ombelicali .detail-copy-block,
  .prod-cat-rulli-compattatori-lisci .detail-copy-block,
  .prod-cat-rulli-compattatori-cambridge .detail-copy-block,
  .prod-cat-rimorchi-ribaltabili-pomodoro .detail-copy-block {
    width: 100%;
    max-width: 100%;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-list-section,
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-list-section,
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-list-section,
  .prod-cat-carrelli .machine-list-section,
  .prod-cat-centraline .machine-list-section,
  .prod-cat-altri-optional .machine-list-section,
  .prod-cat-gruppi-motopompa .machine-list-section,
  .prod-cat-sistemi-ombelicali .machine-list-section,
  .prod-cat-rulli-compattatori-lisci .machine-list-section,
  .prod-cat-rulli-compattatori-cambridge .machine-list-section,
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-list-section,
  .prod-cat-sistemi-irrigazione-a-goccia .machine-list-section {
    padding: 48px 24px 76px;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-list-grid,
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-list-grid,
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-list-grid,
  .prod-cat-carrelli .machine-list-grid,
  .prod-cat-centraline .machine-list-grid,
  .prod-cat-altri-optional .machine-list-grid,
  .prod-cat-gruppi-motopompa .machine-list-grid,
  .prod-cat-sistemi-ombelicali .machine-list-grid,
  .prod-cat-rulli-compattatori-lisci .machine-list-grid,
  .prod-cat-rulli-compattatori-cambridge .machine-list-grid,
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-list-grid,
  .prod-cat-sistemi-irrigazione-a-goccia .machine-list-grid {
    grid-template-columns: minmax(0, 100%);
    gap: 28px;
    width: min(100%, 343px);
    max-width: 343px;
    justify-content: center;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-card,
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-card,
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-card,
  .prod-cat-carrelli .machine-card,
  .prod-cat-centraline .machine-card,
  .prod-cat-altri-optional .machine-card,
  .prod-cat-gruppi-motopompa .machine-card,
  .prod-cat-sistemi-ombelicali .machine-card,
  .prod-cat-rulli-compattatori-lisci .machine-card,
  .prod-cat-rulli-compattatori-cambridge .machine-card,
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-card,
  .prod-cat-sistemi-irrigazione-a-goccia .machine-card {
    width: 100%;
    min-height: 0;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-card-media,
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-card-media,
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-card-media,
  .prod-cat-carrelli .machine-card-media,
  .prod-cat-centraline .machine-card-media,
  .prod-cat-altri-optional .machine-card-media,
  .prod-cat-gruppi-motopompa .machine-card-media,
  .prod-cat-sistemi-ombelicali .machine-card-media,
  .prod-cat-rulli-compattatori-lisci .machine-card-media,
  .prod-cat-rulli-compattatori-cambridge .machine-card-media,
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-card-media,
  .prod-cat-sistemi-irrigazione-a-goccia .machine-card-media {
    width: calc(100% - 30px);
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-card > div,
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-card > div,
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-card > div,
  .prod-cat-carrelli .machine-card > div,
  .prod-cat-centraline .machine-card > div,
  .prod-cat-altri-optional .machine-card > div,
  .prod-cat-gruppi-motopompa .machine-card > div,
  .prod-cat-sistemi-ombelicali .machine-card > div,
  .prod-cat-rulli-compattatori-lisci .machine-card > div,
  .prod-cat-rulli-compattatori-cambridge .machine-card > div,
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-card > div,
  .prod-cat-sistemi-irrigazione-a-goccia .machine-card > div {
    min-height: 0;
    padding-bottom: 0;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-irrigatori-con-motopompa-incorporata .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-irrigatori-con-recupero-a-turbina .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-carrelli .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-centraline .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-altri-optional .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-gruppi-motopompa .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-sistemi-ombelicali .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-rulli-compattatori-lisci .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-rulli-compattatori-cambridge .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-rimorchi-ribaltabili-pomodoro .machine-card > div > p:not(.machine-card-variants),
  .prod-cat-sistemi-irrigazione-a-goccia .machine-card > div > p:not(.machine-card-variants) {
    min-height: 0;
  }

  .underground-systems-feature,
  .liquid-injection-feature {
    padding: 10px 24px 74px;
  }

  .underground-systems-lead-copy h2,
  .underground-advantages-head h2,
  .liquid-injection-lead-copy h2,
  .liquid-process-head h2,
  .liquid-ripper-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .underground-systems-map {
    min-height: 0;
  }

  .liquid-injection-media {
    min-height: 280px;
    padding: 0;
  }

  .liquid-process,
  .liquid-ripper-panel {
    margin-top: 58px;
  }

  .underground-process-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 52px;
  }

  .liquid-process-list,
  .liquid-ripper-features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .underground-process-list li,
  .liquid-process-list li,
  .liquid-ripper-features article {
    min-height: 0;
  }

  .liquid-ripper-panel {
    padding: 26px 22px;
  }

  .underground-advantages {
    margin-top: 58px;
  }

  .underground-advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .underground-advantages-grid article {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .agri-brand-intro,
  .import-brand-intro,
  .agri-brand-contact {
    grid-template-columns: 1fr;
  }

  .agri-brand-solution-body,
  .import-brand-solution-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .agri-brand-solution-card img,
  .import-brand-solution-card img {
    max-width: 560px;
  }

  .agri-brand-solution-list,
  .import-brand-solution-list {
    gap: 0;
  }

  .agri-brand-solution-card + .agri-brand-solution-card,
  .import-brand-solution-card + .import-brand-solution-card {
    margin-top: 58px;
    padding-top: 58px;
  }

  .agri-brand-solution-card:last-child,
  .import-brand-solution-card:last-child {
    padding-bottom: 58px;
  }

  .agri-brand-solution-actions,
  .import-brand-solution-actions,
  .agri-brand-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .agri-brand-hero,
  .import-brand-hero {
    min-height: 520px;
  }

  .agri-brand-hero-media,
  .import-brand-hero-media {
    width: 68%;
    opacity: .62;
  }

  .agri-brand-hero::after,
  .import-brand-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 132, 61, 1) 0%,
        rgba(0, 132, 61, .96) 55%,
        rgba(0, 132, 61, .74) 82%,
        rgba(0, 132, 61, .42) 100%
      ),
      linear-gradient(180deg, rgba(0, 132, 61, .08) 0%, rgba(0, 132, 61, .4) 100%);
  }

  .agri-brand-hero .breadcrumb,
  .import-brand-hero .breadcrumb {
    top: 28px;
    left: 24px;
    flex-wrap: wrap;
    max-width: calc(100% - 48px);
  }

  .agri-brand-claim,
  .import-brand-claim {
    top: 80px;
    right: 28px;
    font-size: 20px;
  }

  .agri-brand-hero-copy,
  .import-brand-hero-copy {
    top: 220px;
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .agri-brand-hero-copy h1,
  .import-brand-hero-copy h1 {
    margin-bottom: 26px;
    font-size: 46px;
  }

  .agri-brand-hero-copy p,
  .import-brand-hero-copy p {
    max-width: 520px;
    font-size: 20px;
  }

  .agri-brand-intro,
  .import-brand-intro {
    padding: 42px 24px 28px;
  }

  .agri-brand-logo-panel,
  .import-brand-logo-panel {
    min-height: 141px;
  }

  .agri-brand-solutions,
  .import-brand-solutions {
    padding: 34px 24px 70px;
  }

  .agri-brand-solution-card h2,
  .import-brand-solution-card h2 {
    font-size: 32px;
  }

  .agri-brand-contact {
    padding-bottom: 78px;
  }
}

@media (max-width: 640px) {
  .agri-brand-hero,
  .import-brand-hero {
    min-height: 480px;
  }

  .agri-brand-hero-media,
  .import-brand-hero-media {
    width: 92%;
  }

  .agri-brand-claim,
  .import-brand-claim {
    top: 84px;
    right: 22px;
  }

  .agri-brand-hero-copy h1,
  .import-brand-hero-copy h1 {
    font-size: 40px;
  }

  .agri-brand-hero-copy p,
  .import-brand-hero-copy p {
    font-size: 18px;
  }

  .agri-brand-logo-panel,
  .import-brand-logo-panel {
    min-height: 120px;
  }

  .agri-brand-solution-actions,
  .import-brand-solution-actions,
  .agri-brand-contact-actions {
    display: grid;
  }

  .agri-brand-solution-actions .button,
  .import-brand-solution-actions .button,
  .agri-brand-contact-actions .button {
    width: 100%;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .prefooter > div {
    grid-template-columns: minmax(0, 1fr);
    justify-content: start;
    justify-items: start;
    column-gap: 0;
    row-gap: 22px;
    min-width: 0;
    padding: 38px 28px;
  }

  .prefooter h2,
  .prefooter p,
  .social-icons,
  .prefooter .button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }

  .social-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .prefooter .button {
    width: fit-content;
    max-width: 100%;
    justify-self: start;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .agri-brand-solutions,
  .import-brand-solutions,
  .agri-brand-solution-list,
  .import-brand-solution-list,
  .agri-brand-solution-card,
  .import-brand-solution-card,
  .agri-brand-solution-body,
  .import-brand-solution-body,
  .agri-brand-solution-copy,
  .import-brand-solution-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .agri-brand-solution-body,
  .import-brand-solution-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .agri-brand-solution-card img,
  .import-brand-solution-card img {
    width: 100%;
    max-width: 100%;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .detail-hero,
  .prod-cat-irrigatori-con-motopompa-incorporata .detail-hero,
  .prod-cat-irrigatori-con-recupero-a-turbina .detail-hero,
  .prod-cat-carrelli .detail-hero,
  .prod-cat-centraline .detail-hero,
  .prod-cat-altri-optional .detail-hero,
  .prod-cat-gruppi-motopompa .detail-hero,
  .prod-cat-sistemi-irrigazione-a-goccia .detail-hero,
  .import-subcat-hero,
  .agri-brand-hero,
  .import-brand-hero,
  .supporto-hero,
  .news-single-hero {
    overflow: hidden;
  }

  .prod-cat-irrigatori-con-recupero-a-motore .detail-hero-media img,
  .prod-cat-irrigatori-con-motopompa-incorporata .detail-hero-media img,
  .prod-cat-irrigatori-con-recupero-a-turbina .detail-hero-media img,
  .prod-cat-carrelli .detail-hero-media img,
  .prod-cat-centraline .detail-hero-media img,
  .prod-cat-altri-optional .detail-hero-media img,
  .prod-cat-gruppi-motopompa .detail-hero-media img,
  .prod-cat-sistemi-irrigazione-a-goccia .detail-hero-media img,
  .import-subcat-hero-media,
  .import-subcat-hero-media img,
  .agri-brand-hero-media,
  .import-brand-hero-media,
  .supporto-hero-media,
  .news-single-hero .detail-hero-media img {
    min-width: 0;
    max-width: 100%;
  }

  .supporto-hero-media {
    right: 0;
  }

  .prefooter,
  .footer {
    overflow: hidden;
  }

  .prefooter.reveal-on-scroll,
  .prefooter > div.reveal-on-scroll,
  .footer-inner.reveal-on-scroll {
    --reveal-x: 0 !important;
  }

  .prefooter,
  .prefooter > div,
  .footer-inner {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .reveal-on-scroll {
    --reveal-x: 0 !important;
  }

  .prefooter > div,
  .footer-inner,
  .footer-intro,
  .footer-columns,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .prefooter > div {
    justify-content: start;
    padding-right: 24px;
    padding-left: 24px;
  }

  .prefooter .button {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .agri-brand-solutions,
  .import-brand-solutions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-bottom {
    gap: 18px;
    margin-top: 56px;
  }

  .footer-bottom nav {
    gap: 12px 16px;
  }
}

/* Keep the forced desktop preview stable on iPad even when Safari applies tablet breakpoints. */
body.is-desktop-preview .header-bar {
  position: static;
  height: 100px;
  min-height: 100px;
  justify-content: flex-start;
  gap: 32px;
  padding: 0 40px;
}

body.is-desktop-preview .brand {
  flex: 0 0 212px;
  width: 212px;
  max-width: none;
}

body.is-desktop-preview .brand img {
  width: 212px;
}

body.is-desktop-preview .nav-toggle {
  display: none;
}

body.is-desktop-preview .site-nav {
  position: static;
  inset: auto;
  z-index: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 38px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
}

body.is-desktop-preview .nav-primary,
body.is-desktop-preview .nav-secondary {
  flex-direction: row;
  align-items: center;
  width: auto;
  gap: 30px;
  border-top: 0;
}

body.is-desktop-preview .nav-primary {
  flex: 0 0 auto;
  gap: 25px;
}

body.is-desktop-preview .nav-primary .nav-link,
body.is-desktop-preview .nav-secondary a {
  display: inline-flex;
  width: auto;
  min-height: 0;
  align-items: center;
  border-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

body.is-desktop-preview .nav-primary .nav-link {
  font-size: 18px;
  font-weight: 700;
}

body.is-desktop-preview .nav-primary a::after,
body.is-desktop-preview .nav-link::after,
body.is-desktop-preview .nav-secondary a::after {
  display: block;
}

body.is-desktop-preview .language {
  min-height: 0;
}

body.is-desktop-preview .mega-menu {
  position: fixed;
  inset: auto 0 auto 0;
  top: 100px;
  z-index: 60;
  min-height: 364px;
  max-height: calc(100vh - 100px);
  padding: 48px 152px 70px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.is-desktop-preview .mega-close {
  top: 38px;
  right: 47px;
}

body.is-desktop-preview .mega-overview {
  margin: 0 0 40px;
  font-size: 17px;
}

body.is-desktop-preview .mega-columns {
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 86px;
  max-width: 1210px;
}

body.is-desktop-preview .mega-panel[data-panel="idro"] .mega-columns {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 62px;
  max-width: 1720px;
}

body.is-desktop-preview .mega-panel[data-panel="agri"] .mega-brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px 104px;
  max-width: 1440px;
}

body.is-desktop-preview .mega-panel[data-panel="import"] .mega-import-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
  max-width: 1617px;
}

body.is-desktop-preview .mega-columns h2 {
  margin-bottom: 19px;
}

body.is-desktop-preview .mega-columns a {
  margin-bottom: 17px;
}
