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

    .footer-contact {
        padding-right: 4rem;
    }

    h1.project-link {
        text-align: end;
        font-size: 20px;
    }

    .contact-info {
        padding-right: 50%;
    }

    .contact-panel {
        display: none;
    }
}

/*DEFAULT LAPTOPS*/
@media screen and (min-width: 901px) and (max-width: 1599px) {
    .footer-contact {
        padding-right: 3rem;
    }
}

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

    .project-cover {
        height: unset;
    }

    .project-item {
        padding: 1rem;
    }

    .pagination nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: none;
    }

    .pagination a,
    .pagination span {
        border: 1px solid #ddd;
        margin: 4px;
        border-radius: 4px;
    }

    .yt-video iframe {
        height: 280px;
    }

    .project-logo-section img {
        width: 280px;
        max-height: 100px;
    }

    .about-video iframe {
        height: 280px;
    }

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

    footer {
        padding: 40px 0;
    }

    .navbar {
        padding: 1rem 1.25rem;
    }

    .navbar .logo img {
        width: 90px;
    }

    .navbar-menu-toggler {
        padding-right: 1.15rem;
        font-size: 20px;
    }

    .navbar-menu {
        position: fixed;
        top: -100vh;
        height: 100vh;
        left: 0;
        right: 0;
        background-color: #fff;
        justify-content: center;
        align-items: center;
        z-index: 998;
        transition: .5s ease-in-out;
    }

    .navbar .logo {
        position: relative;
        z-index: 999;
    }

    .navbar-menu.show {
        display: flex;
        top: 0;
    }

    header .navbar-menu ul {
        gap: 2rem;
        flex-direction: column;
    }

    .close-btn.mobile-only {
        position: absolute;
        top: 3rem;
        right: 3rem;
        font-size: 20px;
        padding: .5rem;
        border: 1px solid #c6c6c6;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .intro-text {
        font-size: 1.225rem;
    }

    .contact-panel {
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        display: flex;
        z-index: 90;
        opacity: .9;
    }

    a.contact-panel-item {
        width: 50%;
        padding-inline: 20px;
        background-color: #fff;
        color: #000;
        font-size: 1.8rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .3rem;
        padding-block: .7rem;
    }

    a.contact-panel-item span {
        font-size: 1rem;
    }

    a.wp-btn {
        background-color: #000000;
        color: #fff;
    }

    .contact-panel-item i {
        line-height: 1;
    }

    .project-logo-section {
        height: 300px;
    }

    .grid-sizer,
    .grid-item {
        width: 100%;
    }
}