#container { width: 100%; margin: 0; padding: 0; }
.container-full { width: 100%; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; width: 100%; }

section {padding: 60px 0;}

@media (max-width: 767px) {
	section {padding: 70px 0;}
}

/* button */
.btn-r { border-radius: 25px; letter-spacing: -1px; }
.btn-large { padding: 8px 30px 5px 30px; }
.main-button {padding: 8px 20px; border-radius: 5px; background-color: #007be4; color: #fff;}
.category {padding: 0 5px; border-radius: 10px; background-color: #007be4; color: #fff; height: 20px; line-height: 20px; display: inline-block;}

/* shadow */
.text-shadow {text-shadow: 0 0 5px rgba(0,0,0,0.2);}
.box-shadow { box-shadow: 0 0 5px rgba(0,0,0,0.15); }

/* grid */
.grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-8 {display: grid;}

@media (max-width: 767px) {
    .container-full {padding: 0;}
	.grid-2 img, .grid-3 img, .grid-4 img, .grid-5 img, .grid-6 img, .grid-8 img {display: block; max-width: 100%;}
	.star img {display: inline-block;}
    .grid-2 {grid-template-columns: 1fr;}
    .grid-3 {grid-template-columns: 1fr;}
    .grid-4 {grid-template-columns: repeat(2,1fr);}
    .grid-5 {grid-template-columns: repeat(3,1fr);}
    .grid-6 {grid-template-columns: repeat(3,1fr);}
}
@media (min-width: 768px) {
    .grid-2 {grid-template-columns: 1fr;}
    .grid-3 {grid-template-columns: 1fr;}
    .grid-4 {grid-template-columns: repeat(2,1fr);}
    .grid-5 {grid-template-columns: repeat(3,1fr);}
    .grid-6 {grid-template-columns: repeat(3,1fr);}
    .grid-8 {grid-template-columns: repeat(4,1fr);}
}
@media (min-width: 992px) {
    .grid-2 {grid-template-columns: repeat(2,1fr);}
    .grid-3 {grid-template-columns: repeat(3,1fr);}
    .grid-4 {grid-template-columns: repeat(4,1fr);}
    .grid-5 {grid-template-columns: repeat(5,1fr);}
    .grid-6 {grid-template-columns: repeat(6,1fr);}
}
@media (min-width: 1320px) {
    .grid-2 {grid-template-columns: repeat(2,1fr);}
    .grid-3 {grid-template-columns: repeat(3,1fr);}
    .grid-4 {grid-template-columns: repeat(4,1fr);}
    .grid-5 {grid-template-columns: repeat(5,1fr);}
    .grid-6 {grid-template-columns: repeat(6,1fr);}
}

/* header */
#bg_wrap {background: rgba(0,0,0,0.7); height: 100%; position: fixed; left: 0; opacity: 0; z-index:1; transition: all ease-in-out 0.3s;}
#bg_wrap.is-active {opacity: 1; top: 0; width: 100%;}
header.header-main {position: absolute; width: 100%; z-index: 1;}
header.scroll {position: fixed; background-color: #fff;border-bottom:2px solid #333; width: 100%; z-index: 2; top: 0;}
header .header-nav {max-width: 100%; padding: 0 20px; margin: 0 auto; width: 100%; height: 80px; position: relative;}
header .header-nav #logo {position: absolute; left: 20px;}
header .header-nav #logo a {font-size: 30px; font-weight: 500; color: #000; display: block;}
header .header-nav #logo a img {width: 130px;}
header .header-nav #logo strong {font-weight: 800;}
header .header-nav .gnb {display: grid; align-items: center; height: 100%; justify-content: center;}
header .header-nav .gnb ul {display: flex; gap: 30px;}
header .header-nav .gnb ul li a {display: block; font-size: 18px; color: #222; font-weight: 600;}
header.header-main .header-nav .gnb ul li a {color: #fff;}
header.header-main.scroll .header-nav .gnb ul li a {color: #222;}
header .header-nav nav ul li a {color: #444; font-size: 14px; padding-left: 50px;}
header .header-nav nav ul li a:hover, header .header-nav nav ul li a.on {color: #ffcc00;}
header .header-nav nav {
	position: fixed;
	top: 0;
	left: 0;
	background: #4149b8;
	/*min-width: 425px;*/
	width: 25%;
	height: 100%;
	z-index: 10;
	transition: all 0.5s;
	transform: translateX(-100%);
	opacity: 0;
}
header .header-nav nav.is-active {
	transform: translateX(0);
	opacity: 1;
	transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
}
header .header-nav nav ul {display: block !important; padding-top: 80px;}
/* header .header-nav nav > ul > li {border-bottom: 4px solid rgba(255,255,255,.05);} */
header .header-nav nav ul li a {font-size: 24px; padding: 15px 20px; display: block; font-family: 'S-CoreDream-7ExtraBold'; color: rgba(255,255,255,.85);}
header .header-nav nav ul ul {padding-top: 0;}
header .header-nav nav ul ul li a {font-size: 18px; padding: 10px 20px; display: block; font-family: 'S-CoreDream-2ExtraLight'; color: rgba(255,255,255,.85);}
.mobile-gnb {display: none; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); z-index: 9999; cursor: pointer;}
.mobile-gnb .line {
	width: 24px;
	height: 3px;
	border-radius: 1.5px;
	background-color: #777;
	display: block;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.mobile-gnb p {color: #999;}
.mobile-gnb.is-active .line {background: #fff;}
.mobile-gnb.is-active p {color: #fff;}
.mobile-gnb.is-active .line:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	-o-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}
.mobile-gnb.is-active .line:nth-child(2) {opacity: 0;}
.mobile-gnb.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	-o-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}
header .member {display: block; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);}
header .member ul {display: flex;}
header .member ul li {margin-left: 20px; text-align: center; font-size: 14px;}
header .member ul li a {color: #777; display: grid; justify-items: center;}
header .member ul li i {display: block; color: #999; padding-bottom: 5px;}
header .member ul li img {display: block; padding-bottom: 5px; width: 15px;}
header .member ul li button {background: none; border: none; font-size: 14px; color: #777; line-height: 1.5;}

@media (min-width: 1440px) {
	header .header-nav nav {
		max-width: 425px;
	}
}

@media (max-width: 1024px) {
	header .header-nav #logo {
		position: absolute;
		left: 50%;
		transform: translate(-50%);
		padding-top: 20px;
	}
	header .header-nav .gnb {
		display: none;
	}
	.mobile-gnb {
		display: block;
	}
	header .header-nav nav {
		width: 50%;
	}
	
}

@media (max-width: 767px) {
	header.scroll {position: fixed; background-color: #fff;border-bottom:2px solid #333; width: 100%; z-index: 2;}
	header .header-nav #logo {
		position: absolute;
		left: 50%;
		transform: translate(-50%);
		padding-top: 20px;
	}
	header .header-nav .gnb {
		display: none;
	}
	.mobile-gnb {
		display: block;
	}
	header .header-nav nav {
		width: 50%;
		max-width: 425px;
	}
	header .member ul li {
		margin-left: 10px;
		text-align: center;
		font-size: 10px;
		letter-spacing: -0.4px;
	}
	header .member ul li i {
		font-size: 14px;
	}
	header .header-nav #logo a {
		font-size: 30px;
		font-weight: 500;
		color: #000;
		display: block;
		text-align: center;
	}
	header .header-nav #logo a img {width: 80px;}
	header .member {
		/* display: none; */
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	header .header-nav nav ul li a {
		font-size: 20px;
		padding: 10px 20px;
		display: block;
		font-family: 'S-CoreDream-7ExtraBold';
		color: rgba(255,255,255,.85);
	}
	header .header-nav nav ul ul li a {
		font-size: 16px;
		padding: 4px 20px;
		display: block;
		font-family: 'S-CoreDream-2ExtraLight';
		color: rgba(255,255,255,.85);
	}
	header .busancom {display:none;}
}

/* 푸터 */
footer {margin-top: 50px; padding: 50px 0; background: #eee;}
footer #footer-logo {position: absolute; left: 20px; color: #aaa; font-size: 30px; font-weight: 500; width: 200px;}
footer #footer-logo strong {font-weight: 800;}
footer ul {position: relative; display: inline-block;}
footer ul li, footer ul li a {color: #777;}
footer ul li:first-child span {position: relative;}
footer ul li:first-child span:after {content: ''; display: block; position: absolute; width: 1px; height: 14px; right: 0; top: 50%; transform: translate(0,-50%); background: #ccc;}
footer ul li:first-child span:last-child:after {display: none;}
footer ul span {display: inline-block; padding-right: 13px; margin-right: 10px;}
footer ul li strong {padding-right: 5px;}

@media (max-width: 1160px) {
	footer ul {
		padding-left: 100px;
	}
}

@media (max-width: 1024px) {
	footer #footer-logo {
		position: relative;
		left: 0;
		margin-bottom: 15px;
	}
	footer ul {
		padding-left: 0;
		display: block;
	}
}

@media (max-width: 767px) {
	footer {
		margin-top: 100px;
		padding: 50px 0 50px 0;
		background: #eee;
	}
	footer #footer-logo {
		width: 120px;
	}
}

/* content */
.title {margin-top: 100px; margin-bottom: 50px; position: relative;}

@media (max-width: 767px) {
	.title {
		margin-top: 70px;
		margin-bottom: 30px;
	}
}

/* tab */
.tab ul {background-color: #eee; line-height: 50px; height: 50px; border-radius: 25px;}
.tab ul li {flex: 1;}
.tab ul li.active {background-color: #222; border-radius: 25px;}
.tab ul li a {display: block; line-height: 50px; height: 50px; padding-top: 2px; color: #999;}
.tab ul li.active a {color: #fff;}

.tab-happy ul {display: flex;}
.tab-happy ul li {flex: 1; padding-bottom: 18px;}
.tab-happy ul li.active {background: url(/img/layout/bg-tab-active.png) bottom center no-repeat;}
.tab-happy ul li a {display: block; line-height: 80px; height: 80px; background-color: #e3e3e3; color: #222; text-align: center; font-size: 22px;}
.tab-happy ul li.active a {background-color: #4149b8; color: #fff;}

@media (max-width: 767px) {
	.tab ul {display: block; background-color: transparent; height: auto;}
	.tab ul li {display: block; width: 100%;}
	.tab ul li a {
		display: block;
		line-height: 40px;
		height: 40px;
		padding-top: 2px;
		color: #999;
	}
	.tab-happy ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		background-color: #e3e3e3;
		color: #222;
		text-align: center;
		font-size: 18px;
	}
}

/* dot */
.dot {padding-left: 14px; position: relative;}
.dot:before {content:""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: #777;}

@media (max-width: 767px) {
	.sub-copy {text-align: left;}
	.dot:before {top: 12px; transform: translateY(0); width: 6px; height: 6px; background: #777;}
}

/* bar */
.bar-left {width: 35px; height: 2px; margin: 15px 0;}

/* fixed-nav */
#fixednav { padding: 20px 0; bottom: 0; z-index: 9; width: 100%; background: rgba(255,255,255,0.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: all 0.3s ease-in-out; box-shadow: 0 0 15px rgba(0,0,0,.1);}
#fixednav i, #fixednav h4 { color: #798a9c; }
#fixednav li a:hover i, #fixednav a:hover h4 { color: #358ae9; }

@media (max-width: 767px) {
	#fixednav .grid-4 {grid-template-columns: repeat(4, 1fr);}
	#fixednav i {font-size: 16px;}
	#fixednav h4 {font-size: 14px;}
}

/* visual */
.sub_cert {background: url(/img/02_cert/bg_visual.jpg) top center no-repeat; background-size: 100%;}
.sub_cert .title {margin-top: 0; padding-top: 100px;}

.visual {height: 200px; display: grid; justify-content: center; align-items: center; background-repeat: no-repeat; background-position: center center; background-size: cover; margin-bottom: 40px;}
.visual-01 {background-image: url(/img/layout/visual_happyzone.jpg);}
.visual-02 {background-image: url(/img/layout/visual_pet.jpg);}
.visual-03 {background-image: url(/img/layout/visual_life.jpg);}
.visual-04 {background-image: url(/img/layout/visual_book.jpg);}
.visual-05 {background-image: url(/img/layout/visual_parkgolf.jpg);}
.visual-06 {background-image: url(/img/layout/visual_earthing.jpg);}
.visual-65 {background-image: url(/img/layout/visual_fd.jpg);}
.visual-66 {background-image: url(/img/layout/visual_fm.jpg);}
.visual-67 {background-image: url(/img/layout/visual_fn.jpg);}
.visual-68 {background-image: url(/img/layout/visual_fb.jpg);}
.visual-69 {background-image: url(/img/layout/visual_gs.jpg);}
.visual-70 {background-image: url(/img/layout/visual_gy.jpg);}
.visual-71 {background-image: url(/img/layout/visual_gh.jpg);}
.visual-72 {background-image: url(/img/layout/visual_gj.jpg);}
.visual-75 {background-image: url(/img/layout/visual_notice2.jpg);}
.visual-76 {background-image: url(/img/layout/visual_mountain2.jpg);}

@media (max-width: 767px) {
    .sub_cert {background: url(/img/02_cert/bg_visual_m.jpg) top center no-repeat; background-size: contain;}
	.sub_cert .title {
    margin-top: 0;
    padding-top: 70px;
    margin-bottom: 30px;
    }
    .sub_cert .title.title-sub h2, .sub_cert .title.title-sub p {color: #fff !important; text-shadow: 0 0 10px rgba(0,0,0,0.7);}
    .visual {
		height: 200px;
	}
}