/* ==========================================================================
    Slider core styles
===========================================================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.slider-container {
  position: relative;
  overflow: hidden;
  /* height: 460px; */
  width: 70%;
  height:600px;
  margin: 0 auto;
  background-color: #444;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

 
}

.slider {
  position: relative;
  width: 80%;
  /* width: 9999px; */
}

.slider h2{
	font-size: 22px;
    font-family: 'Lato', sans-serif;
    color: white;
    line-height: 22px;
    margin-bottom: 6px;
	padding-left: 15px;
	margin-top: 0px;
}

.slider h3{
	font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #ff3333;
    line-height: 22px;
    margin-bottom: 0px;
	padding-left: 15px;
	padding-bottom: 10px;
	margin-top: 0px;
}
.slider:before,
.slider:after {
  display: table;
  content: ' ';
}
.slider:after {
  clear: both;
}
.slider__item {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider__item img {
  display: block;
  max-width: 100%;
  height: 100%;
}
.slider__switch span {
  color: #fff;
  display: block;
  width: 32px;
  height: 32px;
}
/* Arrows */
.slider__switch {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 10px 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
  border-radius: 1px;
  background: #000;
  opacity: .3;
  transition: opacity .15s ease;
  fill: #fff;
}
.slider__switch--prev {
  left: 10px;
}
.slider__switch--next {
  right: 10px;
}

.slider__switch:hover {
  opacity: .85;
}
.slider__switch[disabled] {
  visibility: hidden;
  opacity: 0;
}
.slider__caption {
  position: absolute;
  bottom: 130px;
  left: 60px;
  display: block;
  max-width: 500px;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 20px 10px rgba(0,0,0,.4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000'); /* ie8 */
}

.slider__caption p {
  color: white;
}

.slider__caption2 {
  position: absolute;
  top: 60px;
  right: 60px;
  display: block;
  max-width: 500px;
  padding: 10px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 20px 10px rgba(0,0,0,.4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000'); /* ie8 */
}

.slider__caption[disabled] {
  opacity: 0;
  visibility: hidden;
}
.slider-nav {
  line-height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 99999;
  filter: alpha(opacity=90); /* ie8 */
}
.slider-nav__control {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  -webkit-transition: background .5s ease;
     -moz-transition: background .5s ease;
       -o-transition: background .5s ease;
          transition: background .5s ease;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.slider-nav__control.is-active {
  width: 12px;
  height: 12px;
  background: #fff;
}
.slider.has-touch {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor:    -moz-grabbing;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	
/* 	.slider-container {

		width: 80%;

	}

.slider {
 
		width: 80%;
  
	} */	
}


/* Medium devices (landscape tablets, 768px and up) */
@media screen and (max-width: 800px) {
	
	.slider-container {
	  width: 100%;
	  height:500px;
	}

	.slider {
	  position: relative;
	  width: 80%;
	  /* width: 9999px; */
	}
	
}

@media (max-width: 600px) {
  
 .slider-container {
		
		display: none;
		/* width: 100%;
		height:auto; */

	}

.slider {
 
		width: 100%;
  
	}	
	
.slider__item img{
		width: 100%;
		
	}


}