
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  -ms-user-select: none; -moz-user-select: -moz-none; -webkit-user-select: none; -khtml-user-select: none; user-select:none;	
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	background-color: #0d54a1;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 14px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}

.back-to-top i {
	padding-top: 12px;
	color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 8888;
  background-color: #ffffff;

}

#header.header-scrolled,
#header.header-pages {
    height: 80px;
    padding: 16px 0;
	background-color: #ffffff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}

#header .logo h1 {
  position: relative;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    top: -7px;
}


#header .logo h1 a,
#header .logo h1 a:hover {
   top: -7px;
  color: white;
  text-decoration: none;
}

#header .logo img {
	left: 2px;
    width: 280px;
    padding-top: 4px;
    position: relative;
}

.main-pages {
  margin-top: 60px;
}


.m_menuLogo{
	display: none;
}

.mNav_bottom_infoBox{
	display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
	/* padding-top: 30px; */
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  /* padding: 0; */
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
	display: block;
	position: relative;
	color: #666666;
	padding: 10px 50px;
	transition: 0.3s;
	font-size: 1.2rem;
	/* font-family: 'NanumSquareRound',sans-serif; */
	text-transform: uppercase;
	font-weight: 400;
}

.mainNav_nonePadR{padding-right:20px !important;}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
	
  color: #333333;
  font-weight: bold;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #000;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #ff6c17;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
background-color: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0d54a1;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 1.1rem;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  /* color: #8dc2fa; */
  /* text-decoration: none; */
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
	position: fixed;
	right: 0px;
	top: 3px;
	z-index: 9500;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
  margin: 14px 14px 0 0;
  color: #000000;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9000;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000000;
}

.mNav_bottom_infoBox{
	position: absolute;
	bottom:0px;
	left:0px;
	width:260px;
	/* height: 140px; */
	background-color: #0d54a1;
	padding: 20px 16px 20px 16px;
}

.mNav_InnerText{
	text-align:center;
	color: #fff;
	font-size: 0.6rem;
}


.mNavpB_items{
	display: flex;
	margin-bottom:10px;
}

.mNavpb_circle{
	text-align:center;
	display: inline-block;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	background-color: #fff;
}

.mNavpb_circle img{
	width:100%;
}

.mNavpbText a{
	font-size: 0.7rem;
	position: relative;
    color: #fff;
    display: inline-block;
	margin-left:14px;
	padding: 0px!important;
}


/*--------------------------------------------------------------
# Sectionszz
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
	margin-top:100px;
	min-height: 660px;
	width: 100%;
	position: relative;
}

.swiper-container {
	width: 100%;
}
.swiper-slide{
	
}

.positon_rel{
	position: relative;
}

.pc_slide_box{

}

.main_bg_change_01{
	width: 100%;
	min-height: 660px;
	position: relative;
	background: url(../img/bg_main.png)top no-repeat;
	background-size: cover;
}

.main_bg_change_02{
	width: 100%;
	min-height: 660px;
	position: relative;
	background-color: #4626a0;
}

.mainBg_product{
	position: absolute;
    right: 300px;
    bottom: 94px;
}

.mainBg_product img{
	width: 700px;
}

.main_copy{
	position: relative;
	z-index: 999;

}

.position_text{
	position: relative;
	top: 148px;
	z-index:300;
}

#intro .intro-info h2 {
	position: relative;
    top: 0px;
	text-align: left;
	color: white;
	margin-bottom: 97px;
	font-size: 70px;
	font-weight: 700;
	font-family: 'Titillium Web', sans-serif !important;
	transition: 0.7s;
}

.main_logo_title{
	display: inline-block;
	font-size: 6.7rem;
	font-weight: 300;
	letter-spacing: -8px;
}

#intro .intro-info h2 span {
	display: block;
	font-weight: 200;
	font-size: 1rem;
	color: white;
	transition: 0.7s;
	line-height: 30px;
	padding-top: 14px;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
	font-size: 1rem;
	text-transform: uppercase;
	/* letter-spacing: 1px; */
	display: inline-block;
	padding: 12px 36px;
	transition: 0.5s;
	color: #fff;
	border-radius: 30px;
	border: 1px solid #fff;
	color: #fff;
}

#intro .intro-info .btn-get-started:hover,
#intro .intro-info .btn-services:hover {
  background: #ffffff;
  color: #333333;
}


/*--------------------------------------------------------------
# 노던링크 제품소개 영역 About Us Section start
--------------------------------------------------------------*/


#about {
	padding: 100px 0px 100px 0px;
}

#program {
	padding: 0px 0px 150px 0px;
}

.noProductBoxWrap{
    max-width: 1300px;
    margin: 0 auto;
}

.noProductBox{
	display: inline-block;
	width:100%;
}

.productBox{
	display: inline-block;
	border-radius:30px;
	border: 1px solid #daeeff;
	width: 100%;
	height: auto;
}

.marB20{
	margin-bottom:20px;
}

.productBox .p_topBox{
	text-align:left;
	height: 130px;
	position: relative;
	border-bottom:1px solid #daeeff;
	padding: 50px 96px 35px 96px;
}

.pc_pt{display: block;}
.m_pt{
	display: none;
}

.p_topBox .ptop_title{
	text-align:left;
	line-height: 50px;
	display: inline-block;
	font-size: 48px;
	font-weight: bold;
	color: #222222
}

.p_topBox .ptop_title br{
	display: none;
}

.ptop_suBtitle img{
	width: 248px;
	height: 43px;
	right: 110px;
    position: absolute;
    top: 50px;
}

.p_middleBox{
	position: relative;
	background-color: #daeeff;
	padding: 34px 96px 60px 96px;
	height: auto;
}

.p_middleBox .ptop_title{
	text-align:left;
	margin-bottom: 80px;
	font-size: 18px;
	font-weight: 400;
	color: #333333;
	line-height: 1.8;
}


.ptop_title span {
	background-color: #ffffff;
	border-radius: 17px;
	padding: 0px 12px;
	color: #0d53a4;
    font-size: 18px;
    font-weight: 600;
	font-family: 'Titillium Web', sans-serif;

}

.m_p_mcontents{
	display: none;
}

.p_mcontents{
	display:block;
	width:100%;
}

.p_mcontents img{
	width:100%;
}

.p_mcontents_02{
	width:100%;
}

.p_mcontents_02 img{
	width: 100%;
	max-width:100%;
}

.p_bottomBox{
	position: relative;
	width:100%;
	padding: 38px 96px 38px 96px;
	border-top:1px solid black;
	background-color: #0c2b74;
	border-bottom-left-radius:30px;
	border-bottom-right-radius:30px;
}

.p_bTextBox{
	text-align:left;
}

.p_bText_title{
	position: relative;
	font-size: 20px;
	/* font-weight: 600; */
	color: #fff;
	display: block;
	padding-bottom: 20px;
	display: inline-block;
}

.pB_itemBox{
	overflow: hidden;
	boxsizing: border-box;
	display: block;
}

.pB_items{
	float: left;
}

.pb_circle{
	text-align:center;
	display: inline-block;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-color: #fff;
}

.pb_circle img{
	width:100%;
}

.pbText{
	position: relative;
    color: #fff;
    display: inline-block;
	margin-left:14px;
}


.pbbtnBox{
	position: absolute;
	top: 38px;
	right: 110px;
}

.pbbtnBoxTile{
	position: relative;
    font-size: 20px;
    /* font-weight: 600; */
    color: #fff;
    display: block;
    padding-bottom: 20px;
    display: inline-block;
}

.choose_btnBox{
	display: flex;
}

.pbbox{
	width: 110px;
	height: 40px;
	/* top: 70px; */
	/* right: 110px; */
	display: inline-block;
	border: 2px solid #fff;
	line-height: 36px;
	text-align: center;
	/* border-radius: 10px; */
}

.marR10{margin-right:10px;}

.pbText{
	position: relative;
    color: #fff;
    display: inline-block;
	margin-left:14px;
	font-weight: 400;
	font-size:18px;
	font-family: 'Titillium Web', sans-serif !important;
}

.pbbox .pbbtn{
	text-align: center;
	position: relative;
    color: #fff;
    display: inline-block;
	font-weight: 600;
	font-size:16px;
}

.pbbtn img{
	position: relative;
	top: -2px;
	margin-left: 4px;
	width: 12px;
}

.padR40{padding-right: 40px;}
.marB60{margin-bottom: 60px;}

.space {
	position: relative;
	height: 30px;
	border: 0px solid #fff
}

@media (max-width: 1320px){
	#about{
		padding-left:10px;
		padding-right:10px;
	}
}


@media (max-width: 1200px) {
	.productBox .p_topBox{
		padding: 38px 40px 38px 40px;
	}
	.ptop_suBtitle img{
		right: 40px;
		top: 40px;
	}
	
	.p_middleBox{
		padding:34px 40px 60px 40px;
	}
	
	.p_bottomBox{
		padding: 38px 40px 38px 40px;
	}
	.pbbtnBox{
		right: 40px;
	}

}


@media (max-width: 1100px) {
	.p_topBox .ptop_title{
		font-size: 46px;
	}
	.ptop_suBtitle img{
		width: 248px;
		height: 43px;
		position: absolute;
		top: 40px;
	}
	.p_middleBox .ptop_title {
		font-size: 17px;
	}
	.p_middleBox{
		padding:38px 40px 60px 38px;
	}
}

@media (max-width: 850px) {
	
	.pB_items{
		width: 50%;
	}
	
	.pbbtnBox{
		right: inherit;
		top: inherit;
		position: relative;
		padding-top: 20px;
	}
	.pbbox{
		width: 50%;
	}
}

@media (max-width: 768px) {
	#about {
		padding: 40px 10px 40px 10px;
	}
	
	#program {
		padding: 0px 10px 40px 10px;
	}
	
	.productBox{
		border-radius: 20px;
	}
	
	.p_bottomBox{
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	
	.productBox .p_topBox {
		position:relative;
		padding: 18px 20px 18px 20px;
		height: auto;
	}
	
	.p_topBox .ptop_title{
		font-size: 1.4rem;
		line-height: inherit;
	}
	
	.ptop_suBtitle{
		position: absolute;
		right: 18px;
		top: 12px;
		width: 120px;
	}
	
	.ptop_suBtitle img {
		width:100%;
		height: auto;
		position: inherit;
		top: inherit;
		right:0px;
	}
	
	.p_middleBox{
		padding: 30px 20px 40px 20px;
	}
	
	.p_middleBox .ptop_title{
		font-size: 0.9rem;
		line-height: 24px;
		margin-bottom: 30px;
	}
	.pc_pt{
		display: none;
	}
	.m_pt{
		display: block;
	}
	
	
	
	
	.p_mcontents{
		display: none;
	}
	.m_p_mcontents{
		text-align:center;
		display: inline-block;
		width: 100%;
	}
	.m_p_mcontents img{
		display: inline-block;
		width: 60%;
	}
	
	
	.p_bottomBox{
		padding: 24px 20px 28px 20px;
	}
	.p_bText_title{
		font-size: 1.2rem;
		padding-bottom: 14px;
	}
	.pB_items{
		width:100%;
		margin-bottom: 14px;
	}
	.padR40{
		padding-right: 0px;
	}
	.pb_circle{
		width: 30px;
		height: 30px;
	}
	.pbText{
		font-size: 0.9rem;
	}
	.ptop_title br{
		display: block;
	}
	
	.ptop_title span{
		    text-align: center;
		display: block;
		font-size: 0.9rem;
	}
	
	
	.pbbtnBoxTile{
		font-size: 1.2rem;
		padding-bottom: 14px;
	}
	.pbbox{
		height: 36px;
		line-height: 32px;
		border-radius: 10px;
	}
	.pbbox a{
		font-size: 0.9rem;
	}
	
}


/*--------------------------------------------------------------
# 회사소개 css
--------------------------------------------------------------*/

.sub_wrap{
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 0px;
}

.company_top_bg{
	height: 420px;
    background-position: center;
    background: url(../img/bg_main_01.png)top no-repeat;
    background-size: cover;
    transform: scale(1.2);
    transition-duration: 3s;
    -webkit-transition-duration: 3s;
    z-index: 600;
}


.company_top_bg02{
	height: 420px;
    background-position: center;
    background: url(../img/bg_main_02.png)top no-repeat;
    background-size: cover;
    transform: scale(1.2);
    transition-duration: 3s;
    -webkit-transition-duration: 3s;
    z-index: 600;
}

.section-header {
    position: relative;
    top: -210px;
    z-index: 700;
	font-family: 'Titillium Web', sans-serif!important;
}
.section-header h3 {
	font-weight: bold;
    font-size: 60px;
    color: #fff;
    text-align: center;
    position: relative;
    font-family: 'Titillium Web', sans-serif!important;
    letter-spacing: 12.4px;
    top: 12px;
}

.section-header h3 span{
	display: block;
	padding-top: 20px;
	font-size: 16px;
}

.company_top_box{overflow: hidden;width: 100%;height: 420px;position: relative;}
.company_detailLine{width: 100%;padding-top: 60px;}
.company_detail_box{display: block;width: 100%;max-width: 1160px; margin: 0px auto 0px;background-color: #fff;padding-left: 10px;padding-right: 10px; padding-bottom: 80px;}

.company_title_box{display: flex;}
.company_title{font-size: 2.4rem;}
.bRight{background-color: #dbdbdb;width: 2px;height: 40px;margin-left: 30px;margin-right: 30px;margin-top: 8px;}
.company_suBtitle{font-size: 1rem; font-weight: 300; line-height: 22px;color: #666;padding-top: 6px;}

.company_logo_box{position: relative;display: flex;width: 100%;margin-top: 60px;}
.company_logo_item{width: 53%;max-width: 100%;}
.company_logo_item_02{position: absolute;
    right: 0px;
    top: 0px;}
.company_logo_item_02 img{width: 100%;}

.top_line{display: flex;position: relative;width: 260px;height: 6px;}
.Tline01{width: 130px;height: 4px;background-color: #0d54a1;}
.Tline02{width: 130px;height: 4px;background-color: #bababa;}

.about_title_logo{position: relative;height: 220px;margin-top: 46px;}
.A_title{font-size: 1.1rem;color: #999999;}
.a_img_logo{position: absolute;left: 0px;top: 80px;}
.a_img_logo span{
	font-size: 44px;
	font-weight: 300;
	color: #666666;
	letter-spacing: 2px;
	line-height: 58px;
}

.aligospan{
	font-size: 42px !important;
	color: #212121 !important;
	font-weight: bold !important;
}

.company_text_line{width: 100%;text-align: left;margin-top: 20px;}
.company_text_title{font-size: 1.4rem;font-weight: bold;color: #222222;margin-bottom: 20px;}
.company_text_suBtitle{font-size: 0.98rem;line-height: 30px;color: #212121;}

.company_textTableWrap{
	position: relative;
	width: 100%;
	border-top: 2px solid #212121;
	margin-top: 60px;
}

.cTableBox{
	display: flex;
	border-bottom:1px solid #ededed;
}

.cTableTitle{
	width: 200px;
	padding-top: 18px;
	padding-bottom:18px;
	font-size: 0.9rem;
	color: #777777;
}

.cTableSubTitle{
	padding-top: 18px;
	padding-bottom:18px;
	font-size: 0.9rem;
	color: #424242;
	/* font-weight: bold; */
}

.marB30{margin-bottom: 30px;}
.marB20{margin-bottom: 20px;}
.fontS{font-size: 1.25rem !important;}

.contact_wrap{width:100%;position: relative; padding-top: 76px;}
.contact_item_box{text-align:right;margin-top: 14px;}
.contact_itemWrap{display: flex;margin-top: 14px;}
.contact_item{width:50%;display: flex;}

.contact_circle{text-align: center;display: inline-block;width: 60px;height: 60px;border-radius: 50%;background-color: #ededed;padding-top: 10px;}
.contact_circle img{width:40px;}
.wid20impor{width:26px!important;}
.padT18impor{padding-top:18px!important;}
.font24{font-size: 2.4rem!important;}
.marT40{margin-top: 40px;}
.padL80{padding-left: 80px;}

.contact_text{text-align: left;color: #222222;font-size: 1.1rem;font-weight: bold;line-height: 29px;padding-top: 4px;margin-left: 20px;}
.contact_text span{display: block;color: #999999;font-size: 0.95rem;font-weight: normal;}
.contact_text span a{color: #222222;}

#map{
	position: relative;
}

#pc_map_area{display: block;
	position: relative;width: 100%;
	height: 600px;
	background-position: center;
	background-image: url(/n_public/img/map.png); 
	background-size: cover;
	}
#pc_map_area img{
	width:100%;
}	
#m_map_area{display: none;}
#map-canvas{width: 100%; height: 100%;z-index:1;}

.add_relative{position: relative;}

.ourwidth{
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
}

.our_location_box{left:40px;position: absolute;top: 50px;width: 410px;background-color: #fff;padding-top: 30px;padding-left: 40px;padding-right: 20px;PADDING-BOTTOM: 40PX;z-index: 10;}
.ol_title{font-size: 26px;font-weight: bold;margin-bottom:10px;color:#0d54a1;}
.our_location_title{
	width: 150px;
	color: black;
	opacity: 1;
	font-size: 1.1rem;
	font-weight: bold;
	position: relative;
	text-align: center;
	padding: 10px;
}
.our_location_title span{display: block;color: #666666;font-size: 0.9rem;font-weight: normal;margin-top: 10px;}

@media (max-width: 991px) {
	
	.section-header h3{
		font-size: 50px;
	}
	
	.company_logo_box{
		display: inherit;
		margin-top: 20px;
	}
	.company_logo_item{
		width:100%;
	}
	.a_img_logo{
		top: 30px;
	}
	.a_img_logo span{
		font-size: 38px;
	}
	.aligospan{
		font-size: 37px!important;
	}
	.about_title_logo{
		height: 110px;
	}
	.company_logo_item_02{
		right: -110px;
		top: -60px;
	}
	.company_logo_item_02 img{
		width: 70%;
	}
}

@media (max-width: 886px) {
	.company_title_box{display: inherit;}
	.bRight{display: none;}
	
	.company_logo_item_02{
		right: -110px;
		top: -120px;
	}
}

@media (max-width: 767px) {
	.company_top_box{
		height: 240px;
	}
	.company_top_bg{
		height: 240px;
	}
	.company_top_bg02{
		height: 240px;
	}
	.section-header h3{
		font-size: 1.6rem;
		top:88px;
	}
	
	
	.company_detailLine{
		padding-top: 30px;
	}
	.company_detail_box{
		padding-bottom: 40px;
	}
	.company_title{
		font-size: 1.4rem;
		font-weight: bold;
	}
	.company_suBtitle{
		font-size: 0.82rem;
		line-height: 22px;
	}
	
	.top_line {
		display: flex;
		position: relative;
		width: 100%;
		height: 3px;
	}
	
	.Tline01 {
		width: 50%;
		height: 3px;
		background-color: #0d54a1;
	}
	
	.Tline02 {
		width: 50%;
		height: 3px;
		background-color: #dddddd;
	}
		
	.a_img_logo {
		position: absolute;
		left: 0px;
		top: 20px;
	}
	.a_img_logo span {
		font-size: 1.4rem;
		font-weight: 500;
		color: #666666;
		letter-spacing: 0px;
		line-height: 28px;
	}
	.aligospan {
		font-size: 1.4rem !important;
		color: #212121 !important;
		font-weight: bold !important;
	}
	
	.about_title_logo{
		height: 50px;
	}
	.company_logo_item_02{
		text-align:center;
		width:100%;
		position: relative;
		right: inherit;
		top: inherit;
	}
	.company_logo_item_02 img{
		width: 80%;
	}
	
	.company_text_line{
		margin-top: 30px;
	}
	.company_text_suBtitle{
		font-size: 0.9rem;
		line-height: 22px;
		color: #212121;
	}
	.company_text_suBtitle br{
		display: none;
	}
	
	.company_textTableWrap{
		margin-top: 30px;
	}
	.cTableTitle{
		width: 114px;
		padding-top: 14px;
		padding-bottom: 14px;
		font-size: 0.75rem;
		color: #777777;
	}
	.cTableSubTitle {
		width:100%;
		padding-top: 14px;
		padding-bottom: 14px;
		font-size: 0.75rem;
		color: #424242;
		/* font-weight: bold; */
	}
	
	
	#pc_map_area{display: none;}
	#m_map_area{position:relative;display: block;
	/* background-repeat: no-repeat;position: relative;width: 100%;height: 39vw;background-position: center;background: url(/n_public/img/m_map.png); background-size: 100%;margin-bottom: 110px; */
	}
	#m_map_area img{width:100%;}
	
	.our_location_box{
		position:absolute;
		top: 0px;
		left:0px;
		width: 240px;
		padding-left: 10px;
		padding-top: 10px;
		PADDING-BOTTOM: 10PX;
		padding-right: 10px;
	}
	.ol_title{
		font-size: 1rem;
		margin-bottom: 1px;
	}
	
	.our_location_title{
		font-size: 0.9rem;
	}
	.our_location_title span{
		font-size: 0.7rem;
	}
}

/*--------------------------------------------------------------
# 응용분야 css
--------------------------------------------------------------*/

.product_SubimgBox{
	padding-top: 60px;
	padding-bottom: 60px;
}

.product_Subimg{
	width:100%;
}

.product_Subimg img{
	width:100%;
}

.product_SubInfoBox{
	position: relative;
}

.product_SubInfoTitle{
	font-size: 28px;
	color: #212121;
	font-weight: 500;
	padding-bottom: 30px;
}

.p_SubInfoLine{
	position: relative;
}

.p_SubBox{
	position: relative;
	width:100%;
	height:168px;
	border-top: 2px solid #ededed;
	padding-top: 30px;
	margin-bottom: 20px;
}

.tt_line{
	position: absolute;
	top:-2px;
	left:0px;
	width:90px;
	height: 2px;
	background-color: #ffa72b;
}

.p_SubBoxTitle{
	font-size: 1.2rem;
}

.p_SubBoxTitle span{
	display: block;
	font-size: 0.95rem;
	margin-top: 20px;
	line-height: 26px;
	color: #212121;
	font-weight: 300;
}

/* .none_marLR{margin-left:0px!important;margin-right:0px!important;} */
.noPadLR{padding-left:0px!important;padding-right:0px!important;}

@media (max-width: 767px) {
	.product_SubimgBox {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.product_SubInfoTitle{
		font-size: 1.4rem;
		font-weight: bold;
		padding-bottom: 25px;
	}
	.p_SubBox{
		    height: 108px;
		padding-top: 15px;
	}
	.p_SubBoxTitle{
		font-size: 1rem;
		font-weight: 500;
	}
	.p_SubBoxTitle span{
		display: block;
		font-size: 0.85rem;
		margin-top: 15px;
		line-height: 23px;
		color: #212121;
		font-weight: 300;
	}
	
	.none_marLR{
		margin-left:0px!important;
		margin-right:0px!important;
	}
	
	.ad_padLR{
		padding-left:0px!important;
		padding-right:0px!important;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer_bottom{
    background-color: #18283a;
    PADDING-TOP: 40PX;
	PADDING-bottom: 40PX;
	PADDING-BOTTOM: 33PX 513px 50px 513px;
}

.bottom_logo img{
	position: relative;
	width: 240px;
}

.footer_bottom .main_info{
	letter-spacing: 0.3px;
    display: inline-block;
    color: #718091;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 40px;
	margin-top: 15px;
}

.footer_bottom .main_info a{
    color: #718091;	
}

.footer_bottom .main_info br{
	display: none;
}

.footer_bottom .main_info span{
	margin-left:10px;
	margin-right:10px;
}

.F_container{
	width: 100%;
	text-align: center;
}

.footer_bottom .copyright{
	font-size: 13px;
	margin-top: 20px;
	color: #bbbdc0;
}

.bottom_logo {
	
}

/* .bottom_logo img{ */
	/* width: 100px; */
/* } */



.F_container{
	    padding-left: 0px;
}


#footer {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 100px 0 100px 0;
  background: #18283a;
}



#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #413e66;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 0.8rem;

  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #b3b3b3;
}

.footer_sub_info{
	font-size: 0.8rem;
	line-height: 20px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	color: #999999;
	margin-bottom: 10px;
}

.add_cursor{
	cursor: pointer;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1bb1dc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0a98c0;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 1rem;
  font-weight: 600;  
  font-family: 'Questrial', sans-serif;
  color: #b3b3b3;
  text-transform: uppercase;
  position: relative;
}



#footer .copyright {
	font-size: 12px;
	color: #718091;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 1600px) {
	.mainBg_product {
		position: absolute;
		right: 150px;
		bottom: 104px;
	}
}

@media (max-width: 1400px) {
	.mainBg_product {
		right: 40px;
	}
}

@media (max-width: 1210px) {
	#header .logo img {
		width: 250px;
	}
	.main-nav a{
		padding: 10px 45px;
	}
}

@media (max-width: 991px) {
	#header .logo img {
	padding-top: 0px;
	    width: 140px;
	}

	#header {
	    height: 60px;
		padding: 20px 0;
	}
	#header.header-scrolled, #header.header-pages{
		height: 60px;
		    padding: 20px 0;
	}
	
	#header .logo h1 {
	font-size: 28px;
	}
	
	#intro{
		margin-top:60px;
	}
	#intro .intro-info {
		padding-top: 40px;
	}
	
	#intro .intro-info h2{
		margin-bottom: 227px;
	}
	
	.position_text {
		position: relative;
		top: 10px;
		z-index: 300;
	}
	
	.m_menuLogo{
		text-align:left;
		position:relative;
		top: 6px;
		display: block;
		padding: 10px 16px 26px 16px;
	}
	.m_menuLogo a{
		padding:0;
		display: inline-block;
	}
	.m_menuLogo img{
		width:140px;
	}
	
	.mNav_bottom_infoBox{
		display: block;
	}

}


@media (max-width: 767px) {
	.back-to-top {
	bottom: 15px;
	}

}


@media (max-width: 767px) {
	#header {
		height: 60px;
		padding: 20px 0;
	}
	#header.header-scrolled, #header.header-pages{
		height: 60px;
	}
	#header .logo img {
		/* left: 16px; */
		width: 140px;
		/* top: 14px; */
	}
	
	#intro {
		min-height: 500px;
		height: auto;
		padding: 0px 0 0px 0;
		margin-top:60px;
	}

	#intro .container {
	height: auto !important;
	}

	#intro .intro-img {
	width: 80%;
	}

	#intro .intro-info {
	text-align: center;
	padding-top: 40px;
	}

	#intro .intro-info h2 {
		font-size: 2rem;
		line-height: 24px;
		font-weight: 600;
	}
	
	#intro .intro-info h2 span{
		font-size: 0.9rem;
		line-height: 22px;
	}
	
	#intro .intro-info h2 br{
		display: none;
	}

	
	.m_btnPosition{
		display: block;
		position: absolute;
		left:50%;
		transform:translateX(-50%);
	}
	
	#intro .intro-info .btn-get-started, #intro .intro-info .btn-services {
		font-size: 0.9rem;
		text-transform: uppercase;
		/* letter-spacing: 1px; */
		display: inline-block;
		padding: 8px 24px;
		transition: 0.5s;
		color: #fff;
		border-radius: 30px;
		border: 1px solid #fff;
		color: #fff;
	}

	.position_text{
	  top: 0px;
	}
	
	.main_bg_change_01,.main_bg_change_02{
		min-height: 500px;
	}
	
	.mainBg_product{
		left:50%;
		transform:translateX(-50%);
		right:inherit;
		bottom: 110px;
	}
	
	.mainBg_product img {
		width: 370px;
	}
	
	.mpsize img{
		width: 300px!important;
	}


}

@media (max-width: 767px) {

	
	#footer .footer-top {
		padding: 60px 0 40px 0;
		background: #333333;
	}
	
	#footer .footer-top .social-links a {
	margin-bottom: 25px;
	}
	
	.footer_bottom{
		PADDING-TOP: 30PX;
		PADDING-bottom: 30PX;
	}
	
	.bottom_logo{
		top: inherit;
		margin-bottom:20px;
	}
	
	.bottom_logo img {
		position: relative;
		width: 200px;
		height: auto;
		left: 0px;
		top: inherit;
	}
	
	.footer_bottom .main_info{
		font-size: 0.8rem;
		line-height: 24px;
		margin-top: 0px;
	}
	
	.main_info span{
		display: none;
	}
	.footer_bottom .main_info br{
		display: block;;
	}
	#footer .copyright {
		font-size: 11px;
	}
}
