.steps {
  font-family: 'Readex Pro', sans-serif;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}
.steps__inner {
  display: grid;
  gap: 24px;
}
@media (min-width: 960px) {
	 .steps__inner {
		 grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1264px) {
	 .steps__inner {
		 grid-template-columns: repeat(4, 1fr);
     gap: 32px;
	}
}
.step {
  border-radius: 16px;
  padding: 32px;
}
.steps__content {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 20px;
  @media (min-width: 960px) {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 32px;
  }
  @media (min-width: 1264px) {
    margin-bottom: 32px;
  }
  @media (min-width: 1700px) {
    font-size: 16px;
    line-height: 28px;  
    margin-bottom: 40px;
  }
}
.steps__content h2 {
  font-size: 24px; 
  line-height: 1.34;
  margin-bottom: 16px;
  
  @media (min-width: 960px) {
    font-size:40px;
    line-height: 1.2;
  }
  @media (min-width: 1264px) {
    margin-bottom: 20px;
  }
  @media (min-width: 1700px) {
    font-size:56px;
    line-height: 1.14
    margin-bottom: 24px;
  }
}
.step__index {
  display: flex;
  width: 36px;
  height:36px;
  justify-content: center;
  align-items: center;
  color: #FFF;

  font-size:  20px;
  font-weight:  600;
  line-height: 32px;
  border-radius: 4.5px;
  background: #2F76FF;
  margin-bottom: 32px;
}
.step__editor {
  font-size: 12px;
  line-height: 16px;
  @media (min-width: 1264px) {
    font-size: 14px;
    line-height: 20px;
  }
  @media (min-width: 1700px) {
    font-size: 14px;
    line-height: 24px;
  }
}
.step__editor h3 {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
  
  @media (min-width: 960px) {
    font-size: 14px;
    line-height: 20px;
  }
  @media (min-width: 1264px) {
    font-size: 16px;
    line-height: 24px;
  }
  @media (min-width: 1700px) {
    font-size: 16px;
    line-height: 28px;
  }
}



