#main-menu .navbar-brand img {
  width: 63px;
}
.error-title {
  color: red;
}
.swp .custom-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.swp .carousel-inners {
  width: 100%;
  display: flex;
  transition: transform 0.6s ease;
}
.swp .carousel-item {
  width: 100%;
  flex: 0 0 100%;
}
.swp .carousel-img-box {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}
.swp .carousel-img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.swp .carousel-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.swp .carousel-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 500px;
}
.swp .carousel-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.swp .carousel-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.swp .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 42px;
  line-height: 40px;
  cursor: pointer;
}
.swp .carousel-control-prev {
  left: 20px;
}
.swp .carousel-control-next {
  right: 20px;
  left: auto;
}
.swp .carousel-control:hover {
  background: rgba(0, 0, 0, 0.6);
}
.swp .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.swp .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.swp .carousel-dot.active {
  background: #fff;
}
@media (max-width: 768px) {
  .swp .carousel-img-box {
    height: 320px;
  }
  .swp .carousel-content {
    left: 6%;
    max-width: 88%;
  }
  .swp .carousel-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .swp .carousel-content p {
    font-size: 14px;
  }
  .swp .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 32px;
    line-height: 30px;
  }
  .swp .carousel-control-prev {
    left: 10px;
  }
  .swp .carousel-control-next {
    right: 10px;
  }
}
/*# sourceMappingURL=style1.css.map */