/*-----------------------------------------
  Slider Container Options
-------------------------------------------*/
.swiper-container {
  width: 100%;
  height: 70%;
}
@media screen and (max-width:767px) {
  .swiper-container {
    height: auto;
  }
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  background-position: center;
  background-size: cover;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/*-----------------------------------------
  Slider Control Buttons, Paginations
-------------------------------------------*/
.swiper-button-next{
  background-repeat: no-repeat;
  background-position: center;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	width:27px; height:44px;
}
.swiper-button-prev{
  background-repeat: no-repeat;
  background-position: center;  
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-pagination-bullet-active{
  background: #fff;
}
/*-----------------------------------------
  Overlays For Slides
-------------------------------------------*/
.light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5; 
}
.medium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6; 
}
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}
.left-holder {
	text-align:left;
}
/*-----------------------------------------
  Slider Content Captions
-------------------------------------------*/
.slider-content {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
	padding: 100px 30px;
}
.slider-content h2 {
  font-size: 48px;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
	text-transform: uppercase;
}
.slider-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.4;
  font-weight: 600;
  max-width: 100%;
  margin-top: 10px;
  word-wrap: break-word;
	width: 100%;
}
.slider-content-action {
	margin-top: 50px;
}
@media screen and (max-width:767px) {
  .slider-content{
    padding: 30px 15px;
  }
  .slider-content h2{
    font-size: 24px;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
  }
	.slider-content p {
		font-size: 14px;
		color: rgba(255, 255, 255, 1);
		line-height: 1.2;
		margin-top: 10px;
		word-wrap: break-word;
		width: 100%;
	}
	.slider-content-action {
		margin-top: 10px;
	}
	.slider-content-action a.thm-btn {
		margin-bottom:10px;
	}
	.swiper-button-next,
	.swiper-button-prev{
		height:24px;
	}
}