/* ================================
   REVOLUTION SLIDER BASIC RESET
================================ */

.rev_slider_wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

.rev_slider {
  position: relative;
  overflow: hidden;
}

/* Remove default list styles */
/* .rev_slider ul,
.rev_slider ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rev_slider ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
}

.rev_slider ul li.active {
  position: relative;
  visibility: visible;
}

.rev_slider img {
  width: 100%;
  height: auto;
  display: block;
} */

/* ================================
   CAPTION STYLES
================================ */

.rev_slider .tp-caption {
  position: absolute;
  white-space: nowrap;
  z-index: 2;
}

/* Hide caption when needed */
.tp-hidden-caption {
  display: none !important;
}

/* ================================
   NAVIGATION ARROWS
================================ */

.tparrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 10;
}

.tparrows:hover {
  background: rgba(0, 0, 0, 0.8);
}

.tp-leftarrow {
  left: 10px;
}

.tp-rightarrow {
  right: 10px;
}

/* ================================
   BULLETS
================================ */

.tp-bullets {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.tp-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.tp-bullet.selected,
.tp-bullet:hover {
  background: #ffffff;
}

/* ================================
   BUTTON STYLE
================================ */

.rev-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  background: #000;
  color: #fff;
  transition: 0.3s ease;
}

.rev-btn:hover {
  background: #333;
}

/* ================================
   FULLSCREEN MODE
================================ */

.rs-go-fullscreen {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
}