@charset "UTF-8";
header {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease;
  z-index: 9;
}
header.show {
  transform: translateY(0%);
  opacity: 1;
  z-index: 999;
}

/* main */
#main {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
#main::before {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;

  transition: opacity 1.5s ease;
}
#main.on::before {
  opacity: 0;
}
#main::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/screen/index/img_grain_bg.gif");
  background-position: 50%;
  opacity: 0.08;
  position: absolute;
  z-index: 3;
  transition: opacity 1.5s ease;
}
#main.on::after {
  opacity: 0;
}
#main .intro {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 4;
}
#main.on .intro {
  opacity: 0;
  visibility: hidden;
  transition-delay: 250ms;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}
#main .intro .logo-zone {
  width: 100%;
  position: absolute;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#main .intro.on .logo-zone {
  opacity: 0;
  visibility: hidden;
}
#main .intro .logo-zone img {
  width: 100%;
}
#main .intro .video-mask-zone {
  width: 100%;
  background-image: url(../video/ai_marketing.mp4);
  background-position: center;
  background-size: cover;
  -webkit-mask-image: url("../img/header_logo_w.svg");
  mask-image: url("../img/header_logo_w.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#main .intro.on .video-mask-zone {
  opacity: 1;
  visibility: visible;
}
#main .intro .video-mask-zone video {
  width: 100%;
}
#main .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
#main .content .video-zone {
  position: absolute;
  width: 100%;
  height: 100%;
}
#main .content .video-zone::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
#main .content .video-zone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .content .width-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: absolute;
}
#main .content .width-wrap h4 {
  font-weight: 500;
}
#main .content .width-wrap span {
  width: 400px;
  height: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
#main .content .width-wrap span::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: moveLine 1.5s cubic-bezier(0, 0, 0.43, 1.06) both infinite;
}

/* effect */
#effect {
  background: var(--black-bg);
}
#effect .width-wrap .inner {
  position: relative;
  padding: 184px 265px;
}
#effect .width-wrap .inner .box {
  width: fit-content;
  padding: 10px 24px;
  position: absolute;
  opacity: 0;
}
#effect .width-wrap .inner.ani .box {
  animation: sparkle 0.75s cubic-bezier(0.65, 0.05, 0.36, 1) both;
}
#effect .width-wrap .inner .box:nth-of-type(1) {
  top: -2.5px;
  left: 247px;
  animation-delay: 0.2s;
}
#effect .width-wrap .inner .box:nth-of-type(2) {
  top: 50px;
  left: 725px;
  animation-delay: 0.4s;
}
#effect .width-wrap .inner .box:nth-of-type(3) {
  top: 120px;
  right: 75px;
  animation-delay: 0.6s;
}
#effect .width-wrap .inner .box:nth-of-type(4) {
  left: 0;
  bottom: 155px;
  animation-delay: 0.8s;
}
#effect .width-wrap .inner .box:nth-of-type(5) {
  left: 360px;
  bottom: 55px;
  animation-delay: 1s;
}
#effect .width-wrap .inner .box:nth-of-type(6) {
  right: 317px;
  bottom: -10px;
  animation-delay: 1.2s;
}
#effect .width-wrap .inner .title-zone {
  text-align: center;
}
#effect .width-wrap .inner .title-zone h2 {
  margin-bottom: 30px;
}

/* review */
#review {
  background: var(--gray-bg);
}
#review .width-wrap {
  padding: 230px 0 130px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
}
#review .width-wrap > h3,
#review .width-wrap p,
#review .width-wrap > .btn {
  font-family: "Pretendard Variable";
  line-height: 160%;
}
#review .width-wrap > h3 {
  position: sticky;
  top: 210px;
  height: fit-content;
}
#review .width-wrap .review-list {
  column-count: 3;
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-gap: 20px;
}
#review .width-wrap .review-list li {
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  break-inside: avoid;
  margin-top: 20px;
  contain: layout paint;
}
#review .width-wrap .review-list li:first-child {
  margin-top: 0;
}
#review .width-wrap .review-list li:nth-child(n + 11):nth-child(-n + 20) {
  position: relative;
  top: 64px;
}
#review .width-wrap .review-list li .top-zone {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}
#review .width-wrap .review-list li .top-zone .text p {
  word-break: break-all;
}
#review .width-wrap .review-list li .top-zone .text p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  padding: 4px 8px;
  width: fit-content;
  margin-bottom: 12px;
}
#review .width-wrap .review-list li .top-zone .img {
  flex-shrink: 0;
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  overflow: hidden;
  will-change: background-image;
  contain: paint;
}
#review .width-wrap > .btn {
  display: none;
}

/* different */
#different {
  background: url(/img/screen/index/img_different_bg.png) no-repeat;
  background-size: contain;
  background-position: center;
}
#different .width-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#different .width-wrap .top-area {
  display: flex;
  gap: 80px;
}
#different .width-wrap .top-area .left-zone h3 {
  margin-top: 30px;
}
#different .width-wrap .top-area .left-zone h3 .po-line::before {
  animation-delay: 1s;
}
#different .width-wrap .top-area .right-zone {
  padding-top: 114px;
}
#different .width-wrap .img-area {
  align-self: end;
  width: 835px;
  height: 430px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  gap: 20px 80px;
}
#different .width-wrap .img-area .img-zone {
  position: relative;
}
#different .width-wrap .img-area .img-zone img {
  object-fit: contain;
  aspect-ratio: 100 / 29.42;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: all;
}
/* 흑백 or 흐림 이미지 (기본 보이는 상태) */
#different .width-wrap .img-area .img-zone img.blur {
  opacity: 1;
  z-index: 1;
}
/* 컬러 이미지 (기본 숨김) */
#different .width-wrap .img-area .img-zone img.color {
  opacity: 0;
  z-index: 2;
}

/* hover 시 전환 */
#different .width-wrap .img-area .img-zone img:hover.color {
  opacity: 1;
}
#different .width-wrap .img-area .img-zone img:hover.blur {
  opacity: 0;
}

/* give */
#give {
  background: var(--gray-bg);
}
#give .width-wrap .box-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}
#give .width-wrap .box-area .box-zone {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#give .width-wrap .box-area .box-zone .box {
  flex-direction: column;
  align-items: stretch;
  padding: 40px 32px;
}
#give .width-wrap .box-area .box-zone .box img {
  align-self: end;
}
#give .width-wrap .box-area .box-zone:nth-child(2) {
  padding-top: 124px;
}

/* query */
#query .width-wrap {
  text-align: center;
  width: 100%;
  max-width: initial;
}
#query .width-wrap > h3 {
  margin: 30px 0 80px;
}
#query .width-wrap .bottom-area.mo {
  display: none;
}
#query .width-wrap .bottom-area.pc {
  display: grid;
  grid-template-columns: minmax(0, 752px) 1fr;
  grid-template-rows: minmax(0, 1080px) repeat(5, minmax(0, 1080px));
}
#query .width-wrap .bottom-area.pc .logo-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1080px);
  position: relative;
  width: 100% !important;
  height: 100% !important;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.on {
  opacity: 1;
  visibility: visible;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.naver {
  background: url(/img/screen/index/img_naver_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 5;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.daangn {
  background: url(/img/screen/index/img_daangn_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 4;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.youtube {
  background: url(/img/screen/index/img_youtube_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 3;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.blog {
  background: url(/img/screen/index/img_blog_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.instagram {
  background: url(/img/screen/index/img_instagram_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#query .width-wrap .bottom-area.pc .logo-list .logo-item.homepage {
  background: url(/img/screen/index/img_homepage_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#query .width-wrap .bottom-area.pc .query-list {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, minmax(0, 1080px));
  align-items: center;
  padding: 0 130px;
}
#query .width-wrap .query-list .query-item .left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
#query .width-wrap .query-list .query-item .left img:nth-child(1) {
  padding-top: 34px;
}
#query .width-wrap .query-list .query-item .left img.mo,
#query .width-wrap .query-list .query-item .right .answer-zone img.mo {
  display: none;
}
#query .width-wrap .query-list .query-item .right {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: end;
  position: relative;
  top: -22px;
}
#query .width-wrap .query-list .query-item .right .answer-zone {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 34px;
}
#query .width-wrap .dash {
  display: none;
}
#query .width-wrap > h4:nth-of-type(1) {
  padding-top: 130px;
}
#query .width-wrap > h4:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
#query .width-wrap > h4:nth-of-type(2) img.mo {
  display: none;
}

/* marketing */
#marketing .width-wrap > h3 {
  margin-bottom: 80px;
}
#marketing .width-wrap .card-area .card {
  max-height: 660px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}
#marketing .width-wrap .card-area .card .top-area {
  flex-direction: column;
  align-items: baseline;
  gap: 12px;
  padding: 20px 60px;
  color: var(--white);
  border-radius: 20px 20px 0px 0px;
  position: relative;
  background: url(/img/screen/index/img_card_hade.png) no-repeat;
  background-size: contain;
  background-position: left;
}
#marketing .width-wrap .card-area .card .top-area .tit {
  gap: 15px;
}
#marketing .width-wrap .card-area .card .top-area .tit h3 {
  line-height: 100%;
}
#marketing .width-wrap .card-area .card .bottom-area {
  border-radius: 0px 20px 20px 20px;
  border: 4px solid var(--black);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 60px;
}
#marketing .width-wrap .card-area .card .bottom-area .info-list {
  padding: 20px 0px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 58px 0;
}
#marketing .width-wrap .card-area .card .bottom-area .info-list li {
  display: grid;
  grid-template-columns: minmax(0, 32px) 1fr;
  align-items: center;
  padding: 14px 40px;
  line-height: 160%;
}
#marketing .width-wrap .card-area .card .bottom-area .info-list li img {
  padding: 10px 0px;
}
#marketing .width-wrap .card-area .card.naver .bottom-area {
  background: url(/img/screen/index/img_marketing_bg_01.png) no-repeat;
  background-size: cover;
  background-position: center;
}
#marketing .width-wrap .card-area .card.branding .bottom-area {
  background: url(/img/screen/index/img_marketing_bg_02.png) no-repeat;
  background-size: cover;
  background-position: center;
}
#marketing .width-wrap .card-area .card.daangn .bottom-area {
  background: url(/img/screen/index/img_marketing_bg_03.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}
#marketing .width-wrap .card-area .card.homepage .bottom-area {
  background: url(/img/screen/index/img_marketing_bg_04.png) no-repeat;
  background-size: cover;
  background-position: center;
}
#marketing .width-wrap .card-area .card.blog .bottom-area {
  background: url(/img/screen/index/img_marketing_bg_05.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}
#marketing .width-wrap .card-area .card.daangn .bottom-area .info-list,
#marketing .width-wrap .card-area .card.homepage .bottom-area .info-list,
#marketing .width-wrap .card-area .card.blog .bottom-area .info-list {
  margin: 89.5px 0;
}

/* alert */
#alert {
  background: var(--black);
  overflow: hidden;
}
#alert > p {
  line-height: normal;
}
#alert > p.right {
  position: absolute;
  right: 20px;
  top: 40px;
  text-align: right;
}
#alert > p.left {
  position: absolute;
  left: 70px;
  bottom: 20px;
}
#alert .width-wrap {
  max-width: 1400px;
  display: flex;
  gap: 67px;
  padding: 210px 0 0 0;
}
#alert .width-wrap .text-zone {
  position: relative;
  opacity: 0;
}
#alert .width-wrap .text-zone.ani {
  animation: bounceUp 0.8s ease-out 0.5s both;
}
#alert .width-wrap .text-zone p:nth-child(2) {
  margin-top: 12px;
}

/* package */
#package .width-wrap {
  display: flex;
  gap: 80px;
}
#package .width-wrap .left-area {
  position: sticky;
  height: 100%;
  top: 100px;
}
#package .width-wrap .left-area h3 {
  margin-bottom: 30px;
}
#package .width-wrap .card-area {
  flex: 1;
  width: 100%;
  padding-top: 100px;
  display: flex;
  gap: 28px;
}
#package .width-wrap .card-area .card-zone {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
#package .width-wrap .card-area .card-zone:nth-child(2) {
  padding-top: 359px;
}
#package .width-wrap .card-area .card-zone .card-item {
  display: flex;
  padding: 80px 6px 6px 6px;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
#package .width-wrap .card-area .card-zone .card-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/icon/icon_bookmark.png) no-repeat;
  width: 60px;
  height: 50px;
  background-size: contain;
  top: -10px;
  left: 30px;
}
#package .width-wrap .card-area .card-zone .card-item.mo {
  display: none;
}
#package .width-wrap .card-area .card-zone .card-item .title p {
  text-align: center;
}
#package .width-wrap .card-area .card-zone .card-item .title p:nth-child(2) {
  margin-top: 4px;
  width: 100%;
}
#package .width-wrap .card-area .card-zone .card-item .effect-list {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 360px;
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0px;
  position: relative;
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li .center {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4.5px;
  right: -30px;
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .effect-list
  li:nth-child(2)
  .center {
  gap: 12.5px;
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li + li {
  border-top: 1px solid #dcdcdc;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .effect-list
  li
  .small-txt {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li .box {
  width: fit-content;
  padding: 0px 10px;
  position: absolute;
  left: 10px;
  line-height: 160%;
  border: 1px solid var(--black);
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li .box.on {
  background: var(--black);
  color: var(--white);
}
#package .width-wrap .card-area .card-zone .card-item .effect-list li .btn {
  padding: 4px 8px;
  gap: 2px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  border: 1.2px solid var(--black);
  line-height: normal;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .effect-list
  li
  .btn:hover {
  background: var(--white);
  color: var(--black);
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .effect-list
  li
  .btn:hover
  svg
  path {
  stroke: var(--black);
}
#package .width-wrap .card-area .card-zone .card-item .money {
  align-self: stretch;
}
#package .width-wrap .card-area .card-zone .card-item .money > p {
  text-align: right;
  margin: 0 6px 4px 0;
  opacity: 0.4;
}
#package .width-wrap .card-area .card-zone .card-item .money .money-list {
  padding: 20px 0px;
}
#package .width-wrap .card-area .card-zone .card-item .money .money-list li {
  flex: 1;
  padding: 0px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-width: 0 1px;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  .tit {
  display: flex;
  align-items: center;
  gap: 5px;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  .tit
  span {
  display: flex;
  padding: 0px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: var(--black);
  line-height: 160%;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  .tit
  p {
  color: var(--black);
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  > p {
  line-height: normal;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  > p.cancel {
  text-decoration-line: line-through;
  opacity: 0.5;
}
#package
  .width-wrap
  .card-area
  .card-zone.company
  .card-item
  .money
  .money-list
  li
  > p.cancel {
  text-decoration-line: blink;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item.company
  .money
  .money-list
  li
  > p.cancel {
  text-decoration-line: blink;
}
#package
  .width-wrap
  .card-area
  .card-zone
  .card-item
  .money
  .money-list
  li
  > p:nth-of-type(1) {
  margin-top: 10px;
}

/* iptv */
#iptv .width-wrap {
  padding: var(--padding138);
}
#iptv .width-wrap .title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
#iptv .width-wrap .title-area .left-zone p {
  margin-top: 12px;
}
/* card */
#iptv .width-wrap .bottom-area .card-zone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#iptv .width-wrap .bottom-area .card-zone .card {
  position: relative;
  width: calc(33.33% - 20px);
  min-width: 499px;
  padding: 40px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.12);
}
#iptv .width-wrap .bottom-area .card-zone .card .title,
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box,
#iptv .width-wrap .bottom-area .card-zone .card .price {
  text-align: center;
}
#iptv .width-wrap .bottom-area .card-zone .card .title {
  position: relative;
}
#iptv .width-wrap .bottom-area .card-zone .card .title p.po-color {
  margin: 4px auto 0;
}
#iptv .width-wrap .bottom-area .card-zone .card .title img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  opacity: 0;
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box {
  flex-direction: column;
  align-items: normal;
  padding: 8px;
  border-radius: 15px;
  background: var(--gray-bg);
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box .tit {
  padding: 8px;
  border-radius: 10px;
  background: var(--black);
  margin-bottom: 4px;
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box > p {
  padding: 12px 0;
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box > p.select {
  position: relative;
  border-top: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
}
#iptv
  .width-wrap
  .bottom-area
  .card-zone
  .card
  .box-place
  .box
  > p.select:before {
  content: "선택";
  position: absolute;
  left: 4px;
  padding: 0 10px;
  border: 1px solid var(--black);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  line-height: 167%;
  letter-spacing: -0.24px;
}
#iptv .width-wrap .bottom-area .card-zone .card .box-place .box > p.one {
  margin: 26px 0;
}
#iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 12px;
  padding: 0 8px;
}
#iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list.two {
  grid-template-columns: auto 1fr;
}
#iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list.one {
  display: block;
  padding: 18.5px 8px;
}
#iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list li {
  display: flex;
  align-items: center;
}
#iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list li img {
  width: 18px;
  margin: 5.5px;
  box-sizing: border-box;
}
#iptv .width-wrap .bottom-area .card-zone .card .price {
  padding: 16px 0;
  border-radius: 15px;
  background: var(--pink);
}
#iptv .width-wrap .bottom-area .card-zone .card .price.purple {
  background: var(--purple);
}
#iptv .width-wrap .bottom-area .card-zone .card .price.blue {
  background: var(--blue);
}
#iptv .width-wrap .bottom-area .card-zone .card .notice-list {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#iptv .width-wrap .bottom-area .card-zone .card .notice-list li {
  line-height: 160%;
}

/* video */
#video {
  background: var(--black);
}
#video .width-wrap {
  padding: var(--padding100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#video .width-wrap .tab-area {
  position: relative;
  display: flex;
  padding: 4px;
  border-radius: 500px;
  background: var(--white);
  width: fit-content;
}
#video .width-wrap .tab-area:before {
  content: "";
  position: absolute;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  border-radius: 500px;
  background: var(--black);
  z-index: 0;
  transition: all 0.25s linear;
}
#video .width-wrap .tab-area.right:before {
  transform: translateX(100%);
}
#video .width-wrap .tab-area button {
  padding: 8px 20px;
  border-radius: 500px;
  line-height: 160%;
  color: var(--white);
  mix-blend-mode: difference;
}
#video .width-wrap .tab-area button.on {
  z-index: 2;
  font-weight: 500;
}
#video .width-wrap .video-area {
  position: relative;
  max-width: 960px;
  width: 100%;
  aspect-ratio: 500 / 281;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}
#video .width-wrap .video-area video {
  position: absolute;
  width: 100%;
}

/* no-margin */
#no-margin {
  background: linear-gradient(0deg, #f5f5f5 0%, #fff 100%);
}
#no-margin .width-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#no-margin .width-wrap > .box {
  width: fit-content;
  border-radius: 16px;
  position: relative;
  background: var(--po);
  animation: move-bg 5s ease infinite;
  background-size: 200% 200%;
  overflow: hidden;
  padding: 2px;
}
#no-margin .width-wrap > .box .bg {
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 16px;
}
#no-margin .width-wrap > .box h4 {
  text-align: center;
  display: flex;
  gap: 6px;
}
#no-margin .width-wrap > .box h4 .point {
  display: flex;
  background: var(--po);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: move-bg 5s linear infinite;
  background-size: 200% 200%;
}
#no-margin .width-wrap > .box h4 .point span::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 1000px;
  background-image: var(--po);
  background-size: 300px;
  left: 50%;
  top: -65%;
  transform: translateX(-50%);
  opacity: 1;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(1):before {
  background-position: 19%;
  animation: dot1 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(2):before {
  background-position: 21%;
  animation: dot2 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(3):before {
  background-position: 23%;
  animation: dot3 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(4):before {
  background-position: 25%;
  animation: dot4 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(5):before {
  background-position: 27%;
  animation: dot5 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(6):before {
  background-position: 29%;
  animation: dot6 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(7):before {
  background-position: 31%;
  animation: dot7 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(8):before {
  background-position: 33%;
  animation: dot8 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(9):before {
  background-position: 35%;
  animation: dot9 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(10):before {
  background-position: 37%;
  animation: dot10 5s linear infinite;
}
#no-margin .width-wrap > .box h4 .point span:nth-child(11):before {
  background-position: 39%;
  animation: dot11 5s linear infinite;
}

#no-margin .width-wrap .title-zone {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding-top: 80px;
  margin: 80px 0 104px;
  position: relative;
}
#no-margin .width-wrap .title-zone::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/screen/index/img_signature.svg) no-repeat;
  width: 574px;
  height: 154px;
  background-size: contain;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
#no-margin .width-wrap .box-area {
  max-width: 1418px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto;
}
#no-margin .width-wrap .box-area .box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 227 / 300;
  width: 100%;
  padding: 40px;
}
#no-margin .width-wrap .box-area .box.premium {
  padding: 0;
  cursor: pointer;
  transition: all 0.25s linear;
}
#no-margin .width-wrap .box-area .box.premium:hover {
  padding: 3px;
  background: var(--po);
  transform: translateY(-24px);
}
#no-margin .width-wrap .box-area .box.premium .bg {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#no-margin .width-wrap .box-area .box > img {
  display: none;
  position: absolute;
  top: -6px;
  left: 36px;
}
#no-margin .width-wrap .box-area .box:hover > img {
  display: inline-block;
}
#no-margin .width-wrap .box-area .box .desc-zone {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
#no-margin .width-wrap .box-area .box .desc-zone .list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li {
  display: flex;
  align-items: center;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li i {
  padding: 0 7.5px 0 11.5px;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li i.img {
  padding: 0 5px 0 9px;
}
#no-margin .width-wrap .box-area .box:hover .desc-zone .list li i.img img.black,
#no-margin .width-wrap .box-area .box .desc-zone .list li i.img img.pink {
  display: none;
}
#no-margin .width-wrap .box-area .box:hover .desc-zone .list li i.img img.pink {
  display: inline-block;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li span {
  border-bottom: solid 1px #424242;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  gap: 2px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1.2px solid var(--black);
  margin-left: 12px;
  line-height: normal;
}
#no-margin .width-wrap .box-area .box .desc-zone .list li a:hover {
  background: var(--white);
  color: var(--black);
}
#no-margin .width-wrap .box-area .box .desc-zone .list li a:hover svg path {
  stroke: var(--black);
}
#no-margin .width-wrap .box-area .box a {
  width: 100%;
  align-items: center;
}
#no-margin .width-wrap .box-area .box .bg > a {
  transition: all 0.25s linear;
}
#no-margin .width-wrap .box-area .box:hover .bg > a {
  background: var(--black);
  color: var(--white);
}
#no-margin .width-wrap .info-zone p:nth-of-type(1) {
  margin: 60px 0 2px;
}
#no-margin .width-wrap .info-zone p {
  align-items: start;
}

/* no */
#no {
  background: #f5f5f5;
  text-align: center;
  overflow: hidden;
}

#no .width-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#no .width-wrap .title-area h3 {
  margin-top: 12px;
}

#no .width-wrap .box-area {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

#no .width-wrap .box-area .box {
  padding: 20px 0;
  box-sizing: border-box;
}

#no .width-wrap .bottom-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#no .width-wrap .bottom-area .ani-zone {
  position: relative;
  padding: 0 87.5px;
}

#no .width-wrap .bottom-area .ani-zone p {
  position: relative;
  z-index: 1;
}

#no .width-wrap .bottom-area .ani-zone img {
  position: absolute;
  transform: none !important;
}

#no .width-wrap .bottom-area .ani-zone img:nth-child(2) {
  top: 14px;
  left: 20px;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

#no .width-wrap .bottom-area .ani-zone img.aos-animate:nth-child(2) {
  animation: x-left 0.25s linear forwards;
}

#no .width-wrap .bottom-area .ani-zone img:last-child {
  top: -12px;
  right: -16px;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
}

#no .width-wrap .bottom-area .ani-zone img.aos-animate:last-child {
  animation: x-right 0.25s linear forwards;
  animation-delay: 0.2s;
}

#no .width-wrap .bottom-area .line {
  width: 1px;
  height: 118px;
  background: #dcdcdc;
}

/* together */
#together .width-wrap h3:first-child {
  margin-bottom: 3px;
}
#together .width-wrap .bottom-area {
  display: grid;
  grid-template-columns: auto 1.16666fr;
  margin-top: 30px;
  justify-items: end;
}
#together .width-wrap .bottom-area .right-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
#together .width-wrap .bottom-area .right-zone li:nth-child(1),
#together .width-wrap .bottom-area .right-zone li:nth-child(2) {
  padding-bottom: 50px;
  border-bottom: solid 1px #dcdcdc;
}
#together .width-wrap .bottom-area .right-zone li:nth-child(3),
#together .width-wrap .bottom-area .right-zone li:nth-child(4) {
  padding: 50px 0 40px;
}
#together .width-wrap .bottom-area .right-zone li p:first-child {
  margin-bottom: 12px;
}

/* kakao */
#kakao {
  background: url("/img/screen/index/bg_kakao_inquery.jpg") 50% / cover
    no-repeat;
}

#kakao .width-wrap {
  max-width: 1050px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

#kakao .width-wrap .img-area {
  position: relative;
}

#kakao .width-wrap .img-area img {
  width: 100%;
  position: absolute;
  bottom: -130px;
}

#kakao .width-wrap .text-area p:nth-child(3) {
  margin: 20px 0 50px;
}

#kakao .width-wrap .text-area a {
  width: fit-content;
  padding: 16px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  line-height: 150%;
  letter-spacing: normal;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s linear;
}

#kakao .width-wrap .text-area a:hover {
  background: transparent;
}

/* responsive */
@media all and (max-width: 1670px) {
  /* main */
  #main .content .width-wrap h4 {
    font-size: 28px;
  }
  #main .content .width-wrap h1 {
    font-size: 44px;
  }

  /* effect */
  #effect .width-wrap {
    padding: 80px 0 65px;
  }
  #effect .width-wrap .inner {
    padding: 215px 0 230px;
  }
  #effect .width-wrap .inner .title-zone h2 {
    font-size: 40px;
  }

  /* review */
  #review .width-wrap {
    gap: 60px;
  }
  #review .width-wrap .review-list {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-gap: 16px;
  }
  #review .width-wrap .review-list li {
    margin-top: 16px;
  }
  #review .width-wrap .review-list li:nth-child(n + 11):nth-child(-n + 20) {
    top: 0;
  }
  #review .width-wrap .review-list li .top-zone .img {
    width: 63px;
  }

  /* different */
  #different .width-wrap {
    gap: 30px;
  }
  #different .width-wrap .top-area {
    flex-direction: column;
    gap: 30px;
  }
  #different .width-wrap .top-area .left-zone h3 {
    margin-top: 10px;
  }
  #different .width-wrap .top-area .right-zone {
    padding-top: 0;
    text-align: right;
  }

  /* give */
  #give .width-wrap .box-area {
    grid-template-columns: repeat(2, 1fr);
  }
  #give .width-wrap .box-area .box-zone .box p {
    font-size: 20px;
  }
  #give .width-wrap .box-area .box-zone:nth-child(2) {
    padding-top: 0;
  }
  #give .width-wrap .box-area .box-zone:nth-child(3) {
    margin-top: -322px;
  }

  /* query */
  #query .width-wrap .query-list {
    padding: 0 65px;
  }

  /* alert */
  #alert .width-wrap {
    flex-direction: column;
    padding: 305px 0 55px 0;
    gap: 35px;
  }
  #alert .width-wrap .text-zone p:nth-child(2) {
    margin-top: 30px;
  }
  #alert .width-wrap > img {
    align-self: end;
    transform: rotate(6.543deg);
  }

  /* package */
  #package .width-wrap {
    flex-direction: column;
    gap: 40px;
  }
  #package .width-wrap .left-area {
    position: relative;
    top: initial;
  }
  #package .width-wrap .card-area {
    justify-content: end;
  }
  #package .width-wrap .card-area .card-zone {
    width: initial;
  }

  #iptv .width-wrap .bottom-area .card-zone {
    justify-content: center;
    gap: 24px;
  }
}
@media all and (max-width: 1550px) {
  /* no-margin */
  #no-margin .width-wrap .box-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 40px;
    transform: rotate(180deg);
  }
  #no-margin .width-wrap .box-area .box {
    width: 454px;
    transform: rotate(180deg);
  }
  #no-margin .width-wrap .box-area .box.premium:hover {
    transform: rotate(180deg) translateY(-24px);
  }
  #no-margin .width-wrap .box-area .box:first-child,
  #no-margin .width-wrap .box-area .box:last-child {
    margin-top: 0;
  }
  #no-margin .width-wrap .box-area .box:nth-child(2) {
    margin-bottom: 0;
  }
  #no-margin .width-wrap .box-area .box:nth-child(1) {
    order: 1;
  }

  /* together */
  #together .width-wrap .bottom-area {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 40px;
  }

  #together .width-wrap .bottom-area .right-zone {
    padding-left: 20%;
    grid-template-columns: 380px 380px;
    gap: unset;
    justify-content: space-between;
    width: 100%;
  }
}
@media all and (max-width: 1400px) {
  /* main */
  #main .content .width-wrap h4 {
    font-size: 25px;
  }
  #main .content .width-wrap span {
    width: 300px;
  }
  #main .content .width-wrap h1 {
    font-size: 39px;
  }

  /* effect */
  #effect .width-wrap .inner .box:nth-of-type(1) {
    left: 32px;
  }
  #effect .width-wrap .inner .box:nth-of-type(2) {
    left: 40%;
    top: 6%;
  }
  #effect .width-wrap .inner .box:nth-of-type(3) {
    right: 2px;
  }
  #effect .width-wrap .inner .box:nth-of-type(5) {
    left: initial;
    right: 42px;
  }
  #effect .width-wrap .inner .box:nth-of-type(6) {
    right: initial;
    left: 23%;
  }

  /* different */
  #different {
    background: none;
  }

  /* query */
  #query .width-wrap {
    width: 90.4%;
  }
  #query .width-wrap .bottom-area.pc {
    display: none;
  }
  #query .width-wrap .bottom-area.mo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item {
    border-radius: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.naver {
    background: url(/img/screen/index/img_naver_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.daangn {
    background: url(/img/screen/index/img_daangn_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.youtube {
    background: url(/img/screen/index/img_youtube_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.blog {
    background: url(/img/screen/index/img_blog_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.instagram {
    background: url(/img/screen/index/img_instagram_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item.homepage {
    background: url(/img/screen/index/img_homepage_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  #query .width-wrap .bottom-area.mo .query-item {
    margin-top: 40px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img:nth-child(1) {
    padding-top: 34px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img.mo,
  #query .width-wrap .bottom-area.mo .query-item .right .answer-zone img.mo {
    display: none;
  }
  #query .width-wrap .bottom-area.mo .query-item .right {
    display: flex;
    gap: 24px;
    align-items: end;
    justify-content: end;
    position: relative;
    top: -22px;
  }
  #query .width-wrap .bottom-area.mo .query-item .right .answer-zone {
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 34px;
  }
  #query .width-wrap > h4:nth-of-type(1) {
    padding-top: 0;
  }
  #query .width-wrap .dash {
    display: inline-block;
    background: #dcdcdc;
    width: 1px;
    height: 90px;
    margin: 40px 0;
  }
  #query .width-wrap > h4:nth-of-type(2) {
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
  }
}
@media (max-width: 1200px) {
  /* main */
  #main .content .width-wrap span {
    width: 200px;
  }

  /* package */
  #package .width-wrap .card-area {
    padding-top: 0;
  }
  #package .width-wrap .card-area .card-zone:nth-child(2) {
    display: none;
  }
  #package .width-wrap .card-area .card-zone .card-item.mo {
    display: inline-flex;
  }
}
@media all and (max-width: 1140px) {
  /* kakao */
  #kakao .width-wrap {
    width: 90%;
  }
}
@media all and (max-width: 1100px) {
  /* review */
  #review .width-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #review .width-wrap > h3 {
    position: initial;
    top: initial;
    text-align: center;
  }
  #review .width-wrap .review-list {
    height: 1020px;
    overflow: hidden;
  }
  #review .width-wrap .review-list.open {
    height: 100%;
  }
  #review .width-wrap > .btn {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.3px;
  }
  #review .width-wrap > .btn img {
    padding: 5.5px 3.5px;
    transition: transform 0.25s linear;
  }
  #review .width-wrap > .btn.on img {
    transform: rotate(180deg);
  }

  #iptv .width-wrap .bottom-area .card-zone .card .title p.po-color {
    font-size: 26px;
    letter-spacing: -0.52px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list.two {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 1070px) {
  /* no-margin */
  #no-margin .width-wrap .title-zone::before {
    width: 374px;
  }
  #no-margin .width-wrap .box-area {
    transform: rotate(0deg);
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  #no-margin .width-wrap .box-area .box {
    transform: none;
    max-width: 454px;
    width: 100%;
    aspect-ratio: auto;
    gap: 60px;
  }
  #no-margin .width-wrap .box-area .box.premium .bg {
    gap: 60px;
    padding: 30px;
  }
  #no-margin .width-wrap .box-area .box:nth-child(1) {
    order: 0;
  }
  #no-margin .width-wrap .box-area .box:nth-child(2) {
    order: 0;
  }
  #no-margin .width-wrap .box-area .box.premium {
    background: var(--po);
    padding: 2.5px;
  }
  #no-margin .width-wrap .box-area .box.premium:hover {
    transform: none;
    padding: 2.5px;
  }
  #no-margin .width-wrap .box-area .box > img {
    display: inline-block;
  }
  #no-margin .width-wrap .box-area .box .desc-zone .list li i.img img.black {
    display: none;
  }
  #no-margin .width-wrap .box-area .box .desc-zone .list li i.img img.pink {
    display: inline-block;
  }
  #no-margin .width-wrap .box-area .box .bg > a {
    background: var(--black);
    color: var(--white);
  }
  #no-margin .width-wrap > p {
    align-self: baseline;
  }

  /* no */
  #no .width-wrap .box-area {
    gap: 18px;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:nth-child(2) {
    width: 450px;
    top: 0;
    left: 11px;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:last-child {
    width: 573px;
    top: -29px;
    right: -71px;
  }

  /* together */
  #together .width-wrap .bottom-area .right-zone {
    padding-left: 10%;
    grid-template-columns: 350px 350px;
  }

  /* kakao */
  #kakao .width-wrap {
    grid-template-columns: 0.9fr auto;
  }

  #kakao .width-wrap .img-area img {
    bottom: -44.7%;
  }
}
@media all and (max-width: 1000px) {
  /* main */
  #main .intro {
    width: 55%;
  }
  #main .intro .video-mask-zone {
    -webkit-mask-image: url("../img/screen/index/img_main_text_w.svg");
    mask-image: url("../img/screen/index/img_main_text_w.svg");
  }
  #main .content .width-wrap {
    justify-content: center;
    width: fit-content;
  }
  #main .content .width-wrap span {
    display: none;
  }

  /* different */
  #different .width-wrap .top-area .right-zone {
    font-size: 20px;
  }
  #different .width-wrap .img-area {
    width: 100%;
    height: 300px;
    gap: 30px 15px;
    padding-top: 10px;
  }
  #different .width-wrap .img-area .img-zone img {
    width: 120px;
  }

  /* give */
  #give .width-wrap .box-area {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 16px;
  }
  #give .width-wrap .box-area .box-zone {
    gap: 16px;
  }
  #give .width-wrap .box-area .box-zone .box {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 16px;
  }
  #give .width-wrap .box-area .box-zone .box p {
    font-size: 18px;
  }
  #give .width-wrap .box-area .box-zone:nth-child(3) {
    margin-top: 0;
  }

  /* query */
  #query .width-wrap .bottom-area.mo .card .logo-item {
    min-height: 400px;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item img {
    width: 75px;
  }
  #query .width-wrap .bottom-area.mo .query-item .right {
    top: 20px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img:nth-child(1),
  #query .width-wrap .bottom-area.mo .query-item .right > img {
    width: 75px;
  }

  /* alert */
  #alert .width-wrap > img {
    width: 230px;
  }
  #alert > p.right {
    right: 0;
    top: 20px;
  }
  #alert > p.left {
    left: 0;
  }

  /* kakao */
  #kakao .width-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  #kakao .width-wrap .img-area {
    order: 2;
  }

  #kakao .width-wrap .img-area img {
    max-width: 500px;
    width: 100%;
    position: relative;
    bottom: auto;
  }

  #kakao .width-wrap .text-area a {
    margin: 0 auto;
  }
}
@media all and (max-width: 900px) {
  /* marketing */
  #marketing .width-wrap .card-area .card {
    padding: 4px;
    border-radius: 20px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
    height: 87vh;
  }
  #marketing .width-wrap .card-area .card .top-area {
    gap: 8px;
    padding: 21px 35px;
    border-radius: 15px;
    background: var(--black);
  }
  #marketing .width-wrap .card-area .card .bottom-area {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list {
    margin: 45px auto 285px;
    max-width: initial;
    width: 90%;
    padding: 10px 18px;
    backdrop-filter: blur(2px);
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list li {
    grid-template-columns: minmax(0, 24px) 1fr;
    padding: 10px 0;
    font-size: 18px;
    align-items: start;
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list,
  #marketing .width-wrap .card-area .card.daangn .bottom-area .info-list,
  #marketing .width-wrap .card-area .card.homepage .bottom-area .info-list,
  #marketing .width-wrap .card-area .card.blog .bottom-area .info-list {
    margin: 20px auto 0;
  }
  #marketing .width-wrap .card-area .card.naver .bottom-area,
  #marketing .width-wrap .card-area .card.branding .bottom-area,
  #marketing .width-wrap .card-area .card.daangn .bottom-area,
  #marketing .width-wrap .card-area .card.homepage .bottom-area,
  #marketing .width-wrap .card-area .card.blog .bottom-area {
    background: none;
    padding: 0;
  }
  #marketing .width-wrap .card-area .card.naver {
    background: url(/img/screen/index/img_marketing_bg_mo_01.png) no-repeat;
    background-size: cover;
    background-position: 0 100%;
  }
  #marketing .width-wrap .card-area .card.branding {
    background: url(/img/screen/index/img_marketing_bg_mo_02.png) no-repeat;
    background-size: cover;
    background-position: 0 100%;
  }
  #marketing .width-wrap .card-area .card.daangn {
    background: url(/img/screen/index/img_marketing_bg_mo_03.png) no-repeat;
    background-size: cover;
    background-position: 0 100%;
  }
  #marketing .width-wrap .card-area .card.homepage {
    background: url(/img/screen/index/img_marketing_bg_mo_04.png) no-repeat;
    background-size: cover;
    background-position: 0 100%;
  }
  #marketing .width-wrap .card-area .card.blog {
    background: url(/img/screen/index/img_marketing_bg_mo_05.png) no-repeat;
    background-size: cover;
    background-position: 0 100%;
  }

  /* together */
  #together .width-wrap .bottom-area .right-zone {
    padding-left: 20%;
    grid-template-columns: 1fr;
  }

  #together .width-wrap .bottom-area .right-zone li:nth-child(1),
  #together .width-wrap .bottom-area .right-zone li:nth-child(2),
  #together .width-wrap .bottom-area .right-zone li:nth-child(3),
  #together .width-wrap .bottom-area .right-zone li:nth-child(4) {
    padding: 50px 0;
    border-bottom: solid 1px #dcdcdc;
  }

  #together .width-wrap .bottom-area .right-zone li:nth-child(1) {
    padding-top: 0;
  }

  #together .width-wrap .bottom-area .right-zone li:last-child {
    border-bottom: none;
  }

  #no-margin .width-wrap > .box h4 {
    flex-direction: column;
    gap: 0;
  }
  #no-margin .width-wrap > .box h4 .point {
    margin-top: 10px;
  }
}
@media all and (max-width: 800px) {
  /* effect */
  #effect .width-wrap .inner .box {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
  }
  #effect .width-wrap .inner .title-zone h2 {
    font-size: 26px;
  }
  #effect .width-wrap .inner .box:nth-of-type(1) {
    top: 0;
  }
  #effect .width-wrap .inner .box:nth-of-type(2) {
    left: 0;
    top: 143px;
  }
  #effect .width-wrap .inner .box:nth-of-type(3) {
    top: 80px;
  }
  #effect .width-wrap .inner .box:nth-of-type(4) {
    bottom: 0;
    left: 95px;
  }
  #effect .width-wrap .inner .box:nth-of-type(5) {
    bottom: 153px;
  }
  #effect .width-wrap .inner .box:nth-of-type(6) {
    left: 42px;
    bottom: 91px;
  }

  /* review */
  #review .width-wrap .review-list {
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
  }
  #review .width-wrap .review-list li {
    padding: 24px;
    border-radius: 15px;
  }
  #review .width-wrap .review-list li .top-zone {
    justify-content: space-between;
    margin-bottom: 12px;
  }
  #review .width-wrap .review-list li .top-zone .text p:nth-child(1) {
    margin-bottom: 8px;
  }
  #review .width-wrap .review-list li .top-zone .img {
    width: 56px;
  }

  /* give */
  #give .width-wrap .box-area .box-zone .box {
    padding: 20px 26px;
  }
  #give .width-wrap .box-area .box-zone .box img {
    width: 120px;
  }

  /* query */
  #query .width-wrap .bottom-area.mo .card .logo-item {
    min-height: 300px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img.mo,
  #query .width-wrap .bottom-area.mo .query-item .right .answer-zone img.mo {
    display: inline-block;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img.pc,
  #query .width-wrap .bottom-area.mo .query-item .right .answer-zone img.pc {
    display: none;
  }
  #query .width-wrap > h4 {
    font-size: 22px;
  }
  #query .width-wrap > h4:nth-of-type(2) img.pc {
    display: none;
  }
  #query .width-wrap > h4:nth-of-type(2) img.mo {
    display: inline-block;
  }

  /* marketing */
  #marketing .width-wrap .card-area .card .bottom-area .info-list li {
    font-size: 16px;
  }

  /* package */
  #package .width-wrap .card-area {
    justify-content: center;
  }

  /* no */
  #no .width-wrap .box-area {
    max-width: 500px;
    grid-template-columns: 1fr;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:nth-child(2) {
    width: 350px;
    left: 20px;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:last-child {
    width: 473px;
    right: -53px;
  }
}
@media (max-width: 570px) {
  #iptv .width-wrap .bottom-area .card-zone .card {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 500px) {
  /* main */
  #main .content .width-wrap h1 {
    font-size: 34px;
    letter-spacing: -0.68px;
  }

  /* effect */
  #effect .width-wrap .inner .title-zone h2 {
    font-size: 22px;
    letter-spacing: -0.44px;
  }
  #effect .width-wrap .inner .box {
    padding: 8px 16px;
  }

  /* review */
  #review .width-wrap {
    padding: 80px 0;
  }
  #review .width-wrap .review-list {
    height: 920px;
  }
  #review .width-wrap .review-list li .top-zone .text p:nth-child(1) {
    font-size: 11px;
    letter-spacing: -0.22px;
  }
  #review .width-wrap .review-list li > p {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  /* different */
  #different .width-wrap .top-area .right-zone {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #different .width-wrap .img-area .img-zone img {
    width: 80px;
    aspect-ratio: 100 / 30;
  }
  #different .width-wrap .img-area .img-zone img.wrtn {
    width: 54px;
  }

  /* give */
  #give .width-wrap .box-area .box-zone .box {
    height: 118px;
  }
  #give .width-wrap .box-area .box-zone .box p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
  }
  #give .width-wrap .box-area .box-zone .box img {
    width: 76px;
  }

  /* query */
  #query .width-wrap > p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #query .width-wrap > h3 {
    margin: 10px 0 40px;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item {
    min-height: 218px;
  }
  #query .width-wrap .bottom-area.mo .card .logo-item img {
    width: 52px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left,
  #query .width-wrap .bottom-area.mo .query-item .right {
    gap: 14px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img:nth-child(1),
  #query .width-wrap .bottom-area.mo .query-item .right > img {
    width: 50px;
  }
  #query .width-wrap .bottom-area.mo .query-item .left img:nth-child(1) {
    padding-top: 43px;
  }
  #query .width-wrap .bottom-area.mo .query-item .right .answer-zone {
    padding-bottom: 26px;
  }
  #query .width-wrap > h4 {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  /* marketing */
  #marketing .width-wrap > h3 {
    margin-bottom: 40px;
    text-align: center;
  }
  #marketing .width-wrap .card-area .card {
    height: 87vh;
  }
  #marketing .width-wrap .card-area .card .top-area {
    padding: 16px 25px;
  }
  #marketing .width-wrap .card-area .card .top-area .tit {
    gap: 8px;
  }
  #marketing .width-wrap .card-area .card .top-area .tit p {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  #marketing .width-wrap .card-area .card .top-area > p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list {
    width: 90%;
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list li {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
  #marketing .width-wrap .card-area .card .bottom-area .info-list li img {
    width: 12px;
    padding: 7px 0;
  }

  /* alert */
  #alert .width-wrap .text-zone {
    text-align: center;
  }
  #alert .width-wrap .text-zone p:nth-child(1) {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  #alert .width-wrap .text-zone p:nth-child(2) {
    width: 100%;
  }
  #alert .width-wrap > img {
    width: 145.5px;
  }

  /* package */
  #package .width-wrap .left-area h3 {
    margin-bottom: 10px;
  }
  #package .width-wrap .left-area p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #package .width-wrap .card-area .card-zone {
    width: 100%;
  }
  #package .width-wrap .card-area .card-zone .card-item {
    padding: 50px 4px 4px 4px;
    gap: 15px;
  }
  #package .width-wrap .card-area .card-zone .card-item::before {
    width: 45px;
    height: 35px;
  }
  #package .width-wrap .card-area .card-zone .card-item .title p:nth-child(1) {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
  #package .width-wrap .card-area .card-zone .card-item .effect-list {
    width: 90.335%;
  }
  #package .width-wrap .card-area .card-zone .card-item .money .money-list {
    padding: 15px 0px;
    border-radius: 15px;
    height: 120px;
  }
  #package .width-wrap .card-area .card-zone .card-item .money .money-list li {
    padding: 0;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    .tit {
    gap: 3px;
    flex-direction: column;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    > p:nth-of-type(1) {
    margin-top: 5px;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    .tit
    span,
  #package .width-wrap .card-area .card-zone .card-item .effect-list li .box {
    font-size: 11px;
    letter-spacing: -0.22px;
  }
  #package .width-wrap .card-area .card-zone .card-item .effect-list li .btn {
    padding: 3px 6px;
    font-size: 12px;
    letter-spacing: -0.24px;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .effect-list
    li
    .btn
    svg {
    width: 10px;
    height: 10px;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    > p.cancel,
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    .tit
    p {
    font-size: 13px;
    letter-spacing: -0.26px;
  }
  #package
    .width-wrap
    .card-area
    .card-zone
    .card-item
    .money
    .money-list
    li
    > p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #package .width-wrap .card-area .card-zone .card-item .money > p {
    margin: 0 4px 4px 0;
  }

  #iptv .width-wrap .title-area {
    margin-bottom: 40px;
  }
  #iptv .width-wrap .title-area .left-zone p {
    margin-top: 8px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card {
    padding: 40px 8px;
    gap: 16px;
  }
  #iptv .width-wrap .title-area .left-zone p.gray-color,
  #iptv .width-wrap .bottom-area .card-zone .card .box-place .box .tit p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .title p:first-child {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .box-place {
    grid-template-columns: 1fr;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .box-place .box {
    padding: 4px;
    border-radius: 10px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .box-place .box .tit {
    margin-bottom: 0;
    border-radius: 6px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .box-place .box > p {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .box-place .box > p.one {
    margin: 23px 0 21px;
  }
  #iptv
    .width-wrap
    .bottom-area
    .card-zone
    .card
    .box-place
    .box
    > p.select:before {
    left: 14px;
    font-size: 11px;
    letter-spacing: -0.22px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list {
    gap: 4px;
    padding: 0 4px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list.one {
    padding: 0 4px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list li {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card ul.benefit-list li img {
    width: 14px;
    margin: 4px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .price {
    padding: 12px 0;
    border-radius: 10px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .price p {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .notice-list {
    padding: 0 4px;
  }
  #iptv .width-wrap .bottom-area .card-zone .card .notice-list li {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  #video .width-wrap .tab-area button {
    font-size: 14px;
    letter-spacing: -0.28px;
    padding: 8px 13.5px;
  }

  /* no-margin */
  #no-margin .width-wrap > .box .bg {
    padding: 18px 44px;
  }
  #no-margin .width-wrap > .box h4 {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  #no-margin .width-wrap .title-zone {
    padding-top: 50px;
    margin: 40px 0;
  }
  #no-margin .width-wrap .title-zone::before {
    width: 270px;
    height: 72px;
  }
  #no-margin .width-wrap .title-zone p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #no-margin .width-wrap .box-area .box {
    padding: 30px;
    border-radius: 16px;
  }
  #no-margin .width-wrap .box-area .box.premium .bg {
    padding: 27.5px;
    border-radius: 14px;
  }
  #no-margin .width-wrap .box-area .box > img {
    width: 28px;
    top: -4px;
  }
  #no-margin .width-wrap .box-area .box .desc-zone {
    gap: 18px;
  }
  #no-margin .width-wrap .box-area .box .desc-zone p:first-child {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  #no-margin .width-wrap .box-area .box .desc-zone .list li {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #no-margin .width-wrap .box-area .box .desc-zone .list li i {
    padding: 0 5.5px 0 9.5px;
  }
  #no-margin .width-wrap .box-area .box .desc-zone .list li i.img {
    padding: 0 3px 0 7px;
  }
  #no-margin .width-wrap .info-zone p:nth-of-type(1) {
    margin: 40px 0 6px;
  }
  #no-margin .width-wrap .box-area .box .bg > a {
    font-size: 16px;
    letter-spacing: -0.32px;
    padding: 12px;
  }

  /* no */
  #no .width-wrap {
    gap: 40px;
  }

  #no .width-wrap .title-area p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  #no .width-wrap .title-area h3 {
    margin-top: 6px;
  }
  #no .width-wrap .box-area .box {
    border-radius: 16px;
  }
  #no .width-wrap .box-area .box p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  #no .width-wrap .bottom-area {
    gap: 30px;
  }

  #no .width-wrap .bottom-area .ani-zone {
    padding: 7px 87.5px 12px;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:nth-child(2) {
    width: 80%;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
  }

  #no .width-wrap .bottom-area .ani-zone img.aos-animate:last-child {
    width: 100%;
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
  }

  #no .width-wrap .bottom-area .line {
    height: 90px;
  }

  #no .width-wrap .bottom-area > p {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  /* together */
  #together .width-wrap h3:first-child {
    margin-bottom: 0;
  }

  #together .width-wrap .bottom-area {
    margin-top: 20px;
  }

  #together .width-wrap .bottom-area > p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  #together .width-wrap .bottom-area .right-zone {
    padding-left: 15.2%;
  }

  #together .width-wrap .bottom-area .right-zone li p:first-child {
    margin-bottom: 8px;
  }

  #together .width-wrap .bottom-area .right-zone li:nth-child(1),
  #together .width-wrap .bottom-area .right-zone li:nth-child(2),
  #together .width-wrap .bottom-area .right-zone li:nth-child(3),
  #together .width-wrap .bottom-area .right-zone li:nth-child(4) {
    padding: 30px 0;
  }

  #together .width-wrap .bottom-area .right-zone li:nth-child(1) {
    padding-top: 0;
  }

  #together .width-wrap .bottom-area .right-zone li p:first-child {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  #together .width-wrap .bottom-area .right-zone li p:last-child {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  /* kakao */
  #kakao .width-wrap {
    gap: 40px;
  }

  #kakao .width-wrap .img-area img {
    width: 74.1%;
  }

  #kakao .width-wrap .text-area p:nth-child(3) {
    font-size: 16px;
    letter-spacing: -0.32px;
    margin: 16px 0 30px;
  }

  #kakao .width-wrap .text-area a {
    padding: 10px 20px;
    font-size: 16px;
  }

  #kakao .width-wrap .text-area a svg {
    width: 14px;
    height: 14px;
  }
}
@media all and (max-width: 375px) {
  #review .width-wrap .review-list {
    height: 881px;
  }
}
