@media screen and (min-width: 1024px) {
    body > nav {
        height: 60px;
    }
    
    #burger {
        display: none;
    }

    .hidden-nav {
        transform: translateX(0);
        width: 65%;
        background-color: #ffffff00;
        padding-block-start: 0.1em;
    }

    .hn-category {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-block: 0.3em;
    }

    .hn-category-row {
        white-space: nowrap;
        display: flex;
        justify-content: end;
        position: relative;
        background-color: #0084c8;
    }

    .hn-category-row:hover {
        background-color: #004061;
    }

    .dp {
        position: absolute;
        border-radius: 0.3em;
        top: 4em;
        z-index: 5;
        transform: translateY(-3em);
        transition: transform 0.3s, opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }

    .dp li {
        transition: background-color 0.3s;
    }

    .dp li:hover {
        background-color: #067cb8;
        border-radius: 0.3em;
    }

    .dropdown-about {
        transform: translateX(-4em) translateY(-3em);
        opacity: 0;
        pointer-events: none;
    }

    .selected {
        border-bottom: 0.3em solid #ffffff;
    }

    .c-add-phone-email {
        flex-direction: row;
        align-items: start;
        justify-content: space-evenly;   
    }

    .c-ape-row {
        width: 30%;
    }

    .c-ape-row > iframe {
        width: 300px;
    }

    .partners {
        flex-direction: row;
        width: 95%;
    }
}