<!--slider-->
.jk-slider{
    width:100%;
}
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color:black;
    text-align: center;
    text-transform: uppercase;
    /* background: #ffffffaa; */
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 48px;
    background: #ffffffcc;
    padding: 20px 10px 10px 10px;
    box-shadow: rgba(0,0,0,0.06) 0px -2px 6px;
    background-color: #ffffffcc;
}
.hero p.slider-pra {
    padding: 14px 10px;
    text-shadow: none;
    font-weight: 600;
    margin-top: -32px;
    font-size: 16px;
    background: #ffffffcc;
    box-shadow: rgba(0,0,0,0.1) 0px 1px 8px;
    /* box-shadow: rgba(0,0,0,0.2) 0px 3px 8px; */
}
.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s; 
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s;    
}
/*          Button Slider      */
/********************************/

button.btn {
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 17px 33px 15px;
  font-size: 14px;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  /* font-family: 'Montserrat', sans-serif; */
}
.hero button.btn:hover, .btn:focus {
  color: #fff;
  outline: 0;
}

.hero button.btn.fifth  {
  
border-radius: 2px;
  
color: white;
  
margin-top: 14px;
  
position: relative;
  
overflow: hidden;
  
z-index: 1;
  
transition: black 150ms ease-in-out;
  
background: #308bec;
  
box-shadow: rgba(0,0,0,0.2) 0px 3px 8px;
}
.hero button.btn.fifth:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: black;
  z-index: -1;
  transition: width 150ms ease-in-out;
}
.hero button.btn.fifth:hover {
  color: #fff;
}
.hero button.btn.fifth:hover:after {
  width: 110%;
}