.ahnlab {
  --brand-color: #1f4787;
}

.trend-micro,
.trendMicro {
  --brand-color: #d71920;
}

.tatum-security,
.tatumSecurity {
  --brand-color: #0f63fe;
}

.content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content-wrap .contents {
  width: 100%;
}

/* 제품소개 타이틀배너 css */
.product #pageTitle .title-content h1 {
  font-weight: 700;
}

.product #pageTitle .page-title {
  mask-image: url("../images/title_banner/product_wave.svg");
  -webkit-mask-image: url("../images/title_banner/product_wave.svg");
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 100%;
  height: 750px;
}

.product #pageTitle .title-content>div {
  text-align: left;
}

#pageTitle .title-content .logo {
  width: 160px;
}

.ahnlab #pageTitle .title-content .logo {
  width: 160px;
}

.trendMicro #pageTitle .title-content .logo {
  width: 170px;
}

.tatumSecurity #pageTitle .title-content .logo {
  width: 242px;
}

/* 제품소개 페이지 css */
.product .pdt-title {
  min-width: 13.89%;
  line-height: 1;
}

/* 제품 인트로 */
#productIntro .title {
  margin-bottom: 80px;
}

#productIntro .title h3 {
  text-align: center;
  font-weight: 500;
}

#productIntro .title h2 {
  text-align: center;
}

#productIntro .title h2 span {
  color: var(--brand-color);
}

#productIntro.mb-0 {
  margin-bottom: 0;
}

#productIntro.mb-0+#productFeature {
  margin-top: 0;
}

/* 특장점 */
#productFeature .feature-grid {
  --grid-num: 2;
  --grid-t-num: 1;
  --grid-m-num: 1;
  counter-reset: card-num;
}

#productFeature .feature-grid .item {
  background-color: #f9f9f9;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 50px 60px;
  min-height: 350px;
}

#productFeature .feature-grid .item .icon {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
}

#productFeature .feature-grid .item h5 {
  font-size: var(--f24);
  margin-bottom: 25px;
}

#productFeature .feature-grid .item h5::before {
  content: counter(card-num, decimal-leading-zero) ". ";
  counter-increment: card-num;
}

#productFeature .feature-grid .item ul li {
  font-size: var(--f16);
  line-height: 1.625;
  color: var(--color-mute);
  position: relative;
  padding-left: 10px;
}

#productFeature .feature-grid .item ul li~li {
  margin-top: 15px;
}

#productFeature .feature-grid .item ul li.single-line~li.single-line {
  margin-top: 12px;
}

#productFeature .feature-grid .item ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}

/* 안랩06 */
#productFeature .step-box,
#productFeature .detail-box {
  gap: 0;
  margin-top: 40px;
  position: relative;
}

#productFeature .detail-box {
  gap: 20px;
}

#productFeature .step-box .box p,
#productFeature .detail-box .box p {
  font-size: var(--f18);
  height: 50px;
  background: transparent;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#productFeature .detail-box .box p {
  border-radius: 10px;
}

#productFeature .step-box .box:first-child p {
  border-radius: 10px 0 0 10px;
}

#productFeature .step-box .box:last-child p {
  border-radius: 0 10px 10px 0;
}

#productFeature .step-box .box:nth-child(1) p,
#productFeature .detail-box .box:nth-child(1) p {
  background: linear-gradient(90deg, #2970ff 0%, #235fd8 100%);
}

#productFeature .step-box .box:nth-child(2) p,
#productFeature .detail-box .box:nth-child(2) p {
  background: linear-gradient(90deg, #235fd8 0%, #1c4db0 100%);
}

#productFeature .step-box .box:nth-child(3) p,
#productFeature .detail-box .box:nth-child(3) p {
  background: linear-gradient(90deg, #1c4db0 0%, #153b87 100%);
}

#productFeature .step-box .box:nth-child(4) p,
#productFeature .detail-box .box:nth-child(4) p {
  background: linear-gradient(90deg, #153b87 0%, #102d68 100%);
}

#productFeature .step-box .box p::after {
  content: "\e5c8";
  font-family: "Material Symbols Rounded";
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}

#productFeature .step-box .box:last-child p::after {
  content: '';
}

#productFeature .step-box .box ul {
  padding: 20px;
  margin: 20px 15px 0 15px;
}

#productFeature .step-box .box ul,
#productFeature .detail-box .box {
  background-color: #fff;
  border-radius: 10px;
  border: 1px dashed #aaa;
}

#productFeature .detail-box .box {
  padding: 25px;
}

#productFeature .detail-box .box ul {
  padding: 20px 25px 0 20px;
}

#productFeature .step-box .box ul li,
#productFeature .detail-box .box ul li {
  font-size: var(--f14);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  word-break: keep-all;
}

#productFeature .detail-box .box ul li {
  font-size: var(--f16);
}

#productFeature .step-box .box ul li~li,
#productFeature .detail-box .box ul li~li {
  margin-top: 5px;
}

/* 주요 기능 */
#productFunction .function-box {
  background-color: #f9f9f9;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 70px 60px 90px;
}

#productFunction .function-box .item~.item {
  margin-top: 38px;
}

#productFunction .function-box .item h5 {
  font-size: var(--f24);
  line-height: 35px;
  margin-bottom: 10px;
  position: relative;
  word-break: keep-all;
}

#productFunction .function-box .item h5::before {
  content: "";
  background-image: url("../images/products/function_list.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 21px;
  height: auto;
  aspect-ratio: 21/35;
  position: absolute;
  left: 0;
}

#productFunction .function-box .item h5,
#productFunction .function-box .item ul {
  padding-left: 30px;
}

#productFunction .function-box .item ul li {
  font-size: var(--f17);
  color: var(--color-mute);
  position: relative;
  padding-left: 10px;
  word-break: keep-all;
}

#productFunction .function-box .item ul li~li {
  margin-top: 8px;
}

#productFunction .function-box .item ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}

/* productdetail */
#productdetail .detail-sec {
  position: relative;
  width: 100%;
  height: 100%;
}

#productdetail .detail-sec~.detail-sec {
  margin-top: 100px;
}

#productdetail .detail-sec::before {
  content: "";
  display: block;
  background-color: #f9f9f9;
  background-image: url("../images/products/trend_micro/detail_bg.png");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 87.5%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: .85;
}

#productdetail .detail-sec:nth-child(odd)::before {
  border-bottom-left-radius: 0;
  transform: scaleX(-1);
}

#productdetail .detail-sec:nth-child(even)::before {
  right: unset;
  left: 0;
  border-bottom-right-radius: 0;
}

#productdetail .detail-sec .content-wrap {
  display: flex;
  justify-content: unset;
  align-items: center;
  padding: 120px 0;
  gap: 4.166%;
}

#productdetail .detail-sec:nth-child(even) .content-wrap {
  flex-direction: row-reverse;
  justify-content: space-between;
}

#productdetail .detail-sec .text {
  padding: 0 6.94% 0 0;
}

#productdetail .detail-sec:nth-child(even) .text {
  padding: 0 0 0 6.94%;
}

#productdetail .detail-sec .text h3 {
  color: var(--brand-color);
  letter-spacing: var(--en-letter);
}

#productdetail .detail-sec .text h5 {
  font-size: var(--f24);
  margin-bottom: 30px;
}

#productdetail .detail-sec .text ul li {
  font-size: var(--f16);
  line-height: 1.625;
  position: relative;
  padding-left: 10px;
  word-break: keep-all;
}

#productdetail .detail-sec .text ul li~li {
  margin-top: 10px;
}

#productdetail .detail-sec .text ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}

/* intro icon grid 형식 */
.icon_listContents {
  --label-width: 14.28%;
  --label-height: 40px;
  --dash-width: calc(100% - var(--label-width));
  --dash-height: 50px;
}

.icon_listContents {
  display: flex;
  justify-content: space-between;
  height: 320px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1260px;
}

.icon_listContents::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--label-height) + var(--dash-height));
  transform: translateX(-50%);
  width: var(--dash-width);
  border-top: 1px dashed #aaa;
}

.icon_listContents .item {
  width: var(--label-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon_listContents .item .icon img {
  display: block;
  width: 120px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #f7f4f1;
  padding: 20px;
  margin: 0 auto;
}

.icon_listContents .item .icon p {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 15px;
  letter-spacing: var(--en-letter);
}

.icon_listContents .item .text-label {
  width: 100%;
  height: var(--label-height);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--f18);
  text-align: center;
  color: #fff;
  background-color: var(--brand-color);
  border-radius: 50px;
  position: relative;
  padding: 0 8px;
  word-break: keep-all;
}

.icon_listContents .item .text-label::before {
  content: "";
  display: block;
  width: 1px;
  height: var(--dash-height);
  border-left: 1px dashed #aaa;

  position: absolute;
  top: calc(-1 * var(--dash-height));
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.scroll-event[data-scroll="line-eff-1"]::after {
  animation: line-eff-1 0.8s alternate forwards;
}

.scroll-event[data-scroll="line-eff-2"]::before {
  animation: line-eff-2 0.8s alternate forwards;
  animation-delay: 0.8s;
}

@keyframes line-eff-1 {
  0% {
    opacity: 0;
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes line-eff-2 {
  0% {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* image_mapBox */
.image_mapBox {
  --label-position: -23.333%;
  --dash-width: 45px;
}

.image_mapBox {
  width: 100%;
  max-width: 1260px;
  height: 465px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.image_mapBox .center-image {
  position: relative;
  z-index: 3;
  width: 27.77%;
}

.image_mapBox .label-wrap {
  position: relative;
  width: 23.80952380952381%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.image_mapBox .text-label {
  background-color: var(--color-little);
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  color: var(--brand-color);
  border-radius: 30px 30px 30px 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_mapBox .left-label .text-label {
  left: var(--label-position);
}

.image_mapBox .right-label .text-label {
  right: var(--label-position);
}

.image_mapBox .text-label::after {
  content: '';
  display: block;
  border-top: 1px dashed #aaa;
  width: var(--dash-width);
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.image_mapBox .left-label .text-label::after {
  right: calc(-1 * var(--dash-width));
}

.image_mapBox .right-label .text-label::after {
  left: calc(-1 * var(--dash-width));
}

.image_mapBox .text-label::before {
  --before-position: calc(-1 * var(--dash-width) * 2 + calc(var(--dash-width) * 0.12));
  content: '';
  display: block;
  border-top: 1px dashed #aaa;
  width: var(--dash-width);
  height: 1px;
  position: absolute;
  top: calc(50% + calc(var(--dash-width) * 0.4));
}

.image_mapBox .left-label .text-label::before {
  right: var(--before-position);
}

.image_mapBox .right-label .text-label::before {
  left: var(--before-position);
}

.image_mapBox .left-label .text-label:nth-of-type(1):before {
  transform: translateY(-50%) rotate(45deg);
}

.image_mapBox .right-label .text-label:nth-of-type(1):before {
  transform: translateY(-50%) rotate(-45deg);
}

.image_mapBox .label-wrap .text-label:nth-last-of-type(2) {
  --label-position: -50%;
  --dash-width: 50%;
}

.image_mapBox .label-wrap .text-label:nth-last-of-type(2)::before {
  display: none;
}

.image_mapBox .label-wrap .text-label:nth-last-of-type(2)::after {
  width: var(--dash-width);
}

.image_mapBox .label-wrap .text-label:nth-of-type(3) {
  --dash-width: 60px;
}

.image_mapBox .label-wrap .text-label:nth-of-type(3):before {
  top: calc(50% - calc(var(--dash-width) * 0.4));
}

.image_mapBox .left-label .text-label:nth-of-type(3):before {
  transform: translateY(-50%) rotate(-45deg);
}

.image_mapBox .right-label .text-label:nth-of-type(3):before {
  transform: translateY(-50%) rotate(45deg);
}

/* circle_mapContents */
.circle_mapContents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

  --circle-y: -15%;
  --circle-x: 7.5%;
}

.circle_mapContents .arrow {
  position: absolute;
  width: 26.94%;
}

.circle_mapContents .arrow p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--f26);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--text-color);
}

.circle_mapContents .arrow.left {
  left: 0;
  --text-color: #ec0b0b;
}

.circle_mapContents .arrow.right {
  right: 0;
  --text-color: #0f4fc4;
}

.circle_mapContents .center {
  width: 100%;
  padding: 60px 0;
}

.circle_mapContents .circle-area {
  width: 27.77%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #8fa3c3;
  border-radius: 100%;
  position: relative;
}

.circle_mapContents .center-circle {
  width: 55%;
  height: auto;
  aspect-ratio: 1/1;
  background: linear-gradient(360deg, rgba(21, 47, 88, 1) 0%, rgba(31, 71, 135, 1) 100%);
  border-radius: 100%;
  font-size: var(--f26);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle_mapContents .center-circle::before {
  content: '';
  display: block;
  background-color: #f6f9fa;
  border-radius: 100%;
  width: 130%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.circle_mapContents .ctt-circle {
  position: absolute;
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-little);
  font-size: var(--f18);
  font-weight: 700;
  text-align: center;
  color: var(--brand-color);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_mapContents .circle1 {
  top: var(--circle-y);
  left: var(--circle-x);
}

.circle_mapContents .circle2 {
  top: var(--circle-y);
  right: var(--circle-x);
}

.circle_mapContents .circle3 {
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
}

.circle_mapContents .circle4 {
  bottom: var(--circle-y);
  right: var(--circle-x);
}

.circle_mapContents .circle5 {
  bottom: var(--circle-y);
  left: var(--circle-x);
}

.circle_mapContents .circle6 {
  top: 50%;
  left: -20%;
  transform: translateY(-50%);
}

.scroll-event[data-scroll="center-fade"] {
  animation: center-fade 0.5s ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes center-fade {
  0% {
    opacity: 0;
    top: calc(50% + 40px);
  }

  100% {
    opacity: 1;
    top: 50%;
  }
}


/* v3Point, productFeature의 point gird */
#v3Point .ctt-sec~.ctt-sec {
  margin-top: 120px;
}

#v3Point .image-box {
  background-color: #f9f9f9;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 80px 70px 90px;
}

#v3Point .image-box .image-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
}

#v3Point .image-box .image-wrap.box1>div {
  width: 42.27%;
}

#v3Point .image-box .image-wrap.box2>div {
  width: 30.9%;
}

#v3Point .image-box .image-wrap.box1 p.desc {
  font-size: var(--f16);
  color: var(--color-mute);
}

#v3Point .image-box .image-wrap .center-text {
  text-align: center;
  font-size: var(--f16);
  color: var(--color-mute);
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#v3Point .image-box .image-wrap .center-text b {
  font-size: var(--f18);
  color: var(--color-text);
}

#v3Point .image-box .image-wrap .image {
  position: relative;
  margin-top: 20px;
}

#v3Point .image-box .image-wrap.box1 .image img {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

#v3Point .image-box .image-wrap.box1 .image::before {
  content: '';
  background-image: url('../images/products/ahnlab/intro_04_2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 23.65%;
  height: auto;
  aspect-ratio: 388/300;
  opacity: 0.65;
  position: absolute;
}

#v3Point .image-box .image-wrap.box1 .img1 .image::before {
  top: 15%;
  right: -18.28%;
}

#v3Point .image-box .image-wrap.box1 .img2 .image::before {
  top: 5%;
  left: -18.28%;
  transform: rotate(180deg);
}

#v3Point .image-box ul {
  margin-top: 25px;
}

#v3Point .image-box ul li {
  font-size: var(--f16);
  color: var(--color-mute);
  position: relative;
  padding-left: 12px;
}

#v3Point .image-box ul li~li {
  margin-top: 5px;
}

#v3Point .image-box ul li::before {
  content: '-';
  position: absolute;
  left: 0;
}

#v3Point .point-grid {
  margin-top: 40px;
}

#v3Point .point-grid,
#productFeature .point-grid {
  --grid-num: 2;
  --grid-t-num: 2;
  --grid-m-num: 1;
  gap: 25px 40px;
  counter-reset: point-counter;
}

#v3Point .point-grid .item,
#productFeature .point-grid .item {
  background-color: #f9f9f9;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 40px 50px;
}

#v3Point .point-grid .item p {
  font-size: var(--f20);
  word-break: keep-all;
}

#productFeature .point-grid .item p {
  font-size: var(--f22);
  word-break: keep-all;
}

#v3Point .point-grid .item p::before {
  content: 'Point ' counter(point-counter, decimal-leading-zero);
  counter-increment: point-counter;
  color: var(--brand-color);
  display: block;
  font-size: var(--f14);
  font-weight: 800;
  letter-spacing: var(--en-letter);
}

#v3Point .point-grid .item p span,
#productFeature .point-grid .item p span {
  font-size: var(--f16);
  font-weight: 500;
}

#productFeature .point-grid .item {
  position: relative;
  font-size: var(--f14);
}

#productFeature .point-grid .item .cnt-label {
  display: block;
  margin-bottom: 10px;
}

#productFeature .point-grid .item .cnt-label::before {
  content: 'Features ';
  color: var(--brand-color);
  font-size: var(--f14);
  font-weight: 700;
  letter-spacing: var(--en-letter);
}

#productFeature .point-grid .item .cnt-label::after {
  content: counter(point-counter, decimal-leading-zero);
  counter-increment: point-counter;
  color: var(--brand-color);
  font-size: var(--f24);
  font-weight: 800;
  letter-spacing: var(--en-letter);
}


/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
  #productFeature .point-grid .item p {
    font-size: 20px;
  }

  .icon_listContents .item .text-label {
    font-size: 17px;
  }

  .image_mapBox .text-label {
    font-size: 24px;
  }  

  #v3Point .image-box .image-wrap .center-text {
    font-size: 14px;
  }

  #v3Point .image-box .image-wrap .center-text b {
    font-size: 16px;
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  .content-wrap {
    flex-direction: column;
    gap: 35px;
  }

  .product #pageTitle .page-title {
    height: 600px;
    mask-image: none;
  }

  #pageTitle .title-content .logo {
    width: 130px;
  }

  .ahnlab #pageTitle .title-content .logo {
    width: 130px;
  }

  .trendMicro #pageTitle .title-content .logo {
    width: 170px;
  }

  .tatumSecurity #pageTitle .title-content .logo {
    width: 242px;
  }

  /* 제품소개 페이지 css */
  .product .pdt-title {
    min-width: unset;
  }

  /* 제품 인트로 */
  #productIntro .title {
    margin-bottom: 60px;
  }

  /* 특장점 */
  #productFeature .feature-grid .item {
    padding: 40px 45px 65px;
    min-height: unset;
  }

  #productFeature .feature-grid .item .icon {
    width: 45px;
  }

  #productFeature .feature-grid .item h5 {
    margin-bottom: 20px;
  }

  #productFeature .feature-grid .item ul li {
    font-size: 16px;
  }

  /* 안랩06 */
  #productFeature .step-box {
    gap: 25px 15px;
  }

  #productFeature .detail-box {
    gap: 15px;
  }

  #productFeature .step-box .box p,
  #productFeature .step-box .box:first-child p,
  #productFeature .step-box .box:last-child p {
    border-radius: 10px;
  }

  #productFeature .step-box .box p::after {
    right: 15px;
    font-size: 18px;
  }

  #productFeature .step-box .box ul {
    padding: 20px;
    margin: 12px 0 0 0;
  }

  #productFeature .detail-box .box {
    padding: 20px;
  }

  #productFeature .detail-box .box ul {
    padding: 15px 15px 0 15px;
  }

  #productFeature .step-box .box ul li,
  #productFeature .detail-box .box ul li {
    font-size: 14px;
  }

  /* 주요 기능 */
  #productFunction .function-box {
    padding: 55px 45px 70px;
  }

  #productFunction .function-box .item h5 {
    line-height: 26.66px;
  }

  #productFunction .function-box .item h5::before {
    width: 16px;
  }

  #productFunction .function-box .item h5,
  #productFunction .function-box .item ul {
    padding-left: 25px;
  }

  /* productdetail */
  #productdetail .detail-sec~.detail-sec {
    margin-top: 65px;
  }

  #productdetail .detail-sec::before {
    width: 100%;
  }

  #productdetail .detail-sec .content-wrap,
  #productdetail .detail-sec:nth-child(even) .content-wrap {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 70px 45px;
  }

  #productdetail .detail-sec .text,
  #productdetail .detail-sec:nth-child(even) .text {
    padding: 0;
  }

  #productdetail .detail-sec .text ul li {
    font-size: 16px;
  }

  /* intro icon grid 형식 */
  .icon_listContents {
    --label-width: 16%;
    --label-height: 45px;
    --dash-height: 35px;
  }

  .icon_listContents {
    height: 310px;
  }

  .icon_listContents .item .icon img {
    width: 100px;
  }

  .icon_listContents .item .text-label {
    line-height: 1.1;
  }

  /* image_mapBox */
  .image_mapBox {
    --dash-width: 60px;
  }

  .image_mapBox .text-label {
    aspect-ratio: 5/3;
    font-size: 23px;
    line-height: 1.2;
    white-space: wrap;
    word-break: keep-all;
  }

  /* circle_mapContents */
  .circle_mapContents {
    --circle-y: -20%;
    --circle-x: 4%;
  }

  .circle_mapContents .arrow {
    width: 22%;
  }

  .circle_mapContents .arrow p {
    font-size: 16px;
  }

  .circle_mapContents .center {
    padding: 50px 0;
  }

  .circle_mapContents .circle-area {
    width: 38%;
  }

  .circle_mapContents .center-circle {
    width: 65%;
  }

  .circle_mapContents .ctt-circle {
    width: 36%;
  }

  .circle_mapContents .circle3 {
    right: -25%;
  }

  .circle_mapContents .circle6 {
    left: -25%;
  }

  /* v3Point, productFeature의 point gird */
  #v3Point .ctt-sec~.ctt-sec {
    margin-top: 80px;
  }

  #v3Point .image-box {
    padding: 50px 45px 55px;
  }

  #v3Point .image-box .image-wrap.box1 p.desc {
    margin-top: 5px;
  }

  #v3Point .image-box .image-wrap .center-text {
    font-size: 12px;
    top: 75%;
  }

  #v3Point .image-box .image-wrap .center-text b {
    font-size: 15px;
  }

  #v3Point .image-box .image-wrap .image {
    margin-top: 15px;
  }

  #v3Point .point-grid {
    margin-top: 30px;
  }

  #v3Point .point-grid,
  #productFeature .point-grid {
    gap: 20px;
  }

  #v3Point .point-grid .item,
  #productFeature .point-grid .item {
    padding: 30px;
  }

  #productFeature .point-grid .item p {
    font-size: var(--f20);
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .content-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .product #pageTitle {
    margin-bottom: 20px;
  }

  .product #pageTitle .page-title {
    mask-image: none;
    height: 420px;
  }

  .product #pageTitle .title-content {
    position: absolute;
    left: 10%;
    top: 120px;
    display: block;
    height: auto;
    margin: 0 auto;
    width: 80%;
  }

  .product #pageTitle .title-content h1 {
    line-height: 1.2;
    font-size: 30px;
  }

  #pageTitle .title-content .logo {
    width: 75px;
  }

  .ahnlab #pageTitle .title-content .logo {
    width: 75px;
  }

  .trendMicro #pageTitle .title-content .logo {
    width: 100px;
  }

  .tatumSecurity #pageTitle .title-content .logo {
    width: 150px;
  }

  /* 제품소개 페이지 css */
  .product .pdt-title {
    min-width: unset;
  }

  /* 제품 인트로 */
  #productIntro .title {
    margin-bottom: 40px;
  }

  #productIntro .title h3 {
    font-size: 19px;
  }

  /* 특장점 */
  #productFeature .feature-grid .item {
    padding: 35px 30px 50px;
    min-height: unset;
  }

  #productFeature .feature-grid .item .icon {
    width: 35px;
    margin-bottom: 12px;
  }

  #productFeature .feature-grid .item h5 {
    margin-bottom: 20px;
    word-break: keep-all;
  }

  #productFeature .feature-grid .item ul li {
    font-size: 14px;
  }

  #productFeature .feature-grid .item ul li.single-line~li.single-line {
    margin-top: 8px;
  }

  /* 안랩06 */
  #productFeature .step-box,
  #productFeature .detail-box {
    margin-top: 30px;
  }

  #productFeature .step-box {
    gap: 20px 8px;
  }

  #productFeature .detail-box {
    gap: 20px;
  }

  #productFeature .step-box .box p,
  #productFeature .detail-box .box p {
    height: 35px;
    font-size: 15px;
  }

  #productFeature .step-box .box p,
  #productFeature .step-box .box:first-child p,
  #productFeature .step-box .box:last-child p {
    border-radius: 5px;
  }

  #productFeature .step-box .box p::after {
    display: none;
  }

  #productFeature .step-box .box ul {
    padding: 12px;
    margin: 12px 0 0 0;
  }

  #productFeature .detail-box .box {
    padding: 15px;
  }

  #productFeature .detail-box .box ul {
    padding: 12px 0 0 0;
  }

  #productFeature .step-box .box ul li {
    font-size: 12px;
  }

  #productFeature .detail-box .box ul li {
    font-size: var(--f16);
  }

  /* 주요 기능 */
  #productFunction .function-box {
    padding: 35px 30px 50px;
  }

  #productFunction .function-box .item~.item {
    margin-top: 23px;
  }

  #productFunction .function-box .item h5 {
    line-height: 26.66px;
  }

  #productFunction .function-box .item h5::before {
    width: 16px;
  }

  #productFunction .function-box .item h5,
  #productFunction .function-box .item ul {
    padding-left: 25px;
  }

  /* productdetail */
  #productdetail .detail-sec~.detail-sec {
    margin-top: 40px;
  }

  #productdetail .detail-sec::before {
    width: 100%;
    opacity: 1;
  }

  #productdetail .detail-sec .content-wrap,
  #productdetail .detail-sec:nth-child(even) .content-wrap {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 45px 30px;
  }

  #productdetail .detail-sec .text,
  #productdetail .detail-sec:nth-child(even) .text {
    padding: 0;
  }

  #productdetail .detail-sec .text h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  #productdetail .detail-sec .text h5 {
    word-break: keep-all;
    margin-bottom: 20px;
  }

  /* intro icon grid 형식 */
  .icon_listContents {
    --label-width: 18%;
    --label-height: 45px;
    --dash-height: 20px;
  }

  .icon_listContents {
    height: 170px;
  }

  .icon_listContents .item .icon img {
    width: 40px;
    padding: 5px;
  }

  .icon_listContents .item .icon p {
    margin-top: 12px;
    font-size: 10px;
  }

  .icon_listContents .item .text-label {
    border-radius: 20px;
    line-height: 1.1;
    font-size: 11px;
  }

  /* image_mapBox */
  .image_mapBox {
    --dash-width: 35px;
  }

  .image_mapBox {
    height: 230px;
  }

  .image_mapBox .center-image {
    width: 30%;
  }

  .image_mapBox .label-wrap {
    width: 25%;
  }

  .image_mapBox .text-label {
    aspect-ratio: 5 / 3;
    font-size: 13px;
    line-height: 1.2;
    padding: 5px;
    white-space: wrap;
    word-break: keep-all;
  }

  /* circle_mapContents */
  .circle_mapContents {
    flex-direction: column;
    gap: 40px;
    --circle-y: -25%;
    --circle-x: -0.5%;
  }

  .circle_mapContents .arrow {
    position: relative;
    width: 40%;
    max-width: 200px;
  }

  .circle_mapContents .arrow p {
    font-size: 16px;
    z-index: 2;
  }

  .circle_mapContents .arrow img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    transform: rotate(90deg);
  }

  .circle_mapContents .center {
    padding: 0;
  }

  .circle_mapContents .circle-area {
    width: 65%;
  }

  .circle_mapContents .center-circle {
    width: 60%;
  }

  .circle_mapContents .ctt-circle {
    width: 40%;
  }

  .circle_mapContents .circle3 {
    right: -25%;
  }

  .circle_mapContents .circle6 {
    left: -25%;
  }

  /* v3Point, productFeature의 point gird */
  #v3Point .ctt-sec~.ctt-sec {
    margin-top: 55px;
  }

  #v3Point .image-box {
    padding: 40px 30px 50px;
  }

  #v3Point .image-box .image-wrap {
    flex-direction: column;
    row-gap: 35px;
  }

  #v3Point .image-box .image-wrap h5 {
    font-size: 18px;
  }

  #v3Point .image-box .image-wrap.box1 h5 {
    margin-bottom: 5px;
  }

  #v3Point .image-box .image-wrap.box1>div,
  #v3Point .image-box .image-wrap.box2>div {
    width: 100%;
  }

  #v3Point .image-box .image-wrap .image {
    margin-top: 15px;
  }

  #v3Point .image-box .image-wrap.box1 .image::before {
    display: none;
  }

  #v3Point .image-box .image-wrap .center-text {
    position: relative;
    left: 0;
    transform: unset;
    background: #fff;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    border: 1px dashed #aaa;
    z-index: -2;
  }

  #v3Point .image-box .image-wrap .center-text::before,
  #v3Point .image-box .image-wrap .center-text::after {
    content: '';
    background-image: url(../images/products/ahnlab/intro_04_2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 25%;
    max-width: 100px;
    height: auto;
    aspect-ratio: 388 / 300;
    opacity: 0.8;
    position: absolute;
  }

  #v3Point .image-box .image-wrap .center-text::before {
    transform: rotate(-90deg);
    top: unset;
    bottom: -30%;
    left: 5%;
  }

  #v3Point .image-box .image-wrap .center-text::after {
    transform: rotate(90deg);
    top: -30%;
    right: 5%;
  }

  #v3Point .point-grid {
    margin-top: 25px;
  }

  #v3Point .point-grid,
  #productFeature .point-grid {
    gap: 20px;
  }

  #v3Point .point-grid .item,
  #productFeature .point-grid .item {
    padding: 25px;
  }

}