@charset "UTF-8";
/* footer text color */
.pro_tit {
  font-size: 2.125rem;
  position: relative;
  padding-left: 56px;
  text-align: left;
}
.pro_tit::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background-image: url(/src/assets/img/tit_deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-53%);
}

.pro_txt {
  width: 100%;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 400;
  word-break: keep-all;
}

.blue {
  color: #2B63CB;
  font-weight: 500;
}

.product_bn {
  background-image: url("/src/assets/img/workaid_bg.jpg");
  background-position: center;
  background-size: cover;
}
.product_bn .content_area {
  padding: 0;
  height: 500px;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product_bn .visual_mockup {
  width: 90%;
  max-width: 440px;
}
.product_bn .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}
.product_bn .info .st_txt {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 1rem;
}
.product_bn .info .nd_txt {
  margin-top: 2rem;
}
.product_bn .info .nd_txt li {
  position: relative;
  padding-left: 18px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.product_bn .info .nd_txt li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 13px;
}

.product_bn.envais {
  background-image: url("/src/assets/img/envais_bg.jpg");
}
.product_bn.envais .info img {
  width: 78%;
}

.moving01 {
  animation-name: floating01;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating01 {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateY(15px);
  }
  to {
    transform: translateY(0px);
  }
}
.product_descriptions {
  margin-bottom: 80px;
}

.descriptions_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.descriptions_inner .workaid_logo {
  width: 300px;
  margin: 3rem auto 1rem;
}

.workaid_mockup {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 2rem;
}

.product_visul_field {
  width: 100%;
  height: 100%;
  background-image: url(/src/assets/img/product_visul_bg.png);
  background-size: cover;
  position: relative;
  z-index: -999;
}
.product_visul_field::after {
  position: absolute;
  content: "";
  width: 48vw;
  max-width: 740px;
  min-width: 600px;
  aspect-ratio: 1/1.1;
  /* height: 80vh; */
  right: -3vw;
  bottom: 0;
  background-image: url(/src/assets/img/workaid_img01.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.descriptions_inner {
  padding-bottom: 2.5rem;
}
.descriptions_inner .txt_area {
  max-width: 600px;
  font-weight: 400;
  padding: 10px;
}
.descriptions_inner .txt_list {
  line-height: 180%;
}
.descriptions_inner .txt_list li {
  margin-bottom: 1rem;
  word-break: keep-all;
}
.descriptions_inner .txt_list li.tit {
  font-size: 1.5rem;
  font-weight: 600;
}
.descriptions_inner .tag_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.descriptions_inner .tag_box .tag_item {
  background-color: #2C73F8;
  color: #fff;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin: 3px;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 400;
}

.descriptions_inner.row {
  flex-direction: row;
  gap: 3rem;
}

.mobile_deco_img {
  display: none;
  opacity: 0;
  width: 0;
}

.process_img_lg {
  width: 100%;
  margin-top: 3rem;
}

@media screen and (max-width: 1024px) {
  .content_area {
    padding: 80px 20px;
  }
  .product_visul_field::after {
    content: "";
    width: 52vw;
    max-width: 460px;
    min-width: 440px;
    aspect-ratio: 1/1.1;
    /* height: 80vh; */
    right: -19vw;
    top: 0;
  }
}
@media screen and (max-width: 700px) {
  .descriptions_inner .workaid_logo {
    width: 200px;
  }
  .content_area {
    padding: 60px 10px;
  }
  .product_visul_field::after {
    opacity: 0;
  }
  .product_descriptions {
    margin-bottom: 0;
  }
  .descriptions_inner .txt_area {
    max-width: 100%;
    text-align: center;
  }
  .descriptions_inner .tag_box {
    justify-content: center;
  }
  .descriptions_inner .txt_list li {
    font-size: 0.875rem;
  }
  .descriptions_inner .txt_list {
    line-height: 140%;
  }
  .visul_img {
    width: 100%;
    min-width: 300px;
    opacity: 1;
  }
  .visul_img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mobile_deco_img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    width: 100%;
    margin-top: 2rem;
  }
  .mobile_deco_img img {
    width: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.gradient_bg {
  width: 100%;
  height: auto;
  background-image: url(/src/assets/img/deco_bg_01.png);
  background-size: cover;
  position: relative;
}
.gradient_bg::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 160px;
  background-image: url(/src/assets/img/bg_deco_002.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 10vw;
  left: 5vw;
}

.feature_inner {
  padding-top: 3rem;
  position: relative;
}
.feature_inner::after {
  content: "";
  position: absolute;
  width: 30vw;
  aspect-ratio: 1/1;
  background-image: url(/src/assets/img/bg_deco_001.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: -7vw;
  right: -13vw;
}
.feature_inner .pro_tit {
  margin-bottom: 1.25rem;
}

.accordion_list {
  z-index: 10;
  position: relative;
}
.accordion_list .accodion_card {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.accordion_list .accodion_card .accodion_content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion_list .accodion_card.active {
  box-shadow: 0 10px 38px 0 rgba(41, 38, 48, 0.1);
}
.accordion_list .accodion_card.active .accodion_content {
  display: flex;
  opacity: 1;
  height: auto;
}
.accordion_list .accodion_content {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion_list .accodion_content ul {
  padding: 1.25rem 1.5rem 0;
}
.accordion_list .accodion_header {
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 4px 1rem;
  border-bottom: 1px solid #e5e9f5;
  cursor: pointer;
}
.accordion_list .accodion_header .tit {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.125rem;
}
.accordion_list .accodion_header .icon {
  margin-right: 10px;
}
.accordion_list .accodion_header .icon i {
  transition: transform 0.3s ease;
}
.accordion_list .accodion_header .tit_img {
  width: 56px;
  aspect-ratio: 1/1;
  margin-right: 1rem;
}
.accordion_list .accodion_img {
  margin-left: 20px;
  margin-bottom: 20px;
  max-height: 480px;
}

.accodion_card.active .accodion_header .icon i {
  transform: rotate(180deg);
}

li.description {
  position: relative;
  padding-left: 16px;
  margin-bottom: 0.5rem;
  line-height: 160%;
  font-weight: 400;
  text-align: left;
}
li.description::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #555;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  top: 10px;
}

.integration_con {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 20px;
}

.in_con_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #F1F6FA;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: left;
}

.dia_tit {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  line-height: 120%;
  font-size: 1.0625rem;
  font-weight: 500;
}
.dia_tit::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #555;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  top: calc(50% - 3px);
}

.dia_txt {
  padding-left: 1rem;
  font-weight: 400;
}

.dia_img {
  width: 100%;
}

.contact_field {
  position: relative;
}
.contact_field::after {
  content: "";
  position: absolute;
  width: 30vw;
  aspect-ratio: 1/1;
  background-image: url(/src/assets/img/bg_deco_001.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: -7vw;
  left: -13vw;
}
.contact_field .contact_area {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px 140px;
}
.contact_field .contact_box {
  position: relative;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 10px 38px 0 rgba(41, 38, 48, 0.1);
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact_field .contact_box .leftbox {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_field .contact_box .rightbox {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact_field .contact_box .rightbox .contact_img {
  padding: 10px 20px;
}
.contact_field .contact_box .rightbox .contact_img img {
  width: 100%;
}
.contact_field .contact_box .rightbox .contact_btn {
  display: flex;
  width: 200px;
  height: 62px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  border: 2px solid var(--Gradient-line-icon, #AABFF8);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  color: #3176F8;
  transition: all 0.2s ease;
  position: absolute;
  right: 28px;
  bottom: 60px;
}
.contact_field .contact_box .rightbox .contact_btn:hover {
  background: #3176F8;
  border-color: #3176F8;
  color: #fff;
}

.contact_btn_icon {
  transition: all 0.2s ease;
}

.contact_btn:hover .contact_btn_icon {
  content: url(/src/assets/img/contact_005.svg);
}

.function_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}
.function_list .item {
  text-align: left;
}
.function_list .name {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 4px;
  font-size: 1.25rem;
}
.function_list .name img {
  margin-right: 8px;
}
.function_list .txt {
  padding-left: 4px;
  font-weight: 400;
}

.tab_container {
  width: 100%;
  height: 62px;
  background-color: #fff;
}
.tab_container.fixed {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  z-index: 100;
  box-shadow: 0 2px 28px rgba(66, 65, 67, 0.1);
}
.tab_container .tab_menubar {
  max-width: 1400px;
  width: 100%;
  height: 62px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  border-bottom: 1px solid #f2f2f2;
  /* visible active state */
}
.tab_container .tab_menubar .tab_item {
  width: -moz-max-content;
  width: max-content;
  padding: 0 30px;
  height: 62px;
  background-color: transparent; /* let menubar bg show */
  display: flex;
  align-items: center;
  color: #333;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
  position: relative;
  font-weight: 500;
}
.tab_container .tab_menubar .tab_item:hover {
  color: #2b63cb;
}
.tab_container .tab_menubar .tab_item.active {
  color: #2b63cb;
}
.tab_container .tab_menubar .tab_item.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2b63cb;
}

.EnvAIs_logo {
  width: 300px;
  margin: 3rem auto 2rem;
}

.EnvAIs_mockup {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 2rem;
}

.content_area b {
  font-weight: 500;
}

.solution_visul {
  width: 100%;
  height: 100%;
  background-image: url(/src/assets/img/product_visul_bg2.png);
  background-size: cover;
  position: relative;
}

.envais_mockup {
  width: 100%;
  max-width: 650px;
  margin-left: -90px;
}

.descriptions_inner.row .txt_area {
  margin: auto;
}
.descriptions_inner.row .txt_area li {
  font-size: 0.9375rem;
  font-weight: 400;
}
.descriptions_inner.row .txt_area li.tit {
  font-size: 1.5rem;
  font-weight: 600;
}
.descriptions_inner.row .tag_box .tag_item {
  background-color: #4774BF;
}

.s_configuration {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
.s_configuration .shw {
  display: flex;
  flex-direction: row;
}
.s_configuration .shw .sw, .s_configuration .shw .hw {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.s_configuration .content_icon {
  width: 160px;
  height: 160px;
  border-radius: 100px;
  background-color: #F3F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.s_configuration .content_icon img {
  width: 78px;
  height: 78px;
}
.s_configuration .icontit {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2b63cb;
  margin-bottom: 6px;
}
.s_configuration .txt {
  font-size: 1rem;
  text-align: center;
  word-break: keep-all;
  max-width: 440px;
}
.s_configuration .structure_con {
  width: 100%;
  padding: 6rem 20px;
}
.s_configuration .structure_con img {
  width: 100%;
}

.technique_bg {
  width: 100%;
  height: auto;
  background-image: url(/src/assets/img/technique_bg.png);
  position: relative;
  z-index: 0;
  background-position: top;
  background-repeat: no-repeat;
}
.technique_bg::after {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1/2;
  background-image: url(/src/assets/img/deco_bg_03.png);
  background-size: contain;
  right: -40px;
  top: 100px;
  opacity: 0.8;
  z-index: 0; /* behind normal content in this stacking context */
  mix-blend-mode: multiply;
}

.prd_card_con {
  padding: 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1; /* ensure prd cards are above the technique_bg pseudo */
}
.prd_card_con .prd_card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2.5rem;
  padding-left: 140px;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #E3E3EB;
  position: relative;
}
.prd_card_con .prd_card::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 20px;
  width: 100px;
  height: 53px;
  background-image: url(/src/assets/img/prd_card_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
.prd_card_con .prd_card.fir::after {
  background-image: url(/src/assets/img/prd_card_01.png);
}
.prd_card_con .prd_card.sec::after {
  background-image: url(/src/assets/img/prd_card_02.png);
}
.prd_card_con .prd_card.thi::after {
  background-image: url(/src/assets/img/prd_card_03.png);
}
.prd_card_con .prd_card .prd_img {
  max-width: 360px;
  width: 100%;
}
.prd_card_con .prd_card .left_txt {
  word-break: keep-all;
}
.prd_card_con .prd_card .left_txt .tit {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2b63cb;
  margin-bottom: 10px;
}
.prd_card_con .prd_card .left_txt .desc {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 10px;
}
.prd_card_con .prd_card .left_txt .desc:last-child {
  margin-bottom: 0;
}
.prd_card_con .prd_card .left_txt .desc::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 1.5px;
  background: var(--blue-400, #83ABE8);
}

.prd_compare_con {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 40px;
  min-width: 356px;
}
.prd_compare_con .com_block {
  background-color: #fff;
  border-radius: 1.875rem;
  border: 2px solid #E3E3EB;
  position: relative;
}
.prd_compare_con .com_block:last-child::after {
  content: "(기존 기술 대비)";
  position: absolute;
  bottom: -40px;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  color: #526786;
}
.prd_compare_con .com_block .block_item {
  text-align: center;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid #DBE7F2;
}
.prd_compare_con .com_block .block_item:last-child {
  border: 0;
}
.prd_compare_con .com_block .block_item p {
  font-weight: 400;
  line-height: 140%;
}
.prd_compare_con .com_block .block_item.tit, .prd_compare_con .com_block .block_item.tit2 {
  background-color: #E3E3EB;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 100%;
  border-top-left-radius: 1.65rem;
  border-top-right-radius: 1.65rem;
}
.prd_compare_con .com_block.mainBlock {
  border: 3px solid #2C73F8;
  box-sizing: border-box;
  box-shadow: 0 10px 28px 0 rgba(91, 76, 128, 0.18);
  font-size: 1.125rem;
}
.prd_compare_con .com_block.mainBlock .block_item {
  padding: 1.5rem 3rem;
}
.prd_compare_con .com_block.mainBlock .tit2 {
  font-size: 1.25rem;
  background: var(--Gradient-blue, linear-gradient(133deg, #6D8DF8 12.61%, #4463C9 99.68%));
  color: #fff;
}

.expected_bg {
  width: 100%;
  height: auto;
  background-image: url(/src/assets/img/expected_bg.png);
  background-position: top;
  position: relative;
  z-index: 0; /* establish stacking context */
}

.expected_con {
  margin-top: 3.5rem;
  margin-bottom: 0rem;
  position: relative;
}
.expected_con::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -160px;
  width: 300px;
  height: 220px;
  background-image: url(/src/assets/img/static_deco.png);
  background-size: cover;
  z-index: 0;
}
.expected_con .block_item {
  width: 100%;
  border-radius: 1.875rem;
  padding: 3.375rem;
  background-color: #fff;
  border: 1px solid #E3E3EB;
  z-index: 1;
  position: relative;
}
.expected_con .block_item:first-child {
  margin-bottom: 2.875rem;
}
.expected_con .block_tit {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 58px;
  line-height: 40px;
  text-align: left;
}
.expected_con .block_tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-image: url(/src/assets/img/block_tit_icon.png);
  background-size: cover;
}
.expected_con .block_txt {
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 0;
  text-align: left;
}
.expected_con .quan_graph {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.expected_con .static {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.expected_con .static_con {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.expected_con .static_con .exp_list {
  font-weight: 400;
  margin-left: 1rem;
}
.expected_con .static_con .exp_list li {
  position: relative;
  padding: 8px 0px 8px 20px;
  text-align: left;
}
.expected_con .static_con .exp_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 1.5px;
  background: var(--blue-400, #83ABE8);
}
.expected_con .exp_img {
  max-width: 320px;
  padding: 0 10px;
}
.expected_con .exp_img img {
  width: 100%;
}

.technical_tit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 6rem;
  z-index: 1;
  position: relative;
}
.technical_tit .tit {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.technical_tit .desc {
  text-align: center;
  word-break: keep-all;
  max-width: 600px;
  line-height: 160%;
  font-weight: 400;
  font-size: 1.125rem;
}

.performance_con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
}
.performance_con::after {
  content: "";
  position: absolute;
  right: -400px;
  top: -300px;
  width: 646px;
  height: 380px;
  background-image: url(/src/assets/img/performance_deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.8;
}
.performance_con .technical_box {
  flex: 1;
  background-color: #fff;
  border-radius: 1.875rem;
  border: 1px solid #E3E3EB;
  position: relative;
  min-height: 400px;
  padding-bottom: 1.5rem;
  z-index: 1;
  position: relative;
}
.performance_con .technical_box .deco_tit {
  position: absolute;
  left: -10px;
  top: -16px;
  width: 420px;
  aspect-ratio: 5.3/1;
  background-image: url(/src/assets/img/deco_tit_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 1.2%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  white-space: nowrap;
  min-width: 280px;
}
.performance_con .technical_box .deco_tit img {
  width: 46px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}
.performance_con .technical_history {
  margin-top: 100px;
  padding: 0 40px;
}
.performance_con .technical_history li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 38px;
  font-weight: 400;
}
.performance_con .technical_history li .tit {
  font-size: 1.125rem;
  line-height: 120%;
  white-space: nowrap;
  text-align: left;
}
.performance_con .technical_history li .disc {
  font-size: 0.875rem;
  color: #526786;
  text-align: left;
}
.performance_con .technical_history li::after {
  position: absolute;
  left: 0;
  top: -4px;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(/src/assets/img/technical_circle.png);
  background-position: center;
}
.performance_con .technical_history li::before {
  position: absolute;
  left: 15px;
  top: 15px;
  content: "";
  width: 1px;
  height: 84px;
  background-color: #E7EBF2;
}
.performance_con .technical_history li:last-child::before {
  height: 0;
}

.rnd_history_con {
  display: flex;
  flex-direction: column;
  align-items: center;
  word-break: keep-all;
  text-align: center;
  font-weight: 400;
  line-height: 180%;
}
.rnd_history_con .y {
  font-size: clamp(14px, 2.2857142857vw, 16px);
  color: #526786;
  margin-bottom: 14px;
}
.rnd_history_con .t {
  font-size: clamp(18px, 2.2857142857vw, 22px);
  color: #333;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 28px;
  font-weight: 500;
}
.rnd_history_con .p {
  font-size: clamp(16px, 2.2857142857vw, 19px);
  color: #2C73F8;
}
.rnd_history_con .rnd_certificate {
  width: clamp(100px, 80%, 240px);
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  margin: 1.5rem 0;
}
.rnd_history_con .d {
  font-size: clamp(12px, 2vw, 14px);
  color: #526786;
  margin-bottom: 14px;
}

section.envais_product {
  position: relative;
}
section.envais_product::after {
  position: absolute;
  content: "";
  width: clamp(200px, 95%, 1800px);
  aspect-ratio: 2/1;
  background-image: url(/src/assets/img/section_deco_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  z-index: -1;
}
section.envais_product .content-area {
  z-index: 1;
}

.tec_btnbox {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
  gap: 10px;
  min-height: 300px;
}

.contact_info_btn,
.contact_us_btn {
  padding: 0 0.5rem;
  border-radius: 30px;
  min-width: 220px;
  background-color: rgba(255, 255, 255, 0.9019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.contact_info_btn .btn_title,
.contact_us_btn .btn_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 56px;
  gap: 8px;
  width: 100%;
}
.contact_info_btn .btn_title i,
.contact_us_btn .btn_title i {
  font-size: 14px;
}

.contact_info_btn {
  flex-direction: column;
  border: 1px solid #526786;
  color: #526786;
  transition: all 0.3s ease;
}
.contact_info_btn .btn_title {
  cursor: pointer;
}
.contact_info_btn .btn_title i {
  transition: all 0.2s ease;
}
.contact_info_btn .infoBox {
  width: 200px;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.contact_info_btn .info_icon {
  width: 42px;
  height: 43px;
  margin-top: 6px;
  transition: all 0.2s ease;
}
.contact_info_btn .infoTxtBox {
  transition: all 0.3s ease;
}
.contact_info_btn .infoTxtBox li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 400;
  color: #526786;
}
.contact_info_btn .infoTxtBox li a {
  font-weight: 500;
  color: #526786;
}
.contact_info_btn .infoTxtBox li b {
  font-size: clamp(15px, 2.2857142857vw, 16px);
  font-weight: 500;
  color: #222;
  margin-bottom: 4px;
}
.contact_info_btn .infoTxtBox li span.dividing {
  display: inline-block;
  margin: auto 6px;
  width: 1px;
  height: 16px;
  background-color: #ddd;
}
.contact_info_btn.open {
  border: 1px solid var(--Gradient-line-icon, #AABFF8);
}
.contact_info_btn.open .infoBox {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1.6rem;
  border-top: 1px solid #E3E3EB;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  opacity: 1;
}
.contact_info_btn.open .btn_title {
  color: #3176F8;
}
.contact_info_btn.open .btn_title i {
  transform: scaleY(-1);
}

.contact_us_btn {
  border-radius: 50px;
  border: 1px solid var(--Gradient-line-icon, #AABFF8);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  color: #3176F8;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact_us_btn .contact_us_icon {
  transition: all 0.2s ease;
  position: relative;
  scale: 0.9;
}
.contact_us_btn:hover {
  box-shadow: 0 6px 25px 0 rgba(46, 79, 169, 0.137);
}
.contact_us_btn:hover .contact_us_icon {
  scale: 1.02;
}

@media screen and (max-width: 1024px) {
  .descriptions_inner.row {
    flex-direction: column;
  }
  .envais_mockup {
    margin-left: 0;
  }
  .contact_field .contact_box {
    grid-template-columns: 1fr;
  }
  .contact_field .contact_box .leftbox {
    padding: 3rem 3rem 0 3rem;
  }
  .tab_container {
    height: auto;
  }
  .tab_container .tab_menubar {
    height: auto;
    flex-wrap: wrap;
  }
  .tab_container .tab_menubar .tab_item {
    height: 46px;
    font-size: 15px;
    padding: 0 20px;
    letter-spacing: -1px;
  }
  section.envais_product {
    scroll-margin-top: 62px;
  }
  .block_item br {
    display: none;
  }
  .prd_card_con .prd_card {
    padding: 2.5rem 2.5rem 1rem;
    padding-top: 80px;
    gap: 20px;
  }
  .prd_card_con {
    gap: 1rem;
  }
  .technique_bg::after {
    content: "";
    position: absolute;
    width: 80%;
    aspect-ratio: 1/2;
    background-image: url(/src/assets/img/deco_bg_03.png);
    background-size: contain;
    right: -40px;
    top: 100px;
    opacity: 0.8;
    z-index: 0; /* behind normal content in this stacking context */
    mix-blend-mode: multiply;
  }
  .prd_compare_con .com_block .block_item.tit,
  .prd_compare_con .com_block .block_item.tit2 {
    padding: 0.5rem 1rem;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
  }
  .prd_compare_con {
    gap: 1.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .prd_compare_con .com_block {
    border-radius: 1.5rem;
  }
  .prd_compare_con .com_block .block_item {
    min-width: auto;
    padding: 0.8rem 1.5rem;
  }
  .prd_compare_con .com_block.mainBlock .block_item {
    padding: 1.6rem 1.5rem;
  }
  .prd_compare_con .com_block {
    font-size: 0.9rem;
    min-height: 80px;
  }
  .prd_compare_con .com_block.mainBlock {
    font-size: 1rem;
  }
  .prd_compare_con .com_block .block_item p {
    word-break: keep-all;
  }
  .expected_con .exp_img img {
    margin-top: 20px;
  }
  .performance_con {
    flex-direction: column;
  }
}
@media screen and (max-width: 940px) {
  .accordion_list .accodion_img {
    width: 96%;
    padding-right: 10px;
    max-height: 100%;
  }
}
@media screen and (max-width: 890px) {
  .product_bn .content_area {
    height: auto;
    justify-content: center;
  }
  .product_bn .info {
    padding: 2rem 1rem 0;
  }
  .product_bn .info .st_txt {
    font-size: 1.125rem;
    text-align: center;
  }
  .product_bn .info .nd_txt {
    margin-top: 1rem;
  }
  .product_bn .info .nd_txt li {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .product_bn.envais .info img {
    margin: 0 auto;
  }
  .product_bn.envais {
    padding: 2rem 1rem;
  }
  .s_configuration .content_icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
  }
  .s_configuration .content_icon img {
    width: 48px;
    height: 48px;
  }
  .s_configuration .icontit {
    font-size: 17px;
  }
  .s_configuration .txt {
    font-size: 14px;
    line-height: 140%;
  }
  .s_configuration .shw .sw, .s_configuration .shw .hw {
    padding: 0 10px;
  }
  .s_configuration .structure_con {
    padding: 2rem 8px;
  }
  .prd_card_con .prd_card {
    flex-direction: column;
    padding: 2.5rem 2rem 1rem;
    padding-top: 70px;
    gap: 0;
    border-radius: 18px;
  }
  .prd_card_con .prd_card::after {
    width: 80px;
    height: 44px;
    top: 16px;
  }
  .prd_card_con .prd_card .left_txt .tit {
    font-size: 1.125rem;
    text-align: left;
  }
  .prd_card_con .prd_card .left_txt .desc {
    font-size: 0.9875rem;
    text-align: left;
  }
  .expected_con::after {
    left: -90px;
    bottom: -80px;
    width: 220px;
    height: 100px;
  }
  .performance_con::after {
    opacity: 0.5;
  }
}
@media screen and (max-width: 700px) {
  .pro_tit {
    font-size: 1.5rem;
    padding-left: 40px;
    word-break: keep-all;
  }
  .pro_tit::after {
    width: 30px;
    height: 24px;
  }
  .technical_tit .tit {
    font-size: 1.5rem;
  }
  .technical_tit .desc {
    font-size: 1rem;
  }
  .pro_txt {
    font-size: 1rem;
  }
  .contact_field .contact_area {
    padding: 0 10px 80px;
  }
  .contact_field .contact_box .leftbox {
    padding: 1rem 1rem 0 1rem;
  }
  .function_list .name {
    font-size: 1rem;
  }
  .function_list .txt {
    font-size: 0.9375rem;
  }
  .contact_field .contact_box .rightbox .contact_btn {
    right: calc(50% - 100px);
    bottom: 0;
  }
  .contact_field .contact_box .rightbox {
    margin-bottom: 40px;
  }
  .accordion_list .accodion_card {
    margin-bottom: 0.875rem;
  }
  .accordion_list .accodion_header {
    height: 72px;
  }
  .accordion_list .accodion_header .tit, .dia_tit {
    font-size: 1rem;
  }
  li.description, .dia_txt {
    font-size: 0.875rem;
    line-height: 150%;
  }
  .envais_mockup {
    display: none;
  }
  .prd_compare_con {
    gap: 1rem;
  }
  .prd_compare_con .com_block {
    border-radius: 1rem;
    min-width: 80px;
  }
  .prd_compare_con .com_block .block_item {
    min-height: 98px;
    padding: 0.6rem;
  }
  .prd_compare_con .com_block .block_item.tit, .prd_compare_con .com_block .block_item.tit2 {
    font-size: 1rem;
    min-height: 68px;
  }
  .prd_compare_con .com_block.mainBlock .block_item {
    padding: 1rem;
  }
  .prd_compare_con .com_block.mainBlock {
    font-size: 0.9rem;
  }
  .expected_con {
    margin-top: 1rem;
  }
  .expected_con .block_item {
    padding: 2rem;
  }
  .expected_con .block_item:first-child {
    margin-bottom: 1.5rem;
  }
  .expected_con .block_tit {
    font-size: 1.1rem;
    padding-left: 42px;
    line-height: 30px;
  }
  .expected_con .block_tit::after {
    width: 30px;
    height: 30px;
  }
  .expected_con .quan_graph {
    gap: 3rem;
  }
  .expected_con .static_con {
    margin-top: 1rem;
  }
  .expected_con .static_con .exp_list {
    margin-left: 0;
  }
  .expected_con .static_con .exp_list li {
    font-size: 0.937rem;
    padding: 6px 0px 6px 14px;
    line-height: 160%;
  }
  .expected_con .static_con .exp_list li::after {
    top: 15px;
  }
  .performance_con {
    flex-direction: column;
  }
  .performance_con .technical_box {
    width: 98%;
  }
  .performance_con .technical_history li .tit {
    white-space: wrap;
    line-height: 160%;
  }
  .integration_con {
    grid-template-columns: 1fr;
  }
  .accordion_list .accodion_img.sm {
    max-width: 400px;
  }
  .rnd_history_con {
    line-height: 150%;
  }
  .rnd_history_con .t {
    padding: 0;
    margin-bottom: 1rem;
  }
  .rnd_history_con .rnd_certificate {
    margin: 0.8rem 0;
  }
  .prd_compare_con .com_block .block_item.tit, .prd_compare_con .com_block .block_item.tit2 {
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
  }
  .tec_btnbox {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 0;
    min-height: 200px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 570px) {
  .performance_con .technical_history {
    padding: 0 20px;
  }
  .performance_con .technical_history li {
    padding-left: 40px;
  }
  .performance_con .technical_history li .tit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 548px) {
  .prd_compare_con .com_block:last-child::after {
    font-size: 13px;
    word-break: keep-all;
    line-height: 140%;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .pro_tit {
    font-size: 1.187rem;
    padding-left: 40px;
    word-break: keep-all;
  }
  .pro_tit::after {
    width: 30px;
    height: 24px;
  }
  .technical_tit .tit {
    font-size: 1.187rem;
  }
  .technical_tit .desc {
    font-size: 0.937rem;
  }
  .tab_container .tab_menubar .tab_item {
    height: 46px;
    font-size: 14px;
    padding: 0 10px;
  }
  .prd_compare_con {
    gap: 0;
  }
  .prd_compare_con .com_block .block_item {
    height: 130px;
  }
  .prd_compare_con .com_block.mainBlock {
    box-shadow: none;
    border-radius: 0;
    width: 46%;
  }
  .com_block:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    min-width: 60px;
    border-right: 0;
  }
  .com_block:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 120px;
    border-left: 0;
  }
  .prd_compare_con .com_block.mainBlock .block_item {
    padding: 0.5rem;
  }
  .expected_con .quan_graph img {
    width: 100%;
  }
  .expected_con .block_item {
    border-radius: 1rem;
  }
  .performance_con .technical_box .deco_tit {
    width: 100%;
    max-width: 420px;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .performance_con .technical_box .deco_tit img {
    width: 40px;
    height: 40px;
  }
  .performance_con .technical_history li::before {
    height: 90px;
  }
  .performance_con .technical_history {
    margin-top: 70px;
  }
  .performance_con .technical_history li:last-child {
    margin-bottom: 12px;
  }
  .tec_btnbox {
    padding-top: 20px;
  }
}
@media screen and (max-width: 370px) {
  .performance_con .technical_history li::before {
    height: 118px;
  }
}
@media screen and (max-width: 340px) {
  .contact_info_btn.open .infoBox {
    flex-direction: column;
  }
}/*# sourceMappingURL=product.css.map */