.creator-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.creator-slider .swiper-wrapper,
.creator-slider .swiper-slide {
  height: 100%;
}


.creator-slider .swiper-slide {
  opacity: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.creator-slider .swiper-slide-active {
  opacity: 1;
}

.creator-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.creator-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}


.creator-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}


.creator-logo {
  width: 140px;
  max-width: 60%;
  margin-bottom: 0px;
}

.creator-title {
  position: relative;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 25px 0 35px;
  padding: 0 30px;
  color: #FFFFFF;
}

.creator-title::before,
.creator-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40vw;
  height: 1px;
  background: #FFFFFF;
  transform: translateY(-50%);
}


.creator-title::before {
  right: 100%;
  margin-right: 30px;
}


.creator-title::after {
  left: 100%;
  margin-left: 30px;
}


.creator-btn {
  padding: 12px 36px;
  background-color: #FFFFFF;
  color: #015980;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.creator-btn:hover {
  background: #DEB887;
  color: #FFFFFF;
}


.creator-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}


.creator-nav {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.8;
  position: relative;
}


.creator-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-135deg);
}


.creator-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}



.creator-pagination {
  position: relative !important;
  margin-top: 11px;
}

.creator-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  width: 9px;
  height: 9px;
  margin: 0 4px !important;
}

.creator-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}


@media (max-width: 768px) {

  .creator-title {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .creator-title::before,
  .creator-title::after {
    width: 25vw;
  }

  .creator-logo {
    width: 110px;
  }

  .creator-controls {
    bottom: 20px;
    gap: 14px;
  }

  .creator-btn {
    font-size: 12px;
  }

}
