.stages-fiveteen-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
}
.stages-fiveteen-block .p2 {
  color: var(--text-primary-main);
}
.stages-fiveteen-block * {
  box-sizing: border-box;
}
.stages-fiveteen-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--bg-primary-main);
  z-index: -2;
}
.stages-fiveteen-block .btn {
  flex-shrink: 0;
  height: fit-content;
}
.stages-fiveteen-block-btn {
  display: flex;
  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;
}
.stages-fiveteen-block-btn:hover {
  color: var(--bg-primary-main);
  background: var(--colors-main);
}
.stages-fiveteen-block__title {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
}
.stages-fiveteen-block__title .block-title {
  margin-bottom: 0px;
  max-width: 750px;
}
.stages-fiveteen-block__title .block-title span {
  color: var(--colors-main);
}
.stages-fiveteen-block__title .info_plate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0px 20px;
  background: var(--bg-primary-second);
  border-radius: 100px;
  width: fit-content;
  flex-shrink: 0;
}
.stages-fiveteen-block__title .info_plate svg path {
  fill: var(--colors-main);
  stroke: var(--colors-main);
}
.stages-fiveteen-block img,
.stages-fiveteen-block svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stages-fiveteen-block-container {
  display: flex;
  flex-direction: row;
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}
.stages-fiveteen-block .stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, -0.06rem + 1.61vw, 1.875rem);
}
.stages-fiveteen-block .stages .stage {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  background: var(--bg-primary-second);
  border-radius: 10px;
  min-height: clamp(28.75rem, 21.957rem + 10.87vw, 35rem);
}
.stages-fiveteen-block .stages .stage-numb {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: var(--text-alt-head);
  background: var(--colors-main);
}
.stages-fiveteen-block .stages .stage-image {
  margin-top: auto;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}
.stages-fiveteen-block .stages .stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .stages-fiveteen-block .stages {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .stages-fiveteen-block .stages {
    grid-template-columns: repeat(2, 1fr);
  }
  .stages-fiveteen-block .stages .stage {
    min-height: clamp(22.5rem, 18.984rem + 15.63vw, 28.75rem);
  }
}
@media (max-width: 700px) {
  .stages-fiveteen-block__title {
    flex-direction: column-reverse;
  }
  .stages-fiveteen-block .stages {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=block.css.map */