:root {
  --ink: #0b0d10;
  --ink-2: #14171c;
  --paper: #ffffff;
  --paper-soft: #f6f1e8;
  --line: #e5ded1;
  --muted: #626872;
  --gold: #d6aa52;
  --gold-2: #d6aa52;
  --success: #247a4b;
  --danger: #8a5a16;
  --shadow: 0 18px 45px rgba(8, 10, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section--dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(214, 170, 82, 0.08), transparent 34%),
    var(--ink);
}

.section--soft {
  background: var(--paper-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-kicker,
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker::before,
.hero__kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
}

h1 .accent,
h2 .accent {
  color: var(--gold);
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 850;
}

.lead {
  max-width: 680px;
  color: #d9dce0;
  font-size: 19px;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background: rgba(11, 13, 16, 0.93);
  border-bottom: 1px solid rgba(214, 170, 82, 0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
  min-width: 176px;
  font-weight: 900;
  line-height: 1;
}

.brand__logo {
  display: block;
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -7px;
}

.mobile-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--ink);
  background: linear-gradient(180deg, #efc873, var(--gold));
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(214, 170, 82, 0.22);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: #efc873;
  box-shadow: 0 12px 24px rgba(214, 170, 82, 0.28);
  transform: translateY(-1px);
}

.btn--gold {
  color: var(--ink);
  background: linear-gradient(180deg, #efc873, var(--gold));
  box-shadow: 0 14px 28px rgba(214, 170, 82, 0.2);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  color: var(--ink);
  background: #efc873;
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn--dark {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.btn--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(9, 11, 14, 0.93), rgba(9, 11, 14, 0.72) 46%, rgba(9, 11, 14, 0.34)),
    linear-gradient(0deg, rgba(9, 11, 14, 0.7), transparent 42%),
    url("../img/stock-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero__inner {
  display: grid;
  min-height: 684px;
  align-items: center;
  padding: 74px 0 42px;
}

.hero__copy {
  max-width: 790px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.hero__meta-item {
  min-height: 114px;
  padding: 24px;
  background: rgba(11, 13, 16, 0.84);
}

.hero__meta strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.hero__meta span {
  display: block;
  margin-top: 8px;
  color: #d5d8dd;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(214, 170, 82, 0.42);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 154px;
  min-height: 138px;
  padding: 22px;
  color: #fff;
  background: rgba(11, 13, 16, 0.92);
  border: 1px solid rgba(214, 170, 82, 0.7);
}

.experience-badge strong {
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.testimonial,
.faq-item,
.article-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  overflow: hidden;
}

.service-card__image {
  height: 190px;
  background: var(--ink-2);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 22px;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.service-card h2,
.article-card h2 {
  font-size: 22px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 850;
}

.link-arrow::after,
.btn::after {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.6 2.6 14 8l-5.4 5.4-1.2-1.2L10.8 8 7.4 3.8l1.2-1.2ZM2 7.1h10v1.8H2V7.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.6 2.6 14 8l-5.4 5.4-1.2-1.2L10.8 8 7.4 3.8l1.2-1.2ZM2 7.1h10v1.8H2V7.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(1px);
  transition: transform 180ms ease;
}

.btn--small::after {
  width: 11px;
  height: 11px;
  flex-basis: 11px;
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after,
.btn:hover::after,
.btn:focus-visible::after {
  transform: translate(2px, 1px);
}

.section--dark .link-arrow {
  color: var(--gold);
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.feature-list li::after {
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  content: "";
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 42px;
  background: rgba(214, 170, 82, 0.25);
  border: 1px solid rgba(214, 170, 82, 0.24);
}

.stats-band__item {
  min-height: 116px;
  padding: 24px;
  background: rgba(20, 23, 28, 0.92);
}

.stats-band strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 9px;
  color: #d8dce2;
}

.stats-band--counters {
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: clamp(22px, 4vw, 46px);
  overflow: visible;
  margin-top: 34px;
  background: transparent;
  border: 0;
}

.stats-band--counters .stats-band__item {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.stats-band--counters strong {
  font-size: clamp(42px, 5vw, 64px);
  font-variant-numeric: tabular-nums;
}

.stats-band--counters span {
  max-width: 170px;
  margin-top: 10px;
  color: #d8dce2;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 14px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  color: #fff;
  background: var(--ink-2);
  border-radius: 8px;
}

.gallery-grid a:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-grid span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-weight: 850;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.gallery-grid a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 45%);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(214, 170, 82, 0.2);
  border: 1px solid rgba(214, 170, 82, 0.2);
}

.process__step {
  min-height: 210px;
  padding: 26px;
  background: rgba(20, 23, 28, 0.92);
}

.process__step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.process__step h3,
.process__step p {
  color: #fff;
}

.process__step p {
  margin-bottom: 0;
  color: #cfd3da;
  font-size: 14px;
}

.testimonial-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 26px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

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

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-weight: 850;
}

.avatar {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-panel {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(11, 13, 16, 0.94), rgba(11, 13, 16, 0.78)),
    url("../img/stock-roofers.webp");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  font-size: 18px;
  font-weight: 850;
}

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

.form label {
  display: grid;
  gap: 7px;
  color: #20242a;
  font-size: 13px;
  font-weight: 850;
}

.form .full {
  grid-column: 1 / -1;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8d1c6;
  border-radius: 6px;
  outline: none;
}

.form textarea {
  min-height: 126px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(214, 170, 82, 0.18);
}

.form-extra {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.map {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  filter: grayscale(0.15) contrast(1.05);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map__link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.map__fallback {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(11, 13, 16, 0.9);
  border: 1px solid rgba(214, 170, 82, 0.34);
  border-radius: 6px;
}

.map__fallback strong {
  color: var(--gold);
}

.map__fallback span {
  color: #d8dce2;
  font-size: 13px;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card__body {
  padding: 22px;
}

.article-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 46px;
  font-size: 32px;
}

.legal {
  max-width: 900px;
}

.legal h1 {
  color: var(--ink);
  font-size: 46px;
}

.legal h2 {
  margin-top: 38px;
  font-size: 28px;
}

.site-footer {
  color: #d8dce2;
  background: var(--ink);
  border-top: 1px solid rgba(214, 170, 82, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0;
}

.footer-top h3 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-top p,
.footer-top li {
  color: #c1c6ce;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: #aeb4bd;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.cookie-bar {
  position: fixed;
  z-index: 80;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: #fff;
  background: rgba(11, 13, 16, 0.96);
  border: 1px solid rgba(214, 170, 82, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-bar.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-bar p {
  margin: 0;
  color: #d8dce2;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 92px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.94), rgba(11, 13, 16, 0.78)),
    url("../img/stock-hero.webp");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  color: #fff;
  font-size: 52px;
}

.page-hero p {
  max-width: 720px;
  color: #d8dce2;
  font-size: 18px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 54px;
  }

  .nav {
    gap: 18px;
  }

  .hero__meta,
  .stats-band,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .testimonial-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 22px 20px 28px;
    background: rgba(11, 13, 16, 0.98);
    border-bottom: 1px solid rgba(214, 170, 82, 0.22);
  }

  .nav.is-open {
    display: grid;
    gap: 18px;
  }

  .nav a {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 620px;
    padding-top: 58px;
  }

  .section-head,
  .split,
  .split--reverse,
  .faq-layout,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid a:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
  }

  .nav {
    inset: 68px 0 auto;
  }

  .hero__inner {
    min-height: 590px;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

  .hero__meta,
  .stats-band,
  .process,
  .service-grid,
  .testimonial-grid,
  .article-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero__meta-item,
  .stats-band__item,
  .process__step {
    min-height: auto;
  }

  .media-frame,
  .media-frame img {
    min-height: 320px;
  }

  .experience-badge {
    right: 16px;
    bottom: 16px;
  }

  .cookie-bar.is-visible {
    display: grid;
  }
}

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