/* custom header 1 */
.custom-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.custom-header .logo {
    width: auto;
    height: 40px;
}

.custom-header .navbar-nav {
    margin: 0;
    padding: 0;
    display: flex;
    list-Style-type: "none";
    align-items: center;
}

.custom-header .navbar-item {
    margin: 0 5px;
    display: block;
    color: white;
}

/* mobile */
.logo-mobile {
    display: none;
}

.button-bar-mobile {
    display: none;
}

.navbar-nav-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .custom-header {
        display: none;
    }

    /*mobile*/
    .custom-header-mobile {
        display: flex;
        justify-content: space-between;
    }

    .custom-header-mobile .logo-mobile {
        display: inline-block;
        width: auto;
        height: 40px;
    }

    .custom-header-mobile .button-bar-mobile {
        display: inline-block;
    }

    .custom-header-mobile .button-bar-mobile i {
        font-size: 26px;
    }

    .custom-header-mobile ul.navbar-nav-mobile {
        display: block;
        margin-top: 10px;
        width: 100%;
    }

    .custom-header-mobile .navbar-nav-mobile .navbar-item {
        display: block;
        padding: 5px 0;
        text-align: right;
        color: white;
    }

    .custom-header-mobile .logo-mobile {
        display: inline-block;
    }

    .custom-header-mobile .header-mobile {
        display: flex;
        justify-content: space-between;
    }
}
