.prm-steps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .prm-steps {
    gap: 20px;
  }
}

.prm-steps__item {
  width: calc(100% / 4 - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 760px) {
  .prm-steps__item {
    width: 100%;
  }
}

.prm-steps__item:last-child .prm-steps__item-img:after {
  display: none;
}

.prm-steps__item-img {
  position: relative;
  width: 100%;
  background: #fff;
  text-align: center;
}
.prm-steps__item-img svg {
  position: relative;
  z-index: 2;
}
.prm-steps__item-img::after {
  content: "";
  z-index: 1;
  border-top: 5px dotted #eee;
  width: 100%;
  position: absolute;
  left: 60%;
  top: 50%;
}
@media (max-width: 760px) {
  .prm-steps__item-img::after {
    display: none;
  }
}

.prm-steps__item-img .prm-image {
  max-width: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .prm-steps__item-img .prm-image {
    max-width: 60px;
  }
}

.prm-steps__item-content {
  background: #f4f4f8;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  width: 100%;
}

.prm-steps__item-num {
  color: #e31235;
  font-size: 40px;
  font-weight: 700;
}

.prm-steps__item-text {
  margin-top: 10px;
}

.prm-steps__item-text p {
  padding: 0;
  margin: 0;
}

.prm-section__footer {
  text-align: center;
}
.prm-hero {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background: url('../images/hero.png') no-repeat 0 0 / cover;
}
@media (max-width: 760px) {
  .prm-hero {
    background: url('../images/m-hero.png') no-repeat 0 100% / cover;
  }
}
.prm-hero__title {
  text-align: left;
  width: 50%;
  margin-left: 0;
  font-weight: 700;
  color: #fff;
  font-size: 40px;
}
@media (max-width: 760px) {
  .prm-hero__title {
    font-size: 24px;
    width: 100%;
    text-align: center;
  }
}
.prm-hero__wrap {
  padding-top: 15%;
  height: 908px;
}
@media (max-width: 760px) {
  .prm-hero__wrap {
    padding-top: 10%;
    padding-bottom: 20%;
  }
}
.prm-hero__top-left {
  margin-top: 20px;
}