*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Inter Tight", sans-serif;
}

.swiper{
  width:100%;
  height:100vh;
}

.swiper-slide{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.swiper-slide img,
.swiper-slide video{
  width: 106%;
  height:100%;
  object-fit:cover;
}

/* Overlay */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
  z-index:1;
}

/* Text Content */
.banner-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  left: 60px;
  bottom: 60px;
}



.banner-content .para1{
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 5px;
  color: #4e341c;
}

.banner-content .para2{
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 140%;
  font-weight: 700;
  color: #fff;
  letter-spacing: 5px;
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev{
  color:#fff;
}

.swiper-pagination-bullet{
  background:#fff;
  opacity:0.6;
}

.swiper-pagination-bullet-active{
  opacity:1;
}

/* Responsive */
@media(max-width:768px){
  .banner-content{
    left:25px;
    bottom:40px;
  }
  .banner-content .para2{
    font-size:20px;
  }
}
