
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Logo */
.logo img {
  width: 100%;
  height: auto;
  max-width: 180px;
}
@media only screen and (max-width: 768px) {
  .logo img {
    max-width: 140px;
  }
}

/* Slide Container */
.slide-container {
  margin-left: auto;
  margin-right: auto;
  padding: 30px 10%;
}
@media only screen and (max-width: 767px) {
  .slide-container {
    margin-top: 60px;
    padding: 20px;
}
}
@media (min-width: 1200px) {
  .slide-container {
    margin-top: -60px;
  }
}

/* Slider Content */
.slider__content {
  height: auto;
  padding-top: 100px;
  text-align: center;
  color: white;
}
.slider__content h1 {
  font-size: 2.2rem;
  font-weight: bold;
}
.slider__content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Banner Thumb Image */
.banner__thumb img {
  width: 40%;
  float: right;
}
@media only screen and (max-width: 768px) {
  .banner__thumb img {
    width: 80%;
    margin: 0 auto;
    float: none;
    display: block;
  }
}

/* Product Category List Images */
#dmr-iseries-list img,
#dmr-radio-list img,
#dmr-radio-list-commercial img,
.category-image img {
  width: 20%;
}

/* About Section */
.about__thumb img {
  width: 100%;
}
#about__area {
  text-align: center;
}

/* Banner Items Hover Effect */
.banner__item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

/* Footer */
.footer__area a {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
}
.footer__area a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hidden Items */
.poc-radio-list-items,
.dmr-h-radio-list-items,
.hiddenitem {
  display: none;
}

/* Mobile Menu Text Color */
#mobile-menu {
  color: black !important;
}

/* Title Areas */
.title-area,
.title-text {
  text-align: center;
  margin-bottom: 20px;
}

/* Buttons */
.slider__btn {
  background-color: rgb(112, 134, 70);
  width: 100%;
}
