@charset 'utf-8';
@import url('../css/Montserrat.css');
@import url('../css/notosanskr/NotoSansKR.css');
@import url('../css/Nanum.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline-style: none; */
}

a {

    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}


body {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0px;
    word-break: break-all;
}

/* 공통 요소 */
.container {
    position: relative;
    display: block;
    width: 1200px;
    margin: 0 auto;
}

.clearfix::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    clear: both;
}

.section-box {
    position: relative;
    padding-top: 100px;
    text-align: center;
}


.section-box>h2 {
    position: relative;
    display: block;
    font-size: 40px;
    text-transform: capitalize;
}

.skill-txt {
    position: relative;
    display: block;
    font-size: 40px;
    text-transform: capitalize;
    text-align: left;
}

.skill-txt::after {
    position: relative;
    display: block;
    font-size: 10px;
    text-transform: capitalize;
    text-align: left;
}

.section-box>h2::after {
    content: '';
    position: relative;
    margin-top: 10px;
    left: 574px;
    display: block;
    width: 50px;
    height: 5px;
    background-color: #000;
}

.header {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    z-index: 500;
}

.header .container {
    height: 100%;
}

.logo {
    position: absolute;
    left: 0px;
    top: 70%;
    transform: translateY(-50%);
    display: block;

}

.logo img {
    width: 150px;
    height: 150px;
}




.visual {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 800px;
    height: 750px;
    background: url('../images/visual.jpg') no-repeat center;
    background-size: cover;
}

.nav {
    position: absolute;
    display: block;
    width: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 555;
}

.gnb {
    position: relative;
    display: block;
}

.gnb>li {
    position: relative;
    display: block;
    float: left;
}

.gnb>li>a {
    position: relative;
    display: block;
    margin: 20px;
    font-size: 20px;
    text-transform: capitalize;
}

/* 햄버거 메뉴 */
.menu {
    position: absolute;
    display: none;
    top: 50%;
    right: 0px;
    height: 100%;
    max-width: 0;
    transition: 0.5s ease;
    z-index: 1;
    background-color: #eee;
}

.burger-icon {
    cursor: pointer;
    display: none;
    position: absolute;
    z-index: 2;
    padding: 8px 0;
    top: 50px;
    transform: translateY(-50%);
    right: 300px;
    user-select: none;
    width: auto;
    margin: 0;
}

.burger-icon .burger-sticks {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 20px;
}

.burger-icon .burger-sticks:before,
.burger-icon .burger-sticks:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.burger-icon .burger-sticks:before {
    top: 5px;
}

.burger-icon .burger-sticks:after {
    top: -5px;
}

.burger-check {
    display: none;
}

.burger-check:checked~.menu {
    max-width: 200px;
    height: 600px;
}

.burger-check:checked~.burger-icon .burger-sticks {
    background: transparent;
}

.burger-check:checked~.burger-icon .burger-sticks:before {
    transform: rotate(-45deg);
}

.burger-check:checked~.burger-icon .burger-sticks:after {
    transform: rotate(45deg);
}

.burger-check:checked~.burger-icon:not(.steps) .burger-sticks:before,
.burger-check:checked~.burger-icon:not(.steps) .burger-sticks:after {
    top: 0;
}


/* 메인영역 */
.main {
    position: relative;
    display: block;

}

/* go top */
#go-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999999;
}

#go-top a {
    width: 108px;
    display: block;
    text-align: center;
    font: 11px/100% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #bbb;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

#go-top span {
    position: fixed;
    right: 80px;
    bottom: 65px;
    width: 50px;
    height: 50px;
    display: block;
    margin-bottom: 7px;
    background: #ddd url(../images/uparrow.png) no-repeat center center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

#go-top a:hover span {
    background-color: #777;
}


/* home */
.home {
    position: relative;
    display: block;
    height: 650px;
    margin-bottom: 80px;

}


.home .container {
    position: relative;
    display: block;
    height: 100%;


}

.text_box {
    position: relative;
    display: block;
    height: 250px;
    font-size: 2rem;
    text-align: center;
}

.text {
    position: absolute;
    top: 190px;
    left: 50px;
    font-size: 30px;
    font-weight: bold;
    z-index: 999;
    color: #000;
}

.text2 {
    position: absolute;
    top: 200px;
    right: 180px;
    font-size: 70px;
    font-weight: 700;
    z-index: 999;
}

.sns {
    position: relative;
    top: 550px;
    display: block;
}

.sns>a {
    position: relative;
    display: inline-block;
    margin-left: 10px;

}

.sns>a>img {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
}

/* go top */


/* main */
.main {
    position: relative;
    display: block;
}

/* about */
.about {
    position: relative;
    display: block;
    background-color: #eee;
    width: 100vw;
}

.about .container {
    height: 750px;
}

.kang-left {
    position: relative;
    display: block;
    width: 300px;
    height: 600px;
    background-color: #eee;
    border-radius: 10px;
    box-shadow: #333;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    float: left;
    margin-top: 50px;
}

.kang-dong {
    position: relative;
    margin-top: 50px;
    margin-left: 53px;
    width: 200px;
    height: 200px;

}

.kang-dong>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;

}

.kang-icon {
    position: relative;
    display: block;
    margin-top: 30px;
    font-size: 20px;

}

.kang-icon>i {
    margin-left: 50px;
    margin-right: 20px;
    font-size: 15px;
}

.kang-cate {
    position: relative;
    display: block;
}

.kang-cate>span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 20px;
    padding-top: 60px;

}

.kang-right {
    position: relative;
    display: block;
    width: 850px;
    float: right;
    height: 100%;

}

.kang-title {
    position: relative;
    display: block;
    font-size: 40px;
    padding-top: 100px;
}

.kang-title ::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 354px;
    display: block;
    width: 500px;
    height: 10px;
    background-color: #333;
    border-radius: 3px;
}

.kang-title>span {
    position: relative;
    display: block;
    font-size: 30px;
    color: #333;
}

.kang-txt {
    position: relative;
    display: block;
    width: 100%;
    height: 245px;
    padding-top: 15px;
    font-size: 18px;
    float: left;
}

.kang-txt>p {
    position: relative;
    display: block;
}

.kang-txt>p,
.kang-txt>span {
    float: left;
    margin-right: 15px;
}

.txt-hello {
    font-size: 22px;
    line-height: 40px;
}

.kang-txt>P {
    position: relative;
    display: block;
    margin-top: 40px;
    line-height: 30px;
}

.kang-txt span:first-child {
    margin-right: 0;

}

.kang-span {
    position: relative;
    display: block;
}

.kang-school {
    position: relative;
    display: block;
    margin-top: 285px;
}

.kang-h4 {
    position: relative;
    display: block;
    margin-right: 70px;
    float: left;
}

.kang-h4>span {
    position: relative;
    display: block;
    text-align: left;
    font-size: 20px;

}

.kang-h4>span::after {
    content: '';
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin-top: 10px;
    border-radius: 3px;
    background-color: #000;

}

.kang-h4>h3 {
    position: relative;
    display: block;
    padding-top: 30px;
}

.fa-pen:before {
    color: coral;
    content: "\f304";
    font-size: 20px;    
}

.fa-youtube:before {
    color: rgb(150, 29, 20);
    content: "\f167";
    font-size: 20px;
}

/* skill */
.skill {
    position: relative;
    display: block;
    width: 100%;
    background-color: #eee;
}

.skill-head {
    padding-top: 40px;
}

.skill .container {
    height: 700px
}

.skill-box {
    position: relative;
    display: block;
    margin-top: 40px;
}


#circle1,
#circle2,
#circle3,
#circle4,
#circle5,
#circle6,
#circle7,
#circle8,
#circle9,
#circle10 {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    float: left;
    margin: 40px;
}

#circle1 {
    background: url('../images/html_icon.png') no-repeat center;
    background-size: 80px;
}

#circle2 {
    background: url('../images/css_icon.png') no-repeat center;
    background-size: 80px;
}

#circle3 {
    background: url('../images/js_icon.png') no-repeat center;
    background-size: 80px;
}

#circle4 {
    background: url('../images/jquery_icon.png') no-repeat center;
    background-size: 80px;
}

#circle5 {
    background: url('../images/vue_icon.png') no-repeat center;
    background-size: 80px;
}

#circle6 {
    background: url('../images/php_icon.png') no-repeat center;
    background-size: 80px;
}

#circle7 {
    background: url('../images/bootstrap_icon.png') no-repeat center;
    background-size: 80px;
}

#circle8 {
    background: url('../images/potoshop_icon.png') no-repeat center;
    background-size: 80px;
}

#circle9 {
    background: url('../images/llius_icon.png') no-repeat center;
    background-size: 80px;
}

#circle10 {
    background: url('../images/scss_icon.png') no-repeat center;
    background-size: 80px;
}

/* possibility */
.possibility {
    position: relative;
    display: block;
}

.possibility .container {
    height: 800px;
}

.poss-box {
    position: relative;
    display: block;
    width: 600px;
    height: 450px;
    border: 5px solid #eee;
    border-radius: 15px;
    margin-top: 80px;
    padding-top: 40px;
    padding-left: 40px;
}

.poss-cate {
    padding-top: 20px;
}

.poss-txt {
    padding-top: 10px;
    color: #777;
    font-size: 15px;
}

.chart {
    position: absolute;
    top: 200px;
    right: 0px;
    display: block;
    width: 500px;
    height: 500px;
}

/* portfolio */
.portfolio {
    position: relative;
    display: block;

}

.portfolio .container {
    height: 2250px;
}

.pt-box {
    position: relative;
    display: block;
    width: 300px;
    height: 460px;
    border-radius: 10px;
    background-color: #eee;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-left: 80px;
    margin-top: 80px;
    transition: all 0.2s linear;
    float: left;
}


.pt-top {
    position: relative;
    display: block;
    width: 250px;
    height: 250px;
    padding-top: 20px;
    margin: auto;
}
.pt-top > i{
    position: absolute;
    display: block;
    font-size: 30px;
    color: darkgoldenrod;
    top: 0px;
    left: -20px;
    z-index: 50;
}

.pt-top img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.pt-box:hover {
    transform: scale(1.2);
}

.pt-cate {
    position: relative;
    display: block;
    width: 300px;
    height: 200px;
}

.pt-work {
    position: relative;
    display: inline-block;
    background-color: #333;
    color: #eee;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 25px;
    padding: 5px;
}

.pt-work2 {
    position: relative;
    display: inline-block;
    background-color: #E6252F;
    color: #eee;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 15px;
    padding: 5px;
}

.pt-work3 {
    position: relative;
    display: inline-block;
    background-color: green;
    color: #eee;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 15px;
    padding: 5px;
}
.pt-work4{
    position: relative;
    display: inline-block;
    background-color: teal;
    color: #eee;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 15px;
    padding: 5px;
}

.pt-cate>h3 {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-left: 25px;
    font-size: 20px;
}

.pt-cate>span {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #222;
}

.pt-cate>a {
    position: relative;
    display: block;
}

.pt-bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 30px;
    border-top: 1px dotted #000;
}

.pt-bottom>a {
    position: relative;
    flex-basis: 115px;
}

.pt-bottom>a>i {
    font-size: 15px;
    margin-right: 10px;
}

.pt-bottom>a:last-child {
    color: coral;
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    top: 95%;
    transform: translateX(-50%);
}


/* life */
.life {
    position: relative;
    display: block;
    width: 100%;
    background-color: #f6f6f6;
    margin-top: 750px;
    padding-bottom: 100px;

}


.polaroid {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
    float: left;
}

.caption {
    font-size: 1.125rem;
    text-align: center;
    line-height: 2em;
}

.item-wrap {
    position: relative;
    display: block;
    width: 1200px;
}

.item {
    display: inline-block;
    margin-top: 2rem;
    filter: grayscale(100%);
    width: 24%;
    height: auto;
}

.item img {
    width: 300px;
}

.item .polaroid:before {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 0.35s;
}

.item:nth-of-type(4n+1) {
    transform: scale(0.8, 0.8) rotate(5deg);
    transition: all 0.35s;
}

.item:nth-of-type(4n+1) .polaroid:before {
    transform: rotate(6deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    right: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item:nth-of-type(4n+2) {
    transform: scale(0.8, 0.8) rotate(-5deg);
    transition: all 0.35s;
}

.item:nth-of-type(4n+2) .polaroid:before {
    transform: rotate(-6deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    left: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item:nth-of-type(4n+4) {
    transform: scale(0.8, 0.8) rotate(3deg);
    transition: all 0.35s;
}

.item:nth-of-type(4n+4) .polaroid:before {
    transform: rotate(4deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    right: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item:nth-of-type(4n+3) {
    transform: scale(0.8, 0.8) rotate(-3deg);
    transition: all 0.35s;
}

.item:nth-of-type(4n+3) .polaroid:before {
    transform: rotate(-4deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    left: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item:hover {
    filter: none;
    transform: scale(1, 1) rotate(0deg) !important;
    transition: all 0.35s;
}

.item:hover .polaroid:before {
    content: '';
    position: absolute;
    z-index: -1;
    transform: rotate(0deg);
    height: 90%;
    width: 90%;
    bottom: 0%;
    right: 5%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transition: all 0.35s;
}

/* contact */
.contact {
    position: relative;
    display: block;
    background-color: #ddd;
}

.contact>.container {
    position: relative;
    display: block;
    height: 250px;

}

.contact img {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    display: block;
    width: 200px;
    height: 200px;
}

.footer-icon {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 200px;
}

.footer-icon>a {
    position: relative;
    display: inline-block;
    padding-right: 15px;
    font-size: 30px;
}

.fa-github {
    color: #000
}

.fa-envelope {
    color: #fff;
}

.fa-comment {
    color: rgba(255, 255, 0, 0.623);
}

.f-copy {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 50px;
}