.marquee_outer {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* 헤더보다 위에 표시되도록 z-index 값 설정 */
}

.marquee_inner {
    display: flex;
    animation: marquee 10s linear infinite;
}

.marquee_text {
    padding: 0 2rem;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.header {
    position: sticky;
    top: 0; 
    left: 0;
    height: 85px;
    width: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 5px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    /* z-index: 999;  */
    background-color: #fff;
}

.header > div {
    max-width: 1400px;
    margin: 0 auto;
}

.header .header_account {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
}

.header .header_account img {
    width: 230px;
}

.header .header_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 800px) {
    div.header{
        height: 50px;
    }

    div.header .header_account img {
        width: 120px;
    }
    
    
}