/* =========================================================
   PEXA GROUP LIMITED
   Property infrastructure / settlement-fabric identity
   HTML5 + CSS3 only
   ========================================================= */

:root {
  --mineral: #183a38;
  --mineral-deep: #102a28;
  --ivory: #f4f1e9;
  --charcoal: #1a2222;
  --copper: #ca7048;
  --copper-dark: #aa5938;
  --eucalyptus: #afc3bb;
  --pale-grey: #d9dfdc;
  --white: #ffffff;
  --brass: #c5a357;
  --muted: #68716f;
  --line: rgba(26,34,34,0.14);
  --light-line: rgba(255,255,255,0.18);

  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;

  --shell: min(1240px, calc(100% - 64px));
  --section-space: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--copper);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-170%);
  padding: 10px 14px;
  background: var(--charcoal);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,241,233,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.brand {
  display: inline-grid;
  line-height: 0.9;
  text-decoration: none;
}

.brand-main {
  color: var(--mineral);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--copper);
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 24px);
}

.desktop-nav a {
  position: relative;
  color: #5b6462;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--copper);
  transition: right 160ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.mobile-nav {
  display: none;
}

/* Typography + controls */

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #efb39c;
}

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

h1,
h2 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 840px;
  font-size: clamp(4rem, 7.2vw, 7.45rem);
}

h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.65rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--copper);
  color: white;
}

.button-primary:hover {
  background: var(--copper-dark);
}

.button-secondary {
  background: var(--mineral);
  color: white;
}

.button-light {
  background: white;
  color: var(--charcoal);
}

.button-outline {
  border-color: var(--charcoal);
  background: transparent;
}

.button-outline:hover {
  background: var(--charcoal);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: white;
}

/* Hero */

.hero {
  padding: 58px 0 76px;
  background:
    linear-gradient(rgba(24,58,56,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,58,56,0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 46px 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 7vw, 98px);
  align-items: center;
}

.hero-copy {
  padding: 46px 0;
}

.hero-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.hero-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.48);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 0 0 72px 78px;
}

.hero-photo {
  height: 570px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 93% 92%, 7% 100%);
}

.settlement-fabric {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 78%);
  background: var(--mineral);
  color: white;
  box-shadow: 0 18px 40px rgba(24,58,56,0.14);
}

.fabric-kicker {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid var(--light-line);
  color: #efb39c;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.fabric-row {
  display: grid;
  grid-template-columns: 40px 1fr 74px;
  gap: 12px;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--light-line);
}

.fabric-row:last-child {
  border-bottom: 0;
}

.fabric-row b {
  color: #efb39c;
  font-size: 0.62rem;
}

.fabric-row span {
  font-size: 0.82rem;
  font-weight: 800;
}

.fabric-row i {
  height: 2px;
  background: linear-gradient(90deg, var(--eucalyptus), transparent);
}

/* Intro */

.intro {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 58px;
}

.section-marker span {
  display: block;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 900;
}

.section-marker small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 920px;
}

.intro-columns {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 52px;
  margin-left: auto;
}

.intro-columns p {
  color: var(--muted);
}

.intro-columns .lead {
  color: var(--charcoal);
  font: 400 1.18rem/1.62 var(--serif);
}

/* Platforms */

.platforms {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading > p {
  color: var(--muted);
}

.platform-stack {
  border-top: 1px solid var(--line);
}

.platform-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 56px 0.72fr 1fr 210px;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.platform-index {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 900;
}

.platform-name p {
  margin-bottom: 4px;
  color: var(--mineral);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-name h3 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.platform-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.platform-row > a {
  justify-self: end;
  color: var(--mineral);
  font-size: 0.73rem;
  font-weight: 900;
  text-decoration: none;
}

/* Ecosystem */

.ecosystem {
  background: var(--eucalyptus);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.ecosystem-copy > p:not(.eyebrow) {
  color: #52625d;
}

.participant-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(24,58,56,0.18);
  border-left: 1px solid rgba(24,58,56,0.18);
}

.participant {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid rgba(24,58,56,0.18);
  border-bottom: 1px solid rgba(24,58,56,0.18);
  background: rgba(255,255,255,0.12);
}

.participant-main {
  background: var(--mineral);
  color: white;
}

.participant-wide {
  grid-column: 1 / -1;
  min-height: 170px;
}

.participant span {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 900;
}

.participant-main span {
  color: #efb39c;
}

.participant h3 {
  margin: 32px 0 8px;
  font-size: 1.3rem;
}

.participant p {
  margin: 0;
  color: #52625d;
  font-size: 0.83rem;
}

.participant-main p {
  color: rgba(255,255,255,0.64);
}

.workflow-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(24,58,56,0.18);
  border-left: 1px solid rgba(24,58,56,0.18);
}

.workflow-strip article {
  min-height: 190px;
  padding: 20px;
  border-right: 1px solid rgba(24,58,56,0.18);
  border-bottom: 1px solid rgba(24,58,56,0.18);
}

.workflow-strip span {
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 900;
}

.workflow-strip h3 {
  margin: 26px 0 7px;
}

.workflow-strip p {
  margin: 0;
  color: #52625d;
  font-size: 0.8rem;
}

/* Insights */

.insights {
  background: white;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.insights-photo {
  height: 600px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 93% 0, 100% 90%, 8% 100%);
}

.insights-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.insight-list {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.insight-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.insight-list article > span {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 900;
}

.insight-list h3 {
  margin-bottom: 5px;
}

.insight-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Innovation */

.innovation {
  background: var(--pale-grey);
}

.innovation-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.innovation-copy > p:not(.eyebrow) {
  color: #5a6462;
}

.innovation-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.innovation-principles article {
  min-height: 230px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.25);
}

.innovation-principles span {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 900;
}

.innovation-principles h3 {
  margin: 42px 0 8px;
  font-size: 1.35rem;
}

.innovation-principles p {
  margin: 0;
  color: #5a6462;
  font-size: 0.83rem;
}

/* Responsibility + careers */

.people-section {
  background: var(--ivory);
}

.people-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.responsibility-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
}

.responsibility-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.responsibility-list {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.responsibility-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.responsibility-list article > span {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 900;
}

.responsibility-list h3 {
  margin-bottom: 5px;
}

.responsibility-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.careers-panel {
  display: grid;
  grid-template-rows: 1.05fr 0.95fr;
  background: var(--mineral);
  color: white;
}

.careers-panel figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.careers-copy {
  padding: 30px;
}

.careers-copy .eyebrow {
  color: #efb39c;
}

.careers-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,0.64);
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.career-tags span {
  padding: 7px 9px;
  border: 1px solid var(--light-line);
  color: rgba(255,255,255,0.78);
  font-size: 0.67rem;
  font-weight: 800;
}

/* Investors + updates */

.investor-updates {
  background: white;
}

.investor-updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.investor-panel,
.updates-panel {
  padding: 34px;
}

.investor-panel {
  border: 1px solid var(--line);
}

.investor-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.investor-links {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.investor-links a {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.investor-links span {
  font-size: 0.9rem;
  font-weight: 800;
}

.investor-links strong {
  color: var(--copper);
  font-size: 0.66rem;
}

.updates-panel {
  background: var(--charcoal);
  color: white;
}

.updates-panel .eyebrow {
  color: #efb39c;
}

.updates-panel article {
  padding: 20px 0;
  border-top: 1px solid var(--light-line);
}

.updates-panel article > span {
  color: var(--eucalyptus);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.updates-panel h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
}

/* Contact */

.contact {
  background: var(--pale-grey);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.contact-copy {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(rgba(24,58,56,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,58,56,0.055) 1px, transparent 1px),
    var(--eucalyptus);
  background-size: 42px 42px;
}

.contact-copy > p:not(.eyebrow) {
  color: #52625d;
}

.contact-copy address {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding-left: 16px;
  border-left: 3px solid var(--copper);
  font-style: normal;
}

.contact-copy address span {
  color: #52625d;
}

.contact-form-card {
  padding: 34px;
  background: white;
  box-shadow: 0 18px 38px rgba(26,34,34,0.07);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(26,34,34,0.22);
  border-radius: 0;
  background: white;
  color: var(--charcoal);
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 11px;
}

.field textarea {
  min-height: 130px;
  padding: 10px 11px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.74rem;
}

/* Final CTA */

.final-cta {
  padding: 64px 0;
  background: var(--charcoal);
  color: white;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.final-cta h2 {
  color: white;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255,255,255,0.64);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

/* Footer */

.site-footer {
  padding: 48px 0 24px;
  background: #101615;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  gap: 52px;
}

.footer-brand {
  display: grid;
  align-content: start;
}

.footer-brand .brand-main {
  color: white;
}

.footer-brand .brand-sub {
  color: #efb39c;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  gap: 7px;
}

.footer-nav a,
.footer-bottom a {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.footer-address strong {
  margin-bottom: 7px;
}

.footer-address span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--light-line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.42);
  font-size: 0.7rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hidden-targets {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 42px, 1020px);
  }

  .hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .platform-row {
    grid-template-columns: 48px 0.8fr 1.1fr;
  }

  .platform-row > a {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: calc(100% - 34px);
    --section-space: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    display: block;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-track {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-nav-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    font-size: 0.67rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hero-grid,
  .intro-grid,
  .ecosystem-grid,
  .insights-grid,
  .innovation-grid,
  .people-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .workflow-strip {
    grid-template-columns: 1fr 1fr;
  }

  .investor-updates-grid {
    grid-template-columns: 1fr;
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-address {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--light-line);
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 26px);
    --section-space: 58px;
  }

  .site-header {
    position: relative;
    backdrop-filter: none;
  }

  .header-row {
    min-height: 72px;
  }

  .header-row .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.85rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 495px;
    padding-left: 0;
  }

  .hero-photo {
    height: 395px;
    clip-path: none;
  }

  .settlement-fabric {
    width: min(360px, 94%);
  }

  .intro-grid {
    gap: 20px;
  }

  .intro-columns,
  .participant-map,
  .innovation-principles,
  .workflow-strip,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .participant-wide {
    grid-column: auto;
  }

  .platform-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .platform-row > p,
  .platform-row > a {
    grid-column: 2;
  }

  .insights-photo {
    height: 420px;
    clip-path: none;
  }

  .final-actions {
    align-items: stretch;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-address {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 20px);
  }

  .brand-main {
    font-size: 1.04rem;
  }

  .brand-sub {
    font-size: 0.45rem;
  }

  .hero-visual {
    min-height: 455px;
  }

  .fabric-row {
    grid-template-columns: 34px 1fr 48px;
    padding-inline: 14px;
  }

  .responsibility-panel,
  .careers-copy,
  .investor-panel,
  .updates-panel,
  .contact-copy,
  .contact-form-card {
    padding: 26px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
