/* external css: flickity.css */
.carousel {
  background: transparent;
}

.carousel-cell {
  width: 96%;
  height: 500px;
  margin-right: 10px;
  background: transparent;
  border-radius: 5px;
  /*counter-increment: carousel-cell;*/
}

@media only screen and (min-width: 1024px) {
	.carousel-cell--height1 { 
		height: 700px;
	}
	.carousel-cell--height2 {
		height: 500px;
	}
	.carousel-cell--height3 {
		height: 600px;
	}
	.carousel-cell--height5 {
		height: 840px;
	}		
}
@media only screen and (min-width:991px) and (max-width: 1023px) {
	.carousel-cell {
		padding-right: 50px;
	}
	.carousel-cell--height1 { 
		height: 700px;
	}
	.carousel-cell--height2 {
		height: 400px;
	}
	.carousel-cell--height3 {
		height: 560px;
	}	
	.carousel-cell--height5 {
		height: 800px;
	}		
}
@media only screen and (min-width: 769px) and (max-width: 990px) {
	.carousel-cell {
		padding-right: 50px;
	}
	.carousel-cell--height1 { 
		height: 500px;
	}
	.carousel-cell--height2 {
		height: 300px;
	}
	.carousel-cell--height3 {
		height: 370px;
	}		
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
	.carousel-cell--height1 { 
		height: 450px;
	}
	.carousel-cell--height2 {
		height: 300px;
	}
	.carousel-cell--height3 {
		height: 370px;
	}
	.carousel-cell--height4 {
		height: 500px;
	}
}
@media only screen and (max-width: 479px) {
	.carousel-cell--height1 { 
		height: 300px;
	}
	.carousel-cell--height2 {
		height: 300px;
	}
	.carousel-cell--height3 {
		height: 300px;
	}
	.carousel-cell--height4 {
		height: 500px;
	}
	.carousel-cell--height5 {
		height: 350px;
	}	
}
.carousel-cell2 {
  width: 96%;
  height: 500px;
  margin-right: 10px;
  background: transparent;
  border-radius: 5px;
  /*counter-increment: carousel-cell;*/
}
@media only screen and (min-width: 769px) {
	.carousel-cell2 {
		padding-right: 0px;
	}
}
@media only screen and (max-width: 767px) {
	.carousel-cell2--height1 { 
		height: 850px;
	}		
	.carousel-cell2--height2 {
		height: 730px;
	}
	.carousel-cell2--height3 {
		height: 1050px;
	}
	.carousel-cell2--height4 {
		height: 650px;
	}
	.carousel-cell2--height5 {
		height: 950px;
	}
	.carousel-cell2--height6 {
		height: 1250px;
	}	
}
/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  /*content: counter(carousel-cell);*/
  line-height: 200px;
  font-size: 80px;
  color: white;
}
.carousel-cell2:before {
  display: block;
  text-align: center;
  /*content: counter(carousel-cell);*/
  line-height: 200px;
  font-size: 80px;
  color: white;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  /*transition: height 0.2s;*/
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: transparent;
  border: 2px solid #2e2e2c;
  color: #2e2e2c; z-index: 999;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 100%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(50%); margin-right: -30px;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: 15%; 
  right: 0;
}
@media only screen and (max-width: 768px) { 
	.flickity-rtl .flickity-prev-next-button.previous {
		margin-left: 40px;
	}
}
.flickity-rtl .flickity-prev-next-button.next {
  right: 0;
  left: 10.75%;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute; display: none;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.flickity-prev-next-button.previous:before {
	content: url(../images/previous.png);
	top: 12px; bottom:0; right: 0; left: 0;
    position: absolute;
    z-index: 999;	
}
.flickity-prev-next-button.next:before {
	content: url(../images/next.png);
	top: 12px; bottom:0; right: 0; left: 0;
    position: absolute;
    z-index: 999;	
}