.band {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  grid-gap: 0.6rem;
  padding-bottom: 20px;
  margin-top: -20px;
}
.card {
  text-decoration: none;
  background-color: transparent;
  color: #444;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  top: 0;
  border: none;
  overflow: hidden
}
.background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 225px;
  transition: all .6s ease-in-out;
}
.hideme {
  position: absolute;
  background: rgba(25, 42, 57, 0.85);
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hideme {
  transition: all .6s ease-in-out;
}
.card .content-container {
position: absolute;
/* display: flex; */
/* align-content: center; */
/* align-items: center; */
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.content-container {
  padding: 10px 20px;
    width: 100%;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    text-align: center;
    
-webkit-align-items: center; 
  align-items: center; 
}
.content-container .about {
  font-size: 0.8rem;
  align-self: end;
}
.content-container h4 {
  font-size: 1.1rem;
  color: #fff;
}
.content-container span {
  font-size: 0.7rem;
  color: #D8D8D8;
  text-transform: uppercase;
  letter-spacing: .05em;
}
/*card footer*/
.card-content {
  padding: 5px 10px 5px 10px;
  background: rgba(25, 42, 57, 1.00);
  color: white;
  position: absolute;
  width: 100%;
  bottom: 0;
  transition: background .9s ease-in-out;
}
.card-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  transition: color .2s ease-in-out;
}
.card-content span {
  font-size: 0.8rem;
  color: #D8D8D8;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .4s ease-in-out;
}
/*.card:hover .hideme { transform: scale(1.1); }*/
/* hover card*/
.card:hover .hideme {
  opacity: 1;
  transform: scale(0.96);
}
.card:hover .card-content {
  background: transparent;
}
.card:hover .card-content h4 {
  color: rgba(255, 255, 255, 0)
}
.card:hover .card-content span {
  color: rgba(255, 255, 255, 0)
}
.card:hover .blur {
  -webkit-filter: blur(2px) grayscale(); 
}
.card:hover .background {
  transform: scale(1.05)
}
/*bigger screens every 10th have bigger card*/
@media (min-width: 60em) {
  .item:nth-child(10n+1) {
    grid-column-start: span 2;
    grid-row-start: span 2;
    /*  grid-row-end: 4;*/
  }
  .item:nth-child(10n+1) .card-content h4 {
    font-size: 1.3rem;
  }
  .item:nth-child(10n+1) .content-container h4 {
    font-size: 1.3rem;
  }
  .item:nth-child(10n+1) .content-container span {
    font-size: .8rem;
  }
  .item:nth-child(10n+1) .about {
    font-size: 1rem;
  }
  .item:nth-child(10n+1) .background {
    height: 460px;
  }
  /*
 .item:nth-child(8n+5) {
    grid-row-start: span 2;
  }
  .item:nth-child(8n+5) .card-content h4 {
    font-size: 1.3rem;
  }
  .item:nth-child(8n+5) .content-container h4 {
    font-size: 1.3rem;
  }
    .item:nth-child(8n+5) .content-container span {
    font-size: .8rem;
  }
  .item:nth-child(8n+5) .about {
    font-size: 1rem;
  }
  .item:nth-child(8n+5) .background {
    height: 460px;
  }   
*/
}