
article {
  background: #fff;
  border-radius: 5px;
  margin: 5px 0;
}

article .article-title {
  color: white;
}

article .article-title a{
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: white;
  background: #027DA2;
  border-radius: 5px;
  padding-right: 60px;
  transition: background-color .25s 0s ease-out;
  position: relative;
}


article .article-title a::after {
  position: absolute;
  display: block;
  content: " ";
  top: 50%;
  right: 10px;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  background: url(../../foundation/img/arrow-up.svg) center center no-repeat;
  background-size: 28px 28px;
  transition: transform .25s 0s ease-out;
  transform: rotate(0deg);
}
article .article-title a b {
  font-weight: 700;
}

article .article-body .article-body-wrap {
  padding: 15px 20px;

}

article .article-title a.collapsed {
  background: #DCB893;

}
article .article-title a.collapsed::after {
  transform: rotate(180deg);
}
.topContainer {
  display: flex;
  justify-content: space-between;
}
@media (min-width:769px) {
  .topContainer {
    padding-bottom: 50px !important;
 }
}
.topContainer .backToHome {
  position: relative;
  width: 30%;
}
.topContainer .backToHome .backtohome-btn {
  cursor: pointer;
  position: absolute;
  top: 54%;
  width: 90px;
  height: 90px;
  right: 0%;
}
