@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #023375;
  --navy-dark: #01265d;
  --navy-soft: #eaf2fb;
  --gold: #f7b20a;
  --gold-dark: #d99400;
  --gold-pale: #fff7dc;
  --white: #ffffff;
  --off-white: #fbfcfe;
  --ink: #172536;
  --muted: #657286;
  --line: #dce4ed;
  --shadow: 0 24px 70px rgba(2, 51, 117, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

.skip-link {
  background: var(--navy);
  border-radius: 0 0 10px 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  left: 0;
  padding: 12px 18px;
  position: absolute;
  top: 0;
  transform: translateY(-120%);
  transition: transform 150ms ease;
  z-index: 100;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(2, 51, 117, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 82px;
  padding: 0 clamp(22px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  justify-self: start;
  width: clamp(190px, 17vw, 255px);
}

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

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: #49576a;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-dark);
}

.header-button {
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  justify-self: end;
  padding: 12px 19px;
  transition: background 180ms ease, transform 180ms ease;
}

.header-button:hover,
.header-button:focus-visible {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(247, 178, 10, 0.16), transparent 25%),
    linear-gradient(135deg, var(--white) 0%, #f7faff 58%, #eef5fc 100%);
  display: grid;
  gap: clamp(40px, 6vw, 90px);
  grid-template-columns: 1.03fr 0.97fr;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: clamp(76px, 9vw, 128px) clamp(22px, 7vw, 108px);
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(2, 51, 117, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 51, 117, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 80%);
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  align-self: center;
  max-width: 710px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(247, 178, 10, 0.16);
  height: 7px;
  margin-right: 12px;
  width: 7px;
}

.hero h1,
.section-heading h2,
.about-heading h2,
.contact h2,
.product-copy h3 {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  margin: 0;
}

.hero h1 {
  font-size: clamp(54px, 6.2vw, 96px);
  margin-bottom: 30px;
}

.hero h1 em {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 800;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
  margin: 0 0 38px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 11px;
  justify-content: center;
  min-height: 51px;
  padding: 0 24px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

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

.button-secondary {
  background: var(--white);
  border-color: rgba(2, 51, 117, 0.22);
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--navy-soft);
}

.hero-note {
  align-items: center;
  border-top: 1px solid var(--line);
  color: #718096;
  display: flex;
  font-size: 13px;
  gap: 12px;
  margin: 52px 0 0;
  max-width: 540px;
  padding-top: 21px;
}

.hero-note span {
  color: var(--gold-dark);
}

.hero-visual {
  align-self: center;
  aspect-ratio: 1;
  justify-self: center;
  max-width: 610px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.visual-grid {
  background-color: rgba(255, 255, 255, 0.82);
  background-image:
    linear-gradient(rgba(2, 51, 117, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 51, 117, 0.055) 1px, transparent 1px);
  background-size: 35px 35px;
  border: 1px solid rgba(2, 51, 117, 0.09);
  border-radius: 50%;
  box-shadow: var(--shadow);
  inset: 4%;
  position: absolute;
}

.orbit {
  border: 1px solid rgba(2, 51, 117, 0.18);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(217, 148, 0, 0.34);
  content: "";
  height: 10px;
  position: absolute;
  width: 10px;
}

.orbit-large {
  height: 80%;
  width: 80%;
}

.orbit-large::before { left: 5%; top: 21%; }
.orbit-large::after { bottom: 9%; right: 15%; }

.orbit-small {
  border-style: dashed;
  height: 54%;
  width: 54%;
}

.orbit-small::before { right: 8%; top: 15%; }
.orbit-small::after { bottom: 4%; left: 26%; }

.center-node,
.product-node {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 51, 117, 0.13);
  box-shadow: 0 18px 48px rgba(2, 51, 117, 0.16);
  display: flex;
  flex-direction: column;
  position: absolute;
}

.center-node {
  align-items: center;
  border-radius: 50%;
  height: 180px;
  justify-content: center;
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}

.center-mark {
  align-items: center;
  background: var(--navy);
  border: 5px solid var(--gold-pale);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  height: 57px;
  justify-content: center;
  margin-bottom: 12px;
  width: 57px;
}

.center-node strong,
.product-node strong {
  color: var(--navy);
}

.center-node small,
.product-node small {
  color: var(--muted);
  margin-top: 5px;
}

.product-node {
  border-radius: 18px;
  padding: 19px;
  width: 188px;
}

.node-drishti { right: 0; top: 10%; }
.node-gradolearn { bottom: 8%; left: 0; }

.node-icon {
  align-items: center;
  background: var(--gold-pale);
  border-radius: 10px;
  color: var(--gold-dark);
  display: flex;
  font-size: 24px;
  height: 46px;
  justify-content: center;
  margin-bottom: 17px;
  width: 46px;
}

.node-status {
  background: var(--gold);
  border-radius: 999px;
  color: var(--navy-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
  padding: 5px 8px;
  position: absolute;
  right: 12px;
  text-transform: uppercase;
  top: 12px;
}

.section {
  padding: clamp(82px, 10vw, 138px) clamp(22px, 7vw, 108px);
}

.products {
  background: var(--white);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
  margin: 0 auto 58px;
  max-width: 1280px;
}

.section-heading h2,
.about-heading h2,
.contact h2 {
  font-size: clamp(40px, 4.4vw, 66px);
}

.section-heading > p,
.about-copy p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading > p {
  margin: 0 0 6px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
}

.drishti-card {
  background: var(--off-white);
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 610px;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 84px);
}

.product-labels {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.status {
  background: var(--gold);
  border-radius: 999px;
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.status-navy {
  background: var(--navy);
  color: var(--white);
}

.category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.product-kicker {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  margin: 0 0 8px;
}

.product-copy h3 {
  font-size: clamp(43px, 4vw, 62px);
  margin-bottom: 23px;
}

.product-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 27px;
  max-width: 540px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 33px;
}

.feature-tags span {
  background: var(--navy-soft);
  border-radius: 999px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 11px;
}

.text-link {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  width: max-content;
}

.text-link span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(2px, -2px);
}

.support-note {
  color: #8190a2;
  font-size: 11px;
  line-height: 1.5;
  margin: 14px 0 0;
  max-width: 430px;
}

.drishti-art {
  background:
    radial-gradient(circle at center, rgba(247, 178, 10, 0.2), transparent 32%),
    linear-gradient(145deg, #eef5fc, #fff9e8);
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.drishti-art::before {
  background-image: radial-gradient(rgba(2, 51, 117, 0.14) 0.8px, transparent 0.8px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.cosmic-ring {
  border: 1px solid rgba(2, 51, 117, 0.2);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { height: 230px; width: 230px; }
.ring-two { border-style: dashed; height: 390px; width: 390px; }
.ring-three { border-color: rgba(2, 51, 117, 0.09); height: 560px; width: 560px; }

.sun-core {
  align-items: center;
  background: radial-gradient(circle at 38% 35%, #ffda73, var(--gold) 48%, #dc9500 100%);
  border: 10px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  box-shadow: 0 16px 50px rgba(217, 148, 0, 0.28);
  color: var(--navy);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  height: 150px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
}

.star {
  color: var(--gold-dark);
  position: absolute;
}

.star-one { font-size: 22px; left: 15%; top: 18%; }
.star-two { font-size: 28px; right: 16%; top: 26%; }
.star-three { bottom: 15%; font-size: 16px; right: 27%; }

.insight {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 51, 117, 0.13);
  border-radius: 13px;
  box-shadow: 0 13px 34px rgba(2, 51, 117, 0.12);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 15px;
  position: absolute;
}

.insight span {
  color: var(--gold-dark);
  font-size: 9px;
  margin-right: 8px;
}

.insight-one { left: 8%; top: 49%; }
.insight-two { bottom: 20%; right: 7%; }

.gradolearn-card {
  background: var(--white);
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  min-height: 500px;
}

.gradolearn-art {
  align-items: center;
  background: linear-gradient(145deg, #eef6fd, #fff8dd);
  display: flex;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding: 52px;
  position: relative;
}

.gradolearn-art::before {
  border: 1px solid rgba(2, 51, 117, 0.12);
  border-radius: 50%;
  content: "";
  height: 500px;
  position: absolute;
  width: 500px;
}

.learning-window {
  background: var(--white);
  border: 1px solid rgba(2, 51, 117, 0.12);
  border-radius: 19px;
  box-shadow: var(--shadow);
  max-width: 390px;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  width: 100%;
  z-index: 2;
}

.window-bar {
  align-items: center;
  background: var(--navy);
  display: flex;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
}

.window-bar i {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.window-bar i:first-child { background: var(--gold); }

.window-content {
  padding: 27px;
}

.window-content small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.window-content > strong {
  color: var(--navy);
  font-size: 32px;
}

.progress {
  background: #e5ebf1;
  border-radius: 99px;
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
}

.progress span {
  background: var(--gold);
  display: block;
  height: 100%;
  width: 84%;
}

.chart {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  height: 90px;
  margin: 23px 0;
}

.chart i {
  background: var(--navy);
  border-radius: 4px 4px 0 0;
  flex: 1;
}

.chart i:nth-child(1) { height: 42%; opacity: 0.32; }
.chart i:nth-child(2) { height: 64%; opacity: 0.48; }
.chart i:nth-child(3) { height: 52%; opacity: 0.62; }
.chart i:nth-child(4) { height: 78%; opacity: 0.78; }
.chart i:nth-child(5) { background: var(--gold); height: 94%; }

.quiz {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #536176;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  margin-top: 9px;
  padding: 9px;
}

.quiz b {
  align-items: center;
  background: var(--navy-soft);
  border-radius: 7px;
  color: var(--navy);
  display: flex;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.floating-tag {
  background: var(--white);
  border: 1px solid rgba(2, 51, 117, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(2, 51, 117, 0.12);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  padding: 10px 15px;
  position: absolute;
  z-index: 3;
}

.tag-one { left: 5%; top: 19%; }
.tag-two { bottom: 15%; right: 5%; }

.about {
  background: var(--off-white);
  display: grid;
  gap: 65px 100px;
  grid-template-columns: 1.05fr 0.95fr;
}

.about-heading h2 {
  max-width: 760px;
}

.about-copy {
  align-self: end;
}

.about-copy p {
  margin: 0 0 20px;
}

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

.principles article {
  display: flex;
  gap: 21px;
  padding: 34px 34px 8px 0;
}

.principles article + article {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.principles article > span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  padding-top: 4px;
}

.principles h3 {
  color: var(--navy);
  font-size: 17px;
  margin: 0 0 9px;
}

.principles p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.contact {
  align-items: end;
  background: var(--white);
  display: grid;
  gap: 70px;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-copy > p {
  margin: 0 0 26px;
  max-width: 550px;
}

.contact-address {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin: 18px 0 0;
}

footer {
  align-items: center;
  background: #f4f7fa;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
  padding: 42px clamp(22px, 7vw, 108px) 30px;
}

.footer-brand {
  width: 230px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 11px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  border-top: 1px solid var(--line);
  color: #8090a2;
  font-size: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
}

@media (max-width: 1000px) {
  .hero,
  .section-heading,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
  }

  .drishti-card,
  .gradolearn-card {
    grid-template-columns: 1fr;
  }

  .gradolearn-art {
    grid-row: 2;
  }

  .section-heading {
    gap: 28px;
  }
}

@media (max-width: 740px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 17px;
  }

  .brand {
    width: 170px;
  }

  .main-nav {
    display: none;
  }

  .header-button {
    font-size: 10px;
    padding: 10px 13px;
  }

  .hero {
    min-height: auto;
    padding: 72px 20px 64px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 66px);
    letter-spacing: -1.3px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 400px;
    margin-top: 10px;
    width: 400px;
    max-width: 100%;
  }

  .center-node {
    height: 132px;
    width: 132px;
  }

  .center-mark {
    font-size: 22px;
    height: 42px;
    margin-bottom: 7px;
    width: 42px;
  }

  .center-node strong { font-size: 13px; }
  .center-node small { font-size: 9px; }

  .product-node {
    padding: 13px;
    width: 143px;
  }

  .product-node strong { font-size: 12px; }
  .product-node small { font-size: 9px; }
  .node-icon { font-size: 18px; height: 34px; margin-bottom: 10px; width: 34px; }
  .node-status { display: none; }
  .node-drishti { right: -3%; }
  .node-gradolearn { left: -3%; }

  .section {
    padding: 76px 18px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about-heading h2,
  .contact h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .product-card {
    border-radius: 21px;
  }

  .product-copy {
    padding: 38px 23px;
  }

  .product-copy h3 {
    font-size: 41px;
    letter-spacing: -1.3px;
  }

  .drishti-art {
    min-height: 430px;
  }

  .ring-one { height: 160px; width: 160px; }
  .ring-two { height: 275px; width: 275px; }
  .ring-three { height: 400px; width: 400px; }

  .sun-core {
    font-size: 21px;
    height: 112px;
    width: 112px;
  }

  .insight-one { left: 4%; }
  .insight-two { right: 4%; }

  .gradolearn-art {
    min-height: 430px;
    padding: 40px 25px;
  }

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

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

  .principles article + article {
    border-left: 0;
    padding-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 36px 20px 27px;
  }

  .copyright {
    grid-column: auto;
  }
}

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

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