body.scrollfix{
    overflow-y: hidden;
}

.header{
    position: fixed; width: 100%; top: 0; left: 0; z-index: 11;
    
}
.header .inner{
    display: flex; justify-content: space-between; height: 100px; align-items: center; max-width: none;
} 
.header .logo a:first-child{
    display: block;
}
.header .logo a:last-child{
    display: none;
}

.header ul.nav{
    display: flex; justify-content: center; gap: 20px; border-bottom: 1px solid #000;
    padding-left: 10px; padding-bottom: 10px;
}
.header ul.nav li{
    font-family: 'Metal', serif;
    text-transform: uppercase;
    font-size: 1.4vw; 
    color: #000;
}
.header ul.nav li.active{
    color: #ffa600; 
}

.header.active{} 
.header.active .logo a:first-child{
    display: none;
}
.header.active .logo a:last-child{
    display: block;
}
.header.active ul.nav{
     border-bottom: 1px solid #fff;
}
.header.active ul.nav li{
    font-family: 'Metal', serif;
    text-transform: uppercase;
    font-size: 1.4vw; 
    color: #fff;
}
.header.active ul.nav li.active{
    color: #ffa600; 
}

/* 모바일 메뉴 버튼 */
.mo-menu-btn{
    cursor: pointer;
    z-index: 11;
    display: none;
}
.mo-menu-btn .bar{
    width: 35px;
    height: 3px;
    background-color: #ffa600;
    position: relative;
}
.mo-menu-btn .bar:nth-child(2){
    margin: 8px 0;
}
.mo-menu-btn.active .bar{background-color: #fff;}
.mo-menu-btn.active .bar:nth-child(1){
    transform: rotate(45deg);
    top: 3px;
}
.mo-menu-btn.active .bar:nth-child(2){
    display: none;
}
.mo-menu-btn.active .bar:nth-child(3){
    transform: rotate(-45deg);
}
.side-menu{
    position: fixed;
    width: 100%;
    max-width: 400px;
    top: 0;
    right: -100%;
    height: 100vh;
    background-color: #000;
    padding: 60px 0;
    font-size: 20px;
    transition: 0.3s;
    z-index: 1;
}
.side-menu.active{
    right: 0;
}    
.side-menu ul{}
.side-menu ul li{
    border-bottom: #ccc;
}
.side-menu ul li a{
    display: flex;
    padding: 30px;
    gap: 20px;
    align-items: center;
    font-family: 'Metal', serif;
    text-transform: uppercase;
    color: #fff;
    
}

@media screen and (max-width: 1024px){

}
@media screen and (max-width: 768px){
    .header ul.nav{
        display: none;
    }
    .mo-menu-btn{
        display: block;
    }
}


/* home */

.home{
    height: 100vh;
    background-color: #F0F0F0;
    overflow: hidden;
}
.home .inner{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: none;
}
.home .home-circle{
    position: absolute;
    width: 18%;
    min-width: 300px;

}
.home .home-circle img{
    width: 100%;
}
.home .inner .top-circle{
    top: 12%; 
    animation: home-Circle1 15s infinite;
}
.home .inner .btm-circle{
    bottom: 10%; 
    animation: home-Circle2 15s infinite;
}
.home .inner h1{
    font-size: 14vw;
    font-family: "kudryashev-d-excontrast-sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    line-height: 1.2;
    color: #000;
   
}
@keyframes home-Circle1 {
    0%{
        left: 0%;
        transform: rotate(0deg);
    }
    50%{
        left: 50%;
        transform: rotate(365deg);
    }
    100%{
        left: 0%;
        transform: rotate(0deg);
    }
}
@keyframes home-Circle2 {
    0%{
        right: 0%;
        transform: rotate(0deg);
    }
    50%{
        right: 50%;
        transform: rotate(365deg);
    }
    100%{
        right: 0%;
        transform: rotate(0deg);
    }
}

/* about */
.about{
    padding: 15rem 0;
   
}
.about-top{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.about-top .about-img{
    width: 30%;
}
.about-top .about-img img{
    width: 100%;
}

.about-top p{
   line-height: 1.6;
   
}
/* about 이어서 education~ */
.about-btm{
    display: left;
    align-items: left;
    justify-content: space-between;
    padding: 15rem 0;

}
.about-btm .title{
    
    margin-top: 10rem;
    padding: 2rem 0;
}
.about-btm ul{

}
.about-btm ul li{
     line-height: 2;
 }
.about-btm-layout{
    display: flex;
    justify-content: space-between;
    
}
.about-btm-contents.about-skill{
    width: 60%;  
}
.about-btm-contents.about-skill ul{
    display: flex;
}
.about-btm-contents.about-skill ul li{width: 20%; max-width: 80px;}
.about-btm-contents.about-skill ul li img{width: 100%;}
.about-btm-contents.about-license{
    width: 40%;
    
} 

@media screen and (max-width: 1024px){
    .about-top{
        flex-direction: column;
    }
    .about-img{
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }
    .about-text{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    .about-btm{
        flex-direction: column;
        gap: 30px;
    }
    .about-btm .contbox:not(:last-child){
        border: none;
    }
}
    
    
   

 /* portfolio */
.portfolio{
    padding: 15rem 0;
    
}
.tab-list{
 display: flex; justify-content: center; gap: 10px; margin-bottom: 95px;
 
} 
.tab-list li{
padding: 0 20px; border: 1px solid #fff; height: 40px;
display: flex; align-items: center; border-radius: 30px;
cursor: pointer;
font-family: "Pretendard Variable"; font-weight: 200; font-style: normal;

}
.tab-list li.active{
background-color: #fff; color: #000;
font-family: "Pretendard Variable"; font-weight: 400; font-style: normal;
}
.tab-content{
position: relative; margin-bottom: 20px;
}

.tab-content ul li .txtbox{
    width: 60%;
}
.tab-content ul li .txtbox h1{
   margin-bottom: 50px;
   font-family: "Pretendard Variable"; font-weight: 500; font-style: normal;
   font-size: 2.8rem;
   color: #fff;
}
.tab-content ul li .txtbox h2{
   margin-bottom: 50px;
   
}
.tab-content ul li .txtbox p{
   margin-bottom: 50px;
   font-family: "Pretendard Variable"; font-weight: 400; 
   
}
.tab-content ul li .txtbox p span{
    font-family: "Pretendard Variable"; font-weight: 100;
    display: inline-block;
    margin-top: 20px; 
}
   
.tab-content ul li .txtbox .skills h3{
    font-family: "Pretendard Variable"; font-weight: 400; 
    margin-bottom: 20px;
    
}
.tab-content ul li .txtbox .skills ul{display: flex; gap: 10px;}
.tab-content ul li .txtbox .skills ul li{height: 50px;}
.tab-content ul li .txtbox .skills ul li img{height: 100%;}
.tab-content ul li .right-cont{
position: relative; width: 50%; text-align: right;
}
.tab-content ul li .imgbox{width: 100%; position: relative;}
.tab-content ul li .imgbox::after{
    content: "";
    display: block;
    padding-bottom: 60%;
}
.tab-content ul li .imgbox img{
width: 100%; height: 100%; position: absolute; top: 0; object-fit: cover; left: 0;
}
.tab-content ul li{
    display: flex;
    justify-content: space-between;
}
.right-cont .view-btn{
    padding: 0 20px;
    align-items: center;
    border: 1px solid #fff;
    height: 30px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-top: 50px;
    transition: 0.3s;
}
.right-cont .view-btn:hover{
    background: #fff;
    color: #000;
}
.right-cont .view-btn p {
    font-family: "Pretendard Variable"; font-weight: 400; 
}
.tab-content ul li .modal-view{display: none;}
/* modal 영역 */
.modal{
    position: fixed; background-color: rgba(0,0,0,.5); top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 0; overflow: hidden; transition: 0.5s; z-index: 11;
}
.modal.active{height: 100%;}
.modal .modal-cont{display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; transform: scale(0); transition: 0.5s;}
.modal .modal-cont.active{transform: scale(1);}
.modal .view-player{width: 95%; max-width: 1600px; position: relative;}
.modal .view-player::after{content: ""; padding-bottom: 56.25%; display: block;}
.modal .view-player iframe{position: absolute; width: 100%; height: 100%; border: none;}
.modal .view-img{width: 90%; max-width: 95%; max-height: 90%; overflow-y: scroll; font-size: 0; padding-right: 10px;}
.modal .view-img img{width: 100%;}
.modal .view-img::-webkit-scrollbar {width: 10px;}
.modal .view-img::-webkit-scrollbar-thumb {background: #ffa600; border-radius: 10px;}
.modal .view-img::-webkit-scrollbar-track {background: #fff; border-radius: 10px;}

.modal-view{display: flex;}
.modal-view .view-player{position: relative; width: 70%;}
.modal-view .view-player::after{padding-bottom: 56.25%; content: ""; display: block;}
.modal-view .view-player iframe{position: absolute; width: 100%; height: 100%; border: none;}
.modal-view .info{width: 30%; background-color:#fff; padding: 30px;}
.modal-view .info h1{font-size: 30px;}
.modal-view .info h2{font-size: 20px;}
.modal-view .info h3{font-size: 20px;}

@media screen and (max-width: 1024px){
  
}
@media screen and (max-width: 768px){
    .portfolio{padding: 0;}
    .tab-content ul li{
        flex-direction: column-reverse;
    }
    .tab-content ul li .right-cont{width: 100%; margin-bottom: 30px;}
    .tab-content ul li .txtbox{width: 100%;}

}

/* contact */
.contact{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact .inner{
    max-width: none;
    display: flex;

    justify-content: space-between;
    padding-right: 0;

}

.contact-tittle{
    position: relative;
    right: -2%;

}
.contact-tittle h1{
    font-size: 12vw;
    font-family: "kudryashev-d-excontrast-sans", sans-serif;
    text-align: right;
    position: relative;
    color: #ffa600;
    
  
}
.contact-text{
    padding-left: 4%;
}

.contact-email p{
    color: #fff; font-size: 3rem;
    font-family: "ivymode", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    
}
.contact-email p span{
    color: #fff; font-size: 3rem;
    font-family: "ivymode", sans-serif;
    font-weight: 100;
    font-style: normal;
}
.contact-kako p{
    color: #fff; font-size: 3rem;
    font-family: "ivymode", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
}
.contact-kako p span{
    color: #fff; font-size: 3rem;
    font-family: "ivymode", sans-serif;
    font-weight: 100;
    font-style: normal;
}


@media screen and (max-width: 1024px){


}

@media screen and (max-width: 768px){
    .contact .inner{
        flex-direction: column;}
}