* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  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;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.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(../cod/img/ID/2138/img/select.png) no-repeat 96% center;
  outline: none;
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 260px;
  background: #71b014;
  -webkit-border-radius: 50px;
  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;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.btn:hover {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.submenu {
  display: none;
}

.burger {
  position: absolute;
  top: 60%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
}
.burger div {
  width: 100%;
  height: 4px;
  background-color: #fff;
  -webkit-border-radius: 1px;
  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;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.search-block #input-search {
  display: inline-block;
  vertical-align: middle;
  width: -webkit-calc(100% - 30px);
  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;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.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::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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
.breadcrumb ul {
  line-height: 0.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;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  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;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
}

.article__cloud {
  background-color: #fff;
  padding: 10px;
  -webkit-border-radius: 2px;
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #999999;
}
.author .author__info .info__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: 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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.social__list li {
  padding-right: 5px;
}
.social__list li a {
  position: relative;
  color: #fff;
  padding: 4px 3px;
  text-decoration: none;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.social__list li a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  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 {
  -webkit-box-shadow: none;
  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;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  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;
  -webkit-transform: skew(20deg);
  -ms-transform: skew(20deg);
  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;
  -webkit-border-radius: 5px;
  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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -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;
  -webkit-box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
  box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
  outline: none;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.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::placeholder {
  color: #000;
}
.inp::-webkit-input-placeholder {
  color: #a1a4a6;
}
.inp::-moz-placeholder {
  color: #a1a4a6;
}
.inp::-ms-input-placeholder {
  color: #a1a4a6;
}
.inp::placeholder {
  color: #a1a4a6;
}

.price-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  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;
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  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;
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  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;
}
.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  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;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  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;
  -webkit-border-radius: 50%;
  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;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 21px;
  height: 18px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAMAAACDi47UAAAAPFBMVEUAAAD////////////////////////////////////////////////////////////////////////////YSWgTAAAAE3RSTlMA3bu5Rir4MPTaOc6zhIJyYR0DZdjrUAAAAEZJREFUCNdlzUcOwDAIRNFJKHZ64f53DcrCjbf8Ag0qTogk34jISEJMarYz3NRQc8shmBv5j6d0756Iw9C2YvDo9WLE5ewD2TsCQ0WFEQcAAAAASUVORK5CYII=') no-repeat center;
  -webkit-background-size: contain;
  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;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
  cursor: pointer;
  outline: none;
}
.footer__content .btn__top:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  -ms-transform: translate(-50%, -50%) scale(1.5);
  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%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  border: 1px solid #034488;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.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  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}

/* Extra Small Devices, Phones */
@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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .dialog-wrapper .img-wrapper img {
    width: auto;
  }
  .dialog-wrapper .img-wrapper img:first-child {
    margin-right: 10px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 750px) {
  .author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .author .author__name {
    width: 250px;
  }
  .author .author__info {
    max-width: 100%;
    width: -webkit-calc(100% - 250px);
    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%;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .limit {
    max-width: 1021px;
  }
  .top-line__content .logo {
    width: 495px;
  }
  .top-line__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .top-line__content .online-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-calc(100% - 495px);
    width: calc(100% - 495px);
  }
  .top-line__content .online-block .btn-wrapper {
    width: 60%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 5px;
  }
  .top-line__content .online-block .btn {
    width: 50%;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    -webkit-border-radius: 5px;
    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;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    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;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__submenu .submenu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .article {
    width: -webkit-calc(100% - 255px);
    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;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
  }
  .sidebar__list li span {
    display: inline-block;
    background-color: #f9644c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 4px;
    -webkit-border-radius: 5px;
    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;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
  }
  .post .post__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    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;
    -webkit-box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
    box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
  }
  .medicine .medicine__title {
    background-color: #91a2bb;
    font-size: 15px;
    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;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #f96b54;
  }
  .medicine .btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0 15px;
  }
  .medicine .btn-wrapper .btn {
    background-color: #034488;
    color: #fff;
    -webkit-border-radius: 5px;
    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;
    -webkit-background-size: cover;
    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;
    -webkit-box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
    box-shadow: 0 0 17px rgba(166, 181, 210, 0.29);
  }
  .read-us .social-sidebar {
    max-width: 185px;
    margin: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    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;
    -webkit-border-radius: 7px;
    border-radius: 7px;
  }
  .read-us .mailing-wrapper #input-mailing {
    display: inline-block;
    vertical-align: middle;
    width: -webkit-calc(100% - 40px);
    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;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.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::placeholder {
    color: #bfbfbf;
  }
  .read-us .mailing-wrapper .btn-mailing {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background-color: #034488;
    border: 1px solid #034488;
    -webkit-border-radius: 0 5px 5px 0;
    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%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .read-us .mailing-wrapper .btn-mailing:hover {
    background-color: #71b014;
  }
  .social__list {
    padding: 10px 0;
  }
  .social__list li a {
    -webkit-border-radius: 5px;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    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;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .form .form__inner {
    margin: 0 50px;
  }
  .comment__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .comment__content .comment__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .comment__content .comment__info {
    padding-left: 10px;
  }
  .footer__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    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: -webkit-calc(100% - 130px);
    width: calc(100% - 130px);
    text-align: center;
  }
  .footer__content .footer__menu .bottom__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__content {
    padding-top: 20px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1130px) {
  .footer__content .btn__top {
    right: -55px;
  }
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-eye-outline:before {
  content: "\e801";
} /* '' */
.icon-comment:before {
  content: "\e802";
} /* '' */
.icon-login:before {
  content: "\e803";
} /* '' */
.icon-heart:before {
  content: "\e804";
} /* '' */
.icon-up-open:before {
  content: "\e805";
} /* '' */
.icon-twitter:before {
  content: "\f099";
} /* '' */
.icon-facebook:before {
  content: "\f09a";
} /* '' */
.icon-mail-alt:before {
  content: "\f0e0";
} /* '' */
.icon-share:before {
  content: "\f1e0";
} /* '' */
.icon-pinterest:before {
  content: "\f231";
} /* '' */
.icon-user-circle-o:before {
  content: "\f2be";
} /* '' */
