/*reset*/
*{
    margin:0; padding:0;
}
li{list-style-type:none;}
a:link, a:visited{ text-decoration: none; color:#fff;}

body{
    background-color:#2280ff;
}

#wrap{
    width: 100%;
    font-family: 'Poppins','Noto Sans KR', sans-serif;
    font-size:15px;
    color:#fff;
}
/* header 영역 */
header{
    width:100%;
    max-width:800px;
    margin:0 auto;
    /* background-color:#aaa; */
    /* padding:1rem; */
    /* background-color:#f00; */
    box-shadow: 0px 5px 10px #2a6cf7c7;
}
.gnb{
    display:flex;
    justify-content:space-between;
    color:#fff;
}

.gnb h1{ 
    font-family: 'Poppins';
    font-size:26px;
    margin:1rem;
    font-weight:400;
    /* background-color:#0f0; */
} 
header i{
    margin:1rem;
    font-size:26px;
    /* background-color:#d0f; */
    padding-top:7px;
}

/* nav */
nav{
    width:100%;
    display:flex;
    position: relative;
}
nav ul{
    width:100%;
    display:none;
    background-color:#2280ff;
    position:absolute; top:5%; left:0;z-index:10;
}
nav ul li{
    height:80px;
    line-height:50px;
    font-size:20px;
    text-indent:1rem;
}
nav ul li a{
    display:inline-block;
    width:100%;

}

/* contents */
#contents{
    width:100%; 
    max-width:800px;
    margin:0 auto;
}
#maintit{
    font-weight:normal;
    font-size:35px;
    margin:35px 0 35px 20px;
}

#maintit span{
    font-size:20px;
}

#contents li{
    border-top:1px solid #fff;
}
#contents .tit {
    width:100%;
    height:60px;
    line-height:60px;
    font-size:20px;
    /* text-indent:20px; */
    /* border-top:1px solid #fff; */
    /* border-bottom:1px solid #fff; */
    background-image:url('img/arr.png')no-repeat;
}
#contents .tit span{
    display:inline-block;
    width:300px;
    padding-left:20px;
}
#contents .tit i{
    font-size:18px;
}
#contents .desc {
    width:94%; 
    height:200px; 
    font-size:14px;
    margin:3% 3% 0;
    /* display:none; */

}

#contents .imgZone{
    width:90%;
    margin:20px auto 0;
}

#contents .imgZone img{
    width:100%;
}

.addclass{
    color:#2a6cf7c7;
    background-color:#fff;
    border-top:1px solid #2a6cf7c7;
}