.wrapper-home-content
{
display: flex; display: -webkit-flex;
flex-direction: row; -webkit-flex-direction: row;
justify-content: space-between; -webkit-justify-content: space-between;
padding-right: 10px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 20px;
background-color: #F1F0E2;
width: 99.5%;
margin: auto;
margin-bottom: 3px;
}
.wrapper-home-main
{
display: flex; display: -webkit-flex;
flex-direction: column; -webkit-flex-direction: column;
justify-content: flex-start; -webkit-justify-content: flex-start;
align-items: flex-start; -webkit-align-items: flex-start;
width: 78%;
font-family: 'Georgia',"Times New Roman",Times,serif;
}
.home-recent-comments
{
display: none;
box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.6);
border: 1px solid black;
padding: 18px;
margin-top: 20px;
background-color: #EFF2F5;
}
@media screen and (max-width: 1000px)
{
  .wrapper-home-content
  {
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  background-color: white;
  margin-bottom: 0px;
  width: 100%;
  }
  .wrapper-home-main
  {
  border-top: 2px solid #404040;
  width: 100%;
  margin-bottom: 10px;
  }
  .home-recent-comments
  {
  display: block;
  border: 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.6);
  }
}
