* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
}

.hero-container {
  position: relative;
  overflow: hidden;
  margin-bottom:20px;
}

.hero-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100vh;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height:100%;
  object-fit: cover;
}

.hero-slide-content {
  position: absolute;
  top: 30%;
  left: 15%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: left;
  max-width: 500px;
  min-width: 300px;
}

.hero-slide-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-slide-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.hero-slide-content button {
  background-color: #ff5733;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.hero-slide-content button:hover {
  background-color: #ff785e;
}

.hero-slide-content button a {
  color: inherit;
  text-decoration: none;
}

.hero-navigation-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  height: 2px;
  width: 15px;
  background-color: #ccc;
  border-radius: 15%;
  display: inline-block;
  cursor: pointer;
}

.hero-dot.active {
  background-color: goldenrod;
}

@media (max-width: 768px) {
  .hero-container{
      margin-top:80px;
  }
  .hero-slide {
      flex: 0 0 100%;
      height: 80vh;
  }
  .hero-slide-content {
    top: 50%;
    left: 0;
    right: 2%;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .hero-navigation-btn {
      top:70%;
  }

  .hero-slide-content h1 {
    font-size: 1.5rem;
  }

  .hero-slide-content p {
    font-size: 0.9rem;
    text-align: center;
  }

  .hero-slide-content button {
    font-size: 0.8rem;
  }
}