/* topbar */

.bg-top-bar {
  background-color: #212121;
}

.custom-btn {
  background-color: #a2d84c;
  color: black;
  font-size: 1rem;
  padding: 0 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: 450;
}
.custom-btn:hover {
  background-color: rgba(162, 216, 76, 0.9);
  color: black;
}

/* navbar */
.logo {
  margin-left: 6rem;
}
.custom-a {
  font-weight: 480;
  font-size: 1.2rem;
  transition: box-shadow 0.3s ease;
}

.custom-a:hover {
  box-shadow: inset 0 -5px 0 #f9bd24;
}

/* slider */
.carousel-indicators [data-bs-target] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 4px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #fff;
}
#slider .carousel-item img {
  height: 500px;
  object-fit: cover;
}

#slider .carousel-item:nth-child(5) img {
  object-fit: scale-down;
  height: 500px;
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }
}

/* services card */
.card-img-services {
  height: 200px;
  object-fit: contain;
}
.card-title {
  text-align: center;
}
.card-text {
  color: #adadad;
  text-align: center;
}
/* products */
.card-img-products {
  height: 160px;
  object-fit: contain;
}
/* about */
/* comments */
#commentsCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #adadad;
  opacity: 1;
}

#commentsCarousel .carousel-indicators .active {
  background-color: #6c6c6c;
}

#commentsCarousel .carousel-indicators {
  bottom: -30px;
}
/* line */
.custom-hr {
  height: 5px;
  width: 100%;
  background: radial-gradient(
    ellipse at center,
    #ccc 0%,
    #ccc 30%,
    transparent 80%
  );
}
/* follow */
@media (min-width: 992px) {
  .social-banner {
    height: 400px;
    background-color: #8dc53e;
  }
  .social-banner img {
    height: 140px;
    width: 140px;
  }
}
/* contact */
.text {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 500;
}
/* footer */
.footer-text {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-icons i {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
