/* Full Parallax Slider */
.creative-parallax--slider {
  position: relative;
  overflow: hidden;
}
.slider-wrap {
  background: #af956c;
  height: 600px;
}
.swiper-slide--inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide--bg {
  z-index: 0;
  visibility: inherit;
  font-weight: 400;
  white-space: nowrap;
  min-height: 834px;
  min-width: 834px;
  max-height: 834px;
  max-width: 834px;
  background-color: #af956c33;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: auto;
}
.swiper-slide-active .slide--bg {
  animation: zoomInBg 1.5s ease forwards;
}

.slide--bg .slide-bg--inner {
  width: 650px;
  height: 650px;
  background: #af956c75;
  margin: auto;
  border-radius: 50%;
}
.swiper-slide-active .slide--bg .slide-bg--inner {
  animation: zoomInInner 1s ease forwards;
}
.slide-detail {
  position: relative;
  z-index: 1;
  text-align: center;
}

.slide-main--heading {
  display: block;
  text-align: center;
  color: #fff;
  line-height: normal;
  text-shadow: #645132 3px 3px 15px;
  padding: 0px 0px 23px;
  font-weight: 700;
  font-size: 52px;
  white-space: normal;
  text-transform: capitalize;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
  Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
.from-left,
.from-right {
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.swiper-slide-active .from-left {
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.8s;
}
.swiper-slide-active .from-right {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 1s;
}
.slide-main--subheading {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 20px;
  padding-bottom: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  filter: blur(4px);
  font-family: Sora, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
  Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
.swiper-slide-active .slide-main--subheading {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 1.2s;
}

.slide-des {
  text-align: center;
  line-height: 25px;
  border-width: 0px;
  padding: 0px 0px 25px;
  letter-spacing: 0px;
  font-weight: 300;
  font-size: 14px;
  white-space: normal;
  min-height: 0px;
  min-width: 347px;
  max-height: none;
  max-width: 347px;
  color: rgb(255, 255, 255);
  margin: auto;
  opacity: 0;
}
.slide-des p {
  color: #fff;
}
.swiper-slide-active .slide-des {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.4s;
}
.slide-cta .slide-btn {
  text-align: inherit;
  line-height: 27px;
  border-width: 1px;
  margin: 0px;
  padding: 18px 70px 18px 46px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  background-color: #333;
  background-size: 200% auto;
  color: #ffffff;
  display: inline-block;
  border: 2px solid transparent;
  width: auto;
  border-radius: 50px;
  position: relative;
  transition: 0.3s ease-in-out !important;
  opacity: 0;
}
.swiper-slide-active .slide-cta .slide-btn {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp2 1s ease forwards;
  animation-delay: 1.4s;
}
.slide-cta .slide-btn:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
  background-position: right center;
  background-color: var(--primary-color);
}
.slide-cta .slide-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: absolute;
  border-radius: 100%;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  background: #fff;
  color: #af956c;
}
.slide-badge {
  display: flex;
  flex-direction: column;
  width: 69px;
  height: 69px;
  background: #fff;
  line-height: normal;
  font-size: 9px;
  justify-content: center;
  border-radius: 50%;
  color: #af956c;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  right: -184px;
  top: 0;
  transition: 0.3s ease-in-out !important;
  opacity: 0;
}
.swiper-slide-active .slide-badge {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp3 1s ease forwards;
  animation-delay: 1.5s;
}
.slide-badge .patch-check svg {
  height: 20px;
  width: 20px;
  margin-bottom: 4px;
}
/* Keyframe animations for Badge */
@keyframes fadeInUp3 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for CTA */
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Description */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Sub Heading */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Main Heading */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* Keyframe animations for background */
@keyframes zoomInBg {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInInner {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.parallax-slider .slide-btns {
  width: 54px;
  height: 54px;
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}
.slide-btns.swiper-button-next:after,
.slide-btns.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}
.slide-btns:hover {
  border: 1px solid #fff;
  background: #fff;
}
.slide-btns:hover:after {
  color: #af956c;
}
span.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  opacity: 1;
  display: none;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.autoplay-progress {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 10px;
}

.progress-fill {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 100%;
  background-color: #00000026;
  width: var(--progress, 0%);
  transition: width 0.5s ease;
}
/* ==================== Responsive Ipad ========================== */
@media only screen and (max-width: 981px) {
  .slider-wrap {
    height: 750px;
  }
  .slide--bg {
    min-height: 720px;
    min-width: 720px;
    max-height: 720px;
    max-width: 720px;
  }
  .slide--bg .slide-bg--inner {
    width: 590px;
    height: 590px;
  }
  .slide-badge {
    right: -116px;
  }
}

/* ==================== Responsive Ipad ========================== */
@media only screen and (max-width: 480px) {
  .slider-wrap {
    height: 736px;
  }
  .slide--bg {
    min-height: 550px;
    min-width: 550px;
    max-height: 550px;
    max-width: 550px;
  }
  .slide--bg .slide-bg--inner {
    width: 450px;
    height: 450px;
  }
  .parallax-slider .slide-btns {
    display: none;
  }
  .slide-main--heading {
    font-size: 32px;
  }
  .swiper-pagination {
    display: flex;
    column-gap: 15px;
    justify-content: center;
    bottom: 100px !important;
  }
  span.swiper-pagination-bullet {
    display: block;
  }
}
