header {
    position: fixed;
    width: 100%;
    padding: 16px 20px 0px;
    z-index: 1000;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1368px;
    margin: auto;
    box-shadow: 0px 10px 10px #0000000D;
    border: 1px solid #FFFFFF99;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 20px;
}
.header-content > h1 {
    height: 60px;
    width: 92px;
    overflow: hidden;
}
.header-content > div {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-content > div > a > img {
    width: 44px;
    height: 44px;
}
.header-content > div > a:nth-child(1) {
    display: flex;
    font-size: 16px;
    font-family: 'InterTight-Regular';
    color: #222222;
    gap: 24px;
    align-items: center;
}
.header-content > div  a::after {
    content: ' ';
    height: 44px;
    width: 1px;
    background-color: #707070;
}
.logo-header {
    width: 92px;
    height: 60px;
}
@media (max-width: 769px) {
    .logo-header {
        width: 72px;
        /* height: 46px; */
    }
    .header-content > div > a:nth-child(1) {
        font-size: 14px;
    }
}