ol {
    counter-reset: item
}
ol li {
    display: block;
}
ol li:before {
    content: counters(item, ".") " ";
    counter-increment: item
}
.sert {
    background: url('../img/sert.png') center no-repeat;
    width: 175px;
    height: 137px;
}
ul li:before {
    top: 12px;
}
.static .description__img {
    margin: 0;
}
body {
    overflow-x: hidden;
}

@media (max-width: 767px){
    .desktop-only {
        display: none !important;
    }
}
@media (min-width: 768px){
    .mobile-only {
        display: none !important;
    }
}

.cbar {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 11;
    display: none;
    width: 100%;
    max-width: 550px
}
.cbar.--show {
    display: block
}
.cbar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #fff;
    color: #212224;
    border-radius: 6px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.12);
    border: 1px solid #ebe9e4;
}
.cbar__text {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400
}
.cbar__text a {
    text-decoration: underline;
}
.cbar__text a:hover {
    text-decoration: none;
}
.cbar .button {
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .cbar {
        left: 20px;
        right: 20px;
        bottom: 60px;
        max-width: initial;
        width: auto;
    }
    .cbar__inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .cbar .button {
        width: 100%;
    }
}