.share_block
{
    display:flex;
    background:#0170FF;
    color:white;
    padding: 15px 100px;
    margin: 30px 0 0px 0;
    align-items: center;
    justify-content: flex-end;
}
.share_text
{
    font-weight:400;
    font-size:22px;
}
.share_block ul
{
    display:flex;
    list-style:none;
    margin:0;
    padding-left:0;
}
.share_block ul li
{
    margin-left:20px;
    margin-bottom:4px;
}
.share_block ul li a
{
    display:block;
}
.share_block ul li a p
{
    display:none;
}
.share_block ul li a br
{
    display:none;
}
.share_block ul li a svg
{
    width:20px;
    fill:white;
}
.share_block ul li a:hover > svg
{
    fill:#eee;
}

@media only screen and (max-width: 992px) 
{
   .share_block
    {
        padding: 15px 100px;
    }
}

@media only screen and (max-width: 768px) 
{
.share_block 
{
    align-items: start;
    justify-content: flex-start;
    padding: 15px 30px;
    flex-direction: row;
}
.share_text 
{
     margin-bottom: 0px;
     font-weight: 400;
     font-size: 25px;
}
.share_block ul 
{
    /*padding: 5px 0 0 76px;*/
    padding: 5px 0 0 0px;
    flex: 1;
    justify-content: flex-end;
}
.share_block ul li {
    margin-left: 10px;
    margin-right: 0px;
}
.share_block ul li a svg 
{
    width: 30px;
}
}

