@charset "utf-8";

/* 스킵 메뉴 */
#skip {position: relative;}
#skip a {position: absolute; left:0; top: -999px; width: 200px; border:1px solid #fff; color:#fff; text-align: center; background:#333; line-height: 30px; z-index: 9;}
#skip a:active,
#skip a:focus {top:0;}

/*******************************

메인화면 레이아웃

*******************************/

/** 해더 **/

html{height: -webkit-fill-available;}

#header
{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  flex-shrink: 0;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  height: 85px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

.header
{
  padding: 0 60px;
}

.header .logo
{
  flex-basis: 154px;
  flex-grow: 0;
  flex-shrink: 1;
}

.header .logo .logo_img
{
  display:block;
  width:154px;
  height:40px;
  background:url(../img/logo.png) no-repeat center center;
  background-size: 154px auto;
}

.header .gnb 
{
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 10px;
  
}

.header .gnb ul 
{
  text-align: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.header .gnb ul>li 
{
  padding: 0 25px;
  position: relative;
  list-style-type: none;
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.header .gnb ul>li a 
{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .gnb ul>li a:hover
{
  color:#3b65eb;
}

.header .gnb a::after 
{
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3b65eb; 
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s ease;
}

.header .gnb a:hover::after 
{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header .language a
{
  display:inline-block;
  font-size:16px;
  margin-right:24px;
  font-weight: 500;
  color:#999999;
  position: relative;
}

.header .language a.active
{
  color:#000;
}

.header .language a:last-child
{
  margin-right:0px;
}

.header .language a::before
{
  content: '';
  position: absolute;
  top: 5px;
  left: 44px;
  width: 1px;
  height: 12px;
  background-color: #ccc;
}

.header .language a:last-child::before
{
  content: '';
  position: absolute;
  top: 5px;
  left: 44px;
  width: 0;
  height: 0;
}

.header .category
{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 24px;
  cursor: pointer;
  display:none;
}

.header .category .bar
{
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  width: 100%;
  height: 2px;
  border: 0;
  background: #000;
  transition: opacity 0.3s, top 0.3s, transform 0.5s;
  transition-delay: 0.3s, 0.3s, 0s;
}

.header .category .bar:nth-child(2) {top:0; transform:rotate(0)}
.header .category .bar:nth-child(3) {top:11px; opacity:1}
.header .category .bar:nth-child(4) {top:22px; transform:rotate(0)}

.header .category.close .bar {background:#000; transition:background 1s, opacity 0.3s, top 0.3s, transform 0.5s; transition-delay:0s, 0s, 0s, 0.3s; }
.header .category.close .bar:nth-child(2) {top:11px; background:#000; transform:rotate(-45deg)}
.header .category.close .bar:nth-child(3) {opacity:0}
.header .category.close .bar:nth-child(4) {top:11px; background:#000; transform:rotate(45deg)}

/** full menu 시작 **/
#full_menu
{
  position:fixed;
  top:85px;
  width: 100%;
  right:-100%;
  height: calc(100% - 85px);
  background:#fff;
  z-index:9000;
  transition: all ease .5s;
  -webkit-transition: all ease .5s;
  -o-transition: all ease .5s;
  -moz-transition: all ease .5s;
  -ms-transition: all ease .5s;
  overflow: hidden;
  overflow-y: auto;
  padding-top:50px;
}

#full_menu.open
{
  right:0;
}

#full_menu
{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-content:space-between
}

#full_menu .menu a
{
  font-size: 38px;
  line-height: 2;
}

#full_menu .language
{
  padding-top: 50px;
  display: flex;
  align-items:center;
}

#full_menu .language .icon
{
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/language.png) no-repeat center center;
  background-size: 20px auto;
  margin-right:15px;
}

#full_menu .language a
{
  display:inline-block;
  font-size:20px;
  margin-right:24px;
  font-weight: 500;
  color:#999999;
  position: relative;
}

#full_menu .language a.active
{
  color:#000;
}

#full_menu .language a:last-child
{
  margin-right:0px;
}

#full_menu .language a::before
{
  content: '';
  position: absolute;
  top: 8px;
  left: 50px;
  width: 1px;
  height: 14px;
  background-color: #ccc;
}

#full_menu .language a:last-child::before
{
  content: '';
  position: absolute;
  top: 5px;
  left: 44px;
  width: 0;
  height: 0;
}

/** main_visual 시작 **/
#wrap
{
  display: flex;
  flex-direction: column;
}

.row
{
  width:1300px;
  margin:0 auto;
}

.main_visual
{
  height: calc(100vh - 160px);
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  overflow: hidden;
  margin-top: 85px;
  overflow: hidden;
  position: relative;
}

.main_visual .bg 
{
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/main_visual_bg.jpg) no-repeat center center;
  background-size: cover;
  z-index: -1;
  object-fit : cover;
  animation: slidein_img 5s ease 0s 1 normal both;
  -webkit-animation: slidein_img 5s ease 0s 1 normal both;
  transform-origin:50% 50%;
}

@keyframes slidein_img
{
  0% { -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1); transform: scale(1.1,1.1);}
  100% { -ms-transform: scale(1,1); -webkit-transform: scale(1,1); transform: scale(1,1);}
}


.main_visual .title h4
{
  color:#fff;
  font-weight: 500;
}

.main_visual .title_logo 
{
    display: block;
    width: 362px;
    height: 81px;
    background: url(../img/logo_w.png) no-repeat center center;
    background-size: 362px auto;
    margin-top: 30px;
}

.main_visual .app_btn
{
  display: flex;
  flex-direction: row;
  margin-top:120px;
}

.main_visual .app_btn a
{
  width:160px;
  height:57px;
  border:1px solid rgba(255,255,255,0.5);
  margin-right:10px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.main_visual .app_btn a:hover
{
  border:1px solid rgba(255,255,255,1);
  background-color:rgba(255,255,255,0.1);
}

.main_visual .app_btn a span
{
  font-size:18px;
  font-weight: 400;
  color:#fff;
  letter-spacing: 0;
}

.main_visual .app_btn .google_play .icon
{
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/google.png) no-repeat center center;
  background-size: 28px auto;
}

.main_visual .app_btn .appstore .icon
{
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/app.png) no-repeat center center;
  background-size: 28px auto;
}

.main_2
{
  width:100%;
  background-color:#f3f7ff;
  display:flex;
}

.main_2 .row
{
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.main_2 .row .img
{
  display: block;
  width:525px;
  height:360px;
  background: url(../img/news.png) no-repeat center center;
  background-size: 525px auto;
  overflow:hidden;
  border-radius: 30px;
  margin-right:80px;
}

.main_2 .row .txt h5
{
  font-weight: bold;
  color:#666;
}

.main_2 .row .txt h3
{
  font-weight: bold;
  color:#1a65ff;
}

.main_3
{
  width:100%;
  display:flex;
  align-items:center;
  position: relative;
}

.main_3 .row h5
{
  color:#1ab1ff;
  font-weight: 600;
}

.main_3 .row h3
{
  color:#fff;
  font-weight: bold;
}

.main_3 .bg 
{
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/main3_bg.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
  object-fit : cover;
}

.main_4
{
  width:100%;
  display:flex;
  align-items:center;
  position: relative;
}

.main_4 .row h5
{
  text-align: center;
  color:#999;
  font-weight: 500;
}

.main_4 .row h3
{
  text-align: center;
  font-weight: bold;
}

.main_4 .row h6
{
  text-align: center;
  margin-top:30px;
  margin-bottom:60px;
}

.main_4 .row .img
{
  width:1300px;
  height:430px;
  background: url(../img/main_vision.png) no-repeat center center;
  background-size: cover;
  margin:0 auto;
  border-radius: 20px;
}

.main_5
{
  width:100%;
  background-color:#f3f7ff;
  display:flex;
}

.main_5 .row h5
{
  text-align: center;
  color:#999;
  font-weight: 500;
}

.main_5 .row h3
{
  text-align: center;
  font-weight: bold;
  margin-bottom:80px;
}

.main_5 .row .img
{
  width:1300px;
  height:325px;
  background: url(../img/corevalue.png) no-repeat center center;
  background-size: contain;
  margin:0 auto;
}

.main_5 .row .img.eng
{
  height:360px;
  background: url(../img/corevalue_eng.png) no-repeat center center;
  background-size: contain;
}


.main_6
{
}

.main_6 h2
{
  font-weight: bold;
  text-align: center;
  margin-bottom:60px;
}

/**공지사항**/
.notice
{
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
}

.notice .notice_list
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
  justify-content: space-between;
}

.notice .notice_list .txtarea
{
  width: 60%;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
  align-self:center;
}

.notice .notice_list .txtarea h6
{
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
}

.notice .notice_list .txtarea span
{
  color:#666;
  display: inline-block;
}

.notice .notice_list>div img
{
  width: 250px;
  height: 140px;
}

.notice .notice_list .notice_date
{
  color: #666;
  width: 90px;
  text-align: center;
  margin: auto 0px;
  font-weight: 600;
}

/* 페이징 */
.page
{
  display:flex;
  flex-direction: row;
  justify-content:center;
  margin-top:40px;
}

.page a
{
  position: relative;
  padding: 0 2px;
  margin: 0 8px;
  color: #999;
  font-size: 18px;
}

.page a:hover
{
  color: #333;
}

.page .num
{
  margin: 0 30px;
  vertical-align: top;
}

.page .num a.active
{
  color: #111;
  font-weight: bold;
}

.notice_view .tit
{
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333;
  border-bottom: 1px solid #ddd;
  padding: 30px 20px;
  text-align: left;
}

.notice_view .tit span
{
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.notice_view .tit p
{
  font-weight: 400;
}

.notice_view .txt
{
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  font-size:16px;
  font-weight: 400;
  line-height: 1.6;
}

.notice_view .txt img
{
  width:720px;
}

.notice_view .prevnext {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.prevnext a
{
  display:flex;
  flex-direction: row;
  flex-grow:0;
  flex-shrink:1;
  padding: 16px 30px;
  overflow: hidden;
}

.prevnext a.prev
{
  border-bottom: 1px solid #ddd;
}


.prevnext a .type
{
  flex-basis: 130px;
  padding-right: 26px;
  box-sizing: border-box;
  font-weight: 400;
  margin-top:0;
}

.prevnext a .type img
{
  margin-left:5px;
}

.prevnext a .type i
{
  padding-left: 15px;
  color:#f28d2c;
  font-weight: 500;
}

.prevnext a .title
{
  flex-basis: calc(100% - 130px);
  color: #444;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0px;
  font-weight: 400;

}

.prevnext a .title:hover
{
  text-decoration: underline;
  cursor: pointer;
}

.main_7
{
  background-color: #f8f8f9;
}

.main_7 h2
{
  text-align: center;
  margin-bottom:60px;
  font-weight: bold;
}

.main_7 .worldmap
{
  width:1100px;
  height:630px;
  background: url(../img/world.png) no-repeat center center;
  background-size: cover;
  margin:0 auto;
}

.main_8
{
  padding:80px 0;
  position:relative;
}

.main_8 .row .symbol
{
  width:66px;
  height:83px;
  background: url(../img/symbol.png) no-repeat center center;
  background-size: cover;
  margin:0 auto;
}

.main_8 .row h4
{
  font-weight: 500;
  text-align: center;
  color:#fff;
  margin-top:35px;
}

.main_8 .bg
{
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/main10_bg.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
  object-fit : cover;
}

.main_8 .app_btn
{
  display: flex;
  flex-direction: row;
  margin-top:40px;
  justify-content:center
}

.main_8 .app_btn a
{
  width:160px;
  height:57px;
  border:1px solid rgba(255,255,255,0.5);
  margin-right:10px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.main_8 .app_btn a:hover
{
  border:1px solid rgba(255,255,255,1);
  background-color:rgba(255,255,255,0.1);
}

.main_8 .app_btn a span
{
  font-size:18px;
  font-weight: 400;
  color:#fff;
  letter-spacing: 0;
}

.main_8 .app_btn .google_play .icon
{
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/google.png) no-repeat center center;
  background-size: 28px auto;
}

.main_8 .app_btn .appstore .icon
{
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/app.png) no-repeat center center;
  background-size: 28px auto;
}

.footer
{
  display:flex;
  flex-direction: row;
  background-color:#f5f5f5;
  padding:50px 0;
}

.footer .fot_logo
{
  display: inline-block;
  width: 154px;
  height: 40px;
  background: url(../img/logo_b.png) no-repeat center center;
  background-size: 154px auto;
  float: left;
  margin-right: 80px;
}

.footer .fot_txt
{
  display:inline-block;
  color:#666;
}

.footer .fot_txt .btnarea
{
  margin-bottom:20px;
}

.footer .fot_txt .btnarea a
{
  color:#666;
  position: relative;
  margin-right:24px;
}

.footer .fot_txt .btnarea a::after
{
  position:absolute;
  content:'';
  top: 7px;
  right: -16px;
  width:3px;
  height:3px;
  background-color:#666;
}

.footer .fot_txt .btnarea a:last-child:after
{
  position:absolute;
  content:'';
  display:none;
}

.footer .fot_txt span
{
  color:#666;
}

.footer .fot_family
{
  display: inline-block;
  float: right;
}

.footer .fot_family select
{
  height:40px;
  padding-right:30px;
  padding-left:10px;
  border:1px solid #dddddd;
  min-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/arrow_down.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.main_2 .row,
.main_3 .row,
.main_4 .row,
.main_5 .row,
.main_6 .row,
.main_7 .row
{
  padding-top:120px;
  padding-bottom:120px;
}

.top_btn
{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 60px;
  transition: all ease .6s;
  z-index: 15;
  cursor: pointer;
  visibility: hidden;
}

.top_btn.on 
{
  opacity: 1;
  visibility: visible;
}

/*******************************

서브화면 레이아웃

*******************************/

.sub-visual
{
  height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}

.sub-visual .sub-visual-bg
{
  background: url(../img/sub_visual_1.png) no-repeat center center;
}

.sub-visual .sub-visual-bg2
{
  background: url(../img/sub_visual_2.png) no-repeat center center;
}

.sub-visual .sub-visual-bg3
{
  background: url(../img/sub_visual_3.png) no-repeat center center;
}

.sub-visual .sub-visual-bg4
{
  background: url(../img/sub_visual_4.png) no-repeat center center;
}

.sub-visual .sub-visual-bg5
{
  background: url(../img/sub_visual_5.png) no-repeat center center;
}

.sub-visual .sub-visual-bg,
.sub-visual .sub-visual-bg2,
.sub-visual .sub-visual-bg3,
.sub-visual .sub-visual-bg4,
.sub-visual .sub-visual-bg5
{
  position:absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  display:flex;
  align-items:center;
  animation: slidein_img 5s ease 0s 1 normal both;
  -webkit-animation: slidein_img 5s ease 0s 1 normal both;
  transform-origin:50% 50%;
  z-index: -1;
}

@keyframes slidein_img
{
  0% { -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1); transform: scale(1.1,1.1);}
  100% { -ms-transform: scale(1,1); -webkit-transform: scale(1,1); transform: scale(1,1);}
}

.sub-visual .row
{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-visual .row .sub-tit
{
  text-align: center;
}


.sub-visual .row .sub-tit h1
{
  color:#fff;
  font-weight: bold;
}

.location .row
{
  text-align: right;
  color:#666666;
  padding-top:45px;
  padding-bottom:45px;
}

.sub-tit2
{
  text-align: center;
  font-weight: bold;
  margin-bottom: 70px;
}

.video-wrapper 
{
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  border-radius: 30px;
}

.video-container 
{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #fff;
}

.video-container iframe 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
}

.sub-bottom
{
  padding-bottom: 150px;
}

.contact-info
{
  display:flex;
  flex-direction: column;
}

.contact-info>div
{
  display:flex;
  flex-direction: row;
  height:80px;
  border-bottom:1px solid #dddddd;
  align-items:center;
}

.contact-info>div h6
{
  width:100px;
  font-weight: bold;
  flex-shrink: 0;
}

.contact-info>div .icon1
{
  background: url(../img/address.png) no-repeat center center;
}

.contact-info>div .icon2
{
  background: url(../img/phone.png) no-repeat center center;
}

.contact-info>div .icon3
{
  background: url(../img/mail.png) no-repeat center center;
}

.contact-info>div .icon1,
.contact-info>div .icon2,
.contact-info>div .icon3
{
  width:30px;
  height:30px;
  background-size: cover;
  margin-right:15px;
  flex-shrink:0;
}

.notice_view
{
  margin-top:180px;
}

.notice_view .tit
{
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333;
  border-bottom: 1px solid #ddd;
  padding: 30px 20px;
  text-align: left;
}

.notice_view .tit h5
{
  font-weight: bold;
}

.notice_view .tit p
{
  font-weight: 400;
  color:#666;
}

.notice_view .txt
{
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  font-size:16px;
  font-weight: 400;
  line-height: 1.6;
}

.notice_view .txt img
{
  width:720px;
}

.notice_view .prevnext 
{
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.sub_btn 
{
  font-weight: 500;
  border-radius: 3px;
  line-height: 50px;
  width: 160px;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all 0.5s;
}

.sub_btn:hover
{
  background:#f5f5f5;
  border: 1px solid #333;
}

/*자주 묻는 질문*/
.faq-list-container
{
}

.faq-list-container .faq-list li
{
  border-top:1px solid #ddd;
}

.faq-list-container .faq-list li:last-child
{
  border-bottom:1px solid #ddd;
}

.faq-list-container .faq-list li .question
{
  /* border-bottom:1px solid #ddd; */
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position:relative;
  cursor: pointer;
}

.faq-list-container .faq-list li .question h5
{
  font-weight: bold;
  color:#3b65eb;
  width:56px;
  flex-shrink:0;
}

.faq-list-container .faq-list li .question h6
{
  font-weight: bold;
  width: 90%;
}

.faq-list-container .faq-list li .question::after
{
  position:absolute;
  content:'';
  width:25px;
  height:14px;
  background: url(../img/faq_arrow_down.png) no-repeat center center;
  background-size:cover;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.faq-list-container .faq-list li .answer
{
  padding:30px;
  flex-direction: row;
  background-color:#f8f8f9;
  display:none;
  transition: all 1s ease;
}

.faq-list-container .faq-list li .answer h5
{
  font-weight: bold;
  color:#333;
  width:56px;
  flex-shrink:0;
}

.faq-list-container .faq-list li .answer span
{
  font-size:16px;
}

.faq-list-container .faq-list li .answer.active
{
  display:flex;
}

.faq-list-container .faq-list li .question.active::after
{
  position:absolute;
  content:'';
  width:25px;
  height:14px;
  background: url(../img/faq_arrow_up.png) no-repeat center center;
  background-size:cover;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.guide-container
{
  background-color:#f3f7ff;
  display:flex;
}

.guide-container .sub-tit2
{
  margin-top:100px;
}

.guide-container .guide-list
{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:center;
}

.guide-container .guide-list .guide
{
  width:31.5%;
  height:110px;
  background-color:#fff;
  display:flex;
  flex-direction: row;
  align-items:center;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.guide-container .guide-list .guide:hover
{
  background-color:#3b65eb;
}

.guide-container .guide-list .guide h5
{
  color:#3b65eb;
  font-weight: bold;
  width:55px;
}

.guide-container .guide-list .guide:hover h5
{
  color:#fff;
}

.guide-container .guide-list .guide h6
{
  font-weight: bold;
}

.guide-container .guide-list .guide:hover h6
{
  color:#fff;
}

.guide-container .guide-list .guide.guide:nth-child(3n)
{
  margin-right: 0;
}

.guide-container .modal
{
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index:101;
}


.modal-content 
{
  max-width: 500px;
  width:80%;
  max-height: 60%;
  overflow-y: auto; 
  background-color: #fff;
  position: relative;
}

.modal-content img 
{
  max-width: 100%;
  height: auto;
}

.modal-close 
{
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 90px;
  color: #fff;
  font-weight: 300;
  cursor: pointer;
  z-index: 1001;
}

.table
{
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
  position: relative;
  table-layout: fixed;
}

.table::before
{
  content: "";
  width: 3px;
  height: calc(100% + 3px);
  background-color: #fff;
  position: absolute;
  right: -1px;
  top: -2px;
}

.table th 
{
  border: 1px solid #ddd;
  border-left: none;
  background-color: #F7F8FC;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 0;
}

.table td 
{
  border: 1px solid #ddd;
  border-left: none;
  padding: 6px;
  text-align: center;
  position: relative;
  font-weight: 400;
  color:#333;
}

table th, table td 
{
  vertical-align: middle;
}

/** 서비스 소개********************************************************************/

.service_1 .row 
{
  display:flex;
  flex-direction: row;
  align-items: center;
}

.service_1 .row .mobile
{
  padding:15px;
  background-color:#fff;
  display: inline-block;
  border-radius: 36px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25), 
              inset 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right:110px;
}

.service_1 .row .mobile .mockup
{
  width:300px;
  height:650px;
  background: url(../img/main4.gif) no-repeat center center;
  background-size: cover;
  border-radius: 30px;
  overflow:hidden;
  border:1px solid #ccc;
}

.service_1 .row .txt h5
{
  font-weight: 600;
  color:#999;
}

.service_1 .row .txt h4
{
  font-weight: bold;
}

.service_2
{
  background-color:#f3f7ff;
}

.service_2 .row 
{
  display:flex;
  flex-direction: row;
  align-items: center;
}

.service_2 .row .mobile
{
  padding:15px;
  background-color:#fff;
  display: inline-block;
  border-radius: 36px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25), 
              inset 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-left:110px;
}

.service_2 .row .mobile .mockup
{
  width:300px;
  height:650px;
  background: url(../img/main5.gif) no-repeat center center;
  background-size: cover;
  border-radius: 30px;
  overflow:hidden;
  border:1px solid #ccc;
}

.service_2 .row .txt h5
{
  font-weight: 600;
  color:#999;
}

.service_2 .row .txt h4
{
  font-weight: bold;
}

.service_3 .row 
{
  display:flex;
  flex-direction: row;
  align-items: center;
}

.service_3 .row .mobile
{
  padding:15px;
  background-color:#fff;
  display: inline-block;
  border-radius: 36px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25), 
              inset 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right:110px;
}

.service_3 .row .mobile .mockup
{
  width:300px;
  height:650px;
  background: url(../img/main6.gif) no-repeat center center;
  background-size: cover;
  border-radius: 30px;
  overflow:hidden;
  border:1px solid #ccc;
}

.service_3 .row .txt h5
{
  font-weight: 600;
  color:#999;
}

.service_3 .row .txt h4
{
  font-weight: bold;
}

.service_4
{
  background-color: #f3f7ff;
}

.service_4 h4
{
  text-align: center;
  font-weight: bold;
}

.service_4 .row .designAll
{
  display:flex;
  justify-content: center;
  align-items: center;
}

.service_4 .row .designAll .design
{
  margin-left: -30px;
  margin-top:100px;
}

.service_4 .row .designAll .design img
{
  width:200px;
  height:200px;
  border-radius: 50%;
  background-color:#ff0000cb;
  overflow:hidden;
}

.service_4 .row .designAll .design:first-child
{
  margin-left:0;
}

.service_4 .row .designAll .design h6
{
  text-align: center;
  margin-top:10px;
}

.service_1 .row,
.service_2 .row,
.service_3 .row,
.service_4 .row
{
  padding-top:100px;
  padding-bottom:100px;
}




/********************************************************************************/

/* 미디어쿼리 */

@media (max-width:1350px){
  /*메인*/
  .row{padding:0 40px; width:100%;}
  .service_4 .row .designAll .design img {width: 160px; height: 160px;}
  .service_4 .row .designAll .design {margin-top: 50px;}
  .main_6 h2{margin-bottom:50px;}
  .notice .notice_list .txtarea {width: 50%;}
  .main_7 .worldmap {width: 100%; height: 470px; background-size: contain;}
  .footer .fot_txt{width:55%;}
  .main_4 .row .img{width:100%;}
  .main_5 .row .img{width:100%;}

  /*서브*/
  .sub-bottom{margin-bottom:100px;}
  .guide-container.sub-bottom {margin-bottom: 0;}
}

@media (max-width:1024px){
  /*메인*/
  .header {padding: 0 30px;}
  .header .gnb{display:none;}
  .header .language{display:none;}
  .header .category{display:block;}
  .service_4 .row .designAll .design img {width: 130px; height: 130px;}
  .notice .notice_list .txtarea {width: 100%; margin: 0 0 10px 0;}
  .notice .notice_list .notice_date {text-align: left;}
  .main_3 .bg {background: url(../img/main3_bg.png) no-repeat right;}
  .main_4 .row .img{height: 300px;}
  .main_5 .row .img{height: 235px;}

  /*서브*/
  .guide-container .guide-list .guide {width: 45.5%;}
  .guide-container .guide-list .guide.guide:nth-child(3n){margin-right: 20px;}
  .guide-container .guide-list .guide.guide:nth-child(2n){margin-right: 0;}
  .sub-visual{height: 320px;}
  
}

@media (max-width:750px){
  /*메인*/
  .main_3 .bg {background: url(../img/main3_bg.png) no-repeat right;}
  .service_1 .row .mobile .mockup,.service_2 .row .mobile .mockup,.service_3 .row .mobile .mockup {width: 230px; height: 515px;}
  .service_1 .row .mobile,.service_3 .row .mobile{margin-right:50px;}
  .service_2 .row .mobile{margin-left:50px;}
  .service_4 .row .designAll .design img {width: 110px; height: 110px;}
  .main_5 .row .img{background: url(../img/corevalue_m.png) no-repeat center center; background-size: contain; height:500px;}
  .main_5 .row .img.eng{background: url(../img/corevalue_m_eng.png) no-repeat center center; background-size: contain; height:600px;}

  /*서브*/
  .guide-container .guide-list .guide {width: 100%; height: 65px; margin-bottom: 10px; border-radius: 10px;}
  .guide-container .guide-list .guide.guide:nth-child(3n){margin-right: 0;}
  .guide-container .guide-list .guide.guide{margin-right: 0;}
  .faq-list-container .faq-list li .question h5,
  .faq-list-container .faq-list li .answer h5{width: 30px;}
  .faq-list-container .faq-list li .question{padding: 15px 65px 15px 15px;}
  .faq-list-container .faq-list li .answer {padding: 15px;}
  .faq-list-container .faq-list li .answer span {font-size: 14px;}
  .sub-bottom{margin-bottom:80px;}
  .guide-container .guide-list .guide h5{width:36px;}
  .guide-container .sub-tit2 {margin-top: 60px;}
  .modal-content {max-height: 70%;}
  
}

@media (max-width:640px){
  /*메인*/
  #header{height:60px;}
  .header {padding: 0 20px;}
  .header .logo .logo_img {width: 110px; background-size: 110px auto;}
  .header .category {top: 18px;}
  .header .category {top: 18px; width: 26px; right: 20px;}
  .header .category .bar:nth-child(2) {top: 3px;}
  .header .category .bar:nth-child(3) {top: 11px;}
  .header .category .bar:nth-child(4) {top: 20px;}
  #full_menu {top: 60px; height: calc(100% - 60px);}
  #full_menu .menu a {font-size: 30px;}
  .main_visual {margin-top: 60px; height: calc(100vh - 280px);}
  .main_visual .title_logo {width: 190px; height: 48px; background-size: 190px auto; margin-top: 15px;}
  .main_visual .app_btn a span,.main_8 .app_btn a span {font-size: 14px;}
  .main_visual .app_btn a,.main_8 .app_btn a {width: 120px; height: 40px;}
  .main_visual .app_btn {margin-top: 40px;}
  .main_visual .app_btn .google_play .icon,
  .main_visual .app_btn .appstore .icon,
  .main_2 .row{flex-direction: column;}
  .main_2 .row .img {width: 100%; height: 208px; background-size: 100% auto; margin-right: 0; margin-bottom: 30px;}
  .main_3 .row, 
  .main_4 .row,
  .main_5 .row,
  .service_1 .row, 
  .service_2 .row, 
  .service_3 .row, 
  .service_4 .row, 
  .main_6 .row, 
  .main_7 .row {padding-top: 80px; padding-bottom: 80px;}
  .main_2 .row {padding-top: 80px; padding-bottom: 80px; align-items: normal;}
  .main_3 .bg {background: url(../img/main3_bg.png) no-repeat right;}
  .main_4 .row h6 {margin-top: 15px; margin-bottom: 30px;}
  .main_4 .row .img {height: 190px; border-radius: 10px;}
  .main_5 .row h3{margin-bottom:30px;}
  .main_5 .row .img {height: 420px;}
  .service_1 .row,
  .service_2 .row,
  .service_3 .row {flex-direction: column;}
  .service_1 .row .mobile .mockup, 
  .service_2 .row .mobile .mockup, 
  .service_3 .row .mobile .mockup {width: 188px; height: 404px; border-radius: 20px;}
  .service_1 .row .mobile, .service_3 .row .mobile, .service_2 .row .mobile {margin: 30px 0;}
  .service_1 .row .mobile,.service_2 .row .mobile,.service_3 .row .mobile {border-radius: 28px; display:inline-block; width:218px;}
  .row {padding: 0 20px;}
  .service_4 .row .designAll {flex-wrap: wrap;}
  .service_4 .row .designAll .design img {width: 90px; height: 90px;}
  .service_4 .row .designAll .design {margin-left: -20px;}
  .main_7 .worldmap {height: 200px;}
  .main_8 {padding: 50px 0;}
  .main_8 .row .symbol {width: 44px; height: 55px;}
  .main_8 .row h4{margin-top:20px;}
  .main_visual .app_btn .google_play .icon,
  .main_visual .app_btn .appstore .icon,
  .main_8 .app_btn .google_play .icon,
  .main_8 .app_btn .appstore .icon {width: 20px; height: 20px; background-size: 20px auto;}
  .main_6 h2,.main_7 h2 {margin-bottom: 30px;}
  .top_btn {right: 20px; width: 40px;}
  .top_btn img{width:40px;}
  .notice .notice_list>div img {width: 130px; height: 90px;}
  .notice .notice_list .txtarea span{font-size:13px;}
  .notice .notice_list {padding: 15px 5px;}
  .footer .fot_family {float: left; margin-top: 10px;}
  .footer .fot_txt {width: 100%; margin-top: 10px;}
  .footer .fot_txt span {font-size:13px;}
  .footer .fot_logo {width: 120px; height: 33px; background-size: 120px auto;}
  

  /*서브*/
  .location .row{font-size:13px; padding-top: 24px; padding-bottom: 24px;}
  .sub-tit2{margin-bottom:30px;}
  .sub-visual {height: 200px; margin-top: 60px;}
  .contact-info>div {height: 70px;}
  .faq-list-container .faq-list li .question::after,
  .faq-list-container .faq-list li .question.active::after{width:15px; height:11px;}
  .modal-close {top: 40px; right: 40px; font-size: 50px;}
}