/* Basic jQuery Slider essential styles */
#banner-slide{
    margin:0;
    padding: 0;
}
ul.bjqs{
    position:relative; 
    list-style:none;
    padding:0;
    margin:0;
    overflow:hidden; 
    display:none;
}
li.bjqs-slide{
    position:absolute;
    display:none;
}
li.bjqs-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translate(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform:  translateY(-50%) translateX(-50%);
}
ul.bjqs-controls{
    list-style:none;
    margin:0;
    padding:0;
    z-index:9999;
    opacity: 0;
}
#banner-slide:hover ul.bjqs-controls{
    opacity: 1;
}
ul.bjqs-controls.v-centered li a{
    position:absolute;
    font-size: 50px;
    color: #fff;
}
ul.bjqs-controls.v-centered li.bjqs-next a{
    right: 20px;
    width: 20px;
    height: 55px;
}
ul.bjqs-controls.v-centered li.bjqs-prev a{
    left: 20px;  
    width: 20px; 
    height: 55px;
}
ol.bjqs-markers{
    list-style: none;
    padding: 0;
    position: relative;
    top: 0px;
    left: 0;
    width: auto;
    margin: 0 0 0 0;
    line-height: normal;
    padding: 0px 0px;
    text-align: center;
    display: block;
}
ol.bjqs-markers.h-centered{
    text-align: center;
}
ol.bjqs-markers li{
    vertical-align: top;
    display:inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    box-sizing: border-box;
    border: 2px solid #e76e66;
    border-radius: 100%;
    overflow: hidden;
}
ol.bjqs-markers li a{
    display: block;
    background: transparent;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
ol.bjqs-markers .active-marker a {
    background: #e76e66;
}
div.bjqs-caption {
    display: block;
    width: 100%;
    padding: 0px;
    position: absolute;
    bottom: 95px;
    right: 0;
}
div.bjqs-markers-container {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 10;
}
div.bjqs-caption-container {
    width: 542px;
    margin: 0 60px 0 auto;
}
.bjqs-caption-content {
    color: #fff;
}
.bjqs-caption-content h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 0px;
}
.bjqs-caption-content p {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
}
.bjqs-caption-content a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    background: #e76e66;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    vertical-align: middle;
    padding: 14px 29px;
}
.bjqs-caption-content a:hover {
    opacity: 0.8;
}
.bjqs-caption-content .or + a {
    background: #dda56c;
}
.or {
    color: #000;
    height: 32px;
    width: 32px;
    background: #fff;
    border-radius: 100%;
    font-weight: 600;
    font-style: italic;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    margin: 0 -11px;
    position: relative;
    z-index: 2;
}