﻿.stepList {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.stepList .steps {
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    margin-top: 4rem;
}

.stepList .step {
    width: 150px;
    border-radius: 10px;
    background: var(--orange);
    padding: 10px;
    color: var(--font-white);
    font-weight: bold;
    font-size: 25px;
    position: relative;
}

.step img {
    height: 50px;
}

.stepList .step .mainContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stepList .step .numberOfStep {
    opacity: 0.5;
    font-size: 25px;
    left: 10px;
    top: 5px;
    margin: 0;
    position: absolute;
}

@media (max-width: 900px) {

    .stepList .steps {
        gap: 20px;
    }

}

@media (max-width: 750px) {
    .stepList .steps .mainContent {
        flex-direction: row;
        gap: 30px;
        justify-content: left;
        padding-left: 4rem;
    }

    .stepList .steps {
        flex-direction: column;
        gap: 0;
    }

    .stepList .step {
        width: 90%;
        border-radius: 0;
        outline: solid 1px var(--font-white);
    }
}

@media (max-width: 600px) {
    .stepList .step img {
        height: max-content;
        width: 35px;
    }

}

@media (max-width: 550px) {
    .stepList .step {
        font-size: 20px;
    }

}