.howitworks {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 100px 15%;
    gap: 12px;
}

.howitworks h6 {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.howitworks h2 {
    font-size: 36px;
    font-weight: 600;
}

.progressbar {
    border: solid 1px var(--green);
    height: 1px;
    margin-top: 15px;
    width: 1%;
}

.progressbar.animate {
    animation: grow 5s ease forwards;
}

@keyframes grow {
    from { width: 0%; }
    to {width: 100%; }
}

.howitworks .steps {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.steps .step {
    padding-top: 20px;
    width: 25%;
}

.steps .step h2 {
    color: var(--green);
    font-weight: 700;
}

.steps .step p {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 1400px) {
    .howitworks .steps {
        flex-wrap: wrap;
    }

    .steps .step {
        padding-top: 20px;
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .howitworks {
        padding: 100px 10%;
    }

    .steps .step {
        padding-top: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
   .howitworks h2 {
        font-size: 28px;
   }
}

@media (max-width: 600px) {
   .howitworks h2 {
        font-size: 24px;
    }

    .steps .step h2 {
        font-size: 20px;
    }

    .steps .step p {
        font-size: 14px;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .howitworks h2 {
        font-size: 20px;
    }

    .steps .step p {
        width: 90%;
    }
}
