.guid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}




.guid__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 330px;
}

.guid__list {
  display: flex;
  justify-content: space-between;
}

.guid__item__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.guid__item__header__iconBlock {
  display: flex;
  gap: 10px;
  align-items: center;
}

.guid__item__header__iconBlock div {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 1);
}

.guid__item__header__num {
  font-family: Onest;
  font-weight: 250;
  font-style: Thin;
  font-size: 48px;
  color: rgba(99, 105, 124, 1);
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.guid__item__content {
  font-family: Onest;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: rgba(99, 105, 124, 1);
  line-height: 140%;
  letter-spacing: 0%;
  text-align: justify;
}

.guid__item__line {
  width: 1px;
  height: 200px;
  background-color: rgba(216, 216, 216, 1);
}

@media (max-width: 1500px) {
  .guid__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .guid__item {
    width: unset;
  }

  .guid__item__line {
    display: none;
  }
}


@media (max-width: 769px) {
  .guid__list {
    display: flex;
    flex-direction: column;
    gap: 25px
  }

  .guid__item__line {
    display: block;
    height: 1px;
    width: 100%;
  }

  .guid__item__content {
    font-size: 14px;
  }

  .guid {
    margin-top: 20px;
    gap: 30px;
  }
}

@media (max-width: 550px) {
  .guid__list {
    padding: 20px;
    background-color: white;
  }

  .guid__item__header__num {
    display: none;
  }

  .guid {
    margin: 0;
    gap: 20px;
  }
}