@charset "UTF-8";
.about-eightnteen-block {
  position: relative;
  display: flex;
  flex-direction: column;
}
.about-eightnteen-block * {
  box-sizing: border-box;
}
.about-eightnteen-block-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0px 22px;
  color: var(--text-primary-head);
  border: 1px solid var(--colors-main);
  border-radius: 5px;
  background: var(--bg-primary-main);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  width: fit-content;
  margin-top: auto;
  cursor: pointer;
}
.about-eightnteen-block-btn:hover {
  color: var(--bg-primary-main);
  background: var(--colors-main);
}
.about-eightnteen-block__title {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 15px;
}
.about-eightnteen-block__title .info_plate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0px 20px;
  background: var(--bg-primary-main);
  border-radius: 100px;
  width: fit-content;
}
.about-eightnteen-block__title .info_plate svg path {
  fill: var(--colors-second);
  stroke: var(--colors-second);
}
.about-eightnteen-block img, .about-eightnteen-block svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-eightnteen-block-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.673rem + 2.56vw, 3.75rem);
}
.about-eightnteen-block__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.about-eightnteen-block__top .description {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-eightnteen-block__top .description p {
  margin-bottom: 0px;
}
.about-eightnteen-block__top .description ul {
  list-style: none;
}
.about-eightnteen-block__top .description li {
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.about-eightnteen-block__top .description li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.about-eightnteen-block__bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
  align-items: center;
}
.about-eightnteen-block__bottom .advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}
.about-eightnteen-block__bottom .advantages .advantage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  margin-bottom: 15px;
  min-height: 220px;
  background: var(--bg-primary-second);
  border-radius: 30px;
}
.about-eightnteen-block__bottom .advantages .advantage .value {
  font-weight: 800;
  color: var(--colors-main);
}
.about-eightnteen-block__bottom .advantages .advantage .value * {
  color: var(--colors-main);
}

@media (max-width: 999.98px) {
  .about-eightnteen-block__top {
    flex-direction: column;
  }
  .about-eightnteen-block__top .description {
    max-width: unset;
  }
  .about-eightnteen-block__bottom .advantages {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 799.98px) {
  .about-eightnteen-block__bottom .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 549.98px) {
  .about-eightnteen-block__bottom .advantages {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=block.css.map */