/*body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f0f0f0;
}*/

#carousel-container-ng.carousel-container {
  width: 100%;
  max-width: 1300px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #dbdbdb;
}

#carousel-container-ng .carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

#carousel-container-ng .carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
}

#carousel-container-ng .carousel-slide .slide-content {
  text-align: left;
  margin: 20px;
  width: auto;
  max-width: 70%;
  position: relative;
}

#carousel-container-ng .text-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
}

#carousel-container-ng .text-wrapper::after {
  content: "";
  position: absolute;

  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background-color: rgba(10, 10, 10, 0.65);
  border-radius: 20px;
  filter: blur(35px);
  z-index: -1;
  opacity: 0.75;
}

#carousel-container-ng .slide-content .slide-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

#carousel-container-ng .slide-content .slide-description {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #f0f0f0;
  line-height: 1.6;
}

#carousel-container-ng .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

#carousel-container-ng .carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

#carousel-container-ng .carousel-button.prev {
  left: 15px;
}

#carousel-container-ng .carousel-button.next {
  right: 15px;
}

#carousel-container-ng .carousel-indicators {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

#carousel-container-ng .indicator {
  width: 33px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  margin: 0 5px;
}

#carousel-container-ng .indicator.active {
  background-color: var(--second-color);
}



@media screen and (max-width: 480px) {
    #carousel-container-ng .carousel-slide {
        height: 350px;
    }
}