@charset="UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

/*
font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Noto Serif', serif;
*/
* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-style: normal;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

button:focus {
    border: none;
    outline: none;
}

::-moz-selection {
    background: #B9CEED;
    color: #fff;
}

::selection {
    background: #B9CEED;
    color: #fff;
}

.wrap {
    width: 100%;
    overflow: hidden;
}

.loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    background: url(/img/loading.gif)#B9CEED center no-repeat;
}

#lnb > .contents {
    padding: 0px 15px;
}

.footer > .contents {
    padding: 0px 15px;
}

.contents {
    width: 1140px;
    padding: 100px 15px;
    margin: 0 auto;
}

.top {
    width: 45px;
    height: 45px;
    background: #B9CEED;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 8px;
    border: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    z-index: 50;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.top:hover {
    background: #3E5DFF;
}

.arrow_top {
    width: 100%;
    height: 8px;
    background: url(/img/arrow_top.png) center no-repeat;
    margin-bottom: 3px;
}

.lnb {
    position: fixed;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 100;
    top: -1px;
}

.lnb:hover {
    background: #B9CEED;
}

.logo {
    float: left;
}

.logo > h1 > button {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 60px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.logo_img {
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
    background: url(/img/logo.png) center no-repeat;
    background-size: contain;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.logo:hover .logo_img {
    background: url(/img/logo_over.png) center no-repeat;
    background-size: contain;
}

.nav {
    float: right;
}

.nav > ul > li {
    float: left;
    height: 60px;
}

.nav > ul > li > button {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 60px;
    padding: 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.nav > ul > li:hover button {
    color: #3E5DFF;
}

.logo:hover button {
    color: #3E5DFF;
}

.active {
    background: #B9CEED;
}

.logo > h1 > button {
    color: #fff;
}

.nav > ul > li > button {
    color: #fff;
}

.nav > ul > li:hover > button {
    color: #3E5DFF;
}

.logo:hover button {
    color: #3E5DFF;
}


.m_lnb {
    width: 100%;
    height: 60px;
    background: #B9CEED;
    position: fixed;
    top: -1px;
    left: 0;
    z-index: 10;
    display: none;
}



.m_lnb > .logo {
    padding: 0 15px;
}

.menu {
    position: absolute;
    top: 58px;
    right: 0px;
    width: 100%;
    max-height: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    z-index: 20;
    background-color: #B9CEED;
    font-size: 0;
}

.menu button {
    display: none;
}


.menu_wrap ul li button {
    color: #fff;
    height: 40px;
    line-height: 40px;
    background-color: #B9CEED;
    width: 100%;
    text-align: left;
    padding: 0 15px;
    margin-top: -1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
}


.burger_icon {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 40;
    padding: 8px 0;
    top: 20px;
    right: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    margin: 0;
}

.burger_icon .burger_sticks {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
    width: 26px;
}



.burger_icon .burger_sticks:before,
.burger_icon .burger_sticks:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 100%;
}

.burger_icon .burger_sticks:before {
    top: 8px;
}

.burger_icon .burger_sticks:after {
    top: -8px;
}

.burger_check {
    display: none;
}

.burger_check:checked ~ .menu {
    max-height: 160px;

}

.burger_check:checked ~ .menu_wrap {
    height: 160px;
}

.burger_check:checked ~ .menu button {
    display: block;
}

.burger_check:checked ~ .burger_icon .burger_sticks {
    background: transparent;
}

.burger_check:checked ~ .burger_icon .burger_sticks:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.burger_check:checked ~ .burger_icon .burger_sticks:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    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;

}

#home {
    width: 100%;
    height: 800px;
    position: relative;
    margin-top: -1px;
    min-width: 280px;

}

.home_bg {
    width: 100%;
    height: 800px;
    background: url(/img/main_video.png) center no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #000;
}
#vid{
        position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    object-fit: cover;
    opacity: 0.9;
}
.home_text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home_text > .italic {
    font-family: 'Noto Serif', serif;
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}

.home_text > .bold {
    font-family: 'Montserrat', sans-serif;
    font-size: 75px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.home_text > .small {
    font-family: 'Noto Sans KR', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}

.btn_more {
    width: 220px;
    height: 60px;
    background: #B9CEED;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn_more:hover {
    color: #3E5DFF;
}

#about {
    background: #f5f7f8;
    width: 100%;
    height: 970px;
    margin-top: -1px;
    min-width: 280px;
}

.title {
    width: 100%;
}

.title > .title_bold {
    text-align: center;
    font-family: 'Montserrat','Noto Serif', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #b9ceed;
    padding-bottom: 10px;
}

.title > .title_italic {
    font-family: 'Noto Serif', serif;
    color: #7E868D;
    font-size: 16px;
    padding-bottom: 70px;
    text-align: center;
}

.contents_wrap {
    width: 100%;
    font: 0;
}

.content_left {
    width: 510px;
    height: 510px;
    display: inline-block;
    vertical-align: top;
}

.img_area {
    width: 100%;
    height: 100%;
    position: relative;
}

.img_line {
    width: 480px;
    height: 480px;
    border: solid 3px #b9ceed;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img_bg {
    width: 480px;
    height: 480px;
    background: url(/img/profile1.jpg)#b9ceed center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;

}

.content_right {
    width: 510px;
    height: 510px;
    display: inline-block;
    vertical-align: top;
    padding-left: 80px;
}

.text_bold {
    font-family: 'Montserrat','Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #2F2725;
    margin-bottom: 20px;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
    width: 100%;
}

.text_ko {
    font-family:'Montserrat', 'Noto Sans KR','Noto Sans KR', sans-serif;
    color: #7E868D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}

.skill_area .text_ko {
    margin-bottom: 0;
}


#skill {
    background: #fff;
    width: 100%;
    height: 970px;
    font-size: 0;
    margin-top: -1px;
    min-width: 280px;
}

.skill_area {
    width: 33.333333%;
    display: inline-block;
    vertical-align: top;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 30px;
    height: 310px;
}

.icon_area {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 20px;
}

.icon_area.blue {
    background: #b9ceed;
}

.icon_area.purple {
    background: #E0C3FC;
}

.icon_area.white {
    background: #fff;
}

.icon1 {
    background: url(/img/icon_1.png)#b9ceed center no-repeat;
    background-size: cover;
}

.icon2 {
    background: url(/img/icon_2.png)#E0C3FC center no-repeat;
    background-size: cover;
}

.icon3 {
    background: url(/img/icon_3.png)#b9ceed center no-repeat;
    background-size: cover;
}

.icon4 {
    background: url(/img/icon_4.png)#E0C3FC center no-repeat;
    background-size: cover;
}

.icon5 {
    background: url(/img/icon_5.png)#b9ceed center no-repeat;
    background-size: cover;
}

.icon6 {
    background: url(/img/icon_6.png)#E0C3FC center no-repeat;
    background-size: cover;
}

.btn_view .icon_area {
    background: url(/img/icon_view.png)#fff center no-repeat;
    background-size: cover;
}

.btn_goSite .icon_area {
    background: url(/img/icon_go.png)#fff center no-repeat;
    background-size: cover;
}

#portfolio {
    background: #f5f7f8;
    width: 100%;
    min-height: 970px;
    font-size: 0;
    margin-top: -1px;
    min-width: 280px;
}

.portfolio_area {
    width: 33.333333%;
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 30px;

}

.portfolio {
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgb(0 0 0 / 15%);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 15%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.portfolio:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 5px 5px 30px rgb(0 0 0 / 25%);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 25%);
}

.thumb {
    width: 100%;
    background: #eee;
    position: relative;
}
.thumb img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}




.portfolio:hover .portfolio_inner {
    opacity: 1;
}

.portfolio:hover .portfolio_inner .inner {
    opacity: 1;
}

.portfolio:hover .portfolio_inner .inner > a {
    opacity: 1;
}

.portfolio_inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(190, 216, 255, 0.9);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.innerWrap{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio_inner .inner {
    width: 80px;
    text-align: center;
    display: inline-block;
    margin: 0px 15px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.portfolio_inner .inner > a {
    display: block;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.portfolio_inner .icon_area {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
}

.portfolio_title {
    width: 100%;
    height: 100px;
    padding: 24px 14px;
}

.portfolio_title > .text_bold {
    margin-bottom: 5px;
}

.portfolio_title > .text_ko {
    margin-bottom: 0px;
}

.footer {
    background: #b9ceed;
    width: 100%;
    height: 90px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 90px;
    margin-top: -1px;
    min-width: 280px;

}

.mo_br {
    display: none;
}

.hideme {
    opacity: 0;
}

.hideme1 {
    opacity: 0;
}

@media all and (max-width:1140px) {
    .lnb {
        display: none;

    }

    .m_lnb {
        min-width: 280px;
        display: block;
    }

    .contents {
        width: 100vw;
        min-width: 280px;
        padding: 100px 15px;
        margin: 0 auto;
    }

    #home {
        margin-top: 59px;
        height: 600px;
    }

    .home_bg {
        height: 660px;
    }

    .home_text {
        min-width: 280px;
        padding-right: 15px;
    }

    .home_text > .bold {
        font-size: 50px;
    }

    .home_text > .italic {
        font-size: 22px;
    }

    .title > .title_italic {
        padding-bottom: 50px;
    }

    #about {
        height: auto;
    }

    .content_right {
        width: 350px;
    }


    #skill {
        height: auto;
    }

    .skill_area {
        width: 50%;
        height: auto;
    }

    #portfolio {
        height: auto;
    }

    .portfolio_area {
        width: 50%;
        height: auto;
    }



    .portfolio_inner {
        padding-top: 44px;
    }

    .mo_br {
        display: block;

    }
}

@media all and (max-width:900px) {
    .contents {
        width: 100vw;
        min-width: 280px;
        padding: 50px 15px;
        margin: 0 auto;
    }

    .content_left {
        min-width: 250px;
        width: 90vw;
        height: 90vw;
        margin-bottom: 50px;
    }

    .img_line {
        width: 85vw;
        height: 85vw;
    }

    .img_bg {
        width: 85vw;
        height: 85vw;
    }

    .content_right {
        width: 100%;
        min-width: 280px;
        height: auto;
        padding-left: 0;
    }

}

@media all and (max-width:600px) {


    .skill_area {
        width: 100%;
        height: auto;
    }

    .portfolio_area {
        width: 100%;
    }

    .portfolio_inner .inner {
        margin: 0 10px;
    }
    .page2 .text:last-child{
        max-width: 200px;
    }
}
