@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* common */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
</style>
html,
body{
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
*{
    text-decoration: none;
}

.inner{
    width: 1100px;
    margin: 0 auto;
}
@media (max-wid: 768px){
    .inner{
        width: 90%;
    }
}
/* header */
header{
    background-color: #000000;
    height: 70px;
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 10; 
}
header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    position: relative;
}
.logo{
    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;

}
.menu-toggle{
    font-size: 30px;
    cursor: pointer;
    display: none;
        
}
header .inner ul{
    display: flex;
}
header .inner ul > li{
    margin-left: 20px;
}
header .inner ul > li > a{
    color: #ffffff
}
header .inner ul > li > a:hover{
    color: #951c1c;
}
@media (max-width:768px){
    header{ 
        height: 50px;
    }
    .logo{
        line-height: 50px;
        padding-left: 10px;
    }
    .menu-toggle{
        display: block;
        padding-right: 10px;

    }
    .nav-links{
        background-color: #041365;
        flex-direction: column;
        position: absolute;
        width: 100%;
        top: 50px;
        transition: max-height 0.3s ease-in-out;
        max-height:0;
        overflow: hidden;
        


    }
    .nav-links.show{
        max-height: 300px;
    }
    header .inner ul{
        flex-direction: column;
        align-items: center;
    }
    .nav-links li{
        padding: 20px 0;
    }
}

/* about  */
.about{
    height: 1000px;
    overflow-x: hidden;
    background: url("../images/carboib.jpg");
    background-repeat: no-repeat;
    ba
    
}
.about #about_contain{
    width: 100%;
    height: 1000px;
    background-color: rgb(0, 132, 255);
    
}
.about_wrap{
    position: relative;
    top: 300px;
    text-align: center;
    
}
.img_wrap{
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 100px;
    margin: 0 auto;
    position: relative;

}
.img_wrap img{
    width: 250px;
    height: 250px;




}
.about_imgany{
    -webkit-animation: about_img 2s infinite linear;
    animation: about_img 2s infinite linear;
}
/* 
-webkit-  사파리 크롬 브라우저 적용
-o-       오페라 브라우저 적용
-moz-     파이어폭스 브라우저 적용
-ms-       익스플로러 브라우저 적용
*/

@keyframes about_img{
    0%{
        top: 0;
    }
    50%{
        top: -25px;
    }
    100%{
        top: 0;
    }


}
.about_name{
    color: #000000;
    font-size: 35px;
    margin: 15px 0;
    transition: all 0.4s ease-in-out;

    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;

    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;

}
.about_nameany{
    -webkit-animation: about_name 2s 1 ease-in;
    animation: about_name 2s 1 ease-in;
}

@keyframes about_name{
    0%{
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
    }
    100%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
}
.about_job{
    color: #000000;
    margin-bottom: 40px;
    font-weight: 400px;
    font-style: italic;
    transition: all 0.4s ease-in-out;

    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.about_jobany{
    -webkit-animation: about_job 2s 1 ease-in;
    animation: about_job 2s 1 ease-in;

}

@keyframes about_job{
    0%{
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
    }
    100%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.about_text{
    color: #fff;
}

@media(max-width:1024px){
    .about{
        height: 800px;
        
    }
    .about_wrap{
        top: 200px;
    }
}



/* skills */
.skills_container{
    background-color: rgb(0, 0, 0);
   
}
.skills{
    
    background-color: rgb(0, 0, 0);
    width: 100%;
    max-width: 900px;
    overflow-x: hidden;
    padding-bottom: 140px;
}
.skills .title{
    color: #ffffff;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    font-size: 45px;
    padding-top: 140px;

}
.skills>p {
    color: #951c1c;
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    padding-top: 10px;
    padding-bottom: 40px;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.skill{
    padding:10px 40px;
}
.skill_name{
    font-size: 25px;
    font-weight: 700;
    color: #951c1c;
    text-transform: uppercase;
    margin: 25px 0 5px 0;
}
.skill_bar{
    height: 35px;
    background-color: #c9c9c9;
}
.skill_per{
    height: 35px;
    color: fff;
    font-weight: bold;
    position: relative;
    width: 100%;
    opacity: 0;
    transition: width 2.5s, opacity 2.5s;
}
.skill_per::before{
    content: attr(per);
    position: absolute;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 20px;
    top: -50px;
    right: 0;
    padding: 8px 10px;
    transform: translateX(50%);
    transition: opacity 2.5s;
    opacity: 0;
}
.skill_per::after{
    content: "";
    position: absolute;
    background-color: #fff;
    width: 10px;
    height: 10px;
    top: -20px;
    right: 0;
    transform: translateX(50%) rotate(45deg);
    transition: opacity 2.5s;
    opacity: 0;
}
.skill_per.fillcolor{
    width: 100%;
    opacity: 1;
    animation: fillcolor 2s 1 forwards;
}
.skill_per.fillcolor::before, 
.skill_per.fillcolor::after{
    opacity: 1;
}
@keyframes fillcolor{
    from{
        width: 0%;
    }
    to{
        width: 100%;
    }
}
@media(max-width: 1024px){
    .skill{
        padding: 0 40px;
    }
    .skills .title{
        padding-top: 75px;

    }
    
}











/* portfolio */
.portfolio{
    
    background-color: rgb(187, 188, 187);
}
.portfolio .title{
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;   
    padding-top: 140px;
    font-size: 45px;
    text-align: center;

}
.portfolio>p{
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    padding: 10px;
    padding-bottom: 40px;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;  
}
.portfolio .port_wrap{
    width: 100%;
    overflow: hidden;
}
.portfolio .port_box_contain{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.portfolio .port_box_contain .port_box{
    margin: 15px;
    width: 400px;
    height: 600px;
    flex-wrap: wrap;
    display: none;
}
.portfolio .port_box_contain .port_box img{
    width: 100%;
}
.portfolio .port_box_contain .port_box:last-child{
    margin-bottom: 150px;
}
.portfolio .port_button{
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 50px;
    font-weight: bolder;
    cursor: pointer;
    margin-top: 50px;
    padding-bottom: 180px;

}
.portfolio .port_button::after{
    content: "더보기" ;
    position: absolute;
    width: 300px;
    height: 50px;
    background-color: rgb(0,132,255);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
@media (max-width:768px){
    .portfolio .title{padding-top: 75px;}
    .portfolio .port_button{margin-top: 5px; padding-bottom: 110px;}
}

/* contect */
.contact{
    height:600px;
    background-color: rgb(0, 0, 0);
    color: #ffffff;



}
.contact .title{
    text-align: center;
    font-size: 45px;
    padding-top: 140px;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;  
}
.contact>p{
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    padding-top: 10px;
    padding-bottom: 40px;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;  

}
.contact .contact_wrap{
    text-align: center;
}
.contact img{
    width:200px;
}
@media(max-width:768px){
    .contact{
        height: 850px;
    }
    .contact .title{
        padding-top: 75px;
    }
}
@media(max-width:360px){
    .contact{
        height: 1450px;
    }
    .contact .title{
        padding-top: 75px;
    }
}
@media(max-width:400px){
    .contact{
        height: 1450px;
    }
    .contact .title{
        padding-top: 75px;
    }
}