

.steps *{
    color: white;
}
.steps-parent{
    width: 100%;
    display: flex;
    justify-content: center;
}
.steps{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 800px;

    gap: 20px;
    margin-top: 80px;
    margin-bottom: 30px;
}
.steps > h1{
    text-transform: uppercase;
    font-family: "Montserrat", Verdana, sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 30px;
}
.steps > .steps--steps-container{
    display: flex;
    gap: 30px;
}
.steps--steps-container > .card{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;

    background-color: var(--black2);
    /* box-shadow: 0px 5px 20px 10px #000; */
    border-radius: 1px;
    padding: 20px;
}

.steps--steps-container > .card > img{
    aspect-ratio: 1/1;
    height: 60px;
    fill: white;
}

.steps--steps-container > .card > h1{
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Montserrat", Verdana, sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: .01em;
    line-height: 28px;
    height: min-content;
}
@media screen and (max-width: 800px){
    .steps > .steps--steps-container{
        flex-direction: column;
        align-items: center;
    }

    .steps--steps-container > .card{
        align-items: center;
        justify-content: center;
        height: min-content;
        width: 80%;
    }
}