@media(min-width:481px) {
    .header {
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        background-color: rgb(255, 255, 255);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .hamburger {
        display: none;
    }

    .logo {
        padding-top: 5px;
        width: 150px;
        height: 100%;
        padding-left: 10px;
    }

    .logo a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .logo a img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        display: block;
    }

    .header-text {
        margin-top: 10px;
        margin-left: 10px;
        padding-left: 30px;
        text-align: center;
    }

    .header-text h1 {
        color: #162d42;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 2px;
        color: #162d42;
        margin: 20px 0;
    }

    .AndersenConsultingMember {
        margin-left: auto;
        margin-right: 10px;
        padding-right: 30px;
    }

    .AndersenConsultingMember img {
        margin: auto;
        width: 390px;
        height: 60px;
    }



    /* navigation menu css*/
    .nav-menu {
        z-index: 999;
        position: fixed;
        top: 60px;
        left: 0;
        background-color: #162d42;
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: flex-start;
        align-items: center;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    }


    .nav-menu-item {
        position: relative;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: stretch;
    }


    .nav-menu-item a {
        height: 100%;
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: white;
        font-size: 15px;
        font-weight: bold;
        transition: all 0.3s ease;
        ;

    }

    .nav-menu-item a:hover {
        background-color: #C28B28;
        color: #162d42;
    }



    /* parent dropdown css */
    .nav-menu-item .parent-dropdown {
        display: none;
        list-style: none;
        position: absolute;
        top: 102%;
        left: 1%;
        background-color: #162d42;
        min-width: 150px;
        padding: 0;
        margin: 0;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
        border-radius: 5px;
        z-index: 1000;
    }

    #digt-dropdown {
        left: 2%;
    }

    .parent-dropdown .parent-dropdown-item a {
        font-size: 14px;
        height: 100%;
        font-weight: normal;
        padding: 15px;
    }

    .parent-dropdown .parent-dropdown-item {
        position: relative;
    }


    .arrow-icon {
        height: auto;
        margin-left: 6px;
        vertical-align: middle;
        cursor: pointer;
        transition: all 0.8 ease;
    }

    .nav-menu-item.open .parent-dropdown {
        display: flex;
        flex-direction: column;
    }

    .nav-menu-item.open .arrow-icon {
        transform: rotate(180deg);
    }

}