/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider .item {
  position: relative;
  padding-top: 348px;
  padding-bottom: 200px;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 10000ms ease,
    -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}

.active .main-slider__bg {
  transform: scale(1.1);
}

.main-slider__overly {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.main-slider__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  z-index: -1;
}

.main-slider__shape-1 img {
  width: auto !important;
}

.active .main-slider__shape-1 {
  opacity: 0.9;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 1600ms;
}

.main-slider__shape-2 {
  position: absolute;
  top: 0;
  left: -350px;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider__shape-2 {
  opacity: 0.3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2000ms;
}

.main-slider__shape-2 img {
  width: auto !important;
}

.main-slider__shape-3 {
  position: absolute;
  bottom: 0;
  left: 0px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider__shape-3 {
  opacity: 0.1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2200ms;
}

.main-slider__shape-3 img {
  width: auto !important;
  animation: leftRight 4s ease-in-out infinite;
}

.main-slider__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider__shape-4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2600ms;
}

.main-slider__shape-4 img {
  width: auto !important;
  animation: topBottom 3s ease-in-out infinite;
}

.main-slider__name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--xmr-white-rgb), 0.15);
  font-size: 300px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  letter-spacing: 0.1em;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: scale(0.1) rotate(0deg);
}

.active .main-slider__name {
  visibility: visible;
  transform: scale(1) rotate(10deg);
  transition-delay: 100ms;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 10;
}

.main-slider__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider__sub-title-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}

.main-slider__sub-title {
  font-size: 24px;
  line-height: 24px;
  color: var(--xmr-white);
  font-family: var(--xmr-font-two);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.main-slider__sub-title-shape {
  position: relative;
  display: block;
  height: 1px;
  width: 40px;
  background-color: var(--xmr-base);
}

.main-slider__title {
  position: relative;
  display: block;
  font-size: 120px;
  color: var(--xmr-white);
  font-weight: 600;
  line-height: 120px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 11px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(200px);
}

.active .main-slider__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 800ms;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: rgba(var(--xmr-white-rgb), 0.7);
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  margin-top: 43px;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
}

.active .main-slider__btn-box {
  opacity: 1;
  visibility: visible;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1200ms;
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1320px;
  width: 100%;
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 10px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(var(--xmr-white-rgb), 0.3);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--xmr-white-rgb), 0);
  border: 2px solid var(--xmr-white);
}

.main-slider .owl-theme .owl-nav {
  position: absolute;
  top: 53%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0px 80px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider .owl-theme .owl-nav [class*='owl-'] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--xmr-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  background-color: transparent !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 0.3) !important;
}

.main-slider .owl-theme .owl-nav [class*='owl-']:hover {
  color: rgba(var(--xmr-white-rgb), 1) !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 1) !important;
}

.main-slider .owl-theme .owl-nav [class*='owl-'] + [class*='owl-'] {
  margin-left: 0px;
}

.main-slider .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-two .item {
  position: relative;
  padding-top: 337px;
  padding-bottom: 337px;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 10000ms ease,
    -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}

.active .main-slider-two__bg {
  transform: scale(1.1);
}

.main-slider-two__overly {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 0;
  right: 217px;
  border-top: 250px solid var(--xmr-black);
  border-right: 215px solid transparent;
  border-left: 314px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-two__shape-1 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1600ms;
}

.main-slider-two__shape-2 {
  position: absolute;
  top: 0;
  right: -20px;
  border-top: 250px solid var(--xmr-black);
  border-right: 195px solid transparent;
  border-left: 215px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-two__shape-2 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider-two__shape-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 415px solid var(--xmr-black);
  border-right: 525px solid transparent;
  border-left: 725px solid transparent;
  opacity: 0;
  transform: translateY(400px);
  z-index: -1;
}

.active .main-slider-two__shape-3 {
  opacity: 0.3;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2400ms;
}

.main-slider-two__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 415px solid var(--xmr-black);
  border-right: 525px solid transparent;
  border-left: 725px solid transparent;
  opacity: 0;
  transform: translateY(400px);
  z-index: -1;
}

.active .main-slider-two__shape-4 {
  opacity: 0.3;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2800ms;
}

.main-slider-two__shape-5 {
  position: absolute;
  top: 0;
  left: -350px;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-two__shape-5 {
  opacity: 0.3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 3200ms;
}

.main-slider-two__shape-5 img {
  width: auto !important;
}

.main-slider-two__shape-6 {
  position: absolute;
  bottom: 0;
  right: -150px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-two__shape-6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 3600ms;
}

.main-slider-two__shape-6 img {
  width: auto !important;
}

.main-slider-two__name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--xmr-white-rgb), 0.15);
  font-size: 400px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  letter-spacing: 0.1em;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: scale(0.1) rotate(0deg);
}

.active .main-slider-two__name {
  visibility: visible;
  transform: scale(1) rotate(10deg);
  transition-delay: 100ms;
}

.main-slider-two__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider-two__sub-title-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}

.main-slider-two__sub-title {
  font-size: 24px;
  line-height: 24px;
  color: var(--xmr-white);
  font-family: var(--xmr-font-two);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.main-slider-two__sub-title-shape {
  position: relative;
  display: block;
  height: 1px;
  width: 40px;
  background-color: var(--xmr-base);
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 120px;
  color: var(--xmr-white);
  font-weight: 600;
  line-height: 120px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 22px;
  margin-bottom: 29px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(200px);
}

.active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 800ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
}

.active .main-slider-two__btn-box {
  opacity: 1;
  visibility: visible;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1200ms;
}

.main-slider-two .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1320px;
  width: 100%;
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 10px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(var(--xmr-white-rgb), 0.3);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-two .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--xmr-white-rgb), 0);
  border: 2px solid var(--xmr-white);
}

.main-slider-two .owl-theme .owl-nav {
  position: absolute;
  top: 45%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  padding: 0px 80px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-two .owl-theme .owl-nav [class*='owl-'] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--xmr-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  padding: 18px 0px !important;
  background-color: transparent !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 0.3) !important;
}

.main-slider-two .owl-theme .owl-nav [class*='owl-']:hover {
  color: rgba(var(--xmr-white-rgb), 1) !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 1) !important;
}

.main-slider-two .owl-theme .owl-nav [class*='owl-'] + [class*='owl-'] {
  margin-left: 0px;
}

.main-slider-two .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-three .item {
  position: relative;
  padding-top: 336px;
  padding-bottom: 249px;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-three__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 10000ms ease,
    -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}

.active .main-slider-three__bg {
  transform: scale(1.1);
}

.main-slider-three__overly {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.main-slider-three__shape-1 {
  position: absolute;
  top: 0;
  right: 217px;
  border-top: 250px solid var(--xmr-black);
  border-right: 215px solid transparent;
  border-left: 314px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-three__shape-1 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1600ms;
}

.main-slider-three__shape-2 {
  position: absolute;
  top: 0;
  right: -20px;
  border-top: 250px solid var(--xmr-black);
  border-right: 195px solid transparent;
  border-left: 215px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-three__shape-2 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider-three__shape-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 415px solid var(--xmr-black);
  border-right: 525px solid transparent;
  border-left: 725px solid transparent;
  opacity: 0;
  transform: translateY(400px);
  z-index: -1;
}

.active .main-slider-three__shape-3 {
  opacity: 0.3;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2400ms;
}

.main-slider-three__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 415px solid var(--xmr-black);
  border-right: 525px solid transparent;
  border-left: 725px solid transparent;
  opacity: 0;
  transform: translateY(400px);
  z-index: -1;
}

.active .main-slider-three__shape-4 {
  opacity: 0.3;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2800ms;
}

.main-slider-three__shape-5 {
  position: absolute;
  top: 120px;
  left: -80px;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-three__shape-5 {
  opacity: 0.3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 3200ms;
}

.main-slider-three__shape-5 img {
  width: auto !important;
}

.main-slider-three__shape-6 {
  position: absolute;
  bottom: 0;
  right: -30px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-three__shape-6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 3600ms;
}

.main-slider-three__shape-6 img {
  width: auto !important;
}

.main-slider-three__name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--xmr-white-rgb), 0.15);
  font-size: 400px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  letter-spacing: 0.1em;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: scale(0.1) rotate(0deg);
}

.active .main-slider-three__name {
  visibility: visible;
  transform: scale(1) rotate(10deg);
  transition-delay: 100ms;
}

.main-slider-three__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-three__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider-three__sub-title-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}

.main-slider-three__sub-title {
  font-size: 24px;
  line-height: 24px;
  color: var(--xmr-white);
  font-family: var(--xmr-font-two);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.main-slider-three__sub-title-shape {
  position: relative;
  display: block;
  height: 1px;
  width: 40px;
  background-color: var(--xmr-base);
}

.main-slider-three__title {
  position: relative;
  display: block;
  font-size: 120px;
  color: var(--xmr-white);
  font-weight: 600;
  line-height: 120px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 22px;
  margin-bottom: 29px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(200px);
}

.active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 800ms;
}

.main-slider-three__btn-and-video {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
}

.active .main-slider-three__btn-and-video {
  opacity: 1;
  visibility: visible;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1200ms;
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
}

.main-slider-three__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-slider-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--xmr-black);
  background-color: rgba(var(--xmr-base-rgb), 0.9);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-three__video-icon:hover {
  background-color: var(--xmr-white);
  color: var(--xmr-black);
}

.main-slider-three__video-link .ripple,
.main-slider-three__video-icon .ripple:before,
.main-slider-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: '';
  position: absolute;
}

.main-slider-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: '';
  position: absolute;
}

.main-slider-three__video-text {
  font-size: 20px;
  line-height: 20px;
  color: var(--xmr-white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.main-slider-three .owl-theme .owl-dots {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  position: absolute;
  bottom: 129px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider-three .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 10px;
}

.main-slider-three .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(var(--xmr-white-rgb), 0.3);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-three .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-three .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--xmr-white-rgb), 0);
  border: 2px solid var(--xmr-white);
}

.main-slider-three .owl-theme .owl-nav {
  position: absolute;
  top: 47%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  padding: 0px 80px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-three .owl-theme .owl-nav [class*='owl-'] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--xmr-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  padding: 18px 0px !important;
  background-color: transparent !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 0.3) !important;
}

.main-slider-three .owl-theme .owl-nav [class*='owl-']:hover {
  color: rgba(var(--xmr-white-rgb), 1) !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 1) !important;
}

.main-slider-three .owl-theme .owl-nav [class*='owl-'] + [class*='owl-'] {
  margin-left: 0px;
}

.main-slider-three .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Four
--------------------------------------------------------------*/
.main-slider-four {
  position: relative;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-four .item {
  position: relative;
  padding-top: 339px;
  padding-bottom: 190px;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-four__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 10000ms ease,
    -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}

.active .main-slider-four__bg {
  transform: scale(1.1);
}

.main-slider-four__overly {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.main-slider-four__shape-1 {
  position: absolute;
  top: 0;
  right: 217px;
  border-top: 350px solid var(--xmr-black);
  border-right: 215px solid transparent;
  border-left: 314px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-four__shape-1 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1600ms;
}

.main-slider-four__shape-2 {
  position: absolute;
  top: 0;
  right: -20px;
  border-top: 350px solid var(--xmr-black);
  border-right: 195px solid transparent;
  border-left: 215px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-four__shape-2 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider-four__shape-3 {
  position: absolute;
  top: 120px;
  left: -80px;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-four__shape-3 {
  opacity: 0.3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2400ms;
}

.main-slider-four__shape-3 img {
  width: auto !important;
}

.main-slider-four__shape-4 {
  position: absolute;
  bottom: 0;
  right: -30px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-four__shape-4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2800ms;
}

.main-slider-four__shape-4 img {
  width: auto !important;
}

.main-slider-four__name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--xmr-white-rgb), 0.15);
  font-size: 400px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  letter-spacing: 0.1em;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: scale(0.1) rotate(0deg);
}

.active .main-slider-four__name {
  visibility: visible;
  transform: scale(1) rotate(10deg);
  transition-delay: 100ms;
}

.main-slider-four__content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 10;
}

.main-slider-four__video-link {
  position: relative;
  display: block;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider-four__video-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}

.main-slider-four__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 22px;
  color: var(--xmr-black);
  background-color: rgba(var(--xmr-base-rgb), 0.9);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-four__video-icon:hover {
  background-color: var(--xmr-white);
  color: var(--xmr-black);
}

.main-slider-four__video-link .ripple,
.main-slider-four__video-icon .ripple:before,
.main-slider-four__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-four__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: '';
  position: absolute;
}

.main-slider-four__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: '';
  position: absolute;
}

.main-slider-four__title {
  position: relative;
  display: block;
  font-size: 120px;
  color: var(--xmr-white);
  font-weight: 600;
  line-height: 120px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 27px;
  margin-bottom: 29px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(200px);
}

.active .main-slider-four__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 900ms;
}

.main-slider-four__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
}

.active .main-slider-four__btn-box {
  opacity: 1;
  visibility: visible;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1300ms;
}

.main-slider-four .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  counter-reset: count;
}

.main-slider-four .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 0px;
}

.main-slider-four .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-four .owl-theme .owl-dots .owl-dot span:before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: var(--xmr-white);
  font-size: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-weight: 500;
  counter-increment: count;
  content: '' counter(count);
  transition: all 500ms ease;
  font-family: var(--xmr-font-two);
}

.main-slider-four .owl-theme .owl-dots .owl-dot:hover span:before,
.main-slider-four .owl-theme .owl-dots .owl-dot.active span:before {
  color: var(--xmr-base);
}

.main-slider-four .owl-theme .owl-nav {
  position: absolute;
  top: 54%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
  padding: 0px 80px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-four .owl-theme .owl-nav [class*='owl-'] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--xmr-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  padding: 18px 0px !important;
  background-color: transparent !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 0.3) !important;
}

.main-slider-four .owl-theme .owl-nav [class*='owl-']:hover {
  color: rgba(var(--xmr-white-rgb), 1) !important;
  border: 2px solid rgba(var(--xmr-white-rgb), 1) !important;
}

.main-slider-four .owl-theme .owl-nav [class*='owl-'] + [class*='owl-'] {
  margin-left: 0px;
}

.main-slider-four .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Four
--------------------------------------------------------------*/
.main-slider-five {
  position: relative;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-five .item {
  position: relative;
  padding-top: 270px;
  padding-bottom: 180px;
  background-color: var(--xmr-black);
  z-index: 10;
}

.main-slider-five__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  overflow: hidden;
  transform: scale(1);
  transition:
    transform 10000ms ease,
    -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}

.active .main-slider-five__bg {
  transform: scale(1.1);
}

.main-slider-five__overly {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.main-slider-five__shape-1 {
  position: absolute;
  top: 0;
  right: 217px;
  border-top: 250px solid var(--xmr-black);
  border-right: 215px solid transparent;
  border-left: 314px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-five__shape-1 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1600ms;
}

.main-slider-five__shape-2 {
  position: absolute;
  top: 0;
  right: -20px;
  border-top: 250px solid var(--xmr-black);
  border-right: 195px solid transparent;
  border-left: 215px solid transparent;
  opacity: 0;
  transform: translateY(-200px);
  z-index: -1;
}

.active .main-slider-five__shape-2 {
  opacity: 0.5;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider-five__shape-3 {
  position: absolute;
  top: 120px;
  left: -80px;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-five__shape-3 {
  opacity: 0.3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2400ms;
}

.main-slider-five__shape-3 img {
  width: auto !important;
}

.main-slider-five__shape-4 {
  position: absolute;
  bottom: 0;
  right: -30px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  z-index: -1;
}

.active .main-slider-five__shape-4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1800ms;
  transition-delay: 2800ms;
}

.main-slider-five__shape-4 img {
  width: auto !important;
}

.main-slider-five__name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--xmr-white-rgb), 0.15);
  font-size: 400px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  letter-spacing: 0.1em;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: scale(0.1) rotate(0deg);
}

.active .main-slider-five__name {
  visibility: visible;
  transform: scale(1) rotate(0deg);
  transition-delay: 100ms;
}

.main-slider-five__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-five__video-link {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.active .main-slider-five__video-link {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 500ms;
}

.main-slider-five__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 22px;
  color: var(--xmr-black);
  background-color: rgba(var(--xmr-base-rgb), 0.9);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-five__video-icon:hover {
  background-color: var(--xmr-white);
  color: var(--xmr-black);
}

.main-slider-five__video-link .ripple,
.main-slider-five__video-icon .ripple:before,
.main-slider-five__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--xmr-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-five__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: '';
  position: absolute;
}

.main-slider-five__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: '';
  position: absolute;
}

.main-slider-five__title {
  position: relative;
  display: block;
  font-size: 120px;
  color: var(--xmr-white);
  font-weight: 600;
  line-height: 120px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 26px;
  margin-bottom: 29px;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(200px);
}

.active .main-slider-five__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 900ms;
}

.main-slider-five__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
}

.active .main-slider-five__btn-box {
  opacity: 1;
  visibility: visible;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1300ms;
}

.main-slider-five .owl-theme .owl-dots {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 50px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  counter-reset: count;
  top: 47%;
  transform: translateY(-50%);
}

.main-slider-five .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 0px;
}

.main-slider-five .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-five .owl-theme .owl-dots .owl-dot span:before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: var(--xmr-white);
  font-size: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-weight: 500;
  counter-increment: count;
  content: '' counter(count);
  transition: all 500ms ease;
  font-family: var(--xmr-font-two);
}

.main-slider-five .owl-theme .owl-dots .owl-dot:hover span:before,
.main-slider-five .owl-theme .owl-dots .owl-dot.active span:before {
  color: var(--xmr-base);
}

/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/
