header{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    position:sticky;
    top:0px;
    z-index: 10;
    transition: all 0.4s ease-in-out;
}
.headTop{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: end;
    gap:30px;
    border-bottom:1px solid #45393930;
    padding:10px 150px;
    /*양 사이드 여백 150px 고정*/
}
.headTop>.user{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap:10px;
    font-size: 18px;
}
.headTop>.user>img{
    width: 30px;
}
.headTop .username{
    font-weight: 600;
}
.headTop>.logOut>p{
    background-color: var(--orange01);
    border:1px solid #ececec;
    border-radius: 30px;
    color:#fff;
    padding:8px 0px;
    width: 140px;
    text-align: center;
    cursor: pointer;
    transition:all 0.3s ease-in-out;
}
.headTop>.logOut>p:hover{
    background-color: #fff;
    color:var(--orange01);
}
.headBot{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items:center;
    justify-content: space-between;
    padding:10px 150px;
    /*양 사이드 여백 150px 고정*/
}
.headBot>.logoBox{
    flex:1;
    display: flex;
    flex-flow:row nowrap;
    justify-content: center;
}
.headBot>.logoBox img{
    width: 200px;
}
.headBot>nav{
    flex:3;
}
.headBot>nav>ul{
    width: 100%;
    padding:10px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
}
.headBot>nav>ul>li{
    text-align: center;
}
.headBot>nav>ul>li>a{
    display: block;
    padding:10px 5px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.headBot>nav>ul>li>a::before{
    content: "";
    background-color: var(--orange01);
    height: 2px;
    border-radius: 5px;
    position: absolute;
    left:0;
    bottom:0;
    transform: scaleX(0);
    width: 100%;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.headBot>nav>ul>li>a:hover::before{
    transform: scaleX(1);
}
.headBot>nav>ul>li>a.clicked{
    color:var(--orange01);
}
.headBot>nav>ul>li>a.clicked::before{
    transform: scaleX(1);
}
.headBot>nav>ul>li>a>span::after{
    content: "";
    width: 100%;
    height: 3px;
    background-color:var(--orange01);
}
.headBot>.searchBox{
    flex:1;
    display: flex;
    flex-flow:row nowrap;
    justify-content: end;
    position: relative;
}
.headBot>.searchBox>input[type="search"]{
    width: 260px;
    padding:8px 20px;
    padding-right: 50px;
    border-radius:20px;
    outline: none;
    border:1px solid #ececec;
}
/*search input 기본 css 삭제*/
/* IE의 경우 */
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal{
    display:none;
}
/* 크롬의 경우 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration{
    display:none;
}
.headBot>.searchBox>img{
    position:absolute;
    right:18px;
    top:50%;
    transform: translateY(-50%);
    width: 22px;
    cursor: pointer;
}
@media screen and (max-width:1279px) {
    .headBot{
        padding:10px 50px;
    }
}