/*=================================================
Class Definitions
=================================================*/
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.immersive_slider {
  max-width: 100%;
  padding-bottom: 35%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.immersive_slider .is-slide  {
  display: table;
  padding-bottom: 35%;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: absolute;
  background-position:center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.is-bg-overflow {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.is-overflow, .is-bg-overflow {
  height: 100%;
}

.ease {
  -webkit-transition: 1000ms ease all;
  -moz-transition: 1000ms ease all;
  -o-transition: 1000ms ease all;
  transition: 1000ms ease all;
}

.bounce {
  -webkit-transition: 1000ms cubic-bezier(0.175, 0.450, 0.420, 1.310) all;
  -moz-transition: 1000ms cubic-bezier(0.175, 0.450, 0.420, 1.310) all;
  -o-transition: 1000ms cubic-bezier(0.175, 0.450, 0.420, 1.310) all;
  transition: 1000ms cubic-bezier(0.175, 0.450, 0.420, 1.310) all;
}

.no-animation {
  -webkit-transition: none!important;
  -moz-transition: none!important;
  -o-transition: none!important;
  transition: none !important;
}


.immersive_slider .is-slide .content {
  position: absolute;
  width:100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
  font-family: "RalewayExtraBold";
  text-transform: uppercase;
  color:white;
}

.immersive_slider .is-slide .content h2{
  font-size: 72px;
}
.immersive_slider .is-slide .content p{
  font-family: "RalewayMedium";
  font-size: 40px;
}

.immersive_slider .is-slide .content a{
  display: block;
  margin:50px auto 0;
  width: 240px;
  text-align: center;
  margin-top: 50px;
  text-decoration: none;
  color:white;
  border:3px solid white;
  padding:10px;
  font-size: 28px;
}
.immersive_slider .is-slide .content a:hover{
  background-color: rgb(50, 58, 68);
}
.is-container {
  position: relative;
  overflow: hidden;
}

.is-container .is-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.is-container .is-background img{
  width: 100%;
  height: 100%;
  left: 0;
  position: relative;
}

.is-container .is-background.gs_cssblur {
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  filter: blur(20px);
}

.is-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 20px;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}
.is-pagination li {
  padding: 0;
  display: inline-block;
  text-align: center;
  position: relative;
}
.is-pagination li a{
  margin: 4px;
  width: 20px;
  height: 20px;
  display: block;
  background: rgb(255,255,255);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  
}
.is-pagination li a.active{
  width: 20px;
  height: 20px;
  background: orange;
}

.is-next,  .is-prev {
  position: absolute;
  bottom: 50%;
  margin-bottom: -41px;
  width: 23px;
  height: 82px;
  color: #FFF;
  display: inline-block;
  line-height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.is-next {
  right: 25px;
  background: url(../images/right-arrow.png) no-repeat center center;
}

.is-prev {
  left: 25px;
  background: url(../images/left-arrow.png) no-repeat center center;
}