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;
    font-size: 16px;
    color: #000;
	font-family: 'Noto Sans KR', sans-serif;
}
ol, ul {
	list-style: none;
}
a{
    text-decoration: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* page1 start */

#page1{
    background-size: cover;
    position: relative;
}
.bg1{
    width: 100%;
	background-size: cover;
    height: 420px;
    margin-top: 70px;
    object-fit: cover;
}
.group{
    background-color: #008EC6;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    width: 1192px;
    text-align: center;
    display: flex;
    box-shadow: 0 2px 15px -5px rgba(0,0,0,0.3);
}
.group > .box{
    transition: 0.3s;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    border-top: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    border-right: 1px solid #cecece;
    -webkit-box-sizing: border-box;
}
/* .group > .box:first-child{
    border-left: 1px solid #cecece;
} */

.group > .box > a{
    display: block;
    font-size: 20px;
    color: #111111;
}
.group > .box:hover{
    background-color: #008EC6;
    border: none;
}
.group > .box:hover > a{
    color: #fff;
}

/* title */
.content-title{
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
}
.content-title > h2{
    width: 1192px;
    margin: 0 auto;
    display: block;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 45px;
}
.content-title > strong,
.content-title > b{
    width: 1192px;
    margin: 0 auto;
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 8px;
}
.content-title > strong > span,
.content-title > b > span{
    color: #008ec6;
    padding-left: 6px;
}
.content-title > p{
    width: 1192px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    line-height: 27px;
    padding-top: 10px;
}

/* page1 end */