
/*STEPS CARD*/
.steps__container {
    margin-top: 2.5rem;
}.steps__header__title {
     /*margin-bottom: 1.5rem;*/
     margin-bottom:0;
 }
.steps__card__img{
    border-radius: var(--image-border-radius-mobile);
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--color-sage-2);
    padding-bottom: 70%;
    border: 1px solid transparent;
    margin-bottom: 1rem;
}.steps__card__img img {
     height: auto;
     position: absolute;
     width: auto;
     max-width: none;
     display: block;
     left: -10000%;
     right: -10000%;
     top: -10000%;
     bottom: -10000%;
     margin: auto auto;
     min-width: 1000%;
     min-height: 1000%;
     -webkit-transform: scale(0.1);
     transform: scale(0.1);
 }
.steps__card-full__title{
    font-size: var(--text-size-S);
    line-height: var(--text-line-height-S);
    letter-spacing: var(--text-letter-spacing-S);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-title);
    transition: all 0.3s linear;
    margin-bottom: 0.25rem;
    color: var(--color-black);
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
} .steps__card-full__step-number {
      text-transform: uppercase;
      display: block;
  }
@media (min-width: 576px){
    .steps__container {
        margin-top:  5rem;
    }
    .steps__card__img{
        border-radius: var(--image-border-radius);
    }
    .steps__card-full__title{
        font-size: var(--text-size-M);
        line-height: var(--text-line-height-M);
        letter-spacing: var(--text-letter-spacing-M);
    }
}
