.cir-sum { 
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}


.single-article-container {
  position: relative;
  width: 100%;
  height: 100%;

  font-family: 'Ubuntu',Helvetica,Arial,Sans-Serif;

  padding: 30px 0 0 0;
}
.single-article-container .brd-right {
  border-right: 1px solid rgba(0, 0, 0, .1) !important;
}
.article-box {
  position: relative;
  padding: 30px 15px 100px 30px; 
  
  -webkit-animation: art-anim .5s ease;
          animation: art-anim .5s ease;
}
@-webkit-keyframes art-anim {
  0% {
      opacity: .2;
      left: -100px;
  }
  100% {
      opacity: 1;
      left: 0;
  }
}
@keyframes art-anim {
  0% {
      opacity: .2;
      left: -100px;
  }
  100% {
      opacity: 1;
      left: 0;
  }
}

.article-box .header h2,
.article-box .header h3 {
    font-weight: 300 !important; 
    font-family: 'Ubuntu light', Helvetica, Arial,Sans-Serif !important;
}
.article-box .header .foot {
  position: relative;
  padding-top: 10px;
  height: auto;
  font-size: 12px;
  opacity: .5;
}
.article-box .header .foot span {
  margin: 0 15px;
}
.article-box .img {
  max-width: 75%; 
  height: auto;
  margin: 30px 0;
}
.article-box > .body {
  margin-top: 20px;
  text-align: left;
  font-size: 15px;
}
.article-box > .body img {
  max-width: 100%;
  height: auto;
}
.article-box > .body > * {
  line-height: 1.5;
  padding: 0 30px;
  opacity: .8 !important;
}



@media only screen and (max-width: 768px) {
  .single-article-container {
    padding: 100px 15px 0px 15px;
  }
  .article-box {
    padding: 0 10px 20px 10px; 
  }
  .article-box > .body {
    margin-top: 10px;
    font-size: 13px;
  }
  .article-box > .body > p {
    line-height: 1.7;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 575px) {
  .single-article-container {
    padding: 90px 15px 0px 15px;
  }
  .single-article-container .brd-right {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
    margin-bottom: 40px !important;
  }
  .article-box {
    padding: 0 10px 20px 10px; 
  }
  .article-box > .body {
    margin-top: 10px;
    font-size: 13px;
  }
  .article-box > .body > p {
    line-height: 1.7;
    padding: 0 5px;
  }
  .article-box .header h2,
  .article-box .header h3 {
      font-size: 16px;
  }
}
