body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.more-btn .button {
  width: fit-content;
  display: flex;
  padding: 1.2em 4rem;
  cursor: pointer;
  gap: 0.4rem;
  font-weight: bold;
  border-radius: 10px;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  background: linear-gradient(15deg, #f09f33, #de6f3d, #cc3f47, #bd1821)
    no-repeat;
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.more-btn .button:hover {
  background-size: 320%;
  background-position: right center;
}

.more2-btn .btn {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.6;
}

.more2-btn .btn::after {
  content: "";
  border-bottom: 3px double #f59619;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 5px;
  visibility: hidden;
  opacity: 1;
  transition: 0.2s linear;
}

.more2-btn .btn .icon {
  transform: translateX(0%);
  transition: 0.2s linear;
  animation: attention 1.2s linear infinite;
}

.more2-btn .btn:hover::after {
  visibility: visible;
  opacity: 0.7;
  width: 90%;
}

.more2-btn .btn:hover {
  letter-spacing: 2px;
  opacity: 1;
}

.more2-btn .btn:hover > .icon {
  transform: translateX(30%);
  animation: none;
}

@keyframes attention {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(30%);
  }
}

#footer {
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

#menu-engine:hover #menu-engine-children {
  display: block;
}

#news_content .news-img {
  flex: 0 0 360px;
}

#news_content #right-content .news-img {
  width: 100%;
}

#news_content #right-content .news-img img {
  min-height: 360px;
}

.limit-3-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-group a {
  font-size: 15px !important;
}

#navbar nav .product-group > div a {
  padding: 12px 24px !important;
}

#product-detail .swiper-slide img {
  width: 500px;
  height: 386px;
  border: 1px solid #ccc;
}
#product-detail .swiper-thumbnail {
  width: 120px !important;
  height: 90px !important;
}
#product-detail .swiper-thumbnails .swiper-slide img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}
#contact svg path {
  fill: #bd1821;
}
#product-detail svg {
  transition: all 0.5s ease;
}
#product-detail svg path:active {
  fill: rgb(250, 170, 41);
}
#logo3 {
  display: none;
}
@media screen and (max-width: 768px) {
  #logo,
  #logo2 {
    display: none !important;
  }
  #logo3 {
    display: block;
    margin: 0;
  }
  #navbar .container > div {
    justify-content: space-around;
    padding: 1rem 0rem;
  }
  .nav-scrolled #menu-toggle {
    color: #000;
    cursor: pointer;
  }
  #about img {
    padding: 0 0.5rem;
  }
  #contact .contact-content .contact-head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }
  #mobile-menu a {
    text-align: center;
  }
  header {
    max-width: 100vw;
  }
  #product .flex {
    padding: 0 0.5rem;
  }
}
