@media screen and (min-width: 1118px) {
    .nav-container {
        margin-inline: auto;
    }

    nav {
        height: calc(3.5rem + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }

    .nav-link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }

    .nav-link:hover {
        background-color: transparent;
    }

    .dropdown-item,
    .dropdown-subitem {
        position: relative;
    }

    .dropdown-menu,
    .dropdown-submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown-link,
    .dropdown-sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown-subitem .dropdown-link {
        padding-inline: 1rem;
    }

    .dropdown-submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    /* Show dropdown menu */
    .dropdown-item:hover .dropdown-menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }

    /* Show dropdown submenu */
    .dropdown-subitem:hover>.dropdown-submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }
}

@media screen and (max-width: 768px) {
    /* ----- Breadcrumb ----- */
    .title {
        font-size: 3rem;
    }

    .path {
        font-size: 0.8rem;
    }

    /* -------- Our Team ---------- */
    .team-section .team-container .team-card {
        grid-template-columns: 1fr;
    }

    .gallery img {
        width: 165px;
        height: 165px;
    }
} 

@media only screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        margin: 0;
        margin-bottom: 1rem;
    }

    .hero img {
        width: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .campaign-content {
        flex-direction: column-reverse;
    }
}