/* MIXINS */
.step {
  position: relative;
  display: grid;
  grid-template-columns: 8% 1fr;
  grid-template-rows: auto auto;
  width: 100%;
  height: auto;
  padding: 46px 55px 60px 0px;
  gap: 34px;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: 0px -2px 11px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0px -2px 11px 2px rgba(0, 0, 0, 0.16);
}
.step-image {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  background-color: #000000;
  clip-path: polygon(0% 0%, 92% 5%, 100% 92%, 0% 100%);
}
.step-image img {
  width: 100%;
  height: 100%;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.step-number {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  margin-left: 30px;
  font-size: 90px;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  transform: rotate(-90deg);
  transform-origin: left;
  height: 160px;
}
@media (max-width: 767px) {
  .step-number {
    height: auto;
  }
}
.step-content {
  position: relative;
  grid-column: 2;
  grid-row: 2;
}
.step-content__headline {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}
@media (max-width:1023px) {
  .step {
    padding-right: 30px;
  }
  .step-image {
    margin-bottom: 12px;
  }
  .step-number {
    margin-left: 30px;
  }
}
@media (max-width:767px) {
  .step {
    grid-template-columns: 30px 1fr;
  }
  .step-image {
    margin-bottom: 6px;
  }
  .step-number {
    margin-left: 8px;
    font-size: 62px;
    position: absolute;
    top: 25%;
  }
  .step-content__text {
    font-size: 18px;
  }
}
