.hero-section {
  position: relative;
}

.hero-section .swiper-button-prev::after, .hero-section .swiper-button-next::after {
  content: none;
}

.hero-section .swiper-button-prev, .hero-section .swiper-button-next {
  cursor: pointer;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 25px;
  transition: all .5s ease-in-out;
}

.hero-section .swiper-button-prev:hover, .hero-section .swiper-button-next:hover {
  background-color: #fff;
  color: var(--color-primary);
}

.hero-content {
  height: 100%;
}

.hero-content .hero-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin: 20px 0;
  text-transform: uppercase;
}

.hero-content .hero-title span {
  color: var(--color-primary);
}

.hero-content .hero-sub-title {
  display: inline-block;
  color: var(--color-primary);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.hero-content p {
  color: #fff;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}


.theme-btn {
  display: inline-block;
  font-size: 14px;
  color: #000;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color-primary);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background:  #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: #fff;
  color: #000;
}

.theme-btn2::before{
  background: var(--color-primary);
}

.theme-btn2:hover{
  color: #000;
}

@media all and (max-width: 1199px) {

  .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
.hero-section{margin-top:85px;}
  
  .hero-content .hero-title {
    font-size: 50px;
  }

}

@media all and (max-width: 767px) {

  .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-content .hero-btn {
    gap: 1rem;
  }

}