/* Slider Container */
.slider {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

/* Slides wrapper */
.slides {
  width: 500%;
  height: 100%;
  display: flex;
}

/* Individual slide */
.slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 10%;
  background-size: cover;
  background-position: center;
  padding: 0%;
}

/* Background images */
.first { 
  background-image: url('/images/b2jjjj.jpg'); 
  
}

.hero-text {
  margin: 0px;
  padding: 0px;
}
/* Hero text */
.hero-text h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  color:#02312c;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  color: rgb(255, 230, 167);
}
.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.hero-text button {
  font-size: 1.2rem;
  background-color: rgb(255, 193, 36);
  padding: 10px;
  border-radius: 10px;
  margin-top: 30px;
  border: none;
}
.hero-text button a{
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}