.gnb{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--HEADER_HEIGHT);
    position: absolute;
    
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    transition: height 0.3s ease;
    color: #fafafa;
}
.gnb .wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.gnb .wrapper .btn-hamburger{
    font-size: 40px;
    color: #fafafa;
}

.gnb .wrapper .logo .img-logo{
    height: 100%;
    object-fit: contain;
}






/** S : 해상도 분기 - 1 :: 기기의 가로 기준 해상도 */

/* 모바일 + 태블릿 */
@media (max-width: 1199px){
  

}

/* 모바일 - 저해상도, 구형 스마트폰 */
@media (max-width: 359px){
   
}

/* 모바일 - 일반 (기본 베이스) */
@media (min-width: 360px) and (max-width: 767px){
}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1199px){

    
    
}


/* PC - 일반 (기본 베이스) */
@media (min-width: 1200px) {


    

}

/* PC - 2k (qhd 기준 2560px * 1440px) */
@media (min-width: 2400px) {
}

/* PC - 4k (uhd 기준 3840px * 2160px)*/
@media (min-width: 3000px) {
}

/** E : 해상도 분기 - 1 :: 기기의 가로 기준 해상도 */


/** S : 해상도 분기 - 2 :: 기기의 가로/세로 해상도, 화면 방향 기준 */

/* 모바일 + 태블릿 */
@media (max-width: 1199px), (orientation: portrait), (min-width: 3841px), (min-height: 2161px) { 




}

/* 모바일 - 일반 (기본 베이스) */
@media (min-width: 1px) and (max-width: 767px) {

    

}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1199px), (min-width: 768px) and (orientation: portrait), (min-width: 3841px), (min-height: 2161px) { 


    
}



/* PC - 일반 (기본 베이스) */
@media (min-width: 1200px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {

 
}

/* PC - 2k (qhd 기준 2560px * 1440px) */
@media (min-width: 2400px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {
}

/* PC - 4k (uhd 기준 3840px * 2160px)*/
@media (min-width: 3000px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {
}

/** E : 해상도 분기 - 2 :: 기기의 가로/세로 해상도, 화면 방향 기준 */