@charset "utf-8";
/* ================================================================== */
/* Name	: common.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2017-10-10
/* ================================================================== */

/* ----------------------------- */
/* font
/* ----------------------------- */
@import url(https://storage.ggad.co.kr/css/font_Nanumbarungothic.css);
@import url(https://storage.ggad.co.kr/css/font_Montserrat.css);


/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1248px (1208px)
/* Desktop Size	: 1024px =< Screen <= 1248px
/* Tablet Size : 768px =< Screen <= 1023px
/* Mobile Size : 480px < Screen <= 767 (landscape)
/* Mobile Size : 320px < Screen < 480px (portrait)
/* ----------------------------- */


/* Desktop */
.visibleM { display: none !important; }		 /* Visible Mobile */
.visibleT { display: none !important; }		 /* Visible Tablet */
.visibleD { display: inherit !important; }		/* Visible Desktop */

.hiddenM {}		 											/* Hidden Mobile */
.hiddenT {}		 											/* Hidden Tablet */
.hiddenD { display: none !important; }		 /* Hidden Desktop */

/* Tablet Portrait  ~ Desktop */
@media screen and (min-width:768px) and (max-width:980px) {
	.visibleD { display: none !important; }
	.visibleT { display: inherit !important; }
	.visibleM {}

	.hiddenD { display: inherit !important; }
	.hiddenT { display: none !important; }
	.hiddenM {}
}

/* Mobile Landscape ~ Tablet Portrait */
@media screen and (max-width:767px) {
	.visibleD { display: none !important; }
	.visibleT {}
	.visibleM { display: inherit !important;}

	.hiddenD { display: inherit !important; }
	.hiddenT {}
	.hiddenM { display: none !important;}
}


/* ----------------------------- */
/* Basic
/* ----------------------------- */
* { -webkit-box-sizing:border-box; box-sizing:border-box; }
html, body {
	height: 100%;
    font-size: 62.5%;
	word-break: keep-all;
	word-wrap: break-word;
}
body {
    font-family: 'Nanum Barun Gothic', 'malgun gothic', 맑은고딕, 'Dotum', 돋움, 'Arial', 'sans-serif';
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.4em;
    color: #444;
}
h1, h2, h3, h4, h5, h6 { font-weight:normal; line-height: 1.2em;}

a { color: #444;}
a:hover, a.focus { color: #000; }

.feather {
    vertical-align: middle;
}

/* ----------------------------- */
/* Common Layout
/* ----------------------------- */
#accessibility {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
 }
#accessibility a {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 100%;
    height: 50px;
    font-size: 0.85em;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    z-index:  -1;
}
#accessibility a:focus, #accessibility a:active {
    top: 0;
    left: 0;
    padding: 12px 0 15px;
    text-align: center;
}

.hover,
a.hover:hover,
a.hover:focus,
a.hover:active,
.hover a:hover,
.hover a:focus,
.hover a:active {
	-webkit-transition:all 0.5s ease;
	transition:all 0.5s ease;
}

#scrollup {
	display:none;
	position:fixed;
	bottom:30px;
	right:20px;
	width:50px;
	height:50px;
	border-radius: 10em;
	background: rgba(0, 0, 0, 0.7);
	text-align: center;
	z-index:999;
}
#scrollup:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(/images/common/arrow_gb.png) no-repeat center;
    background-size: 13px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#scrollup:hover {
	background: rgba(0, 0, 0, 0.9);
}





/* ----------------------------- */
/* Layout style
/* ----------------------------- */
#wrap {
	position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* ----------------------------- */
/* Header
/* ----------------------------- */
#header {
    position: relative;
    width: 100%;
    z-index: 999;
}
#header .util_wrap {
    /* padding: 9px 0; */
    background: #106bc2;
    border-bottom:1px solid #003b75;
}
#header .util_wrap > div {
    max-width: 1208px;
    margin: 0 auto;
}
#header .util_wrap a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.5rem;
}
#header .util_wrap .util {
    float: right
}
#header .util_wrap .util a {
    border-left: 1px solid #0d569b;
}
#header .util_wrap .util a:last-child {
    border-right: 1px solid #0d569b;
}
#header .nav_wrap {
    background: #0055a7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#header .nav_wrap > div {
    position: relative;
    max-width: 1208px;
    margin: 0 auto;
}
.logo {
    float: left;
    padding: 21px 0 0 15px;
}
.logo img {
    width: 202px;
}



/* ----------------------------- */
/* Header > Navigation
/* ----------------------------- */
#header nav {
    float: right;
    width: auto;
    padding: 17px 0 15px;
}
#header nav > ul > li {
    float: left;
}
#header nav > ul > li > a {
    display: block;
    padding: 14px 40px 12px;
    font-size: 2rem;
    color: #fff;
}
#header nav > ul > li > a:hover,
#header nav > ul > li > a:focus,
#header nav > ul > li > a:active {
    background: #f14a4a;
    color: #fff;
}
#header nav > ul > li > div {
    position: absolute;
    top: 80px;
    width: 20%;
    padding: 30px;
    background: #fff;
    border-left:1px solid #e6e6e6;
    z-index: 1;

    display: none;
}
#header nav > ul > li:last-child > div {
    border-right:1px solid #e6e6e6;
}
#header nav > ul > li > div p {
    margin-bottom: 15px;
    font-size: 2rem;
    color: #0055a7;
}
#header nav > ul > li > div li {
    position: relative;
    padding: 5px 0;
}
#header nav > ul > li:first-child > div {
    width: 17%;
    left: 0;
}
#header nav > ul > li:nth-child(2) > div {
    left:17%;
}
#header nav > ul > li:nth-child(3) > div {
    left: 37%;
}
#header nav > ul > li:nth-child(4) > div {
    left: 57%;
}
#header nav > ul > li:nth-child(5) > div {
    width: 23%;
    left: 77%;
}
#header nav > ul > li > div > ul ul {
    margin: 5px 0 10px;
    padding: 7px 15px;
    background: #f6f6f7;
    border: 1px solid #e8e8e8;
}
#header nav > ul > li > div > ul > li li {
    font-size: 1.5rem;
    padding: 2px 0;
}
#header nav > ul > li > div > ul > li button {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: 0 0 3px 7px;
    background: url(/images/common/nav_pm.png) no-repeat #0055a7;
}
#header nav > ul > li > div > ul > li button.plus {
    background-position: center -27px;
}
#header nav > ul > li > div > ul > li button.minus {
    background-position: center -2px;
}




.nav_bg	{
	position:absolute;
	top: 123px;
	left: 0;
	width: 100%;
	height: 321px;
	display:none;
	background-color:#f3f3f3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#nav_mb,
.nav_mb_btn {
	display: none;
}









/* ----------------------------- */
/* Footer
/* ----------------------------- */
footer {
    width: 100%;
    background: #33353a;
}
.footer_inner {
    position: relative;
    max-width: 1248px;
    margin: 0 auto;
    padding: 50px 1% 60px;
}
.footer_inner:after {
    content: '';
    display: block;
    clear: both;
}
.f_logo {
    float: left;
    width: 177px;
}
.f_cont {
    margin-left: 260px;
}
.footer_inner nav {
    position: relative;
    font-size: 1.6rem;
}
.footer_inner nav ul:after {
    content: '';
    display: block;
    clear: both;
}
.footer_inner nav ul li {
    display: inline;
}
.footer_inner nav ul li:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #777;
    margin-bottom: -3px;
}
.footer_inner nav ul li:first-child:before {
    display: none;
}
.footer_inner nav ul li a {
    padding: 10px 15px;
    color: #fff;
}
.footer_inner nav ul li:first-child a {
    padding: 10px 15px 10px 0;
}
.footer_inner address {
    font-size: 1.5rem;
    color: #9d9d9d;
}
.footer_inner .copy {
    font-family: 'MontserratLight';
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #9d9d9d;
}
.footer_inner .family {
    position: absolute;
    top: 40px;
    right: 20px;
}
.footer_inner .family select {
    width: 170px;
    height: 40px;
    border: 1px solid #f14a4a;
    background: #2a2b2f;
    font-family: 'MontserratRegular';
    font-size: 1.4rem;
    color: #f14a4a;
}
.footer_inner .family .select_style:before,
.footer_inner .family .select_style:after {
    content: '';
    display: block;
    position: absolute;
    background: #f14a4a;
    border: none
}
.footer_inner .family .select_style:before {
    top: 14px;
    right: 19px;
    width: 2px;
    height: 10px;
}
.footer_inner .family .select_style:after {
    top: 50%;
    right: 15px;
    width: 10px;
    height: 2px;
}
.footer_inner .family .btn_select {
    width: 60px;
    height: 40px;
    background: #f14a4a;
    color: #fff;
}




/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1248px (1208px)
/* Desktop Size	: 1024px =< Screen <= 1248px
/* Tablet Size : 768px =< Screen <= 1023px
/* Mobile Size : 480px < Screen <= 767 (landscape)
/* Mobile Size : 320px < Screen < 480px (portrait)
/* ----------------------------- */

@media screen and (max-width:1208px) {


}


@media screen and (max-width:1024px) {

    /* footer */
    .footer_inner {
        padding: 40px 20px;
    }
    .f_logo {
        float: none;
        margin: 0  auto;
    }
    .f_cont {
        margin: 20px 0;
        text-align: center;
    }
    .footer_inner nav {
        margin-bottom: 20px;
    }
    .footer_inner .family {
        position: static;
        top:auto;
        right: auto;
        text-align: center;
    }

}



@media screen and (max-width:980px) {
	.logo {
	    float: left;
	    padding: 13px 15px;
	}
	.logo img {
	    width: 202px;
	}
    #nav_mb {
        position: absolute;
        top: -17px;
        left: 0;
        width: 100%;
        padding: 70px 0 0;
        background: #152f60;
        z-index: 999;
    }
    #nav_mb nav {
        float: none;
    }
    #nav_mb a {
		display: block;
		color: #fff;
	}
	#nav_mb > nav > ul > li {
        width: 100%;
		padding: 15px 20px 12px;
		border-top: 1px solid rgba(0, 0, 0, 0.4);
	}
	#nav_mb > nav > ul > li > a {
		position: relative;
        padding: 14px 10px 12px;
		font-size: 2rem;
		color: #fc6060;
	}
	#nav_mb > nav > ul > li > a:after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 22px;
		right: 20px;
		border-top: 6px solid #fff;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
	}
	#nav_mb > nav > ul > li > a.active:after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 9px;
		right: 0;
		width: 10px;
		height: 2px;
		background: #fff;
		border: none;
	}
	#nav_mb li ul {
        margin: 0 0 10px 10px;
    }
    #nav_mb li ul li {
        font-size: 1.5rem;
    }
	#nav_mb li ul li button {
        display: block;
        position: absolute;
        top:;
    }
    #nav_mb li ul li button {
        display: inline-block;
        width: 17px;
        height: 17px;
        margin: 0 0 3px 7px;
        background: url(/images/common/nav_pm.png) no-repeat #0055a7;
    }
    #nav_mb li ul li button.plus {
        background-position: center -27px;
    }
    #nav_mb li ul li button.minus {
        background-position: center -2px;
    }
	#nav_mb li li a {
        padding: 5px 10px 5px 0;
    }
    #nav_mb li li li a {
        padding: 2px 10px 2px 0;
    }
	#nav_mb li li a:before {
		content: '';
		display: inline-block;
		width: 5px;
		height: 2px;
		margin: 0 5px 5px 0;
		background: #fff;
	}
    #nav_mb li li li a:before {
        content: '';
        display: inline-block;
        width: 2px;
        height: 2px;
        margin: 0 5px 5px 0;
        background: #ccc;
    }
    .nav_mb_btn {
		display: block;
		position: absolute;
		top: 13px;
		right: 20px;
		width: 30px;
		height: 40px;
		padding-top: 20px;
		z-index: 99999;
	}
	.nav_mb_btn span,
	.nav_mb_btn span:before,
	.nav_mb_btn span:after {
		width:100%;
		height: 2px;
		background-color: #fff;
		-webkit-transition:all 0.5s ease;
		-moz-transition:all 0.5s ease;
		-ms-transition:all 0.5s ease;
		-o-transition:all 0.5s ease;
		transition:all 0.5s ease;
		-webkit-transform:translate3d(0,0,0);
	}
    .nav_mb_btn.show {
        top:-2px;
    }
    .nav_mb_btn.show span,
    .nav_mb_btn.show  span:before,
	.nav_mb_btn.show  span:after {
        background-color: #fff;
    }

	.nav_mb_btn span{
		display: block;
		position: relative;
	}
	.nav_mb_btn span:before,
	.nav_mb_btn span:after {
		content: '';
		position: absolute;;
		margin-top: -0.7em;
	}
	.nav_mb_btn span:after {
		margin-top: 0.7em;
	}
	.nav_mb_btn.show {
		display: none;
	}
	.nav_mb_btn.show span {
		background: transparent;
	}
	.nav_mb_btn.show span:before {
		-moz-transform: rotate(45deg) translate(.5em, .5em);
	    -ms-transform: rotate(45deg) translate(.5em, .5em);
	    -o-transform: rotate(45deg) translate(.5em, .5em);
	    -webkit-transform: rotate(45deg) translate(.5em, .5em);
	    transform: rotate(45deg) translate(.5em, .5em);
	}
	.nav_mb_btn.show span:after {
		-moz-transform: rotate(-45deg) translate(.45em, -.45em);
		-ms-transform: rotate(-45deg) translate(.45em, -.45em);
		-o-transform: rotate(-45deg) translate(.45em, -.45em);
		-webkit-transform: rotate(-45deg) translate(.45em, -.45em);
		transform: rotate(-45deg) translate(.45em, -.45em);
	}
    #nav_mb .m_menu_off {
        background: #204ea4
    }
	.nav_bg	{
		height: 0px;
	}

}



@media screen and (max-width:768px) {


}


@media screen and (max-width:640px) {


}


@media screen and (max-width:480px) {
	#header .util_wrap a {
	    display: inline-block;
	    padding: 10px 12px;
	    color: #fff;
	    font-size: 1.2rem;
	}

}


@media screen and (max-width:360px) {


}
