* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #0c1519;
  --color-black-10: rgba(12, 21, 25, 0.1);
  --color-black-15: rgba(12, 21, 25, 0.15);
  --color-black-20: rgba(12, 21, 25, 0.2);
  --color-black-25: rgba(12, 21, 25, 0.25);
  --color-black-80: rgba(12, 21, 25, 0.8);
  --color-white: #f7f5f0;
  --color-white-10: rgba(247, 245, 240, 0.1);
  --color-white-20: rgba(247, 245, 240, 0.2);
  --color-white-30: rgba(255, 255, 255, 0.3);
  --color-grey: #777;
  --color-dark-grey: #293033;
  --color-light: #f7f5f0;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-black);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #ff5359;
  --color-code-orange: #f8831e;
  --color-code-yellow: #f2ab3b;
  --color-code-green: #64ba47;
  --color-code-aqua: #52beaf;
  --color-code-blue: #00a7e8;
  --color-code-blue-hover: #0ba1e5;
  --color-code-dark-blue: #007dae;
  --color-code-purple: #5c57f1;
  --font-family-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  font-display: swap;
}
img {
  width: 100%;
  height: auto;
}
body {
  letter-spacing: -0.011em;
  color: var(--color-white);
  /* background: var(--color-background)
    url("/assets/images/lightBackgroundPattern.svg") no-repeat center top; */
}
.content {
  padding: var(--padding);
  max-width: 70rem;
  margin: 0 auto;
}

p {
  font-weight: 500;
  line-height: 1.8em;
}

p.lead,
.lead p {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.014em;
}

li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
strong,
b {
  font-weight: 600;
}
.subheader {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  background: -webkit-linear-gradient(
    -45deg,
    var(--color-code-blue),
    var(--color-code-dark-blue) 65%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-light {
  background-color: var(--color-light);
}

.header {
  position: sticky;
  top: 0rem;
  background-color: var(--color-black-80);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 11;
}

.header__content {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo {
  cursor: pointer;
}

.logo__mobile {
  display: block;
  width: 2rem;
  height: 2rem;
}

.logo__desktop {
  display: none;
  width: 12.5rem;
  height: 2rem;
}

.footer__logo img {
  height: 2rem;
}

.menu-icon {
  cursor: pointer;
  padding-right: 16px;
  background: none;
  border: 0;
}

.menu-icon.opened .menu-icon__bar:first-child {
  transform: rotate(45deg);
  top: 5px;
}

.menu-icon.opened .menu-icon__bar {
  transform: rotate(-45deg);
  top: -6px;
}

.menu-icon.opened:hover .menu-icon__bar:first-child {
  transform: translateY(-1px);
}

.menu-icon.opened:hover .menu-icon__bar {
  transform: translateY(-1px);
}

.menu-icon:hover .menu-icon__bar:first-child {
  transform: translateX(-4px);
}

.menu-icon:hover .menu-icon__bar {
  transform: translateX(4px);
}

.menu-icon__bar {
  position: relative;
  min-width: 26px;
  min-height: 3px;
  margin: 8px 0;
  background-color: var(--color-white);
  transition: all 0.225s;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  min-height: 100vh;
  min-width: 100vw;
  z-index: 10;
}

.menu__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: var(--color-black) url("/assets/images/darkBackgroundPattern.svg")
    no-repeat center top;
}

.menu__contact-details h3,
.menu__contact-details p {
  color: var(--color-light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu.opened {
  display: flex;
  animation: fadeIn 0.355s forwards;
}

.menu__row {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 70rem;
  margin: 0 0 3rem;
  padding: var(--padding);
}

.menu__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin: 0 2rem 0;
}

.menu__items-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.menu a {
  display: block;
  padding: 0.5rem 0;
  text-align: right;
  color: #f7f5f0;
  opacity: 0.5;
}

.menu a:hover:after {
  opacity: 0.5;
}

.menu__item:after {
  content: url("/assets/icons/menuIndicator.svg");
  position: relative;
  top: 5px;
  min-width: 32px;
  min-height: 32px;
  margin-left: 32px;
  opacity: 0;
  transition: 0.225s all;
}

.menu__item-desktop {
  padding: 0rem 1rem;
  opacity: 0.9;
}

.menu__item-desktop:last-child {
  padding-right: 0;
}

.menu__item-desktop[aria-current] {
  opacity: 1;
}

.menu__item[aria-current] {
  opacity: 1;
}

.menu__item[aria-current]:after {
  content: url("/assets/icons/menuIndicator.svg");
  position: relative;
  top: 5px;
  min-width: 32px;
  min-height: 32px;
  margin-left: 32px;
  opacity: 1;
}

.section {
  padding: 8rem 0 0;
}

.marketing-section {
  padding: 2rem 0;
}

.section__inner {
  padding-top: 4rem;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  word-break: break-word;
}

.h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.022em;
}

.h1.jumbotext {
  font-size: 2rem;
  background: linear-gradient(111.49deg, var(--color-white) 45%, #82817e 99%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fade-in {
  animation: FadeIn 2s cubic-bezier(0.1, 0.9, 0.5, 0.9) forwards;
}

@keyframes FadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h2 {
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.8px;
}

.h3 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.footer {
  padding: 6rem 0 3rem;
}

.jumbo-intro div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jumbo-intro .button {
  margin-top: 2rem;
}

.jumbo-intro p,
.jumbo-intro .h1,
.jumbo-intro .h2,
.jumbo-intro .subheader {
  text-align: center;
}

.page-intro p,
.page-intro .h1,
.page-intro .h2,
.page-intro .subheader {
  text-align: center;
}

.page-intro__image {
  display: block;
  max-height: 5rem;
  margin: 0 auto 3rem;
  object-fit: contain;
}

.page-intro__image.partner {
  display: block;
  max-height: 7rem;
  margin: 3rem auto 3rem;
  object-fit: contain;
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.75rem 1.25rem;
  letter-spacing: -0.6px;
  line-height: inherit;
  font-size: inherit;
  font-weight: 400;
  font-family: var(--font-family-sans);
  background-color: var(--color-code-blue);
  border: solid 1.5px var(--color-code-blue);
  border-radius: 100px;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.175s;
}

.button::after {
  content: url("/assets/icons/arrowRight.svg");
  height: 24px;
  width: 24px;
  margin-left: 1rem;
  transition: all 0.125s;
}

.button:hover {
  background-color: var(--color-code-blue-hover);
}

.button:hover::after {
  transform: translateX(0.5rem);
}

.button.button__menu {
  padding: 0.75rem 1rem;
}

.button.button__menu::after {
  content: none;
}

.button.small {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.button.small::after {
  content: none;
}

.button.dark {
  background-color: var(--color-white);
  border: solid 1.5px var(--color-white);
  color: var(--color-black);
}

.button.dark::after {
  mix-blend-mode: difference;
}

.button.dark:hover {
  background-color: var(--color-white);
  border: solid 1.5px var(--color-white);
  color: var(--color-black);
}

.skip-content {
  width: fit-content;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s;
  border-radius: 0 0 8px 8px;
}

.skip-content:focus {
  top: -1px;
}

.no-border {
  border: none;
}

.functionality-preview {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.functionality-preview__excerpt {
  margin-bottom: 1.5rem;
}

.functionality-preview__icon {
  width: 60px;
  margin-right: 1rem;
  margin-top: 2.5rem;
}

.projects,
.insights {
  grid-gap: 0;
}

.project,
.insights__article {
  position: relative;
  grid-column: span 12;
  margin-bottom: 2rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
}

.project:nth-of-type(3n + 1) {
  grid-column: span 12;
}

.project:hover .project__image {
  transform: scale(1.1);
}

.insights__article:hover .insights__article-image {
  transform: scale(1.1);
}

.project__image,
.insights__article-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  object-fit: cover;
  height: 100%;
  transition: all 0.255s;
}

.project__footer,
.insights__article-footer {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.project__header,
.project__copy {
  color: var(--color-light);
}

.project__copy {
  margin-bottom: 1rem;
}

.projects-spacer {
  width: 100%;
  margin-top: 7rem;
}

.tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-left: -0.5rem;
  flex-wrap: wrap;
}

.project-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  margin: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-light);
  transition: 0.125s;
}

.tag:hover {
  color: var(--color-code-yellow);
}

.filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

.filters__reset {
  position: relative;
  margin-left: 0.5rem;
}

.filters__reset:hover {
  text-decoration: underline;
}

.filters__label {
  margin-right: 0.5rem;
}

.project-content__cover {
  width: 100%;
}

.project-content {
  grid-gap: 0;
}

.project-content__about {
  grid-column: span 12;
  margin-top: 3rem;
}

.project-content__partners {
  grid-column: span 12;
  margin-top: 3rem;
}

.project-content__live-button {
  grid-column: span 12;
  margin: 0 auto;
}

.article__content {
  grid-column: span 12;
}

.project-content__partner-logo {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 1rem;
  opacity: 0.5;
}

.project-content__partner-logo img {
  display: block;
  max-height: 8rem;
  max-width: 10rem;
  object-fit: contain;
}

.layouts {
  align-items: center;
}

.text {
  line-height: 1.5em;
  max-width: 48rem;
  margin: 0 auto;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.intro {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.022em;
}
.text h2 {
  margin: 2rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.022em;
}
.text h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.019em;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 0.5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  margin: 3rem 0;
  padding-left: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6em;
  border-left: 4px solid var(--color-code-yellow);
}
.text blockquote footer,
.text blockquote footer:first-child {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
  text-align: center;
}

.about,
.marketing {
  align-items: flex-start;
}

.about__content,
.marketing__content,
.about__image,
.marketing__image {
  grid-column: span 6;
}

.about__image,
.marketing__image {
  order: -1;
}

.about__text,
.marketing__text {
  margin-bottom: 3rem;
}

.marketing__text ul {
  margin: 0;
}

.marketing__text ul li {
  list-style: none;
  background: url("/assets/images/checkbox.svg") left center no-repeat;
  padding: 0.25rem 0 0.25rem 2rem;
}

.marketing__testimonials {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.marketing__testimonial {
  margin-top: 2rem;
}

.marketing__testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.client {
  color: var(--color-code-yellow);
}

.marketing__testimonial-stars {
  width: 128px;
  margin-bottom: 0.5rem;
}

.partners-section {
  margin-top: 4rem;
}

.partners-section__partner {
  grid-column: span 4;
}

.partners-section__intro {
  margin-bottom: 1.5rem;
}

.partners-section__logo {
  max-height: 5rem;
  object-fit: contain;
  width: initial;
  margin-bottom: 1.5rem;
}

.team {
  margin-top: 3rem;
}

.team__member {
  grid-column: span 3;
}

.team__member-photo {
  margin-bottom: 1rem;
}

.team__member-name {
  margin-bottom: 0;
}

.team__member_vacancy p {
  margin-top: 0.5rem;
}

.team__member_vacancy .button {
  margin-top: 1rem;
}

.vacancies {
  margin-top: 3rem;
}

.vacancies__vacancy {
  grid-column: span 3;
}

.vacancies__vacancy-photo {
  margin-bottom: 1rem;
}

.vacancies__vacancy-name {
  margin-bottom: 0;
}

.vacancies__vacancy .button {
  margin-top: 1rem;
}

.icon-button {
  height: 20px;
  width: 20px;
  margin: 12px 8px 0 0;
  cursor: pointer;
  opacity: 0.75;
  transition: all 0.175s;
}

.icon-button:hover {
  opacity: 1;
}

.call-to-action {
  margin-top: 8rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(85deg, var(--color-dark-grey) 10%, #465257 65%);
}

.call-to-action__text {
  display: flex;
  flex-direction: column;
}

.call-to-action__header {
  margin-bottom: 1rem;
}

.call-to-action__action {
  margin-top: 2rem;
  flex: 1 1 auto;
}

.references {
  margin-top: 3rem;
}

.references__reference {
  grid-column: span 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.references__reference img {
  display: block;
  max-height: 8rem;
  max-width: 10rem;
  object-fit: contain;
}

.functionality-article p {
  margin-bottom: 1.5rem;
}

.contact,
.menu__contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact__button {
  margin-top: 3rem;
}

.menu__contact-details {
  display: none;
}

.contact {
  margin-top: 5rem;
}

.contact__item {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__item h3,
.contact__item p,
.contact__item li,
.contact__item a {
  text-align: center;
}

.menu__contact-column {
  padding: 2rem 0;
}
.menu__item.h2 {
  margin: 0;
}

.contact__item h3:first-of-type,
.menu__contact-column h3:first-of-type {
  margin-top: 0;
}

.contact__item h3,
.menu__contact-column h3 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.menu .menu__contact-column a {
  font-size: 1rem;
  display: initial;
  padding: 0;
  text-align: left;
  color: inherit;
  opacity: 1;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}

.pricing__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
  padding: 1rem;
  background: linear-gradient(85deg, var(--color-dark-grey) 10%, #465257 65%);
  width: 100%;
  max-width: 20rem;
}

.pricing__header {
  padding: 1rem 1rem 1.5rem;
  text-align: center;
}

.pricing__price {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  align-self: stretch;
}

.pricing__button {
  margin-top: 0.5rem;
}

.pricing__description {
  padding: 2.5rem 1rem 1rem;
  font-size: 0.75rem;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

  .menu-icon {
    display: none;
  }

  .jumbo-intro div {
    grid-column-start: 2;
    grid-column-end: 12;
  }

  .h1.jumbotext {
    font-size: 3rem;
    background: linear-gradient(115deg, var(--color-white) 45%, #82817e 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .projects,
  .insights {
    grid-gap: 3rem;
  }

  .project,
  .insights__article {
    grid-column: span 6;
    margin-bottom: 0;
  }

  .page-intro div {
    grid-column-start: 4;
    grid-column-end: 10;
  }

  .menu a {
    font-size: 2rem;
  }

  .menu__contact-details {
    display: flex;
  }

  .logo__mobile {
    display: none;
  }

  .logo__desktop {
    display: block;
  }

  .insights__article {
    min-height: 480px;
    max-height: 480px;
  }

  .project {
    min-height: 650px;
    max-height: 650px;
  }

  .project:nth-of-type(odd),
  .project:nth-of-type(even) {
    transform: translate(0);
  }

  .project__footer {
    padding: 2rem;
  }

  .project-content {
    grid-gap: 3rem;
  }

  .project-content__about {
    grid-column-start: 4;
    grid-column-end: 10;
  }

  .project-content__partners {
    grid-column-start: 4;
    grid-column-end: 10;
  }

  .about__image {
    grid-column-start: 1;
    grid-column-end: 8;
  }

  .about__content,
  .marketing__image {
    grid-column-start: 8;
    grid-column-end: 14;
    order: initial;
  }

  .marketing__testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .functionality-article {
    grid-column-start: 3;
    grid-column-end: 11;
  }

  .project-content__partner-logo {
    grid-column: span 4;
  }

  .call-to-action {
    padding: 5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .call-to-action__text {
    display: flex;
    flex-direction: column;
  }

  .call-to-action__action {
    margin-top: 0;
    margin-left: 5rem;
    flex: 1 0 auto;
  }

  .contact {
    margin-top: 8rem;
  }
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects__more,
.partner__more {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  background-color: var(--color-black-10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.125s;
  margin: 1.5rem;
}

.pagination > *.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination > *:hover {
  background-color: var(--color-black-15);
}

.pagination > *:active {
  background-color: var(--color-black-20);
  color: var(--color-text);
  transform: scale(1.05);
}
