/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 992px) {

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    section {
        padding: 75px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {

        grid-template-columns: 1fr;
    }

    .navbar-wrapper {

        flex-direction: column;

        padding: 18px 0;
    }

    .nav-menu {

        flex-direction: column;

        width: 100%;

        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2,
    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary {

        width: 100%;
    }
}