/*#############CUSTOM START############*/
.article:hover, .recent-article:hover {
  color: #000;
}

.blog__article__paragraph h3 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 20px;
}

.blog__article__paragraph h1 {
  font-family: "Inter";
  font-weight: 500;
  line-height: 54px;
  font-size: 48px;
  margin-bottom: 30px;
}

.blog__article__paragraph h2 {
  font-family: "Inter";
  font-weight: 500;
  line-height: 52px;
  font-size: 44px;
  margin-bottom: 30px;
}

.blog__article__paragraph h4 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
}

.blog__article__paragraph h5 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 12px;
}

.blog__article__paragraph ul {
  font-size: 16px;
  line-height: 40px;
  font-family: "Open Sans";
  font-weight: 300;
  margin-top: 20px;
}

.blog__article__paragraph ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: black;
  margin-right: 16px;
  margin-bottom: 2px;
}

.blog__article__paragraph ol {
  font-size: 16px;
  line-height: 40px;
  font-family: "Open Sans";
  font-weight: 300;
  margin-top: 20px;
}
.blog__article__paragraph ol {
  counter-reset: myCounter;
}

.blog__article__paragraph ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  display: inline-block;
  width: 22px;
  text-align: end;
  margin-right: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  font-family: "Inter";
}
/*###########CUSTOM END###############*/
.main-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 250px;
  width: 100%;
  background-image: url("../../img/N/pages/blogPage/preview.jpg");
  background-position: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.main-preview .main-preview__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1241px;
  width: 85%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: white;
  margin-bottom: 40px;
}

.main-preview .main-preview__title .main-preview__title-arrow {
  position: relative;
  width: 29px;
  background-image: url(../../img/N/common/arrow-decorate.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 20px;
}

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

.blog {
  display: inline-block;
  max-width: 1241px;
  width: 85%;
  margin: 0 auto;
  margin-top: 20px;
  text-align: left;
}

.blog .content-section h1 {
  margin-bottom: 4px;
}

.blog .content-section span {
  display: block;
  margin-bottom: 40px;
}

.blog .blog__articles {
  max-width: 793px;
  width: 70%;
  float: left;
  min-height: 700px;
  margin-bottom: 80px;
}

.blog .blog__articles .blog__articles-show-more {
  background-color: #f4f4f4;
  border: none;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 54px;
  margin-top: 40px;
}

.blog .blog__articles .blog__articles-show-more--disabled{
  cursor: not-allowed;
}

.blog .blog__articles .blog__articles-show-more:not(.blog__articles-show-more--disabled):hover {
  background: #CDDDE3;
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid rgba(205, 221, 227, 0.6);
  margin-right: 20px;
}

.article .article-image {
  max-width: 300px;
  width: 40%;
  height: 300px;
  margin-right: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article .article__info {
  width: 100%;
}

.article .article__info .article__info-title {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}

.article .article__info .article__info-date {
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  color: #697B87;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article .article__info .article__info-annotation {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
  min-height: 196px;
  max-height: 196px;

  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article .article__info .article__info-link {
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article .article__info .article__info-link:after {
  content: url(../../img/N/common/arrow-link-gray.svg);
  width: 40px;
  height: 40px;
  margin-left: 9px;
}

.article .article__info .article__info-link:hover {
  color: #697B87;
}

.right-bar__searching,
.right-bar__recent-articles,
.right-bar__categories {
  max-width: 347px;
  width: 30%;
  margin-top: 40px;
  float: right;
}

.right-bar__searching .searching-field {
  width: 100%;
  height: 64px;
  border: 1px solid #CDDDE3;
  padding: 0 44px 0 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: black;
}

.header-search__submit{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 7px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid #CEDDE3;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
}

.right-bar__searching .searching-field::-webkit-input-placeholder {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.right-bar__searching .searching-field::-moz-placeholder {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.right-bar__searching .searching-field:-ms-input-placeholder {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.right-bar__searching .searching-field::-ms-input-placeholder {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.right-bar__searching .searching-field::placeholder {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.right-bar__categories .categories-title {
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.right-bar__categories .categories__block {
  padding: 20px 19.45px 20px 21px;
  background: #F4F4F4;
}

.right-bar__categories .categories__block .categories__block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.7);
}

.right-bar__categories .categories__block .categories__block__item.active {
  font-weight: 600;
  color: black;
}

.right-bar__categories .categories__block .categories__block__item:not(:last-child) {
  margin-bottom: 20px;
}

.right-bar__categories .categories__block .categories__block__item:hover {
  color: #697B87;
}

.right-bar__recent-articles .recent-articles-title {
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.right-bar__recent-articles .recent-articles__list {
  border: 1px solid #CDDDE3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 15px;
}

.recent-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 140px;
}

.recent-article:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #CDDDE3;
}

.recent-article:not(:first-child) {
  padding-top: 20px;
}

.recent-article .recent-article-image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100px;
  height: 100px;
}

.recent-article .recent-article__info {
  margin-left: 20px;
}

.recent-article .recent-article__info .recent-article__info-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.recent-article .recent-article__info .recent-article__info-date {
  margin-top: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.blog__article-empty {
  margin-top: 40px;
  display: none;
}

.blog__article-empty-text {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
}

.blog__article-empty-note {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.blog__articles--empty .blog__article-empty {
  display: block;
}

.blog__articles-show-more--disable {
  display: none;
}

@media screen and (max-width: 1130px) {
  .blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
  .blog .right-bar__searching {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
  }
  .blog .right-bar__categories {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .blog .blog__articles {
    width: 100%;
    min-width: 100%;
    margin-bottom: 0;
  }
  .blog .blog__articles .article {
    margin: 0;
  }
  .blog .blog__articles .article .article-image {
    margin-right: 20px;
    height: 340px;
    min-width: 250px;
  }
  .right-bar__searching,
  .right-bar__recent-articles,
  .right-bar__categories {
    float: none;
    width: 100%;
    min-width: 100%;
  }
  .right-bar__recent-articles {
    margin-bottom: 81px;
  }
  .right-bar__recent-articles .recent-articles__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  .right-bar__recent-articles .recent-articles__list .recent-article {
    width: calc(50% - 30px);
    margin: 0 15px;
    padding: 0;
    position: relative;
  }
  .right-bar__recent-articles .recent-articles__list .recent-article:nth-child(2n + 1):after {
    content: '';
    position: absolute;
    height: calc(100% + 1px);
    border-right: 1px solid #CDDDE3;
    right: -15px;
  }
  .right-bar__searching .searching-field {
    height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .blog {
    max-width: 648px;
  }
  .blog .blog__articles {
    margin-bottom: 80px;
  }
  .recent-article {
    min-height: 117px;
  }
  .recent-article .recent-article-image {
    display: none;
  }
  .recent-article .recent-article__info {
    margin: 0;
  }
  .article .article__info .article__info-annotation {
    min-height: 209px;
    max-height: 209px;
  }
}

@media screen and (max-width: 761px) {
  .blog .blog__articles .article .article__info .article__info-annotation {
    display: none;
  }
}

@media screen and (max-width: 509px) {
  .main-preview {
    background-image: url("../../img/N/pages/blogPage/preview-adaptive.jpg");
    background-size: cover;
  }
  .main-preview .main-preview__title {
    max-width: 260px;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 33px;
  }
  .main-preview .main-preview__title .main-preview__title-arrow {
    margin: 0 9px;
  }
  .blog .content-section span {
    margin-bottom: 20px;
  }
  .blog .blog__articles .article {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: none;
    padding-bottom: 0;
  }
  .blog .blog__articles .article .article-image {
    margin: 0;
    min-width: 100%;
    height: 200px;
  }
  .blog .blog__articles .article .article__info .article__info-title {
    font-size: 16px;
    line-height: 19px;
    margin: 10px 0;
  }
  .blog .blog__articles .article .article__info .article__info-date {
    margin-bottom: 10px;
  }
  .blog .blog__articles .article .article__info .article__info-annotation {
    display: none;
  }
  .right-bar__recent-articles {
    margin-top: 20px;
  }
  .right-bar__recent-articles .recent-articles__list .recent-article {
    width: 100%;
  }
  .right-bar__recent-articles .recent-articles__list .recent-article:after {
    display: none;
  }
  .right-bar__categories .categories__block .categories__block__item {
    font-size: 14px;
    line-height: 27px;
  }
  .right-bar__searching .searching-field {
    height: 44px;
    font-size: 14px;
  }
  .right-bar__searching .searching-field::-webkit-input-placeholder {
    font-weight: normal;
    font-size: 8px;
  }
  .right-bar__searching .searching-field::-moz-placeholder {
    font-weight: normal;
    font-size: 8px;
  }
  .right-bar__searching .searching-field:-ms-input-placeholder {
    font-weight: normal;
    font-size: 8px;
  }
  .right-bar__searching .searching-field::-ms-input-placeholder {
    font-weight: normal;
    font-size: 8px;
  }
  .right-bar__searching .searching-field::placeholder {
    font-weight: normal;
    font-size: 8px;
  }
}

.content-section {
  width: 100%;
}

.content-section img {
  width: 100%;
}

.content-section .content-img-cover {
  object-fit: cover;
  width: 100%;
  height: 520px;
  margin-bottom: 40px;
}

.content-section h1 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 36px;
  line-height: 120.4%;
  margin-bottom: 40px;
}

.content-section h2 {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  margin: 40px 0 20px;
}

.content-section h3 {
  margin: 40px 0 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}

.content-section h4 {
  margin: 40px 0 20px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}

.content-section p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.content-section p:not(:last-child) {
  margin-bottom: 20px;
}

.content-section ul {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 20px;
}

.content-section ul > li {
  position: relative;
  padding-left: 24px;
  line-height: 28px;
}

.content-section ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.content-section ul > li::before {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: black;
  margin-right: 16px;
  left: 0;
  top: 10px;
}

.content-section ul > li a {
  display: inline;
  color: black;
}

.content-section ul > li a:hover {
  color: #697B87;
}

.content-section ul > li a:active {
  color: #697B87;
}

.content-section ol {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  counter-reset: liCounter;
  margin-bottom: 20px;
}

.content-section ol ul {
  margin-top: 10px;
}

.content-section ol > li {
  position: relative;
  padding-left: 39px;
  line-height: 28px;
}

.content-section ol > li:not(:last-child) {
  margin-bottom: 10px;
}

.content-section ol > li::before {
  counter-increment: liCounter;
  content: counter(liCounter) ".";
  display: block;
  position: absolute;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  min-width: 23px;
  text-align: end;
  margin-right: 16px;
  color: black;
  left: 0;
}

.content-section ol > li a {
  display: inline;
  color: black;
}

.content-section ol > li a:hover {
  color: #697B87;
}

.content-section ol > li a:active {
  color: #697B87;
}

.content-section > span {
  margin: 4px 0 40px;
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

@media screen and (max-width: 1100px) {
  .content-section h1 {
    font-weight: 500;
    font-size: 28px;
    line-height: 48px;
  }
  .content-section .content-img-cover {
    object-fit: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 499px) {
  .content-section h1 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .content-section .content-img-cover {
    object-fit: cover;
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
  }
  .content-section h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0 10px;
  }
  .content-section h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0 10px;
  }
  .content-section h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0 10px;
  }
  .content-section p,
  .content-section ul,
  .content-section ol {
    font-size: 14px;
    line-height: 24px;
  }
  .content-section ul {
    margin-top: 10px;
  }
  .content-section ul > li::before {
    top: 10px;
  }
  .content-section ol > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .content-section ol > li::before {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 320px) {
  .content-section ul {
    max-width: 229px;
  }
}

.blog__article {
  max-width: 793px;
  width: calc(70% - 20px);
  float: left;
  margin-top: 40px;
  margin-right: 20px;
}

.blog__article .blog__article-title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 36px;
  line-height: 120.4%;
}

.blog__article .blog__article-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 520px;
  margin-bottom: 40px;
}

.blog__article .blog__article-annatation {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.blog__article-content .content-label {
  margin: 40px 0 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: #172A3F;
}

.blog__article-content .content-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #172A3F;
  border-top: 1px solid rgba(205, 221, 227, 0.6);
}

.blog__article-content .content-item:last-child {
  border-bottom: 1px solid rgba(205, 221, 227, 0.6);
}

.blog__article-content .content-item::before {
  content: '';
  display: block;
  position: relative;
  width: 5px;
  height: 5px;
  border-top: 2px solid #627080;
  border-right: 2px solid #627080;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-right: 15px;
}

.blog__article-content .content-item:hover {
  color: #000;
}

.blog__article__note {
  font-family: "Inter";
  margin-top: 40px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  padding-left: 26px;
  position: relative;
}

.blog__article__note::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: calc(100% - 14px);
  background-color: #CDDDE3;
  left: 0;
  top: 8px;
}

.blog__article__table {
  display: flex;
  width: 100%;
  border: 1px solid #CDDDE3;
  font-size: 16px;
  font-weight: 300;
  flex-direction: column;
  margin: 40px 0 121px;
  overflow: auto;
}

.blog__article__table .table__row {
  display: flex;
}

.blog__article__table .table__row .table__column {
  display: flex;
  width: 25%;
  min-width: 149px;
  padding: 0 24px;
  height: 60px;
  align-items: center;
}

.blog__article__table .table__row .table__column:not(:first-child) {
  border-left: 1px solid #CDDDE3;
  justify-content: flex-end;
}

.blog__article__table .table__row .table__column:first-child {
  min-width: 198px;
}

.blog__article__table .table__row:nth-child(2n) {
  background: rgba(205, 221, 227, 0.24);
}

.blog__article__table .table__row:first-child {
  font-weight: 600;
}

@media screen and (max-width: 1130px) {
  .blog__article {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
  .blog__article__table {
    margin-bottom: 42px;
  }
  .blog__article__table .table__row .table__column:not(:first-child) {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .blog__article .blog__article-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 48px;
  }
  .blog__article__table {
    width: calc(100% + ((100vw - 100%) / 2));
    max-width: 648px;
    margin-right: calc((100vw - 100%) / 2);
  }
  .blog__article__table .table__row {
    width: fit-content;
  }
  .blog__article-content .content-label {
    font-size: 24px;
    line-height: 29px;
  }
  .right-bar__recent-articles {
    display: none;
  }
}

@media screen and (max-width: 509px) {
  .blog__article .blog__article-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
  }
  .blog__article .blog__article-image {
    height: 174px;
  }
  .blog__article .blog__article-annatation {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
  }
  .blog__article-content .content-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
  .blog__article-content .content-item {
    font-size: 14px;
    line-height: 24px;
  }
  .blog__article__note {
    font-size: 16px;
    line-height: 22px;
  }
}

