@charset "UTF-8";
/* General Steps — етапи перевірки. */
.general-steps {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .general-steps {
    padding: 50px 0;
  }
}
.general-steps__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (max-width: 767px) {
  .general-steps__container {
    gap: 40px;
  }
}
.general-steps__header {
  max-width: 640px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .general-steps__header {
    text-align: start;
  }
}
.general-steps__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: normal;
  font-weight: 700;
  color: #222222;
}
@media (max-width: 767px) {
  .general-steps__title {
    font-size: 24px;
  }
}
.general-steps__subtitle {
  margin: 6px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #595959;
}
.general-steps__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.general-steps__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(1, 28, 81, 0.3568627451);
  pointer-events: none;
}
@media (max-width: 992px) {
  .general-steps__list::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .general-steps__list {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin-inline: auto;
  }
}
.general-steps__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
@media (max-width: 992px) {
  .general-steps__item {
    padding: 16px 24px;
    border-radius: 16px;
  }
  .general-steps__item--alt {
    background-color: #F9FAFF;
  }
}
.general-steps__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.general-steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1.5px solid #023FB7;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
}
.general-steps__icon img {
  display: block;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.general-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: -12px;
  border-radius: 50%;
  background-color: #023FB7;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 3px #fff;
}
.general-steps__item-title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 5%;
  color: #011c51;
}
@media (max-width: 767px) {
  .general-steps__item-title {
    font-size: 22px;
    line-height: normal;
    letter-spacing: normal;
  }
}
.general-steps__item-text {
  margin: 0;
  /* max-width: 220px; */
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 992px) {
  .general-steps__item-text {
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */