/*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{
    padding-top:5rem;
    width:100%; 
    max-width:800px;
    margin:0 auto;
    text-align:center;
}
/* 메인타이틀여역 */
#mainArea{
    width:100%;
    /* padding-top:5rem; */
    position:relative;
}

#mainArea .point{
    width:100%;
    height:100%;
    position:absolute; top:50%; left:0;
    z-index:10;
    position:relative;
}

/* 물결 파도 이미지 영역*/
.point{
}
.point p {
    width:100%;
    height:400px;
    position: absolute;
}

.left{
    left:0; top:16rem;
    animation:wave 1.5s linear Infinite alternate;
}

@keyframes wave {
    0% {
    left:-5%;
    }
    100% {
    left:0%;

    } 
}
@keyframes wave2 {
    0% {
    left:0%;
    }
    100% {
    left:5%;

    } 
}
.right{
    left:0; top:32rem;
    animation:wave2 1.5s linear Infinite alternate;
}

.point  p img{
    width:100%;
}




#mainArea .mintext{
    padding-top:10rem;
    width:100%;
    height:200px;
    font-size:24px;
    font-family:serif;
    letter-spacing:2px;
    color:#bdddec;
    height:50px;
    background-image:url("img/mainpa.png");
    background-repeat:no-repeat;
    background-position:center;
}

#mainArea h3{
    height:40px;
    font-style:italic;
    font-size:35px;
    font: weight 700;
    text-transform:uppercase;
    font-size:40px;
}
#mainArea .mainTit{ margin-bottom:12rem;}
#mainArea .mainTit p{ padding:16px;}




#roTex{
    width:100%; 
    height:500px;
}
#roTex p{
    width:100%;
    height:300px;
    line-height:300px;
    margin:0 auto;
    /* margin:0 10rem; */
    /* padding:20rem 0; */
    transform: rotate(90deg);
    font-weight:700;
    font-size:30px;
    font-style:italic;
}
#roTex p:after{
    clear: both;
    content:'────';
    padding-left:5rem;

}

.yaImg{
    width:200px;
    margin:0 auto;
}
.yaImg img{
    width:100%;
}

/* 텍스트영역 */
#textArea{
    padding-top:1rem;
    width:100%;
    border-radius:40px;
}

#textArea li{
    padding:3rem 0;
    line-height:25px;
    position:relative;
}

#textArea .cont3 {
    margin-bottom:5rem;
}

#textArea li span{
    position: absolute; left:0; top:0;
    width:30px; 
    height:30px;
    border-radius:15px;
    background-color:#fff;
    overflow:hidden;
}

#textArea li .dot1{
    left:3%; top:10%;
    box-shadow:3px 3px 3px #fff;
    /* animation:bigboll 1s 1s linear Infinite alternate; */
}
@keyframes bigboll {
    0% {
    width:30px; 
    height:30px;
    border-radius:15px;
    background-color:#fff;
    opacity:1;
    }
    100% {
    width:100px;
    height:100px;
    border-radius:50px;
    background-color:#2280ff;
    opacity:0;
    } 
}

#textArea li .dot2{
    width:80px;
    height:80px;
    border-radius:40px;
    left:68%; top:-10%;
    box-shadow:5px 5px 3px #fff;
    /* animation:ball 3s linear Infinite alternate; */
}


#textArea li .dot3{
    width:60px;
    height:60px;
    border-radius:30px;
    left:-3%; top:0%;
    box-shadow:5px 5px 3px #fff;
    /* animation:ball 3s linear Infinite alternate; */
}
@keyframes ball {
    0% {
    left:-10%;
    }
    100% {
    left:101%;

    } 
}


#textArea .title{
    margin:10px 0; 
    font-weight:600;
    font-style:italic;
    font-size:30px;
    line-height:40px;
}


