@media (max-width: 1000px) {

    .navigation {
        display: none;
    }

    .mobile-menu {
        display: flex;

        align-items: center;

        justify-content: center;
    }

    .navigation.mobile-navigation {

        position: absolute;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        top: 72px;

        left: 0;

        right: 0;

        padding: 15px 5%;

        background: #111114;

        border-bottom: 1px solid #27272d;
    }

    .navigation.mobile-navigation a {

        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #222228;
    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-phone-area {
        min-height: 520px;
    }


    .category-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .wallpaper-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-container {

        grid-template-columns:
            2fr 1fr 1fr;

    }

}


@media (max-width: 650px) {

    .header-container {
        width: 92%;
    }

    .login-button {
        display: none;
    }


    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 0 20px;
    }

    .hero h1 {

        font-size: 46px;

        letter-spacing: -2.5px;

    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {

        width: 100%;

        flex-direction: column;

    }

    .hero-buttons a {
        width: 100%;
    }


    .hero-stats {

        width: 100%;

        justify-content: space-between;

        gap: 10px;

    }


    .phone {

        width: 225px;

        height: 440px;

    }


    .floating-info {
        display: none;
    }


    .section {

        width: 92%;

        padding: 55px 0;

    }


    .section-title {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .category-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category {

        height: 180px;

    }


    .wallpaper-grid {

        grid-template-columns: 1fr;

    }


    .wallpaper-image {

        height: 430px;

    }


    .sound-item {

        gap: 10px;

    }


    .sound-duration {
        display: none;
    }


    .cta {

        width: 92%;

        padding: 55px 20px;

    }


    .cta h2 {

        font-size: 32px;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }


    .preview-details {

        flex-direction: column;

        align-items: flex-start;

    }

    .preview-details .primary-button {
        width: 100%;
    }

}