#header{
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: border .3s, background-color .3s;
}

#header.scroll{
    border-bottom: 1px solid transparent;
    background-color: #fff;
}

.header_center{
    width: 90%;
    min-width: 1300px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_center>a{
    display: flex;
    align-items: center;
    justify-content: center;
}

#header.scroll .header_center>a img{
    content: url(../images/logo_hover.png);
}

.pd_btn_menu{
    display: flex;
    align-items: center;
    gap: 0 45px;
}

.pd_itd{
    border: 1px solid #fff;
    padding: 5px 17px;
    border-radius: 50px;
    font-size: 15px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
    transition: border .3s, color .3s;
}

#header.scroll .pd_itd{
    border: 1px solid #83ccd1;
    color: #83ccd1;
}

.menu_icon{
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu_icon span{
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 0;
    transition: width .3s, background-color .3s;
}

#header.scroll .menu_icon span{
    background-color: #83ccd1;
}

.menu_icon span:first-child{
    width: 30px;
    top: 0;
}

.menu_icon span:nth-child(2){
    width: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.menu_icon span:last-child{
    width: 20px;
    bottom: 0;
}

.menu_icon:hover span{
    width: 100%;
}




































/* mobile */
@media screen and (max-width: 767px) {

    #header{
        height: 60px;
    }
    
    .header_center{
        min-width: auto;
    }
    
    .header_center>a{
        width: 150px;
    }

    .header_center>a img{
        width: 100%;
        content: url(../images/m_logo.png);
    }

    #header.scroll .header_center>a img{
        content: url(../images/m_logo_hover.png);
    }    
    
    .pd_itd{
        padding: 5px 13px;
        font-size: 12px;
        cursor: inherit;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    #header{
        height: 60px;
    }
    
    .header_center{
        min-width: auto;
    }
    
    .header_center>a{
        width: 150px;
    }

    .header_center>a img{
        width: 100%;
        content: url(../images/m_logo.png);
    }

    #header.scroll .header_center>a img{
        content: url(../images/m_logo_hover.png);
    }    
    
    .pd_itd{
        padding: 5px 13px;
        font-size: 12px;
        cursor: inherit;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
    
    .header_center{
        min-width: auto;
    }
    
}