/* Blog index
--------------------------------------*/
.blog {
    background: #fff;
    padding: 30px 40px;
    border-radius: 3px;
    margin-bottom: 50px;
}
.blog__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 32px;
    color: #3c3c3c;
}

/* Blog categories
--------------------------------------*/
.blog-categories {
    margin: 35px 0;
}
.blog-categories__link {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: #3c3c3c;
    display: inline-block;
    padding-right: 30px;
}
.blog-categories__icon {
    font-size: 22px;
    position: relative;
    top: 4px;
    padding-right: 9px;
}
.blog-categories__link:hover {
    color: #a9cf44;
}
.blog-categories__link--active {
    color: #a9cf44;
}

/* Blog main
--------------------------------------*/
.blog-main {
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
}
.blog-main__content {
    width: 380px;
    padding: 0 30px 0 0;
    position: relative;
}
.blog-main__banner {
    width: 700px;
    height: 300px;
    background: #eee;
    border-radius: 3px;
}
.blog-main__image {
    border-radius: 3px;
    position: relative;
    width: 700px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.blog-main__header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.blog-main__category {
    display: flex;
    font-size: 14px;
    color: #90B335;
    text-transform: uppercase;
}
.blog-main__category--leaf {
    color: #cf5d44;
}
.blog-main__category--vaccine {
    color: #2959D3;
}
.blog-main__category--pregnant {
    color: #90B235;
}
.blog-main__category--news {
    color: #D9AE41;
}
.blog-main__category--qa {
    color: #449DCF;
}
.blog-main__icon {
    font-size: 22px;
    position: relative;
    top: -5px;
    padding-right: 9px;
}
.blog-main__date {
    font-size: 14px;
    color: #878787;
}
.blog-main__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 31px;
    color: #3c3c3c;
}
.blog-main__description {
    margin-top: 15px;
    font-size: 18px;
    line-height: 27px;
}
.blog-main__footer {
    position: absolute;
    bottom: 5px;
}
.blog-main__read {
    width: 175px;
    padding: 10px;
    background: #A9CF44;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
}
.blog-main__read-icon {
    position: relative;
    top: 2px;
    left: 85px;
}
.blog-main__read:hover {
    opacity: 0.8;
}

/* Blog list
--------------------------------------*/
.blog-list {
    grid-gap: 40px 60px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    margin-bottom: 35px;
}
.blog-list-fixed {
    margin-bottom: 60px;
}
.blog-list__item {
    width: 320px;
}

/* Blog card
--------------------------------------*/
.blog-card {
    overflow: hidden;
}
.blog-card__link {
    display: block;
}
.blog-card__image {
    border-radius: 3px;
    position: relative;
    height: 300px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease,-webkit-transform .6s ease;
}
.blog-card__image:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.blog-card__header {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 15px;
}
.blog-card__category {
    font-size: 14px;
    display: flex;
    text-transform: uppercase;
}
.blog-card__icon {
    font-size: 22px;
    padding-right: 9px;
    position: relative;
    top: -5px;
}
.blog-card__category--leaf {
    color: #cf5d44;
}
.blog-card__category--vaccine {
    color: #2959D3;
}
.blog-card__category--pregnant {
    color: #90B235;
}
.blog-card__category--news {
    color: #D9AE41;
}
.blog-card__category--qa {
    color: #449DCF;
}
.blog-card__date {
    font-size: 14px;
    line-height: 18px;
    color: #999;
}
.blog-card__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #3c3c3c;
}
.blog-card__title:hover {
    color: #777;
}
.blog-card__description {
    font-size: 18px;
    line-height: 23px;
    color: #38393d;
    margin-top: 10px;
}

/* Blog popular
--------------------------------------*/
.blog-popular {
    width: 320px;
}
.blog-popular__title {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    color: #3c3c3c;
    margin-bottom: 20px;
}
.blog-popular__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.blog-popular__content {
    width: 260px;
    padding-right: 40px;
    position: relative;
}
.blog-popular__image-wrp {
    width: 80px;
    height: 80px;
    background: #eee;
    border-radius: 3px;
}
.blog-popular__image {
    border-radius: 3px;
}
.blog-popular__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #3c3c3c;
    display: block;
}
.blog-popular__date {
    font-size: 14px;
    line-height: 18px;
    color: #999;
    position: absolute;
    bottom: 0;
}

/* Blog pagination
--------------------------------------*/
.blog-footer {
    border-top: 1px solid #f1f1f9
}
.blog-pagination {
    position: relative;
    list-style: none;
    text-align: center;
    margin: 30px 0 10px 0;
}
.blog-pagination__item {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}
.blog-pagination__item--active {
    font-weight: 600;
}
.blog-pagination__item--active + .blog-pagination__item:not(.blog-pagination__item--next):before {
    content: "";
    width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin: -4px 4px 0px -4px;
    border-top: 1px solid #38393D;
}
.blog-pagination__item--disabled {
}
.blog-pagination__item--prev {
    margin: 0;
    position: absolute;
    top: -3px;
    left: 0;
}
.blog-pagination__item--next {
    margin: 0;
    position: absolute;
    top: -3px;
    right: 0;
}
.blog-pagination__link {
    font-size: 18px;
    color: #38393d;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 6px 5px;
}
.blog-pagination__link--disabled {
    color: rgba(46,64,87,.4);
    pointer-events: none;
}
.blog-pagination__icon--next {
    font-size: 24px;
}

/* Blog view
--------------------------------------*/
.blog-view {
    display: flex;
    margin-bottom: 40px;
}
.blog-view__body {
    width: 825px;
}
.blog-view__aside {
    width: 300px;
    margin-left: 25px;
}

/* Blog post
--------------------------------------*/
.blog-post {
    padding: 15px 25px 25px 25px;
    background: #fff;
    border-radius: 3px 3px 0 0;
}
.blog-post__back {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
    color: #38393d;
}
.blog-post__back-icon {
    position: relative;
    top: 2px;
    padding-right: 5px;
}
.blog-post__share {
    margin-top: 10px;
}
.blog-post__category {
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    text-decoration: none;
}
.blog-post__category--vaccine {
    color: #2959d3;
}
.blog-post__category--leaf {
    color: #cf5d44;
}
.blog-post__category--vaccine {
    color: #2959D3;
}
.blog-post__category--pregnant {
    color: #90B235;
}
.blog-post__category--news {
    color: #D9AE41;
}
.blog-post__category--qa {
    color: #449DCF;
}
.blog-post__icon {
    font-size: 22px;
    padding-right: 9px;
    position: relative;
    top: 4px;
}
.blog-post__date {
    font-size: 14px;
    line-height: 21px;
    color: #a3a3a3;
    margin-left: 15px;
}
.blog-post__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #3c3c3c;
    margin-top: 15px;
}
.blog-post__description {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #3c3c3c;
    margin-top: 20px;
}
.blog-post__image {
    margin: 20px 0 0 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* Blog post typography
--------------------------------------*/
.blog-post h2 {
    margin-top: 32px;
    font-size: 28px;
    line-height: 29px;
    color: #3c3c3c;
}
.blog-post h3 {
    margin-top: 32px;
    font-size: 23px;
    line-height: 24px;
    color: #3c3c3c;
}
.blog-post p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
    color: #38393d;
}
.blog-post strong {
    font-weight: 600;
}
.blog-post ul {
    padding-left: 20px;
}
.blog-post ul li {
    font-size: 18px;
    line-height: 27px;
    color: #38393d;
    margin: 5px 0;
}
.blog-post ul li::before {
    content: "\2022";
    color: #A9CF44;
    font-weight: 600;
    display: inline-block;
    width: 8px;
    margin-right: 18px;
}

/* Blog share
--------------------------------------*/
.blog-share {
    padding: 10px 25px;
    background: #fff;
}
.blog-share__content {
    padding: 30px 0;
    border-top: 0.5px solid #F1F1F9;
    border-bottom: 0.5px solid #F1F1F9;
}
.blog-share__title {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    font-size: 23px;
    line-height: 24px;
    color: #3c3c3c;
}
.blog-share__buttons {
    display: inline-block;
    margin-left: 20px;
}
.social-likes__widget_vkontakte {
    background: #597DA3;
}
.social-likes__widget_twitter {
    background: #00ACEE;
}
.social-likes__widget_facebook {
    background: #3B5998;
}
.social-likes__widget {
    padding: 7.5px 9px;
    width: 121px;
    text-align: center;
    border-radius: 3px;
}
.social-likes__button {
    padding: .04em .7em 0 1.95em;
    font-weight: 400;
    font-family: pt sans, sans-serif;
}

/* Blog Prev Next
--------------------------------------*/
.blog-prev-next {
    padding: 5px 25px;
    background: #fff;
}
.blog-prev-next__content {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* Blog Prev
--------------------------------------*/
.blog-prev {
    width: 400px;
}
.blog-prev__link {
    font-weight: 600;
    font-size: 21px;
    line-height: 22px;
    color: #90B235;
}
.blog-prev__icon {
    position: relative;
    top: 3px;
    font-weight: 400;
    color: #A9CF44;
    padding-right: 10px;
}
.blog-prev-post {
    margin-top: 10px;
    padding-left: 30px;
}
.blog-prev-post__title {
    display: inline-block;
    width: 250px;
    vertical-align: top;
    padding: 0 10px;
}
.blog-prev-post__image {
    display: inline-block;
    width: 52px;
    height: 52px;
    background: #eee;
    border-radius: 3px;
}

/* Blog Next
--------------------------------------*/
.blog-next {
    text-align: right;
    width: 400px;
}
.blog-next__link {
    font-weight: 600;
    font-size: 21px;
    line-height: 22px;
    color: #90B235;
}
.blog-next__icon {
    position: relative;
    top: 3px;
    font-weight: 400;
    color: #A9CF44;
    padding-left: 10px;
}
.blog-next-post {
    margin-top: 10px;
    padding-right: 30px;
}
.blog-next-post__title {
    display: inline-block;
    width: 250px;
    vertical-align: top;
    padding: 0 10px;
}
.blog-next-post__image {
    display: inline-block;
    width: 52px;
    height: 52px;
    background: #eee;
    border-radius: 3px;
}

/* Blog similar
--------------------------------------*/
.blog-similar {
    padding: 15px 25px;
    background: #fff;
    margin: 35px 0;
    border-radius: 3px;
}
.blog-similar__header {
    display: flex;
    justify-content: space-between;
}
.blog-similar__title {
    font-weight: 600;
    font-size: 23px;
    line-height: 24px;
    color: #3C3C3C;
}
.blog-similar__link-all {
    font-size: 16px;
    line-height: 24px;
    color: #787575;
}
.blog-similar__list {
    grid-gap: 40px 60px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    margin: 20px 0;
}

/* Blog similar card
--------------------------------------*/
.blog-similar-post__image {
    border-radius: 3px;
    position: relative;
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.blog-similar-post__link {
    display: block;
}
.blog-similar-post__header {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 15px;
}
.blog-similar-post__category {
    font-size: 14px;
    display: flex;
    text-transform: uppercase;
}
.blog-similar-post__icon {
    font-size: 22px;
    padding-right: 9px;
    position: relative;
    top: -5px;
}
.blog-similar-post__category--leaf {
    color: #cf5d44;
}
.blog-similar-post__category--vaccine {
    color: #2959D3;
}
.blog-similar-post__category--pregnant {
    color: #90B235;
}
.blog-similar-post__category--news {
    color: #D9AE41;
}
.blog-similar-post__category--qa {
    color: #449DCF;
}
.blog-similar-post__date {
    font-size: 14px;
    line-height: 18px;
    color: #999;
}
.blog-similar-post__title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #3c3c3c;
    max-height: 55px;
    overflow: hidden;
}
.blog-similar-post__title:hover {
    color: #777;
}
.blog-similar-post__description {
    font-size: 18px;
    line-height: 23px;
    color: #38393d;
    margin-top: 10px;
}

/* Mobile
--------------------------------------*/

/* Mobile blog filter
--------------------------------------*/
.m-blog-filter {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #F1F1F9;
}
.m-blog-filter__header {
    display: flex;
    justify-content: space-between;
}
.m-blog-filter__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #3c3c3c;
}
.m-blog-filter__link {
    font-size: 16px;
    line-height: 21px;
    color: #a9cf44;
}
.m-blog-filter__body {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 8;
    background: #fff;
}
.m-blog-filter__body.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s 0s,visibility 0s 0s;
    -moz-transition: opacity .3s 0s,visibility 0s 0s;
    transition: opacity .3s 0s,visibility 0s 0s;
}
.m-blog-categories {

}
.m-blog-categories__header {
    padding: 15px 20px;
    border-bottom: 1px solid #e6e6f0;
}
.m-blog-categories__title {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;

    text-align: center;

    color: #38393D;
}
.m-blog-categories__close {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 16px;
    line-height: 21px;
    color: #38393D;
    opacity: 0.5;
}
.m-blog-categories__link {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: #3c3c3c;
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #e6e6f0;
}

/* Mobile main blog post
--------------------------------------*/
.m-blog-main {
    padding: 20px;
    background: #fff;
}
.m-blog-main__image-link {
    display: block;
}
.m-blog-main__image {
    border-radius: 3px;
    position: relative;
    width: 700px;
    height: 162px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.m-blog-main__header {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.m-blog-main__title {
    font-weight: 600;
    margin-top: 10px;
    display: block;
    font-size: 22px;
    line-height: 26px;
    color: #3c3c3c;
}
.m-blog-main__description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #3c3c3c;
}
.m-blog-main__read {
    margin-top: 10px;
    width: 175px;
    padding: 10px;
    background: #A9CF44;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
}

/* Mobile blog post fixed
--------------------------------------*/
.m-blog-fixed {
    padding: 0 20px;
    margin-top: 20px;
}
.m-blog-fixed__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.m-blog-fixed__item {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    margin: 0 5px;
}
.m-blog-fixed__item:first-child {
    margin: 0 7px 0 0;
}
.m-blog-fixed__item:last-child {
    margin: 0 0 0 7px;
}
.m-blog-fixed-post__image {
    border-radius: 3px 3px 0 0;
    position: relative;
    height: 110px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.m-blog-fixed-post__body {
    background: #fff;
    padding: 10px;
    border-radius: 0 0 3px 3px;
}
.m-blog-fixed-post__category {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
}
.m-blog-fixed-post__category--leaf {
    color: #cf5d44;
}
.m-blog-fixed-post__category--vaccine {
    color: #2959D3;
}
.m-blog-fixed-post__category--pregnant {
    color: #90B235;
}
.m-blog-fixed-post__category--news {
    color: #D9AE41;
}
.m-blog-fixed-post__category--qa {
    color: #449DCF;
}
.m-blog-fixed-post__icon {
    padding-right: 10px;
}
.m-blog-fixed-post__title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #3c3c3c;
    height: 30px;
    overflow: hidden;
    margin-top: 5px;
}
.m-blog-fixed-post__date {
    font-size: 12px;
    line-height: 16px;
    color: #999;
    margin-top: 10px;
}

/* Mobile blog popular
--------------------------------------*/
.m-blog-popular {
    padding: 0 20px;
    margin-top: 15px;
}
.m-blog-popular__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-radius: 3px;
    background: #fff;
}
.m-blog-popular__content {
    width: 260px;
    padding: 8px;
    position: relative;
    background: #fff;
    border-radius: 3px 0 0 3px;
}
.m-blog-popular__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #3c3c3c;
}
.m-blog-popular__date {
    position: absolute;
    bottom: 5px;
    font-size: 12px;
    line-height: 16px;
    color: #999;
}
.m-blog-popular__image-wrp {
    width: 80px;
    height: 80px;
    background: #e2e2e2;
    border-radius: 3px;
}

/* Mobile blog list
--------------------------------------*/
.m-blog-list {
    padding: 0 20px;
    margin-top: 15px;
}
.m-blog-list__item {
    background: #fff;
    border-radius: 3px;
    margin-bottom: 15px;
}
.m-blog-card__link {
    display: block;
}
.m-blog-card__image {
    border-radius: 3px 3px 0 0;
    position: relative;
    height: 160px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.m-blog-card__header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}
.m-blog-card__category {
    display: inherit;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #d9ae41;
}
.m-blog-card__icon {
    font-size: 16px;
    padding-right: 10px;
}
.m-blog-card__date {
    font-size: 12px;
    line-height: 16px;
    color: #999;
}
.m-blog-card__body {
    padding: 5px 15px 20px 15px;
}
.m-blog-card__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    color: #3c3c3c;
}
.m-blog-card__description {
    font-size: 14px;
    line-height: 18px;
    color: #38393d;
    margin-top: 10px;
}

/* Mobile post
--------------------------------------*/
.m-blog-post {
    padding: 20px;
    background: #fff;
}
.m-blog-post__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #3c3c3c;
    margin-top: 10px;
}
.m-blog-post__share {
    margin-top: 10px;
}
.m-blog-post__share .social-likes {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.m-blog-post__share .social-likes__widget {
    margin: 0 5px;
    width: 100%;
}
.m-blog-post__share .social-likes__widget:first-child {
    margin:  0 5px 0 0;
}
.m-blog-post__share .social-likes__widget:last-child {
    margin:  0 0 0 5px;
}
.m-blog-post__share .social-likes__button {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}
.m-blog-post__description {
    font-size: 16px;
    line-height: 24px;
    color: #3c3c3c;
}
.m-blog-post__image {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

/* Mobile post typography
--------------------------------------*/
.m-blog-post h2 {
    font-size: 20px;
    line-height: 21px;
    color: #3c3c3c;
    margin-top: 15px;
}
.m-blog-post h3 {
    font-size: 20px;
    line-height: 21px;
    color: #3c3c3c;
    margin-top: 15px;
}
.m-blog-post p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 21px;
    text-align: justify;
    color: #38393d;
}
.m-blog-post strong {
    font-weight: 600;
}
.m-blog-post ul {
    padding-left: 20px;
}
.m-blog-post ul li {
    font-size: 14px;
    line-height: 21px;
    text-align: justify;
    color: #38393d;
}
.m-blog-post ul li::before {
    content: "\2022";
    color: #A9CF44;
    font-weight: 600;
    display: inline-block;
    width: 8px;
    margin-right: 18px;
}

/* Mobile post share
--------------------------------------*/
.m-blog-share {
    background: #fff;
    padding: 15px 20px;
    border-top: 1px solid #F1F1F9;
    border-bottom: 1px solid #F1F1F9;
}
.m-blog-share__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    color: #3c3c3c;
}
.m-blog-share__buttons {
    margin: 10px 0;
}
.m-blog-share .social-likes {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.m-blog-share .social-likes__widget {
    margin: 0 5px;
    width: 100%;
}
.m-blog-share .social-likes__widget:first-child {
    margin:  0 5px 0 0;
}
.m-blog-share .social-likes__widget:last-child {
    margin:  0 0 0 5px;
}
.m-blog-share .social-likes__button {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}

/* Mobile blog prev next
--------------------------------------*/
.m-blog-prev-next {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 15px 20px;
}

/* Mobile blog prev
--------------------------------------*/
.m-blog-prev {
    width: 50%;
}
.m-blog-prev__link {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #90B235;
}
.m-blog-prev__icon {
    font-size: 16px;
    vertical-align: middle;
    padding-right: 10px;
}
.m-blog-prev-post {
    margin-top: 10px;
    padding-left: 28px;
}
.m-blog-prev-post__title {
    font-size: 12px;
    line-height: 16px;
    color: #3c3c3c;
}

/* Mobile blog next
--------------------------------------*/
.m-blog-next {
    width: 50%;
    text-align: right;
}
.m-blog-next__link {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #90B235;
}
.m-blog-next__icon {
    font-size: 16px;
    vertical-align: middle;
    padding-left: 10px;
}
.m-blog-next-post {
    margin-top: 10px;
    padding-right: 28px;
}
.m-blog-next-post__title {
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    color: #3c3c3c;
}

/* Mobile blog similar post
--------------------------------------*/
.m-blog-similar {
    padding: 20px;
}
.m-blog-similar__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    color: #3C3C3C;
}
.m-blog-similar__list {
    grid-gap: 10px 10px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    margin-top: 15px;
}
.m-blog-similar-post {
    height: 195px;
}
.m-blog-similar-post__link {
    display: block;
}
.m-blog-similar-post__image {
    border-radius: 3px 3px 0 0;
    position: relative;
    height: 105px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #e2e2e2;
}
.m-blog-similar-post__body {
    padding: 10px;
    background: #fff;
    border-radius: 0 0 3px 3px;
}
.m-blog-similar-post__category {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    height: 16px;
    overflow: hidden;
}
.m-blog-similar-post__category--vaccine {
    color: #2959d3;
}
.m-blog-similar-post__category--leaf {
    color: #cf5d44;
}
.m-blog-similar-post__category--vaccine {
    color: #2959D3;
}
.m-blog-similar-post__category--pregnant {
    color: #90B235;
}
.m-blog-similar-post__category--news {
    color: #D9AE41;
}
.m-blog-similar-post__category--qa {
    color: #449DCF;
}
.m-blog-similar-post__icon {
    padding-right: 10px;
}
.m-blog-similar-post__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #3c3c3c;
    height: 30px;
    overflow: hidden;
    margin-top: 5px;
}
.m-blog-similar-post__date {
    font-size: 12px;
    line-height: 16px;
    color: #999;
    margin-top: 3px;
}