/**********    SLIDER CSS BEGINS   ***********/
#slider {
    position: relative;
    margin:  0 auto;
    width: 100%;
    height:80vh;
    /*min-height: 500px;*/
    overflow: hidden;
    background: #ccc;
}


#slider ul.items li {
    position: absolute;
    top: 0;
    margin: 0;
    width: 100%;
    height: 80vh;
    /*min-height: 500px;*/
    list-style: none;
    overflow: hidden;
}
#slider ul.items li img {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    margin: 0 0 0 -50%;
}
#slider_leftButton, #slider_rightButton {
    width: 58px;
    height: 57px;
    position: absolute;
    top: 45%;
    width: 58px;
    height: 57px;
    cursor: pointer;
}
#slider_leftButton {
    left: 3%;
    background: url('../img/navLeft.png') left top no-repeat;
}
#slider_rightButton {
    right: 3%;
    background: url('../img/navRight.png') left top no-repeat;
}
#slider ul#slider_bullets {
    position: absolute;
    width: 100px;
    height: 10px;
    left: 50%;
    bottom: 4%;
    margin: 0 0 0 -60px;
}
#slider ul#slider_bullets li {
    width: 6px;
    height: 6px;
    list-style: none;
    padding: 0;
    margin: 0 7px 0 0;
    float: left;
    text-indent: -9999px;
    background: url('../img/bulletBg_6x12.png') left -6px no-repeat;
}
#slider ul#slider_bullets li:hover, #slider ul#slider_bullets li.active {
    background: url('../img/bulletBg_6x12.png') left -0px no-repeat;
}

@media(max-width:767px){
  #slider  {
    height:30vh;
  }
  #slider ul.items li {
    height:30vh;
  }

}

/**********     END OF SLIDER CSS     ***********/
