/* external css: flickity.css */

* { box-sizing: border-box; }


.carousel {
  background: auto ;
}

.carousel-cell {
  width: 100%;
  height: 250px;
  margin-right: 10px;
  background: ;
  border-radius: 5px;
  counter-increment: carousel-cell;
}

@media screen and ( min-width: 768px ) {
  /* half-width cells for larger devices */
  .carousel-cell {
    height: ;
    width: 50%;
  }
}

@media screen and ( min-width: 992px ) {
  /* half-width cells for larger devices */
  .carousel-cell {
    height: ;
    width: 33.333% !important;
  }
}

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  content: '';
  line-height: 200px;
  font-size: 80px;
  color: white;
}
