.banner-area {
  position: relative;
}

.banner-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  z-index: 2;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
}

.banner-content p {
  margin: 20px 0;
  font-size: 18px;
}

.default-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* Responsive */
@media only screen and (max-width: 1440px) {
  .banner-content h1 {
    font-size: 50px;
    font-weight: 700;
  }
  .banner-slide {
    height: 80vh;
  }
}
@media (max-width: 768px) {
  .banner-slide {
    height: 80vh;
    text-align: center;
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}
