html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Open Sans;
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,800;1,300;1,600;1,700&display=swap');
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
}

* {
    box-sizing: inherit;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

nav {
    width: 100%;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    z-index: 100;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 45px;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5)
}

.logo {
    height: 30px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.menu_top {
    display: none;
}

.nav_menu {
    width: 50%;
}

.menu {
    display: flex;
    align-items: center;
    height: 100%;
    width: 50%;
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5)
}

.menu li {
    position: relative;
    margin: 20px;
    display: flex;
    font-weight: 200;
}

.menu li a {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

.menu a:link,
.menu a:visited {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.menu a:hover {
    color: aqua;
    transition: all ease 0.3s;
}

.search-cancel:hover {
    color: aqua;
    transition: all ease 0.3s;
}

.form-cancel {
    color: aqua;
    transition: all ease 0.3s;
}

.right_menu a {
    margin: 0px 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

span {
    color: #000;
    font-weight: 500;
}

.search-bar {
    width: 100%;
    height: 300px;
    background-color: #000;
    position: fixed;
    left: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    z-index: 101;
    animation: search 0.3s;
}

.search-cancel {
    color: #fff;
    font-size: 2rem;
    padding-right: 40px;
}

.search-input {
    width: 90%;
    border-bottom: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 20px;
    color: #fff;
}

.search-bar input {
    width: 100%;
    padding: 30px;
    border: none;
    outline: none;
    font-size: 2rem;
    margin: 20px;
    padding: 0px 20px;
    background-color: #000;
    color: #fff;
}

.search-bar {
    display: none;
}

.search-bar-active {
    display: flex;
}

@keyframes search {
    0% {
        bottom: -300px;
    }
    100% {
        bottom: 0px;
    }
}

.t-form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 102;
}

.login-form {
    width: 420px;
    padding: 20px 10px;
    background-color: #000;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
}

.sign-up-form {
    width: 420px;
    padding: 20px 10px;
    background-color: #000;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
}

.login-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.sign-up-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.form h2 {
    color: aqua;
    font-size: 2rem;
    margin: 2px 7px 7px 7px;
    letter-spacing: 0.4px;
    font-weight: 500;
}

.login-form input {
    width: 90%;
    height: 45px;
    margin: 6px 0px;
    padding: 0px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: #fff;
    border-radius: 7px;
    background-color: #000;
    color: #fff;
}

.login-form input::placeholder {
    color: #fff;
}

.sign-up-form input {
    width: 90%;
    height: 45px;
    margin: 6px 0px;
    padding: 0px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: #fff;
    border-radius: 7px;
    background-color: #000;
    color: #fff;
}

.sign-up-form input::placeholder {
    color: #fff;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    outline: #fff;
    margin-top: 10px;
    border-radius: 3px;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.form-btns {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.form-btns a {
    color: #fff;
    font-size: 0.9rem;
}

.sign-up {
    border-bottom: 1px solid #fff;
    line-height: 16px;
}

.form-cancel {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #fff;
}

.login-form {
    display: none;
}

.sign-up-form {
    display: none;
}

.t-form {
    display: none;
}

.login-active,
.login-active .login-form {
    display: flex;
    animation: fade 0.3s;
}

.sign-up-active,
.sign-up-active .sign-up-form {
    display: flex;
    animation: fade 0.3s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.full-slider-box {
    width: 100%;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.f-slide-1 {
    background-image: url(images/slider1.jpg);
}

.f-slide-2 {
    background-image: url(images/slider2.jpg);
}

.f-slide-3 {
    background-image: url(images/slider3.jpg);
}

.f-slide-4 {
    background-image: url(images/slider4.jpg);
}

.f-slide-5 {
    background-image: url(images/slider5.jpg);
}

.f-slide-6 {
    background-image: url(images/slider6.jpg);
}

.slider-text-container {
    width: 80%;
    height: 90%;
    display: flex;
    align-items: center;
}

.f-slider-text {
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

.f-slider-text strong {
    color: #000;
    font-size: 3rem;
    line-height: 55px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.f-slider-text span {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1.2rem;
}

.f-slider-btn {
    width: 170px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #000080;
    letter-spacing: 2px;
    margin-top: 10px;
}

.f-slider-text strong font {
    color: #000080;
}

.featured {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured h2,
.music-heading strong {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 40px;
    padding: 5px 30px;
    border: 1px solid #fff;
    background-color: #000;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.feature-box {
    width: 200px;
    height: 200px;
    margin: 0px 20px;
    border-radius: 10px;
    overflow: hidden;
}

.feature-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-a span {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin: 5px;
}

.item-a {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#autoWidth {
    display: flex;
    justify-content: center !important;
    margin: 10px auto 40px auto;
}

.music-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.music-heading p {
    color: #fff;
    margin: 10px;
    font-size: 0.9rem;
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.music-container {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.music-box {
    display: flex;
    flex-grow: 0.5;
    flex-direction: column;
    align-items: center;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 20px;
}

.music-img {
    width: 200px;
    height: 210px;
    margin: 20px;
    cursor: pointer;
    position: relative;
}

.music-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.music-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #000;
}

.m-name {
    color: #fff;
}

.m-price {
    color: azure;
    font-size: 1.2rem;
    font-weight: 400;
}

.music-box:hover {
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.buy {
    position: absolute;
    right: -20px;
    top: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #fff;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    display: none;
    animation: fade 0.4s;
}

.buy:hover {
    background-color: aqua;
    transition: all ease 0.2s;
}

.music-box:hover .buy {
    display: flex;
}

.music {
    display: flex;
    flex-direction: column;
}

.store {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
}

.store-box {
    width: 280px;
    border-radius: 20px;
    margin: 20px;
    position: relative;
    flex-grow: 0.6;
}

.store-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.store-text {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-20%, -50%);
    display: flex;
    flex-direction: column;
}

.store-box a {
    color: #000;
}

.store-text strong {
    font-size: 1.3rem;
    font-weight: 600;
    width: 80%;
    line-height: 23px;
}

.store-text span {
    font-size: 1.1rem;
    font-weight: 550;
    width: 80%;
    line-height: 23px;
}

.services {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
}

.services-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 250px;
    padding: 20px;
    margin: 15px;
    flex-grow: 0.8;
}

.services-box i {
    color: #fff;
    font-size: 2rem;
    margin: 15px;
}

.services-box span {
    color: #fff;
    font-weight: 650;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    margin-top: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.subscribe a {
    color: #fff;
    text-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.fix-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #000;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
    z-index: 102;
}

.toggle {
    display: none;
}

.navi {
    align-items: center;
    justify-content: center;
    display: flex;
}

.navi ul {
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 9vh;
    position: relative;
    background: #fff;
    display: flex;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 0px 4px #009bff, 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5), 0px 0px 8px rgba(30, 131, 255, 0.5);
}

.navi ul li {
    list-style: none;
    line-height: 50px;
    margin: 0 5px;
}

.navi ul li:first-child {
    margin-right: 30px;
    font-weight: 700;
    font-size: 20px;
}

.navi ul li:last-child {
    margin-left: 30px;
    font-weight: 700;
    font-size: 20px;
}

.navi ul li.pageNumber {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.navi ul li a {
    color: #000;
    font-weight: 600;
    display: block;
    text-decoration: none;
    border-radius: 50%;
}

.navi ul li.pageNumber:hover a,
.navi ul li.pageNumber.active a {
    background: #000;
    color: #fff;
}

.ad-container {
    width: 90%;
    height: 200px;
    margin: 0px 20px;
    border-radius: 10px;
    overflow: hidden;
}

.ad-container script {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1010px) {
    nav {
        position: relative;
    }
    .navigation {
        height: 80px;
    }
    .fix-nav {
        height: 80px;
    }
    .menu {
        position: absolute;
        top: 110px;
        left: 0px;
        background-color: #000;
        border-bottom: 4px solid #fff;
        width: 100%;
        padding: 0px;
        margin: 0px;
        z-index: 102;
        flex-direction: column;
        display: none;
        height: 50vh;
    }
    .fix-nav .menu {
        top: 80px;
    }
    .menu li {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .navigation .menu li a {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        margin: 0px;
        padding-left: 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .toggle {
        display: block;
    }
    .toggle::before {
        content: '\f0c9';
        font-family: fontAwesome;
        line-height: 30px;
        z-index: 1;
        cursor: pointer;
    }
    .toggle.active::before {
        content: '\f00d';
    }
    .navigation.active .menu {
        display: block;
    }
    .full-slider-box,
    .store-box {
        height: 45vh;
    }
    .f-slider-text span,
    .store-text span {
        font-size: 0.0rem;
    }
    .f-slider-text strong,
    .store-text strong {
        font-size: 2rem;
        line-height: 40px;
    }
    .search-input {
        height: 60px;
    }
    .search-input input,
    .search-cancel {
        font-size: 1.4rem;
    }
    .music-box {
        height: 200px;
    }
}

@media(max-width:600px) {
    .navigation {
        padding: 10px;
    }
    .f-slider-text strong {
        font-size: 1.2rem;
        line-height: 25px;
    }
    .full-slider-box {
        height: 30vh;
    }
    .f-slider-text span {
        font-size: 0.8rem;
    }
    .f-slider-btn {
        width: 120px;
        height: 30px;
        font-size: 0.8rem;
    }
    .featured h2 {
        font-size: 1.2rem;
    }
    .feature-box {
        width: 120px;
        height: 120px;
    }
    .music strong,
    .featured strong {
        font-size: 1.2rem;
    }
    .music p,
    .featured p {
        font-size: 0.8rem;
        text-align: center;
    }
    .store-box {
        width: 100%;
        height: 180px;
    }
    .store {
        width: 100%;
    }
    .services {
        width: 100%;
    }
    .services-box {
        width: 100%;
    }
    .copy {
        margin: 20px 0px;
        text-align: center;
    }
    .login-form,
    .sign-up-form {
        width: 90%;
    }
    .navi ul {
        width: 70%;
        height: 5vh;
    }
    .navi ul li.pageNumber {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    .navi ul li:last-child {
        margin-left: 15px;
        font-weight: 500;
        font-size: 10px;
    }
    .navi ul li:first-child {
        margin-right: 15px;
        font-weight: 500;
        font-size: 10px;
    }
}