/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  text-align: center;
  overflow: hidden;
  background-color: var(--whiteColor);
}

.preloader-area .spinner {
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.preloader-area .spinner div {
  animation: spinner 1.875s infinite backwards;
  background-color: var(--primaryColor);
  border-radius: 50%;
  height: 100%;
  position: absolute;
  width: 100%;
}

.preloader-area .spinner div:nth-child(1) {
  animation-delay: 0.15s;
  background-color: rgba(242, 82, 8, 0.9);
}

.preloader-area .spinner div:nth-child(2) {
  animation-delay: 0.3s;
  background-color: rgba(242, 82, 8, 0.8);
}

.preloader-area .spinner div:nth-child(3) {
  animation-delay: 0.45s;
  background-color: rgba(242, 82, 8, 0.7);
}

.preloader-area .spinner div:nth-child(4) {
  animation-delay: 0.6s;
  background-color: rgba(242, 82, 8, 0.6);
}

.preloader-area .spinner div:nth-child(5) {
  animation-delay: 0.75s;
  background-color: rgba(242, 82, 8, 0.5);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg) translateY(-200%);
  }

  60%,
  100% {
    transform: rotate(360deg) translateY(-200%);
  }
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--primaryColor);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  font-family: remixicon !important;
  content: "\ea76";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  left: 0;
  color: var(--primaryColor);
  top: 1px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  animation: float 1500ms infinite ease-in-out;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primaryColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
  stroke: var(--primaryColor);
}

/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
  animation: zoom-in 3500ms infinite ease-in-out;
}

.waving_left {
  animation: waving_left 7s infinite linear;
  transition: all 0.3s ease-in-out;
}

.waving_right {
  animation: waving_right 7s infinite linear;
  transition: all 0.3s ease-in-out;
}

.img-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.img-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

.img-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

.moving_cloud_one {
  animation: movingclouds 20s linear infinite;
}

.moving_cloud_two {
  animation: movingclouds 45s linear infinite;
}

.moving_cloud_three {
  animation: movingclouds 19s linear infinite;
}

.moving_cloud_four {
  animation: movingclouds 35s linear infinite;
}

.moving_cloud_five {
  animation: movingclouds 50s linear infinite;
}

[data-aos=fade-up] {
  transform: translate3d(0, 40px, 0);
}

@keyframes waving_left {
  0% {
    -webkit-transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(3deg);
  }

  50% {
    -webkit-transform: rotate(6deg);
  }

  75% {
    -webkit-transform: rotate(-3deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes waving_right {
  0% {
    -webkit-transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(-3deg);
  }

  50% {
    -webkit-transform: rotate(-6deg);
  }

  75% {
    -webkit-transform: rotate(-3deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes movingclouds {
  0% {
    margin-left: 100%;
  }

  100% {
    margin-left: -110%;
  }
}

@keyframes movingplane {
  0% {
    margin-left: 100%;
    top: 300px;
  }

  29% {
    margin-left: 50%;
    top: 50px;
    transform: rotate(20deg);
  }

  31% {
    transform: rotate(-20deg);
  }

  60% {
    margin-left: 0%;
    top: 300px;
  }

  100% {
    margin-left: -100%;
    top: 300px;
  }
}

.reveal-text {
  visibility: hidden;
  max-width: 100%;
}

.reveal-text .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}

.reveal-text .letter div {
  width: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.reveal-text .perspective {
  position: relative;
  display: inline-block;
}

.reveal-text .perspective div {
  position: relative;
  display: inline-block;
}

.reveal-text .word {
  display: inline-block;
}

.ripple:before {
  animation-delay: 0.1s;
  content: "";
  position: absolute;
}

.ripple:after {
  animation-delay: 0.1s;
  content: "";
  position: absolute;
}

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: ripple 3s infinite;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(100px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(63px, 71px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 52px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/*-------------------------------
    Custom Cursor CSS
-------------------------------*/
.cursor {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  transition: all 350ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 999;
  border: 1px solid var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: sans-serif;
  color: var(--primaryColor);
  background-color: transparent;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  opacity: 0.9;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.6s, height 0.6s, opacity 0.6s;
  background-color: var(--primaryColor);
  z-index: 999;
}

.cursor-inner.hidden {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s, transform 0.5s;
}

.hover {
  border-color: transparent;
  opacity: 0.8;
  width: 3px;
  height: 3px;
  z-index: 999;
  background-color: var(--primaryColor);
}

.cursorinnerhover {
  width: 15px;
  height: 15px;
  opacity: 0.5;
}

.cursor-text {
  display: none;
  pointer-events: none;
}

.cursor.view {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
  width: 120px;
  height: 120px;
  font-size: 16px;
  cursor: pointer;
}

.cursor.view .cursor-text {
  display: block;
}

/*---------------------------------
   Pagination CSS
----------------------------------*/
.page-nav li {
  margin-right: 10px;
}

.page-nav li:last-child {
  margin-right: 0;
}

.page-nav li:last-child a i {
  right: -2px;
}

.page-nav li a {
  width: 46px;
  height: 46px;
  background-color: #f3f3f3;
  color: var(--grayColor);
  border: none;
  font-weight: 700;
  transition: var(--transition);
}

.page-nav li a:focus {
  outline: none;
  box-shadow: none;
}

.page-nav li a i {
  font-size: 24px;
  font-weight: 300;
  color: var(--blackColor);
  position: relative;
  top: 1px;
  transition: var(--transition);
}

.page-nav li a img {
  filter: brightness(1) invert(0);
  transition: var(--transition);
}

.page-nav li a.active,
.page-nav li a:hover {
  border-color: transparent;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.page-nav li a.active i,
.page-nav li a:hover i {
  color: var(--whiteColor);
}

.page-nav li a.active img,
.page-nav li a:hover img {
  filter: brightness(0) invert(1);
}

/*-------------------------------
        Breadcrumb CSS
-------------------------------*/
.breadcrumb-area {
  padding: 185px 0 100px;
  background-color: #F3EAE6;
  margin: -100px 12px 0;
  border-radius: 40px;
}

.breadcrumb-area .br-shape-one {
  bottom: 29%;
  left: 12%;
}

.breadcrumb-area .br-shape-two {
  right: 8%;
}

.breadcrumb-area .br-menu li {
  display: inline-block;
  position: relative;
  margin-right: 9px;
  padding-right: 19px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--optionalFont);
  color: var(--paraColor);
}

.breadcrumb-area .br-menu li:after {
  position: absolute;
  top: 50%;
  right: -1px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #E4CCBE;
}

.breadcrumb-area .br-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumb-area .br-menu li:last-child:after {
  display: none;
}

.breadcrumb-area .br-menu li a {
  color: var(--primaryColor);
}

.breadcrumb-area .br-menu li a:hover {
  color: var(--paraColor);
}

.breadcrumb-area .br-menu li a img {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

/*-------------------------------
        Hero CSS
-------------------------------*/
.hero-area.style-one {
  border-radius: 40px;
  padding: 230px 0 0;
  margin: -100px 8px 0;
}

.hero-area.style-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 80px);
  background-color: var(--optionalColor);
  z-index: -1;
  border-radius: 40px;
}

.hero-area.style-one .hero-content {
  margin-bottom: 160px;
}

.hero-area.style-one .hero-content h1 {
  font-size: 70px;
  line-height: 84px;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-area.style-one .hero-content .section-subtitle {
  padding-left: 25px;
}

.hero-area.style-one .hero-content p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.hero-area.style-one .circle-text-wrap {
  width: 218px;
  height: 218px;
  margin-top: -40px;
}

.hero-area.style-one .circle-text-wrap .play-icon {
  width: 86px;
  height: 86px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-area.style-one .circle-text-wrap .play-icon i {
  color: var(--titleColor);
  font-size: 19px;
  line-height: 1;
  position: relative;
  left: 1px;
}

.hero-area.style-one .circle-text-wrap:hover .play-icon {
  background-color: var(--secondaryColor);
}

.hero-area.style-one .hero-subcontent .hero-thumb {
  width: 285px;
}

.hero-area.style-one .hero-subcontent .hero-thumb-para {
  width: calc(100% - 300px);
  margin-left: auto;
}

.hero-area.style-one .hero-subcontent .hero-thumb-para p {
  font-size: 18px;
  line-height: 28px;
}

.hero-area.style-one .hero-img {
  bottom: 80px;
  max-width: 620px;
}

.hero-area.style-two {
  padding: 15vh 0 0;
  margin: -100px 0 0;
}

.hero-area.style-two .br-one,
.hero-area.style-two .br-two,
.hero-area.style-two .br-three {
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.08);
}

.hero-area.style-two .br-one:after,
.hero-area.style-two .br-two:after,
.hero-area.style-two .br-three:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 100px;
  background: linear-gradient(#FF5E14 100%, #FFFFFF 64.33%);
}

.hero-area.style-two .br-one {
  left: 22.5%;
}

.hero-area.style-two .br-one:after {
  animation: moveDown 10s linear infinite;
}

.hero-area.style-two .br-two {
  left: 50.66%;
}

.hero-area.style-two .br-two:after {
  animation: moveDown 14s linear infinite;
}

.hero-area.style-two .br-three {
  left: 78%;
}

.hero-area.style-two .br-three:after {
  animation: moveDown 20s linear infinite;
}

.hero-area.style-two .hero-content h1 {
  font-size: 54px;
  letter-spacing: -0.02em;
}

.hero-area.style-two .hero-content h1 span {
  margin-left: 100px;
}

.hero-area.style-two .hero-content .section-subtitle {
  padding-left: 22px;
}

.hero-area.style-two .hero-content p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.hero-area.style-two .circle-text-wrap {
  width: 218px;
  height: 218px;
}

.hero-area.style-two .circle-text-wrap .play-icon {
  width: 66px;
  height: 66px;
  top: 46%;
  left: 46%;
  transform: translate(-50%, -50%);
}

.hero-area.style-two .circle-text-wrap .play-icon i {
  color: var(--titleColor);
  font-size: 19px;
  line-height: 1;
  position: relative;
  left: 1px;
}

.hero-area.style-two .circle-text-wrap:hover .play-icon {
  background-color: var(--secondaryColor);
}

.hero-area.style-two .move-text-wrapper {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  position: absolute;
  bottom: 0px;
  left: 50px;
}

.hero-area.style-two .move-text-wrapper .move-text {
  width: 100px;
  height: 100vh;
}

.hero-area.style-two .move-text-wrapper .move-text.style-two ul {
  animation: mymoveTwo 15s linear infinite alternate;
}

.hero-area.style-two .move-text-wrapper .move-text.style-two ul li {
  font-size: 96px;
  line-height: 1;
  font-weight: 300;
  margin: 0 26px 0 0;
  padding: 0;
  color: rgba(115, 132, 137, 0.05);
}

.hero-area.style-two .move-text-wrapper .move-text.style-two ul li:nth-child(even) {
  font-weight: 400;
}

.hero-area.style-two .move-text-wrapper .move-text.style-two ul li:after {
  display: none;
}

.hero-area.style-two .post-share {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  position: absolute;
  bottom: 23%;
  left: 0px;
}

.hero-area.style-two .post-share ul {
  padding-top: 2px;
  margin: 0;
  position: relative;
  right: 7px;
}

.hero-area.style-two .post-share ul li {
  transform: rotate(90deg);
  padding-bottom: 12px;
  padding-right: 0;
  border: none;
}

.hero-area.style-two .post-share ul li:after {
  position: absolute;
  top: 2px;
  left: 3px;
  content: "";
  width: 1px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-area.style-two .post-share ul li:first-child:after {
  display: none;
}

.hero-area.style-two .post-share ul li a {
  padding-right: 12px;
  padding-left: 12px;
}

.hero-area.style-two .post-share ul li a i {
  font-size: 14px;
}

.hero-area.style-three {
  margin-top: -106px;
  padding: 235px 0 140px;
  border-radius: 0 0 50px 50px;
}

.hero-area.style-three:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 80%;
  height: 120px;
  background-color: var(--whiteColor);
  border-radius: 50px 50px 0 0;
  transform: translateX(-50%);
}

.hero-area.style-three .hero-bg {
  background-image: url(../../img/hero/hero-bg-1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-user-select: none;
  background-position: top center;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  animation: zoomin 22s ease-in infinite;
  z-index: -1;
}

.hero-area.style-three .hero-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: -1;
}

.hero-area.style-three .hero-content h1 {
  font-size: 54px;
  line-height: 64px;
  letter-spacing: -0.02em;
}

.hero-area.style-three p {
  color: rgba(255, 255, 255, 0.5);
}

.hero-area.style-three .circle-text-wrap {
  width: 218px;
  height: 218px;
}

.hero-area.style-three .circle-text-wrap .play-icon {
  width: 86px;
  height: 86px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-area.style-three .circle-text-wrap .play-icon i {
  color: var(--titleColor);
  font-size: 22px;
  line-height: 1;
  position: relative;
  left: 1px;
}

.hero-area.style-three .circle-text-wrap .play-icon:hover {
  background-color: var(--secondaryColor);
}

.hero-area.style-three .circle-text-wrap:hover .play-icon {
  background-color: var(--secondaryColor);
}

.hero-area.style-three .circle-text-wrap:hover .play-icon i {
  color: var(--titleColor);
}

.hero-area.style-three .hero-transparent-text-wrap {
  margin-top: -85px;
}

.hero-area.style-three .hero-transparent-text-wrap .hero-transparent-text {
  position: relative;
  left: -18px;
  font-size: 25.2vw;
  line-height: 0.85;
  background-image: url("../../img/hero/hero-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-slider-one {
  position: relative;
}

.hero-slider-one .hero-slide-item {
  aspect-ratio: 16 / 8;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 36px 25px 30px;
}

.hero-slider-one .hero-slide-item.bg-1 {
  background-image: url(../../img/hero/slide1.jpg);
}

.hero-slider-one .hero-slide-item.bg-2 {
  background-image: url(../../img/hero/slide2.jpg);
}

.hero-slider-one .hero-slide-item.bg-3 {
  background-image: url(../../img/hero/slide3.jpg);
}

.hero-slider-one .hero-slide-item.bg-4 {
  background-image: url(../../img/hero/slide4.jpg);
}

.hero-slider-one .hero-slide-item.bg-5 {
  background-image: url(../../img/hero/slide5.jpg);
}

.hero-slider-one .hero-slide-item.bg-6 {
  background-image: url(../../img/hero/slide6.jpg);
}

.hero-slider-one .hero-slide-item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  /*background: linear-gradient(173.03deg, rgba(0, 0, 0, 0.085) 5.45%, rgba(60, 19, 0, 0.5) 64.33%);*/
  z-index: -1;

}

.hero-slider-one .hero-slide-item .hero-feature-card {
  background-color: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 28px 22px 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

.hero-slider-one .hero-slide-item .hero-feature-card:hover {
  background-color: rgba(67, 67, 67, 0.31);

}

.hero-slider-one .hero-slide-item .hero-feature-card .feature-icon {
  width: 30px;
  height: 30px;
  position: relative;
}

.hero-slider-one .hero-slide-item .hero-feature-card div {
  width: calc(100% - 40px);
  margin-left: auto;

}

.hero-slider-one .hero-slide-item .hero-feature-card div h3 {
  line-height: 30px;

}

.hero-slider-one .hero-slide-item .hero-feature-card div p {
  margin-bottom: 20px;
}

.hero-slider-one .hero-slide-item .hero-feature-card div h3 {
  margin-bottom: 6px;
}

.hero-slider-one .hero-pagination {
  position: absolute;
  top: 60px;
  right: 0;
  bottom: auto;
  left: auto;
  height: auto;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.43);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: none;
  border-radius: 10px 0 0 10px;
  padding: 24px 20px 20px 25px;
  z-index: 1;
  max-width: 79px;

}

.hero-slider-one .hero-pagination .swiper-pagination-bullet {
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  min-height: 22px;
  color: var(--altoColor);
  opacity: 1;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.hero-slider-one .hero-pagination .swiper-pagination-bullet:after {
  position: absolute;
  top: 11px;
  right: -40px;
  content: "";
  width: 0;
  height: 1.5px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.hero-slider-one .hero-pagination .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}

.hero-slider-one .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--secondaryColor);
  font-weight: 700;
}

.hero-slider-one .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 20px;
  opacity: 1;
  visibility: visible;
}

.hero-slide-title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  z-index: 10;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  width: auto;
  max-width: 90%;
}

@keyframes moveDown {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

