﻿/*
Theme Name: ESMA Modern
Theme URI: https://www.estintoriesma.it/
Author: ESMA Estintori
Description: Tema moderno per ESMA Estintori con home servizi, registro online, formazione e contatti gestibili da WordPress.
Version: 1.1.7
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: esma-modern
*/

:root {
  --bg: #f7f7f4;
  --panel: #ffffff;
  --ink: #181a1b;
  --muted: #5c6268;
  --line: rgba(24, 26, 27, 0.12);
  --red: #cf1f2a;
  --red-dark: #9d111a;
  --green: #0f6a52;
  --steel: #243746;
  --gold: #c69a37;
  --shadow: 0 24px 60px rgba(20, 22, 24, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(13, 16, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 250px;
  min-width: 200px;
  filter: none;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  filter: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 15px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 38px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-manutenzione.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.88) 0%, rgba(10, 12, 14, 0.54) 45%, rgba(10, 12, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 12, 14, 0.86) 0%, rgba(10, 12, 14, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff646d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 12vw, 9.2rem);
  line-height: 0.84;
  font-weight: 950;
  letter-spacing: 0;
  max-width: 100%;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 850;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(18, 20, 22, 0.12);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f4f4f1;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 62px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof div {
  padding: 18px;
  background: rgba(14, 16, 18, 0.42);
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 780px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.feature-copy p,
.coverage p,
.contact-copy p,
.security-panel p,
.training-band p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(18, 20, 22, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-body span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.service-body p {
  min-height: 104px;
  color: var(--muted);
  line-height: 1.6;
}

.service-body a {
  display: inline-flex;
  color: var(--red);
  font-weight: 850;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.feature-copy {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--steel);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.feature-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.training-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  color: #fff;
  background: var(--steel);
}

.training-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.training-band h2 {
  max-width: 760px;
  color: #fff;
}

.training-band .eyebrow {
  color: #ff7d85;
}

.training-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.course-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.course-focus-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.course-focus-copy strong {
  color: var(--steel);
}

.course-focus-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-focus-panel div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.course-focus-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.course-focus-panel span {
  display: block;
  margin-bottom: 8px;
  color: #ffd972;
  font-weight: 900;
  text-transform: uppercase;
}

.course-focus-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.62;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.security-layout > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 8px;
}

.security-panel {
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

dt {
  margin-bottom: 4px;
  color: var(--green);
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.coverage img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coverage-map {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #e9ece7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coverage-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  margin-top: 26px;
}

.faq {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.faq-grid article {
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding-top: 0;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--steel);
  font-weight: 800;
}

.contact-details a {
  color: var(--red);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-message {
  padding: 13px 14px;
  margin: 0;
  font-weight: 800;
  border-radius: 6px;
}

.form-message.is-success {
  color: #0b4b38;
  background: rgba(15, 106, 82, 0.12);
}

.form-message.is-error {
  color: #8d121a;
  background: rgba(207, 31, 42, 0.12);
}

.content-page {
  padding-top: 150px;
}

.content-page h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--ink);
}

.wp-content {
  max-width: 880px;
}

.wp-content p,
.wp-content li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.wp-content a {
  color: var(--red);
  font-weight: 800;
}

.content-article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.content-article h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.content-featured-image img {
  width: 100%;
  max-height: 520px;
  margin: 24px 0;
  object-fit: cover;
  border-radius: 8px;
}

.landing-3for {
  background: #f7f7f4;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: 84vh;
  padding: 160px clamp(22px, 6vw, 84px) 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.94) 0%, rgba(20, 26, 29, 0.84) 48%, rgba(207, 31, 42, 0.72) 100%),
    url("assets/images/campo-addestramento.jpg") center / cover no-repeat;
}

.landing-hero-copy {
  max-width: 850px;
}

.landing-hero h1 {
  max-width: 940px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
}

.landing-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.landing-summary {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.28);
}

.landing-summary div {
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.landing-summary strong,
.landing-summary span {
  display: block;
}

.landing-summary strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.landing-summary span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.landing-intro-grid,
.course-request {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.landing-intro-grid p,
.request-copy p,
.course-note {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.logistics-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.logistics-grid article,
.program-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logistics-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.logistics-grid h3,
.program-grid h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.logistics-grid p,
.program-grid li {
  color: var(--muted);
  line-height: 1.65;
}

.course-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.course-table th,
.course-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.course-table th {
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #f1f1ee;
}

.course-table td {
  color: var(--muted);
}

.course-table td:first-child,
.course-table td:last-child {
  color: var(--ink);
}

.course-table ul,
.program-grid ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

.course-note {
  max-width: 900px;
  margin-top: 18px;
}

.course-request {
  align-items: start;
  padding-top: 0;
}

.request-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--steel);
  font-weight: 800;
}

.request-details a {
  color: var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(207, 31, 42, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: #111416;
}

.site-footer img {
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-body p {
    min-height: auto;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.85rem;
  }

  .site-nav-menu {
    display: grid;
    gap: 0;
  }

  .site-nav-menu li {
    border-bottom: 1px solid var(--line);
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .site-nav {
    inset-block-start: 116px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 178px;
    min-width: 154px;
  }

  .nav-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    color: currentColor;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    background: #f3f3f0;
    border-color: var(--line);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 36px rgba(18, 20, 22, 0.14);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav-menu a {
    display: block;
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 13px 16px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 6.2rem);
  }

  .hero-proof,
  .intro,
  .feature-split,
  .training-band,
  .course-focus,
  .landing-hero,
  .landing-intro-grid,
  .course-request,
  .security-layout,
  .coverage,
  .faq-grid,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .feature-image img,
  .security-layout > img,
  .coverage-map {
    min-height: 320px;
  }

  .training-band {
    padding: 36px 18px;
  }

  .site-footer {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-content,
  .hero-proof {
    width: 100%;
    max-width: min(100%, 330px);
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-proof,
  .service-grid,
  .logistics-grid,
  .program-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .landing-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .landing-summary strong {
    font-size: 1.35rem;
  }

  .hero-proof div {
    padding: 14px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

