.adviser_ly{
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}

.adviser__item{
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.adviser__item:first-of-type{
    margin-right: 10px;
}

.adviser__img{
    width: 170px;
    margin-bottom: 10px;
}

.adviser__name{
    color: #3a3d74;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.adviser__small-txt{
    color: #3a3d74;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width:640px) {
    .adviser_ly{
        flex-direction: column;
        align-items: center;
    }
    
    .adviser__item{
        width: 280px;
        margin-bottom: 0;
    }

    .adviser__item:first-of-type{
        margin-right: 0;
        margin-bottom: 30px;
    }
}