
/* --- 섹션 공통 --- */

.bg_center {
    background-position: center !important;
    background-size: cover !important;
	background-repeat: no-repeat !important;
}

.nanummj {
    font-weight: 800;
    font-family: 'Nanum Myeongjo', serif;
}

a:hover {
	color: inherit;
}

/* 섹션 타이틀 */
.sectBox p {
	margin-bottom: 5px;
}

.sectBox .secTitleNum {
	color: #d1283d;
	font-size: 42px;
	font-weight: 300;
}

.sectBox .secTitle {
	font-size: 40px;
	font-weight: 400;
	font-family: 'Black Han Sans', sans-serif !important;
}

.sectBox .secSub {
	line-height: 1.6;
	margin-bottom: 0;
}
/* 섹션 타이틀 */

/* 섹션 애니사각버튼 */
.sec_all_btn { 
	position: relative;
	display: inline-block; 
	margin-top: 15px; 
	padding: 30px;
	min-width: 120px; 
	min-height: 120px;
	font-size: 12px; 
	line-height: 1.6;
	text-align: left;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

.sec_all_btn:before {
    content: "";
    display: inline-block;
    position: absolute;
    top:0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #333;
}

.sec_all_btn:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 34px;
    height: 5px;
    background: url(../img/btn_arrow_b.svg) 0 0 no-repeat;
    background-size: 34px 4.6px;
    transition: 0.3s;
	-webkit-transition: 0.3s;
}

.sec_all_btn:hover:after {
    left: 45px;
}

.sec_all_btn span {
    position: absolute;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	background: #fff;
	z-index: 3;
}

.sec_all_btn span:nth-child(1) {
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
}
.sec_all_btn:hover span:nth-child(1) {
	width: 100%;
}

.sec_all_btn span:nth-child(2) {
	right: 0;
	top: 0;
	width: 1px;
	height: 0;
}
.sec_all_btn:hover span:nth-child(2) {
	height: 100%;
}

.sec_all_btn span:nth-child(3) {
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
}
.sec_all_btn:hover span:nth-child(3) {
	width: 100%;
}

.sec_all_btn span:nth-child(4) {
	left: 0;
	bottom: 0;
	width: 1px;
	height: 0;
}
.sec_all_btn:hover span:nth-child(4) {
	height: 100%;
}
/* 섹션 애니사각버튼 */

/* --- 섹션 공통 --- */



/* --- section 1 --- */

#section_1 {
	margin-top: 60px
}

.iconSection {
	text-align: center;
	border-right: 1px solid #ddd;
}

.iconSection p {
	font-size: 14px;
	margin-top: 15px;
}

.numSection span {
	display: inline-block;
	margin-bottom: 5px;
}

.numSection span.ns_pn {
	font-size: 28px;
	font-weight: 600;
}

.numSection div:first-child {
	padding-right: 0;
}

.numSection .circle {
	width: 80px;
	height: 80px;
	background: #d1283d;
	border-radius: 50%;
}

.numSection .circle p {
	color: #fff;
	text-align: center;
	line-height: 80px;
}

.numSection .numText p {
	margin-bottom: 3px;
}

.numSection .numText .textSmall {
	font-size: 12px;
	margin-top: 6px;
}

@media (max-width: 991px) {
.iconSection {
	margin-bottom: 30px;
}

.icon_sec_four > div:nth-child(3) {
	border-right: none;
}
}

/* --- section 1 --- */



/* --- section 2 --- */

#section_2 {
	margin-top: 60px;
}

.secBox_big {
	height: 500px !important;
}

.secBox {
	position:relative;
	height: 235px;
	margin-bottom: 30px;
	background-position: center !important;
    background-size: cover !important;
}

.secBox p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.sectBox {
	margin-bottom: 30px;
	text-align: center;
}

.secBox p {
    z-index: 3;
}

.secBox:after {
    position: absolute;
    z-index: 0;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #d1283d;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.secBox:hover:after {
    opacity: 0.7;
}

.secBox {
	padding: 15px;
}

/* 호버 라인 */
.secBox .sbLine {
	position: relative;
	height: 100%;
}

.secBox .sbLine span {
    position: absolute;
	transition: 0.5s;
	background: rgba(255,255,255,0.5);
	z-index: 3;
}

.secBox .sbLine span:nth-child(1) {
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
}
.secBox:hover .sbLine span:nth-child(1) {
	width: 100%;
}

.secBox .sbLine span:nth-child(2) {
	right: 0;
	top: 0;
	width: 1px;
	height: 0;
}
.secBox:hover .sbLine span:nth-child(2) {
	height: 100%;
}

.secBox .sbLine span:nth-child(3) {
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
}
.secBox:hover .sbLine span:nth-child(3) {
	width: 100%;
}

.secBox .sbLine span:nth-child(4) {
	left: 0;
	bottom: 0;
	width: 1px;
	height: 0;
}
.secBox:hover .sbLine span:nth-child(4) {
	height: 100%;
}
/* 호버 라인 */

/* --- section 2 --- */



/* --- section 3 --- */

#section_3 {
	margin-top: 90px
}

#section_3 .sectBox {
	text-align: left;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
	margin-bottom: 0;
}

.sec_intd_box_1 {
	display: block;
	background: url(https://cdn.pixabay.com/photo/2015/06/30/21/06/grid-826831_960_720.jpg);
	height: 380px;
	background-position: center !important;
    background-size: cover !important;
}
.sec_intd_box_2 {
	display: table;
	height: 380px;
	background: #f7f5f2;
	padding: 0 60px;
}

@media (max-width: 991px) {
.sec_intd_box_2 {
	padding: 0 15px;
}
}

/* --- section 3 --- */



/* --- section 4 --- */

#section_4 {
	margin-top: 90px;
}

.circle_icon_sec .io_sec_tbox {
	padding-left: 74px;
	display:block;
	cursor:default;
}

.io_sec_tbox p {
	position:relative;
	margin-bottom:15px;
	text-transform:none;
	font-weight:300;
	font-size:20px;
	color:#333;
}

.io_sec_tbox span {
	display:block;
	padding-bottom:9px;
	font-size:14px;
	color:#555;
	line-height:22px;
}

.io_sec_tbox span:last-child {
	font-size: 12px;
	font-weight:700;
}

.io_sec_icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	transition: all 0.3s;
	background: #d1283d;
}

.io_sec_icon:hover {
	transform: scale(1.1);
}

.io_sec_icon i {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
	color: #fff;
}

@media (max-width: 991px) {
.circle_icon_sec .io_sec_tbox {
	margin-bottom: 30px;
}
}

/* --- section 4 --- */



/* --- section 5 --- */

#section_5 {
	margin-top: 90px;
}

#sec_parallax { 
	padding: 90px 0; 
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat; 
}

/* --- section 5 --- */



/* --- section 6 --- */

#section_6 {
	margin-top: 90px;
}

.map_gray {
	-webkit-filter: grayscale(100%);
}

.map_wrap {
	padding: 60px;
	background: #f7f5f2;
}

@media (max-width: 991px) {
.map_wrap .map_wraper {
	margin-top: 45px;
}
.map_wrap .map_t_icon {
    top: -120px !important;
}
}

@media (max-width: 767px) {
.map_wrap {
	padding: 60px 0;
}
.map_t_icon {
	left: 0;
}
.map_wrap .col-md-7 {
	padding: 0;
}
}

.map_t_icon {
	position: absolute;
	top: -60px;
	width: 80px;
	height: 80px;
	background: #333;
	text-align: center;
	line-height: 80px;
	color: #fff;
}

.map_wrap .map_txt_box p:first-child {
	font-size: 12px;
}

.map_wrap .sectBox {
	margin-top: 60px;
	text-align: ;
}

.map_wrap .map_txt_box p:first-child {
	font-size: 12px;
}

/* --- section 6 --- */



/* --- section 7 --- */

#section_7 {
	margin-top: 60px;
}

.gall_item {
	position: relative;
	overflow: hidden;
}

.owl-item .gall_item .work_img img {
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}

.owl-item:hover .gall_item .work_img img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.gall_item .work_img:after {
	position: absolute;
	z-index: 0;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #d1283d;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}

.gall_item:hover .work_img:after {
	opacity: 0.7;
}

.gall_item .work_description {
	text-align: center;
}

.gall_item .work_description .work_descr_cont {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	opacity: 0;
	transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}

.gall_item:hover .work_description .work_descr_cont {
	opacity: 1;
	transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.gall_item .work_description p {
	display: block;
	margin: 0 0 12px;
	font-weight: 400;
	line-height: 24px;
	font-size: 24px;
	color: #fff;
}

.gall_item .work_description span {
	color: #d1283d;
	background: #333;
	padding: 4px 10px;
	border-radius: 12px;
}




/* 네비게이션 버튼 */

.projects-wrapper .owl-theme .owl-nav [class*='owl-'] {
    position: relative;
    bottom: -40px;
	z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 0 !important;
    width: 46px;
    height: 46px;
    border: 2px solid #ccc;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    line-height: 42px;
}

.projects-wrapper .owl-theme .owl-nav .owl-prev:before {
    content: "\f104";
}

.projects-wrapper .owl-theme .owl-nav .owl-next:before {
    content: "\f105";
}

.projects-wrapper .owl-theme .owl-nav .owl-next {
    margin-left: -2px !important;
}

.projects-wrapper .owl-theme .owl-nav div:before {
    position: absolute;
    left: 0;
    top: 0;
	right: 0;
    font-family: FontAwesome;
    text-align: center;
    line-height: ;
    font-size: 28px;
    color: #ccc;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.projects-wrapper .owl-theme .owl-nav div:hover {
    z-index: 2;
    border-color: #333;
}

.projects-wrapper .owl-theme .owl-nav div:hover:before {
    color: #333;
}



.gall1_resimg {
	height: 200px;
	background-position: center !important;
	background-size: cover !important;
}

/* --- section 7 --- */



/* --- section 8 --- */

#section_8 {
	margin-top: 90px;
}

.video_section {
	padding: 90px 0;	
}

.video_section .vs_box {
	height: 320px;
	padding: 0 30px;
}

.video_section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 58.4%;
    right: 0;
    bottom: 0;
    background: #f7f5f2;
	opacity: 0.9;
}

.video_section .sectBox {
	padding-left: 30px;
	text-align: left;
	margin: 15px 0 0 0;
}

.video_section .map_t_icon {
	top: -90px;
}

@media (max-width: 991px) {
.video_section:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
	opacity: 0.9;
}

.video_section .sectBox {
	margin-top: 30px;
}

.video_section .map_t_icon {
	top: -440px;
}

.video_section .vs_box, .video_section .sectBox {
	padding: 0;
}
}

/* --- section 8 --- */



/* --- section 9 --- */

#section_9 {
	margin-top: 90px;
}

/* 위젯 공통 */
.li_widget_section div.x_WidgetStyle h3 {
	border-bottom: 3px solid #333;
	letter-spacing: 0.03em;
}

.li_widget_section div.x_WidgetStyle h3 span {
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: -3px;
    border-bottom: 3px solid #d1283d;
}

.li_widget_section ul.x_widgetA li.a_widtetA_others a.title {
	color: #333;
}

.li_widget_section .x_widgetA .date {
    font-size: 11px;
}
/* 위젯 공통 */



/* box 위젯 */
.sec_wbox_bg {
	height: 246px;
	position: relative !important;
    background-size: cover !important;
	background-position: center !important;
	transition: all 0.3s ease;
}

.sec_wbox_bg:before {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
	opacity: 0.6;
	background-color: #d1283d;
}

.li_widget_section .sec_wb_wrap:before {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
	opacity: ;
}

.li_widget_section .sec_wbox_bg .sec_wb_txt {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
}

.li_widget_section .sec_wbox_bg .sec_wb_txt p {
	color: #fff;
	font-size: 12px;
}

.sec_wbox1 {
	padding: 30px 15px !important;
	height: 246px;
}

.sec_wbox2 {
	overflow: hidden;
	height: 100%;
}

.li_widget_section .wb_bgc_2:before {
	background-color: #c7b198;
}

.li_widget_section .wb_bgc_3:before {
	background-color: #dfd3c3;
}

.li_widget_section .wb_bgc_4:before {
	background-color: #f0ece2;
}
/* box 위젯 */



/* list 위젯 */
.li_widget_section .w_box_nor {
	margin-top: 30px;
}
/* list 위젯 */

/* --- section 9 --- */



/* --- section 10 --- */

#section_10 {
	margin-top: 90px;
}

.slide_clients {
	padding: 45px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.slide_clients .item img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	display: block;
	margin: 0 auto;
	opacity: 0.6;
	transition: all 0.3s; 
	-webkit-transition: all 0.3s;
}
.slide_clients .item img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	opacity: 1;
}
.slide_clients .owl-carousel {
	margin: 0;
	padding: 0;
}

.slide_clients .owl-theme .owl-controls {
	position: absolute;
    top: 75px;
    width: 100%;
    text-align: center;
}

.slide_clients .owl-theme .owl-nav, .slide_clients .owl-carousel .owl-nav.disabled {
	display: block;
	margin: 0;
}

/* 섹션10 슬라이드 네비게이션 버튼 */
.slide_clients .owl-theme .owl-nav [class*='owl-'] {
    position: relative;
    z-index: 1;
	margin: 0 !important;
	padding: 0 !important;
    background: #fff !important;
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
	border-radius: 0 !important;
	line-height: 26px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
	font-size: 0;
}

.slide_clients .owl-theme .owl-nav .owl-prev {
    position: absolute;
	top: 50%;
	left: 0;
    transform: translateY(-50%);
} 

.slide_clients .owl-theme .owl-nav .owl-next {
    position: absolute;
	top: 50%;
	right: 0;
    transform: translateY(-50%);
} 

.slide_clients .owl-theme .owl-nav .owl-prev:before {
    content: "\f104";
}

.slide_clients .owl-theme .owl-nav .owl-next:before {
    content: "\f105";
}

.slide_clients .owl-theme .owl-nav div:before {
    position: absolute;
    left: 0;
    top: 0;
	right: 0;
    font-family: FontAwesome;
    text-align: center;
    line-height: ;
    font-size: 20px;
    color: #ccc;
    transition: all 0.3s;
	-ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.slide_clients .owl-theme .owl-nav div:hover {
    z-index: 2;
    border-color: #333;
}
.slide_clients .owl-theme .owl-nav div:hover:before {
    color: #333;
}

/* --- section 10 --- */





