@media only screen and (min-width: 992px) {
    nav {
        width: 95%;
        height: 80px;
    }

    nav ul li {
        max-width: 171px;
        width: auto;
    }

    nav ul li ul li {
        white-space: normal;
        min-width: 100%;
    }

    nav ul li a,
    nav ul li a:visited {
        font-size: 0.8rem;
        letter-spacing: 0;
        text-align: center;
        display: block;
        padding: 0 5px;
        line-height: 20px;
        background: var(--main-1-color);
        color: #fff;
        text-decoration: none;
        white-space: normal;
    }

    @media screen and (min-width: 992px) {
        .nav-list {
            display: flex !important;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            height: 100%;
        }
    }

    .nav-dropdown {
        top: 60px;
    }
}

.footer {
    height: auto;
    min-height: 540px;
}

.footer .footer_title {
    font-size: 0.9em;
    line-height: 1.7rem;
    padding: .4rem .5rem;
}

.footer .footer_title li {
    font-size: 0.85em;
    font-weight: normal;
    line-height: 1.7rem;
}

.d-none {
    display: none;
}