/* tefl_steps_alternative.twig */
.section-steps-alternative {
    margin-top: 6vw;
}

.section-steps-alternative .container {
    max-width: 1175px;
    margin: 0 auto;
}

.section-steps-alternative .steps-alternative-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 6vw;
}

.section-steps-alternative .item-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(8, 179, 190, 0.15);
    color: #08B3BE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.section-steps-alternative h3,
.section-steps-alternative p {
    color: #444444;
    margin: 0;
}

.section-steps-alternative h2.section-title {
  color: #414141;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto;
}

.section-steps-alternative h4.section-sub-title {
  color: #08B3BE;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  margin-top: 1rem;
  line-height: 1.2em;
}

.section-steps-alternative h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.section-steps-alternative p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 1rem;
}

@media screen and (max-width: 766px) {
    .section-steps-alternative .item-number {
        margin: 0 auto;
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 767px) {
    .section-steps-alternative {
        margin-top: 3vw;
    }
    .section-steps-alternative .step {
        flex: 1 1 30%;
    }

    .section-steps-alternative h2.section-title{
        font-size: 1.9vw;
     }
    .section-steps-alternative h4.section-sub-title {
        font-size: 1.5vw;
        line-height: 1.5em;
    }
    .section-steps-alternative .item-title {
        display: flex;
        align-items: center;
    }

    .section-steps-alternative .item-number {
        margin-right: 0.5rem;
    }

    .section-steps-alternative h3,
    .section-steps-alternative p {
        text-align: left;
    }
    .section-steps-alternative .steps-alternative-container {
        margin-top: 3vw;
    }
}