@layer reset, base, page, custom;
:root {
  --l-H-hero: 580px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #3a3a3d;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #8b8bac;
  --c-primary: #EA3F9A;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.product-hero {
  position: relative;
  min-height: 420px;
  padding: calc(var(--l-header, 80px) + 30px) 24px 40px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--product-hero-bg) no-repeat center/cover;
  transform: scale(1.5);
  transform-origin: center center;
  transition: transform 1.6s cubic-bezier(0.45, 0, 0.25, 1);
  z-index: 0;
}
.product-hero.bg-animate::before {
  transform: scale(1);
}

.product-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 82, 0.45), rgba(9, 28, 74, 0.58));
  z-index: 1;
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
}

.product-hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-hero-logo {
  width: min(100%, 460px);
}

.product-hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero-topic {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: clamp(35px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50px);
}
@media only screen and (max-width: 768px) {
  .product-hero-topic {
    transform: translateY(-25px);
  }
}

.product-hero-topic .line {
  width: clamp(80px, 9vw, 180px);
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
}

.product-hero-topic .text {
  white-space: nowrap;
}

.product-hero-en {
  margin: 0;
  color: #fff;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: 0.06em;
  transform: translateY(-50px);
}
@media only screen and (max-width: 768px) {
  .product-hero-en {
    transform: translateY(-25px);
  }
}

.product-sections {
  position: relative;
  padding: 25px 0;
}

.product-sections::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 500px;
  inset: 0 0 0 auto;
  background: url(../images/bg_img_pg_top.avif) no-repeat bottom center/cover;
}

.product-sections::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg_img_pd.avif) no-repeat center center/contain;
}

.product-group {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
  padding: 15px 0 50px;
  border-radius: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 54px;
}

.product-head-card {
  grid-column: span 2;
  min-height: 232px;
  background: #ffffff;
  border: 1px solid #eceef6;
  border-radius: 6px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(51, 51, 51, 0.1);
}

.product-head-title {
  margin: 0;
  width: 100%;
  line-height: 1.12;
  padding-bottom: 6px;
}

.product-head-card .sec-title-caption {
  padding-bottom: 12px;
}

.product-head-title .sec-title-text {
  font-size: 39pt;
}

.product-head-en {
  margin: 24px 0 0;
  font-size: clamp(20px, 2.2vw, 40px);
  line-height: 1.2;
  color: #6B6E8C;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.product-head-en::before {
  content: "";
  width: 65px;
  height: 65px;
  background: url(../images/ic_eletric.png) no-repeat center center/39px 39px;
  border-radius: 50%;
  border: 2px solid #C2E2FF;
}

.product-item-card {
  border: 0;
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 0;
  min-height: 232px;
  height: 232px;
  display: block;
  position: relative;
  overflow: visible;
  cursor: pointer;
}
.product-item-card:hover .pd-title {
  opacity: 0.75;
}

.product-item-card .pd-thumb {
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  height: 100%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(51, 51, 51, 0.1);
}

.product-item-card .pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-item-card .pd-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 3px;
  border: 1px solid rgba(20, 40, 95, 0.18);
  color: #4e5d7a;
  font-size: 13px;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-top: 5px;
  display: none;
}

.product-item-card .pd-title {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  font-size: 15px;
  color: rgb(11, 31, 76);
  opacity: 0.15;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
  transition: opacity 300ms;
}

.product-more-wrap {
  padding-top: 70px;
  text-align: center;
}

.product-empty {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #5f6573;
  text-align: center;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 20px;
  }
  .product-head-card {
    grid-column: span 2;
    min-height: 220px;
  }
  .product-item-card {
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .product-item-card .pd-thumb {
    aspect-ratio: 16/12;
    height: auto;
  }
  .product-item-card .pd-title {
    position: static;
    font-size: 15px;
    color: #0b1f4c;
    font-weight: 700;
    opacity: 1;
  }
  .product-item-card .pd-meta {
    display: inline-flex;
  }
}
@media (max-width: 551px) {
  .product-hero {
    min-height: 300px;
    padding-top: calc(var(--l-header--mobile, 56px) + 22px);
    border-radius: 0 0 20px 20px;
  }
  .product-hero-heading {
    gap: 14px;
  }
  .product-hero-logo {
    width: min(100%, 300px);
  }
  .product-hero-topic {
    gap: 10px;
    font-size: clamp(24px, 9vw, 36px);
  }
  .product-hero-topic .line {
    width: clamp(44px, 14vw, 70px);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-head-card {
    grid-column: auto;
    min-height: 180px;
    padding: 20px;
  }
  .product-head-title .sec-title-text {
    font-size: clamp(36px, 12vw, 58px);
  }
  .product-item-card .pd-title {
    font-size: 20px;
  }
}

/*# sourceMappingURL=product.css.map */
