#nsslider {
  float: left;
	position: relative;
	background:#fff;
	width:100%;
  overflow: hidden;
}

#nsslider .slider_container {
}

#nsslider .slide {
	display: none;
	position: absolute;
	top:0;
	left:0;
	z-index: 0;
	width:100%;
}

#nsslider .slide img {
	width:100%;
	display: block;
}

#nsslider .slidePrev {
	background:#000;
	width:50px;
	position: absolute;
	top:50%;
	left:-50px;
	opacity:0.5;
	z-index: 10;
	background-image: url('/images/arrow-l.png');
	background-position: center center;
	background-repeat: no-repeat;
}

#nsslider .slidePrev:HOVER {background-image: url('/images/arrow-l-on.png');}

#nsslider .slidePrev span {
	width:50px;
	float:left;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	color: #fff;
	padding: 20px 0;
}

#nsslider .slidePrev span i {
	margin-left: 18px;
}

#nsslider .slideNext {
	background:#000;
	width:50px;
	position: absolute;
	top:50%;
	right:-50px;
	opacity:0.5;
	z-index: 10;
	background-image: url('/images/arrow-r.png');
	background-position: center center;
	background-repeat: no-repeat;
}

#nsslider .slideNext:HOVER {background-image: url('/images/arrow-r-on.png');}

#nsslider .slideNext span {
	width:50px;
	float:left;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	color: #fff;
	padding: 20px 0;
}

#nsslider .slideNext span i {
	margin-left: 22px;
}

#nsslider .timers {
	height:10px;
	position: absolute;
	bottom:25px;
	left:18.75%;
	z-index: 3;
}

#nsslider .timer {
	height:10px;
	width:10px;
	background-color: #fff;
	float:left;
	margin-right: 10px;
  border-radius: 50%;
  transition: all .5s;
  cursor: pointer;
}

#nsslider .active { background: #2ca656; transform: scale(2); }

#nsslider .timer:last-child { margin-right: 0; }

#nsslider .slide_content {
	top:0;
	left:0;
	position: absolute;
	width:100%;
	height:100%;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.2) url('/images/dots.png');
}

#nsslider .slide_content A {
	display: block;
	width:100%;
	height:100%;
}

#nsslider .slide_content .logo{
	width:97px;
	height:106px;
	margin: 0 auto;
	display: block;
}

#nsslider .slide_content_wrap { /* Slider Text Content Container Style */
	width: 60%;
  background: rgba(80,143,82,.75) url('/images/dots.png');
  color: #fff;
  text-transform: uppercase;
  padding: 35px 35px 35px 18.75%;
}

#nsslider .title {  /* Slider Title Style */
	opacity: 0;
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

#nsslider .title:before {  
  content: '';
  width: 129px;
  height: 24px;
  position: absolute;
  top: 15px;
  left: -145px;
  background: url('/images/waves-banner.png');
}

#nsslider .description { /* Slider Description Style */
	opacity: 0;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 20px;
  font-style: italic;
}

#nsslider .readmore { /* Slider Read More button Style */
	opacity: 0;
	clear: both;
	margin: 0 auto;
	display: block;
	width: 135px;
}

.footer {
	width:100%;
	float:left;
	text-align:center;
}

.footer p {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size:12px;
	color:#585858;
	margin-top:20px;
}

@media only screen and (max-width: 1200px) {
  #nsslider .slide_content_wrap { *display: none; }
  #nsslider .title {font-size: 30px;} 
  #nsslider .description {font-size: 16px;}
}

@media screen
and (max-width: 840px)
{
  #nsslider .timer {display: none;}
  #nsslider .description {display: none;}
  #nsslider .title {margin-bottom: 0;}
  
  #nsslider .slide_content {display: none;}
}