.mainSlider {
  height: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}
/* .homeSlider.swiper-container .swiper-button-next {
  background: url(../images/btn-bg-right.png) right/auto no-repeat !important;
  display: inline-grid;
  place-items: center;
  right: 0;
  width: 36px;
  height: 139px;
}
.homeSlider.swiper-container .swiper-button-prev {
  background: url(../images/btn-bg.png) left/auto no-repeat !important;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 139px;
  left: 0;
} */
.homeSlider.swiper-container .swiper-pagination-fraction {
  width: 100px;
  position: absolute;
  left: auto;
  right: 40px;
  bottom: 100px;
  color: #fff;
  text-align: right;
}
.homeSlider.swiper-container
  .swiper-pagination-fraction
  .swiper-pagination-current {
  font-size: 50px;
  font-weight: 800;
  color: var(--theme-color);
}
.homeSlider.swiper-container
  .swiper-pagination-fraction
  .swiper-pagination-current:before {
  content: "0";
}
.homeSlider.swiper-container
  .swiper-pagination-fraction
  .swiper-pagination-total {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
}
.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.mainSlider h2 {
  font-size: 4.375rem;
  line-height: 1.2;
  color: var(--white);
}

.mainSlider h2 span {
  font-size: 2.8125rem;
  display: block;
}

.mainSlider p {
  font-size: 1.4375rem;
  color: white;
  text-align: center;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mainSlider p span {
    flex: 0.85;
    height: 1px;
    background-color: var(--white);
    display: block;
}

.socialIcon {
  position: absolute;
  top: 50%;
  right: 6rem;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.socialIcon ul {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

.socialIcon ul li a i {
  color: var(--white);
  font-size: 1.125rem;
  border: 1px solid transparent;
  border-radius: 3.125rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  transition: 0.5s ease-in-out;
}

.socialIcon ul li a i:hover {
  border: 1px solid var(--white);
  border-radius: 3.125rem;
}

.mouse {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

.themeBtn {
  font-size: 1rem;
  border: 2px solid #000;
  color: #fff;
  background: #000;
  padding: 12px 32px;
  text-transform: uppercase;
  display: inline-flex;
  transition: 0.5s ease-in-out !important;
  gap: 1rem;
  align-items: center;
}

.themeBtn:hover {
  border-radius: 0px 3.75rem 0px 3.75rem;
  border: 2px solid var(--black);
  color: var(--white);
}

.themeBtn i {
  font-size: 1.875rem;
  transition: 0.3s ease-in-out;
}

.mainSlider .themeBtn {
  margin-top: 1.5rem;
}

