@charset "utf-8";

@font-face {
  font-family: 'Centabel';
  src: url('/img/assets/centabel.woff2') format('woff2'),
  url('/img/assets/centabel.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*common*/
body, div, ul, li, p, span, b, strong, h1, h2, h3, h4, h5 {
  line-height: 1.5;
  word-break: keep-all;
}
h1, h2, h3, h4, h5 {line-height: 1.3}
img {max-width: 100%;}
.common-btn {
  background: #007dfe;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 30px;
  transition: all .2s;
  text-decoration: none;
  width: fit-content;
}
.common-btn b {
  font-size: 17px;
  color: #fff;
}
.common-btn svg {
  margin-left: 10px;
  transition: all .2s;
}
.common-btn svg .color {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.common-btn:hover {background: #292b2b;}
.common-btn:hover b {color: #fff;}
.common-btn:hover svg {margin-left: 20px;}
.common-btn:hover svg .color {stroke: #fff;}
.arrow-btn {
  background: #292b2b;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-btn svg {transform: rotate(-45deg)}
.arrow-btn svg .color {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.admin-btn {
  position: relative;
  z-index: 10;
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  color: #ef2727;
  display: inline-block;
}
.title {margin-bottom: 100px;}
.title p {
  font-size: 20px;
  color: #007dfe;
  font-weight: bold;
  margin-bottom: 22px;
}
.title h2 {
  font-size: 50px;
  color: #222;
}
.title h2 span {
  color: #007dfe;
  line-height: 1.3;
}
.title .desc {margin-top: 30px;}
.desc {
  font-size: 18px;
  line-height: 1.7;
}
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -60px;
}
.gallery-list li {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  margin-bottom: 60px;
}
.gallery-list li:nth-child(3n) {margin-right: 0;}
.gallery-list li .list-a {
  display: block;
  cursor: pointer;
}
.gallery-list li .img {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 353 / 410;
  background: #fff;
}
.gallery-list li .img .inner {
  overflow-y: auto;
  padding: 15px;
  height: 100%;
}
.gallery-list li .img .inner::-webkit-scrollbar {width: 5px;}
.gallery-list li .img .inner::-webkit-scrollbar-track {background-color:#fff; border-radius: 5px}
.gallery-list li .img .inner::-webkit-scrollbar-thumb {background-color:#ddd; border-radius: 5px;}
.gallery-list li .img img {
  max-width: none;
  width: 100%;
}
.gallery-list li .txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}
@media all and (max-width: 1024px) {
  .title {margin-bottom: 50px;}
  .title h2 {font-size: 40px;}
}
@media all and (max-width: 767px) {
  .title {margin-bottom: 30px;}
  .title h2 {font-size: 24px;}
  .title p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .title .desc {margin-top: 15px;}
  .desc {
    font-size: 15px;
    line-height: 1.5;
  }
  .common-btn {
    height: 38px;
    padding: 0 15px;
  }
  .common-btn b {font-size: 14px;}
  .arrow-btn {
    width: 28px;
    height: 28px;
  }
  .gallery-list {margin-bottom: -30px;}
  .gallery-list li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 30px;
  }
  .gallery-list li:nth-child(3n) {margin-right: 15px;}
  .gallery-list li:nth-child(2n) {margin-right: 0;}
  .gallery-list li .img {border-radius: 5px;}
  .gallery-list li .img .inner {padding: 10px;}
  .gallery-list li .img .inner::-webkit-scrollbar {width: 3px;}
  .gallery-list li .txt {
    font-size: 15px;
    margin-top: 12px;
  }
}

/*main*/
.main {margin-top: -100px;}
.main section {position: relative;}
.main .hero {
  overflow: hidden;
  height: calc(100vh + 100px);
}
.main .hero .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 0 30px;
  text-align: center;
  z-index: 1;
}
.main .hero .txt h2 {
  font-family: 'Centabel', sans-serif;
  color: #007dfe;
  margin-bottom: 50px;
  font-size: 120px;
  font-weight: normal;
  line-height: 1;
}
.main .hero .txt p {
  font-size: 24px;
  font-weight: bold;
  color: #434d4f;
}
.main .hero .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #edeeeb;
  opacity: 0;
  transition: opacity .4s ease;
}
.main .hero .video.video-loaded video {opacity: 1;}
.main .work {
  margin-top: -100px;
  z-index: 1;
  background: #fff;
  border-radius: 100px 100px 0 0;
  padding: 180px 0 30px;
}
.main .work .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .work .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.main .work .category {
  position: sticky;
  top: 100px;
  width: 200px;
  height: calc(100vh - 100px);
}
.main .work .category > div {margin-bottom: 30px;}
.main .work .category > div:last-child {margin-bottom: 0;}
.main .work .category h4 {
  font-size: 14px;
  margin-bottom: 20px;
}
.main .work .category li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.main .work .category li:last-child {margin-bottom: 0;}
.main .work .category li span {
  font-size: 16px;
  color: #888;
  transition: all .2s;
}
.main .work .category li svg {
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .2s;
}
.main .work .category li svg .color {
  fill: none;
  stroke: #007dfe;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.main .work .category li.active span,
.main .work .category li:hover span {color: #007dfe;}
.main .work .category li.active svg,
.main .work .category li:hover svg {
  opacity: 1;
  transform: translateX(0);
}
.main .work .gallery-list {
  width: calc(100% - 200px);
  padding-left: 80px;
  overflow: hidden;
}

@media all and (max-width: 1024px) {
  .main .hero .txt h2 {font-size: 80px;}
  .main .work .gallery-list {padding-left: 40px;}
}
@media all and (max-width: 991px) {
  .main .work .category {width: 120px;}
  .main .work .gallery-list {width: calc(100% - 120px)}
}
@media all and (max-width: 767px) {
  .main {margin-top: -50px;}
  .main .hero {height: calc(100vh + 50px);}
  .main .hero .txt h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .main .hero .txt p {font-size: 18px;}
  .main .work {
    margin-top: -50px;
    border-radius: 30px 30px 0 0;
    padding: 60px 0 20px;
  }
  .main .work .title {display: block;}
  .main .work .title .common-btn {margin-top: 15px;}
  .main .work .category {
    width: 100%;
    position: static;
    height: auto;
  }
  .main .work .category h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .main .work .category > div {margin-bottom: 12px;}
  .main .work .category ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    margin: 0 -15px;
    padding: 0 15px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main .work .category ul::-webkit-scrollbar {display: none;}
  .main .work .category li {
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0;
  }
  .main .work .category li span {font-size: 15px;}
  .main .work .category li svg {display: none;}
  .main .work .gallery-list {
    width: 100%;
    padding: 20px 0 0;
  }
}

/*고객후기*/
.sub-review .title {text-align: center;}
.sub-review .title .keywords {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 50px auto 0;
}
.sub-review .title .keywords::before {
  content: "";
  background: linear-gradient(to right, #fff, transparent);
  display: block;
  width: 150px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sub-review .title .keywords::after {
  content: "";
  background: linear-gradient(to left, #fff, transparent);
  display: block;
  width: 150px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.sub-review .title .keywords > span {
  background: rgba(0, 125, 254, 0.06);
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-block;
  color: #007dfe;
  font-weight: 500;
  margin: 5px 3px;
}
.sub-review .review-total {
  background: #f2f3f8;
  border-radius: 20px;
  display: flex;
  padding: 40px 0;
  margin-bottom: 50px;
}
.sub-review .review-total > div {
  width: 33.33%;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.sub-review .review-total > div:last-child {border-right: none;}
.sub-review .review-total .number {
  font-size: 36px;
  color: #3a8afd;
  font-weight: bold;
  margin-bottom: 10px;
}
.sub-review .review-total .number span {
  font-size: 50px;
  color: #292b2b;
  line-height: 1;
}
.sub-review .review-total p {
  font-size: 18px;
  font-weight: bold;
  opacity: 0.7;
}
.sub-review .review-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.sub-review .review-list > li {
  width: calc((100% - 40px)/3);
  margin-bottom: 20px;
  margin-right: 20px;
}
.sub-review .review-list > li:nth-child(3n) {margin-right: 0;}
.sub-review .review-list .box {
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 30px;
  padding: 35px;
}
.sub-review .review-list .profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.sub-review .review-list .profile .logo {
  width: 55px;
  height: 55px;
  border-radius: 55px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
.sub-review .review-list .profile .name {
  width: calc(100% - 55px);
  padding-left: 15px;
}
.sub-review .review-list .profile .name b {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #222;
}
.sub-review .review-list .profile .name a {padding-left: 4px;}
.sub-review .review-list .profile .name a img {width: 14px;}
.sub-review .review-list .profile .name p {
  font-size: 14px;
  opacity: 0.5;
  margin-top: 5px;
}
.sub-review .review-list .content {
  font-size: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap:break-word;
  line-height: 1.5em;
  height: 4.5em;
  overflow: hidden;
}
.sub-review .review-list .more-btn {
  margin-top: 15px;
  display: block;
  background: rgba(67,77,79,0.4);
  color: #fff;
  border-radius: 30px;
  padding: 2px 15px;
  margin-left: auto;
  width: fit-content;
  transition: all .2s;
}
.sub-review .review-list .box:hover {border: 1px solid #acb6b8;}
.sub-review .review-list .box:hover .more-btn {background: #434d4f;}
.review-modal .modal-dialog {max-width: 600px;}
.review-modal .modal-body {padding: 50px;}
.review-modal .modal-title {margin-bottom: 30px;}
.review-modal .modal-title h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.review-modal .modal-title p {
  font-size: 16px;
  color: #666;
  font-weight: normal;
}
.review-modal .btn-close {
  position: absolute;
  top: 50px;
  right: 50px;
  background: none;
  border: none;
}
.review-modal .modal-body .link {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all .2s;
}
.review-modal .modal-body .link b {
  font-size: 16px;
  width: calc(100% - 30px);
  padding: 0 10px;
}
.review-modal .modal-body .link .arrow-btn {
  width: 30px;
  height: 30px;
}
.review-modal .modal-body .link:hover {border: 1px solid #000;}
.review-modal .modal-body .desc {
  line-height: 1.5;
  margin-top: 30px;
}
.review-modal .common-btn {
  width: 100%;
  height: 60px;
  border-radius: 0;
}
@media all and (max-width: 1024px) {
  .sub-review .title .keywords {margin-top: 30px;}
  .sub-review .title .keywords > span {
    font-size: 18px;
    padding: 6px 20px;
  }
  .sub-review .review-list .box {padding: 25px;}
  .sub-review .review-list .profile {margin-bottom: 15px;}
  .sub-review .review-list .profile .logo {
    width: 48px;
    height: 48px;
  }
  .sub-review .review-list .profile .name {width: calc(100% - 48px)}
}
@media all and (max-width: 991px) {
  .sub-review .review-list .profile .name b {font-size: 16px;}
}
@media all and (max-width: 767px) {
  .sub-review .title .keywords {margin-top: 20px;}
  .sub-review .title .keywords::before,
  .sub-review .title .keywords::after {width: 100px;}
  .sub-review .title .keywords > span {
    font-size: 13px;
    padding: 4px 12px;
    margin: 3px 2px;
  }
  .sub-review .review-total {
    padding: 30px 0;
    margin-top: 40px;
    border-radius: 10px;
  }
  .sub-review .review-total > div {padding: 0 15px;}
  .sub-review .review-total .number {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .sub-review .review-total .number span {font-size: 24px;}
  .sub-review .review-total p {font-size: 14px;}
  .sub-review .review-list {margin-bottom: -10px;}
  .sub-review .review-list > li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .sub-review .review-list > li:nth-child(3n) {margin-right: 10px;}
  .sub-review .review-list > li:nth-child(2n) {margin-right: 0;}
  .sub-review .review-list .box {
    padding: 15px;
    margin: 5px 0;
    border-radius: 10px;
  }
  .sub-review .review-list .profile {margin-bottom: 10px;}
  .sub-review .review-list .profile .logo {
    width: 32px;
    height: 32px;
  }
  .sub-review .review-list .profile .name {
    width: 100%;
    padding: 8px 0 0;
  }
  .sub-review .review-list .profile .name b {
    font-size: 15px;
    word-break: break-all;
  }
  .sub-review .review-list .profile .name p {font-size: 12px;}
  .sub-review .review-list .profile a {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .sub-review .review-list .content {font-size: 14px;}
  .sub-review .review-list .more-btn {
    margin-top: 10px;
    padding: 1px 8px;
    font-size: 12px;
  }
  .review-modal .modal-body {padding: 25px;}
  .review-modal .modal-title {
    margin-bottom: 20px;
    padding-right: 40px;
  }
  .review-modal .modal-title h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .review-modal .modal-title p {font-size: 14px;}
  .review-modal .btn-close {
    top: 25px;
    right: 25px;
  }
  .review-modal .btn-close img {width: 16px;}
  .review-modal .modal-body .link {padding: 6px;}
  .review-modal .modal-body .link b {
    font-size: 14px;
    width: calc(100% - 28px);
    padding: 0 8px;
    word-break: break-all;
  }
  .review-modal .modal-body .link .arrow-btn {
    width: 28px;
    height: 28px;
  }
  .review-modal .modal-body .desc {margin-top: 15px;}
  .review-modal .common-btn {height: 50px;}
}

/*자주 묻는 질문*/
.sub-faq .title {text-align: center;}
.sub-faq .category {margin-top: 50px;}
.sub-faq .category ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.sub-faq .category ul li {
  cursor: pointer;
  transition: all .2s;
}
.sub-faq .category ul li span {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.sub-faq .category ul li span::before {
  content: "";
  background: #007dfe;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  display: block;
  margin: 0 auto 3px;
  opacity: 0;
}
.sub-faq .category ul li:hover,
.sub-faq .category ul li.active {color: #007dfe;}
.sub-faq .category ul li.active span::before {opacity: 1;}
.sub-faq .faq-list li {
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.05);
}
.sub-faq .faq-list li .question::before {background: #e8e8e8;}
.sub-faq .faq-list li {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 25px 35px;
  transition: all .2s;
}
.sub-faq .faq-list li:last-child {margin-bottom: 0;}
.sub-faq .faq-list li .question {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  padding-right: 50px;
}
.sub-faq .faq-list li .question::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #e8e8e8;
}
.sub-faq .faq-list li .question::after {
  content: "";
  background: url(/img/assets/arrow_select.svg) center / cover no-repeat;
  display: block;
  width: 12px;
  aspect-ratio: 10 / 5;
  position: absolute;
  top: 12px;
  right: 9px;
  transition: all .2s;
  transform-origin: center;
  z-index: 1;
}
.sub-faq .faq-list li .answer {
  color: #444;
  padding-top: 20px;
  border-top: 1px solid #434d4f;
  margin-top: 20px;
  display: none;
}
.sub-faq .faq-list li.active {border-radius: 20px;}
.sub-faq .faq-list li.active .question::after {transform: rotate(180deg)}
@media all and (max-width: 1024px) {
  .sub-faq .category {margin-top: 30px;}
}
@media all and (max-width: 991px) {
  .sub-faq .faq-list li {padding: 20px 25px;}
}
@media all and (max-width: 767px) {
  .sub-faq .category {margin-top: 20px;}
  .sub-faq .category ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    margin: 0 -15px;
    padding: 0 15px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sub-faq .category ul::-webkit-scrollbar {display: none;}
  .sub-faq .category li {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .sub-faq .category ul li span {font-size: 15px;}
  .sub-faq .faq-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .sub-faq .faq-list li .question {
    font-size: 15px;
    padding-right: 35px;
  }
  .sub-faq .faq-list li .question::before {
    width: 24px;
    height: 24px;
  }
  .sub-faq .faq-list li .question::after {
    width: 10px;
    top: 10px;
    right: 7px;
  }
  .sub-faq .faq-list li .answer {
    padding-top: 15px;
    margin-top: 12px;
  }
  .sub-faq .faq-list li.active {border-radius: 10px;}
}
@media all and (max-width: 320px) {
  .sub-faq .category ul {justify-content: start;}
}