@charset "utf-8";

/* 
 * content CSS Document
 *
 * 1) bbs layout
 *
 */

/* 서브비주얼 */
.area-subVisual {
  position: relative;
  padding-top: var(--hd-height);
  height: 600rem;
}

.area-subVisual:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

[data-sublayout="about"]:before {
  background: url("/images/content/subVisual_about.jpg") no-repeat center/cover;
}

[data-sublayout="machine"]:before {
  background: url("/images/content/subVisual_machine.jpg") no-repeat
    center/cover;
}

[data-sublayout="materials"]:before {
  background: url("/images/content/subVisual_materials.jpg") no-repeat
    center/cover;
}

[data-sublayout="inquiry"]:before {
  background: url("/images/content/subVisual_inquiry.jpg") no-repeat
    center/cover;
}

[data-sublayout="notice"]:before {
  background: url("/images/content/subVisual_notice.jpg") no-repeat center/cover;
}

.area-subVisual .inr-1600 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 100rem;
  height: 100%;
}

.area-subVisual .pageName h2 {
  margin-bottom: 35rem;
  font-size: var(--fs55);
  line-height: 1;
  color: #fff;
}

.area-subVisual .pageName p {
  font-size: var(--fs18);
  line-height: 1;
  color: #fff;
}

@media (max-width: 1024px) {
  .area-subVisual {
    height: 450rem;
  }

  .area-subVisual .inr-1600 {
    gap: 60rem;
  }

  .area-subVisual .pageName h2 {
    margin-bottom: 30rem;
  }
}

@media (max-width: 1024px) {
  .area-subVisual {
    height: 350rem;
  }

  .area-subVisual .inr-1600 {
    gap: 40rem;
  }

  .area-subVisual .pageName h2 {
    margin-bottom: 20rem;
  }
}

@media (max-width: 480px) {
  .area-subVisual {
    height: 280rem;
  }

  .area-subVisual .inr-1600 {
    gap: 30rem;
  }

  .area-subVisual .pageName h2 {
    margin-bottom: 15rem;
  }
}

/* lnb */
.area_lnb {
  --lnb-height: 70rem;
}

.area_lnb_inr {
  display: flex;
  height: 100%;
}

.area_lnb .btn_home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--lnb-height);
  aspect-ratio: 1/1;
  background: var(--color-point);
}

.area_lnb .btn_home img {
  width: 18rem;
}

.area_lnb .lnb-depth {
  position: relative;
  width: 280rem;
  height: 100%;
}

.area_lnb button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 30rem;
  width: 100%;
  height: 100%;
  background: #fff;
}

.area_lnb button span {
  display: block;
  font-size: var(--fs18);
  font-weight: 500;
  color: #111;
  line-height: 1;
}

.area_lnb button:after {
  content: "";
  display: block;
  width: 12rem;
  aspect-ratio: 1/1;
  background: url("/images/content/dropDown.svg") no-repeat center/contain;
  transition: 0.5s ease;
}

.area_lnb button.active:after {
  transform: rotate(180deg);
}

.area_lnb button[data-subTitle="depth02"]:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc((var(--lnb-height) - 40rem) / 2);
  width: 1px;
  height: 40rem;
  background: #ddd;
}

.area_lnb nav {
  display: none;
  position: absolute;
  left: 50%;
  top: var(--lnb-height);
  transform: translateX(-50%);
  width: calc(100% - 40rem);
  border-radius: 10rem;
  background: #fff;
  box-shadow: 10rem 10rem 30rem rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.area_lnb nav ul {
  display: flex;
  flex-direction: column;
  gap: 15rem;
  padding: 30rem;
}

.area_lnb nav a {
  display: block;
  font-size: var(--17);
  line-height: 1;
  color: #333;
  transition: 0.3s ease;
}

.area_lnb nav a.on {
  font-weight: 600;
  color: var(--color-point) !important;
}

@media (hover: hover) {
  .area_lnb nav a:hover {
    color: #aaa;
  }
}

@media (max-width: 1024px) {
  .area_lnb {
    --lnb-height: 65rem;
  }

  .area_lnb .lnb-depth {
    width: 250rem;
  }
}

@media (max-width: 768px) {
  .area_lnb {
    --lnb-height: 55rem;
  }

  .area_lnb .btn_home img {
    width: 15rem;
  }

  .area_lnb .lnb-depth {
    width: 200rem;
  }

  .area_lnb button {
    padding: 0 20rem;
  }

  .area_lnb button:after {
    width: 10rem;
  }

  .area_lnb button[data-subTitle="depth02"]:before {
    top: calc((var(--lnb-height) - 30rem) / 2);
    height: 30rem;
  }

  .area_lnb nav ul {
    padding: 25rem 20rem;
  }
}

@media (max-width: 480px) {
  .area_lnb {
    --lnb-height: 45rem;
  }

  .area_lnb .lnb-depth {
    width: 130rem;
  }

  .area_lnb button {
    padding: 0 15rem;
  }

  .area_lnb nav {
    width: 100%;
  }

  .area_lnb nav ul {
    gap: 12rem;
    padding: 20rem 15rem;
  }
}

/* sub common */
:root {
  --m40: 40rem;
  --m70: 70rem;

  --p140: 140rem;

  --radius20: 20rem;

  @media (max-width: 1024px) {
    --m70: 60rem;

    --p140: 110rem;
  }

  @media (max-width: 768px) {
    --m40: 35rem;
    --m70: 45rem;

    --p140: 80rem;
  }

  @media (max-width: 480px) {
    --m40: 30rem;
    --m70: 35rem;

    --p140: 60rem;

    --radius20: 10rem;
  }
}

#content {
  padding: var(--p140) 0;
}

.pageTit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  margin-bottom: var(--m70);
}

.pageTit::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
}

.pageTit span {
  display: block;
  font-size: var(--fs20);
  font-family: var(--font-eng);
  font-weight: 600;
  line-height: 1;
  color: var(--color-point);
}

.pageTit h2 {
  font-size: var(--fs45);
  color: #090909;
  line-height: 1.3;
}

.pageTit p {
  margin-top: 20rem;
  font-size: var(--fs20);
  color: #777;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1024px) {
  .pageTit {
    gap: 15rem;
  }

  .pageTit p {
    margin-top: 15rem;
  }
}

@media (max-width: 768px) {
  .pageTit p {
    margin-top: 10rem;
  }
}

@media (max-width: 480px) {
  .pageTit span {
    font-size: var(--fs18);
  }

  .pageTit h2 {
    font-size: var(--fs40);
  }

  .pageTit p {
    margin-top: 5rem;
  }
}

/* 회사소개 공통 */
[data-sub="about"] * {
  box-sizing: border-box;
  word-break: keep-all;
}

/* 회사소개 > 인사말 */
.greetings .pageTit {
  margin-bottom: var(--m40);
}

.greetings .slogan span {
  display: block;
  position: relative;
  margin: auto;
  width: 1px;
  height: 70rem;
  background: #ddd;
}

.greetings .slogan span:after {
  content: "";
  display: block;
  position: absolute;
  left: -4rem;
  bottom: 0;
  width: 9rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ddd;
}

.greetings .slogan em {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
  margin: 30rem 0 20rem;
  font-size: var(--fs30);
  font-weight: bold;
  line-height: 1;
  color: #111;
}

.greetings .slogan img {
  display: block;
  width: 15rem;
}

.greetings .slogan img:nth-child(2) {
  transform: rotate(180deg);
}

.greetings .slogan p {
  text-align: center;
  font-size: var(--fs20);
  color: #777;
}

.greetings .cnt {
  display: flex;
  align-items: center;
  margin-top: var(--m70);
}

.greetings .cnt .txt {
  padding: 10rem 80rem 10rem 0;
  width: 50%;
}

.greetings .cnt .txt p {
  font-size: var(--fs18);
  line-height: 1.6;
  color: #444;
}

.greetings .cnt .txt p + p {
  margin-top: 40rem;
}

.greetings .cnt .txt span {
  display: block;
  margin-top: 60rem;
  font-size: var(--fs18);
  line-height: 1;
  color: #aaa;
  text-align: end;
}

.greetings .cnt .img {
  width: 50%;
  border-radius: var(--radius20);
  overflow: hidden;
}

.greetings .cnt .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1520px) {
  .greetings .cnt .txt p > br {
    display: none;
  }
}

@media (max-width: 1024px) {
  .greetings .slogan span {
    height: 60rem;
  }

  .greetings .slogan em {
    margin: 25rem 0 15rem;
  }

  .greetings .cnt {
    align-items: normal;
  }

  .greetings .cnt .txt {
    padding: 10rem 50rem 10rem 0;
    width: 60%;
  }

  .greetings .cnt .txt p + p {
    margin-top: 30rem;
  }

  .greetings .cnt .txt span {
    margin-top: 40rem;
  }

  .greetings .cnt .img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .greetings .cnt {
    flex-direction: column-reverse;
  }

  .greetings .cnt .txt {
    margin: auto;
    padding: 0;
    width: 80%;
  }

  .greetings .cnt .img {
    margin: 0 auto 40rem;
    width: 60%;
  }
}

@media (max-width: 480px) {
  .greetings .slogan span {
    height: 40rem;
  }

  .greetings .slogan em {
    margin-top: 20rem;
  }

  .greetings .slogan img {
    width: 12rem;
  }

  .greetings .cnt .txt {
    width: 100%;
  }

  .greetings .cnt .txt p + p {
    margin-top: 25rem;
  }

  .greetings .cnt .txt span {
    margin-top: 25rem;
  }

  .greetings .cnt .img {
    margin-bottom: 30rem;
    width: 100%;
  }
}

/* 회사소개 > 연혁 */
.history {
  --year-width: 130rem;
  --btn-width: 70rem;
  overflow: hidden;
}

.history .hisWrap {
  position: relative;
}

.history .hisWrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(var(--year-width) / 2);
  width: 100%;
  height: 1px;
  background: #ddd;
}

.history .swiper {
  overflow: visible;
}

.history span.year {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: var(--year-width);
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: var(--fs30);
  font-weight: 600;
  font-family: var(--font-eng);
  color: #fff;
}

.history dl.cnt {
  margin-top: 40rem;
  padding: 40rem 30rem;
  background: #f5f5f5;
  font-size: var(--fs18);
}

.history dl.cnt dt {
  margin-bottom: 15rem;
  font-weight: bold;
  color: #111;
  line-height: 1;
}

.history dl.cnt dd {
  margin-top: 12rem;
  color: #666;
  line-height: 1.4;
}

.history dl.cnt dd {
  color: #666;
  line-height: 1.4;
}

.history dl.cnt dd + dt {
  margin-top: 40rem;
}

.history .swiper-slide span.year {
  background: #eee;
}

.history .swiper-slide-active span.year,
.history .swiper-slide-next span.year,
.history .swiper-slide-next + .swiper-slide span.year {
  background: linear-gradient(135deg, #004da1, #092d53);
}

.history .swiper-slide dl.cnt {
  opacity: 0.3;
}

.history .swiper-slide-active dl.cnt,
.history .swiper-slide-next dl.cnt,
.history .swiper-slide-next + .swiper-slide dl.cnt {
  opacity: 1;
}

.history .swiper-button {
  top: calc((var(--year-width) / 2) - (var(--btn-width) / 2));
  margin: 0;
  width: var(--btn-width);
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
}

.history .swiper-button:after {
  display: none;
}

.history .swiper-button-next {
  right: 0;
}

.history .swiper-button-prev {
  left: 0;
}

.history .swiper-button-disabled {
  opacity: 1;
}

.history .swiper-button img {
  display: block;
  width: 11rem;
}

.history .swiper-button-prev img {
  margin-left: -3rem;
}

.history .swiper-button-next img {
  margin-right: -3rem;
  transform: rotate(180deg);
}

.history .swiper-button-disabled img {
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .history .swiper-slide-next + .swiper-slide span.year {
    background: #eee;
  }

  .history .swiper-slide-next + .swiper-slide dl.cnt {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .history {
    --year-width: 100rem;
    --btn-width: 50rem;
  }

  .history dl.cnt {
    margin-top: 20rem;
    padding: 25rem 15rem;
  }

  .history dl.cnt dt {
    margin-bottom: 10rem;
  }

  .history dl.cnt dd {
    margin-top: 10rem;
  }

  .history dl.cnt dd + dt {
    margin-top: 25rem;
  }

  .history .swiper-button img {
    width: 9rem;
  }

  .history .swiper-slide-next span.year {
    background: #eee;
  }

  .history .swiper-slide-next dl.cnt {
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .history {
    --year-width: 90rem;
  }
}

/* 회사소개 > 오시는 길 */
.contact .root_daum_roughmap {
  width: 100% !important;
  height: 550rem;
  border-radius: 20rem;
  overflow: hidden;
}

.contact .wrap_map {
  height: 100% !important;
}

.contact .wrap_controllers,
.contact .root_daum_roughmap .cont,
.contact .map_border {
  display: none;
}

.contact .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50rem;
}

.contact .infoLogo {
  display: block;
  margin-left: 30rem;
  height: 60rem;
}

.contact .infoLogo img {
  display: block;
  height: 100%;
}

.contact .infoCnt {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 68.5%;
}

.contact .infoCnt li {
  text-align: center;
}

.contact .infoCnt li:nth-child(2) {
  border-left: 1px dashed #ccc;
  border-right: 1px dashed #ccc;
}

.contact .infoCnt em {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20rem;
  font-size: var(--fs16);
  font-weight: 600;
  font-family: var(--font-eng);
  color: #fff;
  width: 100rem;
  height: 36rem;
  border-radius: 18rem;
  background: linear-gradient(to right, #004da1, #092d53);
}

.contact .infoCnt p {
  font-size: var(--fs18);
  color: #444;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .contact .root_daum_roughmap {
    height: 400rem;
  }

  .contact .info {
    margin-top: 35rem;
  }

  .contact .infoLogo {
    margin-left: 20rem;
    height: 45rem;
  }

  .contact .infoCnt {
    width: 72%;
  }
}

@media (max-width: 768px) {
  .contact .infoLogo {
    margin-left: 0rem;
    height: 35rem;
  }
}

@media (max-width: 480px) {
  .contact .root_daum_roughmap {
    border-radius: 10rem;
  }

  .contact .infoLogo {
    display: none;
  }

  .contact .infoCnt {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .contact .infoCnt li:nth-child(1) {
    margin-bottom: 20rem;
    padding-bottom: 20rem;
    grid-column: 1 / 3;
    border-bottom: 1px dashed #ccc;
  }

  .contact .infoCnt li:nth-child(2) {
    border-left: none;
  }

  .contact .infoCnt em {
    margin-bottom: 12rem;
    width: 90rem;
    height: 32rem;
  }
}

/* Category Product */
[data-sub="product"] .product-list {
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
}

[data-sub="product"] .product-list .product-card {
  display: flex;
  gap: 24px;
  /* padding: 32px 64px 32px 32px; */
  /* background-color: #fff;
  box-shadow: 0 0 60rem rgba(0, 77, 161, 0.1);
  border-radius: 20px; */
}

[data-sub="product"] .product-list .product-card:not(:first-child) {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid #dddddd;
}

[data-sub="product"] .product-list .product-card .product-image {
  width: 100%;
  max-width: 380px;
  height: 380px;
  /* border-radius: 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-in-out;
  /* overflow: hidden; */
  /* border: 2px solid #d0e6ff; */
}

[data-sub="product"] .product-list .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

[data-sub="product"] .product-list .product-card .product-image .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #004da1, transparent, transparent);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

[data-sub="product"] .product-list .product-card .product-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .content-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-sub="product"] .product-list .product-card .product-content p.category {
  font-size: var(--fs18);
  font-weight: 700;
  color: var(--color-point);
  margin: 0;
}

[data-sub="product"] .product-list .product-card .product-content .title {
  font-size: var(--fs45);
  font-weight: 800;
  margin: 0;
}

[data-sub="product"] .product-list .product-card .product-content .desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs20);
  color: #777;
  margin: 0 0 16px 0;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .desc
  .sub_title {
  position: relative;
    display: flex;
    align-items: center;
    padding-left: 15rem;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .desc
  .sub_title::before {
  content: "";
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background-color: #004da1;
    margin-right: 10px;
    rotate: 45deg;
    left: 0;
    top: 6rem;
}

[data-sub="product"] .product-list .product-card .product-content .btn-group {
  display: flex;
  gap: 8px;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .btn-group
  .btn {
  padding: 21px 48px;
  text-decoration: none;
  font-size: var(--fs16);
  border-radius: 4px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .btn-group
  .btn.blue {
  background-color: #004da1;
  color: #fff;
  transition: 0.5s ease;
}

[data-sub="product"]
  .product-list
  .product-card
  .product-content
  .btn-group
  .btn.black {
  background-color: #000;
  color: #fff;
  transition: 0.5s ease;
}

[data-sub="product"] .btn-group .blue svg {
  display: block;
  width: 22rem;
  transition: 0.5s ease;
}

[data-sub="product"] .btn-group .blue svg .st0 {
  fill: #ddd;
  transition: 0.5s ease;
}

@media (max-width: 1200px) {
  [data-sub="product"] .product-list .product-card .product-content {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  [data-sub="product"] .product-list .product-card .product-image {
    max-width: none;
    height: auto;
  }

  [data-sub="product"] .product-list .product-card {
    padding: 0;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  [data-sub="product"] .product-list .product-card .product-content .btn-group {
    width: 100%;
    flex-direction: column;
  }
}

@keyframes noticeBtn {
  0% {
    opacity: 0;
    transform: translateX(-20rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: hover) {
  [data-sub="product"] .btn-group .blue:hover svg {
    animation: noticeBtn 0.5s ease both;
  }

  [data-sub="product"]
    .product-list
    .product-card
    .product-content
    .btn-group
    .neutral:hover {
    box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
  }

  /* [data-sub="product"] .product-list .product-card .product-image:hover {
    transform: scale(1.2);
  } */
}

/* Detail Products */
[data-sub="product"].details .product-details {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

[data-sub="product"].details .product-details .product-image {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 360px;
  /* border-radius: 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  /* overflow: hidden; */
  /* border: 2px solid #d0e6ff; */
}

[data-sub="product"].details .product-details .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  /* transition: all 0.3s ease-in-out; */
}

[data-sub="product"].details .product-details .product-image .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #004da1, transparent, transparent);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

/* TODO sticky */
[data-sub="product"].details .product-details .product-content {
  position: sticky;
  top: 100px;
  display: flex;
  gap: 48px;
  width: 100%;
}

[data-sub="product"].details .product-details .product-content .content-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 360px;
}

[data-sub="product"].details .product-details .product-content p.category {
  font-size: var(--fs18);
  font-weight: 700;
  color: var(--color-point);
  margin: 0;
}

[data-sub="product"].details .product-details .product-content .title {
  font-size: var(--fs45);
  font-weight: 800;
  margin: 0;
}

[data-sub="product"].details .product-details .product-content .desc {
  position: relative;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs20);
  color: #777;
  margin-block: 24px;
  /* padding-block: 32px; */
  width: 100%;
}

[data-sub="product"].details .product-details .product-content .desc::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  border: 1px dashed #ddd;
}

/* [data-sub="product"].details .product-details .product-content .desc::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  border: 1px dashed #ddd;
} */

[data-sub="product"].details
  .product-details
  .product-content
  .sub_title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  border: 1px dashed #ddd;
}

[data-sub="product"].details
  .product-details
  .product-content
  .desc
  .sub_title {
      position: relative;
    display: flex;
    align-items: center;
    padding-block: 32px;
    padding-left: 15rem;
    position: relative;
}

[data-sub="product"].details
  .product-details
  .product-content
  .desc
  .sub_title::before {
      content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #004da1;
    margin-right: 10px;
    rotate: 45deg;
    position: absolute;
    left: 0;
    top: 40rem;
}

[data-sub="product"].details
  .product-details
  .product-content
  .desc
  ul
  li:not(:last-child) {
  margin-bottom: 8px;
}

[data-sub="product"].details
  .product-details
  .product-content
  .desc
  ul
  li::before {
  content: "•";
  margin-right: 8px;
}

[data-sub="product"].details .product-details .product-content .btn-group {
  display: flex;
  gap: 12px;
}

[data-sub="product"].details .product-details .product-content .btn-group .btn {
  padding: 21px 56px;
  text-decoration: none;
  font-size: var(--fs16);
  border-radius: 4px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-sub="product"].details
  .product-details
  .product-content
  .btn-group
  .btn.blue {
  background-color: #004da1;
  color: #fff;
  transition: 0.5s ease;
}

[data-sub="product"].details
  .product-details
  .product-content
  .btn-group
  .btn.black {
  background-color: #000;
  color: #fff;
  transition: 0.5s ease;
}

.wrap-spec {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wrap-spec .title-spec {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wrap-spec .title-spec::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ececec;
  margin-top: 24px;
}

.wrap-spec .title-spec p {
  font-size: var(--fs22);
  color: var(--color-point);
  font-weight: 600;
}

.wrap-spec .title-spec span {
  font-size: 12px;
  color: #777;
}

.table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #afc9e7;
}

.spec-table {
  width: 100%;
  font-size: 15px;
}

.spec-table td {
  padding: 12px 14px;
}

.spec-table tr:not(:last-child) {
  border-bottom: 1px solid #afc9e7;
}

.spec-table tr td:first-child {
  background: #e7f4ff;
  width: 25%;
  font-weight: 500;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  [data-sub="product"].details .product-details {
    flex-direction: column;
    gap: 24px;
  }

  [data-sub="product"].details
    .product-details
    .product-content
    .content-group {
    min-height: unset;
    padding-block: 24px;
  }
}

@media(max-width: 767px){
  [data-sub="product"].details .product-details .product-content{flex-direction: column; gap: 10rem;}
  [data-sub="product"].details .product-details .product-image{height: auto;}
  [data-sub="product"].details .product-details .wrap-spec img { width: 100%; height: auto; }
}

@media (max-width: 480px) {
}

@media (hover: hover) {
  .spec-table tr:hover {
    background: #d3ebff;
  }

  [data-sub="product"].details
    .product-details
    .product-content
    .btn-group
    .neutral:hover {
    box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
  }

  /* [data-sub="product"].details .product-details .product-image:hover {
    transform: scale(1.2);
  } */
}

/* Materials Category */

[data-sub="materials"] .materials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-sub="materials"] .materials-list .product-card {
  display: flex;
  gap: 24px;
  /* padding: 32px 64px 32px 32px; */
  /* background-color: #fff;
  box-shadow: 0 0 60rem rgba(0, 77, 161, 0.1);
  border-radius: 20px; */
}

[data-sub="materials"] .materials-list .product-card:not(:first-child) {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid #dddddd;
}

[data-sub="materials"] .materials-list .product-card .product-image {
  width: 100%;
  max-width: 390px;
  height: 390px;
  /* border-radius: 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* overflow: hidden;
  border: 2px solid #d0e6ff; */
  transition: all 0.3s ease-in-out;
}

[data-sub="materials"] .materials-list .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-image
  .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #004da1, transparent, transparent);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

[data-sub="materials"] .materials-list .product-card .product-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .content-group {
  display: flex;
  flex-direction: column;
  gap: 9.6px;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  p.category {
  font-size: var(--fs18);
  font-weight: 700;
  color: var(--color-point);
  margin: 0;
}

[data-sub="materials"] .materials-list .product-card .product-content .title {
  font-size: var(--fs45);
  font-weight: 800;
  margin: 0;
}

[data-sub="materials"] .materials-list .product-card .product-content .desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs20);
  color: #777;
  margin: 0 0 16px 0;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .desc
  .sub_title {
  position: relative;
  display: flex;
  align-items: center;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .desc
  .sub_title::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #004da1;
  margin-right: 10px;
  rotate: 45deg;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .btn-group {
  display: flex;
  gap: 8px;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .btn-group
  .btn {
  padding: 21px 48px;
  text-decoration: none;
  font-size: var(--fs16);
  border-radius: 4px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .btn-group
  .btn.blue {
  background-color: #004da1;
  color: #fff;
  transition: 0.5s ease;
}

[data-sub="materials"]
  .materials-list
  .product-card
  .product-content
  .btn-group
  .btn.black {
  background-color: #000;
  color: #fff;
  transition: 0.5s ease;
}

[data-sub="materials"] .materials-list .btn-group .blue svg {
  display: block;
  width: 22rem;
  transition: 0.5s ease;
}

[data-sub="materials"] .materials-list .btn-group .blue svg .st0 {
  fill: #ddd;
  transition: 0.5s ease;
}

@media (max-width: 1200px) {
  [data-sub="materials"] .materials-list .product-card .product-content {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  [data-sub="materials"] .materials-list .product-card .product-image {
    max-width: none;
  }

  [data-sub="materials"] .materials-list .product-card {
    padding: 32px;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  [data-sub="materials"]
    .materials-list
    .product-card
    .product-content
    .btn-group {
    width: 100%;
    flex-direction: column;
  }
}

@keyframes noticeBtn {
  0% {
    opacity: 0;
    transform: translateX(-20rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: hover) {
  [data-sub="materials"] .materials-list .btn-group .blue:hover svg {
    animation: noticeBtn 0.5s ease both;
  }

  [data-sub="materials"]
    .materials-list
    .product-card
    .product-content
    .btn-group
    .neutral:hover {
    box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
  }

  /* [data-sub="materials"] .materials-list .product-card .product-image:hover {
    transform: scale(1.2);
  } */
}

/* Inquiry */
[data-sub="customer"] .inquiry {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

[data-sub="customer"] .inquiry .btn-group {
  display: flex;
  gap: 16px;
}

[data-sub="customer"] .inquiry .btn-group .btn {
  padding: 21px 38px;
  text-decoration: none;
  font-size: var(--fs16);
  border-radius: 99px;
  font-weight: bold;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-sub="customer"] .inquiry .btn-group .btn.blue {
  background: #004da1;
  color: #fff;
}

[data-sub="customer"] .inquiry .btn-group .btn.neutral {
  color: #004da1;
  background: #fff;
  box-shadow: 0 0 40rem rgba(0, 77, 161, 0.2);
  transition: 0.5s ease;
}

/* Notice */
[data-sub="customer"] .notice {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

[data-sub="customer"] .notice .btn-group {
  display: flex;
  gap: 16px;
}

[data-sub="customer"] .notice .btn-group .btn {
  padding: 21px 38px;
  text-decoration: none;
  font-size: var(--fs16);
  border-radius: 99px;
  font-weight: bold;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-sub="customer"] .notice .btn-group .btn.blue {
  background: #004da1;
  color: #fff;
}

[data-sub="customer"] .notice .btn-group .btn.neutral {
  color: #004da1;
  background: #fff;
  box-shadow: 0 0 40rem rgba(0, 77, 161, 0.2);
  transition: 0.5s ease;
}
