/*
 * Revolution Slider CSS - Basic Version
 */
.rev_slider_wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.rev_slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.tp-caption {
    position: absolute;
    z-index: 100;
}

.tp-static-layers {
    position: absolute;
    z-index: 50;
}

.tp-bgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation styles */
.tp-bullets {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.tp-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
}

.tp-bullet.selected {
    background: #fff;
}

.tp-leftarrow,
.tp-rightarrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.tp-leftarrow {
    left: 20px;
}

.tp-rightarrow {
    right: 20px;
} 