@media (width <=1114px) {
    .price-outer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width <=992px) {
    .banner {
        height: 37.5rem;
    }

    h1 {
        font-size: 3.125rem;
    }

    .team-member {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (width <=768px) {
    html {
        font-size: 15px;
    }

    nav {
        position: absolute;
        background: #fff;
        height: 0;
        overflow: hidden;
        top: 100%;
        left: 0;
        width: calc(100% - 3rem);
        margin: 0 1.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

        ul {
            flex-direction: column;
            gap: 1rem;
            margin: 1.2rem;

            a {
                color: #000;
            }
        }
    }

    .hamburger {
        display: block;
    }

    .about-us {
        .section {
            grid-template-columns: 1fr;
        }
    }

    .contact-us {
        .contact {
            grid-template-columns: 1fr;
        }
    }

    .users-count {
        .section {
            grid-template-columns: repeat(2, 1fr);
            padding: 4.333rem 1.333rem;
        }

    }
}

@media (width <=576px) {

    .banner {
        height: 34.667rem;

        .wrapper>span {
            font-size: 1.2rem;
        }
    }

    .logo {
        font-size: 2rem;
    }

    nav {
        width: calc(100% - 2.666rem);
        margin: 0 1.333rem;
    }

    h1 {
        font-size: 2.667rem;

        +p {
            max-width: 100%;
        }
    }

    .wrapper {
        padding: 0 1.333rem;
    }

    .section {
        padding: 5.333rem 1.333rem;
    }

    h2 {
        font-size: 1.867rem;
    }

    .heading {
        margin-bottom: 2.667rem;
    }

    h3,
    h4 {
        font-size: 2.333rem;
    }

    .numbers {
        font-size: 1.733rem;
    }

    .price-outer,
    .team-member {
        grid-template-columns: 1fr;
    }

    .testimonials {
        .section {
            padding: 0 1.333rem;
        }
    }

    .swiper {
        max-width: 100%;
        padding: 4.333rem 0;
    }

    .go-to-top {
        right: 1.5rem;
    }

    footer {
        padding: 1rem 1.5rem;

        .section {
            flex-direction: column;
            gap: 1rem;
        }
    }
}