.news-main {
  padding: 0;
}
@media only screen and (max-width: 500px) {
  .news-main {
    margin-top: 30px;
  }
}
.news-block__inside {
  margin-top: 30px;
  border-bottom: 2px solid #ebf2f5;
  border-top: 2px solid #ebf2f5;
  padding: 10px 0;
}
.news-block-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  border-bottom: 2px solid #ebf2f5;
}
@media only screen and (max-width: 500px) {
  .news-block-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.news-block-head-heading {
  font-size: 24px;
  font-weight: bold;
  font-family: 'RobotoBold';
}
.news-block-head a {
  font-size: 12px;
  color: #ff5f3a;
  text-decoration: underline;
}
.news-block-head a:hover {
  color: #1d1d1d;
  text-decoration: none;
}
.news-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -10px;
}
.news-items .news-item {
  padding: 20px 10px;
}
.news-item {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  max-width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0px;
  /* &:first-child{
      background: grey;
    }
    background: lightblue;*/
}
.news-block__inside .news-item {
  margin: 0px 0;
}
.news-block__inside .news-item:first-child {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.news-block__inside .news-item:first-child .news-item-title {
  font-size: 24px;
}
@media only screen and (max-width: 500px) {
  .news-item {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.news-item-title {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.3;
  color: #1d1d1d;
  text-decoration: none;
  font-family: 'RobotoLight';
}
a.news-item-title:hover {
  text-decoration: underline;
  color: #ff5f3a;
}
a.news-item-title:hover:after {
  content: '\0362';
  line-height: 18px;
  font-size: 16px;
  position: relative;
  top: -8px;
  left: 5px;
}
.news-item-date {
  font-size: 12px;
  color: #cfd2d3;
  margin-bottom: 5px;
}
.news-pagination {
  text-align: center;
  padding: 15px 0;
}
.news-pagination * {
  font-family: 'RobotoLight';
  font-size: 18px;
  font-weight: 100;
}
.news-pagination > * {
  display: inline-block;
}
.news-pagination a:hover {
  color: #ff5f3a;
}
.news-pagination-pages {
  margin: 0 20px;
}
.news-pagination-pages a,
.news-pagination-pages span {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.news-pagination-pages span,
.news-pagination-pages a:hover {
  background: #ebf2f5;
  color: #cfd2d3;
  text-decoration: none;
}
.news-item-text {
  font-size: 16px;
}
.news-item-text * {
  font-weight: 100;
  font-family: 'RobotoLight';
}
.news-item-text p {
  margin: 25px 0;
  line-height: 1.3;
}
.news-item-text ul {
  padding-left: 22px;
}
.news-item-text ul li {
  list-style: none;
  padding-left: 15px;
  line-height: 20px;
  margin: 7px 0;
  position: relative;
}
.news-item-text ul li:last-child:after {
  display: none;
}
.news-item-text ul li:after {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  height: 100%;
  background: #ff5f3a;
  width: 1px;
}
.news-item-text ul li:before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  line-height: 20px;
  background: #ff5f3a;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: -4px;
  top: 6px;
}
