@charset "UTF-8";
.product-item {
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(38, 38, 38, 0.06), 0px 1px 3px 0px rgba(38, 38, 38, 0.1);
  transition: all 0.35s;
}
.product-item:hover {
  box-shadow: 0px 4px 6px -2px rgba(38, 38, 38, 0.05), 0px 10px 15px -3px rgba(38, 38, 38, 0.1);
}
.product-item__heading {
  position: relative;
}
.product-item__heading--tag {
  z-index: 1;
  position: absolute;
  top: 18px;
  left: -9px;
}
.product-item__heading--tag > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 36px;
  background-color: #FFCB03;
  border: 4px solid #FFF;
  border-radius: 8px 10px 10px 0;
  box-shadow: 0px 1.4px 2.81px -0.7px rgba(38, 38, 38, 0.06), 0px 2.81px 4.21px -0.7px rgba(38, 38, 38, 0.1);
  position: relative;
}
.product-item__heading--tag > * > * {
  color: #FFF;
}
.product-item__heading--tag > *.order {
  background-color: #FFEEA4;
}
.product-item__heading--tag > *.order p:first-child::before {
  counter-increment: item-counter;
  content: "#" counter(item-counter);
}
.product-item__heading--tag > *::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: calc(0% - 4px);
  width: 9px;
  height: 9px;
  border-top: solid 4.5px #FFDE55;
  border-right: solid 4.5px #FFDE55;
  border-left: solid 4.5px transparent;
  border-bottom: solid 4.5px transparent;
}
.product-item__heading--img {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.product-item__heading--img a img {
  transition: all 0.45s ease;
}
.product-item__heading--img:hover a img {
  transform: scale(1.12);
}
.product-item__heading--img .brand {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.product-item__body {
  padding: 12px 18px;
}
.product-item__body > ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #64748B;
  display: flex;
  gap: 4px;
}
.product-item__body > ul li::after {
  content: "•";
}
.product-item__body > ul li:last-child::after {
  content: none;
}
@media (max-width: 575px) {
  .product-item__body > ul li {
    font-size: 12px;
    line-height: 18px;
  }
}
.product-item__body > h3 a {
  color: #FFD83A;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.product-item__body > h3 a:hover {
  color: #e4a300;
  transition: all 0.35s;
}
.product-item__body > p {
  font-size: 14px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 575px) {
  .product-item__body {
    padding: 8px 12px;
  }
}
.product-item__footer {
  padding: 12px 18px 16px;
  border-top: 1px dashed #E2E8F0;
}
.product-item__footer__action {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 12px;
}
.product-item__footer__action--buy-now {
  padding: 12px 20px;
  display: block;
  color: #FFF !important;
  background-color: #FFCB03;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  flex-grow: 1;
}
.product-item__footer__action--buy-now:hover {
  background-color: #e4a300;
}
.product-item__footer__action--add-to-cart {
  padding: 12px 20px;
  display: block;
  background-color: #FFFFFF;
  border: 1px solid #FFCB03;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}
.product-item__footer__action--add-to-cart:hover {
  background-color: #FFCB03;
}
.product-item__footer__action--add-to-cart:hover svg path {
  stroke: #FFF !important;
}
@media (max-width: 575px) {
  .product-item__footer__action--buy-now {
    padding: 6px 8px;
    font-size: 14px;
    line-height: 150%;
  }
  .product-item__footer__action--add-to-cart {
    padding: 4px 8px;
  }
  .product-item__footer__action--add-to-cart svg {
    width: 20px !important;
    height: 20px !important;
  }
}
.product-item__footer--price span:first-child {
  color: #64748B;
  margin-right: 4px;
}
.product-item__footer--price span:nth-child(2) {
  color: #FFCB03;
  font-weight: 600;
}
.product-item__footer--price span:nth-child(3) {
  color: #A1A1AA;
  display: block;
}
@media (max-width: 575px) {
  .product-item__footer {
    padding: 8px 12px;
  }
  .product-item__footer--price span:first-child {
    font-size: 12px;
  }
  .product-item__footer--price span:nth-child(2) {
    font-size: 14px;
  }
  .product-item__footer--price span:nth-child(3) {
    font-size: 12px;
  }
}

.category-item {
  aspect-ratio: 1/0.9;
  width: 372px;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  box-shadow: 0px 2px 4px -1px rgba(38, 38, 38, 0.06), 0px 4px 6px -1px rgba(38, 38, 38, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
@media (max-width: 991px) {
  .category-item {
    width: 348px;
  }
}
@media (max-width: 575px) {
  .category-item {
    width: 316px;
  }
}
.category-item:hover {
  border-color: #FFF2BE;
  box-shadow: 0px 25px 50px -12px rgba(38, 38, 38, 0.25);
}
.category-item:hover img {
  transform: scale(1.12);
}
.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s;
}
.category-item__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 18px 12px;
  background-color: #FFF;
}
@media (max-width: 575px) {
  .category-item__info {
    padding: 10px 14px 8px;
  }
}
.category-item__info h3 a {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  color: #FFCB03;
}
.category-item__info i {
  padding: 6px;
  font-size: 20px;
  color: #FFCB03;
  background-color: #FFF6D8;
  border-radius: 50%;
  transition: all 0.35s;
}
.category-item__info i:hover {
  color: #FFF;
  background-color: #FFCB03;
}

.article-item {
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(38, 38, 38, 0.06), 0px 1px 3px 0px rgba(38, 38, 38, 0.1);
  border-radius: 6px;
  transition: all 0.35s;
}
.article-item:hover {
  box-shadow: 0px 4px 6px -2px rgba(38, 38, 38, 0.05), 0px 10px 15px -3px rgba(38, 38, 38, 0.1);
}
.article-item__img {
  border-radius: 4px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-item__img:hover img {
  transform: scale(1.12);
}
.article-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-item__body h3 a {
  text-transform: capitalize;
  color: #FFD83A;
  font-weight: 700;
  transition: all 0.15s;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.article-item__body h3 a:hover {
  color: #e4a300;
}
.article-item__body p {
  color: #454545;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.article-item__footer {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #6E737A;
}
.article-item__footer p, .article-item__footer a {
  font-size: 14px;
  line-height: 18px;
  color: #454545;
}

.home {
  background: #f9f9f9;
}
.home-hero img {
  object-position: top;
}
.home-hero__content {
  position: relative;
  padding: 48px 0;
  min-height: 810px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .home-hero__content {
    min-height: 546px;
  }
}
.home-hero__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #000609 100%);
}
.home-hero__content--subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1fb556;
  font-size: 24px;
}
.home-hero__content--subtitle span {
  width: 8px;
  height: 8px;
  background-color: #1fb556;
  border-radius: 50%;
  position: relative;
}
.home-hero__content--subtitle span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@media (max-width: 575px) {
  .home-hero__content--subtitle {
    font-size: 16px;
  }
}
.home-hero__content--des {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 150% !important;
}
@media (max-width: 575px) {
  .home-hero__content--des {
    font-size: 14px;
  }
}
.home-hero__content a {
  color: #FFFFFF;
}
.home-hero__content a:hover {
  color: #FFEEA4;
}
.home-hero__content a i {
  display: inline-block;
  transform: rotate(-45deg);
  font-size: 40px;
}
.home .about-us {
  background-image: url("../../imgs/about-us-bg.png");
  background-repeat: no-repeat;
  padding: 160px 0;
  background-position: top center;
  border-bottom: 0.5px solid #cccfd7;
}
@media (max-width: 991px) {
  .home .about-us {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .home .about-us {
    padding: 40px 0;
  }
}
.home .about-us__left p:first-child {
  margin-bottom: 4px;
  color: #e14c46;
  font-size: 20px;
  font-weight: 400;
}
.home .about-us__left .title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #000609;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .home .about-us__left .title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .home .about-us__left .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .home .about-us__left .title {
    font-size: 28px;
    line-height: 32px;
  }
}
.home .about-us__right .row {
  margin-top: 48px;
}
@media (max-width: 991px) {
  .home .about-us__right .row {
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .home .about-us__right .row {
    margin-top: 0px;
  }
}
.home .about-us__right--detail {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  border-top: 1px solid #71d47c;
  padding-top: 12px;
}
.home .about-us__footer {
  position: relative;
}
@media (max-width: 575px) {
  .home .about-us__footer {
    margin-top: 32px;
  }
}
@media (max-width: 1199px) {
  .home .about-us__footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.home .about-us__footer span {
  position: absolute;
  color: #FFE470;
  font-size: 96px;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0.5;
  right: 0;
}
@media (max-width: 1199px) {
  .home .about-us__footer span {
    font-size: 8vw;
  }
}
.home .category-list {
  padding: 60px 0;
}
.home .category-list--title span {
  color: #FFCB03;
}
.home-product-featured {
  padding: 60px 0;
}
@media (max-width: 575px) {
  .home-product-featured {
    padding: 40px 0;
  }
}
.home-product-featured__heading {
  row-gap: 32px;
}
@media (max-width: 1399px) {
  .home-product-featured__heading {
    row-gap: 16px;
  }
}
@media (max-width: 575px) {
  .home-product-featured__heading {
    row-gap: 8px;
  }
}
.home-product-featured__heading--title span {
  color: #FFCB03;
}
.home-product-featured__list {
  margin-right: -12px;
  padding: 50px 0 17px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .home-product-featured__list {
    padding: 36px 0 8px;
    margin-left: -12px;
  }
}
@media (min-width: 992px) {
  .home-product-featured__list {
    margin-left: -56px;
  }
}
@media (min-width: 1200px) {
  .home-product-featured__list {
    margin-right: calc((100vw - 1140px + 12px) / -2);
  }
}
@media (min-width: 1400px) {
  .home-product-featured__list {
    margin-right: calc((100vw - 1320px + 12px) / -2);
  }
}
.home-product-featured__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(0% + 56px);
  width: 100%;
  height: 100%;
  background-color: #FFEEA4;
  border-radius: 16px 0 0 16px;
}
.home-product-featured__list .swiper-home-product-featured {
  padding-left: 12px;
  padding-right: 12px;
  counter-reset: item-counter;
}
.home-product-featured__list .swiper-navigation {
  margin: 20px 0 20px 92px;
  margin-right: 12px;
}
@media (min-width: 1200px) {
  .home-product-featured__list .swiper-navigation {
    margin-right: calc((100vw - 1140px + 12px) / 2);
  }
}
@media (min-width: 1400px) {
  .home-product-featured__list .swiper-navigation {
    margin-right: calc((100vw - 1320px + 12px) / 2);
  }
}
.home-product-featured__list .product-item {
  width: 372px;
}
@media (max-width: 991px) {
  .home-product-featured__list .product-item {
    width: 348px;
  }
}
@media (max-width: 575px) {
  .home-product-featured__list .product-item {
    width: 316px;
  }
}
.home .about-wcu {
  padding: 60px 0px;
  background: #000609;
}
.home .about-wcu--heading {
  margin-bottom: 24px;
  text-align: center;
  color: #FFCB03;
}
.home .about-wcu__item {
  overflow: hidden;
  position: relative;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px -1px rgba(38, 38, 38, 0.0588235294), 0px 4px 6px -1px rgba(38, 38, 38, 0.1019607843);
}
.home .about-wcu__item__content {
  position: relative;
  z-index: 1;
}
.home .about-wcu__item__content--sub {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #64748B;
}
.home .about-wcu__item__content--heading {
  margin-bottom: 12px;
  color: #FFCB03;
}
.home .about-wcu__item__content--content {
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.home .about-wcu__item--img {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.home .about-wcu__item::before {
  z-index: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.home .about-wcu .swiper-about-wcu {
  overflow: hidden;
  padding-bottom: 24px;
}
.home .about-wcu .swiper-about-wcu .swiper-slide {
  display: flex;
  align-items: end;
}
.home .about-wcu .swiper-about-wcu .swiper-slide > * {
  height: unset;
}
.home-products-by-category {
  padding: 60px 0;
}
.home-products-by-category .category-products-section {
  margin-bottom: 32px;
}
.home-products-by-category .category-products-section .category-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.home-products-by-category .category-products-section .category-products-header a {
  color: #FFCB03;
}
.home-products-by-category .category-products-section .category-products-header .btn-enerpac {
  padding: 12px 20px;
}
@media (max-width: 575px) {
  .home-products-by-category .category-products-section {
    margin-bottom: 20px;
  }
  .home-products-by-category .category-products-section .category-products-header .btn-enerpac {
    margin-top: 0px;
    padding: 4px 8px;
    gap: 4px;
    font-size: 12px;
  }
  .home-products-by-category .category-products-section .category-products-header .btn-enerpac i {
    font-size: 16px;
  }
}
.home-products-by-category .category-products-section:last-child {
  margin-bottom: 0px;
}
.home-article {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent 0%, #FFEEA4 100%);
  background-size: cover;
}
@media (max-width: 575px) {
  .home-article {
    padding: 28px 0;
  }
}
.home-article h2 span {
  color: #FFCB03;
}
.home-article__wrapper > *:nth-child(2) {
  margin-top: 52px;
}
@media (max-width: 991px) {
  .home-article__wrapper > *:nth-child(2) {
    margin-top: 32px;
  }
}
.home-article__wrapper > *:nth-child(3) {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .home-article__wrapper > *:nth-child(3) {
    margin-top: 24px;
  }
}
@media (min-width: 992px) {
  .home-article .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 32px;
  }
}
.home-contact {
  padding: 60px;
  background-size: 3rem 3rem;
  position: relative;
}
@media (max-width: 991px) {
  .home-contact {
    padding: 40px;
  }
  .home-contact .contact__form__component {
    margin-top: 32px;
  }
}
@media (max-width: 575px) {
  .home-contact {
    padding: 24px 0px;
  }
}
.home-contact::after {
  z-index: 0;
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
}
.home-contact::after {
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(0deg, #FFF, transparent);
}
.home-contact__heading img {
  margin-top: 54px;
  width: 100%;
}
.home .contact__form__component {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px;
  border-radius: 6px;
  background: #ffffff;
  border: 2px solid #FBE091;
}
@media (max-width: 575px) {
  .home .contact__form__component {
    gap: unset;
  }
}
.home .contact__form__component__heading {
  display: flex;
  align-items: end;
  border-radius: 4px;
  padding: 11px 16px 16px;
  background: linear-gradient(93.06deg, #F5B800 0%, #FBE091 100%);
  box-shadow: 0px 4px 6px -1px rgba(174, 131, 0, 0.1019607843), 0px 2px 4px -2px rgba(174, 131, 0, 0.0509803922);
}
.home .contact__form__component__heading__content {
  max-width: 75%;
}
.home .contact__form__component__heading__content__title {
  text-transform: capitalize;
  margin-bottom: 4px;
  color: #454545;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.home .contact__form__component__heading__content__des {
  font-size: 12px;
  line-height: 18px;
}
.home .contact__form__component__heading__img {
  position: relative;
  width: 25%;
  height: 100%;
}
.home .contact__form__component__heading__img::before {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
}
.home .contact__form__component__heading__img img {
  position: absolute;
  bottom: -16px;
  right: -30%;
  width: 165%;
  max-width: unset;
}
.home .contact__form__component__elements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.home .contact__form__component__elements input, .home .contact__form__component__elements textarea {
  padding: 16px 0px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #6E737A;
}
.home .contact__form__component__elements input:last-child, .home .contact__form__component__elements textarea:last-child {
  margin-bottom: 32px;
}
.home .contact__form__component__elements p:not(:has(*)) {
  text-align: center;
  border-radius: 8px;
  padding: 12px 24px 7px;
  border: 1px dashed #FFCB03;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000609;
}
.home .contact__form__component__elements .btn-contact {
  display: block;
  border-radius: 4px;
  margin-top: 24px;
  background: #000609;
  border: none;
  color: white;
  font-weight: 700;
}
.home .contact__form__component .wpcf7-spinner {
  display: none !important;
}
.home .contact__form__component .wpcf7-response-output {
  display: none !important;
}
