@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
    .music-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
    .music-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-nav {
        display: flex;
    }
    .menu-wrapper {
        width: 50%;
        height: 100% !important;
        background-color: var(--primary-bgc) !important;
        left: -100%;
    }
    .menu {
        gap: 4rem;
    }
    .menu-wrapper,
    .menu {
        flex-direction: column;
    }
    nav {
        color: var(--text-color-1) !important;
    }

    .show-page-music__details {
        flex-wrap: wrap;
        gap: 3rem;
    }
}

@media screen and (max-width: 576px) {
}
@media screen and (max-width: 410px) {
    .music-wrapper {
        grid-template-columns: 1fr;
    }
    .show-page-music__title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 350px) {
}
