main {
    text-align: center;
}

main > h4 {
    font-size: 1rem;
    color: white;
    font-weight: normal;
    margin: 79px 0px 10px;
    padding: 1rem 20%;
    background-color: var(--mp-blue);
}

.mfa-steps {
    margin: 1rem auto;
    padding: 2rem 3rem;
    color: #2f2f2f;
    max-width: 900px;
}

.mfa-steps p {
    font-size: 1rem;
    text-align: left;
}

.mfa-steps p.shorted {
    padding-right: 150px;
}

.mfa-steps .cols {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.mfa-steps .cols-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.mfa-steps .rows {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.mfa-steps img.little {
    max-width: 188px;
/*    -webkit-box-shadow: 0px 10px 10px -4px rgba(238,238,238,1);
    -moz-box-shadow: 0px 10px 10px -4px rgba(238,238,238,1);
    box-shadow: 0px 10px 10px -4px rgba(238,238,238,1);*/
}

.mfa-steps img.normal {
    max-width: 310px;
}

.mfa-steps img.big {
    max-width: 410px;
}
.mfa-steps img:hover {
    transform: scale(2);
}
.mfa-steps img.big.shadow {
    -webkit-box-shadow: 5px 5px 23px -4px rgba(164,164,164,1);
    -moz-box-shadow: 5px 5px 23px -4px rgba(164,164,164,1);
    box-shadow: 5px 5px 23px -4px rgba(164,164,164,1);
}

.light_shadow {
    -webkit-box-shadow: 0px 0px 10px 25px rgba(219,219,219,0.83);
    -moz-box-shadow: 0px 0px 10px 2px rgba(219,219,219,0.83);
    box-shadow: 0px 0px 10px 2px rgba(219,219,219,0.83);
}

.mfa-steps .item {
    padding: 15px 10px;
}

@media screen and (max-width: 900px) {
    .mfa-steps img.big {
        max-width: 400px;
    }
}

@media screen and (max-width: 800px) {
    main > h4 {
        font-size: 0.8rem;
        padding: 1rem 10%;
    }
    .mfa-steps p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 700px) {
    .mfa-steps p.shorted {
        padding-right: 50px;
    }
    .mfa-steps img.little {
        max-width: 200px;
    }   
    .mfa-steps img.normal {
        max-width: 250px;
    }   
    .mfa-steps img.big {
        max-width: 300px;
    }   
}

@media screen and (max-width: 600px) {
    main > h4 {
        margin-top: 158px;
    }
    .mfa-steps img.little {
        max-width: 100px;
    }   
    .mfa-steps img.normal {
        max-width: 150px;
    }   
    .mfa-steps img.big {
        max-width: 200px;
    }   
}