/* Headerslider */

.headerslider {
	width: 100%;
	height: 70vh;
}

.headerslider .slide {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.headerslider .slide > .captioncontainer {
	position: absolute;
	width: 100%;
	bottom: 0px;
	background-color: rgba(0, 28, 46, 0);
	padding: 10px 0px 30px 0px;
}

.headerslider .slide > .captioncontainer a {
	display: inline-block;
	background-color: #539bb9;
	color: #ffffff;
	line-height: 64px;
	font-size: 24px;
	padding: 0px 20px;
	margin: 0px 10px 10px 0px;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;
}

.headerslider .slide > .captioncontainer a:hover {
	background-color: #f39100;
}

.headerslider .slide > .captioncontainer p {
	margin-bottom: 10px;
}


@media screen and (max-width: 70vh) {
	.headerslider {
		width: 100%;
		height: 100vw;
	}
}

/* Contentslider */

.contentslider {
	width: 100%;
	height: 56.25%;
}

.contentslider .slide {
	width: 100%;
	height: auto;
}

/* Slider General */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: relative;
  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: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.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.0;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button:hover .flickity-button-icon {
	color: #f39100;
}

.flickity-button-icon {
	fill: currentColor;
	color: #00141e;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  /* vertically center */
  transform: translateY(-50%);
	background-image: url("../img/bt-arrow.svg");
}

.flickity-prev-next-button:hover {
	background-image: url("../img/bt-arrow-hover.svg");
}

.flickity-prev-next-button.previous { 
	left: 10px; 
	transform: rotate(-90deg);
}
.flickity-prev-next-button.next { 
	right: 10px;
	transform: rotate(90deg);
}
/* 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 .flickity-button-icon {
  position: absolute;
	color: transparent;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button:hover .flickity-button-icon {
	color: transparent;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  top: 15px;
  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 8px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
}

@media screen and (max-width: 1000px) {	
	.flickity-page-dots {
		display: none;
	}
}