.header {
    position: fixed;
    top: 0;
    width: 60%;
    height: 5rem;
    background-color: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20% 0 20%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: 400;
    font-size: 1rem;
}

.header-left {
    display: flex;
    width: 40%;
    height: 100%;
    justify-content: center;
}

.header-left div {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header-left div img {
    width: 15rem;
    height: 4.06rem;
}

.header-right {
    display: flex;
    width: 60%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.header-right div {
    display: flex;
    font-size: 1rem;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0;
    margin-left: 1rem;
    color: #3D3D3D;
    /* width: 50%; */
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.img-sty {
    width: 1.25rem;
    height: 1.25rem;
}

/*.login-button {*/
/*    background: linear-gradient(270deg, #29CCB7 0%, #29CC88 100%);*/
/*    color: white;*/
/*    border: none;*/
/*    border-radius: 0.5rem;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease;*/
/*    font-size: 1rem;*/
/*    float: right;*/
/*    padding: 0.5rem 1.375rem;*/
/*}*/

/*.default-button {*/
/*    background-color: #fff;*/
/*    color: #333;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 0.5rem;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease;*/
/*    font-size: 1rem;*/
/*    float: right;*/
/*    padding: 0.5rem 1.375rem;*/
/*}*/

/*.sign-in-button {*/
/*    background: #FFFFFF;*/
/*    border-radius: 0.5rem;*/
/*    opacity: 1;*/
/*    box-sizing: border-box;*/
/*    border: 1px solid #EEEEED;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease;*/
/*    font-size: 1rem;*/
/*    width: 5rem;*/
/*    height: 2.38rem;*/
/*}*/

@media (max-width: 997px) {
    .header {
        width: 100%;
        padding: 0;
    }

    .header-left {
        margin-left: 1rem;
    }

    /*.login-button {*/
    /*    padding: 0 0.25rem 0 0.25rem;*/
    /*    cursor: pointer;*/
    /*    transition: background-color 0.3s ease;*/
    /*    font-size: 1rem;*/
    /*    width: 8rem;*/
    /*    margin-right: 2rem;*/
    /*}*/
}


@media (max-width: 768px) {
    .header-right {
        display: none;
    }

    .main-right {
        display: none;
    }
}