.general-grid .tile{
  position: relative;
  margin-bottom: 1em;
}
.general-grid .tile .tile-content{
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  position: relative;

}
.general-grid .tile .tile-content .text{
  background: #fff;
  margin:10px;
}
.general-grid .tile a{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.general-grid .tile .tile-content .imgbgcontain{
  overflow: hidden;
  margin-bottom: 30px;
}
.general-grid .tile .tile-content .imgbg{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-grow: 1;
  min-height: 200px;
  transition: all 0.25s ease-in-out;
}
.general-grid .tile:hover .tile-content .imgbg{
  transform:scale(1.2);
}
.general-grid .tile .tile-content h4{
  font-size: 16px;
  font-weight: 600;
  padding:10px 15px;
  margin:0;
  background: var(--lightgray);
}
.general-grid .tile .tile-content span{
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6em;
  display: block;
}
.general-grid .tile .background{
  padding-bottom: 100%;
  background-position: center center;
  background-size: cover;
  transition: all 0.25s ease-in-out;
}
