/* i {
  flex: 0 0 auto;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  flex-shrink: 0;
} */
i.article-clock {
  background-image: url(../images/icons/article-clock.svg);
}

.header-bottom {
  padding: 0 40px;
  background: #2c3945 url(../images/bright-squares.png);
  border-top: 1px solid #898989;
  border-bottom: 1px solid #898989;
}
.header-bottom .links {
  display: flex;
  justify-content: center;
  padding: 2px 0;
}
.header-bottom .links .link-item {
  margin: 0 20px;
  padding: 0 5px;
  color: #f4f4f4;
  text-shadow: 0 0 15px #000;
  transition: color 200ms linear;
}
.header-bottom .links .link-item:hover {
  color: #65c5ff;
}

.main-content {
  margin-top: 73px;
}

.lang {
  float: right;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 10px;
}
.lang .lang-item {
  font-weight: bold;
  color: #fff;
}
.lang .lang-item:hover, .lang .lang-item.active {
  color: #46a3f4;
}
.lang .vertical-divider {
  width: 1px;
  background: #fff;
  margin: 0 10px;
  height: 16px;
}

.mobile-mnu .lang {
  float: none;
  margin-left: 0;
  height: auto;
}
.mobile-mnu .lang .lang-item {
  color: #6a6a6a;
}
.mobile-mnu .lang .lang-item:hover, .mobile-mnu .lang .lang-item.active {
  color: #23527c;
}
.mobile-mnu .lang .vertical-divider {
  background: #6a6a6a;
}

.top-softs {
  padding: 10px 0;
  max-height: 105px;
  margin-bottom: 20px;
  margin-top: -20px;
}
.top-softs .slides {
  display: flex;
  justify-content: space-around;
  padding: 0 70px;
  overflow: hidden;
}
.top-softs .item-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  min-width: 84px;
  outline: none;
}
.top-softs .item-wrap:not(.slick-slide):nth-child(n+7) {
  display: none;
}
.top-softs .item {
  flex: 0 0 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-softs .item .img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.top-softs .item a {
  text-align: center;
}
.top-softs .item .name {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 5px;
  text-align: center;
}
.top-softs .slick-list {
  width: 100%;
}
.top-softs .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #429dcf;
  border: 2px solid #f8f8f8;
  text-indent: -99999px;
  overflow: hidden;
  outline: none;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1;
}
.top-softs .slick-arrow:hover {
  box-shadow: 0 0 10px 0 #26effa;
}
.top-softs .slick-arrow.slick-prev {
  left: 15px;
  background-image: url(../images/icons/arrow-left.svg);
}
.top-softs .slick-arrow.slick-next {
  right: 15px;
  background-image: url(../images/icons/arrow-right.svg);
}

/*
.articles-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 15px 0;
}

.article-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
  margin: 0 0 15px;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.article-item:last-of-type {
  margin-bottom: 0;
}
.article-item .article-img {
  flex: 0 0 250px;
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.article-item .article-title {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 8px;
}
.article-item .date {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: #565656;
  font-weight: 600;
}
.article-item .date i {
  width: 15px;
  height: 15px;
}
.article-item .article-descr {
  font-size: 15px;
}
.article-item .read-more-wrap {
  text-align: right;
  margin-top: 5px;
}
.article-item .read-more-wrap .read-more {
  display: inline-flex;
  padding: 5px 15px;
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  vertical-align: top;
  border: 2px solid;
  border-radius: 22px;
}
*/

@media (max-width: 1250px) {
  .top-softs .item-wrap:not(.slick-slide):nth-child(n+6) {
    display: none;
  }
}
@media (max-width: 1070px) {
  .top-softs .item-wrap:not(.slick-slide):nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 870px) {
  .top-softs .item-wrap:not(.slick-slide):nth-child(n+4) {
    display: none;
  }

  /*
  .article-item {
    flex-direction: column;
  }
  .article-item .article-img {
    flex-basis: auto;
    margin: 0 auto 10px;
  }
  .article-item .article-title {
    text-align: center;
  }
  .article-item .date {
    justify-content: center;
  }
  .article-item .article-descr {
    font-size: 14px;
  }
  .article-item .read-more-wrap {
    text-align: center;
  }
  */
}
@media (max-width: 820px) {
  header .header-inner .header-topline .mnu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .main-content {
    margin-top: 42px;
  }

  .header-bottom {
    display: none;
  }

  .bottom-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
}
@media (max-width: 680px) {
  .top-softs .item-wrap:not(.slick-slide):nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 530px) {
  .top-softs .slides {
    padding: 0 55px;
  }
  .top-softs .item-wrap:not(.slick-slide):nth-child(n+2) {
    display: none;
  }
  .top-softs .slick-arrow.slick-prev {
    left: 5px;
  }
  .top-softs .slick-arrow.slick-next {
    right: 5px;
  }
}
@media (max-width: 500px) {
  #sitelogo {
    width: 250px;
  }

  header .header-inner .header-topline {
    padding: 0 10px;
  }

  .menu-button {
    height: 55px;
  }
}