/*************************************************************************************************************

				BOOKMADE USER CSS Ver 0.15

				- Last Update : 2024. 11. 18
				- Author : KERRY

**************************************************************************************************************/


/*---------------------------------------------------------------
	IMPORT FONTS
---------------------------------------------------------------*/
@import url(font-awesome.min.6.5.2.css);
@import url(pretendardvariable.css);
@import url(TmoneyRoundWind.css);
@import url(JalnanGothic.css);

/*@import url(nanumsquareround.css);*/

		
/*--------------------------------------------------------------
	RESET
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	margin: 0px;
	padding: 0px;
	/*list-style: none;*/
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

textarea {
	resize:none;
}

		
/*--------------------------------------------------------------
	VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color:						#717171;
  --white-color:							#fff;
  --black-color:							#000;
  --gray-color:								#F3F3F3;
  --gray-color-300:					#D8D8D8;
  --gray-color-500:					#AEAEAE;
  --gray-color-800:					#3A3A3A;
  --light-gray-color:				#D7DDDF;
  --primary-color:						#6BACCB;
  --bs-primary-rgb:					114,174,200;
  --light-color:								#f8f9fa;
  --dark-color:								#212529;
  --light-blue-color:				#EDF1F3;
  --navbar-color-color:		#131814;
  --swiper-theme-color:		#4A4A4A;
  --swiper-pagination-color:  #4A4A4A;
}

/* on mobile devices below 600px  */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}

/* Fonts */
:root {
    --body-font           : 'TmoneyRoundWind';
    --heading-font       : 'TmoneyRoundWindB';
		
		--nsr-font : 'NanumSquareRound';
		--ptd-font : 'Pretendard Variable';
		--jng-font : 'JalnanGothic';
		

		--aws6-font : 'Font Awesome 6 Pro';
}


/*--------------------------------------------------------------
	GENERAL TYPOGRAPHY
--------------------------------------------------------------*/
/* General Styles */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
	font-family: var(--body-font) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
p {
  font-size: 1.2em;
  color: var(--gray-color-500);
}
ul.inner-list li {
   font-size: 1.2em;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

body::-webkit-scrollbar {
	width: 6px;
}
body::-webkit-scrollbar-track {
	background-color: transparent;
}
body::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: #444;
}
body::-webkit-scrollbar-button {
	width: 0;
	height: 0;
}

/* Background Color */
.bg-gray {
    background: var(--gray-color);
}
.bg-dark {
    background: var(--dark-color);
}
.bg-light {
    background: var(--light-color);
}
.bg-light-blue {
    background: var(--light-blue-color);
}

/* Section Padding */
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}

/* Section margin */
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}
.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}
.margin-xlarge {
  margin-top: 9em;
  margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}


/*--------------------------------------------------------------
	BUTTONS
--------------------------------------------------------------*/
/* Button Sizes */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 0.8em 2.8em;
  font-size: 1.1em;
  letter-spacing: 2px;
}
.btn.btn-large {
  padding: 2.4em 5.1em;
  font-size: 1.8em;
}

/* Button Shapes */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
  border-radius: 0;
}

/* Buttons Color Scheme */
.btn.btn-normal {
  text-decoration: underline;
  border: none;
}
.btn.btn-normal:hover {
  text-decoration: none;
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
  border: none;
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
}
.btn.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* Buttons Aligns */
.btn-left {
  text-align: left;
  display: block;
}
.btn-center {
  text-align: center;
  display: block;
}
.btn-right {
  text-align: right;
  display: block;
}


/*--------------------------------------------------------------
	COMMON
--------------------------------------------------------------*/

body { -webkit-touch-callout: none;
     user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -webkit-user-select: none;
}

.pointer { cursor:pointer }


/* Paging new */
#content-area .page-section {
	width:100%;
	margin-top:30px;
	margin-bottom: 150px;
}
	#content-area .page-section .paging {
		display: flex;
	}
	#content-area .page-section .paging .page_prev {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: auto;
		letter-spacing: -0.03em;
	}
	#content-area .page-section .paging .page_prev i {
		margin-right: 10px;
	}
	#content-area .page-section .paging .page {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: auto;
		text-align: center;
	}
	#content-area .page-section .paging .page_next {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: auto;
		letter-spacing: -0.03em;
	}
	#content-area .page-section .paging .page_next i {
		margin-left: 10px;
	}
	#content-area .page-section .paging .page ul {
		list-style: none;
		display: block;
	}
	#content-area .page-section .paging .page ul li {
		display: inline-block;
		color: #777;
		letter-spacing: -0.07em;
		margin-right: 20px !important;
		padding: 0 5px !important;
		cursor:pointer;
	}
	#content-area .page-section .paging .page ul li:last-child {
		margin-right: 0 !important;
	}
	#content-area .page-section .paging .page ul li:hover {
		color: #3e9de3;
	}
	#content-area .page-section .paging  a {
		color: #777;
		text-decoration: none;
	}
	#content-area .page-section .paging  a:active
	#content-area .page-section .paging  a:focus, 
	#content-area .page-section .paging  a:hover {
		color: #3e9de3;
	}
	#content-area .page-section .paging  a.prev0,
	#content-area .page-section .paging  a.next0 {
		color: #ccc;
	}
	#content-area .page-section .paging .viewPage {
		color: #3e9de3 !important;
		font-weight: bold;
	}
	


/* Paging */
#paging_link {width:530px; height:20px; text-align:center; margin:0 auto;}
#paging_link .paging_str {float:left; width:20px; height:20px; border:#C9C9C9 solid 1px; padding-top:4px; margin:3px 2px; font-family:'돋움'; font-size:11px; line-height:11px; letter-spacing:-1px; cursor:pointer;}
#paging_link .paging_str:hover {float:left; width:20px; height:20px; border:#72ACCD solid 1px; color:#72ACCD; line-height:11px; letter-spacing:-1px; cursor:pointer;}
#paging_link .paging_str_select {float:left; width:20px; height:20px; border:#72ACCD solid 1px; background-color:#72ACCD; color:#FFFFFF; padding-top:4px; margin:3px 2px; font-weight:bold; font-family:'돋움'; font-size:11px; line-height:11px; letter-spacing:-1px; cursor:pointer;}


.mb-150 {
	margin-bottom: 150px !important;
}

.ml-5 {
	margin-left: 5px !important;
}

.mb-75 {
	margin-bottom: 75px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}


/*--------------------------------------------------------------
	HEADER
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease-out;
		
		box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
		
}
.navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
}
.navbar-nav .nav-item a.nav-link {
    font-family: var(--body-font);
		color: var(--accent-color);
		font-size: 18px;
		padding: 5px 20px;
}
.navbar-nav .nav-item a.nav-link.active, 
.navbar-nav .nav-item a.nav-link:focus, 
.navbar-nav .nav-item a.nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-item .menu_on {
	background: var(--primary-color);
	border-radius : 20px;
	color: #fff;
}

.navbar-nav .nav-item a.menu_on,
.navbar-nav .nav-item a.menu_on:hover,
.navbar-nav .nav-item a.menu_on:active {
	color:#fff;
}

#header-nav {
	max-width: 1320px;
	margin: 0 auto;
}


#header-nav .logo {
	width: 220px;
}

/* Offcanvas */

@media only screen and (max-width: 991px) {
	#header-nav {
		padding-right:10px !important;
	}
	#header-nav .container-fluid {
		padding-right:0 !important;
	}
	#header-nav .container-fluid button {
		padding-right:0 !important;
	}
	.navbar-nav .nav-item {
		padding: 5px 20px !important;
	}
	.navbar-nav .nav-item a.nav-link {
		padding: 5px 20px !important;
	}
}

#header-nav .navbar-toggler:focus {
    box-shadow: none;
}
#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: var(--light-blue-color);
}
#header-nav .offcanvas-end {
    width: 500px;
}
.offcanvas.show .nav-item a.nav-link {
    font-size: 1.2em;
}


.offcanvas.show .nav-item:first-child a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\e0c0';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(2) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\f247';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(3) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\e2ca';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(4) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\f1ad';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(5) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\f187';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(6) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\f865';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .nav-item:nth-child(7) a.nav-link:before {
	font-family: var(--aws6-font);
	content: '\f0a1';
	font-weight: bold;
	margin-right:10px;
}

.offcanvas.show .offcanvas-body .navbar-nav {
    align-items: unset!important;
    padding-left: 10px;
}

.offcanvas.show  .offcanvas-header {
	height: 95px;
	background: #fff;
	box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}

.offcanvas.show .offcanvas-header .logo {
	margin-bottom: 15px;
}

.offcanvas-body {
	padding: 5px 0  0  0 !important;
}

.offcanvas.show .offcanvas-body .navbar-nav {
	padding: 0 !important;
}

.offcanvas.show  .offcanvas-body .nav-item {
	 border-bottom: dashed 1px #ccc !important;
	 padding: 5px 0 5px 20px;
}

.offcanvas-header .btn-close {
	margin-top: -20px !important;
}


.offcanvas.show  .top-box {
	/*margin: 20px 0 0 40px;*/
}

.top-box {
	display: block;
	position: fixed;
	top: 0;
	right: 20px;
	height: 100%;
	border: solid 1px red;
	padding: 0;
	margin: auto 0;
}
.top-box ul.top_link {
	display: inline-block;
	width: 50px;
	height: 0;
	padding: 0;
	margin: 0;
	vertical-align: middle;
	border:solid 1px blue;
}

.top-box ul.top_link li {
	display: block;
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}


.top-box ul.top_link li:first-child div {
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	background: #66cc00;
	border-radius: 100%;
	margin: 8px 0 0 8px;
	box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
	.top-box ul.top_link li:first-child div span:before {
		position:relative;
		top: 8px;
		left : 12px;
		font-family: var(--aws6-font);
		content : "\f2a0";
		font-weight: bold;
		font-size : 24px;
		color: #000;
	}

.top-box ul.top_link li:nth-child(2) div {
	background-image: url('/images/top/icon_kakao_ch.svg') !important;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	margin: 8px 0 0 8px;
	box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
	background: transparent;
	border-radius: 25px;
	cursor: pointer;
}

.top-box ul.top_link li:last-child div {
	background-image: url('/images/top/icon_webhard.svg') !important;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	margin: 8px 0 0 8px;
	box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
	background: transparent;
	border-radius: 25px;
	cursor: pointer;
}

.top-box ul.top_link li {
	display: inline-block;
}

.top-box ul.top_link li:first-child div:hover,
.top-box ul.top_link li:nth-child(2) div:hover,
.top-box ul.top_link li:last-child div:hover {
	zoom: 1.15;
	position: relative;
	top: -3px;
	left: -3px;
}


/*--------------------------------------------------------------
	MAIN
--------------------------------------------------------------*/
/* Main Banner */
#mainBanner .item {
  height: 70vh;
  position: relative;
	top: 80px;
}
	#mainBanner .item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#mainBanner .item .cover {
		padding: 75px 0;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.1);
		display: flex;
		align-items: center;
	}
	#mainBanner .item .cover .header-content {
		position: relative;
		padding: 40px 56px;
		top: -40px;
		overflow: hidden;
	}
	#mainBanner .item .cover .header-content .line {
		content: "";
		display: inline-block;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		position: absolute;
		border: 9px solid #fff;
		-webkit-clip-path: polygon(0 0, 50% 0, 30% 100%, 0 100%);
		clip-path: polygon(0 0, 50% 0, 30% 100%, 0 100%);
	}
	#mainBanner .item .cover .header-content h2 {
		font-weight: 800;
		font-size: 30px;
		color: #fff;
	}
	#mainBanner .item .cover .header-content h1 {
		font-size: 50px;
		font-weight: 600;
		margin: 5px 0 20px;
		word-spacing: 3px;
		line-height: 50px;
		letter-spacing:-0.04em;
		color: #fff;
	}
	#mainBanner .item .cover .header-content h4 {
		font-size: 18px;
		font-weight: 400;
		line-height: 28px;
		color: #fff;
	}
#mainBanner .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#mainBanner .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#mainBanner .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#mainBanner .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
#mainBanner .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
#mainBanner .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
#mainBanner .owl-nav .owl-prev:focus {
  outline: 0;
}
#mainBanner .owl-nav .owl-prev:hover {
  background: #000 !important;
}
#mainBanner .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
#mainBanner .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
#mainBanner .owl-nav .owl-next:focus {
  outline: 0;
}
#mainBanner .owl-nav .owl-next:hover {
  background: #000 !important;
}
#mainBanner:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
#mainBanner:hover .owl-next {
  right: 0px;
  opacity: 1;
}

#mainBanner > .owl-carousel > .owl-dots {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
		margin-bottom: 10px;
    transform: translateX(-50%);
}

#mainBanner > .owl-carousel > .owl-dots > .owl-dot > span {
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 50px;
    margin: 0 10px;
    position: relative;
		border-radius: 5px;
}

#mainBanner > .owl-carousel > .owl-dots > .owl-dot > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #5fbee7;
		border-radius: 5px;
}

#mainBanner > .owl-carousel > .owl-dots > .owl-dot.active > span, .slider-1 > .owl-carousel > .owl-dots > .owl-dot:hover > span {
    background-color: #D6D6D6;
}

#mainBanner > .owl-carousel > .owl-dots > .owl-dot.active > span::after {
    width: 100%;
    transition: width 3s 0.2s;
}

/* Main Info */
.icon-box-icon img {
	 width: 95px;
}

.icon-box-content h3 {
	font-family: var(--heading-font);
	font-size: 1.7em;
	font-weight: 800;
}

.icon-box-content p {
	font-family: var(--body-font);
	font-size: 1em !important;
	font-weight: 400;
	letter-spacing: -0.06em;
	color: #999;
}

/* CUSTOMIZING DESIGN */
#customizing_design .display-header {
	border-bottom: solid 1px var(--gray-color-300);
}

#customizing_design .display-header h2 {
	font-family: var(--heading-font);
	letter-spacing: -0.05em;
	font-size: 2.2em;
}

#customizing_design .post-grid {
	padding: 30px 10px 50px 10px;
	text-align: center;
}

#customizing_design ul li {
	display: inline-block;
}


#customizing_design .g_title  a {
	font-size: 0.9em;
	text-decoration: none;
	color: #777;
	line-height: 0.9em;
}

#customizing_design .g_title  a:hover,
#customizing_design .g_title  a:active {
	color: #ff0000 !important;
}

#customizing_design .card-body {
	padding-top: 5px !important;
}


/* PORTFOLIO */
#portfolio {
	border:solid 1px red;
	width: 35%;
	margin: 0;
	display: inline-block;
}

#portfolio .display-header {
	border-bottom: solid 1px var(--gray-color-300);
}

#portfolio .display-header h2 {
	font-family: var(--heading-font);
	letter-spacing: -0.05em;
	font-size: 2.2em;
}

#portfolio .post-grid {
	padding: 30px 10px 50px 10px;
	text-align: center;
}

#portfolio ul li {
	display: inline-block;
}


#portfolio .g_title  a {
	font-size: 0.9em;
	text-decoration: none;
	color: #777;
	line-height: 0.9em;
}

#portfolio .g_title  a:hover,
#portfolio .g_title  a:active {
	color: #ff0000 !important;
}

#portfolio .card-body {
	padding-top: 5px !important;
}


/* BOOKCOVER */
#bookcover {
	border:solid 1px red;
	width: 35%;
	margin: 0;
	display: inline-block;
}

#bookcover .display-header {
	border-bottom: solid 1px var(--gray-color-300);
}

#bookcover .display-header h2 {
	font-family: var(--heading-font);
	letter-spacing: -0.05em;
	font-size: 2.2em;
}

#bookcover .post-grid {
	padding: 30px 10px 50px 10px;
	text-align: center;
}

#bookcover ul li {
	display: inline-block;
}


#bookcover .g_title  a {
	font-size: 0.9em;
	text-decoration: none;
	color: #777;
	line-height: 0.9em;
}

#bookcover .g_title  a:hover,
#bookcover .g_title  a:active {
	color: #ff0000 !important;
}

#bookcover .card-body {
	padding-top: 5px !important;
}


/*--------------------------------------------------------------
	 TOP
--------------------------------------------------------------*/
#top-img-area1 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img01.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area2 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img02.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area3 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img03.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area4 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img04.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area5 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img05.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area6 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img06.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area7 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img07.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area8 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img08.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

#top-img-area9 {
  position: relative;
	top: 80px;
	height: 260px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/top/top_img09.jpg') 50% 60%;
	background-size: cover;
	object-fit: cover;
}

.top-intro {
	margin: 0 auto;
	width: 100%;
	color: #fff;
	text-align:center;
	margin-top: 27px !important;
}
	.top-intro h5 {
		margin: 10px 0 0 0;
		font-family: var(--ptd-font);
		font-weight:100;
		font-size: 1.7em;
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-name: fadeInUp;
		animation-delay: 0.4s;
	}
	.top-intro h3 {
		font-family: var(--ptd-font);
		font-weight:700;
		font-size: 2.5em;
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-name: fadeInDown;
		animation-delay: 0.2s;
	}
	.top-intro div.bracketL {
		position: relative;
		content: "";
		display: inline-block;
		left: -130px;
		top: 40px;
		width: 50px;
		height: 50px;
		font-family: var(--ptd-font);
		font-weight: 400;
		border: 9px solid #fff;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 15%, 15% 15%, 15% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 15%, 15% 15%, 15% 100%, 0 100%);
		 -webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-name: fadeInLeft;
		animation-delay: 0.6s;
	}
	.top-intro div.bracketR {
		position: relative;
		content: "";
		display: inline-block;
		left: 130px;
		top: -35px;
		width: 50px;
		height: 50px;
		font-family: var(--ptd-font);
		font-weight: 400;
		border: 9px solid #fff;
		-webkit-clip-path: polygon(85% 85%, 85% 0, 100% 0, 100% 100%, 0 100%, 0 85%);
		clip-path: polygon(85% 85%, 85% 0, 100% 0, 100% 100%, 0 100%, 0 85%);
		-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-name: fadeInRight;
		animation-delay: 0.7s;
	}


/*--------------------------------------------------------------
	 NAVIGATION
--------------------------------------------------------------*/
#navi-area {
	position: relative;
	top: 90px;
}

#navi-area .container {
	width: 100% !important;
	background: #efefef;
	box-sizing: border-box;
}

#navi-area .container .row div.navi-txt {
	width: 100% !important;
	padding: 12px 20px 10px 20px;
	overflow: hidden !important;
	font-size: 0.9em;
}

#navi-area .container  div.navi-txt span:last-child {
	font-weight: bold;
	color : #6DACCA;
}

#navi-area .container  div.navi-txt span:before {
	font-family: var(--aws6-font);
	content: '\f054';
	color: #aaa;
	margin: 0 5px;
	font-weight: bold;
	font-size: 0.7em;
}


/*--------------------------------------------------------------
	 CONTENTS
--------------------------------------------------------------*/
#content-area {
	position: relative;
	top: 90px;
}

.no-contents {
	width:100%;
	height:300px;
	text-align:center;
	vertical-align:middle;
	padding-top:100px;
	color: #ccc;
}


/*--------------------------------------------------------------
	COVER DESIGN
--------------------------------------------------------------*/
.cover-design-pr {
	font-family: var(--ptd-font);
	text-align: center;
}

.cover-design-pr h3 {
	font-family: var(--ptd-font);
	font-weight: 600;
	font-size: 2em;
	width: 220px;
	margin: 0  auto;
	margin-bottom: 20px;
}

.cover-design-pr h3:after {
	position: relative;
	display: block;
	top: 10px;
	left: 6px;
	content: '';
	width: 207px;
	border-bottom: solid 1px #000;
}

.cover-design-pr h1 {
	font-family: var(--jng-font);
	font-size: 4em;
	margin: 10px 0;
}

.cover-design-area {
	max-width: 1296px;
	height: 1047px;
	width: 100%;
	background: url('/images/cover_design_bg.png') no-repeat #efefef;
	background-size: contain;
	margin-top: 50px;
}

.cover-design-txt1 {
	position: relative;
	top: 220px;
	font-size: 2.2em;
	color: #000;
}

.cover-design-txt2 {
	position: relative;
	top: 550px;
	font-size: 2.6em;
	color: #000;
}

.cover-design-txt3 {
	position: relative;
	top: 570px;
	font-size: 1.3em;
	color: #000;
	font-weight: 500;
}

.cover-sample-btn {
	position: relative;
	top: 680px;
	margin: 0 auto;
	padding-top: 10px;
	padding-left: 20px;
	width: 290px;
	height: 70px;
	font-size: 1.8em;
	font-weight: 600;
	color: #000;
	background: #fff;
	box-sizing: border-box;
	border-radius: 35px;
	cursor: pointer;
}

.cover-sample-btn  p {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #18366C;
	border-radius: 25px;
	color: #fff;
	margin-left: 10px;
}

.cover-sample-btn  p:after {
	font-family: var(--aws6-font);
	content: '\f061';
	font-weight: 100;
	font-size: 0.9em;
}

.cover-design-area2 {
	max-width: 1296px;
	height: 270px;'
	width: 100%;
	background: #efefef;
	padding-top: 30px;
	box-sizing: border-box;
}
	.cover-design-area2 ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
		.cover-design-area2 ul li {
			width: 200px;
			height: 200px;
			background: #fff;
			border-radius:  100px;
			margin-right: 100px;
			box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
			-webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
			-moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
		}
		.cover-design-area2 ul li p:first-child {
			width: 40px;
			height: 40px;
			margin: 0 auto;
			margin-top: 25px;
			font-size: 1.5em;
			color: #fff;
			font-weight: 700;
			background: #1c397d;
			border-radius: 20px;
			padding-top: 2px;
		}
		.cover-design-area2 ul li p:last-child {
			margin-top: 20px;
			font-size: 1.3em;
			font-weight: 500;
			color: #1c397d;
			line-height: 1.3em;
		}
		.cover-design-area2 ul li p:last-child b {
			font-weight: 900;
		}
		.cover-design-area2 ul li:after {
			position: relative;
			top: -117px;
			left: 150px;
			font-family: var(--aws6-font);
			content: '\f054';
			font-weight: bold;
			font-size: 3em;
			color: #fff;
		}
		.cover-design-area2 ul li:last-child {
			margin-right: 0;
		}
		.cover-design-area2 ul li:last-child::after {
			color: #efefef;
		}


/*--------------------------------------------------------------
	DESIGN
--------------------------------------------------------------*/
.design-pr {
	font-family: var(--ptd-font);
	text-align: center;
}
	.design-pr p.pr_txt1 {
		font-size: 2em;
		color: #000;
	}
	.design-pr p.pr_txt2 {
		font-size: 2em;
		color: #000;
	}
	.design-pr h3 {
		font-family: var(--ptd-font);
		font-weight: 600;
		font-size: 2em;
		width: 160px;
		margin: 0  auto;
		margin-bottom: 20px;
	}
	.design-pr h3:after {
		position: relative;
		display: block;
		top: 10px;
		left: 9px;
		content: '';
		width: 142px;
		border-bottom: solid 1px #000;
	}

	.design-pr h1 {
		font-family: var(--jng-font);
		font-size: 4em;
		margin: 10px 0;
	}

.design-pr .design-pr-contents {
	background: #eee;
	padding: 80px 20px 85px 20px;
}

.design-pr p.top-deco {
	position: relative;
	top: 38px;
	width: 380px;
	height: 50px;
	margin: 0 auto;
	background: #eee;
	border-radius: 25px;
}

.design-pr div.point-title p {
	display: block;
	width: 115px;
	background: #D9EAF2;
	color: #000;
	border-radius: 20px;
	margin: 0 auto;
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: -10px;
}
.design-pr div.point-title i:first-child:before {
	position: relative;
	display: inline-block;
	top: 30px;
	left: -70px;
	font-family: var(--aws6-font);
	content: '\f324';
}

.design-pr div.point-title i:last-child:after {
	position: relative;
	display: inline-block;
	top: -20px;
	left: 70px;
	font-family: var(--aws6-font);
	content: '\f323';
}

.design-pr p.point1-box {
	display: inline-block;
	font-size: 2em;
	color: #000;
	background: #fff;
	padding: 8px 100px 0 100px;
	border-radius: 35px;
	box-shadow: 5px 5px 7px rgba(0,0,0, 0.25);
}
	.design-pr p.point1-box span,
	.design-pr p.point2-box span {
		font-family: var(--jng-font);
		font-size: 1.3em;
	}
	.design-pr p.point1-box i,
	.design-pr p.point2-box i {
		color: #7DB5D6;
	}

.design-pr p.point2-box {
	display: inline-block;
	font-size: 2em;
	color: #000;
	background: #fff;
	padding: 10px 100px 5px 100px;
	border-radius: 35px;
	box-shadow: 5px 5px 7px rgba(0,0,0, 0.25);
}

.design-pr p.top-deco2 {
	position: relative;
	top: -15px;
	width: 380px;
	height: 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 25px;
}

.design-pr .design-template-contents {
	background: #fff;
	padding: 0 20px 70px 20px;
}
	.design-pr .design-template-contents p.template_title {
		font-size: 2em;
		color: #000;
		font-weight: 600;
		margin-bottom: 20px;
	}
	.design-pr .design-template-contents .design_template1 {
		display: inline-block;
		position: relative;
		width: 500px;
		height: 320px;
		background: linear-gradient(0deg, rgba(14, 46, 67, 0.9), rgba(14, 46, 67, 0.9)), url('/images/design_template1.png') 50% 50%;
		background-size: cover;
		object-fit: cover;
		border-radius: 25px;
		margin-right: 25px;
		cursor: pointer;
	}
	.design-pr .design-template-contents .design_template1 p:first-child,
	.design-pr .design-template-contents .design_template2 p:first-child {
		position: relative;
		width: 200px;
		top: 50px;
		left: 40px;
		font-size: 2.1em;
		font-weight: 600;
		color: #fff;
		text-align: left !important;
	}
	.design-pr .design-template-contents .design_template1 p:nth-child(2),
	.design-pr .design-template-contents .design_template2 p:nth-child(2) {
		position: relative;
		width: 300px;
		top: 30px;
		left: 40px;
		font-size: 1.4em;
		font-weight: 400;
		color: #fff;
		text-align: left !important;
	}
	.design-pr .design-template-contents .design_template1 p:last-child,
	.design-pr .design-template-contents .design_template2 p:last-child {
		position: relative;
		top : 30px;
		left: 45px;
		width: 3px;
		height: 100px;
		background: #fff;
	}

	.design-pr .design-template-contents .design_template2 {
		display: inline-block;
		position: relative;
		width: 500px;
		height: 320px;
		background: linear-gradient(0deg, rgba(60, 61, 62, 0.9), rgba(60, 61, 62, 0.9)), url('/images/design_template2.png') 50% 50%;
		background-size: cover;
		object-fit: cover;
		border-radius: 25px;
		cursor: pointer;
	}
	.design-pr .design-template-contents .design_template1:after,
	.design-pr .design-template-contents .design_template2:after {
		position: relative;
		top: -100px;
		left: 180px;
		font-family: var(--aws6-font);
		content: '\f138';
		font-size: 2em;
		font-weight: 300;
		color: #fff;
	}

/* 지명원 준비서류 */
.introduction_supplies {
	width: 1100px !important;
	font-family: var(--ptd-font);
	text-align: center;
	font-size: 1.2em;
	margin: 0 auto;
	margin-bottom: 30px;
}
	.introduction_supplies h3 {
		font-size: 1.7em;
		margin-bottom: 20px;
	}
	.introduction_supplies ul {
		vertical-align: top;
	}
	.introduction_supplies li {
		vertical-align: top;
		width: 235px;
		height: 215px;
		padding: 8px 20px 20px 20px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
		margin-right: 5px;
		margin-bottom: 15px;
	}
	.introduction_supplies li:before {
		position: absolute;
		content: '';
		width: 0px;
		height: 0px;
		margin-left: -85px;
		border-top: 18px solid #e7e7e7;
		border-right: 18px solid transparent;
	}
	.introduction_supplies li:after {
		position: relative;
		top: -57px;
		left: 100px;
		content: '';
		width: 0px;
		height: 0px;
		border-bottom: 18px solid #e7e7e7;
		border-left: 18px solid transparent;
	}
	.introduction_supplies li i {
		font-size: 1.3em;
		letter-spacing: 0.05em;
		color: #0D2E44;
	}
	.introduction_supplies li i:before {
		content: "/";
		font-weight: 300;
		font-size: 0.6em;
		color: #0D2E44;
		margin-right: 2px;
	} 
	.introduction_supplies li i:after {
		content: "/";
		font-weight: 300;
		font-size: 0.6em;
		color: #0D2E44;
		margin-left: 2px;
	}
	.introduction_supplies li:nth-child(5),
	.introduction_supplies li:nth-child(6),
	.introduction_supplies li:nth-child(7),
	.introduction_supplies li:nth-child(8) {
		height: 170px;
	}
	.introduction_supplies li:nth-child(5):after {
		position: relative;
		top: 5px;
		left: 100px;
		content: '';
		width: 0px;
		height: 0px;
		border-bottom: 18px solid #e7e7e7;
		border-left: 18px solid transparent;
	}
	.introduction_supplies li:nth-child(6):after,
	.introduction_supplies li:nth-child(7):after,
	.introduction_supplies li:nth-child(8):after {
		position: relative;
		top: -100px;
		left: 100px;
		content: '';
		width: 0px;
		height: 0px;
		border-bottom: 18px solid #e7e7e7;
		border-left: 18px solid transparent;
	}
	.introduction_supplies li h5 {
		 font-size: 1.3em;
		 font-weight: 600;
		 letter-spacing:-0.05em;
		 color: #0D2E44;
	}
	.introduction_supplies li b:after {
		position: absolute;
		margin-left: 88px;
		margin-top: 84px;
		font-family: var(--aws6-font);
		color: #0D2E44;
		content: '\f138';
		font-weight:normal;
		font-size: 1.2em;
	}
	.introduction_supplies li:nth-child(5) b:after,
	.introduction_supplies li:nth-child(6) b:after,
	.introduction_supplies li:nth-child(7) b:after {
		position: absolute;
		margin-left: 88px;
		margin-top: 60px;
		font-family: var(--aws6-font);
		color: #0D2E44;
		content: '\f138';
		font-weight:normal;
		font-size: 1.2em;
	}
	
	.introduction_supplies li p {
		font-size: 0.9em;
		font-weight: 500;
		color: #000;
		line-height: 1.4em !important;
	}
	.introduction_supplies p.add_documents {
		font-size: 0.85em;
		font-weight: 500;
		color: #000;
		text-align: left;
		padding-left: 80px;
		word-break: keep-all;
		word-wrap: break-word;
	}
		.introduction_supplies p.add_documents span {
			font-size: 1.25em;
			color: #0D2E44;
			margin-right: 10px;
		}
		.introduction_supplies p.add_documents span:before {
			font-family: var(--aws6-font);
			color: #0D2E44;
			content: '\f890';
			font-weight:bold;
			margin-right: 5px;
		}


	.introduction_supplies p.add_documents {
		text-align: center;
	}
		.introduction_supplies p.add_documents span {
			display: block;
			font-size: 1.25em;
			color: #0D2E44;
		}
}


/*--------------------------------------------------------------
	PORTFOLIO
--------------------------------------------------------------*/
ul.portfolio {
	display: inline-block;
}
	ul.portfolio li {
		display: inline-block;
		margin: 5px 10px;
		padding: 5px 5px;
		text-align: center;
		cursor: pointer;
	}
		ul.portfolio li span:before {
			content: '';
			margin-right: 10px;
		}
		ul.portfolio li span:after {
			content: '';
			margin-right: 10px;
		}
		ul.portfolio li.on {
			color: #6EAED2;
		}
		ul.portfolio li > p {
			width: 0%;
			background: transparent;
			border-radius: 3px;
			height: 5px;
			margin: 0 auto;
			margin-bottom: 8px;
			transition: .2s ease;
		}
		ul.portfolio li.on > p {
			width: 100%;
			background: #6EAED2;
			border-radius: 3px;
			height: 5px;
			margin: 0 auto;
			margin-bottom: 8px;
			transition: .2s ease;
		}
		ul.portfolio li:hover > p {
			width: 100%;
			background: #ccc;
			border-radius: 3px;
			height: 5px;
			margin: 0 auto;
			margin-bottom: 8px;
			transition: .2s ease-out;
		}

#content-area .cate_title {
	margin: 20px 0;
	text-align: center;
}
	#content-area .cate_title h3 {
		font-size: 1.5em;
	}
	#content-area .cate_title div {
		display: inline-block;
		border-bottom: solid  1px #000;
		margin: 0 auto;
		padding: 0 20px;
	}

#content-area .post-grid {
	padding: 30px 10px 50px 10px;
	text-align: center;
}

#content-area ul li {
	display: inline-block;
}

#content-area .g_title  a {
	font-size: 0.9em;
	text-decoration: none;
	color: #777;
	line-height: 0.9em;
}
	#content-area .g_title  a:hover,
	#content-area .g_title  a:active {
		color: #ff0000 !important;
	}

#content-area .card-body {
	padding-top: 5px !important;
}

#content-area .goods_title {
	height: 150px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 50px;
	text-align: center;
}
	#content-area .goods_title h5 {
		font-size: 1.3em;
		font-weight:bold;
	}
	#content-area .goods_title p {
		color: #999;
		font-weight: normal;
		margin: 0;
		margin-bottom: 5px;
	}

#content-area .goods_title .goods_title_bracket {
 display: inline-block;
 width: 100%;
 margin: 0 auto;
}
	#content-area .goods_title .goods_title_bracket ul {
		display: table;
		margin: 0 auto;
		padding: 0 !important;
	}
	#content-area .goods_title .goods_title_bracket ul li {
		display: table-cell;
		vertical-align: middle;
	}
	#content-area .goods_title .goods_title_bracket ul li:first-child,
	#content-area .goods_title .goods_title_bracket ul li:last-child {
		font-weight: bold;
		color: #efefef;
		font-size: 6em;
		padding: 0 20px;
	}
	#content-area .goods_title .goods_title_bracket ul li:nth-child(2) {
		padding-top: 20px;
	}

#content-area .goods_detail {
	text-align: center;
	margin-bottom: 140px;
	background: #D8D8D8;
}
	#content-area .goods_detail p {
		margin: 0 !important;
		padding: 0 !important;
	}

	#content-area .goods_detail img {
		max-width: 1200px;
		width: 100%;
	}

#content-area .goods_detail .contents-image {
	position: relative;
	z-index: -1;
}
#content-area .goods_detail .book_cover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2)
}

#content-area .goods_detail .watermark {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 0;
	margin-bottom: -30px !important;
}

#content-area .goods_detail .watermarkimg {
	position:	 relative;
	display: inline-block;
	top: -670px;
	vertical-align: middle;
	margin-bottom: -500px;
	width: 50%;
	opacity: 0.25;
}


/*--------------------------------------------------------------
	COMPANY
--------------------------------------------------------------*/
.company-text {
	width: 60% !important;
	margin: 50px 0 40px 0;
	padding: 30px 30px 10px 30px;
	font-family: var(--ptd-font);
	font-size: 1.2em;
	text-align: center;
	margin: auto;
	word-break: keep-all;
}

.company-text:before {
	position: relative;
	top: 20px;
	right: 70px;
	content: '\f10d';
	font-family: var(--aws6-font);
	font-weight:bold;
	color: var(--gray-color-300);
	font-size: 2em;
}
 
 .company-text:after {
	position: relative;
	top: -65px;
	right: -400px;
	content: '\f10e';
	font-family: var(--aws6-font);
	font-weight:bold;
	color: var(--gray-color-300);
	font-size: 2em;
}

.branch {
	width: 90% !important;
	padding: 20px !important;
	background: #F2F2F4;
	margin: auto;
	box-sizing: border-box;
}
	.branch > div {
		display: inline-block !important;
		box-sizing: border-box;
	}
	.branch > div:first-child {
		width: calc(100% - 530px);
		font-size: 1.1em;
	}
	.branch > div:first-child ul  li {
		display: block !important;
	}
	.branch > div:first-child ul li:first-child {
		margin-top: 20px;
		margin-bottom: 30px;
		font-size: 1.5em;
		font-weight: bold;
		letter-spacing: -0.1em;
	}
	.branch > div:first-child ul li:first-child p {
		position: relative;
		bottom: -10px;
		right: -5px;
		content: '';
		background: #000;
		width: 38px;
		height: 7px;
	}
	.branch > div:first-child ul li:nth-child(4) {
		width: 70%;
		margin-top: 20px;
		font-size: 1.2em;
		color: #fff;
		background: #4b4b4b;
		padding: 5px 5px 5px 10px ;
	}
	.branch > div:first-child ul li:nth-child(4) i {
		font-size: 0.9em;
		margin-right: 10px;
	}
	.branch > div:first-child ul li:last-child {
		padding-left: 15px;
		margin-top: 20px;
	}
	.branch > div:first-child ul li:last-child:before {
		position: absolute;
		margin-left: -15px;
		margin-top: 0px;
		content: '';
		width: 5px;
		height: 80px;
		background: #4b4b4b;
	}
	.branch > div:nth-child(2) {
		width: 520px;
		vertical-align: top;
	}

#map1, #map2 {
	margin: 20px auto;
	border: solid 1px #ccc;
}

.rest_time {
	padding-left: 32px;
}


/*--------------------------------------------------------------
	BUSINESS
--------------------------------------------------------------*/
.biz-print {
	margin-top: 30px !important;
	text-align: center;
	font-size: 1.2em;
}
	.biz-print h3 {
		font-weight: 700;
		margin-bottom: 50px;
	}
	.biz-print h3:before {
		position: absolute;
		content : '';
		margin-left: 42px;
		margin-top: -20px;
		width: 40px;
		height: 8px;
		background: #000;
	}


.biz-printimg {
	width: 100% !important;
	padding: 20px !important;
	background: #fff;
	margin: auto;
	box-sizing: border-box;
}
	.biz-printimg > div {
		display: inline-block !important;
		box-sizing: border-box;
	}
	.biz-printimg > div:first-child {
		position: relative;
		top: 80px;
		width: 30%;
		font-size: 1.1em;
		padding-top: 30px;
	}
	.biz-printimg > div:first-child ul li {
		width: 100%;
		height: 60px;
		font-size: 1.3em;
		background: #efefef;
		margin-bottom: 10px;
		padding: 0 0 5px 20px !important;
		border-radius: 10px;
	}
	.biz-printimg > div:first-child ul li:nth-child(1):before {
		font-family: var(--aws6-font);
		content: '\f5f3';
		margin-right: 15px;
		font-size: 1.6em;
		line-height: 1.6em;
		font-weight: bold;
	}
	.biz-printimg > div:first-child ul li:nth-child(2):before {
		font-family: var(--aws6-font);
		content: '\f81d';
		margin-right: 19px;
		font-size: 1.6em;
		line-height: 1.6em;
		font-weight: bold;
	}
	.biz-printimg > div:first-child ul li:nth-child(3):before {
		font-family: var(--aws6-font);
		content: '\f0c5';
		font-size: 1.6em;
		line-height: 1.6em;
		margin-right: 19px;
	}
	.biz-printimg > div:first-child ul li:after {
		font-family: var(--aws6-font);
		content: '\f054';
		float: right;
		margin: 13px 20px 0 0;
	}
	.biz-printimg > div:nth-child(2) {
		width: 68%;
		text-align: center;
	}
	.biz-printimg > div:nth-child(2) img {
		width: 100%;
	}
	
.biz-bind {
	margin-top: 70px !important;
	text-align: center;
	font-size: 1.2em;
	background: #F6F6F6;
	padding: 70px 20px 20px;
}
	.biz-bind h3 {
		font-weight: 700;
		margin-bottom: 30px;
	}
	.biz-bind h3:before {
		position: absolute;
		content : '';
		margin-left: 7px;
		margin-top: -20px;
		width: 40px;
		height: 8px;
		background: #000;
	}
	.biz-bind ul li {
		display: inline-block;
		margin-right: 30px;
		margin-top: 20px;
	}
	.biz-bind ul li p {
			margin-top: 20px;
			font-weight: 700;
			color: #000 !important;
	}

.biz-largeprint {
	margin-top: 80px !important;
	padding-top: 70px;
	text-align: center;
	font-size: 1.2em;
	height: 588px;
	box-sizing: border-box;
	background: url('/images/business/largeprint_bg.jpg');
	background-size: cover;
	object-fit: cover;
}
	.biz-largeprint h3 {
		font-weight: 700;
		margin-bottom: 30px;
	}
	.biz-largeprint h3:before {
		position: absolute;
		content : '';
		margin-left: 32px;
		margin-top: -20px;
		width: 40px;
		height: 8px;
		background: #000;
	}
	.biz-largeprint .largeprint_detail div:nth-child(1) {
			float: right;
			margin-top: 80px;
			margin-right: 70px;
			padding: 10px 0;
			width: 400px;
			text-align: center;
			font-size: 1em;
			font-weight: 300;
	}
		.biz-largeprint .largeprint_detail div:nth-child(2) {
			float: right;
			clear: both;
			margin-top: 20px;
			margin-right: 70px;
			padding: 10px 0;
			width: 400px;
			text-align: center;
			font-size: 1em;
			font-weight: 300;
	}
	.biz-largeprint .largeprint_detail div h4 {
			width: 150px;
			font-size: 1.1em !important;
			font-weight: 700;
			color: #000;
			border:solid 1px #000;
			border-radius: 20px;
			padding: 5px 0;
			margin: 0 auto;
			margin-bottom: 15px;
	}

.biz-design {
	margin-top: 90px !important;
	text-align: center;
	font-size: 1.2em;
}
	.biz-design h3 {
		font-weight: 700;
		margin-bottom: 50px;
	}
	.biz-design h3:before {
		position: absolute;
		content : '';
		margin-left: 19px;
		margin-top: -20px;
		width: 40px;
		height: 8px;
		background: #000;
	}
	
	.biz-design .design_process {
		margin-top: 40px;
	}
		.biz-design .design_process ul {
			padding: 0 !important;
		}
		.biz-design .design_process ul.process_step > li {
			display: inline-block;
			margin-right: 5px;
		}
		.biz-design .design_process ul.process_step > li:last-child {
			margin-right: 0;
		}
		.biz-design .design_process ul.process_step > li:after {
			position: relative;
			top: -254px;
			left: 105px;
			width: 20px;
			font-family: var(--aws6-font);
			content: '\f054';
			font-weight:bold;
			color: #B4B4B4;
		}
		.biz-design .design_process ul.process_step > li:last-child:after {
			position: relative;
			top: -113px;
			left: 105px;
			width: 20px;
			font-family: var(--aws6-font);
			content: '\f054';
			font-weight:bold;
			color: #B4B4B4;
			visibility: hidden;
		}
		.biz-design .design_process ul.process_step  ul {
			text-align: left;
			font-size:0.9em;
			box-sizing: border-box;
		}
		.biz-design .design_process ul.process_step  ul li {
			display: block !important;
			box-sizing: border-box;
			padding-left: 10px;
			
		}
		.biz-design .design_process ul.process_step  li:nth-child(4) ul li {
			padding-left: 0;
		}
		.biz-design .design_process ul.process_step  div p {
			 width:5px;
			 height:80px;
			 word-break:break-all;
			 line-height:8px;
			 text-align: center;
			 margin: 0 0 10px 90px;
			 color: #ccc;
		}
		.biz-design .design_process ul.process_step  div p:before {
			content: 'ㆍㆍㆍㆍㆍㆍㆍㆍㆍㆍ';
		}
		
		.biz-design .design_process ul.process_step ul li:before {
			content: 'ㆍ';
		}
		
		.biz-design .design_process ul.process_step ul.list_one li:nth-child(2):before {
			content: '';
		}
		

/*--------------------------------------------------------------
	FOOTER
--------------------------------------------------------------*/
.footer {
	background: #1b1b1b;
  padding: 30px 0 20px 0;
	color:#fff;
}
	.footer .logo {
		padding: 0 0 10px 15px;
	}
		.footer .logo img {
			width: 200px;
		}


.footer ul.info {
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-left: 5px;
}
	.footer ul.info li {
		display: inline-block;
		margin-right: 20px;
		padding: 3px 0;
	}
	.footer ul.info span {
		background: #fff;
		border-radius: 20px;
		color: #000;
		font-size: 0.7em;
		font-weight:bold;
		padding: 2px 7px;
		margin-right: 5px;
	}
	
.contact {
		margin-top: 20px;
}
	.contact h3 {
		width: 100px;
		color: #666;
		background:#fff;
		font-weight: 500;
		font-size: 18px;
		padding: 5px 10px;
		border-radius: 15px;
		text-align: center;
		margin-bottom: 10px;
	}
	.contact ul {
		padding-left: 5px;
		margin: 0;
		list-style: none;
	}
	.contact ul li {
		color: #fff;
		margin-bottom: 5px;
	}
	.contact ul li i {
		margin-right: 10px;
	}
	.contact span {
		color: #fff;
		font-size: 17px;
		line-height: 27px;
	}

.copyright {
	color: #ccc;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	letter-spacing:-0.05em;
	margin-top:30px;
}
	.copyright span {
		font-weight: 500;
		color: #fff;
	}

#footer-mobile-view {
	display: none;
	color: #777;
	font-size: 0.9em;
}


/*--------------------------------------------------------------
	POPUP
--------------------------------------------------------------*/
.popup {
	position: absolute;
	z-index: 200;
	visibility: hidden;
	border: solid 1px #999999;
	box-sizing: border-box;
}

.popup-footer {
	background: #efefef;
	text-align: right;
	padding-right: 10px;
	padding: 1px 10px 5px 10px;
	box-sizing: border-box;
}

.popup-footer input[type=checkbox] { 
	position: relative;
	top: 2px;
	margin-right: 2px;
}

.popup-footer label {
	cursor: pointer;
	margin-right: 5px;
	font-size: 0.7em;
}

.popup-footer img {
	cursor: pointer;
}


/*--------------------------------------------------------------
	RESPONSE
--------------------------------------------------------------*/
@media only screen and (max-width: 1399px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.97;
	}
		
	/* BUSINESS */
	.biz-largeprint .largeprint_detail div:nth-child(1),
	.biz-largeprint .largeprint_detail div:nth-child(2) 	{
			margin-right: 0;
	}
	
	/* COMPANY */
	.company-text {
		width: 80% !important;
	}
		.company-text:before {
			right: 70px;
		}
		.company-text:after {
			top: -65px;
			right: -400px;
		}
}


@media only screen and (max-width: 1299px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.88;
	}
	
	/* PORTFOLIO */
	#content-area .goods_detail .watermarkimg {
		top: -640px;
	}
}


@media only screen and (max-width: 1239px) {
	/* Header */
	.navbar-nav .nav-item a.nav-link {
		font-size: 16px;
	}
}


@media only screen and (max-width: 1199px) {
	/* Header */
	.navbar-nav .nav-item a.nav-link {
		padding: 5px 10px;
	}
	
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.8;
	}
	
	/* DESIGN */
	.design-pr .design-template-contents .design_template1 {
		display: block;
		margin: 0 auto;
		margin-bottom: 20px;
		
	}
	.design-pr .design-template-contents .design_template2 {
		display: block;
		margin: 0 auto;
	}
	
	/* PORTFOLIO */
	#content-area .goods_detail .watermarkimg {
		top: -610px;
	}
	/* 지명원 준비서류 */
	.introduction_supplies p.add_documents {
		padding-left: 55px;
	}
	
	/* COMPANY */
	.company-text:before {
		right: 40px;
	}
	.company-text:after {
		top: -85px;
		right: -390px;
	}
	
	.branch > div:first-child {
		width: calc(100% - 430px) !important;
		font-size: 1.1em;
	}
	.branch > div:nth-child(2) {
		width: 420px !important;
		vertical-align: top;
	}
	.branch > div:nth-child(2) img {
		width: 410px;
		height: 354px;
		  object-fit: cover;
	}
	
	/* BUSINESS */
	.biz-printimg > div:first-child {
			top : 80px;
	}
	
	.biz-largeprint .largeprint_detail div:nth-child(1),
	.biz-largeprint .largeprint_detail div:nth-child(2)	{
			background: rgba(0, 0, 0, 0.75);
			color: #fff;
	}
	.biz-largeprint .largeprint_detail div h4 {
			color: #fff;
			border:solid 1px #fff;
	}
}


@media only screen and (max-width: 1099px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.75;
	}
	
	/* PORTFOLIO */
	#content-area .goods_detail .watermarkimg {
		top: -590px;
	}
	/* 지명원 준비서류 */
	.introduction_supplies li {
		zoom: 0.9;
	}
}


@media only screen and (max-width: 1042px) {
	/* Header */
	.navbar-nav .nav-item a.nav-link {
		font-size: 15px;
	}
	
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.74;
	}
}


@media only screen and (max-width: 1024px) {
	/* Header */
	.navbar-nav .nav-item a.nav-link {
		padding: 5px 7px;
	}
}


@media only screen and  (max-width: 992px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.72;
	}
	
	/* PORTFOLIO */
	 /* 지명원 준비서류 */
	.introduction_supplies li {
		zoom: 0.8;
	}
	.introduction_supplies p.add_documents {
		zoom: 0.9;
	}
}


@media only screen and (max-width: 991px) {
	/* Main Banner */
	#mainBanner .item .cover .header-content {
		padding: 30px 30px;
	}
	#mainBanner .item .cover .header-content .line {
		-webkit-clip-path: polygon(0 0, 95% 0, 55% 100%, 0 100%);
		clip-path: polygon(0 0, 90% 0, 65% 100%, 0 100%);
	}
	#mainBanner > .owl-carousel > .owl-dots > .owl-dot > span {
		width: 30px;
		margin: 0 5px
	}
	
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.7;
	}
	
	.cover-design-txt1 {
		top: 210px;
	}
	.cover-design-txt2 {
		top: 490px;
	}
	.cover-design-txt3 {
		top: 510px;
	}
	.cover-sample-btn {
		top: 600px;
	}
	
	.cover-design-area2 {
		height: 170px;
	}
	.cover-design-area2 ul {
		margin-top: -100px;
		zoom: 0.9;
	}
		
	/* DESIGN */
	.design-pr p.pr_txt1,
	.design-pr p.pr_txt2 {
		zoom: 0.8;
	}
	.design-pr h1 {
		zoom: 0.75;
	}
	.design-pr p.point1-box,
	.design-pr p.point2-box {
		padding: 15px 50px 5px 50px;
		zoom: 0.9;	
	}
	
	/* PORTFOLIO */
	#content-area .goods_detail .watermarkimg {
		top: -530px;
	}
	
	/* COMPANY */
	.company-text {
		width: 80% !important;
		font-size: 1.1em;
	}
	.company-text:after {
		top: -90px;
		right: -290px;
	}
	
	.branch > div {
		display: block !important;
		box-sizing: border-box;
	}
	.branch > div:first-child {
		width: 100% !important;
	}
	.branch > div:nth-child(2) {
		width: 100% !important;
		margin-top: 30px;
	}
	.branch > div:nth-child(2) img {
		width: 100%;
		object-fit: cover;
	}
	
	/* BUSINESS */
	.biz-printimg > div {
		display: block !important;
	}
		.biz-printimg > div:first-child {
			width: 100%;
			margin-top: -70px;
		}
		.biz-printimg > div:first-child ul {
			padding: 0;
		}
		.biz-printimg > div:nth-child(2) {
			margin-top:  80px;
			width: 100%;
			text-align: center;
		}
		.biz-printimg > div:nth-child(2) img {
			width: 100%;
		}
	
	.biz-print h3:before {
		margin-left: 32px;
	}
	.biz-bind h3:before {
		margin-left: 3px;
	}
		
	.biz-largeprint h3:before {
		margin-left: 26px;
	}
	
	.biz-design h3:before {
		margin-left: 15px;
	}

}


@media only screen and (max-width: 844px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.67;
	}
	
	.cover-design-txt1 {
		top: 210px;
	}
	.cover-design-txt2 {
		top: 490px;
	}
	.cover-design-txt3 {
		top: 510px;
	}
	.cover-sample-btn {
		top: 600px;
	}
	
	.cover-design-area2 {
		height: 170px;
	}
	.cover-design-area2 ul {
		margin-top: -75px;
		zoom: 0.9;
	}
	
	
	/* PORTFOLIO */
	/* 지명원 준비서류 */
	.introduction_supplies li {
		zoom: 0.75;
	}
	.introduction_supplies p.add_documents {
		zoom: 0.9;
	}
}


@media only screen and (max-width: 839px) {
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 0.67;
	}
	.cover-design-area2 {
		height: 150px;
	}
	.cover-design-area2 ul {
		margin-top: -85px;
		zoom: 0.9;
	}
}

@media only screen and (max-width: 826px) {
	.cover-design-area2 ul {
		margin-top: -95px;
	}
}

@media only screen and (max-width: 796px) {
   /* COVER DESIGN */
	 .cover-design-pr {
		zoom: 0.65;
	}
	
	.cover-design-area2 ul {
		margin-top: -95px;
	}
	 
	 /* 지명원 준비서류 */
	 .introduction_supplies li {
		zoom: 0.7;
	}
	.introduction_supplies p.add_documents {
		zoom: 0.9;
	}
}


@media only screen and (max-width: 768px) {
	/* Main Banner */
	#mainBanner > .owl-carousel > .owl-dots > .owl-dot > span {
		width: 20px;
		height: 5px;
		margin: 0 4px
	}
		
	/* COMMON */
	#content-area .page-section .paging .page .first_page,
	#content-area .page-section .paging .page .last_page 	{
		display: none;
	}
	#content-area .page-section .paging .page ul li {
		margin-right: 5px !important;
	}
	
	/* NAVIGATION */
	#navi-area .container .row div.navi-txt {
		padding: 12px 10px 10px 10px;
	}
	
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 1;
	}
	
	.cover-design-area{
		height:421px;
		margin-top: 40px;
	}
	
	.cover-design-txt1 {
		top: 85px;
		font-size: 1.2em;
	}
	.cover-design-txt2 {
		top: 210px;
		font-size: 1.4em;
	}
	.cover-design-txt3 {
		top: 200px;
		font-size: 1em;
	}
	.cover-sample-btn {
		top: 270px;
		zoom:0.75;
	}
	
	.cover-design-area2 {
		height: 115px;
	}
	.cover-design-area2 ul {
		margin-top: -65px;
		zoom: 0.4;
	}
	
	.cover-design-area2 ul li {
			width: 250px;
			height: 250px;
			border-radius: 125px;
			margin-right: 55px;
	}
		.cover-design-area2 ul li p:first-child {
			width: 50px;
			height: 50px;
			font-size: 2em;
			border-radius: 25px;
			padding-top:0;
		}
		.cover-design-area2 ul li p:last-child {
			font-size: 2em;
		}
		.cover-design-area2 ul li:after {
			top: -140px;
			left: 155px;
		}
	
	/* DESIGN */
	.design-pr p.top-deco,
	.design-pr p.top-deco2 {
		width: 220px;
	}
	.design-pr p.pr_txt1,
	.design-pr p.pr_txt2 {
		zoom: 0.55;
	}
	.design-pr h1 {
		zoom: 0.55;
	}
	.design-pr p.point1-box,
	.design-pr p.point2-box {
		padding: 15px 50px 5px 50px;
		zoom: 0.7;	
	}
	.icon-box {
		border-bottom: dashed 1px #ccc;
	}
	
	/* PORTFOLIO */
	ul.portfolio li {
		background: #efefef;
		border-radius: 5px;
		padding-right: 20px !important;
		padding-left: 20px !important;
	}
	#content-area .goods_detail .watermarkimg {
		top: -430px;
	}
	/* 지명원 준비서류 */
	.introduction_supplies li {
		zoom: 1;
	}
		.introduction_supplies li b:after {
			content: '';
		}
		.introduction_supplies li:nth-child(5) b:after,
		.introduction_supplies li:nth-child(6) b:after,
		.introduction_supplies li:nth-child(7) b:after {
			content: '';
		}
	
	/* COMPANY */
	.company-text {
		font-size: 1em;
	}
		.company-text:before {
			right: 60px;
		}
		.company-text:after {
			top: -83px;
			right: -230px;
		}
		
	/* BUSINESS */
	.biz-print span > span {
		display: block;
	}
	
	.biz-bind ul {
		margin: 0;
		padding: 0;
	}
		.biz-bind ul li {
			margin: 0;
			padding: 0;
			width: 45%;
		}
		.biz-bind ul li:nth-child(odd) {
			margin-right: 10px;
		}
		.biz-bind ul li img {
			width: 100%;
		}
		.biz-bind ul li p {
				margin-top: 10px;
		}
		
	.biz-largeprint span > span {
		display: block;
	}
		.biz-largeprint .largeprint_detail div:nth-child(1) {
			float: none;
			width: 380px;
			margin: 80px auto 0 auto !important;
		}
		.biz-largeprint .largeprint_detail div:nth-child(2)	{
			float: none;
			width: 380px;
			margin: 20px auto 0 auto !important;
		}
	
	.biz-design span > span {
		display: block;
	}
		.biz-design .design_process ul.process_step  div p {
			 display: none;
		}
		.biz-design .design_process ul.process_step svg {
			width: 270px;
			height: 270px;
		}
		.biz-design .design_process ul.process_step > li {
			height: 270px !important;
		}
		.biz-design .design_process ul.process_step > li:not(:first-of-type) {
			margin-top: -60px;
		}
		.biz-design .design_process ul.process_step > li:after {
			position: relative;
			top: -58px;
			left: 0px;
			width: 20px;
			font-family: var(--aws6-font);
			content: '\f078';
			font-weight:bold;
			color: #B4B4B4;
			margin-bottom: 0px;
		}
		.biz-design .design_process ul.process_step  li div:nth-child(2)  {
			 position: relative;
			 top: -105px;
			 width: 210px;
			 margin: 0 auto;
			 letter-spacing: -0.05em;
			 padding-left: 15px;
		}
		.biz-design .design_process ul.process_step  li:nth-child(4) div:nth-child(2),
		.biz-design .design_process ul.process_step  li:nth-child(5) div:nth-child(2) {
			 position: relative;
			 top: -90px;
			 width: 210px;
			 margin: 0 auto;
			 letter-spacing: -0.05em;
			 padding-left: 15px;
		}
}




@media only screen and (max-width: 576px) {
	/* POPUP */
	#divpop, #divpop2,
	#divpop #popupimg1, #divpop2 #popupimg2,
	#divpop .popup-footer, #divpop2 .popup-footer
	{
    width: 350px !important;
		min-width: 350px;
		height: auto !important;
   }
	#divpop {
		left: 10px !important;
		top: 100px !important;
	}
	#divpop2 {
		left: 20px !important;
		top: 200px !important;
	}
	
	/* COVER DESIGN */
	.cover-design-pr {
		zoom: 1;
	}
	
	.cover-design-area{
		height:301px;
		margin-top: 30px;
	}
	
	.cover-design-txt1 {
		top: 65px;
		font-size: 0.9em;
	}
	.cover-design-txt2 {
		top: 145px;
		font-size: 1.2em;
	}
	.cover-design-txt3 {
		top: 135px;
		font-size: 0.8em;
	}
	.cover-sample-btn {
		top: 240px;
		zoom:0.55;
	}
	
	.cover-design-area2 {
		height: 110px;
	}
	.cover-design-area2 ul {
		margin-top: -25px;
		zoom: 0.4;
	}
	
	.cover-design-area2 ul li {
			width: 180px;
			height: 180px;
			border-radius: 90px;
			margin-right: 25px;
			zoom: 1.1;
	}
		.cover-design-area2 ul li p:first-child {
			margin-top: -10px;
			width: 50px;
			height: 50px;
			font-size: 2em;
			border-radius: 25px;
			padding-top:0;
		}
		.cover-design-area2 ul li p:last-child {
			font-size: 1.7em;
			line-height:1.1em;
		}
		.cover-design-area2 ul li:after {
			top: -95px;
			left: 105px;
			font-size: 2em;
		}
		.cover-design-area2 ul li:last-child::after {
			margin-left: -18px;
		}
	
	/* DESIGN */
	.design-pr .design-template-contents .design_template1 {
		zoom: 0.65;
	}
	.design-pr .design-template-contents .design_template2 {
		zoom: 0.65;
	}
	.design-pr p.top-deco,
	.design-pr p.top-deco2 {
		width: 160px;
	}
	.design-pr h1 {
		zoom: 0.4;
	}
	.design-pr p.point1-box,
	.design-pr p.point2-box {
		padding: 15px 50px 5px 50px;
		zoom: 0.5;	
	}
	.design-pr .design-pr-contents {
		padding: 50px 20px 55px 20px;
	}
	
	/* PORTFOLIO */
	#content-area .goods_detail .watermarkimg {
		top: -390px;
	}
	
	/* COMPANY */
	.company-text {
		font-size: 1em;
	}
		.company-text:before {
			right: 40px;
		}
		.company-text:after {
			right: -180px;
		}
	.branch > div:first-child ul li:nth-child(4) {
		width: 90% !important;
	}
	.branch ul {
		padding-left: 1rem !important;
	}
		
}


@media only screen and (max-width: 479px) {
	/* FOOTER */
	.contact ul li {
		margin-bottom: 10px;
	}
		.contact ul li span {
			display: block;
		}
		.contact ul li span+span {
			padding-left: 21px;
		}
	#footer-mobile-view {
		position: relative;
		width: 80%;
		display: block !important;
		color: #fff !important;
		background: #70ACCE;
		padding: 20px 10px;
		border-radius: 10px;
		margin: 20px auto;
		font-weight: 700;
		font-size: 1em !important;
		text-align: center;
	}
		#footer-mobile-view:after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			width: 0;
			height: 0;
			border: 12px solid transparent;
			border-top-color: #70ACCE;
			border-bottom: 0;
			margin-left: -12px;
			margin-bottom: -12px;
		}
}


/*--------------------------------------------------------------
	RESPONSE (BOOTSTRAP STYLE RESET )
--------------------------------------------------------------*/
@media (max-width: 575px) {
    .container,.container-sm {
        max-width:400px !important;
    }
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px !important;
    }
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:840px !important;
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:980px !important;
    }
}

@media (min-width: 1100px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:1050px !important;
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1150px !important;
    }
}

@media (min-width: 1300px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1270px !important;
    }
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1320px !important;
    }
}
