:root {
  --bg-dark-1-rgb: 18, 18, 18;
}
.swiper-wrapper .sw-caption .gradient-edge-bottom-style1 {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}
.swiper-wrapper .sw-caption .gradient-edge-top-style1 {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}
.swiper-wrapper .sw-caption .swiper-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), 0.8) 0%, rgba(var(--bg-dark-1-rgb), 0.8) 50%);
}

.sw-caption {
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  letter-spacing: -0.5;
}

.z-2 {
  z-index: 2;
}

.global-content-for-style1 {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 75%;
}
.global-content-for-style1 .global-content .rts__section__subtitle {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-family: var(--e-global-typography-text-font-family);
  padding: 2px 10px;
  font-size: 15px;
  text-transform: capitalize;
  line-height: 1.5em;
  border-radius: 2px;
  margin-bottom: 20px;
  color: #fff;
}
.global-content-for-style1 .global-content .rts__section__subtitle::before {
  position: absolute;
  color: var(--e-global-color-primary);
  font-weight: 700;
  left: 0;
}
.global-content-for-style1 .global-content .rts__section__subtitle::after {
  position: absolute;
  color: var(--e-global-color-primary);
  font-weight: 700;
  right: 0;
}
.global-content-for-style1 .global-content .rts__slider__title {
  text-transform: capitalize;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.global-content-for-style1 .global-content .rts__slider__title span {
  color: var(--e-global-color-primary);
}

.rts__swiper__slider .swiper-wrapper .swiper-slide .container {
  max-width: 1300px !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
}

/* User Provided Zoom In Out Keyframes */
 @keyframes zoomOut { 
     from { 
         opacity: 1 
     } 
 
     50% { 
         opacity: 0; 
         -webkit-transform: scale3d(.3,.3,.3); 
         transform: scale3d(.3,.3,.3) 
     } 
 
     to { 
         opacity: 0 
     } 
 } 
 
 @-webkit-keyframes zoomIn { 
     from { 
         opacity: 0; 
         -webkit-transform: scale3d(.3,.3,.3); 
         transform: scale3d(.3,.3,.3) 
     } 
 
     50% { 
         opacity: 1 
     } 
 } 
 
 @keyframes zoomIn { 
     from { 
         opacity: 0; 
         -webkit-transform: scale3d(.3,.3,.3); 
         transform: scale3d(.3,.3,.3) 
     } 
 
     50% { 
         opacity: 1 
     } 
 } 

/* Zoom In Out Effect Implementation */
.rt-slider-effect-zoom .swiper-slide {
  opacity: 0 !important;
  z-index: 1;
  pointer-events: none;
}

.rt-slider-effect-zoom .swiper-slide-active,
.rt-slider-effect-zoom .swiper-slide-duplicate-active {
  opacity: 1 !important;
  z-index: 2;
  pointer-events: auto;
}

.rt-slider-effect-zoom .swiper-slide-active .swiper-inner,
.rt-slider-effect-zoom .swiper-slide-duplicate-active .swiper-inner {
  animation: zoomIn 1s both;
  animation-delay: 0.3s; /* Delay to let the previous one zoom out first */
}

.rt-slider-effect-zoom .swiper-slide-prev .swiper-inner,
.rt-slider-effect-zoom .swiper-slide-next .swiper-inner {
  animation: zoomOut 0.8s both;
}

.rt-all-slider .swiper-slide {
  display: flex;
  align-items: center;
}

.rt-all-slider .swiper-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}