.newsblog-article {
    background: #f1f1f1;
}
.openblog-page__title {
    margin-bottom: 20px;
}
.openblog-page__title-title {
    text-transform: uppercase;
    color: #464646;
}
.openblog__inner {
    background: #fff;
}
.openblog-top {
    display: flex;
    margin-bottom: 74px;
    position: relative;
}
.openblog-top__date {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #BCBCBC;
}
.openblog-top__img {
    width: 388px;
    height: auto;
    margin-right: 48px;
}
.openblog-top__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.openblog-nav {
    width: calc(100% - 456px);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}
.openblog-nav__title {
    margin-bottom: 30px;
    color: #111;
}
.openblog-nav__list {
    display: flex;
    flex-direction: column;
}
.openblog-nav__list a {
    color: #464646;
    margin-bottom: 30px;
    position: relative;
    transition: all .2s linear;
    padding-right: 40px;
    display: flex;
    align-items: center;
}
.openblog-nav__list a:after {
    content: url(../img/svg/openblogarr.svg);
    position: relative;
    display: block;
    left: 20px;
    filter: contrast(0);
    margin-top: 3px;
}
.openblog-nav__list a:hover {
    color: #00D093;
    text-decoration: none;
}
.openblog-nav__list a:hover:after {
    filter: contrast(0.5);
}
.openblog-text {
    padding: 0 45px 60px;
}
.openblog-text h1, .openblog-text h2, .openblog-text h3, .openblog-text h4, .openblog-text h5, .openblog-text h6 {
    font-family: 'Lato';
    color: #111;
    font-weight: 600;
    margin-bottom: 32px;
    margin-top: 50px;
}
.openblog-text p {
    margin-bottom: 15px;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
}
.openblog-text img {
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
}
.openblog-text ul {
    margin-bottom: 60px;
}
.openblog-text ul li {
    position: relative;
    margin-bottom: 32px;
    padding-left: 60px;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
}
.openblog-text ul li:before {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #111;
    left: 10px;
    top: 10px;
}
.openblog-text ol {
    margin-bottom: 60px;
}
.openblog-text ol li {
    counter-increment: step-counter;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 32px;
}
.openblog-text ol li:before {
    content: counter(step-counter)'.';
    margin-right: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .openblog-top__img {
        width: 100%;
        height: 238px;
        margin-right: 0;
    }
    .openblog-nav {
        width: 100%;
        padding: 30px 45px 0;
    }
    .openblog-top {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .openblog-top__date {
        top: 0;
        right: 0;
        color: #fff;
        background: rgba(0,0,0,.5);
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .newsblog-article {
        background: #fff;
    }
    .openblog-nav {
        padding: 30px 0 0;
    }
    .openblog-text {
        padding: 0 0 30px;
    }
    /* .openblog-top__img img {
        object-fit: contain;
    } */
    .openblog-top__img {
        height: auto;
    }
}