﻿@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
* body,
button,
input,
textarea,
select,
table {
    font-family: 'Roboto', 'Nanum Gothic', 'Typo_SsangmunDongB', '맑은 고딕', 'malgun gothic', '돋움', dotum, sans-serif;
    font-size: 17px;
}

html {
    width: 100%;
    height: 100%;
}

body {
    min-width: 1100px;
    min-height: 950px;
    height: 100%;
    position: relative;
}

.overflow {
    overflow: auto;
}


/* header 헤더 */

#header {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}

#header .logo {
    position: absolute;
    left: 30px;
    top: 20px;
}

#header .gnb {
    width: 100%;
    margin-top: 27px;
    text-align: center;
}

#header .gnb li {
    display: inline-block;
    margin-left: 50px;
}

#header .gnb li:first-child {
    margin-left: 0;
}

#header .gnb li a {
    color: #fff;
}

#header .gnb li a:hover {
    color: #ff9800;
}

#header .sns {
    position: absolute;
    right: 20px;
    top: 18px;
}

#header .sns li {
    float: left;
    margin-left: 20px;
}

#header .sns li:first-child {
    margin-left: 0;
}

#header .sns li a {
    display: block;
    width: 35px;
    height: 35px;
    text-indent: -9999px;
}

#header .sns .kakao {
    background: url(../images/sns_kakao.png) no-repeat 50% 50%;
}

#header .sns .kakao:hover {
    background: url(../images/sns_kakao_hover.png) no-repeat 50% 50%;
}

#header .sns .instagram {
    background: url(../images/sns_instagram.png) no-repeat 50% 50%;
}

#header .sns .instagram:hover {
    background: url(../images/sns_instagram_hover.png) no-repeat 50% 50%;
}

#header .sns .facebook {
    background: url(../images/sns_facebook.png) no-repeat 50% 50%;
}

#header .sns .facebook:hover {
    background: url(../images/sns_facebook_hover.png) no-repeat 50% 50%;
}


/* index.html main 메인 */

#main {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}


/* #main .video_wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -100;
}

#main .video_wrap .video_cover {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#main .video_wrap video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -200;
} */

@keyframes titleMove {
    0% {
        top: 150%;
    }
    50% {
        top: 47%;
    }
    100% {
        top: 50%;
    }
}

#main .title_wrap {
    /* border: 1px solid red; */
    /* padding: 300px 0 100px 0; */
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: titleMove 1.5s;
}

#main .title_wrap:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -50px;
    width: 350px;
    margin-left: -175px;
    height: 1px;
    background: #ff9800;
}

#main .title_wrap:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 130px;
    width: 350px;
    margin-left: -175px;
    height: 1px;
    background: #ff9800;
}

#main .title {
    font-size: 80px;
    color: #fff;
}

#main .centence {
    font-size: 35px;
    color: #fff;
}

#main .btn_cv {
    width: 266px;
    height: 46px;
    border: 2px solid #fff;
    background: none;
    font-size: 25px;
    color: #fff;
    margin: 170px 0 0 0;
}

#main .btn_cv:hover {
    border: 2px solid #ff9800;
    background: #ff9800;
}


/* brand.html */

#main.brand {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
}

#main.brand .brand_inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#main.brand .brand_inner .brand_logo_wrap {
    position: relative;
    height: 100%;
    width: 650px;
    margin: 0 auto;
}

@keyframes scaleMove {
    0% {
        transform: scale (0, 0);
    }
    100% {
        transform: scale(0.2, 0.2);
        left: 0%;
        top: 35%;
        margin-left: -200px;
    }
}

#main.brand .brand_inner .brand_logo_wrap .brand_logo {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -250px;
    animation: scaleMove 1s 2.5s;
    animation-fill-mode: forwards;
}

@keyframes boxMove {
    from {
        width: 0;
    }
    to {
        width: 500px;
    }
}

@keyframes boxMove2 {
    from {
        height: 0;
    }
    to {
        height: 500px;
    }
}

@keyframes boxMove3 {
    from {
        width: 0;
        left: 500px;
    }
    to {
        width: 500px;
        left: 0
    }
}

@keyframes boxMove4 {
    from {
        height: 0;
        top: 500px;
    }
    to {
        height: 500px;
        top: 0;
    }
}

#main.brand .brand_inner .brand_logo_wrap .brand_logo .box {
    width: 70px;
    height: 70px;
    background: #ff9800;
    animation: boxMove 0.5s;
    animation-fill-mode: forwards;
}

#main.brand .brand_inner .brand_logo_wrap .brand_logo .box2 {
    width: 70px;
    height: 0px;
    background: #ff9800;
    animation: boxMove2 0.5s 0.5s;
    animation-fill-mode: forwards;
    position: absolute;
    left: 430px;
    top: 0;
}

#main.brand .brand_inner .brand_logo_wrap .brand_logo .box3 {
    width: 0px;
    height: 70px;
    background: #ff9800;
    animation: boxMove3 0.5s 1s;
    animation-fill-mode: forwards;
    position: absolute;
    left: 500px;
    top: 430px;
}

#main.brand .brand_inner .brand_logo_wrap .brand_logo .box4 {
    width: 70px;
    height: 0px;
    background: #ff9800;
    animation: boxMove4 0.5s 1.5s;
    animation-fill-mode: forwards;
    position: absolute;
    left: 0px;
    top: 430px;
}

@keyframes textMove {
    from {
        width: 0;
    }
    to {
        width: 600px;
    }
}

#main.brand .brand_inner .brand_logo_wrap .brand_txt {
    color: #fff;
    font-size: 90px;
    font-weight: bold;
    width: 0;
    animation: textMove 1s 3.5s;
    animation-fill-mode: forwards;
    overflow: hidden;
    position: absolute;
    left: 18%;
    top: 28%;
}

#main.brand .brand_inner .txt_wrap {
    width: 1000px;
    height: 250px;
    position: absolute;
    top: 55%;
    left: 50%;
    margin-left: -500px;
    /* border: 1px solid red; */
}

#main.brand .brand_inner .txt_wrap:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 250px;
    height: 1px;
    margin-left: -125px;
    background: #ff9800;
    opacity: 0;
    animation: fadeIn 1s 6s;
    animation-fill-mode: forwards;
}

#main.brand .brand_inner .txt_wrap:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 250px;
    height: 1px;
    margin-left: -125px;
    background: #ff9800;
    opacity: 0;
    animation: fadeIn 1s 6s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#main.brand .brand_inner .txt_wrap .txt1 {
    font-size: 25px;
    color: #fff;
    opacity: 0;
    animation: fadeIn 3s ease 4s;
    animation-fill-mode: forwards;
    text-align: center;
    margin-top: 60px;
}

#main.brand .txt_wrap .txt1 span {
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    width: 100px;
    margin-left: 20px;
}

#main.brand .txt_wrap .txt1 span:first-child {
    margin-left: 0;
}

#main.brand .txt_wrap .txt2 {
    font-size: 22px;
    color: #fff;
    opacity: 0;
    animation: fadeIn 3s ease 5s;
    animation-fill-mode: forwards;
    text-align: center;
    margin-top: 50px;
}


/* whoami.html */

#main.who {
    width: 100%;
    height: 100%;
    background: url(../images/who_bg.jpg) no-repeat 50% 50%;
    text-align: center;
}

#main.who .left_quot {
    padding-top: 180px;
}

#main.who .who_text {
    font-size: 25px;
    color: #fff;
    margin: 50px;
}

#main.who .icons {
    overflow: hidden;
    width: 640px;
    margin: 80px auto 0;
    /* border: 1px solid red; */
}

#main.who .icons li {
    float: left;
    margin-left: 40px;
}

#main.who .icons li:first-child {
    margin-left: 0;
}

#main.who .icons .html_img {
    background: url(../images/html.png) no-repeat 50% 50%;
    width: 62px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .html_img:hover {
    background: url(../images/html_hover.png) no-repeat 50% 50%;
}

#main.who .icons .css_img {
    background: url(../images/css.png) no-repeat 50% 50%;
    width: 77px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .css_img:hover {
    background: url(../images/css_hover.png) no-repeat 50% 50%;
}

#main.who .icons .javascript_img {
    background: url(../images/javascript.png) no-repeat 50% 50%;
    width: 92px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .javascript_img:hover {
    background: url(../images/javascript_hover.png) no-repeat 50% 50%;
}

#main.who .icons .jquery_img {
    background: url(../images/jquery.png) no-repeat 50% 50%;
    width: 73px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .jquery_img:hover {
    background: url(../images/jquery_hover.png) no-repeat 50% 50%;
}

#main.who .icons .bootstrap_img {
    background: url(../images/bootstrap.png) no-repeat 50% 50%;
    width: 66px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .bootstrap_img:hover {
    background: url(../images/bootstrap_hover.png) no-repeat 50% 50%;
}

#main.who .icons .photoshop_img {
    background: url(../images/photoshop.png) no-repeat 50% 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
}

#main.who .icons .photoshop_img:hover {
    background: url(../images/photoshop_hover.png) no-repeat 50% 50%;
}


/* project.html */

#main.project {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
}

#main.project .project_list_wrap {
    padding-top: 170px;
    margin: 0 auto;
    /* border: 1px solid red; */
    overflow: hidden;
    width: 1100px;
}

#main.project .project_list_wrap .project_list {
    width: 350px;
    float: left;
    overflow: hidden;
    position: relative;
    margin-left: 20px;
}

#main.project .project_list_wrap .project_list:first-child {
    margin-left: 0;
}

#main.project .project_list_wrap .project_list img {
    width: 350px;
    height: 500px;
}

#main.project .project_list_wrap .project_list h2 {
    background: #000;
    background: rgba(0, 0, 0, 0.7);
    width: 350px;
    height: 300px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    color: #fff;
    font-size: 36px;
    padding-top: 200px;
    display: none;
}

#main.project .project_list_wrap .project_list .project_title {
    padding: 20px 0 0 5px;
    margin-top: 30px;
    position: relative;
}

#main.project .project_list_wrap .project_list .project_title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 5px;
    width: 60px;
    height: 1px;
    background: #ff9800;
}

#main.project .project_list_wrap .project_list .project_title h3 {
    color: #fff;
    font-size: 18px;
}

#main.project .project_list_wrap .project_list .project_title h4 {
    color: #BEBCBC;
    font-size: 14px;
}

#main.project .project_list_wrap .project_list:hover .project_title h3 {
    color: #ff9800;
}

#main.project .project_list_wrap .project_list:hover .project_title h4 {
    color: #ff9800;
}


/* log.html */

#main.log {
    width: 100%;
    height: 100%;
    background: #000;
    /* overflow: auto; */
}

#main.log .photo_wrap {
    width: 55%;
    height: 100%;
    overflow: hidden;
    float: left;
    padding-top: 70px;
    position: relative;
    /* border: 3px solid red; */
}

#main.log .photo_wrap img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#main.log .log_slider {
    width: 45%;
    height: 100%;
    float: left;
    overflow: hidden;
}

.swiper-button-next {
    right: 7%;
    top: 50%;
    width: 20px;
    height: 38px;
    background: url(../images/next_arrow.png) no-repeat 50% 50%;
}

.swiper-button-prev {
    left: 7%;
    top: 50%;
    width: 20px;
    height: 38px;
    background: url(../images/prev_arrow.png) no-repeat 50% 50%;
}

#main.log .log_inner {
    font-family: 'Nanum Gothic';
    color: #fff;
    padding-top: 70px;
    width: 864px;
    height: 100%;
    overflow: hidden;
    float: right;
}

#main.log .log_inner .log_title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

#main.log .log_inner .log_title:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    width: 60px;
    margin-left: -30px;
    height: 1px;
    background: #ff9800;
}

#main.log .log_inner .log_title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 60px;
    margin-left: -30px;
    height: 1px;
    background: #ff9800;
}

#main.log .log_inner .log_title h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

#main.log .log_inner .log_title h4 {
    font-size: 14px;
    color: #bebebe;
    margin-top: 10px;
}

#main.log .log_inner .log_contents {
    overflow: hidden;
    margin-top: 10px;
}

#main.log .log_inner p {
    font-size: 16px;
    width: 550px;
    margin: 25px auto 0;
}

#main.log .log_inner .btn_next {
    color: #fff;
    margin: 0 auto;
    display: block;
    width: 60px;
    margin-top: 25px;
}

#main.log .log_inner .btn_next:hover {
    color: #ff9800;
}


/* skill-bar */

.skill_bar_wrap {
    width: 500px;
    height: 25px;
    color: #000;
    font-size: 11px;
    line-height: 25px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    margin: 140px auto 0;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    overflow: hidden;
    font-weight: bold;
}

.skill_bar {
    background-color: #ff9800;
    position: relative;
    width: 0;
    border-radius: 2px;
    animation-fill-mode: forwards;
    z-index: 100;
}

.skill_bar span {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 5px 0 10px;
    background-color: #1a1a1a;
    color: #fff;
}

.skill_bar span:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: -3px;
    margin-top: -3px;
    background-color: #1a1a1a;
    transform: rotate(45deg);
}


/* particle.js */

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}


/*  log 반응형 */


/* @media screen and (max-width:1300px) {
    #main.log .photo_wrap {
        width: 100%;
    }
    #main.log .photo_wrap img {
        width: 100%;
    }
    #main.log .log_slider {
        width: 100%;
    }
} */