/* Irma Dajlani — static replica (palette & typography from Elementor kit) */
:root {
  --color-primary: #f55b5d;
  --color-secondary: #47a6f0;
  --color-text: #414141;
  --color-accent: #f55b5d;
  --color-white: #ffffff;
  --color-pale-blue: #eaf4fd;
  --color-teal: #03b7b7;
  --color-mint: #ecffff;
  --font-display: "Dosis", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --container: 1366px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-header: -100px 23px 5px -22px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99999;
  padding: 12px 20px;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ——— Header ——— */
.site-header {
  box-shadow: var(--shadow-header);
  position: relative;
  z-index: 98;
}

.header-top {
  background: var(--color-teal);
}

.header-top__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
}

.header-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .header-tagline {
    display: none;
  }

  .header-top__inner {
    justify-content: center;
  }

  .social-row {
    flex: none;
    width: 100%;
    justify-content: center;
  }
}

.social-row {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.social-row--rounded {
  background: transparent;
  border-radius: 200px;
}

.social-icons {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  font-size: 29px;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.12) translateY(-2px);
}

.social-icons i {
  line-height: 1;
}

.header-main {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding: 10px 20px 14px;
}

.site-logo {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 10px;
}

.site-logo img {
  width: 73%;
  max-width: min(420px, 100%);
  height: auto;
}

@media (max-width: 767px) {
  .site-logo {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .site-logo img {
    width: 67%;
    margin: -30px auto 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.25s;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 91, 93, 0.35);
}

.btn--md {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  flex-direction: row-reverse;
  gap: 20px;
}

.btn--lg {
  font-size: 22px;
  width: 100%;
  text-align: center;
}

.btn--cta {
  font-size: 22px;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 5px;
}

.header-cta {
  flex: 0 0 auto;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Header CTA: non ereditare il 2rem generico di .btn (troppo grande) */
.header-cta .btn {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.1vw + 0.65rem, 1.35rem);
  font-weight: 500;
  padding: 11px 20px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .header-main {
    padding: 8px 20px 12px;
  }
}

@media (max-width: 767px) {
  .header-main {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
    padding: 0 16px 16px;
  }

  .header-cta .btn {
    font-size: 1.05rem;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    234deg,
    var(--color-mint) 44%,
    var(--color-white) 27%
  );
  /* Un solo “blocco” di respiro verticale (prima c’era anche 90px sul contenuto = troppo vuoto) */
  padding: clamp(1.25rem, 3.5vw, 2.5rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  opacity: 0.08;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: 0 16px;
}

.hero__content {
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0 10px 48px;
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
  }

  .hero__content {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 0.5rem 10px clamp(2rem, 4vw, 3rem) 10px;
  }
}

.hero__content-bg {
  position: relative;
}

.hero__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
}

.divider {
  display: block;
  height: 1px;
  border: 0;
  background: var(--color-teal);
  margin: 15px 0;
  max-width: 100%;
}

.divider--accent {
  background: var(--color-teal);
  height: 1.5px;
}

.divider--section {
  background: var(--color-pale-blue);
  height: 2px;
}

.divider--subtle {
  background: var(--color-teal);
  height: 1px;
}

.hero__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero__actions {
  margin-top: 24px;
}

.hero__figure {
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 10px 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero {
    padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 6%;
  }

  .hero__content {
    padding: 0;
    text-align: left;
  }

  .hero__lead {
    text-align: left;
  }

  .hero__title {
    font-size: 54px;
  }

  .hero__figure {
    padding: 1% 1% 8%;
  }
}

@media (min-width: 768px) {
  .hero__figure {
    flex: 1 1 55%;
    max-width: 55%;
    padding: 0 10px 0 20px;
  }
}

.hero__figure img {
  width: 76%;
  margin: 0 auto;
  border-radius: 10px 50px 50px 10px;
  box-shadow: 0 24px 60px rgba(3, 183, 183, 0.18);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.hero__figure img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 70px rgba(3, 183, 183, 0.22);
}

@media (max-width: 767px) {
  .hero__figure img {
    width: 100%;
    border-radius: 10px;
  }
}

/* ——— Sections ——— */
.section {
  overflow: hidden;
}

.section--gradient-a {
  background: linear-gradient(
    33deg,
    var(--color-teal) 47%,
    var(--color-mint) 100%
  );
  padding: 100px 0;
  color: var(--color-white);
}

.section--gradient-b {
  background: linear-gradient(
    234deg,
    var(--color-mint) 44%,
    var(--color-white) 27%
  );
  padding: 100px 0;
}

.section--ami {
  padding: 100px 0;
  background: var(--color-white);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 1024px) {
  .section--gradient-a {
    padding: 60px;
  }

  .section--gradient-b {
    padding: 60px 0;
  }

  .section--ami {
    padding: 60px;
  }
}

@media (max-width: 767px) {
  .section--gradient-a {
    padding: 50px 0;
  }

  .section--gradient-b {
    padding: 3%;
  }

  .section--ami {
    padding: 50px 0;
  }
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 54px);
  font-weight: 700;
  color: var(--color-primary);
}

.section--gradient-a .section-title {
  color: var(--color-white);
}

.section-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-teal);
}

/* Image + text blocks */
.media-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 50px;
  text-align: left;
}

.media-block:last-of-type {
  margin-bottom: 0;
}

.media-block__media {
  flex: 0 0 30%;
  max-width: 30%;
  margin-right: 50px;
}

.media-block__media img {
  border-radius: 100px;
  width: 100%;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  box-shadow: 0 16px 40px rgba(65, 65, 65, 0.12);
}

.media-block:hover .media-block__media img {
  transform: scale(1.03) rotate(-0.5deg);
  box-shadow: 0 22px 50px rgba(3, 183, 183, 0.2);
}

.media-block__body {
  flex: 1 1 0;
  min-width: 200px;
}

.media-block__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-primary);
}

.media-block__text {
  margin: 0;
  font-size: 17px;
}

@media (max-width: 767px) {
  .media-block {
    flex-direction: column;
  }

  .media-block__media {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px;
  }

  .media-block__media img {
    border-radius: 25px;
  }

  .media-block__title {
    font-size: 61px;
    line-height: 1;
    margin-bottom: 19px;
  }
}

/* CTA banner */
.cta-banner {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: -4%;
}

.cta-banner__link {
  display: block;
  position: relative;
  min-height: 439px;
  text-decoration: none;
  color: var(--color-white);
  overflow: hidden;
  border-radius: 0;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
}

.cta-banner__link:hover .cta-banner__bg {
  transform: scale(1.08);
}

.cta-banner__bg--vet {
  background-image: image-set(
    url("../assets/images/2024/02/veterinary-surgeon-applying-medical-bandage-on-cat-s-leg-in-clinic.webp")
      type("image/webp"),
    url("../assets/images/2024/02/veterinary-surgeon-applying-medical-bandage-on-cat-s-leg-in-clinic.jpg")
      type("image/jpeg")
  );
}

.text-underline {
  text-decoration: underline;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(65, 65, 65, 0.35);
  transition: background 0.35s;
}

.cta-banner__link:hover .cta-banner__overlay {
  background: rgba(0, 0, 0, 0.39);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  min-height: 439px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10% 10% 10% 8%;
  max-width: var(--container);
  margin: 0 auto;
}

.cta-banner__label {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
}

.cta-banner__headline {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 18ch;
}

.cta-banner__btn {
  display: inline-block;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.cta-banner__link:hover .cta-banner__btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .cta-banner__label {
    line-height: 4.6em;
    margin-bottom: 0;
  }

  .cta-banner__headline {
    font-size: 41px;
    line-height: 1.1;
  }
}

/* Icon feature rows (teal section) */
.icon-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 3%;
  padding: 0 8px;
}

.icon-feature {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 55px;
}

.icon-feature__icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  color: var(--color-white);
}

.icon-feature__icon img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1)
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.5s var(--ease-out);
}

.icon-feature:hover .icon-feature__icon img {
  transform: scale(1.06) translateY(-4px);
}

.icon-feature__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
}

.icon-feature__text {
  margin: 0;
  color: var(--color-white);
  max-width: 72ch;
}

@media (max-width: 767px) {
  .icon-features {
    padding: 0 30px 30px;
  }

  .icon-feature {
    gap: 16px;
    text-align: justify;
  }

  .icon-feature__icon {
    width: 143px;
    height: auto;
  }

  .icon-feature__title {
    font-size: 38px;
  }
}

/* AmiKo two-column */
.ami-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.ami-grid__gallery {
  flex: 1 1 100%;
  padding: 0 25px;
}

@media (min-width: 768px) {
  .ami-grid__gallery {
    flex: 0 0 46%;
    max-width: 46%;
  }
}

.gallery-masonry {
  display: grid;
  gap: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-masonry img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out), box-shadow 0.65s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gallery-masonry a:hover img,
.gallery-masonry figure:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 50px rgba(3, 183, 183, 0.2);
}

.ami-grid__copy {
  flex: 1 1 100%;
  padding: 5%;
}

@media (min-width: 768px) {
  .ami-grid__copy {
    flex: 0 0 54%;
    max-width: 54%;
  }
}

.ami-grid__copy .section-title {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .ami-grid__gallery {
    padding: 0 0 60px;
  }

  .ami-grid__copy {
    padding: 0 0 10px;
  }

  .ami-grid__copy .section-kicker,
  .ami-grid__copy .section-title,
  .ami-grid__copy .ami-text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .ami-grid {
    padding: 5%;
  }

  .ami-grid__gallery {
    padding: 0 0 50px;
  }

  .gallery-masonry {
    gap: 10px;
  }

  .ami-grid__copy {
    margin: 10px;
  }

  .section-kicker {
    font-size: 18px;
  }

  .ami-grid__copy .section-title {
    font-size: 52px;
  }
}

.ami-text p {
  margin: 0 0 1em;
}

.ami-text p:last-child {
  margin-bottom: 0;
}

.ami-cta-wrap {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .ami-cta-wrap {
    margin-top: 16px;
  }
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  padding: 60px 0 30px;
  background: linear-gradient(
    140deg,
    var(--color-teal) 24%,
    var(--color-mint) 100%
  );
  color: var(--color-white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("../assets/images/2023/08/1677165130232-scaled.webp") type("image/webp"),
    url("../assets/images/2023/08/1677165130232-scaled.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.footer__brand {
  flex: 1 1 100%;
  padding: 0 20px;
}

.footer__brand img {
  width: 56%;
  max-width: 360px;
  margin: -30px 0 0 -12px;
}

.footer__tagline {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.footer__links {
  flex: 1 1 100%;
  padding: 0 20px;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.25s, transform 0.3s var(--ease-out);
}

.footer-contact a:hover {
  color: var(--color-mint);
  transform: translateX(3px);
}

.footer-contact i {
  font-size: 25px;
}

.footer-legal {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-credit {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.footer-credit__link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  max-width: 100%;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  transition: opacity 0.25s ease, transform 0.3s var(--ease-out);
}

.footer-credit__link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-credit__text strong {
  font-weight: 700;
}

.footer-credit__logo {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

@media (max-width: 1024px) {
  .footer__brand,
  .footer__links {
    padding: 0 30px 40px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 5%;
  }

  .footer__brand {
    text-align: center;
    padding: 0 20px 10px;
  }

  .footer__brand img {
    width: 75%;
    margin: 0 auto;
  }

  .footer__tagline {
    text-align: justify;
    font-size: 15px;
    padding-bottom: 4%;
  }

  .footer__links {
    padding: 0 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0;
  }

  .footer-contact li {
    margin-bottom: 1.5rem;
  }

  .footer-contact a {
    font-size: 33px;
  }

  .footer-legal {
    text-align: center;
    font-size: 12px;
    padding: 1% 0 4%;
  }

  .footer-credit {
    padding: 16px 16px 22px;
  }

  .footer-credit__link {
    flex-direction: column;
    font-size: 14px;
  }

  .footer-credit__logo {
    width: 40px;
  }
}

@media (min-width: 768px) {
  .footer__brand {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer__links {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ——— Animations ——— */
.hero-animate .hero__title,
.hero-animate .hero__lead,
.hero-animate .hero__actions,
.hero-animate .hero__figure {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.hero-animate .hero .divider {
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.hero-animate--active .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.hero-animate--active .hero .divider {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.15s;
}

.hero-animate--active .hero__lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.hero-animate--active .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.hero-animate--active .hero__figure {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.2s;
}

.hero-animate .hero__figure {
  transform: translateY(36px) scale(0.97);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate .hero__title,
  .hero-animate .hero .divider,
  .hero-animate .hero__lead,
  .hero-animate .hero__actions,
  .hero-animate .hero__figure,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-banner__bg {
    transform: none !important;
  }

  .media-block__media img,
  .icon-feature__icon img,
  .gallery-masonry img {
    transition: none;
  }
}
