.header{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* --- Header mark --- */

.header_mark{
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.header_mark.blocked{
    pointer-events: none;
}

.header_mark:hover{
    cursor: pointer;
    opacity: 0.7;
}

/* image */

.header_mark img{
    width: 38px;
    height: 38px;
}

/* text */

.header_mark p{
    font-size: 20px;
    font-weight: 700;
    color: var(--text1);
}

/* --- Leave link --- */

.leave_link{
    width: fit-content;
    margin-left: auto;
    font-size: 14px;
    text-decoration: underline;
    color: var(--blue);
    transition: 0.3s;
}

.leave_link:hover{
    cursor: pointer;
    opacity: 0.7;
}

/* --- Media --- */

@media screen and (max-width: 450px) {
    
    .leave_link span{
        display: none;
    }
}