#app-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*display: none;*/
}

.inner-app-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 0 auto;
}

.search-input-container {
  width: 100%;
  text-align: center;
  padding: 30px;
}

.blog-h1-container  {
	width: 100%;
	text-align: center;
}

.blog-h1-container  h1 {
	margin: 0 0 25px 0;
	text-align: center;
}

.search-input {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  padding: 20px;
}

.blog-container {
  width: 32%;
  position: relative;
  border: 0px solid #336699;
  border-radius: 5px;
  padding: 15px 15px 75px 15px;
  margin-top: 15px;
  box-shadow: #d5d7d8 0px 0px 10px;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}

.blog-container:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  top: -2px;
  transition: all ease 0.25s;
}

.report-container:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  top: -2px;
  transition: all ease 0.25s;
}

.btn {
  height: auto;
  font-size: 16px;
  font-weight: bold;
  color: #336699;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;	
}

.btn-position {
  position: absolute;
  border: 2px solid #336699;
  border-radius: 5px;
  outline: none;
  left: 15px;
  bottom: 15px;
  padding: 10px 5px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.btn-position:hover {
	border: 2px solid #336699;
}

.btn-position:hover .btn {
	color: #336699;
}

.blog-container h2 {
	margin-top: 15px;
}

.blog-image {
	width: 100%;
	border: 1px solid  #d5d7d8;
	border-radius: 3px;
}

h2 a {
	text-decoration: none;
	color: #052e47;
}

h2 a:hover {
	text-decoration: none;
	outline: none;
}

.past-blog-container {
	width: 100%;
}

.past-blog-container h2 {
	text-align: center;
	margin-top: 0px;
}

@media all and (max-width: 1100px){
  .search-input {
      max-width: 98%;
      text-align: center;
  }
  .blog-container {
      width: 48%;
  }
}
    
@media all and (max-width:768px) {
  .blog_image {
      width: 100%;
      max-width: 400px;
      display: block;
      margin: 0 auto;
      margin-bottom: 15px;
      float: none
  }
  .blog-container {
    width: 100%;
  }
  .bttn-position {
    bottom: 0px;
  }
  .new-center-flex-start {
    margin: 0px !important;
  }
    
  
}