@charset 'UTF-8';

.wrapper {background: #fafafa; margin-left: 15px; margin-right: 15px;}
.title {color: #666;font-size: 45px;margin-top: 50px;}
.content {
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25em 0;
}
.thumb {
  position: relative;
  width: 400px;
  margin: 1.46rem;
  text-shadow: none;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(39, 49, 65, 0.1);
  background: #fff;
}
.thumb-image {
  width: 100%;
  height: auto;
  top: 0;
  z-index: 200;
  overflow: hidden;
  transition: all ease 0.8s;
}
.thumb-image:hover img {
  transform: scale(1.1);
}
.thumb-image a img {
  margin: 0;
  width: 100%;
  height: auto;
  transition: 1s;    
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.thumb-info {
  padding: 0.25rem 1rem;
  font-size: 1.85rem;
  color: #444;
  word-wrap: break-word;
}

@media screen and (max-width:768px) {
  .content {margin-top: 12px;}
  .title {font-size: 18px;margin-top:30px;}
  .thumb {
    width: 100%;
    max-width: 400px;
    margin: 0.625rem 1.25rem;
  }
}