@charset "utf-8";
/* CSS Document */



/*공통*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

a {
    text-decoration: none;
}

body {
    
}

#wrap {
    background: #000;
    display: block;
    width: 100%;
    margin: 0 auto;
    min-width: 360px;
    max-width: 1600px;
    overflow: hidden;
}



/*헤더*/

header {   
    position: relative;
    height: 800px;
    min-height: 500px;
    width: 100%; 
    background: url(../images/head_bg.jpg) no-repeat top center;
    background-size: cover !important;    
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;  
    -o-background-size: cover !important;  
    text-align: center;
    overflow: hidden;
}

header .scrolldown a {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    margin-left: -29px;
    color: #fff;
    display: block;
    height: 42px;
    width: 42px;
    font-size: 42px;
    line-height: 42px;
    color: #fff;
    border-radius: 100%;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
header .scrolldown a:hover { color: #11ABB0; }




.menu_toggle_btn {
    display: none;
}

#nav-wrap {
    position: fixed;
    top:0;
    z-index: 99999;
    width: 100%;
   height: 2rem;   
    background: rgba(10, 10, 100, 0.4);
    font-size: 1.5rem;
}


ul#nav {
    display: flex;
    flex-flow: row;
    justify-content: space-around;    
    width: auto;

    /* center align the menu */
    text-align: center;
}
ul#nav li {
    position: relative;
    list-style: none;    
    display: inline-block;
}
ul#nav li a {

    /* 8px padding top + 8px padding bottom + 32px line-height = 48px */

    display: inline-block;    
    line-height: 32px;
    text-decoration: none;
    text-align: left;
    color: #fff;

    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

ul#nav li a:active { background-color: transparent !important; }
ul#nav li.current a { color: #a8a8a8; }






.title {
    position: absolute;
    top:20%;
    right: 20%;
    width: 30%;
    min-width: 300px;
    text-align: left;  
}

.title img{
    width: 100%;    
}

.title h2 {
    font-size: 2.5rem;
    line-height: 3rem;
}

.title h3 {
    font-size: 1.5rem;
   line-height: 3rem;    
}


/*about*/

#about {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    width: 100%;
    height: auto;
    background: #ecddb4;   
   padding-bottom: 3rem;
}

.about_img {
    float: left;
    width: 15%;
}

.about_img img {
    width: 100%;
    margin-top: 5rem;    
    border: 0.15rem solid;
    border-color: #000;
    border-radius: 10rem;
}

.about_text {
    display: flex;    
    flex-flow: column;
    justify-content: space-between;   
    margin-top: 2rem;
    width: 80%;
}

.about_text h2 {
   margin: 1rem 0;
    font-size: 2rem;
    color: #000;
}

.about_text p {
    font-size: 1.5rem;
    color: #000;
    line-height: 1.8rem;
    margin-left: 1rem;
    opacity: 0.5;
}




/*resume*/

#resume {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    width: 100%;
    height: auto;
    background: #ee9f9f;
   padding-top: 3rem;
}

#resume div {
    display: flex;
    justify-content: space-around;
}

#resume h2 {
    font-size: 1.5rem;
    border-bottom: 0.2rem solid;
    border-color: #ee0b0b;
}

#row1, #row2, #row3 {
    width: 100%;
}

.row_left {
    margin-top: 1.5rem;
    width: 15%;
    align-items: baseline;
}

.row_right {
    display: flex;
    flex-flow: column;
    align-items: baseline;
    margin: 1.5rem 0;
    width: 80%;
}

.row_right p {
    margin-top: 1rem;
    font-size: 1.2rem;  
    color: #000;
    opacity: 0.5;
}


.bars {
    width: 100%;
}
.bars li {
    display: flex;    
    width: 90%;
    margin-top:1rem;
}

.bars li div {
    position: relative;
    width: 50%;
    height: 1.8rem;
    display: block;
    background: #a7c472;
    border: 1px solid #000;
    border-radius: 5px;
    overflow: hidden;
}
.bars li span {
    width: 20%;
    text-indent: 1rem;
    font-size: 1.3rem;
    color: #000;
    opacity: 0.7;
}

#bar_1 {
    position: absolute;
    top:0;
    left: -40%;
    width: 100%;
    display: block;    
    
}


#bar_2 {
    position: absolute;
    top:0;
    left: -20%;
    width: 100%;
    display: block;    

}

#bar_3 {
    position: absolute;
    top:0;
    left: -25%;
    width: 100%;
    display: block;    

}

#bar_4 {
    position: absolute;
    top:0;
    left: -30%;
    width: 100%;
    display: block;    

}
.ani_bar {
    animation-name: ani_bar;
    animation-duration:1.5s;	
    animation-fill-mode: both;
    animation-timing-function:ease-out;
    -webkit-animation-name: ani_bar;    
    -webkit-animation-duration:1.5s;    
    -webkit-animation-fill-mode: both;
    -webkit-animation-timing-function:ease-out;
    -moz-animation-name: ani_bar;    
    -moz-animation-duration:1.5s;    
    -moz-animation-fill-mode: both;
    -moz-animation-timing-function:ease-out;
}



@-webkit-keyframes ani_bar {    
    0% {transform:translateX(-200%);
    }
    100% {transform: translateX(0%)
    }
}

@-moz-keyframes ani_bar {    
    0% {transform:translateX(-200%);
    }
    100% {transform: translateX(0%)
    }
}


/*work*/


.portfolio {
    display: flex;
    width: 100%;
    height: auto;
    background: #ddd9d9;
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.portfolio h1 {
    font: 1.5rem 'Nanum Gothic Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 48px;
    color: #000;
   opacity: 0.4;
}

/* Portfolio Content */
#portfolio-wrapper .columns {margin-bottom: 36px; }
.portfolio-item .item-wrap {    
    background: #fff;
    overflow: hidden;
    position: relative;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-item .item-wrap a {    
    display: block;
    cursor: pointer;
}

/* overlay */
.portfolio-item .item-wrap .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -moz-opacity: 0;
    filter:alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    background: url(../images/overlay-bg.png) repeat;
}
.portfolio-item .item-wrap .link-icon {
    display: block;
    color: #fff;
    height: 30px;
    width: 30px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;

    opacity: 0;
    -moz-opacity: 0;
    filter:alpha(opacity=0);

    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;

    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
}
.portfolio-item .item-wrap img {
    vertical-align: bottom;    
}
.portfolio-item .portfolio-item-meta { padding: 18px }
.portfolio-item .portfolio-item-meta h5 {
    font: 18px/21px 'Nanum Gothic Bold', sans-serif;
    color: #fff
}
.portfolio-item .portfolio-item-meta p {
    font: 12px/18px 'Nanum Gothic Bold', sans-serif;
   color: #fff;
    margin-bottom: 0;
}

/* on hover */
.portfolio-item:hover .overlay {
    opacity: 1;
    -moz-opacity: 1;
    filter:alpha(opacity=100);
}
.portfolio-item:hover .link-icon {
    opacity: 1;
    -moz-opacity: 1;
    filter:alpha(opacity=100);
}

/* popup modal */
.popup-modal {
    max-width: 550px;
    background: #fff;
    position: relative;
    margin: 0 auto;
}
.popup-modal .description-box { padding: 12px 36px 18px 36px; }
.popup-modal .description-box h4 {
    font: 15px/24px 'Nanum Gothic Bold', sans-serif;
    margin-bottom: 12px;
    color: #111;
}
.popup-modal .description-box p {
    font: 14px/24px 'Nanum Gothic Bold', sans-serif;
    color: #A1A1A1;
    margin-bottom: 12px;
}
.popup-modal .description-box .categories {
    font: 11px/21px 'Nanum Gothic Bold', sans-serif;
    color: #A1A1A1;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    text-align: left;
}
.popup-modal .description-box .categories i {
    margin-right: 8px;
}
.popup-modal .link-box {
    padding: 18px 36px;
    background: #111;
    text-align: left;
}
.popup-modal .link-box a {
    color: #fff;
    font: 11px/21px 'Nanum Gothic Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
}
.popup-modal a:hover {	color: #00CCCC; }
.popup-modal a.popup-modal-dismiss { margin-left: 24px; }


/* fadein/fadeout effect for modal popup
/* ------------------------------------------------------------------ */

/* content at start */
.mfp-fade.mfp-wrap .mfp-content .popup-modal {
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
/* content fadein */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content .popup-modal {
    opacity: 1;
}
/* content fadeout */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content .popup-modal {
    opacity: 0;
}




/*testimonials*/



#testimonials {
    background: url(../images/te_bg.jpg) no-repeat center center;
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;  
    -o-background-size: cover !important;  
    background-attachment: fixed;
    position: relative;
    min-height: 200px;
    width: 100%;
    overflow: hidden;
}
#testimonials .text-container {
    padding-top: 96px;
    padding-bottom: 66px;
}
#testimonials h1 {
    font: 18px/24px 'Nanum Gothic Bold', sans-serif;   
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
#testimonials h1 span { display: none; }
#testimonials .header-col { padding-top: 9px; }
#testimonials .header-col h1:before {
    font-family: 'FontAwesome';
    content: '\f10d';
    padding-right: 10px;
    font-size: 100px;
    line-height: 72px;
    text-align: left;
    float: left;
    color: #fff;
}

/*	Blockquotes */
#testimonials blockquote {
    margin: 0 0px 30px 0px;
    padding-left: 0;
    position: relative;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 1);
}
#testimonials blockquote:before { content: none; }
#testimonials blockquote p {
    font-family: 'Nanum Gothic Bold', serif;
    padding: 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: #fff
}
#testimonials blockquote cite {
    display: block;
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1rem;
    color: #fff;
}
#testimonials blockquote cite:before { content: "\2014 \0020"; }
#testimonials blockquote cite a,
#testimonials blockquote cite a:visited { color: #8B9798; border: none }

/* Flex Slider
/* ------------------------------------------------------------------ */

/* Reset */
.flexslider a:active,
.flexslider a:focus  { outline: none; }
.slides,
.flex-control-nav,
.flex-direction-nav { margin: 0; padding: 0; list-style: none; }
.slides li { margin: 0; padding: 0;}

/* Necessary Styles */
.flexslider {
    position: relative;
    zoom: 1;
    margin: 0;
    padding: 0;
}
.flexslider .slides { zoom: 1; }
.flexslider .slides > li { position: relative; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; }
/* Suggested container for slide animation setups. Can replace this with your own */
.flex-container { zoom: 1; position: relative; }

/* Clearfix for .slides */
.slides:before,
.slides:after {
    content: " ";
    display: table;
}
.slides:after {
    clear: both;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
.no-js .slides > li:first-child { display: block; }

/* Slider Styles */
.slides { zoom: 1; }
.slides > li {
    /*margin-right: 5px; */
    overflow: hidden;
}

.slides_text {  
    text-align: center;
    font-family: 'Nanum Gothic Bold';
}

.slides_title {
    font-family: 'Nanum Gothic Bold';
    text-align: right;
}


/* Control Nav */
.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -20px;
    text-align: left;
}
.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.flex-control-paging li a {
    width: 12px;
    height: 12px;
    display: block;
    background: #ddd;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    box-shadow: inset 0 0 3px rgba(255, 255, 255, .3);
}
.flex-control-paging li a:hover {
    background: #CCC;
    background: rgba(255, 255, 255, .7);
}
.flex-control-paging li a.flex-active {
    background: #fff;
    background: rgba(255, 255, 255, .9);
    cursor: default;
}




/*contact*/

#contact {
    background: #191919;
    padding-top: 96px;
    padding-bottom: 102px;
    color: #636363;
}
#contact .section-head { margin-bottom: 42px; }

#contact a, #contact a:visited  { color: #11ABB0; }
#contact a:hover, #contact a:focus { color: #fff; }

#contact h1 {
    font: 18px/24px 'Nanum Gothic Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #EBEEEE;
    margin-bottom: 6px;
}
#contact h1 span { display: none; }
#contact h1:before {
    font-family: 'FontAwesome';
    content: "\f0e0";
    padding-right: 10px;
    font-size: 72px;
    line-height: 72px;
    text-align: left;
    float: left;
    color: #ebeeee;
}

#contact h4 {
    font: 16px/24px 'Nanum Gothic Bold', sans-serif;
    color: #EBEEEE;
    margin-bottom: 6px;
}
#contact p.lead {
    font: 18px/36px 'Nanum Gothic Bold', sans-serif;
    padding-right: 3%;
}
#contact .header-col { padding-top: 6px; }


/* contact form */
#contact form { margin-bottom: 30px; }
#contact label {
    font: 15px/24px 'Nanum Gothic Bold', sans-serif;
    margin: 12px 0;
    color: #EBEEEE;
    display: inline-block;
    float: left;
    width: 26%;
}
#contact input,
#contact textarea,
#contact select {
    padding: 18px 20px;
    color: #eee;
    background: #373233;
    margin-bottom: 42px;
    border: 0;
    outline: none;
    font-size: 15px;
    line-height: 24px;
    width: 65%;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus {
    color: #fff;
    background-color: #11ABB0;
}
#contact button.submit {
    text-transform: uppercase;
    letter-spacing: 3px;
    color:#fff;
    background: #0D0D0D;
    border: none;
    cursor: pointer;
    height: auto;
    display: inline-block;
    border-radius: 3px;
    margin-left: 26%;
}
#contact button.submit:hover {
    color: #0D0D0D;
    background: #fff;
}
#contact span.required {
    color: #11ABB0;
    font-size: 13px;
}
#message-warning, #message-success {
    display: none;
    background: #0F0F0F;
    padding: 24px 24px;
    margin-bottom: 36px;
    width: 65%;
    margin-left: 26%;
}
#message-warning { color: #D72828; }
#message-success { color: #11ABB0; }

#message-warning i,
#message-success i {
    margin-right: 10px;
}
#image-loader {
    display: none;
    position: relative;
    left: 18px;
    top: 17px;
}


/* Twitter Feed */
#twitter {
    margin-top: 12px;
    padding: 0;
}
#twitter li {
    margin: 6px 0px 12px 0;
    line-height: 30px;
}
#twitter li span {
    display: block;
}
#twitter li b a {
    font: 13px/36px 'Nanum Gothic Bold', Sans-serif;
    color: #474747 !important;
    border: none;
}


/*footer*/

footer {    
    padding-top: 48px;
    margin-bottom: 48px;
    color: #303030;
    font-size: 14px;
    text-align: center;
    position: relative;
}

footer a, footer a:visited { color: #525252; }
footer a:hover, footer a:focus { color: #fff; }

/* copyright */
footer .copyright {
    margin: 0;
    padding: 0;
}
footer .copyright li {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 24px;
}
.ie footer .copyright li {
    display: inline;
}
footer .copyright li:before {
    content: "\2022";
    padding-left: 10px;
    padding-right: 10px;
    color: #095153;
}
footer .copyright  li:first-child:before {
    display: none;
}

/* social links */
footer .social-links {
    margin: 18px 0 30px 0;
    padding: 0;
    font-size: 30px;
}
footer .social-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: 42px;
    color: #F06000;
}

footer .social-links li:first-child { margin-left: 0; }


/* Go To down Button */

#go-down a {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    margin-left: -29px;    
    display: block;
    height: 60px;
    width: 60px;    
    border-radius: 100%;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#go-down a:hover { background-color: #0F9095; }



/* Go To Top Button */
#go-top {
    position: absolute;
    top: -24px;
    left: 50%;
    margin-left: -30px;
}
#go-top a {
    text-decoration: none;
    border: 0 none;
    display: block;
    width: 60px;
    height: 60px;    

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #fff;
    font-size: 21px;
    line-height: 60px;
    border-radius: 100%;
}

#go-top a:hover { background-color: #0F9095; }


@media only screen and (max-width:900px) {

    /* 헤더   */




    /*about*/
    #about {
        flex-flow: column;   
        align-items: center;
    }
    .about_img {        
        width: 30%;
    }
    .about_img img {
        margin-top: 1rem;
    }

    .about_text h2 {
        font-size: 1.5rem;
    }
    .about_text p {
        font-size: 1.2rem;
    }
    /* resume   */
    #resume {
        padding-top: 0;
    }
    
    #resume div {
        flex-flow: column;
        margin-left: 1rem;        
    }

    .row_left {
        width: 100%;
        margin-left: 1rem;
    }

    .row_right {
        width: 95%;
        margin-left: 1rem;
    }

    .row_right p {
        margin-left: 1rem;
        font-size: 1.2rem;
    }

    .bars li span {
        line-height: 1.5rem;
        font-size: 2rem;
    }

    .bars li div {
        width: 70%;
        height: 2rem;
    }
    
    #portfolio-wrapper .columns {
        width: 50%;
    }
    
    #testimonials blockquote p {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }

    #testimonials blockquote cite{
        font-size: 1rem;
    }

    #contact h1:before {
        font-size: 3rem;
    }
   
}



@media only screen and (max-width:768px) {
    
/* 헤더   */
    
    
    header {
        height: 500px;
    }
    .title {        
        right: 2%;
        min-width: 220px;
    }
    .title img{
        width: 50%;    
    }

    .title h2 {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .title h3 {
        font-size: 1rem;
        line-height: 1.5rem;    
    }
    
    #nav-wrap {        
        background: none;
    }

    ul#nav {
        position: fixed; 
        z-index: 99998;
        top:0.65em;
        right:3.9rem;
        display: none;
        width: 40%;
    }

    ul#nav li {       
        display: flex;
        justify-content: center;
        background: #2c3e50;
    }

    ul#nav li a {
        display: block;
        width: 80%;        
        font-size: 0.938rem;
        font-weight: bold;
        text-transform: uppercase;
    }


    .menu_toggle_btn {
        display: block;
        width: 3rem;
        height: 3rem;
        position: fixed;
        top:1rem;
        right:1rem;
        text-indent: -9999px;
        background: url(../images/icon_06.png) no-repeat center center;
        cursor: pointer;    
        background-size: cover;
        z-index: 99999;
    }

/*about*/
    #about {
        flex-flow: column;   
        align-items: center;
    }
    .about_img {        
        width: 30%;
    }
    .about_img img {
        margin-top: 1rem;
    }
    
    .about_text h2 {
        font-size: 1.5rem;
    }
    .about_text p {
        font-size: 1rem;
    }
/* resume   */
    #resume {
        padding-top: 0;
    }
    #resume div {
        flex-flow: column;
        margin-left: 1rem;
    }
    
    .row_left {
        width: 100%;
        margin-left: 1rem;
    }
    
    .row_right {
        width: 100%;
        margin-left: 1rem;
    }
    
    .row_right p {
        width: 85%;
        margin-left: 0rem;
        font-size: 1rem;
    }
    
    .bars li span {
        line-height: 0.7rem;
        font-size: 0.8rem;
    }
    
    .bars li div {
        width: 70%;
        height: 0.8rem;
    }
    
    #testimonials .header-col h1:before {
        font-size: 2rem;
    }
    
    #testimonials blockquote p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    
    #testimonials blockquote cite{
        font-size: 0.7rem;
    }
    
    #contact h1:before {
        font-size: 3rem;
    }
     
    
    
    footer .social-links li {
        margin-left: 0.3rem;
    }

}






