.footer_top_icons_wrapper {
    width:100%;
    float:right;
}
.footer_top_icons {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    direction:rtl;
    text-align:center;
}


.footer_top_item_icon{
    flex:0 0 16%;
    padding:20px 10px;
    box-sizing:border-box;
    text-decoration:none;
}
.footer_top_item_icon_content{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.footer_top_item_icon_image{
    width:100px;
    height:100px;
    margin-bottom:15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    transition:.3s;
}
.footer_top_item_icon:hover .footer_top_item_icon_name{
    color:#c7dd71;
}
.footer_top_item_icon_image img{
    width: 70px;
    height: 70px;
}
.footer_top_item_icon_name{
    margin-bottom:5px;
}
.footer_top_item_icon_text{
    max-width:260px;
}
@media (max-width:768px){
.footer_top_item_icon{
    flex:0 0 50%;
    padding:15px 10px;
}

.footer_top_item_icon_image{
    width:80px;
    height:80px;
}

.footer_top_item_icon_image img{
    width:50px;
    height:50px;
}
}