.landing-header {
    top: 0;
    height: 64px;
    z-index: 10;
    width: 100%;
    position: static;
    background: white;
    display: flex;
    align-items: center;
}

.field .field-title {
    border-bottom: 2px solid #15cbff;
}

.landing-tag {
    padding: 6px;
    border-radius: 10px;
    margin-right: 7px;
    margin-bottom: 7px;
}


.landing-header-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* .landing-content {
        display: none;
    } */

    .landing-header {
        display: none !important;
    }

    .landing-header-mobile {
        display: block;
        text-align: left;
        margin-top: 10px;
    }

    .landing-header-mobile .navigation {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
        list-style: none;
    }

    .landing-header-mobile .navigation a {
        font-family: "Segoe UI";
        text-decoration: unset;
        color: #777777;
        border-radius: 30px;
    }

    .landing-header-mobile .navigation li {
        margin-top: 15px
    }

}