@import url(https://fonts.googleapis.com/css?family=Oswald|Roboto|Slabo+27px);
.blog-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-news-title {
  color: #444444;
  font-size: 1.5rem;
}

.blog-wrapper {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-wrapper .blog-card {
  max-width: 300px;
  margin: 15px;
  background: #fff;
  border: 1px solid #6DB7D4;
  text-align: center;
  cursor: pointer;
}
.blog-wrapper .blog-card:hover {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.blog-wrapper .blog-card:hover .card-img img {
  opacity: 0.8;
}
.blog-wrapper .blog-card .card-img {
  position: relative;
  text-align: center;
  background: #6DB7D4;
}
.blog-wrapper .blog-card .card-img img {
  max-height: 180px;
  width: 100%;
  border-bottom: 4px solid #6DB7D4;
}
.blog-wrapper .blog-card .card-img:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-top: solid 10px #6DB7D4;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.blog-wrapper .blog-card .card-img h1 {
  position: absolute;
  margin: 0;
  font-size: 42px;
  bottom: 15px;
  width: 100%;
  color: #fff;
  font-family: "Slabo 27px", serif;
}
.blog-wrapper .blog-card .card-details {
  margin-top: 30px;
  font-family: "Roboto", sans-serif;
  color: #3C3C3C;
}
.blog-wrapper .blog-card .card-details span {
  padding: 0 30px;
}
.blog-wrapper .blog-card .card-details span i {
  margin-right: 5px;
}
.blog-wrapper .blog-card .card-text {
  padding: 30px 15px;
  font-family: "Roboto", sans-serif;
  line-height: 22px;
}
.blog-wrapper .blog-card .read-more {
  display: inline-block;
  width: auto;
  text-align: center;
  text-transform: uppercase;
  background: #6DB7D4;
  color: #fff;
  padding: 15px;
  margin-bottom: 30px;
  font-family: "Oswald", sans-serif;
}
.blog-wrapper .blog-card .read-more:hover {
  background: rgb(15.1755102041, 96.306122449, 127.8244897959);
}
.blog-wrapper a {
  text-decoration: none;
  color: white;
}
