.alignment_section {
  background: #141212;
  position: relative;
}

.alignment_sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .alignment_sticky {
    height: auto;
    overflow: visible;
    position: relative;
  }
}

.alignment_content {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
  justify-items: stretch;
}
@media (max-width: 991px) {
  .alignment_content {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.alignment_content .step-1, .alignment_content .step-2 {
  grid-area: stack;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.alignment_title_1 {
  filter: blur(6px);
  opacity: 1;
}
@media (max-width: 991.98px) {
  .alignment_title_1 {
    filter: blur(0);
  }
}
.alignment_subtitle, .alignment_cards_1, .alignment_cards_2, .alignment_title_2, .alignment_bottom {
  opacity: 0;
  filter: blur(6px);
  visibility: hidden;
}
@media (max-width: 991.98px) {
  .alignment_subtitle, .alignment_cards_1, .alignment_cards_2, .alignment_title_2, .alignment_bottom {
    filter: blur(0);
  }
}

.alignment_cards_1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 991px) {
  .alignment_cards_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
.alignment_cards_2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 991px) {
  .alignment_cards_2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
.alignment_card {
  background-color: #1F1D1D;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 600;
  min-height: 204px;
}
@media (max-width: 991px) {
  .alignment_card {
    min-height: 100px;
    min-width: 150px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    width: calc(50% - 6px);
  }
  .alignment_card:last-child {
    width: 100%;
  }
}
.alignment_bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 991px) {
  .alignment_bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    font-size: 36px;
  }
}

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