@charset "UTF-8";


/*	reset  */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 15px;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

.clearfix::after, .clearfix::before {
	display: block;
	content: "";
	clear: both;
}

.ir_so {
	display: none;
	line-height: 0;
}

em, address, span {
	font-style: normal;
}

img {
	display: block;
}

body {
	overflow-x: hidden;
}

#fullpage {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

#sub_menu {
	position: fixed;
	right: 80px;
	bottom: 50px;
	z-index: 100000;
}

#sub_menu .sub {
	
}

#sub_menu .sub .menu {
	width: 70px;
	height: 150px;
	background-color: #ff2764;
	border-radius: 33px;
	text-align: center;
	margin-bottom: 22px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}

#sub_menu .sub .menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 70px;
	height: 70px;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	font-family: 'Noto Sans KR', sans-serif;
}

#sub_menu .sub .menu a:hover {
	opacity: 0.68;
}

#sub_menu .sub .menu a:first-child {
	margin-bottom: 5px;
	padding-top: 10px;
}

#sub_menu .sub .menu a:last-child {
	padding-bottom: 10px;
}

#sub_menu .sub .menu a img {
	display: block;
	margin-bottom: 7px;
}

#sub_menu .sub a#MOVE_TOP_BTN {
	display: flex;
	text-align: center;
	justify-content: center;
}

#sub_menu .sub a#MOVE_TOP_BTN img {
	display: block;
	cursor: pointer;
}



/* 헤더 영역 레이아웃 */

#header {
	width: 100%;
	height: 90px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all .25s ease-in-out;
}

#header.on {
	background-color: rgb(0,0,0);
	width: 100%;
	height: 110px;
}

#header .logo {
	float: left;
	width: 135px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-left: 80px;
}

#header.on .logo {
	height: 90px;
}

#header .nav {
	float: right;
	margin-right: 80px;
}

#header .nav ul {
	overflow: hidden;
}

#header .nav ul li {
	float: left;
	width: 135px;
	height: 90px;
	margin-right: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding-bottom: 15px;
}

#header.on .nav ul li {
	height: 90px;
}

#header .nav ul li:last-child {
	margin-right: 0;
}

#header .nav ul li.portfolio {
	padding-bottom: 0;
}

#header .nav ul li.portfolio a {
	display: block;
	padding: 15px 18px;
	border-radius: 6.5px;
	background-color: #ff2764;
	text-align: center;
	width: 100%;
}

#header .nav ul li.portfolio a:hover {
	color: lightyellow;
}

#header .nav ul li a {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #fff;
	position: relative;
}

#header .nav ul li a:hover {
	opacity: 0.85;
}

#header .nav ul li a.active::after{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #ff2764;
	position: absolute;
	top: 11px;
	right: -10px;
}


/*
#barMenu {
	display: none;
	position: absolute;
	right: 40px;
	top: 59px;
	width: 40px;
	height: 25px;
	z-index: 100;
}

#barMenu .bar {
	width: 40px;
	height: 4px;
	border-radius: 3px;
	background-color: #fff;
	position: relative;
}

#barMenu .bar::before {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	width: 80%;
	height: 4px;
	border-radius: 3px;
	background-color: #fff;
	opacity: 0.8;
	transition: all .3s ease-in;
}

#barMenu .bar::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 0;
	width: 60%;
	height: 4px;
	border-radius: 3px;
	background-color: #fff;
	opacity: 0.8;
	transition: all .3s ease-in;
}

#barMenu:hover .bar::before {
	width: 100%;
	opacity: 1;
}

#barMenu:hover .bar::after {
	width: 100%;
	opacity: 1;
}

#barMenu .bar.active {
	width: 100%;
	background-color: transparent;
}

#barMenu .bar.active::before {
	width: 100%;
	transform: rotate(45deg);
	top: 10px;
}

#barMenu .bar.active::after {
	width: 100%;
	transform: rotate(-45deg);
	top: 10px;
}
*/




/* 콘텐츠1 영역 레이아웃 */

#section1 {
	background: url(../images/index_bg.png) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
}

#section1 h3 {
	display: block;
	font-size: 72px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	padding-left: 200px;
	padding-top: 320px;
}

#section1 a {
	display: block;
	margin-top: 60px;
	padding-left: 200px;
}

#section1 a span.icon {
	display: inline-block;
	padding: 2.5px 8px 3.5px;
	background-color: #ff2764;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	margin-right: 15px;
}

#section1 a span.text {
	display: inline-block;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	vertical-align: -0.2px;
}

#section1 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section1 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

#section1 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section1 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(255,255,255,.6);
}


/* 콘텐츠2 영역 레이아웃 */

#section2 {
	background-color: #fff;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	padding: 60px 180px;
}

#section2 .cont_wrap {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#section2 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section2 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #000;
}

#section2 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section2 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(0,0,0,.6);
}

#section2 h3 {
	display: inline-block;
	width: 100%;
	font-size: 40px;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 65px;
}

#section2 h3.title_m {
	display: none;
}

#section2 h3 span.dot {
	display: inline-block;
	font-size: 40px;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	color: #ff2764;
}

#section2 .boxes {}

#section2 .boxes>div {
	float: left;
	width: 32%;
	height: 246px;
	margin-right: 2%;
	background-color: #f6f6f6;
	padding: 40px;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all .25s ease-in-out;
	word-break: keep-all;
}

#section2 .boxes>div:hover {
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	background-color: #fff;
}

#section2 .boxes>div:nth-child(3n) {
	margin-right: 0;
}

#section2 .boxes>div:first-child, #section2 .boxes>div:nth-child(2), #section2 .boxes>div:nth-child(3) {
	margin-bottom: 30px;
}

#section2 .boxes>div>h5.b_title {
	display: block;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 24px;
}

#section2 .boxes>div>span.b_desc {
	display: block;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	margin-top: 50px;
	letter-spacing: -0.3px;
	width: 80%;
}

#section2 .boxes>div>i {
	position: absolute;
	right: 40px;
	top: 40px;
	display: block;
	font-size: 40px;
}

#section2 .boxes>.box4>.img{
	position: absolute;
	right: 40px;
	top: 40px;
	font-size: 30px;
	margin-top: -3px;
}


/* 콘텐츠3 영역 레이아웃 */

#section3 {
	background: url(../images/about2_bg.png) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	padding: 200px 200px 120px;
	position: relative;
	overflow: hidden;
}

#section3 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section3 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

#section3 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section3 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(255,255,255,.6);
}

#section3 h3 {
	display: inline-block;
	font-size: 40px;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 65px;
	float: left;
	width: 27.2%;
}

#section3 h3 span.dot {
	display: inline-block;
	font-size: 40px;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	color: #ff2764;
}

#section3 h4 {
	display: flex;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 17.2px;
	font-weight: 500;
	height: 104px;	
	align-items: flex-end;
	position: relative;
	opacity: 0.5;
	color: #fff;
	width: 72.6%;
	float: left;
	margin-bottom: 65px;
}

#section3 h4::before {
	content: "";
	background-color: #fff;
	width: 45px;
	height: 3px;
	position: absolute;
	top: 10px;
	left: 0;
}

#section3 .boxes {
	width: 100%;
	overflow: hidden;
}

#section3 .boxes>div {
	float: left;
	width: 23.5%;
	height: 470px;
	border: thin solid #6a6865;
	margin-right: 2%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all .25s ease-in-out;
	word-break: keep-all;
	
}

#section3 .boxes>div:hover {
	background-color: #ff2764;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	border: 0;
}

#section3 .boxes>div:hover span {
	color: rgba(255,255,255,.9);
}

#section3 .boxes>div:last-child {
	margin-right: 0;
}

#section3 .boxes>div>i {
	color: #fff;
	font-size: 42px;
}

#section3 .boxes>div>h5 {
	display: block;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 26px;
	margin: 26px 0 32px;
}

#section3 .boxes>div>span.b_desc {
	display: block;
	color: #fff;
	width: 88%;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	color: rgba(255,255,255,.5);
	line-height: 1.6
}

#section3 .boxes>div>span.b_desc_m {
	display: none;
	color: #fff;
	width: 88%;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	color: rgba(255,255,255,.5);
	line-height: 1.6
}



/* 콘텐츠4 영역 레이아웃 */

#section4 {
	background: url(../images/whybk1_bg.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	padding: 270px 200px 120px;
	position: relative;
	overflow: hidden;
}

#section4 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section4 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

#section4 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section4 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(255,255,255,.6);
}

#section4 h3 {
	display: inline-block;
	font-size: 40px;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 90px;
}

#section4 h3.title_m {
	display: none;
}

#section4 h3.title_m2 {
	display: none;
}

#section4 .boxes {}

#section4 .boxes>div {
	float: left;
	width: 32%;
	margin-right: 2%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all .25s ease-in-out;
	word-break: keep-all;
}

#section4 .boxes>div:nth-child(3n) {
	margin-right: 0;
}

#section4 .boxes>div>h5.b_title {
	display: block;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 24px;
	position: relative;
	line-height: 1.7;
}

#section4 .boxes>div>h5.b_title_m {
	display: none;
}

#section4 .boxes>div>h5.b_title_m2 {
	display: none;
}

#section4 .boxes>div>h5.b_title::after {
	width: 45px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	bottom: -24px;
	left: 1px;
	content: "";
}

#section4 .boxes>div>span.b_desc {
	display: block;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	margin-top: 50px;
	letter-spacing: -0.3px;
	padding-right: 80px;
}

#section4 .boxes>div>span.b_desc_m {
	display: none;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	margin-top: 12px;
	letter-spacing: -0.3px;
}



/* 콘텐츠5 영역 레이아웃 */

#section5 {
	background: url(../images/whybk2_bg.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	padding: 200px 200px 120px;
	position: relative;
	overflow: hidden;
}

#section5 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section5 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

#section5 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section5 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(255,255,255,.6);
}

#section5 h3 {
	display: inline-block;
	font-size: 40px;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 95px;
}

#section5 h3 span.dot {
	display: inline-block;
	font-size: 40px;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	color: #ff2764;
}

#section5 h4 {
	display: flex;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 17.2px;
	font-weight: 500;
	float: right;
	height: 104px;	
	align-items: flex-end;
	position: relative;
	opacity: 0.5;
	margin-right: 80px;
	color: #fff;
}

#section5 h4::before {
	content: "";
	background-color: #fff;
	width: 45px;
	height: 3px;
	position: absolute;
	top: 10px;
	left: 0;
}

#section5 .graph {
	background: url(../images/5_graph.png) no-repeat;
	width: 1530px;
	height: 410px;
	position: relative;
}

#section5 .graph .sub_desc {
	display: block;
	color: rgba(255,255,255,.5);
	font-size: 12px;
	font-family: 'Noto Sans KR', sans-serif;
	position: absolute;
	top: 0;
	left: 0;
}

#section5 .graph .dots {
	position: relative;
}

#section5 .graph .dots>.circle {
	position: absolute;
	z-index: 1000;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border-radius: 50%;
	transition: all .25s ease-in-out;
}

#section5 .graph .dots>.circle.on {
	background-color: #ff2764;
}

#section5 .graph .dots .dot1 {
	left: 136px;
	top: 315px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot2 {
	left: 291px;
	top: 284px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot3 {
	left: 446px;
	top: 262px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot4 {
	left: 601px;
	top: 230px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot5 {
	left: 756px;
	top: 208px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot6 {
	left: 911px;
	top: 171px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot7 {
	left: 1066px;
	top: 154px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot8 {
	left: 1221px;
	top: 106px;
	transform: translate(-50%,-50%);
}

#section5 .graph .dots .dot9 {
	left: 1377px;
	top: 46px;
	transform: translate(-50%,-50%);
	background-color: #ff2764;
	width: 55px;
	height: 55px;
	line-height: 52px;
	text-align: center;
	font-weight: 700;
	color: #fff;
	font-size: 15px;
	position: relative;
	z-index: 1001;
	font-family: 'Noto Sans KR', sans-serif;
}

#section5 .graph .dots .dot9::after {
	content: "";
	width: 90px;
	height: 90px;
	background-color: rgba(255,39,100,.35);
	z-index: 999;
	position: absolute;
	top: -18px;
	left: -18px;
	border-radius: 50%;
}

#section5 .graph .dots .box {
	position: absolute;
	padding: 20px;
	border-radius: 12px;
	background-color: #ff2764;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	box-shadow: 0 0 15px #000;
}

#section5 .graph .dots .box::after {
	content: "";
	width: 2px;
	height: 35px;
	background-color: #ff2764;
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
}

#section5 .graph .dots .dot9_desc::after {
	top: -35px;
}

#section5 .graph .dots .dot1_desc {
	display: none;
	left: 43px;
	top: 130px;
}

#section5 .graph .dots .dot2_desc {
	display: none;
	left: 208px;
	top: 160px;
}

#section5 .graph .dots .dot3_desc {
	display: none;
	left: 330px;
	top: 140px;
}

#section5 .graph .dots .dot4_desc {
	display: none;
	left: 520px;
	top: 0;
}

#section5 .graph .dots .dot5_desc {
	display: none;
	left: 667px;
	top: 90px
}

#section5 .graph .dots .dot6_desc {
	display: none;
	left: 835px;
	top: 30px;
}

#section5 .graph .dots .dot7_desc {
	display: none;
	left: 995px;
	top: 34px;
}

#section5 .graph .dots .dot8_desc {
	display: none;
	left: 1160px;
	top: -40px;
}

#section5 .graph .dots .dot9_desc {
	display: none;
	left: 1294px;
	top: 106px;
}


/* 콘텐츠5-모바일 영역 레이아웃 */

#section5 .boxes_m {
	width: 100%;
	display: none;
}

#section5 .boxes_m>div {
	float: left;
	width: 32%;
	height: 146px;
	margin-right: 2%;
	border: thin solid #6a6865;
	padding: 20px 40px;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all .25s ease-in-out;
	word-break: keep-all;
}

#section5 .boxes_m>div:hover {
	background-color: #ff2764;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	border: 0;
}

#section5 .boxes_m>div:nth-child(3n) {
	margin-right: 0;
}

#section5 .boxes_m>div:nth-child(4), #section5 .boxes_m>div:nth-child(5), #section5 .boxes_m>div:nth-child(6) {
	margin-top: 1.5%;
	margin-bottom: 1.5%;
}

#section5 .boxes_m>div h5 {
	display: block;
	font-size: 20px;
	font-family: 'Noto Sans KR', sans-serif;
	padding-bottom: 8px;
	font-weight: 900;
	color: rgba(255,255,255,.5);
}

#section5 .boxes_m>div ul {
	padding-top: 16px;
	border-top: 3px solid rgba(255,255,255,.5);
}

#section5 .boxes_m>div ul li {
	display: block;
	font-size: 14.5px;
	font-family: 'Noto Sans KR', sans-serif;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgba(255,255,255,.9);
}


















/* 콘텐츠6 영역 레이아웃 */

#section6 {
	background-color: #fff;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

#section6 .section_wrap {
	padding: 200px 200px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1005;
	width: 100%;
}

#section6 .pagination {
	position: absolute;
	top: 192px;
	right: 80px;
}

#section6 .pagination strong {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #000;
}

#section6 .pagination span.dash {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-align: center;
	margin: 9px 0;
	opacity: 0.5;
}

#section6 .pagination span.total {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: rgba(0,0,0,.6);
}

#section6 h3 {
	display: inline-block;
	font-size: 40px;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 65px;
	width: 100%;
}

#section6 h3 span.dot {
	display: inline-block;
	font-size: 40px;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	color: #ff2764;
}

#section6 .section_wrap .title_m {
	display: none;
}

#section6 .section_wrap .title_m2 {
	display: none;
}

#section6 .boxes {
	width: 100%;
}

#section6 .boxes>div {
	float: left;
	width: 23.5%;
	height: 120px;
	margin-right: 2%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all .25s ease-in-out;
}

#section6 .boxes>div:nth-child(4) {
	margin-right: 0;
}

#section6 .boxes>div>h5.b_title {
	display: block;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 24px;
}

#section6 .boxes>div>h5.b_title::after {
	content: "";
	background-color: #010101;
	width: 45px;
	height: 3px;
	position: absolute;
	top: 55px;
	left: 0;	
}

#section6 .boxes>div>span.b_desc {
	display: block;
	color: #010101;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	margin-top: 40px;
	letter-spacing: -0.3px;
}

#section6 .contact {
	width: 100%;
	height: 186px;
	background-color: #ff2764;
	margin-top: 160px;
	overflow: hidden;
	padding: 50px 100px;
	box-shadow: 0 0 20px rgba(0,0,0,.5);
}

#section6 .contact div {
	float: left;
	color: #fff;
}

#section6 .contact .c_box1 {
	width: 27%;
	margin-right: 8%;	
}

#section6 .contact .c_box1 h5 {
	display: block;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 22px;
}

#section6 .contact .c_box1 span {
	display: block;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 36px;
}

#section6 .contact .c_box2 {
	width: 15%;
	margin-right: 5%;
}

#section6 .contact .c_box2 label, #section6 .contact .c_box3 label {
	display: block;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 9px;
}

#section6 .contact .c_box2 input {
	width: 100%;
	height: 40px;
	outline: none;
	border: 0;
	border-radius: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	font-size: 14px;
	color: rgba(0,0,0,.3);
}

#section6 .contact .c_box3 {
	width: 20%;
	margin-right: 5%;
}

#section6 .contact .c_box3 input {
	width: 100%;
	height: 40px;
	outline: none;
	border: 0;
	border-radius: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	font-size: 14px;
	color: rgba(0,0,0,.3);
}

#section6 .contact .c_box4 {
	width: 20%;
}

#section6 .contact .c_box4 .c_btn {
	width: 175px;
	height: 74px;
	box-sizing: border-box;
	border-radius: 10px;
	border: 3px solid #fff;
	text-align: center;
	font-family: 'Noto Sans KR', sans-serif;
	background-color: transparent;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	outline: none;
}

#section6 .contact .c_box4 .c_btn:hover {
	color: #ff2764;
	background-color: #fff;
}






/* 푸터 영역 레이아웃 */

#footer_end {
	width: 100%;
	height: 175px;
	background-color: #333;
}

#footer_end .container {
	width: 1530px;
	margin: 0 auto;
	padding: 42px 0;
}

#footer_end .foot1 {
	float: left;
	width: 70%;
}

#footer_end .foot1 a {
	display: inline-block;
	margin-right: 50px;
	color: #ccc;
	font-weight: 700;
	font-size: 14px;
	font-family: 'Noto Sans KR', sans-serif;
}

#footer_end .foot1 a:last-child {
	margin-right: 0;
}

#footer_end .foot2 {
	float: left;
	width: 70%;
	margin-top: 24px;
}

#footer_end .foot2 ul {
	overflow: hidden;
}

#footer_end .foot2 ul li {
	float: left;
	display: inline-block;
	font-weight: 400;
	color: #888;
	margin-right: 28px;
	font-family: 'Noto Sans KR', sans-serif;
	position: relative;
	font-size: 14px;
	line-height: 1.8;
}

#footer_end .foot2 ul li::after {}

#footer_end .foot3 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 94px;
	width: 30%;
}

#footer_end .foot3 img {
	display: block;
	opacity: 0.5;
}




#mouse {
	position: absolute;
	left: 50%;
	bottom: 60px;
	transform: translateX(-50%);
	opacity: 0.6;
}

#mouse img {
	animation: mousemove 1.2s infinite linear;
	animation-play-state: running;
}

@keyframes mousemove {
	0% {transform: translateY(-10px);}
	50% {transform: translateY(0);}
	100% {transform: translateY(-10px);}
}

#section1 #footer {
	position: absolute;
	left: 0;
	bottom: 66px;
	width: 100%;
}

#section1 #footer address {
	display: block;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #fff;
	margin-left: 80px;
}














/* -----------------------------------------------미디어쿼리 */


@media (max-width:1910px){
	
	#section3 h3 {
		width: 100%;
	}
	
	#section3 h4 {
		display: none;
	}
	
	#section5 .graph {
		display: none;
	}
	
	#section5 .boxes_m {
		display: block;
	}
	
	#section6 .boxes>div {
		width: 32%;
	}
	
	#section6 .boxes>div:nth-child(3) {
		margin-right: 0;
	}
	
	#section6 .boxes>div:nth-child(4) {
		display: none;
	}
	
	#footer_end .foot1, #footer_end .foot2 {
		width: 100%;
	}
	
	#footer_end .foot3 {
		display: none;
	}
	
}


@media (max-width:1680px){
	
	#section4 .boxes>div>span.b_desc {
		padding-right: 0;
	}
	
	#footer_end .container {
		padding: 40px 200px;
		width: 100%;
	}
	
}



@media (max-width:1600px){
	
	#section3 .boxes>div {
		width: 49%;
		height: 240px;
	}
	
	#section3 .boxes>div i {
		display: none;
	}
	
	#section3 .boxes>div h5 {
		margin-top: 0;
	}
	
	#section3 .boxes>div:nth-child(2) {
		margin-right: 0;
	}
	
	#section3 .boxes>div:nth-child(3), #section3 .boxes>div:nth-child(4) {
		margin-top: 2%;
	}

}



@media (max-width:1560px){
	
	#section2 .boxes>div>i {
		display: none;
	}
	
	#section2 .boxes>div>.img {
		display: none;
	}
	
	#section2 .boxes>div {
		height: 260px;
	}
	
	#section2 .boxes>div>span.b_desc {
		width: 95%;
	}
	
	#section5 h4 {
		display: none;
	}
	
	#section6 .section_wrap .title {
		display: none;
	}
	
	#section6 .section_wrap .title_m {
		display: block;
	}
	
	#section6 .section_wrap .boxes {
		display: none;
	}
	
	#section6 .section_wrap .contact {
		margin-top: 80px;
		padding: 50px;
		height: 100%;
	}
	
}



@media (max-width:1500px){
	
	#section6 .contact>div:first-child {
		width: 100%;
		margin-right: 0;
		position: relative;
	}
	
	#section6 .contact>div:nth-child(2), #section6 .contact>div:nth-child(3) {
		margin-top: 50px;
	}
	
	#section6 .contact>div:nth-child(2) {
		width: 20%;
	}
	
	#section6 .contact>div:nth-child(3) {
		width: 30%;
		margin-right: 0;
	}
	
	#section6 .contact>div:nth-child(4) {
		margin-top: -84px;
		width: 45%;
		text-align: right;
	}
	
	#section6 .contact>div:nth-child(4) .c_btn {
		height: 207px;
	}
	
}


@media (max-width:1440px){
	
	#section2 .boxes>div>h5.b_title {
		font-size: 20px;
	}
	
}



@media (max-width:1400px){
	
	#section1 h3 {
		font-size: 60px;
		padding: 0;
	}
	
	#section1 a {
		padding-left: 0;
	}
	
	#section1 .title_wrap {
		width: 100%;
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	#section3 .boxes>div h5 {
		margin-bottom: 20px;
	}
	
	#section4 h3.title {
		display: none;
	}
	
	#section4 h3.title_m {
		display: block;
	}

}



@media (max-width:1280px){
	
	#section2 .boxes>div {
		width: 49%;
		margin-right: 2%;
		height: 240px;
	}
	
	#section2 .boxes>div:nth-child(2) {
		display: none;
	}
	
	#section2 .boxes>div:nth-child(5) {
		display: none;
	}
	
	#section5 .boxes_m>div {
		width: 49%;
	}
	
	#section5 .boxes_m>div:nth-child(2), #section5 .boxes_m>div:nth-child(4) {
		margin-right: 0;
	}
	
	#section5 .boxes_m>div:nth-child(3) {
		margin-right: 2%;
		margin-top: 1.5%;
		margin-bottom: 1.5%;
	}
	
	#section5 .boxes_m>div:nth-child(5), #section5 .boxes_m>div:nth-child(6) {
		margin-top: 0;
	}
	
	#section5 .boxes_m>div:nth-child(7), #section5 .boxes_m>div:nth-child(8), #section5 .boxes_m>div:nth-child(9) {
		display: none;
	}
	
	#footer_end {
		height: 100px;
	}
	
	#footer_end .foot1 {
		width: 100%;
		text-align: center;
	}
	
	#footer_end .foot2 {
		display: none;
	}
	
}



@media (max-width:1180px){
	
	#sub_menu {
		right: 0;
	}
	
	#header .logo {
		margin-left: 40px;
	}
	
	#header .nav {
		margin-right: 40px;
	}
	
	#header .nav ul li {
		width: 100px;
	}
	
	#header .nav ul li:last-child {
		width: 135px;
	}
	
	#section1 h3 {
		font-size: 50px;
	}
	
	#fullpage>div>.pagination {
		right: 40px;
	}
	
	#section1 #footer address {
		margin-left: 40px;
	}
	
	#section2 {
		padding: 30px 140px;
	}
	
	#section3 {
		padding: 200px 140px 0;
	}
	
	#section4 {
		padding: 270px 140px 0;
	}
	
	#section5 {
		padding: 200px 140px 0;
	}
	
	#section6 .section_wrap {
		padding: 200px 140px 0;
	}
	
	#sub_menu {
		margin-right: 40px;
	}
	
	#footer_end .container {
		padding: 40px 140px;
	}
	
}


@media (max-width:1080px){
	
	#section4 {
		padding: 200px 140px 0;
	}
	
	#section4 h3.title_m2 {
		margin-bottom: 120px;
	}
	
	#section4 .boxes>div {
		float: none;
		width: 98%;
		margin-bottom: 8%;
	}
	
	#section4 .boxes>div:last-child {
		margin-bottom: 0;
	}
	
	#section4 .boxes>div>h5.b_title::after {
		display: none;
	}
	
	#section4 .boxes>div>h5.b_title {
		display: none;
	}
	
	#section4 .boxes>div>h5.b_title_m {
		display: block;
		color: #fff;
		font-family: 'Noto Sans KR', sans-serif;
		font-weight: 700;
		font-size: 24px;
		position: relative;
		line-height: 1.7;
		text-decoration: underline;
	}	

	#section4 .boxes>div>span.b_desc {
		margin-top: 20px;
	}
	
}



@media (max-width:1040px){
	
	#section4 h3.title_m {
		display: none;
	}
	
	#section4 h3.title_m2 {
		display: block;
	}
	
}


@media (max-width:960px){
	
/*
	#header .nav {
		position: absolute;
		right: -290px;
		top: 124px;
		width: 160px;
		height: 230px;
		background-color: rgba(0,0,0,.9);
		transition: all .5s ease;
		border-radius: 12px;
	}	
	
	#header .nav.open {
		right: -6px;
	}
	
	#header .nav>ul {
		
	}
	
	#header .nav>ul>li {
		border-top: 1px solid rgba(255,255,255,.2);
		border-bottom: 1px solid rgba(255,255,255,.2);
		width: 100%;
		height: 46px !important;
		position: relative;
		padding-bottom: 0;
	}
		
	#header .nav>ul>li:first-child {
		border-top: 1px solid rgba(255,255,255,.2);
	}
	
	#header .nav>ul>li:last-child {
		border: 0;
		width: 100%;
	}
	
	#header .nav>ul>li>a {
		display: block;
		font-size: 14px;
		font-weight: 700;
		transition: all .3s ease;
		text-align: left;
		width: 100%;
		text-align: center;
		height: 46px !important;
		line-height: 48px;
	}
	
	#header .nav>ul>li>a:first-child {
		border-radius: 12px;
	}
	
	#header .nav>ul>li>a:last-child {
		padding: 0;

	}
	
	#header .nav>ul>li>a:last-child:hover {
		background-color: #891939;
		color: white;
	}
	
	#barMenu {
		display: block;
	}
*/
	
	#header .nav>ul>li:first-child {
		display: none;
	}
	
	#header .nav>ul>li:nth-child(2), #header .nav>ul>li:nth-child(3), #header .nav>ul>li:nth-child(4) {
		display: none;
	}
	
	#header .nav>ul>li>a:last-child {
		display: block;
		padding: 10px 18px;
	}
	
	#header .nav>ul>li>a:last-child:hover {
		background-color: #891939;
	}
	
	#section1 #mouse {
		display: none;
	}
	
	#section2 {
		padding: 50px 40px;
	}
	
	#section2 .boxes>div {
		width: 100%;
		height: 180px;
	}
	
	#section2 h3 {
		font-size: 30px;
		margin-bottom: 40px;
		line-height: 1.2;
	}
	
	#section2 .boxes div.box1, #section2 .boxes div.box3 {
		margin-bottom: 10px;
		margin-right: 0;
	}
	
	#section2 .boxes>div>i {
		display: block;
	}
	
	#section2 .boxes>div>.img {
		display: block;
	}
	
	#section2 .boxes>div:nth-child(6) {
		display: none;
	} 
	
	#section2 .boxes>div>span.b_desc {
		margin-top: 30px;
		line-height: 1.4;
	}
	
	#section3 {
		padding: 200px 50px 0;
	}
	
	#section3 h3 {
		font-size: 30px;
		margin-bottom: 40px;
		line-height: 1.2;
	}
	
	#section3 .boxes>div h5 {
		font-size: 22px;
	}
	
	#section3 .boxes>div span {
		font-size: 14px;
	}
	
	#section4 {
		padding: 200px 50px 0;
	}
	
	#section4 h3 {
		font-size: 30px;
		margin-bottom: 40px;
		line-height: 1.2;
	}
	
	#section5 {
		padding: 200px 50px 0;
	}
	
	#section5 h3 {
		font-size: 30px;
		margin-bottom: 100px;
		line-height: 1.2;
	}
	
	#section6 h3 {
		font-size: 30px;
		margin-bottom: 90px;
		line-height: 1.2;
	}
	
	#section6 .section_wrap {
		padding: 200px 50px 0;
	}
	
	#section6 .section_wrap .contact {
		margin-top: 40px;
	}
	
	#sub_menu .sub .menu {
		display: none;
	}
	
	#footer_end .container {
		padding: 40px 50px;
	}
	
}


@media (max-width:768px){
	
	#section1 h3 {
		font-size: 36px;
	}
	
	#section1 a {
		margin-top: 24px;
	}
	
	#section1 a span.icon {
		font-size: 12px;
	}
	
	#section1 a span.text {
		font-size: 13.2px;
	}
	
	#section1  #footer address {
		font-size: 12px;
	}
	
	#section3 .boxes>div>span.b_desc {
		display: none;
	}
	
	#section3 .boxes>div>span.b_desc_m {
		display: block;
	}
	
}



@media (max-width:700px){
	
	#section6 .section_wrap .contact .c_box1 h5.c_title {
		font-size: 20px;
		text-align: center;
	}
	
	#section6 .section_wrap .contact .c_box1 span.c_number {
		font-size: 30px;
		text-align: center;
	}
	
	#section6 .section_wrap .contact .c_box2 {
		width: 100%;
		margin-right: 0;
		margin-top: 30px;
	}
	
	#section6 .section_wrap .contact .c_box3 {
		width: 100%;
		margin-right: 0;
		margin-top: 20px;
	}
	
	#section6 .section_wrap .contact .c_box4 {
		margin-top: 50px;
		width: 100%;
	}
	
	#section6 .section_wrap .contact .c_box4 button {
		width: 100%;
		height: 80px;
	}
/*
	
	#section6 #map {
		display: none;
	}
*/
	
}


@media (max-width:600px){
	
	#section1 h3 {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	#section1 a {
		text-align: center;
	}
	
	#section1 a span.text {
		width: 76.5%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		vertical-align: -3px;
	}
	
	#section2 {
		padding: 54px 40px;		
	}
		
	#section2 h3 {
		font-size: 26px;
		line-height: 1.1;
	}
	
	#section2 .boxes .box4 {
		height: 180px;
		margin-bottom: 22px;
	}
	
	#section3 h3 {
		font-size: 26px;
		line-height: 1.1;
	}
	
	#section4 h3 {
		font-size: 26px;
	}
	
	#section4 .boxes>div {
		margin-bottom: 8%;
		border: 1px solid #fff;
		padding: 20px;
	}
	
	#section4 .boxes>div:last-child {
		margin-bottom: 0;
	}
	
	#section4 .boxes>div>h5.b_title_m {
		font-size: 18px;
		text-align: center;
	}
	
	#section4 .boxes>div>span.b_desc {
		display: none;
	}
	
	#section4 .boxes>div>span.b_desc_m {
		display: block;
	}
	
	#section5 h3 {
		font-size: 26px;
	}
	
	#section6 h3 {
		font-size: 26px;
	}
	
	#fullpage>div>.pagination {
		display: none;
	}
	
}


@media (max-width:550px){
	
	#section2 .boxes>div {
		padding: 30px 40px;
		height: 160px;
	}

	#section2 .boxes>div>i {
		display: none;
	}
	
	#section2 .boxes>div>.img {
		display: none;
	}
	
	#section2 .boxes>div span.b_desc {
		font-size: 13px;
	}
	
	#section2 .boxes .box4 {
		margin-bottom: 62px;
	}
	
	#section3 .boxes>div h5 {
		font-size: 18px;
	}
	
	#section3 .boxes>div span {
		font-size: 13px;
	}
	
	#section4 .boxes>div>h5.b_title_m {
		display: none;
	}
	
	#section4 .boxes>div>h5.b_title_m2 {
		display: block;
		text-decoration: underline;
		color: #fff;
		font-weight: 700;
		text-align: center;
		font-size: 18px;
	}
	
}



@media (max-width:500px){
	
	#section2 {
		padding: 51px 40px;
	}
	
	#section2 h3 {
		font-size: 22.6px;
		line-height: 1;
		text-align: center;
		display: none;
	}
	
	#section2 h3.title_m {
		display: block;
	}
	
	#section2 .cont_wrap .boxes>div>h5 {
		text-align: center;
	}
	
	#section2 .cont_wrap .boxes>div>span {
		width: 100%;
	}
	
	#section3 .boxes>div {
		float: none;
		width: 100%;
		margin-right: 0;
		height: 140px;
		padding: 20px;
	}
	
	#section3 h3 {
		font-size: 22.6px;
		line-height: 0.9;
		margin-bottom: 30px;
		text-align: center;
	}
	
	#section3 .boxes>div:first-child {
		margin-bottom: 2%;
	}
	
	#section3 .boxes>div h5 {
		margin-bottom: 10px;
	}
	
	#section3 .boxes>div span.b_desc_m {
		width: 100%;
	}
	
	#section4 h3.title_m2 {
		font-size: 22.6px;
		text-align: center;
		margin-bottom: 80px;
	}
	
	#section5 h3 {
		font-size: 22.6px;
		line-height: 0.9;
		margin-bottom: 30px;
		text-align: center;
		width: 100%;
	}
	
	#section5 .boxes_m>div {
		width: 100%;
		padding: 15px 20px;
		height: auto;
	}
	
	#section5 .boxes_m>div:first-child {
		margin-bottom: 1.5%;
		margin-right: 0;
	}
	
	#section5 .boxes_m>div:nth-child(2) {
		margin-bottom: 1.5%;
	}
	
	#section5 .boxes_m>div:nth-child(3) {
		margin-top: 0;
		margin-right: 0;
	}
	
	#section5 .boxes_m>div:nth-child(4) {
		margin-top: 0;
		margin-right: 0;
	}
	
	#section5 .boxes_m>div:nth-child(5) {
		margin-right: 0;
	}
	
	#section5 .boxes_m>div:nth-child(6) {
		display: none;
	}
	
	#section5 .boxes_m>div h5 {
		font-size: 14px;
	}
	
	#section5 .boxes_m>div ul {
		padding-top: 10px;
	}
	
	#section5 .boxes_m>div ul li {
		font-size: 13.5px;
	}
	
	#section6 h3 {
		font-size: 22.6px;
		line-height: 0.9;
		margin-bottom: 30px;
		text-align: center;
		width: 100%;
	}
	
}



@media (max-width:480px){
	
	#section1 h3 {
		font-size: 26px;
	}
	
	#section1 a span.text {
		width: 62.5%;
	}
	
	#fullpage>div>.pagination>strong {
		font-size: 14px;
		text-align: right;
	}
	
	#fullpage>div>.pagination>span.dash {
		font-size: 14px;
	}
	
	#fullpage>div>.pagination>span.total {
		font-size: 14px;
		text-align: right;
	}
	
	#section2 .boxes>div {
		height: 118px;
		box-sizing: border-box;
		line-height: 60px;
		margin-bottom: 2% !important;
	}
	
	#section2 .boxes .box4 {
		height: 118px;
		margin-bottom: 2%;
		margin-right: 0;
	}
	
	#section2 .boxes .box6 {
		display: block !important;
		margin-bottom: 0 !important;
	}
	
	#section2 .boxes>div span.b_desc {
		display: none;
	}
	
	#section2 .boxes>div:hover h5.b_title {
		display: none;
	}
	
	#section2 .boxes>div:hover span.b_desc {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-weight: 500;
		font-size: 14px;
		margin: 0;
		height: 100%;
	}
	
	#section3 {
		padding-top: 240px;
	}
	
	#section3 h3 {
		margin-bottom: 40px;
	}
	
	#section3 .boxes>div {
		height: 118px;
	}
	
	#section3 .boxes>div h5.b_title {
		margin-bottom: 0;
	}
	
	#section3 .boxes>div span.b_desc_m {
		display: none;
	}
	
	#section3 .boxes>div:hover h5.b_title {
		display: none;
	}
	
	#section3 .boxes>div:hover span.b_desc_m {
		display: block;
		color: #fff;
	}
	
	#section4 {
		padding: 240px 50px 0;
	}
	
	#section4 h3.title_m2 {
		line-height: 1.5;
		text-align: center;
		margin-bottom: 40px;
	}
	
	#section4 .boxes>div {
		height: 156px;
		display: flex;
		justify-content: center;
		margin-bottom: 2%	
	}
		
	#section4 .boxes>div>span.b_desc_m {
		display: none;
	}
	
	#section4 .boxes>div:hover h5.b_title_m2 {
		display: none;
	}
	
	#section4 .boxes>div:hover {
		background-color: #fff;
	}
	
	#section4 .boxes>div:hover span.b_desc_m {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-weight: 500;
		font-size: 14px;
		margin: 0;
		color: #ff2764;
	}
	
	#section5 .boxes_m>div {
		height: 113px;
	}
	
	#section5 .boxes_m>div>h5 {
		text-align: center;
		padding-bottom: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	
	#section5 .boxes_m>div>ul {
		display: none;
	}
	
	#section5 .boxes_m>div:hover h5 {
		display: none;
	}
	
	#section5 .boxes_m>div:hover ul {
		display: flex;
		border-top: 0;
		padding-top: 0;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		width: 100%;
		height: 100%;
		text-align: center;
	}
	
	#footer_end .foot1 a:nth-child(2) {
		margin-right: 0;
	}
	
	#footer_end .foot1 a:nth-child(3) {
		display: none;
	}
	
}



@media (max-width:479px){
	
	#sub_menu {
		display: none;
	}
	
	#section1 h3 {
		font-size: 24px;
	}
	
	#section1 a span.text {
		width: 56.5%;
	}
	
	#section6 .section_wrap .title_m {
		display: none;
	}
	
	#section6 .section_wrap .title_m2 {
		display: block;
	}
	
	
	
}



@media (max-width:440px){
	
	#header.on {
	background-color: rgb(0,0,0);
	width: 100%;
	height: 100px;
	}

	#header.on .logo {
		height: 70px;
	}
	
	#header.on .nav ul li:last-child {
		height: 70px;
	}
	
	#section1 h3 {
		font-size: 22px;
	}
	
	#section2 {
		padding: 51px 40px;
	}
	
	#section2 .cont_wrap .boxes>div {
		padding: 15px 40px;
		height: 88px;
	}
	
	#section3 {
		padding: 51px 40px;
	}
	
	#section3 .boxes>div {
		padding: 15px 40px;
		height: 88px;
	}
	
	#section3 h3.title {
		margin-top: 95px;
	}
	
	#section4 {
		padding: 51px 40px;
	}
	
	#section4 h3.title_m2 {
		margin-top: 95px;
	}
	
	#section4 .boxes>div {
		padding: 15px 40px;
		height: 116px;
	}
	
	#section5 {
		padding: 51px 40px;
	}
	
	#section5 h3.title {
		margin-top: 95px;
	}
	
	#section5 .boxes_m>div {
		padding: 15px 40px;
		height: 72.2px;
	}
	
	#section6 .section_wrap {
		padding: 51px 40px;
	}
	
	#section6 .section_wrap h3.title_m2 {
		margin-top: 95px;
	}
	
	#section6 .section_wrap .contact {
		padding: 30px 40px;
		height: 362px;
	}
	
	#section6 .section_wrap .contact .c_box1 h5.c_title {
		font-size: 16px;
	}
	
	#section6 .section_wrap .contact .c_box1 span.c_number {
		font-size: 24px;
	}
	
	#section6 .section_wrap .contact .c_box2 {
		margin-top: 20px;
	}
	
	#section6 .section_wrap .contact .c_box2 label {
		font-size: 14px;
	}
	
	#section6 .section_wrap .contact .c_box2 input {
		height: 30px;
	}
	
	#section6 .section_wrap .contact .c_box3 label {
		font-size: 14px;
	}
	
	#section6 .section_wrap .contact .c_box3 input {
		height: 30px;
	}
	
	#section6 .section_wrap .contact .c_box4 {
		margin-top: 24px;
	}
	
	#section6 .section_wrap .contact .c_box4 button {
		height: 60px;
	}
	
	#section1 #footer address {
		margin-left: 0px;
		text-align: center;
		letter-spacing: 0.5px;
	}
	
}



@media (max-width:375px){
	
	#header h1.logo {
		height: 70px;
	}
	
	#header .logo a img {
		width: 80%;
	}
	
	#header .nav {
		height: 70px;
	}
	
	#header .nav ul li {
		height: 70px;
	}
	
	#header .nav ul li:last-child a {
		height: 29px;
		padding: 5px 10px;
		width: 120px;
		margin-left: 10px;
	}
	
}