:root {
  --black: #080A0D;
  --graphite: #15181D;
  --card: #1A1D22;
  --yellow: #F5A400;
  --orange: #F58200;
  --white: #FFFFFF;
  --light: #F4F4F4;
  --text: #1B1E23;
  --muted: #737781;
  --max: 1180px;
  --title: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.jowilsa-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(8, 10, 13, .98), rgba(8, 10, 13, .91));
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s ease, height .25s ease;
}
.jowilsa-header.is-scrolled { box-shadow: 0 12px 32px rgba(0,0,0,.28); }
.brand img { width: 190px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.quote-btn,
.primary-btn,
.secondary-btn,
.outline-btn,
.dark-link,
.jowilsa-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.quote-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #090909;
}
.quote-btn:hover,
.primary-btn:hover,
.jowilsa-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(245, 130, 0, .24);
}
.quote-btn:active,
.primary-btn:active,
.secondary-btn:active,
.outline-btn:active,
.dark-link:active,
.jowilsa-cta a:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}
.btn-icon {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 2px solid #0b0b0b;
  border-radius: 4px;
  position: relative;
}
.btn-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 5px;
  left: 2px;
  top: 3px;
  border: 2px solid #0b0b0b;
  border-top: 0;
}
.menu-toggle { display: none; }

.jowilsa-hero {
  position: relative;
  min-height: 575px;
  padding-top: 78px;
  overflow: clip;
  background: var(--black);
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 78px 0 0;
}
.hero-bg {
  background-image: url("assets/hero-bg.png");
  background-position: center;
  background-size: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,10,13,.9) 0%, rgba(8,10,13,.56) 43%, rgba(8,10,13,.72) 100%),
    linear-gradient(0deg, rgba(8,10,13,.72), rgba(8,10,13,.18));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 497px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  align-items: center;
  gap: 56px;
  padding: 34px 24px 84px;
}
.jowilsa-hero-content { max-width: 620px; color: var(--white); }
.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px;
  border-radius: 50%;
  background: var(--yellow);
}
.jowilsa-hero h1 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(52px, 7.6vw, 78px);
  line-height: .98;
  text-transform: uppercase;
  color: var(--white);
  max-width: 670px;
}
.jowilsa-hero h1 strong {
  display: block;
  color: var(--yellow);
  font-weight: 700;
}
.hero-copy {
  max-width: 520px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.secondary-btn {
  color: var(--white);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.78);
}
.secondary-btn:hover { background: rgba(255,255,255,.14); }

.jowilsa-hero-stats {
  overflow: hidden;
  align-self: center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}
.stat-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 105px;
  padding: 18px 20px;
  color: var(--white);
}
.stat-item + .stat-item { border-top: 1px solid rgba(255,255,255,.18); }
.stat-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-item b {
  display: block;
  font-family: var(--title);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.stat-item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.jowilsa-client-bar {
  position: relative;
  z-index: 8;
  width: min(90%, var(--max));
  margin: -50px auto 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.client-title {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  align-items: center;
  color: #12151a;
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}
.client-title span {
  width: 4px;
  height: 42px;
  background: var(--orange);
}
.client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  align-items: center;
}
.client-logos span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #1e2b3d;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid #dddfe4;
}
.client-logos .texaco { color: #ee2024; font-size: 15px; }
.client-logos .coopegas { color: #158a45; font-size: 13px; }

.jowilsa-services,
.jowilsa-equipment {
  padding: 54px 24px 56px;
  background: linear-gradient(180deg, #fff, var(--light));
}
.section-heading p {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.12;
  text-transform: uppercase;
}
.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading.centered p::before,
.section-heading.centered p::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 9px 4px;
  background: var(--yellow);
}
.section-heading h2 span { color: var(--orange); }
.services-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.jowilsa-service-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 13, 18, .08);
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.jowilsa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(10, 13, 18, .13);
}
.jowilsa-service-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}
.service-body {
  position: relative;
  min-height: 164px;
  padding: 28px 24px 22px 78px;
}
.service-icon {
  position: absolute;
  left: 18px;
  top: -23px;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 4px;
  color: #111;
  font-family: var(--title);
  font-size: 21px;
}
.service-body h3 {
  margin: 0 0 9px;
  font-family: var(--title);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}
.service-body p {
  margin: 0 0 15px;
  color: #3f434b;
  font-size: 13px;
  line-height: 1.5;
}
.service-body a {
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-body a::after {
  content: " ->";
  color: var(--orange);
}

.jowilsa-projects {
  padding: 54px 24px 64px;
  background:
    linear-gradient(180deg, rgba(21,24,29,.94), rgba(8,10,13,.98)),
    var(--graphite);
  color: var(--white);
}
.section-row {
  max-width: var(--max);
  margin: 0 auto 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-row.light { color: var(--text); }
.outline-btn {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
  min-height: 40px;
  padding-inline: 18px;
}
.outline-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.dark-link {
  min-height: 40px;
  color: var(--text);
  border: 1px solid #cfd3da;
  padding-inline: 18px;
}
.dark-link:hover { background: var(--black); color: var(--white); }
.projects-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 0 18px;
  scrollbar-color: var(--yellow) rgba(255,255,255,.12);
}
.jowilsa-project-card {
  flex: 0 0 230px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.05);
  scroll-snap-align: start;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.jowilsa-project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,164,0,.5);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.jowilsa-project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.jowilsa-project-card div { padding: 18px 18px 22px; }
.jowilsa-project-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
  line-height: 1.25;
}
.jowilsa-project-card p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.jowilsa-project-card span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
}
.jowilsa-project-card span b { color: var(--orange); }

.equipment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 0 18px;
  scrollbar-color: var(--yellow) #e6e8ec;
}
.equipment-grid article {
  flex: 0 0 210px;
  min-height: 158px;
  display: grid;
  grid-template-rows: 105px auto;
  align-items: center;
  justify-items: center;
  padding: 14px 10px 16px;
  background: #fff;
  border: 1px solid #edf0f4;
  box-shadow: 0 10px 22px rgba(10,13,18,.06);
  scroll-snap-align: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}
.equipment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(245,164,0,.35);
  box-shadow: 0 18px 32px rgba(10,13,18,.11);
}
.equipment-grid img {
  max-height: 100px;
  object-fit: contain;
}
.equipment-grid h3 {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.16;
  text-align: center;
}

.jowilsa-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px minmax(240px, 430px) minmax(260px, 1fr) 220px;
  align-items: center;
  gap: 28px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
  color: #0a0a0a;
}
.jowilsa-cta::after {
  content: "";
  position: absolute;
  inset: auto -40px 0;
  height: 70px;
  opacity: .11;
  background: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 90px);
}
.cta-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--black);
  position: relative;
}
.cta-icon::before,
.cta-icon::after {
  content: "";
  position: absolute;
  left: 21px;
  right: 21px;
  top: 16px;
  bottom: 15px;
  border: 3px solid var(--yellow);
  border-radius: 4px;
}
.cta-icon::after {
  left: 14px;
  right: 14px;
  top: 35px;
  bottom: 18px;
  border-top: 0;
}
.jowilsa-cta h2 {
  position: relative;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}
.jowilsa-cta p {
  position: relative;
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.jowilsa-cta a {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.jowilsa-capability {
  padding: 64px 24px;
  background:
    linear-gradient(90deg, rgba(8,10,13,.95), rgba(21,24,29,.9)),
    var(--graphite);
  color: var(--white);
}
.capability-intro {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.capability-intro p {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.capability-intro h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}
.capability-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.capability-grid article {
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
  transition: background .28s ease, transform .28s ease, border-color .28s ease;
}
.capability-grid article:hover {
  background: rgba(245,164,0,.08);
  border-color: rgba(245,164,0,.34);
  transform: translateY(-3px);
}
.capability-grid span {
  color: var(--yellow);
  font-family: var(--title);
  font-size: 28px;
}
.capability-grid h3 {
  margin: 22px 0 10px;
  font-family: var(--title);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.capability-grid p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
}

.jowilsa-footer {
  padding: 34px 24px 18px;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 20% 0%, rgba(245,164,0,.1), transparent 30%),
    var(--black);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1.5fr .9fr 1fr 1.45fr;
  gap: 42px;
}
.footer-brand img { width: 190px; margin-bottom: 14px; }
.jowilsa-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--title);
  font-size: 18px;
  text-transform: uppercase;
}
.jowilsa-footer p,
.jowilsa-footer a {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}
.socials {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.socials a {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}
.map-placeholder {
  height: 58px;
  margin-top: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.62)),
    repeating-linear-gradient(35deg, #cfd5dc 0 1px, transparent 1px 22px);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.map-placeholder span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: translate(-50%, -65%) rotate(-45deg);
}
.jowilsa-footer small {
  display: block;
  max-width: var(--max);
  margin: 0 auto;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,.26);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
  will-change: transform;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, .42);
  border-radius: inherit;
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #1fb95a;
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
}
.whatsapp-float:active {
  transform: translateY(1px) scale(.94);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .jowilsa-header { grid-template-columns: 210px 1fr 190px; padding-inline: 24px; }
  .jowilsa-cta { grid-template-columns: 70px 1fr 1fr; }
  .jowilsa-cta a { grid-column: 2 / -1; justify-self: start; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .jowilsa-header {
    grid-template-columns: 1fr auto;
    height: 70px;
  }
  .brand img { width: 176px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }
  .main-nav,
  .quote-btn {
    display: none;
  }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #0d1015;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 45px rgba(0,0,0,.34);
  }
  .main-nav.is-open a {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav a::after { display: none; }
  .jowilsa-hero { padding-top: 70px; }
  .hero-bg,
  .hero-overlay { inset: 70px 0 0; }
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 66px;
    gap: 30px;
  }
  .jowilsa-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { min-height: 92px; }
  .stat-item:nth-child(2) { border-top: 0; border-left: 1px solid rgba(255,255,255,.18); }
  .stat-item:nth-child(4) { border-left: 1px solid rgba(255,255,255,.18); }
  .jowilsa-client-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
  }
  .client-logos {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .client-logos span { min-width: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-row { align-items: start; flex-direction: column; }
  .capability-intro { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .jowilsa-hero h1 { font-size: 45px; }
  .hero-inner { padding-inline: 18px; padding-bottom: 78px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .jowilsa-client-bar {
    width: calc(100% - 28px);
    margin-top: -44px;
    padding: 18px;
  }
  .jowilsa-hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 14px 12px;
  }
  .stat-item svg { width: 32px; height: 32px; }
  .stat-item b { font-size: 21px; }
  .stat-item span { font-size: 10px; }
  .services-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .jowilsa-project-card { flex-basis: 270px; }
  .equipment-grid article { flex-basis: 170px; }
  .jowilsa-services,
  .jowilsa-projects,
  .jowilsa-equipment,
  .jowilsa-capability { padding-inline: 18px; }
  .jowilsa-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px 32px;
  }
  .jowilsa-cta a { grid-column: auto; justify-self: stretch; }
  .capability-grid { grid-template-columns: 1fr; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
