.main-wrapper {
  color: #fff;
  font-family: Space Grotesk, sans-serif;
}

.bento-hero {
  background-color: #000dff;
  min-height: 100vh;
  padding: 1.25rem 2.5rem 2.5rem;
  position: relative;
}

.lang {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.lang-text {
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.1;
  text-decoration: none;
}

.lang-text.active {
  font-weight: 600;
}

.lang-divider {
  background-color: #fff;
  width: 1px;
  height: 1rem;
}

.h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: .75rem;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1;
  display: none;
}

.h1.active {
  display: block;
}

.buttons-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3.25rem;
  display: flex;
}

.button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #fff;
  border: 2px solid #fff;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button:hover {
  color: #000dff;
  background-color: #fff;
}

.arrow {
  width: 1.5rem;
  height: 1.5rem;
}

.works {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 6.5rem;
  display: flex;
}

.h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1;
}

.works-list {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.25rem;
  display: flex;
}

.work-item {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.work-item:hover {
  color: #00ff2f;
}

.work-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.work-name.mobile {
  display: none;
}

.work-point {
  background-color: #00ff2f;
  border-radius: 100px;
  width: 4px;
  height: 4px;
}

.work-description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.branding {
  font-size: 1.875rem;
  line-height: 1.1;
  position: absolute;
  inset: auto 2.5rem 2.5rem auto;
}

.script {
  display: none;
}

@media screen and (max-width: 991px) {
  .bento-hero {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lang-text {
    font-size: 1rem;
  }

  .h1.active {
    font-size: 2.25rem;
  }

  .buttons-wrapper {
    padding-top: 2rem;
  }

  .works {
    padding-bottom: 2rem;
  }

  .work-name {
    font-size: 1.25rem;
  }

  .branding {
    text-align: right;
    width: 100%;
    padding-top: 2.25rem;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .buttons-wrapper {
    flex-flow: wrap;
  }

  .works {
    padding-top: 4rem;
  }
}

@media screen and (max-width: 479px) {
  .bento-hero {
    padding: .75rem;
  }

  .lang-text {
    font-size: .875rem;
  }

  .lang-divider {
    height: .8rem;
  }

  .h1.active {
    font-size: 1.5rem;
  }

  .buttons-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .button {
    font-size: 1rem;
  }

  .arrow {
    width: 1.25rem;
    height: 1.25rem;
  }

  .works {
    padding-top: 5.5rem;
  }

  .h2 {
    font-size: .875rem;
  }

  .work-name {
    font-size: 1rem;
  }

  .work-name.desktop {
    display: none;
  }

  .work-name.mobile {
    display: block;
  }

  .work-description {
    font-size: .875rem;
  }

  .branding {
    font-size: 1.25rem;
  }
}


