﻿:root {
  --bg: #ffffff;
  --white: #ffffff;
  --text: #221f1f;
  --muted: #c5c5c5;
  --red: #9a2e42;
  --dark: #221f1f;
  --line: #e1e1e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', sans-serif;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(28px, 8.4vw, 120px);
  max-width: 1440px;
  margin: auto;
}

.logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.logo img {
  width: 219px;
  height: auto;
  object-fit: cover;
}

.logo span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
}

.nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav > a::before,
.nav > a::after {
  position: absolute;
  top: 50%;
  color: var(--red);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav > a::before {
  content: '/';
  right: calc(100% + 1px);
}

.nav > a::after {
  content: '/';
  left: calc(100% + 1px);
}

.nav > a:hover,
.nav > a:focus-visible {
  color: var(--red);
}

.nav > a:hover::before,
.nav > a:hover::after,
.nav > a:focus-visible::before,
.nav > a:focus-visible::after {
  opacity: 1;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-current img:not(.language-chevron),
.language-menu img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.language-current .language-chevron {
  width: 12px;
  height: 12px;
  object-fit: contain;
  transition: transform 0.18s ease;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 96px;
  padding: 8px;
  border: 1px solid rgba(34, 31, 31, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 31, 31, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switch.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 7px;
  color: var(--text);
  font-size: 14px;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  color: var(--red);
  background: #f7f2f3;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(34, 31, 31, 0.18);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: start center;
  min-height: 770px;
  overflow: hidden;
  padding: 141px 0px 0;
  text-align: center;
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 30px auto 38px;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero p {
  max-width: 848px;
  margin: 0 auto 51px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-align: center;
}

.actions,
.card-actions,
.form-bottom {
  display: flex;
  align-items: center;
  gap: 13px;
}

.actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 10px 34px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.0054em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-dark {
  color: #fff;
  background: var(--dark);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px 0 #9a2e42;
}

.btn-light {
  color: var(--text);
  background: #fff;
}

.hero-media {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  height: 452px;
  overflow: hidden;
  width: 100%;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(0.75) contrast(1.05);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    radial-gradient(circle at 50% 60%, rgba(173, 48, 73, 0.12), transparent 60%);
  pointer-events: none;
}

.stats {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 100px clamp(28px, 8.4vw, 120px);
}

.stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(58px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.036em;
}

.stats span {
  display: block;
  margin-top: 9px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.054em;
}

.section-layout {
  max-width: 1440px;
  margin: auto;
  padding: 100px clamp(28px, 8.4vw, 120px);
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 40px;
}

.eyebrow {
  margin: 9px 0 0;
  color: var(--red);
  font-family: 'Geist Mono';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.15vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 840px;
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.03em;
}

.products {
  background: #f1f1f0;
}

.slider-arrows {
  grid-column: 1;
  display: flex;
  align-self: end;
  gap: 18px;
}

.slider-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  color: #726b6b;
  background: transparent;
  cursor: pointer;
}

.slider-arrows svg {
  display: block;
}

.cards {
  grid-column: 1 / -1;
  margin-left: 0;
}

.cards.splide {
  visibility: visible;
}

.product-slider .splide__track {
  overflow: hidden;
  margin: -12px 0;
  padding: 12px 0;
}

.product-slider .splide__list {
  align-items: stretch;
}

.product-slider .splide__slide {
  display: flex;
  height: auto;
}

.product-slider .splide__arrows,
.product-slider .splide__pagination {
  display: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 13px;
  background: #fff;
  border-radius: 12px;
  margin: 4px 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 4px 11px 0 #9a2e42;
  border-radius: 12px;
}

.product-card > img,
.dark-preview {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.dark-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  background: linear-gradient(145deg, #111 0%, #1b1b1b 55%, #050505 100%);
}

.dark-preview span {
  font-size: 12px;
}

.dark-preview strong {
  color: #bce12c;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 3px 0;
}

.card-body h3 {
  margin: 0 0 10px;
}

.product-title {
  display: flex;
  align-items: center;
  min-height: 36px;
}

.product-title img {
  width: auto;
  max-width: min(190px, 82%);
  max-height: 34px;
  object-fit: contain;
}

.card-body p {
  flex: 1;
  min-height: 88px;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.card-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 16px;
}

.card-actions a {
  flex: 1 1 112px;
  min-width: min(112px, 100%);
  border: 1px solid var(--dark);
  border-radius: 999px;
  padding: 9px 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.what {
  padding-bottom: 47px;
  background: #fff;
}

.service-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 31px;
}

.service-grid article {
  min-height: 150px;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 19px;
}

.service-grid h3 {
  margin: 0 0 7px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.service-grid p {
  max-width: 330px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.45;
}

.tech-row {
  grid-column: 1 / -1;
  margin: 70px 0 30px;
  overflow: hidden;
  opacity: 0.58;
}

.tech-row.splide {
  visibility: visible;
}

.tech-row .splide__track {
  overflow: hidden;
  cursor: grab;
}

.tech-row .splide__track:active {
  cursor: grabbing;
}

.tech-row .splide__list {
  align-items: center;
}

.tech-row .splide__arrows,
.tech-row .splide__pagination {
  display: none;
}

.tech-row .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.tech-row img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 82px;
  filter: grayscale(1);
  opacity: 0.78;
}

.core {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 88px 24px 34px;
  color: #fff;
  text-align: center;
  background: #a92f47 url('assets/companies/red-bg.png') center center / cover
    no-repeat;
}

.core-bg {
  display: none;
}

.core::before,
.core::after {
  content: none;
}

.core h2,
.core p,
.orbit-wrap,
.core-links {
  position: relative;
  z-index: 1;
}

.core h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.core p {
  max-width: 590px;
  margin: 0 auto;
  color: #ffe0e6;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0;
}

.orbit-wrap {
  display: grid;
  grid-template-columns: 200px 306px 200px;
  align-items: center;
  justify-content: center;
  column-gap: clamp(42px, 7.2vw, 155px);
  margin-top: 144px;
}

.orbit {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #9e2d43;
  box-shadow: 0 0 94px 30px #ff7992;
}

.orbit::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  background: url('assets/companies/orbit-rings.png') center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 50%;
  object-fit: contain;
}

.orbit.small {
  --ring-size: 368px;
  width: 200px;
  height: 200px;
}

.orbit.main {
  --ring-size: 555px;
  width: 300px;
  height: 300px;
}

.orbit img {
  max-width: 62%;
  max-height: 40%;
  animation: mainLogoPulse 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, filter;
}

@keyframes mainLogoPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

.core-links {
  display: grid;
  grid-template-columns: 200px 306px 200px;
  justify-content: center;
  column-gap: clamp(42px, 7.2vw, 155px);
  max-width: 100%;
  margin: 170px auto 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.contact {
  padding-top: 92px;
  padding-bottom: 96px;
  background: #fff;
}

.contact-form {
  grid-column: 2;
  max-width: 780px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 13px;
}

.contact-form input,
.file-field,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  background: #fff;
  outline: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.file-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-field::after {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url('assets/icons/paperclip.svg') center / contain no-repeat;
}

.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form textarea {
  min-height: 234px;
  border-radius: 11px;
  resize: vertical;
}

.contact-form input:focus,
.file-field:focus-within,
.contact-form textarea:focus {
  border-color: var(--red);
}

.form-bottom {
  justify-content: flex-start;
  margin-top: 15px;
}

.form-bottom span {
  color: #6d6666;
  font-size: 11px;
}

.contact-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--red);
  font-size: 12px;
}

.footer {
  padding: 110px clamp(28px, 8.4vw, 120px) 36px;
  color: #fff;
  background: var(--dark);
}

.footer-layout {
  max-width: 1440px;
  margin: auto;
}

.footer h2 {
  margin: 0 0 100px;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.footer h2 span {
  color: var(--red);
  font-family: 'Courier New', monospace;
  font-weight: 500;
}

.footer-flex,
.legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom {
  display: grid;
  gap: 35px;
}

.footer-logo {
  position: relative;
  display: inline-block;
  width: 219px;
  height: 24px;
  max-width: 100%;
}

.footer-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.18s ease;
}

.footer-logo-red {
  opacity: 0;
}

.footer-logo:hover .footer-logo-gray,
.footer-logo:focus-visible .footer-logo-gray {
  opacity: 0;
}

.footer-logo:hover .footer-logo-red,
.footer-logo:focus-visible .footer-logo-red {
  opacity: 1;
}

.footer-info {
  display: grid;
  gap: 44px;
}

.footer-links > a,
.legal a {

  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s ease;
}

.footer-links > a::before,
.footer-links > a::after,
.legal a::before,
.legal a::after {
  position: absolute;
  top: 50%;
  color: var(--red);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.footer-links > a::before,
.legal a::before {
  content: '/';
  right: calc(100% + 1px);
}

.footer-links > a::after,
.legal a::after {
  content: '/';
  left: calc(100% + 1px);
}

.footer-links > a:hover,
.footer-links > a:focus-visible,
.legal a:hover,
.legal a:focus-visible {
  color: var(--red);
}

.footer-links > a:hover::before,
.footer-links > a:hover::after,
.footer-links > a:focus-visible::before,
.footer-links > a:focus-visible::after,
.legal a:hover::before,
.legal a:hover::after,
.legal a:focus-visible::before,
.legal a:focus-visible::after {
  opacity: 1;
}

.footer-contact {
  display: grid;
  gap: 12px;
  color: #fff;
  font-size: 16px;
}

.footer-contact strong {
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #eee9ea;
}

.footer-contact a {
  transition: color 0.18s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--red);
}

.contact-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  object-fit: contain;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #c8c2c2;
  font-size: 16px;
}

.footer nav strong {
  color: #fff;
}

.muted {
  color: #928b8b;
}

.back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.back:hover,
.back:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px 0 #9a2e42;
}

.legal {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #817b7b;
  color: #908989;
  font-size: 12px;
}

.legal a {
  margin-left: 19px;
  color: var(--red);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 22px 24px;
    background: #fff;
    max-width: none;
    box-shadow: 0 1px 0 rgba(34, 31, 31, 0.08);
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    right: auto;
    justify-items: center;
    width: calc(100% - 16px);
    display: grid;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(34, 31, 31, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav > a {
    width: fit-content;
    padding: 0;
    border-radius: 8px;
  }

  .nav > a:hover,
  .nav > a:focus-visible {
    background: transparent;
  }

  .nav .language-switch {
    justify-self: center;
  }

  .hero {
    min-height: 660px;
    padding-top: 70px;
  }

  .stats,
  .cards,
  .service-grid,
  .section {
    grid-template-columns: 1fr;
  }

  .section-layout {
    grid-template-columns: 100%;
  }

  .stats {
    text-align: center;
  }

  .section {
    padding: 72px 24px;
  }

  .section-head,
  .service-grid,
  .contact-form {
    grid-column: 1;
  }

  .stats {
    padding: 56px 24px;
  }

  .slider-arrows {
    margin-bottom: 0;
  }

  .product-title {
    min-height: 32px;
  }

  .product-title img {
    max-height: 30px;
  }

  .card-body p {
    min-height: 76px;
  }

  .orbit-wrap {
    grid-template-columns: 132px 178px 132px;
    column-gap: 48px;
    margin-top: 104px;
  }

  .orbit.small {
    width: 132px;
    height: 132px;
  }

  .orbit.main {
    width: 178px;
    height: 178px;
  }

  .core-links {
    grid-template-columns: 132px 178px 132px;
    column-gap: 48px;
    justify-content: center;
    align-items: center;
  }

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

  .footer nav {
    flex-wrap: wrap;
  }

  .footer h2 {
    margin-bottom: 82px;
  }
}

@media (max-width: 600px) {
  .site-header {
    display: flex;
    gap: 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-media {
    height: 300px;
  }

  .section-layout {
    grid-template-columns: 100%;
    gap: 24px;
    padding: 60px 24px;
  }

  .product-card {
    padding: 10px;
  }

  .card-body {
    padding: 14px 2px 0;
  }

  .product-title {
    min-height: 30px;
  }

  .product-title img {
    max-width: 78%;
    max-height: 28px;
  }

  .card-body p {
    min-height: 0;
    font-size: 14px;
  }

  .card-actions a {
    flex-basis: 100%;
  }

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

  .stats {
    gap: 28px;
    text-align: center;
  }

  .orbit-wrap {
    grid-template-columns: 1fr;
    margin-top: 84px;
    gap: 72px;
    justify-items: center;
    text-align: center;
  }

  .orbit.small,
  .orbit.main {
    --ring-size: 330px;
    width: 180px;
    height: 180px;
  }

  .core {
    padding-bottom: 64px;
  }

  .core-links {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 64px;
    gap: 14px;
  }

  .form-bottom {
    flex-wrap: wrap;
  }

  .btn {
    font-size: 16px;
    padding: 8px 18px;
  }

  .hide-on-mob {
    display: none;
  }
}
