@media screen and (min-width: 700px) {
    .mobile-only {
        display: none !important;
    }
}

/*DEFAULT LAPTOPS*/
@media screen and (min-width: 901px) and (max-width: 1599px) {
    .project-banner h5 {
        padding: 5px 12px;
        font-size: 18px;
    }

    .navbar-menu li {
        font-size: 28px;
    }
}

@media screen and (max-width: 700px) {
    .pc-only {
        display: none !important;
    }

    .pb-sm-80 {
        padding-bottom: 80px !important;
    }

    .pt-sm-80 {
        padding-top: 80px !important;
    }

    .pb-sm-60 {
        padding-bottom: 60px !important;
    }

    .pt-sm-60 {
        padding-top: 60px !important;
    }

    .pb-sm-40 {
        padding-bottom: 40px !important;
    }

    .pt-sm-40 {
        padding-top: 40px !important;
    }

    .pb-sm-20 {
        padding-bottom: 20px !important;
    }

    .pt-sm-20 {
        padding-top: 20px !important;
    }

    header .logo img {
        width: 120px;
    }

    section.intro-page h1 {
        font-size: 36px;
        line-height: 45px;
    }

    section.intro-page h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .section-padding {
        padding: 60px 15px;
    }

    .img-with-link::after {
        background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0)
        );
    }

    .img-with-link a {
        bottom: 15px;
        left: 15px;
    }

    footer .logo img {
        margin: 0 auto;
    }

    footer .footer-menu ul {
        flex-direction: column;
        align-items: center;
    }

    footer p {
        font-size: 13px;
    }

    .navbar-menu ul {
        width: 100%;
        right: -100%;
        display: flex;
        flex-direction: column;
        padding-top: 4.5rem;
        justify-content: center;
    }

    .navbar-menu li {
        font-size: 20px;
    }

    .footer-wrapper {
        margin-top: 0;
        padding-top: 80px;
    }

    .section-padding-xl {
        padding: 160px 6px 80px 6px;
    }

    .project-item {
        padding: .5rem;
    }

    .project-item .project-cover {
        height: 255px;
    }

    .filter {
        margin-bottom: 10px;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .filter button {
        padding: .5rem 1.45rem;
    }

    .project-banner {
        height: 70vh;
    }

    .project-banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .project-categories {
        position: unset;
        gap: .65rem;
        padding: 60px 15px 0;
        flex-wrap: wrap;
    }

    .project-categories h5 {
        font-size: 17px;
    }

    .project-categories h1 {
        font-size: 28px;
    }

    .team-item {
        margin-bottom: .75rem;
    }
}