.checkboard-wrapper{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.checkboard-wrapper .checkboard-item{
  flex: 0 0 33.333333%;
  position: relative;
  padding: 70px;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 466px;
}
.checkboard-wrapper .wrap3:first-child .checkboard-item:first-child::after{
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 46px solid #fff;
    border-right: 46px solid transparent;
    width: 0;
  display: block;
}

.checkboard-wrapper .checkboard-item h2{
  font-size: 17px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Rubik',sans-serif;{% if item.image_field_ == "true" %}
  margin-bottom: 20px;
}
.checkboard-wrapper .checkboard-item img.img-back{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 100%;
  min-height: 100%;
}
.checkboard-wrapper .checkboard-item .description{
      font-size: 17px;
    font-weight: 300;
    line-height: 1.45em;
    clear: both;
  height: 225px;
  overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


@media (max-width: 1270px){
  .checkboard-wrapper .checkboard-item{
    padding: 40px 30px;
  }
}
@media (max-width: 980px){
  .checkboard-wrapper{
    flex-direction: column;
  }
  .checkboard-wrapper .checkboard-item{
    min-height: unset;
  }
  .checkboard-wrapper .checkboard-item.image{
    min-height: 300px;
  }
  .checkboard-wrapper .checkboard-item .description{
    height: auto;
  }
}