@charset "utf-8";


body {
    font-family: 'Montserrat', 'Noto Sans KR', arial, sans-serif;
    font-size: 12px;
    color: #333;
    background-color: #f7f7f7;
    overflow-y: hidden;
    background-image: url('../img/index_c_0.jpg');
    background-size: 100%;
    background-repeat:repeat-x;
}
/*    #7E3F98, #F9AE39    */

/*  좌표값 표시 서식  */
/*
.status {
    position: fixed;
    top: 50px;
    right: 50px;
    background-color: #00f;
    color: #fff;
    font-size: 30px;
    z-index: 99999;
}
*/

/*  헤더 서식  */
header #h_nav {
    position: fixed;
    right: 30px;
    top: 37px;
    z-index: 30000;
}

header #h_nav li {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #777777;
    border:5px solid rgba(247, 247, 247,.0);
    float: left;
    margin-right: 19px;
    transition: 0.5s;

}

header #h_nav li:last-child::after {
    display: none;
}

/*  클릭잘되게 여백넣어줌  */
header #h_nav a {padding: 5px;}

/*  현재 페이지에서 보여지는 콘트롤 버튼 색상 서식  */
header #h_nav li.on {
    border:5px solid rgba(247, 247, 247,1) !important;
/*    background-color: #f7f7f7 !important;*/
    width: 12px !important;
    height:12px !important;
    transform: translateY(-3px) !important;
    
}
/*header #h_nav li.on::after {background-color: #f9ae39 !important;}*/

/*
header #h_nav li::after {
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background-color: rgba(247, 247, 247,.6);
    position: relative;
    top: -8px;
    left: 12px;
}
*/




aside {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 95px;
    height: 100%;
    background-color: #7e3f98;
    box-shadow: 0px 0px 4px #333;
    transition: 0.6s;
}


aside > h1 {
    width: 70px;
    height: 70px;
    margin: 25px 11.5px;
}


aside > h1 > a {
    display: block;
    width: 100%;
    height: 100%;
}

aside > h1 > a > img {
    width: 100%;
}

/*  왼쪽 토글메뉴  */
aside .toggle {
    width: 80%;
    height: 70px;
    cursor: pointer;
    position: absolute;
    top: 46%;
    padding-left: 24px;
    z-index: 40000;
}

aside .toggle .ham_bar {
    background: #f9ae39;
    width: 45%;
    height: 6px;
    position: absolute;
    transition: 0.5s;

}

aside .toggle .ham_bar:first-child {
    top: 20px;
}

aside .toggle .ham_bar:nth-child(2) {
    top: 35px;
}

aside .toggle .ham_bar:nth-child(3) {
    top: 50px;
}

.toggle > .ham_bar.closeToggle_L {
    transform: rotate(45deg);
    top: 30px !important;
}

.toggle > .ham_bar.closeToggle_R {
    transform: rotate(-45deg);
    top: 30px !important;
}


/*  나오는 메뉴  */
.gnb {
    position: absolute;
    top: 0px;
    left: -350px;
    width: 350px;
    height: 100%;
    background: #7e3f98;
    transition: 0.5s;

}

.gnb > img {
    width: 190px;
    margin: 10% 0px 0px 21%;
}

.gnb > ul {
    text-align: right;
    transform: translate(-30px, 67%);
}

.gnb > ul > li {
    margin-bottom: 25px;
}

.gnb > ul > li > a {
    color: #f9ae39;
    font-size: 24px;
    font-weight: bold;
    display: block;

}

.gnb p {
    text-align: center;
    width: 80%;
    margin: 0px auto;
    font-size: 14px;
    transform: translateY(300px);
    line-height: 18px;
    color: #d9d9d9;
}

.wave #wave01,
.wave #wave02,
.wave #wave03 {
    position: absolute;
    bottom: -100px;
}


/*  콘텐츠영역 서식  */
section {
    width: 500%;
    height: 100vh;
    display: flex;
    
}

#con article {
    width: 100%;
    height: 100vh;
    position: relative;
    

}

#c02 > h2,
#c03 > h2,
#c04 > h2,
#c05 > h2 {
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    left: 250px;
    top: 130px;
}


#c01 {
    text-align: center;
}

#c01 > #title {
    transform: translate(10px, 365px);
}

#c01 > #title > h2:first-of-type {
    font-size: 50px;
    color: #afafaf;
    text-shadow: 1px 2px 3px #101010;

}

#c01 > #title > h2:last-of-type {
    font-size: 100px;
    color: #f7f7f7;
    text-shadow: 1px 2px 3px #101010;
}

#c01 > #title > h2 {
    animation: h2shake 0.8s linear;
}

@keyframes h2shake {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.1
    }

    100% {
        opacity: 1;
    }
}

#c01 #title p.typing-txt {
    display: none;
    color: #f9ae39;
    font-size: 24px;
    margin-top: 10px;
    text-shadow: 1px 2px 4px #101010;3
}


#c01 #title .typing {
    /*       position: absolute;*/
    color: #f9ae39;
    font-size: 24px;
    margin-top: 10px;
    display: inline-block;
    text-shadow: 1px 2px 3px #101010;
    animation-name: cursor;
    animation-duration: 0.3s;
    animation-iteration-count: infinite;
}

@keyframes cursor {
    0% {
        border-right: 1px solid #f7f7f7
    }

    50% {
        border-right: 1px solid #7e3f98
    }

    100% {
        border-right: 1px solid #f7f7f7
    }
}



#c02 {
    color: #f7f7f7;
}

#c02 > dl > dt {
    font-size: 26px;
    padding-bottom: 15px;
    text-shadow: 2px 3px 4px #101010;
    color:#d1d1d1;
}

#c02 .skill {
    position: absolute;
    top: 215px;
    left: 280px;
    opacity: 0;
}

#c02 .skill dd {
    margin-right: 30px;
    display: inline-block;
    width: 250px;
    font-size: 20px;
    margin-left: 10px;
    text-shadow: 1px 2px 3px #101010;
}

#c02 .skill dd:last-child {
    margin-right: 0px;
}

#c02 .skill #bar01 {
    width: 100%;
    height: 15px;
    background-color: #676767;
    position: relative;
    transform: translateY(10px);
    border-radius: 50px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .skill #bar01 #probar01 {
    background-color: #f7f7f7;
    width: 0px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50px;
    
}

#c02 .skill #bar02 {
    width: 100%;
    height: 15px;
    background-color: #676767;
    position: relative;
    transform: translateY(10px);
    border-radius: 50px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .skill #bar02 #probar02 {
    background-color: #f7f7f7;
    width: 0px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50px;
}

#c02 .skill #bar03 {
    width: 100%;
    height: 15px;
    background-color: #676767;
    position: relative;
    transform: translateY(10px);
    border-radius: 50px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .skill #bar03 #probar03 {
    background-color: #f7f7f7;
    width: 0px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50px;
}

#c02 .skill #bar04 {
    width: 100%;
    height: 15px;
    background-color: #676767;
    position: relative;
    transform: translateY(10px);
    border-radius: 50px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .skill #bar04 #probar04 {
    background-color: #f7f7f7;
    width: 0px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50px;
}

#c02 .skill #bar05 {
    width: 100%;
    height: 15px;
    background-color: #676767;
    position: relative;
    transform: translateY(10px);
    border-radius: 50px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .skill #bar05 #probar05 {
    background-color: #f7f7f7;
    width: 0px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50px;
}

#c02 .exp {
    position: absolute;
    top: 345px;
    left: 280px;
    opacity: 0;
}

#c02 .exp .main_line {
    width: 1420px;
    height: 5px;
    background-color: #f9ae39;
    border-radius: 50px;
    position: absolute;
    top: 100px;
    left: 10px;
    box-shadow: 1px 2px 3px #101010;
}

#c02 .exp h3 {
    font-size: 26px;
    padding-bottom: 15px;
    color:#d1d1d1;
    text-shadow: 2px 3px 4px #101010;
}

#c02 > .exp > .detail01 > .txt01 > .title01 {
    display: block;
}

#c02 > .exp > .detail02 > .txt02 > .title02 {
    display: block;
}

#c02 > .exp > .detail03 > .txt03 > .title03 {
    display: block;
}

#c02 > .exp > .detail04 > .txt04 > .title04 {
    display: block;
}

#c02 > .exp > .detail05 > .txt05 > .title05 {
    display: block;
}

#c02 .detail01 {
    position: absolute;
    top: 70px;
    left: 10px;
    text-shadow: 2px 3px 4px #101010;
}

#c02 .detail02 {
    position: absolute;
    top: 70px;
    left: 265px;
    text-shadow: 2px 3px 4px #101010;
}

#c02 .detail03 {
    position: absolute;
    top: 70px;
    left: 520px;
    text-shadow: 2px 3px 4px #101010;
}

#c02 .detail04 {
    position: absolute;
    top: 70px;
    left: 820px;
    text-shadow: 2px 3px 4px #101010;
}

#c02 .detail05 {
    position: absolute;
    top: 70px;
    left: 1125px;
    text-shadow: 2px 3px 4px #101010;
    
}

#c02 .cir01,
#c02 .cir02,
#c02 .cir03,
#c02 .cir04,
#c02 .cir05 {
    position: absolute;
    top: 16px;
    width: 10px;height: 10px;
    border-radius: 50%;
    background-color: #f7f7f7;
    border: 10px solid #f9ae39;
}

#c02 .cir01,
#c02 .cir02,
#c02 .cir03,
#c02 .cir04,
#c02 .cir05 {left: 10px;}

#c02 .title01,
#c02 .title02,
#c02 .title03,
#c02 .title04,
#c02 .title05 {
    position: absolute;
    top: -22px;
    font-size: 25px;
    width: 150px;    
}

#c02 .fon {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
}

#c02 .txt01,
#c02 .txt02,
#c02 .txt03,
#c02 .txt04,
#c02 .txt05 {
    position: absolute;
    top: 65px;
    width: 230px;
    font-size: 15px;
    line-height: 120%;
}
#c02 .txt01 {width: 250px;}
#c02 .txt02 {width: 250px;}
#c02 .txt03 {width: 270px;}
#c02 .txt04 {width: 270px;}
#c02 .txt05 {width: 305px;}



#c03 {
    position: relative;
}

#c03>h2>.info{
    font-size: 18px;
    color:#f7f7f7;
    display: block;
    font-weight: 100;
    padding-top: 7px;
    text-shadow: 2px 3px 4px #101010;
}

#c03 > .web_wrap01 {
    display: flex;
    position: absolute;
    top: 220px;
    left: 180px;
    opacity: 0;
}

#c03 > .web_wrap02 {
    display: flex;
    position: absolute;
    top: 465px;
    right: 70px;
    opacity: 0;

}

#c03 > .web_wrap01 > li,
#c03 > .web_wrap02 > li {
    width: 440px;
    height: 235px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 15px;
    box-shadow: 1px 2px 10px #101010;
}

#c03 > .web_wrap01 > li > img,
#c03 > .web_wrap02 > li > img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    cursor: pointer;

}

#c03 > .web_wrap01 > li > #caption01,
#c03 > .web_wrap02 > li > #caption01 {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, .7);
    transition: 0.5s;
    transform: translateY(0px);
}

#c03 > .web_wrap01 > li > #caption01 > span,
#c03 > .web_wrap02 > li > #caption01 > span {
    line-height: 22px;
}

#c03 > .web_wrap01 > li > #caption01 > span:first-child,
#c03 > .web_wrap02 > li > #caption01 > span:first-child {
    font-weight: bold;
    display: block;
    color: #f9ae39;
    text-align: left;
    font-size: 14px;
    padding-left: 20px;
    transform: translateY(3px);
}

#c03 > .web_wrap01 > li > #caption01 > span:last-child,
#c03 > .web_wrap02 > li > #caption01 > span:last-child {
    text-align: left;
    color: #f7f7f7;
    font-size: 16px;
    padding-left: 20px;
    transform: translateY(2px);
}

#c03 > .web_wrap01 > li:hover > img,
#c03 > .web_wrap02 > li:hover > img {
    transform: scale(1.1);
}

#c03 > .web_wrap01 > li:hover > #caption01,
#c03 > .web_wrap02 > li:hover > #caption01 {
    transform: translateY(-50px);
}

#c03 > .web_wrap01 > li > #modal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 30000;
    display: none;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap {
    width: 50%;
    background-color: #f7f7f7;
    margin: 75px auto 0px auto;
    padding: 30px 50px;
    font-size: 14px;
    border-radius: 20px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li {line-height: 30px;}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li:last-child{
    margin-top: 20px;
    text-align: center;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li:last-child > a:first-child {
    margin-right:20px;
    padding: 9px 50px;    
    background-color: #7E3F98;
    color: #f7f7f7;
    font-size: 18px;
    border-radius: 50px;    
    line-height: 40px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li:last-child > a:first-child:hover {
    background-color: #f9ae39;
    color: #7E3F98;
    width: 300px;
    height: 40px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li:last-child > a:last-child {
    padding: 9px 50px;
    background-color: #7E3F98;
    color: #f7f7f7;
    font-size: 18px;
    border-radius: 50px;
    line-height: 40px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li:last-child > a:last-child:hover {
    background-color: #f9ae39;
    color: #7E3F98;
    width: 300px;
    height: 40px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li > span {
    padding: 3px 20px;
    background-color: #7E3F98;
    border-radius: 50px;
    color: #f7f7f7;
    font-size: 14px;
    margin-right: 10px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > #mo_close {
    position: fixed;
    top: 80px;
    right: 350px;
    width: 30px;
    cursor: pointer;
    
}
#c03 > .web_wrap01 > li > #modal > .mo_wrap > #mo_close:hover,
#c03 > .web_wrap02 > li > #modal > .mo_wrap > #mo_close:hover
{
    animation: closerot 2s infinite;
}

#c03 > .web_wrap02 > li > #modal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 30000;
    display: none;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap {
    width: 50%;
    background-color: #f7f7f7;
    margin: 75px auto 0px auto;
    padding: 30px 50px;
    font-size: 14px;
    border-radius: 20px;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > li {
    line-height: 30px;

}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > li:last-child > a {
    width: 300px;
    height: 40px;
    margin: 0px auto;
    display: block;
    text-align: center;
    background-color: #7E3F98;
    color: #f7f7f7;
    font-size: 18px;
    border-radius: 50px;
    margin-top: 20px;
    line-height: 40px;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > li:last-child:hover > a {
    background-color: #f9ae39;
    color: #7E3F98;
    width: 300px;
    height: 40px;
}

#c03 > .web_wrap01 > li > #modal > .mo_wrap > li > img {
    width: 100%;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > li > img {
    width: 100%;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > li > span {
    padding: 3px 20px;
    background-color: #7E3F98;
    border-radius: 50px;
    color: #f7f7f7;
    font-size: 14px;
    margin-right: 10px;
}

#c03 > .web_wrap02 > li > #modal > .mo_wrap > #mo_close {
    position: fixed;
    top: 80px;
    right: 350px;
    width: 30px;
    cursor: pointer;
}

#c03 > .web_wrap01 > li i,
#c03 > .web_wrap02 > li i{
    padding:1.5px 10px;
    border-radius: 50%;
    border:1px solid #333;
    margin-left: 2px;
}



#c03 > .web_wrap01 > li:first-child i:first-of-type{background-color: #c53539;}
#c03 > .web_wrap01 > li:first-child i:nth-of-type(2){background-color: #fff;}

#c03 > .web_wrap01 > li:nth-child(2) i:first-of-type{background-color: #333;}
#c03 > .web_wrap01 > li:nth-child(2) i:nth-of-type(2){background-color: #f7f7f7;}

#c03 > .web_wrap01 > li:nth-child(3) i:first-of-type{background-color: #a4d233;}
#c03 > .web_wrap01 > li:nth-child(3) i:nth-of-type(2){background-color: #f2827f;}

#c03 > .web_wrap02 > li:first-child i:first-of-type{background-color: #fd7e0a;}
#c03 > .web_wrap02 > li:first-child i:nth-of-type(2){background-color: #f7f7f7;}

#c03 > .web_wrap02 > li:nth-child(2) i:first-of-type{background-color: #009640;}
#c03 > .web_wrap02 > li:nth-child(2) i:nth-of-type(2){background-color: #f7f7f7;}

#c03 > .web_wrap02 > li:nth-child(3) i:first-of-type{background-color: #1e7998;}
#c03 > .web_wrap02 > li:nth-child(3) i:nth-of-type(2){background-color: #6a8b9c;}




#c04 {
    position: relative;
}

#c04>h2>.info{
    font-size: 18px;
    color:#f7f7f7;
    display: block;
    font-weight: 100;
    padding-top: 7px;
}

#c04 #gallery {
    width: 1285px;
    margin: 0px auto;
    position: absolute;
    top: 250px;
    left: 350px;
}

#c04 #gallery ul > li {
    width: 310px;
    height: 200px;
    float: left;
    overflow: hidden;
    position: relative;
    background-color: #f7f7f7;
    margin-right: 15px;
    opacity: 0;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 1px 2px 10px #101010;
}

#c04 #gallery ul > li:nth-child(4) {
    margin-right: 0px;
    margin-bottom: 15px;
}

#c04 #gallery ul > li:nth-child(8) {
    margin-right: 0px;
}

#c04 #gallery ul > li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c04 > #gallery li .caption02 {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, .7);
    transition: 0.5s;
    position: absolute;
    bottom: -50px;
}

#c04 > #gallery li .caption02 > span {
    line-height: 22px;
}

#c04 > #gallery li .caption02 > span:first-child {
    font-weight: bold;
    display: block;
    color: #f9ae39;
    text-align: left;
    font-size: 14px;
    padding-left: 20px;
    transform: translateY(3px);
}

#c04 > #gallery li .caption02 > span:last-child {
    text-align: left;
    color: #f7f7f7;
    font-size: 16px;
    padding-left: 20px;
    transform: translateY(2px);
}

#c04 > #gallery li:hover .caption02 {
    position: absolute;
    bottom: 0px;
}

#c04 > #gallery li > #modal2 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 30000;
    display: none;
    text-align: center;
}


#c04 > #gallery li > #modal2 > .mo_wrap2 {
    width: 50%;
    margin: 90px auto 0px auto;
    padding: 30px 50px;
}



#c04 > #gallery li:nth-child(2) > #modal2 > .mo_wrap2 {
    width: 55%;
    margin: 90px auto 0px auto;
    padding: 30px 50px;
}

#c04 > #gallery li:nth-child(2) > #modal2 > .mo_wrap2 > img {
    width: 100%;
    padding: 0px;
}

#c04 > #gallery li:nth-child(6) > #modal2 > .mo_wrap2 {
    width: 35%;
    margin: 90px auto 0px auto;
    padding: 30px 50px;
}

#c04 > #gallery li:nth-child(6) > #modal2 > .mo_wrap2 > img {
    width: 100%;
    padding: 0px;
}


#c04 > #gallery li > #modal2 > .mo_wrap2 > #mo_close2 {
    position: fixed;
    top: 125px;
    right: 350px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#c04 > #gallery li > #modal2 > .mo_wrap2 > #mo_close2:hover{
    animation: closerot 2s infinite;
}







#c05 .info {
    width: 320px;
    height: 508px;
    position: absolute;
    top: 220px;
    left: 360px;
    background-color: #f7f7f7;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 1px 5px 10px #101010;
}

#c05 .info dl dd span {
    width: 210px;
    height: 210px;
    display: block;
    margin: 0px auto;
    background-color: #333;
    border-radius: 50%;
    background-image: url(../img/index_c_23.jpg);
    background-size: 150%;
    background-position: -15px -30px;
    background-repeat: no-repeat;
    
}

#c05 .info dl dt {
    padding-bottom: 7px;
    font-weight: bold;    
}

#c05 .info dl dd {
    color: #333;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 13px;    
}

#c05 .epi {
    width: 320px;
    height: 508px;
    position: absolute;
    top: 220px;
    left: 710px;
    background-color: #f7f7f7;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 40px 35px;
    box-shadow: 1px 5px 10px #101010;
}

#c05 .epi span:first-child {
    font-size: 28px;
    font-weight: bolder;
    color: #7E3F98;
}

#c05 .epi span:last-child {
    display: block;
    color: #333;
    font-size: 15px;
    line-height: 130%;
    margin-top: 20px;
    line-height: 160%;
}

#c05 form {
    width: 560px;
    position: absolute;
    top: 220px;
    left: 1060px;
}

#c05 form legend {
    display: none;
}

#c05 fieldset {
    width: 100%;
}

#c05 input[type=text] {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Montserrat', arial, sans-serif;
    background-color: #f7f7f7;
    font-size: 14px;
    border: none;
    box-sizing: border-box;
    padding: 5px 15px;
    box-shadow: 1px 2px 3px #101010;
}

#c05 textarea {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    border: none;
    margin-bottom: 30px;
    font-family: 'Montserrat', arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    padding: 15px;
    background-color: #f7f7f7;
    box-shadow: 1px 2px 3px #101010;
}

#c05 input[type=submit] {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: #f9ae39;
    font-size: 26px;
    color: #7E3F98;
    cursor: pointer;
    font-family: 'Montserrat', arial, sans-serif;
    box-shadow: 1px 2px 3px #101010;
}

#c05 input[type=submit]:hover {
    font-weight: bold;
    box-shadow:none;
}





#c02 > h2,
#c03 > h2,
#c04 > h2,
#c05 > h2 {
    color: #f9ae39;
    font-weight: bold;
    text-shadow: 1px 2px 3px #101010;
}

@keyframes closerot{
    0%{transform: rotate(0deg);}
    50%{transform: rotate(90deg);}
    100%{transform: rotate(0deg);}
}



/*  푸터영역 서식  */
footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    /*    background-color: #333;*/
    text-align: center;
    z-index: 5;
    padding-left: 10px;
}

footer address {
    font-style: normal;
    color: #f7f7f7;
    font-size: 14px;
    line-height: 55px;
}
