@media(max-width:62em) {
    html {
        font-size: 50%;
    }

    .hero-heading {
        font-size: 4.8rem;
    }
}

@media(max-width:48em) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 30rem;
        height: 100%;
        padding: 6.4rem 4rem;
        transition: all .5s linear;
        background-color: #01337c;
        z-index: 999;
    }

    .navbar.active {
        left: 0;
    }

    .navbar .navbar-links {
        flex-direction: column;
        align-items: baseline;
        gap: 4rem;
    }

    .mobile-nav,
    .close-outline {
        display: block;
    }

    .hero-heading {
        font-size: 3.6rem;
    }

    .hero-section {
        padding-bottom: 13rem;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }

}

@media(max-width:35em) {
    .logo-box .logo-img {
        max-width: 25rem;
    }

    .hero-heading {
        font-size: 3.6rem;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content .btn-box {
        text-align: center;
    }

    .hero-text {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-img-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-img {
        max-width: 60%;
    }

    .primary-heading {
        font-size: 3rem;
    }

    .brand-box {
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .brand-box img {
        max-height: 4rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .grid-img {
        grid-row: 3;
    }

    .about-img-box {
        margin-top: 6.5rem;
    }

    .about-img {
        max-width: 30%;
    }

    .about-shape {
        height: 29rem;
        width: 29rem;
        transform: translate(-50%, -50%) rotate(146deg);
    }

    .right-shape {
        transform: translate(-50%, -50%) rotate(136deg);
        top: 53%;
        left: 51%;
    }

    .websites-box {
        grid-template-columns: 1fr;
        gap: 4.8rem;

    }

    .websites-box a {
        text-align: center;
    }

    .websites-box img {
        max-width: 35%;

    }

    .footer-container {
        display: initial;
    }

    .footer-box .logo-box .logo-img {
        max-width: 30rem;
    }

}