.logo-block
{
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    justify-content: space-around;
    margin-bottom: 30px;
}
.load_sber,
.load_begin
{
min-height:200px;
color: #2e8e0e;
display:flex;
align-items:center;
justify-content:center;
font-size: 20px;
}
.blink {
    animation-name: blinker;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1.0,0,0,1.0);
    animation-duration: 1s;
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
    -webkit-animation-duration: 1s;
}

@keyframes blinker {
    from { color: #0ab169 }
    to { color: #c31717}
}

@-webkit-keyframes blinker {
    from { color: #0ab169 }
    to { color: #c31717}
}

@media screen and (max-width:768px)  {
    .logo-block
    {
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo-block .col-right
    {

    }
    .logo-block .col-left{

    }
}
