@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-size: 18px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: #EEF2F5;
}

.container {
    position: relative;
    overflow-x: hidden;
    opacity: 1;
}

.limit {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 320px;
}

.clearfix {
    clear: both;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    transition: .5s ease all;
    outline: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}

input {
    outline: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/select.png) no-repeat 96% center;
    outline: none;
}

.btn {
    position: relative;
    display: block;
    width: 100%;
    max-width: 260px;
    background: #71B014;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    outline: none;
    padding: 5px 30px;
    cursor: pointer;
    transition: .5s ease all;
}

.btn:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

/* Header */

.top-line {
    background-color: #fff;
    border-top: 3px solid #71B014;
}

.top-line__content {
    padding: 2px 0;
}

.top-line__content .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-line__content .logo .logo-inner {
    width: 180px;
}

.top-line__content .logo .logo-description {
    padding-left: 5px;
    max-width: 100px;
    font-size: 9px;
    text-transform: uppercase;
}

.top-line__content .online-block {
    display: none;
}

.header__menu {
    display: none;
}

.header__submenu {
    background-color: #034488;
    padding: 6px 0;
}

.submenu__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.submenu {
    display: none;
}

.burger {
    position: absolute;
    top: 60%;
    left: 10px;
    transform: translateY(-50%);
    width: 32px;
}

.burger div {
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 1px;
    margin-bottom: 4px;
}

.burger:hover div {
    background-color: #71B014;
}

.search-block {
    width: 175px;
    display: inline-block;
    vertical-align: middle;
}

.search-block .search-wrapper {
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 3px;
}

.search-block #input-search {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 30px);
    border: none;
    background-color: transparent;
    padding: 3px 10px;
    padding-right: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    transition: .5s ease all;
}

.search-block #input-search::-webkit-input-placeholder {
    color: #fff;
}

.search-block #input-search::-moz-placeholder {
    color: #fff;
}

.search-block #input-search::-ms-input-placeholder {
    color: #fff;
}

.search-block #input-search:-ms-input-placeholder {
    color: #fff;
}

.search-block #input-search::placeholder {
    color: #fff;
}

.search-block .btn-search {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 30px;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.search-block .btn-search svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-block .btn-search:hover svg path {
    stroke: #fff;
}

/* Main */

.main {
    display: block;
}

.main .limit {
    padding: 0;
}

.main__content {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    display: none;
}

.article p {
    font-size: 18px;
    color: #000;
}

.article a {
    color: #71B014;
    text-decoration: underline;
    font-weight: bold;
}

.article a:hover {
    text-decoration: none;
}

.breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.breadcrumb ul {
    line-height: .8;
    padding: 5px 0;
}

.breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: #6B6B6B;
    padding-right: 7px;
}

.breadcrumb li:before {
    content: '/';
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 10px;
    transform: translateY(-50%);
}

.breadcrumb li:last-child:before {
    display: none;
}

.breadcrumb li a {
    color: #6B6B6B;
    font-weight: normal;
    text-decoration: none;
}

.breadcrumb li a.active-link {
    color: #000;
}

.breadcrumb li a:hover {
    color: #71B014;
}

.breadcrumb .article__die {
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    background-color: #F9644C;
    color: #fff;
    padding: 3px 6px;
    border-radius: 5px;
    text-transform: uppercase;
}

.article__cloud {
    background-color: #fff;
    padding: 10px;
    border-radius: 2px;
}

.article__title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

.author {
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #E9EBEF;
    padding-bottom: 10px;
}

.author .author__ava {
    position: absolute;
    width: 40px;
    height: 40px;
}

.author .author__name {
    padding-left: 50px;
    display: inline-block;
    vertical-align: middle;
}

.author .author__name span {
    color: #034488;
}

.author .author__info {
    max-width: 250px;
    padding: 5px 0;
    padding-left: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999999;
}

.author .author__info .info__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author .author__info .info__right .info__view,
.author .author__info .info__right .info__review {
    position: relative;
    padding-left: 5px;
}

.author .author__info .info__right .info__view span,
.author .author__info .info__right .info__review span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}

.author .author__info .info__right .info__view:before,
.author .author__info .info__right .info__review:before {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #91A2BB;
}

.social {
    padding: 10px 0;
}

.social__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social__list li {
    padding-right: 5px;
}

.social__list li a {
    position: relative;
    color: #fff;
    padding: 4px 3px;
    text-decoration: none;
    transition: .5s ease all;
}

.social__list li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.social__list li a.icon-facebook {
    background-color: #375E99;
}

.social__list li a.icon-twitter {
    background-color: #41C3F3;
}

.social__list li a.icon-pinterest {
    background-color: #C52024;
}

.social__list li a.icon-mail-alt {
    background-color: #808080;
}

.social__list li a.icon-share {
    color: #91A2BB;
}

.social__list li a.icon-share:hover {
    box-shadow: none;
}

.social__list li a.icon-share:hover span {
    color: #71B014;
}

.social__list li a.icon-share span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    padding-left: 10px;
    margin-left: 5px;
    text-transform: uppercase;
}

.social__list li a.icon-share span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 150%;
    background-color: #91A2BB;
    transform: translateY(-50%);
}

.social__list li span {
    display: none;
}

.article__top-list {
    padding: 10px 0;
}

.article__top-list li .list__title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    background-color: #034488;
    line-height: 1;
    padding: 0 5px;
}

.article__top-list li p {
    font-size: 18px;
    margin: 5px 0;
}

.article__top-list li p span {
    font-weight: bold;
    color: #EB0000;
}

.img-composition {
    position: relative;
}

.img-composition .composition__sign {
    position: relative;
    padding: 10px;
    overflow: hidden;
    margin-top: -40px;
}

.img-composition .composition__sign:after {
    content: '';
    position: absolute;
    top: 0;
    left: -45%;
    width: 140%;
    height: 100%;
    background-color: #91A2BB;
    transform: skew(20deg);
    z-index: 0;
}

.img-composition .composition__sign span {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
}

.img-composition .composition__sign p {
    position: relative;
    max-width: 95%;
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
    color: #fff;
    z-index: 2;
}

.dialog-wrapper {
    background-color: #F5F9FC;
    padding: 5px;
}

.dialog {
    padding: 10px 0;
}

.dialog .dialog__caption {
    font-size: 18px;
    font-weight: bold;
    color: #034488;
    margin-bottom: 5px;
}

.dialog .dialog__description {
    font-size: 18px;
    font-style: italic;
    color: #000;
}

.img-wrapper img {
    width: 287px;
    margin-bottom: 5px;
}

.img-wrapper .img-before,
.img-wrapper .img-after {
    position: relative;
}

.img-wrapper .img-before span,
.img-wrapper .img-after span {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 1px 2px #000;
    z-index: 1;
}

.img-wrapper .img-after {
    position: relative;
}

.form-wrapper {
    padding: 15px 0 0;
}

.form-wrapper .title {
    font-size: 26px;
    font-weight: bold;
    color: #EB0000;
    line-height: 1;
}

.form-wrapper .subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.form {
    position: relative;
    background-color: #F5F9FC;
    border-radius: 5px;
    margin-top: 70px;
    padding-top: 340px;
    padding-bottom: 40px;
}

.form .form__inner {
    max-width: 280px;
    margin: 0 auto;
}

.form .form__img {
    width: 241px;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form .form__title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.form .btn {
    max-width: 100%;
    margin: 15px auto;
    border: none;
    padding: 20px 10px;
}

.inp {
    display: block;
    width: 100%;
    height: 48px;
    background-color: #fff;
    border: 1px solid transparent;
    font-size: 14px;
    color: #000;
    padding: 10px;
    margin-bottom: 8px;
    box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
    outline: none;
    transition: .5s ease all;
}

.inp:hover {
    background-color: transparent;
    border: 1px solid #B7BCC6;
}

.inp:hover::-webkit-input-placeholder {
    color: #000;
}

.inp:hover::-moz-placeholder {
    color: #000;
}

.inp:hover::-ms-input-placeholder {
    color: #000;
}

.inp:hover:-ms-input-placeholder {
    color: #000;
}

.inp:hover::placeholder {
    color: #000;
}

.inp::-webkit-input-placeholder {
    color: #A1A4A6;
}

.inp::-moz-placeholder {
    color: #A1A4A6;
}

.inp::-ms-input-placeholder {
    color: #A1A4A6;
}

.inp:-ms-input-placeholder {
    color: #A1A4A6;
}

.inp::placeholder {
    color: #A1A4A6;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 0;
}

.price-wrapper .old-price {
    font-size: 14px;
    font-weight: 900;
    color: #A1A4A6;
    padding: 0 10px;
    line-height: 24px;
}

.price-wrapper .old-price span {
    position: relative;
    font-size: 24px;
}

.price-wrapper .old-price span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 1px;
    background-color: #A1A4A6;
    transform: translate(-50%, -50%) rotate(-30deg);
}

.price-wrapper .old-price span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 1px;
    background-color: #A1A4A6;
    transform: translate(-50%, -50%) rotate(30deg);
}

.price-wrapper .new-price {
    font-size: 20px;
    font-weight: 900;
    color: #84C12A;
    padding: 0 10px;
    line-height: 24px;
}

.price-wrapper .new-price span {
    font-size: 34px;
}

.comment__cloud {
    margin-top: 10px;
    background-color: #F5F9FC;
}

.comment__title {
    padding: 10px;
}

.comment__title .title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.comment__title .comment__count {
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

.comment__list {
    background-color: #fff;
    padding: 12px 10px;
}

.comment__item {
    position: relative;
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.comment__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment__ava {
    position: absolute;
    width: 40px;
    height: 40px;
}

.comment__content {
    padding-left: 50px;
}

.comment__content .comment__header {
    font-size: 16px;
    font-weight: bold;
}

.comment__content .comment__info {
    display: flex;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: normal;
    color: #ADB2BF;
}

.comment__content .comment__info .icon-heart {
    padding-left: 5px;
}

.comment__content .comment__info .icon-heart:before {
    font-size: 14px;
}

.comment__content .comment__info .icon-heart.like :before {
    color: #EB0000;
}

.dislike:before {
    color: gray;
}

.like:before {
    color: red;
}

.icon-heart {
    color: gray !important;
    text-decoration: none !important;
}

.comment__content .comment__message {
    padding: 5px 0;
}

.comment__content .comment__message p {
    font-size: 18px;
    margin-bottom: 0;
}

.comment__content .comment__message p a {
    font-weight: bold;
}

.comment__content .comment__footer {
    display: flex;
    justify-content: space-between;
}

.comment__content .comment__footer a {
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
}

.comment__content .comment__footer a:hover {
    text-shadow: 0px 0px 1px #000;
}

.comment__content .comment__footer .footer__left a {
    position: relative;
    color: #2C6FD4;
    padding-right: 10px;
}

.comment__content .comment__footer .footer__left a:last-child:after {
    display: none;
}

.comment__content .comment__footer .footer__left a:after {
    content: '';
    position: absolute;
    top: 60%;
    right: 2px;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #C3C3C3;
}

.comment__content .comment__footer .footer__right a {
    color: #EB0000;
}

.read-more {
    padding: 20px 10px 35px;
}

.read-more .read__title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.read-more .read__list {
    padding: 10px 0;
}

.read-more .read__list li {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
}

.read-more .read__list li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #F9644C;
    border-radius: 50%;
    margin-right: 5px;
}

.read-more .read__btn {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #F9644C;
    padding-left: 30px;
    text-decoration: underline;
}

.read-more .read__btn:hover {
    text-decoration: none;
}

.read-more .read__btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 21px;
    height: 18px;
    background: url(../images/icon-arrow.png) no-repeat center;
    background-size: contain;
}

.footer {
    background-color: #fff;
    border-top: 3px solid #D0DBE7;
}

.footer__content {
    position: relative;
}

.footer__content .btn__top {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background-color: #034488;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    color: #fff;
    transform: translateY(-50%);
    transition: .5s ease all;
    cursor: pointer;
    outline: none;
}

.footer__content .btn__top:hover:before {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
}

.footer__content .btn__top:before {
    content: '';
    position: absolute;
    width: 125%;
    height: 125%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    border: 1px solid #034488;
    border-radius: 50%;
    opacity: 1;
    transition: .5s ease all;
}

.footer__content .logo {
    max-width: 203px;
}

.footer__content .logo img {
    width: 195px;
}

.footer__content .logo .logo-description {
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    color: #000;
}

.footer__content .footer__menu .copyright {
    font-size: 12px;
    color: #AEAEAE;
    padding: 5px 0;
}

.footer__content .footer__menu .menu,
.footer__content .footer__menu .footer__social {
    display: none;
}

/* Mobile First */

@media only screen and (min-width: 480px) {
    .limit {
        max-width: 95%;
    }

    .img-left {
        margin: 0 auto;
    }

    .img-composition img {
        margin: 10px auto;
    }

    .dialog-wrapper .img-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dialog-wrapper .img-wrapper img {
        width: auto;
    }

    .dialog-wrapper .img-wrapper img:first-child {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 750px) {
    .author {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .author .author__name {
        width: 250px;
    }

    .author .author__info {
        max-width: 100%;
        width: calc(100% - 250px);
        padding-left: 5px;
    }

    .img-left {
        float: left;
        margin-bottom: 20px;
        padding-right: 30px;
    }

    .article__top-list li .list__title {
        font-size: 40px;
        margin-left: -70px;
    }

    .article p {
        margin-bottom: 10px;
    }

    .img-wrapper .img-after span {
        left: auto;
        right: 20px;
    }

    .img-composition {
        position: relative;
        max-width: 700px;
        margin: 0 auto;
    }

    .img-composition .composition__sign {
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 300px;
        margin-top: 0;
        padding: 15px;
    }

    .img-composition .composition__sign:after {
        width: 137%;
    }

    .img-composition .composition__sign span {
        font-size: 18px;
    }

    .img-composition .composition__sign p {
        font-size: 18px;
        max-width: 90%;
    }
}

@media only screen and (min-width: 992px) {
    .limit {
        max-width: 1021px;
    }

    .top-line__content .logo {
        width: 495px;
    }

    .top-line__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-line__content .online-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 495px);
    }

    .top-line__content .online-block .btn-wrapper {
        width: 60%;
        display: flex;
        justify-content: center;
        padding: 0 5px;
    }

    .top-line__content .online-block .btn {
        width: 50%;
        font-size: 12px;
        font-weight: normal;
        text-transform: none;
        border-radius: 5px;
        padding: 10px;
        padding-left: 35px;
    }

    .top-line__content .online-block .btn span {
        position: relative;
    }

    .top-line__content .online-block .btn span:before {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: -30px;
        font-size: 20px;
        transform: translateY(-50%);
    }

    .top-line__content .online-block .btn.sign-up {
        margin-right: 5px;
        color: #000;
        background-color: #DFE8EF;
    }

    .top-line__content .online-block .btn.sign-up span:before {
        color: #A1A7AC;
    }

    .top-line__content .online-block .social-top {
        width: 40%;
        display: flex;
        justify-content: center;
    }

    .top-line__content .online-block .social-top a {
        display: inline-block;
        padding: 0 5px;
    }

    .top-line__content .logo .logo-inner {
        width: 295px;
    }

    .top-line__content .logo .logo-description {
        max-width: 200px;
        font-size: 14px;
        padding-left: 17px;
    }

    .header__menu {
        display: block;
        background-color: #034488;
    }

    .header__menu .menu {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }

    .header__menu .menu li {
        position: relative;
        padding: 0 5px;
    }

    .header__menu .menu li:last-child:after {
        display: none;
    }

    .header__menu .menu li:after {
        content: '';
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        width: 2px;
        height: 80%;
        background-color: #4978A9;
    }

    .header__menu .menu li a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        text-transform: uppercase;
    }

    .header__menu .menu li a:hover {
        color: #71B014;
        text-shadow: 0px 0px 1px #000;
    }

    .burger {
        display: none;
    }

    .search-block {
        width: 245px;
    }

    .header__submenu {
        background-color: #71B014;
        padding: 0;
    }

    .header__submenu .submenu__content {
        display: flex;
        justify-content: space-between;
    }

    .header__submenu .submenu__title {
        display: block;
        background-color: #fff;
        padding: 10px 5px;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        color: #000;
    }

    .header__submenu .submenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__submenu .submenu ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__submenu .submenu ul li {
        padding: 0 10px;
    }

    .header__submenu .submenu ul li a {
        font-size: 13px;
        font-weight: 500;
        color: #fff;
    }

    .header__submenu .submenu ul li a.active-link,
    .header__submenu .submenu ul li a:hover {
        text-decoration: underline;
    }

    .main__content {
        display: flex;
        justify-content: space-between;
    }

    .article {
        width: calc(100% - 255px);
        padding-right: 10px;
    }

    .breadcrumb {
        padding-right: 0;
    }

    .breadcrumb ul {
        padding: 10px 0;
    }

    .breadcrumb li {
        font-size: 12px;
    }

    .breadcrumb .article__die {
        font-size: 12px;
    }

    .sidebar {
        display: block;
        width: 255px;
        padding-left: 10px;
        padding-right: 10px;
        border-left: 1px solid #fff;
        padding-top: 20px;
    }

    .sidebar__title {
        font-size: 15px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .sidebar__list {
        padding: 10px 0 20px;
    }

    .sidebar__list li {
        border-bottom: 1px dashed #D4D7DA;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .sidebar__list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sidebar__list li a {
        text-decoration: none;
    }

    .sidebar__list li a:hover p {
        color: #71B014;
    }

    .sidebar__list li p {
        font-size: 15px;
        font-weight: normal;
        color: #666565;
        text-transform: none;
        transition: .5s ease all;
    }

    .sidebar__list li span {
        display: inline-block;
        background-color: #F9644C;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        padding: 2px 4px;
        border-radius: 5px;
    }

    .sidebar__list li .sidebar__theme {
        font-size: 12px;
        font-weight: bold;
        color: #F9644C;
        text-transform: none;
    }

    .post__list {
        padding: 15px 0;
    }

    .post {
        position: relative;
        border-bottom: 1px dashed #D4D7DA;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .post:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .post:hover .post__description p {
        color: #71B014;
    }

    .post .img__post {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
    }

    .post .post__description {
        padding-left: 70px;
    }

    .post .post__description p {
        font-size: 15px;
        color: #000;
        transition: .5s ease all;
    }

    .post .post__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 5px;
    }

    .post .post__bottom .post__date {
        font-size: 12px;
        color: #034488;
    }

    .post .post__bottom .post__share a {
        color: #91A2BB;
    }

    .post .post__bottom .post__share a:hover {
        color: #71B014;
    }

    .right {
        text-align: right;
    }

    .right .post__more {
        display: inline-block;
        font-size: 12px;
        color: #F9644C;
        text-transform: uppercase;
        text-decoration: underline;
    }

    .right .post__more:hover {
        color: #71B014;
        text-decoration: none;
    }

    .medicine {
        background-color: #D5E0E9;
        margin-top: 20px;
        box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
    }

    .medicine .medicine__title {
        background-color: #91A2BB;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        padding: 10px 15px;
    }

    .medicine .medicine__list {
        background-color: #fff;
        padding: 10px;
        padding-left: 20px;
    }

    .medicine .medicine__list li {
        position: relative;
        font-size: 14px;
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .medicine .medicine__list li:before {
        content: '';
        position: absolute;
        top: 5px;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid #F96B54;
    }

    .medicine .btn-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 15px;
    }

    .medicine .btn-wrapper .btn {
        background-color: #034488;
        color: #fff;
        border-radius: 5px;
        width: 40%;
        font-size: 13px;
        font-weight: normal;
        text-transform: none;
        padding: 5px;
    }

    .medicine .btn-wrapper .btn.btn--white {
        background-color: #fff;
        color: #034488;
        margin-left: 10px;
    }

    .banner {
        display: block;
        position: relative;
        background: url(../images/banner-bg.jpg) no-repeat center;
        background-size: cover;
        padding: 20px 15px 270px;
        margin-top: 15px;
    }

    .banner .banner__title {
        font-size: 26px;
        font-weight: 900;
        color: #CC7D3F;
        text-transform: uppercase;
    }

    .banner .banner__subtitle {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
    }

    .banner img {
        position: absolute;
        bottom: 5px;
        right: 15px;
    }

    .read-us {
        background-color: #fff;
        margin-top: 20px;
        padding: 25px 15px;
        box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
    }

    .read-us .social-sidebar {
        max-width: 185px;
        margin: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .read-us .social-sidebar a {
        display: block;
        width: 25%;
    }

    .read-us p {
        font-size: 15px;
        font-weight: 500;
        color: #000;
    }

    .read-us .footnote {
        font-size: 12px;
        font-weight: normal;
        color: #000;
    }

    .read-us .footnote a {
        color: #000;
        text-decoration: underline;
    }

    .read-us .footnote a:hover {
        color: #71B014;
    }

    .read-us .mailing-wrapper {
        font-size: 0;
        width: 100%;
        height: 42px;
        margin: 10px auto;
        border: 1px solid #BFBFBF;
        border-radius: 7px;
    }

    .read-us .mailing-wrapper #input-mailing {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 40px);
        border: none;
        background-color: transparent;
        padding: 3px 10px;
        padding-right: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: normal;
        color: #BFBFBF;
        transition: .5s ease all;
    }

    .read-us .mailing-wrapper #input-mailing::-webkit-input-placeholder {
        color: #BFBFBF;
    }

    .read-us .mailing-wrapper #input-mailing::-moz-placeholder {
        color: #BFBFBF;
    }

    .read-us .mailing-wrapper #input-mailing::-ms-input-placeholder {
        color: #BFBFBF;
    }

    .read-us .mailing-wrapper #input-mailing:-ms-input-placeholder {
        color: #BFBFBF;
    }

    .read-us .mailing-wrapper #input-mailing::placeholder {
        color: #BFBFBF;
    }

    .read-us .mailing-wrapper .btn-mailing {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        background-color: #034488;
        border: 1px solid #034488;
        border-radius: 0 5px 5px 0;
        width: 40px;
        height: 100%;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .read-us .mailing-wrapper .btn-mailing img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .read-us .mailing-wrapper .btn-mailing:hover {
        background-color: #71B014;
    }

    .social__list {
        padding: 10px 0;
    }

    .social__list li a {
        border-radius: 5px;
        padding: 8px 16px;
    }

    .social__list li span {
        display: inline-block;
        font-size: 14px;
        font-weight: normal;
    }

    .article__cloud {
        padding: 15px;
    }

    .article__title {
        font-size: 30px;
    }

    .dialog {
        padding: 10px 5px;
    }

    .dialog .dialog__description {
        padding-left: 35px;
    }

    .form-wrapper {
        padding: 25px 0 10px;
    }

    .form-wrapper .subtitle {
        max-width: 600px;
    }

    .form {
        display: flex;
        justify-content: flex-end;
        max-width: 620px;
        margin: 85px auto 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .form .form__img {
        position: absolute;
        width: auto;
        top: -60px;
        left: 20px;
        transform: translate(0, 0);
    }

    .form .form__inner {
        margin: 0 50px;
    }

    .comment__title {
        display: flex;
        justify-content: space-between;
    }

    .comment__content .comment__header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .comment__content .comment__info {
        padding-left: 10px;
    }

    .footer__content {
        display: flex;
        justify-content: space-between;
    }

    .footer__content .logo {
        padding: 10px 0;
    }

    .footer__content .footer__menu .menu {
        padding: 20px 0 10px;
    }

    .footer__content .footer__menu .menu li {
        padding: 0 5px;
    }

    .footer__content .footer__menu .menu a {
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        color: #000;
    }

    .footer__content .footer__menu .menu a:hover,
    .footer__content .footer__menu .menu a.active-link {
        color: #71B014;
        text-decoration: underline;
    }

    .footer__content .footer__menu .menu,
    .footer__content .footer__menu .footer__social {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer__content .footer__menu .footer__social {
        width: 130px;
    }

    .footer__content .footer__menu .footer__social a {
        padding: 0 5px;
        display: block;
    }

    .footer__content .footer__menu .copyright {
        display: block;
        width: calc(100% - 130px);
        text-align: center;
    }

    .footer__content .footer__menu .bottom__menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__content {
        padding-top: 20px;
    }
}

@media only screen and (min-width: 1130px) {
    .footer__content .btn__top {
        right: -55px;
    }
}

.btn-wrapper {
    text-align: center;
}

.btn-wrapper .terra-btn {
    display: inline-block;
    margin: 10px auto 30px;
    padding: 15px;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    background: #71B014 !important;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.terra-btn:hover {
    opacity: 0.8;
}

.comment__user {
    color: black !important;
    text-decoration: none !important;
}

.link-flex {
    display: flex;
}

@media only screen and (max-width: 500px) {
    .link-flex {
        display: block;
    }
}

/* blockRedLine */

@media screen and (max-width: 767px) {
    .blockRedLine3103__image {
        display: none;
    }
}