.content_text p
{
    text-align: justify;
    margin-top: 1rem;
    margin-bottom: 0.2em;
}

.content_text ul
{
    list-style-type: square;
    margin-left: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.content_text ol {
    padding:0;
    list-style: none;
    counter-reset: li;
}    
.content_text ol li {
    position: relative;
    padding:12px 20px 20px 28px;
    margin-left: 40px;
    transition-duration: 0.3s;
}
.content_text ol li:before {
    border: 6px solid transparent;
    line-height: 30px;
    position: absolute;
    top: 0;
    left:-30px;
    width:42px;
    text-align:center;
    font-size: 13px;
    font-weight: bold;
    color: #77AEDB;
    counter-increment: li;
    content: counter(li);
    transition-duration: 0.3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    }
.content_text ol li:hover:before {
    color: #337AB7;    
}
.content_text ol li:after {
    position: absolute;
    top: 0;
    left: -30px;
    width: 42px;
    height: 42px;
    border: 6px solid #3399FF;
    border-radius: 50%;
    content: '';
    opacity: 0.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
.content_text ol li:hover:after {
    animation: 500ms ease-in-out 0s bounceIn;
    opacity: 1;
}    
 
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.3, 1.3, 1.3);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
.content_text
{
    padding-bottom: 1em;
}

.content_text h2, h3, h4, h5
{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* кнопки telegram, вотцап, e-mail, телефон */
.messager {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 20px;
    bottom: 30px;
    z-index: 100000;
}

.messager .img
{
    width: 48px;
    height: 48px;
}

/* end */