@charset "UTF-8";
/* Common */
h1.menu_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

/* MAIN */
.home__inner {
  width: 100%;
  height: 100%;
}

.home__inner .sec__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.main_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.main_title .btn_link {
  font-weight: 500;
  line-height: 24px;
  color: #505050;
}

.main_title .btn_link span {
  padding-right: 20px;
  position: relative;
}

.main_title .btn_link span:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/common/icon_main_tit_arrow.svg) no-repeat center center / contain;
}

.main_sec1 {
  width: 100%;
  height: 480px;
  background: url(../_img/main_sec1_bg.png) no-repeat center center / cover;
  position: relative;
}

.main_sec1 .sec__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.main_sec1 .sec__inner .title span {
  color: rgba(255, 255, 255, 0.5);
}

.main_sec1 .sec__inner .title h1 {
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 62px;
  background: linear-gradient(to right, #59BEE2 0%, #317CC1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.main_sec1 .sec__inner .title p {
  color: #fff;
  line-height: 24px;
}

.main_sec2 {
  background-color: #F2F4F8;
  padding: 40px 0;
}

.data_analysis_navi {
  display: flex;
  align-items: center;
  gap: 8px;
}

.data_analysis_navi .data_analysis {
  flex: 1;
  border-radius: 20px;
  background-color: #fff;
  padding: 32px;
  position: relative;
  transition: 0.35s;
}

.data_analysis_navi .data_analysis:hover {
  box-shadow: 6px 6px 20px rgb(0, 0, 0, 0.04);
}

.data_analysis_navi .data_analysis:after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 36px;
  right: 32px;
  opacity: 0;
  transition: 0.35s;
  background: url(../_img/main_navi_go.svg) no-repeat center center / contain;
}

.data_analysis_navi .data_analysis:hover:after {
  opacity: 1;
}

.data_analysis .icon {
  width: 48px;
  height: 48px;  
}

.data_analysis .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.data_analysis h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

.data_analysis p {
  font-weight: 500;
  line-height: 140%;
  color: #767676;
}

.main_sec3 {
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 140px;
}

.main_sec3 .news_slide {
  display: none;
}

.main_sec3 .news_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 140px;
}

.main_sec3 .news_list .news_item {
  width: calc(25% - 24px);
}

.main_sec3 .service_member {
  margin-top: 28px;
}

.main_sec4 {
  width: 100%;
  background-color: #F7F7FB;
  padding-top: 80px;
  padding-bottom: 152px;
}

.main_sec4 .sec__inner {
  display: flex;
  align-items: flex-start;
  gap: 102px;
}

.main_sec4 .contactus_title {
  width: 498px;
  flex-shrink: 0;
}

.main_sec4 .contactus_title h2{
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.main_sec4 .contactus_title ul {
  margin-top: 40px;
}

.main_sec4 .contactus_title ul li {
  margin-bottom: 8px;
  line-height: 24px;
  color: #505050;
  padding-left: 30px;
  position: relative;
}

.main_sec4 .contactus_title ul li:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/common/icon_ul_check.svg) no-repeat center center / contain;
}

.main_sec4 .form_contactus {
  width: 100%;
}

/* Mobile */
@media screen and (max-width:767px) {
  .main_title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }

  .main_sec1 {
    height: 480px;
  }

  .main_sec1 .sec__inner {
    justify-content: center;
  }

  .main_sec1 .sec__inner .title {
    text-align: center;
  }

  .main_sec1 .sec__inner .title h1 {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 12px;
    line-height: 32px;
  }

  .main_sec1 .sec__inner .title p {
    font-size: 14px;
    line-height: 20px;
  }

  .main_sec2 {
    padding: 32px 0;
  }

  .data_analysis_navi {
    flex-direction: column;
  }

  .data_analysis_navi .data_analysis {  
    padding: 20px;
    width: 100%;
  }

  .data_analysis_navi .data_analysis:after {
    top: 24px;
    right: 20px;
  }

  .data_analysis h4 {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .data_analysis p {
    font-size: 14px;
    line-height: 20px;
  }

  .main_sec3 {
    padding-bottom: 56px;
  }

  .main_sec3 .news_list { 
    display: none;
  }

  .main_sec3 .news_slide {
    display: block;
    margin-top: 16px;
    margin-bottom: 112px;
  }

  .main_sec3 .news_swiper {
    padding: 0 0;
  }

  .main_sec4 {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .main_sec4 .sec__inner {
    flex-direction: column;
    row-gap: 24px;
  }

  .main_sec4 .contactus_title {
    width: 100%;
  }

  .main_sec4 .contactus_title h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .main_sec4 .contactus_title ul {
    margin-top: 24px;
  }

  .main_sec4 .contactus_title ul li {
    font-size: 14px;
    line-height: 20px;
  }

  .main_sec4 .contactus_title ul li:before {
    width: 20px;
    height: 20px;
  }
}
/* 회사소개 */
.intro__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 84px;
  padding: 0 20px;
  padding-bottom: 152px;
}

.intro_contents {
  display: flex;
  gap: 74px;
  margin-top: 80px;
}

.intro_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}

.intro_contents .related_tech {
  flex: 1;
}

.ai_tech_list {
  padding: 32px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ai_tech_list .ai_tech_item {
  flex: 1;
}

.ai_tech_item .icon {
  width: 100%;
  height: 56px;
  text-align: center;
  margin-bottom: 24px;
}

.ai_tech_item .icon img {
  width: 56px;
  height: 100%;
  object-fit: contain;
}

.ai_tech_item .desc {
  text-align: center;
}

.ai_tech_item .desc h5 {
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
}

.ai_tech_item .desc p {
  font-size: 14px;
  line-height: 20px;
  color: #767676;
}

.publication_list {
  margin-top: 80px;
}

.publication_links li {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #505050;
  padding-left: 9px;
  position: relative;
}

.publication_links li:before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #505050;
  position: absolute;
  left: 0;
  top: 9px;
}

.intro_contents .news_room {
  flex: 1;
}

.news_room .news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news_list .news_item {
  width: calc(50% - 20px);
}

.news_item .thum {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

.news_item .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_item .desc {
  margin-top: 16px;
}

.news_item .desc h5.tit {
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 26px;
  height: 26px;
}

.news_item .desc p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 20px;
  height: 40px;
  margin-top: 8px;
  color: #767676;
}

.related_tech .mo_news_slide {
  display: none;
}

/* Mobile */
@media screen and (max-width:900px) {
  .intro__inner {
    margin-top: 56px;
    padding: 0;
    padding-bottom: 80px;
  }

  .intro__inner>.title {
    padding: 0 20px;
  }
  .intro_contents {
    flex-direction: column;
    gap: 0px;
    margin-top: 56px;
  }

  .intro_title {
    font-size: 20px;
    line-height: 28px;
  }

  .intro_contents .related_tech .ai_tech {
    padding: 0 20px;
  }

  .ai_tech_list {
    padding: 8px 0px;
    flex-direction: column;
    row-gap: 40px;
  }

  .ai_tech_item .icon {
    margin-bottom: 16px;
  }

  .ai_tech_item .desc h5 {
    margin-bottom: 4px;
  }

  .ai_tech_item .desc p { 
    font-size: 13px;
    line-height: 18px;
  }

  .publication_list {
    margin-top: 56px;
    padding: 20px;
  }

  .publication_links li { 
    font-size: 13px;
    line-height: 18px;
  }

  .publication_links li:before {
    top: 7px;
  }

  .intro_contents .news_room {
    display: none;
  }

  .related_tech .mo_news_slide {
    display: block;
    background-color: #F7F7FB;
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .related_tech .mo_news_slide .intro_title {
    padding-left: 20px;
  }

  .news_swiper {
    padding-left: 20px;
  }

  .news_item .thum {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .news_item .desc h5.tit {
    font-size: 16px;
    line-height: 24px;
    height: 24px;
  }

  .news_item .desc p {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
  }
}

/* 팀소개 및 서비스 문의 */
.service__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 84px;
  padding: 0 20px;
  padding-bottom: 152px;
}

.service__inner .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service__inner .title .sub_tit {
  max-width: 498px;
}

.service__inner .title .sub_tit h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #111111;
}

.service__inner .title .sub_tit p {
  line-height: 24px;
  color: #505050;
  margin-top: 12px;
}

.service_member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  border-radius: 20px;
  background: linear-gradient(to right, #59BEE2, #317CC1);
  background-color: #F7F7FB;
  padding: 50px 80px;
}

.service_member h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}

.service_member .member_cnt {
  display: flex;
  align-items: center;
}

.service_member .member_cnt .member {
  width: 240px;
  text-align: center;
  border-right: 1px solid #E5E5EC;
}

.service_member .member_cnt .member:last-child {
  border-right: none;
}

.service_member .member_cnt .member h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 52px;
}

.service_member .member_cnt .member p {
  margin-top: 8px;
  font-weight: 500;
  color: #fff;
}

.member_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
  row-gap: 56px;
}

.member_list .member_item {
  min-width: 305px;
  width: calc((25% - 20px));
}

.member_item .thum {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.member_item .thum img {
  width: 50%;
}

.member_item .desc {
  margin-top: 16px;
  padding: 0 8px;
}

.member_item .desc .info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.member_item .desc .info h5.name {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.member_item .desc .info span.dept {
  font-weight: 500;
  line-height: 24px;
  color: #317CC1;
}

.member_item .desc p {
  color: #767676;
  line-height: 24px;
}

/* Pad */
@media screen and (min-width: 768px) and (max-width:1200px) {
  .service_member {
    padding: 50px 40px;
  }

  .service_member .member_cnt .member {
    width: 180px;
  }
}

/* Mobile */
@media screen and (max-width:768px) {
  .service__inner {
    margin-top: 56px; 
    padding-bottom: 80px;
  }

  .service__inner .title {
    flex-direction: column;
    align-items: flex-start;
  }

  .service__inner .title .sub_tit {
    margin-top: 56px;
  }

  .service__inner .title .sub_tit h5 {
    font-size: 16px;
  }

  .service__inner .title .sub_tit p {
    font-size: 14px;
    line-height: 20px;
  }

  .service_member {
    flex-direction: column;
    row-gap: 16px;
    margin-top: 56px;
    border-radius: 12px;
    padding: 24px 11px;
  }

  .service_member h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .service_member .member_cnt {
    width: 100%;
  }

  .service_member .member_cnt .member {
    width: auto;
    flex: 1;
  }

  .service_member .member_cnt .member h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .service_member .member_cnt .member p {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
  }

  .member_list {
    margin-top: 32px;
    gap: 8px;
    row-gap: 32px;
  }

  .member_list .member_item {
    width: calc(50% - 4px);
    min-width: auto;
  }

  .member_item .thum {  
    height: auto;
  }

  .member_item .thum img {
    height: 100%;
    object-fit: cover;
  }

  .member_item .desc {
    margin-top: 8px;
    padding: 0 4px;
  }

  .member_item .desc .info {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2px;
  }

  .member_item .desc .info h5.name {  
    font-size: 16px;
    line-height: 24px;
  }

  .member_item .desc .info span.dept {
    font-size: 13px;
    line-height: 18px;
  }

  .member_item .desc p {
    font-size: 13px;
    line-height: 18px;
  }
}

/* 문의하기 */
.form_contactus .input_contents {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.form_contactus .input_contents > * {
  width: 50%;
}

.form_contactus .btn_brand:hover {
  box-shadow: 0 4px 4px rgb(0, 0, 0, 0.12);
}

.contact_agree {
  margin-top: 20px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact_agree .checkbox--typeA b {
  padding-left: 8px;
}

/* Mobile */
@media screen and (max-width:768px) {
  h1.menu_title {
    font-size: 24px;
    line-height: 32px;
  }

  .form_contactus .input_contents {
    flex-direction: column;
    margin-bottom: 8px;
  }

  .form_contactus .input_contents>* {
    width: 100%;
  }

  .contact_agree {
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

/* 회원가입 */
#wrap.signup {
  background-color: #EFEFF3;
}

.signup__inner {
  width: calc(100% - 40px);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 152px;
  background-color: #fff;
  border-radius: 24px;
  padding: 80px;
}

.signup__title p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #505050;
}

.signup__content {
  margin-top: 32px;
}

.form_signup .form__content:not(:last-of-type) {
  margin-bottom: 20px;
}

.form_signup .form_id {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form_signup .form_id .btn_duplicate {
  flex-shrink: 0;
  width: 160px;
}

.form_signup .form__btns {
  margin-top: 32px;
}

/* Mobile */
@media screen and (max-width:768px) {
  .signup__inner {
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 32px 24px;
  }

  .signup__title p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .signup__content {
    margin-top: 24px;
  }

  .form_signup .form__content:not(:last-of-type) {
    margin-bottom: 16px;
  }

  .form_signup .form_id .btn_duplicate {
    width: 80px;
    font-size: 14px;
  }

  .form_signup .form__btns { 
    margin-top: 20px;
  }
}