 .steps-wrapper {
    display: flex;
    flex-wrap:wrap;
    margin: 30px 25px;
    justify-content: space-around;
    width: 95%;
}
#steps-container .steps-root {
    width:255px;
    height: 430px;
    border-radius: 10px;
    margin-bottom:2rem;
    padding: 1rem;
    text-align: left;
    align-content: center;
    overflow: hidden;
    margin:2px;
    transition: all 0.5s ease-in-out;
}

#steps-container .steps-root:hover {
    box-shadow: 0px 7px 10px rgba(0.2, 0.2, 0.3, 0.3);
    top: 0px;
    background-color: white;
}

#steps-container .iconContainer{
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin:auto;
    transition: 0.5s ease-in-out;
}

#steps-container .steps-root:hover .iconContainer {
    box-shadow: 0px 7px 10px rgba(81, 80, 80, 0.3);
    background: linear-gradient(to left, rgb(196, 215, 241), rgb(46, 130, 247));
}

#steps-container .icon {
    color: var(--light);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary);
    font-size: 80px;
    font-weight: 700;
}

#steps-container .step-heading{
    margin: .5rem 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
}

#steps-container .step-content{
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-light);
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .steps-wrapper {
        margin: 10px 0px;
        width: 98%;
    }
    #steps-container .steps-root {
        height: auto;
    }
}