.container{
  max-width: 1170px;
  margin: 0 auto;
  /*display: table-cell;*/
}

.inner-container{
  max-width: 1170px;
  border: 2px solid red;
}

.card{
  width: 33.33%;
  min-height: 225px;
  float: left;
  border-radius: 10px;
  margin-top: 40px;
}

.card:hover .shadow, .card:hover .inner-image{
  box-shadow:  0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.content-cards{
  padding-right: 20px;
  padding-left: 20px;
  display: table-cell;
}

.inner-image{
  background-position: 50% 50%;
  border-radius: 10px 10px 0px 0px;
  height: 200px;
}

.card-category{
  display: inline-block;
  background-color: pink;
  padding: 5px;
  border-radius: 5px;
  margin-left: 25px;
  position: relative; bottom: 15px;
}

.card-title{
  padding: 15px;
  font-size: 20px;
  color: #3b9bfc;
  height: 120px;
}

.card-content{
  padding: 15px;
  font-size: 15px;
  line-height: 30px;
  height: 145px;
}

.card-button{
  margin: 25px 15px 15px 15px;
}

.button-card{
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid rgba(135, 146, 146, 0.4);
  color: #879295;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: inset 0 0px 0, inset 0 0px 0px, inset 0 0px 0px;
}

.button-card:hover{
  background-color: #3b9bfc;
  border: 1px solid #3b9bfc;
  color: #fff;
  box-shadow: inset 0 0px 0, inset 0 0px 0px, inset 0 0px 0px;
}

.shadow{
  display: table-cell;
  background-color: #fff;
  color: #879295;
}

.card-category>ul>li{
  display: inline;
  text-decoration: underline;
  font-size: 12px;
}

@media screen and (max-width: 1000px) {
  .card{
    width: 50%;
  }
}

@media screen and (max-width: 1100px) {
  .content-cards{
    height: 200px;
    padding-left:20px;
  }
}


@media screen and (max-width: 767px) {
  .card{
    width: 100%;
  }

  .card-content {
    height: auto;
  }

  .card-title {
    height: auto;
  }
}
