:root {
  --gray1: #4b4b4b;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body {
  color: #e9e9e9;
  background-color: #1b1b1b;
  font-family: Roboto Mono, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
}

.paragraph {
  margin-bottom: 0;
}

.bullet {
  width: 10px;
  margin-top: 1px;
}

.bullet-list {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  margin-bottom: 50px;
}

.paragraph-2 {
  margin-bottom: 23px;
}

.paragraph-2.foot {
  color: #666;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 50px;
}

.grid-item {
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: black var(--gray1) var(--gray1) black;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  display: flex;
}

.grid-item.first {
  border-width: 1px;
  border-color: var(--gray1);
  min-height: 10px;
}

.grid-item.top {
  border-top-width: 1px;
  border-top-color: var(--gray1);
}

.grid-item.side {
  border-left-width: 1px;
  border-left-color: var(--gray1);
}

.grid-item.stacks {
  border-top-width: 1px;
  border-top-color: var(--gray1);
  border-left-width: 1px;
  border-left-color: var(--gray1);
}

.grid-item.hiro, .grid-item.stacking, .grid-item.bit {
  border-top-width: 1px;
  border-top-color: var(--gray1);
}

.grid-item.leather {
  border-left-width: 1px;
  border-left-color: var(--gray1);
}

.header {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 50px;
}

.links-on-left {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.link-text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fefc07;
  text-decoration: none;
  display: flex;
}

@media screen and (max-width: 767px) {
  .body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-item {
    border-left-width: 0;
    border-left-color: var(--gray1);
  }

  .grid-item.hiro {
    border-left-width: 0;
  }

  .grid-item.stacking {
    border-top-width: 0;
    border-left-width: 1px;
    border-left-color: var(--gray1);
  }

  .grid-item.bit {
    border-top-width: 0;
    border-left-width: 0;
  }

  .grid-item.strata {
    border-left-width: 1px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    font-size: 16px;
  }
}


