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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #ffffff;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1552px;
  margin: 0 auto;
  padding: 0 7rem;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section__title {
  font-family: "Norwester", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.text-accent {
  color: #00d5ff;
}

.text-center {
  text-align: center;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: "Norwester", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--primary {
  background-color: #00d5ff;
  color: #000000;
}
.btn--primary:hover {
  background-color: #00b8db;
}
.btn--secondary {
  background-color: #ffffff;
  color: #000000;
}
.btn--secondary:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #000000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav__logo {
  font-family: "Norwester", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  gap: 2rem;
}
.nav__menu a {
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav__menu a:hover {
  opacity: 1;
  color: #00d5ff;
}

section + section {
  padding-top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 6rem 6.4rem 0;
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1552px;
  margin: 0 auto;
}
.header__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}
.header__link {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 140%;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #00d5ff;
}
.header__link:focus-visible {
  outline: 2px solid #00d5ff;
  outline-offset: 4px;
}
.header .btn-vote--small .btn-vote__left img {
  height: 52px;
  width: 52px;
}
.header .btn-vote--small .btn-vote__right img {
  height: 52px;
  width: 26px;
}
.header .btn-vote--small .btn-vote__text {
  height: 52px;
  padding: 0 12px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  height: 100vh;
  max-height: 1000px;
  padding: 17.5rem 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}
.hero__background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mask-image: radial-gradient(52.19% 100% at 50% 0%, #000 0%, rgba(0, 0, 0, 0) 95.31%);
  -webkit-mask-image: radial-gradient(52.19% 100% at 50% 0%, #000 0%, rgba(0, 0, 0, 0) 95.31%);
}
.hero__pattern-left, .hero__pattern-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}
.hero__pattern-left img, .hero__pattern-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__pattern-left {
  left: 0;
}
.hero__pattern-left img {
  object-position: right top;
}
.hero__pattern-right {
  right: 0;
}
.hero__pattern-right img {
  object-position: left top;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1000px;
  padding: 0 2rem;
  text-align: center;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: #ffffff;
}
.hero__subheading {
  font-family: "Norwester", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero__title {
  font-family: "Norwester", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__title--accent {
  color: #00d5ff;
}
.hero__description {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
.hero__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
.hero__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-vote {
  display: inline-flex;
  align-items: center;
  max-width: max-content;
  text-decoration: none;
  transition: transform 0.2s ease;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.btn-vote:hover {
  transform: translateY(-2px);
}
.btn-vote:focus-visible {
  outline: 2px solid #00d5ff;
  outline-offset: 4px;
}
.btn-vote__left, .btn-vote__right {
  display: flex;
  flex-shrink: 0;
}
.btn-vote__left img, .btn-vote__right img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.btn-vote__text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 12px;
  background-color: #ffffff;
  font-family: "Norwester", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-vote--small .btn-vote__left img,
.btn-vote--small .btn-vote__right img {
  height: 52px;
}
.btn-vote--small .btn-vote__text {
  height: 52px;
  font-size: 1.5rem;
}
.btn-vote--disabled {
  cursor: default;
}
.btn-vote--disabled:hover {
  transform: none;
}

.story {
  position: relative;
  padding: 18rem 6.4rem 14rem;
}
.story__container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 64px;
  max-width: 1424px;
  margin: 0 auto;
}
.story__column {
  flex-shrink: 0;
}
.story__column--image-top, .story__column--image-bottom {
  width: 332px;
  display: flex;
  flex-direction: column;
}
.story__column--image-top {
  justify-content: flex-start;
}
.story__column--image-bottom {
  justify-content: flex-end;
}
.story__column--text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.story__image {
  width: 332px;
  height: 332px;
  overflow: hidden;
}
.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__heading {
  font-family: "Norwester", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}
.story__paragraph {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}
.story__paragraph p {
  margin-bottom: 1em;
}
.story__paragraph p:last-child {
  margin-bottom: 0;
}
.story__deco {
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  height: 280px;
}
.story__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta {
  padding: 0 6.4rem;
}
.cta__container {
  display: flex;
  flex-direction: column;
  gap: 14rem;
  max-width: 1552px;
  margin: 0 auto;
  overflow: hidden;
}
.cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
  padding: 8rem 6.4rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.cta__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: center;
  color: #ffffff;
}
.cta__heading {
  font-family: "Norwester", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.cta__description {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 140%;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: center;
}
.cta .btn-vote--large {
  max-width: max-content;
  border: none;
  background: none;
  cursor: pointer;
}
.cta .btn-vote--large .btn-vote__left img {
  height: 5.2rem;
  width: 5.2rem;
}
.cta .btn-vote--large .btn-vote__right img {
  height: 5.2rem;
  width: 5.2rem;
}
.cta .btn-vote--large .btn-vote__text {
  height: 5.2rem;
  font-size: 1.4rem;
  padding: 0 2rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.gallery {
  position: relative;
  padding: 14rem 0;
  background-color: #000000;
  overflow: hidden;
}
.gallery__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.gallery__row {
  overflow: hidden;
  width: 100%;
}
.gallery__track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
}
.gallery__row--left .gallery__track {
  animation: scroll-left 60s linear infinite;
}
.gallery__row--right .gallery__track {
  animation: scroll-right 60s linear infinite;
}
.gallery__item {
  position: relative;
  flex-shrink: 0;
  width: 41.6rem;
  height: 32rem;
  overflow: hidden;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__image--zoom {
  transform: scale(1.5);
  object-position: center top;
}
.gallery__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 60%;
  object-fit: contain;
  z-index: 2;
}

.video-section {
  position: relative;
  padding: 14rem 6.4rem;
  background-color: #000000;
  overflow: hidden;
}
.video-section__container {
  position: relative;
  z-index: 2;
  max-width: 1552px;
  margin: 0 auto;
}
.video-section__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #111;
}
.video-section__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-section__video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background-color: #111;
}
.video-section__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.video-section__deco--tl {
  left: 0;
  top: 80px;
  width: 80px;
  height: 160px;
}
.video-section__deco--tl2 {
  left: 160px;
  top: 60px;
  width: 180px;
  height: 180px;
}
.video-section__deco--dots-tl {
  left: 340px;
  top: 200px;
  width: 100px;
  height: 100px;
}
.video-section__deco--checker-tl {
  left: 280px;
  top: 280px;
  width: 80px;
  height: 80px;
}
.video-section__deco--tr {
  right: 380px;
  top: 100px;
  width: 80px;
  height: 80px;
}
.video-section__deco--tr2 {
  right: 0;
  top: 120px;
  width: 200px;
  height: 200px;
  display: flex;
}
.video-section__deco--dots-tr {
  right: 80px;
  top: 280px;
  width: 100px;
  height: 100px;
}

.deco-triangle {
  width: 100%;
  height: 100%;
}
.deco-triangle--gold {
  background-color: #E8D5A3;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.deco-triangle--gold-right {
  background-color: #E8D5A3;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.deco-triangle--cyan {
  background-color: #00d5ff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.deco-triangle--cyan-right {
  background-color: #00d5ff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.deco-checker {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #E8D5A3 25%, transparent 25%), linear-gradient(-45deg, #E8D5A3 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #E8D5A3 75%), linear-gradient(-45deg, transparent 75%, #E8D5A3 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

.deco-stripes {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #00d5ff, #00d5ff 4px, transparent 4px, transparent 12px);
}
.deco-stripes--gold {
  background: repeating-linear-gradient(-45deg, #E8D5A3, #E8D5A3 4px, transparent 4px, transparent 12px);
}

.dots-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ffffff 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
}
.dots-pattern--cyan {
  background-image: radial-gradient(circle, #00d5ff 2px, transparent 2px);
}

.footer {
  position: relative;
  background-color: #000000;
  padding: 28rem 6.4rem 14rem;
  overflow: hidden;
}
.footer__grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16.67vw;
  max-height: 280px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .footer__grid {
    display: none;
  }
}
.footer__grid-row {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
}
.footer__grid-row--2 {
  top: 50%;
}
.footer__grid-item {
  position: absolute;
  width: 8.33vw;
  height: 8.33vw;
  max-width: 140px;
  max-height: 140px;
  overflow: hidden;
}
.footer__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__grid-item--pos-0 {
  left: 0;
}
.footer__grid-item--pos-420 {
  left: 25%;
}
.footer__grid-item--pos-1260 {
  left: 75%;
}
.footer__grid-item--pos-1400 {
  left: 83.33%;
}
.footer__grid-item--pos-280 {
  left: 16.67%;
}
.footer__grid-item--pos-1540 {
  left: 91.67%;
}
.footer__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1552px;
  margin: 0 auto;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__logo {
  width: 80px;
  height: 80px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__nav {
  display: flex;
  gap: 2rem;
}
.footer__link {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 140%;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer__link:hover {
  opacity: 1;
  color: #00d5ff;
}
.footer__link:focus-visible {
  outline: 2px solid #00d5ff;
  outline-offset: 4px;
  opacity: 1;
}
.footer__credits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright {
  display: flex;
  gap: 1.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 140%;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 140%;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer__legal a:hover {
  opacity: 1;
  color: #00d5ff;
}
.footer__legal a:focus-visible {
  outline: 2px solid #00d5ff;
  outline-offset: 4px;
  opacity: 1;
}

@media (max-width: 1400px) {
  .story {
    padding: 14rem 6.4rem 10rem;
  }
  .story__container {
    gap: 4rem;
  }
  .story__column--image-top, .story__column--image-bottom {
    width: 28rem;
  }
  .story__image {
    width: 28rem;
    height: 28rem;
  }
  .story__heading {
    font-size: 3.6rem;
  }
  .story__paragraph {
    font-size: 1.6rem;
  }
  .cta__heading {
    font-size: 3.6rem;
  }
  .cta__description {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .story {
    padding: 18rem 6.4rem 8rem;
  }
  .story__container {
    gap: 3.2rem;
  }
  .story__column--image-top, .story__column--image-bottom {
    width: 24rem;
  }
  .story__image {
    width: 24rem;
    height: 24rem;
  }
  .story__heading {
    font-size: 3.2rem;
  }
  .story__paragraph {
    font-size: 1.6rem;
  }
  .cta__heading {
    font-size: 3.2rem;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 2rem 3.2rem 0;
  }
  .header__nav {
    display: none;
  }
  .hero {
    padding: 10rem 3.2rem;
    min-height: 600px;
    max-height: 800px;
  }
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__subheading {
    font-size: 1.5rem;
  }
  .hero__pattern-left, .hero__pattern-right {
    height: 80%;
    opacity: 0.2;
  }
  .hero__deco,
  .story__deco {
    display: none;
  }
  .story {
    padding: 6rem 3.2rem;
  }
  .story__container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.2rem 1.6rem;
    justify-content: center;
  }
  .story__column--image-top, .story__column--image-bottom {
    width: calc(50% - 0.8rem);
    order: 1;
    justify-content: center;
  }
  .story__column--text {
    order: 0;
    width: 100%;
    flex: none;
  }
  .story__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 100%;
    margin: 0;
  }
  .story__heading {
    font-size: 2.5rem;
  }
  .cta {
    padding: 0 3.2rem;
  }
  .cta__container {
    padding: 0;
    padding-bottom: 6rem;
    gap: 6rem;
  }
  .cta__heading {
    font-size: 2.5rem;
  }
  .gallery {
    padding: 8rem 0;
  }
  .gallery__row--left .gallery__track {
    animation-duration: 25s;
  }
  .gallery__row--right .gallery__track {
    animation-duration: 25s;
  }
  .gallery__item {
    width: 32rem;
    height: 24rem;
  }
  .video-section {
    padding: 8rem 3.2rem;
  }
  .footer {
    padding: 8rem 3.2rem 6rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer__copyright, .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.6rem 0;
  }
  .header__logo {
    width: 60px;
    height: 60px;
  }
  .header .btn-vote--small .btn-vote__left img {
    height: 40px;
    width: 40px;
  }
  .header .btn-vote--small .btn-vote__right img {
    height: 40px;
    width: 20px;
  }
  .header .btn-vote--small .btn-vote__text {
    height: 40px;
    font-size: 1.4rem;
    padding: 0 8px;
  }
  .hero {
    padding: 8rem 1.6rem 6rem;
  }
  .hero__content {
    gap: 2rem;
  }
  .hero__text {
    gap: 1.5rem;
  }
  .hero__subheading {
    font-size: 1.25rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__description {
    font-size: 1.6rem;
  }
  .hero__description br {
    display: none;
  }
  .hero__pattern-left, .hero__pattern-right {
    display: none;
  }
  .btn-vote__left img, .btn-vote__right img {
    height: 44px;
  }
  .btn-vote__text {
    height: 44px;
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .story {
    padding: 6rem 1.6rem;
  }
  .story__heading {
    font-size: 2rem;
  }
  .story__paragraph {
    font-size: 1.6rem;
  }
  .story__image {
    max-width: 100%;
  }
  .cta {
    padding: 0 1.6rem;
  }
  .cta__container {
    padding: 0;
    padding-bottom: 4rem;
    gap: 4rem;
  }
  .cta__box {
    padding: 2rem 1.6rem;
  }
  .cta__heading {
    font-size: 2rem;
  }
  .cta__heading br {
    display: none;
  }
  .cta__description {
    font-size: 1.6rem;
  }
  .cta__description br {
    display: none;
  }
  .gallery {
    padding: 6rem 0;
  }
  .gallery__inner {
    gap: 0.8rem;
  }
  .gallery__track {
    gap: 0.8rem;
  }
  .gallery__row--left .gallery__track {
    animation-duration: 20s;
  }
  .gallery__row--right .gallery__track {
    animation-duration: 20s;
  }
  .gallery__item {
    width: 28rem;
    height: 21rem;
  }
  .video-section {
    padding: 6rem 1.6rem;
  }
  .footer {
    padding: 6rem 1.6rem;
  }
  .footer__grid-item {
    width: 140px;
    height: 140px;
  }
  .footer__grid-item svg {
    width: 100%;
    height: 100%;
  }
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer__link {
    font-size: 1.4rem;
  }
  .footer__copyright, .footer__legal {
    gap: 1rem;
    font-size: 1.4rem;
  }
  .footer__copyright a, .footer__legal a {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=main.css.map */
