@import "font.css";
@import "reset.css";

body.fix {
  overflow: hidden;
}
.loc {
  min-height: 100vh;
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.icon {
  text-indent: -9999px;
}
.btn {
  cursor: pointer;
}
.cen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.under {
  text-decoration: underline;
}

/* 형광펜 */
.highlight {
  display: inline;
  box-shadow: inset 0 -20px 0 #e3e9ff;
  /*-10px은 highlight의 두께*/
}

.highlight:after {
  content: "";
  width: 0;
  height: 10px;
  display: inline-block;
  background: #d9fcdb;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
}

header.on {
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: calc(100% - 40px);
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgb(22 22 49 / 24%);
  max-width: 1248px;
  padding: 0 24px;
  animation: fadeInDown 1s;
  border-bottom: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(-50%);
  }
}

header .logo {
  width: 104px;
  height: 28px;
}

header .nav_area ul li.btn_join {
  position: relative;
}
header .nav_area ul li.btn_speak {
  margin-left: 5vw;
}

header .nav_area ul li.btn_apply {
  padding: 8px 12px;
  background: #375ff0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .nav_area ul li a {
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}
header .nav_area ul li.btn_speak a {
  font-weight: 600;
  color: #375ff0;
}
header .nav_area ul li.btn_apply a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}

header .nav_area ul li .bubble {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  background: #375ff0;
  box-shadow: 0 4px 12px rgba(3, 31, 132, 0.2);
  border-radius: 8px;
  width: max-content;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: #ffffff;
  padding: 12px 16px;
  animation: clouds 1s infinite alternate;
}

header .nav_area ul li .bubble.hide {
  display: none;
}

@keyframes clouds {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 6px);
  }
}

header .nav_area ul li .bubble:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #375ff0;
  border-top: 0;
  margin-left: -6px;
  margin-top: -6px;
}
header .nav_area ul li .bubble > span {
  color: #ffc734;
}
header .nav_area .btn_log {
  width: 100%;
  height: 48px;
  background: #f8f8fa;

  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}

.gnb li:hover .sub-menu {
  	display: block;
}

.gnb .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translate(-50%, 0%);
  width: 250px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  display: none;
  z-index: 1;
}

.gnb .sub-menu li {
  height: 52px;
  margin: 0;
}

.gnb .sub-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #828282;
  margin: auto;
}

.gnb .sub-menu li a:hover {
  color: #375ff0;
}


/* 채널톡 */
.icon_chat {
  position: fixed;
  bottom: 80px;
  right: 80px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.icon_chat img {
  width: 40px;
}
section {
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 페이징 */
.pagenation {
  display: flex;
  justify-content: center;
}
.pagenation ul {
  display: flex;
  align-items: center;
}
.pagenation ul li + li {
  margin-left: 8px;
}
.pagenation ul li:first-child,
.pagenation ul li:last-child {
  width: 40px;
  height: 33px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  text-indent: -9999px;
}

.pagenation ul li.prev {
  border-radius: 8px 0 0 8px;
  background: url("../../images/icon/page_prev.svg") no-repeat center / 16px 16px;
}
.pagenation ul li.next {
  border-radius: 0 8px 8px 0;
  background: url("../../images/icon/page_next.svg") no-repeat center / 16px 16px;
}
.pagenation ul li.dot {
  text-indent: -9999px;
  background: url("../../images/icon/page_dot.svg") no-repeat center / 16px 16px;
}
.pagenation ul li a {
  width: 33px;
  height: 33px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagenation ul li.active a {
  border: 1px solid #e0e0e0;
  color: #375ff0;
}

/* 더보기 */
.more_view {
  max-width: 460px;
  width: 100%;
  height: 48px;
  background: #375ff0;
  border-radius: 8px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-top: 60px;
  display: none;
}

/* 폼 */
form {
  width: 100%;
  max-width: 460px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input:not([type="radio"]) {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #1a1a1a;
  box-sizing: border-box;
}

input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #828282;
}
input:focus {
  border: 1px solid #375ff0;
}
input.warn {
  background: #fef9f9;
  border: 1px solid #f55251;
}

input + .txt_wran {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #f55251;
  margin-top: 12px;
}
input + .txt_wran.pass {
  color: #375ff0;
}
.txt_wran.hide:not(.txt_wran.pass) {
  display: none;
}

select {
  background: #ffffff url("../../images/icon/arrow_select.svg") no-repeat 95% / 20px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  height: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  padding: 0 16px;
  -webkit-appearance: none; /* for chrome */
  -moz-appearance: none; /*for firefox*/
  appearance: none;
}

/* hover 버튼 */
.btn_hover {
  position: relative;
  width: 100%;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #333333;
  border-radius: 8px;
  margin: auto;
  overflow: hidden;
}
.btn_hover:hover {
  cursor: pointer;
}

.btn_hover div {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 50px;
}
.btn_hover div:nth-child(1) {
  color: #ffffff;
  background: #333333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_hover div:nth-child(2) {
  top: -16px;
  background: #375ff0;
  width: 208px;
  height: 208px;
  border-radius: 100%;
  transform: translate(460px, 0);
}
.btn_hover div:nth-child(3) {
  color: #ffffff;
  right: 100%;
  transition: left 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_gray {
  width: 100%;
  height: 50px;
  background: #e0e0e0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  pointer-events: none;
}

.btn_hover.btn_gray {
  pointer-events: none;
  background: #e0e0e0;
}
.btn_hover.btn_gray div:nth-child(1) {
  background: #e0e0e0;
}

.btn_blue {
  width: 100%;
  height: 50px;
  background: #375ff0 !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.btn_black {
  width: 100%;
  height: 50px;
  background: #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.btn_gray.btn_blue {
  pointer-events: all;
}

/* 체크박스 */
.chk_wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.chk_wrap input + label {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #1a1a1a;
}
.chk_wrap input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 32px;
  height: 32px;
  text-align: center;
  background: url("../../images/icon/true_disable.svg") no-repeat center / 100%;
  border-radius: 50%;
  box-sizing: border-box;
}
.chk_wrap input:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: url("../../images/icon/true.svg") no-repeat center / 100%;
}

/* 팝업 */

.pop_bg,
.pop_bg_pw {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 900;
}

.pop_ct {
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 46px;
  display: none;
  z-index: 901;
}
.pop_ct.fixed {
  top: 40px;
  transform: translate(-50%, 0%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.pop_ct .icon_close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

/* 경고창 */
.pop_ct.pop_warning {
  max-width: 360px;
  width: 80vw;
  padding: 40px;
}

.pop_ct.pop_warning h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pop_ct.pop_warning .icon_warn {
  margin-right: 4px;
}
.pop_ct.pop_warning p {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #333333;
  margin: 12px 0 32px;
  word-break: keep-all;
}
.pop_ct.pop_warning .btn_close {
  width: 130px;
  height: 44px;
  background: #f55251;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: auto;
  cursor: pointer;
}

/* 팝업 팁 */
.pop_ct .pop_tip {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1a1a1a;
  background: #f8f8fa;
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
}

.pop_ct .pop_tip::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("../../images/icon/pin.png") no-repeat center / 100%;
  margin-right: 8px;
}
.pop_ct .pop_tip span {
  font-weight: 600;
  color: #375ff0;
  margin-left: 4px;
}

/* 기본 팝 */
.pop_basic {
  max-width: 438px;
  width: calc(100vw - 40px);
  padding: 60px 50px 40px;
}
.pop_basic p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 40px;
  word-break: keep-all;
}
.pop_basic .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_basic .btn {
  width: 100%;
  height: 50px;
  background: #1a1a1a;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_basic .btn_wrap .btn {
  width: 50%;
}
.pop_basic .btn_wrap .btn + .btn {
  margin-left: 12px;
}
/* TAB */
ul.tabs {
  display: flex;
}

ul.tabs li {
  width: auto;
  height: 42px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #8b95a1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8fa;
  border-radius: 8px;
}

ul.tabs li + li {
  margin-left: 12px;
}

ul.tabs li.current {
  background: #375ff0;
  color: #ffffff;
}

.tab_content {
  display: none;
}

.tab_content.current {
  display: inherit;
}
/* TAB End */

/* 견적 테이블 */

.estimate_table {
  width: 100%;
  border-top: 2px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.estimate_table tr {
  border-top: 1px dashed #e0e0e0;
}
.estimate_table th {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #4f4f4f;
  text-align: left;
  padding: 24px 0;
}
.estimate_table td {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1a1a1a;
  padding: 24px 0 24px 12px;
}
.estimate_table td > ul li + li {
  margin-top: 12px;
}
.estimate_table td > ul.file_list li {
  position: relative;
  padding-left: 12px;
}
.estimate_table td > ul.file_list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 50%;
}
.estimate_table td > ul.file_list li > span {
  color: #4e5968;
}

/* 검색 셀렉트 박스 */
.select2-container {
  width: 100% !important;
  height: 50px;
  flex: 1;
}
.select2-container--default .select2-selection--single {
  width: 100%;
  height: 50px !important;
  background: #ffffff;
  border: 1px solid #e0e0e0 !important;
  box-sizing: border-box;
  border-radius: 8px !important;
  padding: 16px;
  font-weight: 300;
  font-size: 18px;
  color: #1a1a1a;
  display: block;
  display: flex;
  align-items: center;
  background: #ffffff url(../../images/icon/arrow_select.svg) no-repeat 98% / 20px 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-container--default .select2-selection--single:focus {
  border: 1px solid #375ff0;
}
.select2-container .select2-selection--single {
  height: 50px !important ;
  padding: 0 16px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 32px;
}
footer {
  background: #1a1a1a;
  box-sizing: border-box;
  padding: 60px 52px;
}
footer .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}
footer h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #bdbdbd;
  margin-bottom: 16px;
}

footer .offices .list_wrap {
  display: flex;
  align-items: flex-start;
  margin: 40px 0;
}

footer .offices .column + .column {
  margin-left: 7vw;
}

footer .offices ul li {
  font-weight: 300;
  font-size: 13px;
  line-height: 22px;
  color: #828282;
}

footer .terms ul {
  display: flex;
  align-items: center;
}
footer .terms ul li + li {
  margin-left: 40px;
}
footer .terms ul li a {
  font-weight: 300;
  font-size: 13px;
  line-height: 22px;
  color: #bdbdbd;
}
footer .sns_area {
  display: flex;
  align-items: center;
}
footer ul.sns_area li + li {
  margin-left: 24px;
}
footer .icon {
  width: 32px;
  height: 32px;
  display: block;
}

footer .speaking {
  background: url("../../images/icon/speaking.svg") no-repeat center / 100%;
}
footer .youtube {
  background: url("../../images/icon/youtube.svg") no-repeat center / 100%;
}
footer .instagram {
  background: url("../../images/icon/instagram.svg") no-repeat center / 100%;
}

@media all and (min-width: 1000px) {
  .btn_hover:hover div:nth-child(2) {
    transition: all 0.5s ease;
    transform: translate(0px, 0);
    width: 100%;
    max-width: 460px;
    height: 66px;
    border-radius: 8px;
  }
  .btn_hover:hover div:nth-child(3) {
    right: 0;
  }
}

@media all and (max-width: 920px) {
  body.fix {
    position: fixed;
    left: 0;
    width: 100%;
    overflow: hidden;
    touch-action: none;
  }
  header {
    height: 60px;
  }
  header.on {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100vw;
    height: 60px;
    border-radius: 0;
    padding: 0 20px;
  }

  .icon_chat {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }

  .icon_chat img {
    width: 30px;
  }
}

@media all and (max-width: 800px) {
  footer .inner {
    flex-direction: column;
  }
  footer .sns_area {
    margin-top: 40px;
  }
}

@media all and (max-width: 768px) {
  .pagenation {
    display: none;
  }
  .more_view {
    display: block;
  }

  /* 폼 */

  input:not([type="radio"]) {
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 17px;
  }

  input::placeholder {
    font-size: 14px;
    line-height: 17px;
  }
  input + .txt_wran {
    font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
  }

  select {
    font-size: 14px;
    line-height: 17px;
  }

  .select2-container--default .select2-selection--single {
    font-size: 14px;
    line-height: 17px;
    justify-content: center;
  }

  /* hover 버튼 */
  .btn_hover {
    height: 48px;
    font-weight: 500;
    font-size: 16px;
    background: #375ff0;
  }
  .btn_hover div:nth-child(1) {
    background: none;
  }

  .btn_hover div {
    height: 48px;
  }

  .btn_gray,
  .btn_blue {
    height: 48px;
    font-size: 14px;
    line-height: 17px;
  }
  .pop_ct .icon_close {
    width: 20px;
    top: 12px;
    right: 12px;
  }

  /* 경고창 */
  .pop_ct.pw_warning {
    padding: 32px 40px;
  }
  /* 팝업 팁 */
  .pop_ct .pop_tip {
    font-size: 12px;
    line-height: 16px;
    padding: 12px;
    margin-bottom: 20px;
  }

  /* 기본 팝 */
  .pop_basic {
    padding: 44px 20px 32px;
    max-width: 350px;
  }
  .pop_basic p {
    font-size: 16px;
    line-height: 20px;
  }
  .pop_basic p br {
    display: none;
  }
  .pop_basic .btn {
    height: 44px;
  }

  .pop_basic .btn_wrap .btn {
    font-size: 14px;
    line-height: 17px;
  }
  .pop_basic .btn_wrap .btn + .btn {
    margin-left: 8px;
  }
  ul.tabs li {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 100%;
  }

  ul.tabs li + li {
    margin-left: 8px;
  }

  /* 견적 테이블 */

  .estimate_table th {
    font-size: 13px;
    line-height: 16px;
    padding: 20px 0;
  }
  .estimate_table td {
    font-size: 14px;
    line-height: 17px;
    padding: 20px 0 20px 12px;
  }
  .estimate_table td > ul li + li {
    margin-top: 8px;
  }
}

@media all and (max-width: 767px) {
  footer .offices .list_wrap {
    flex-direction: column;
  }

  footer .offices .column + .column {
    margin-left: 0;
    margin-top: 40px;
  }

  footer .offices ul li br {
    display: none;
  }

  footer .terms ul li a {
    font-size: 13px;
    line-height: 16px;
  }

  footer ul.sns_area li + li {
    margin-left: 16px;
  }
  footer .icon {
    width: 24px;
    height: 24px;
  }
}
