/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */

* { box-sizing: border-box; }

.flickity-enabled {
  position: relative;
}

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

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

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

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          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;
}

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

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid #627584;
  border-radius: 50%;
  background: none;
  /*background: hsla(0, 0%, 100%, 0.75);*/
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

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

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

.flickity-prev-next-button.previous { left: 20px; }
.flickity-prev-next-button.next { right: 20px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 33%;
  top: 33%;
  width: 30%;
  height: 30%;
  fill: #CEFF00;
  stroke: #CEFF00;
}

.flickity-prev-next-button .arrow {
  fill: #58d1b3;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}


/* ---- Cell style ---- */

.carousel {
  background: #FFF;
}

.carousel-cell {
  width: 100%;
  height: 400px;
  margin-right: 10px;
  background: #8C8;
  border-radius: 5px;
  counter-increment: gallery-cell;
}
.carousel_image-container {
	/*background: #222223 url(../images/bg.jpg) no-repeat center center;*/
    width: 100%;
    height: 100%;
	background-size: cover;
}
#slide-01.carousel_image-container#slide-01 {
	background: #05162a url(../images/bg-01.jpg) no-repeat center center;
	background-size: cover;
}
#slide-02.carousel_image-container {
	background: #05162a url(../images/bg-02.jpg) no-repeat center center;
	background-size: cover;
}
#slide-03.carousel_image-container {
	background: #05162a url(../images/bg-03.jpg) no-repeat center center;
	background-size: cover;
}
.carousel-caption {
  z-index: 10;
  top: 10%;
  text-shadow: none;
  right: 0;
  left: 0;
  padding: 50px 30px 50px 30px;
  color: FFFFFF;
}
.carousel-caption h1 {
	margin-bottom: 20px;
}

.carousel-caption .text {
	font-size: 16px;
}
/*.carousel-caption h1 {
	font-size: 30px;
	line-height: 38px;
	letter-spacing: 1px;
	color:#FFFFFF;
	margin-bottom: 30px;
}*/
.carousel_image-container .btn {
	/*display: none;*/
}






/*header .intro {
	color: #FFFFFF;
	padding-top: 100px;
	padding-bottom: 50px;
    text-align: center;
    z-index: 3;
}
header .intro .text {
	padding-top:10px;
	line-height: 28px;
	font-size: 18px;
	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	color: #C9C9C9;
}*/













/* Left and right Nav */
.flickity-prev-next-button {
	display: none; /*TURN BACK ON FOR MORE THAN 1 CAROSEL*/
}




/* position dots in gallery */

.flickity-page-dots {
  bottom: 20px;
  /*display: none;  TURN BACK ON FOR MORE THAN 1 CAROUSEL */
}
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid white;
}
/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: white;
}







/* RESPONSIVE CSS
-------------------------------------------------- */


@media (max-width: 543px) {
	.carousel-cell {
		height: 600px;
	}
 
  
}



@media (max-width: 767px) {
	

}



@media (min-width: 768px) {
	.carousel-cell {
  		height: 500px;
	}
	.carousel-caption h1 {
		font-size: 48px;
		line-height: 50px;
	}
	/* Left and right Nav */
	.flickity-prev-next-button {
		display: block; /*TURN BACK ON FOR MORE THAN 1 CAROSEL*/
	}
	.carousel-caption .text {
		font-size: 20px;
		padding: 0px 60px;
	}
	.carousel-caption h1 {
		margin-bottom: 40px;
	}
  
}



@media (min-width: 992px) {
	.carousel-cell {
  		height: 650px;
	}
	.carousel-caption {
		z-index: 10;
		top: 15%;
	}
	.carousel-caption .text {
		font-size: 22px;
		padding: 0px 100px;
	}
	/*.carousel-caption h1 {
		font-size: 59px;
		line-height: 67px;
		letter-spacing: 1px;
		margin-bottom: 40px;
	}*/
  
  
}


@media (min-width: 1200px) {
  
}






















