/* ...........................................Body............................................ */
body{
    background-color: rgb(15, 4, 37);
}

.container{
    display: flex;
    justify-content: space-between;
}
/*..........................................Nav-bar................................................... */

.nav-bar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}
.nav-bar a{
    font-size: 2rem;
    display: flex;
    text-decoration: none;
    color: whitesmoke;
    flex-wrap: wrap;
    padding: 1rem 0;
    
}
.nav-bar i{
    color: whitesmoke;
    font-size: 2rem;
    
}
.nav-bar input[type=search]{
    background-color: rgb(6, 6, 68);
    max-width: 30rem;
    min-width: 5rem;
    height: 3rem;
    color: white;
    font-size: 1.5rem;
    border-radius: 25px;
    font-weight: normal;
    border-style: none;
    margin-left: 50px;
}
.navImg{
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    margin-top: 10px;
    margin-left: 20px;
}
.navImg img{
    width: 100%;
    height: 100%;
}
.profileImg{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 0.5rem;
    margin-left: 5rem;
}

.profileImg img{
    width: 100%;
    height: 100%;
}

/* ...........................................................Search-Bar............................... */
.search-bar{                                            
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-bar input:focus {
    outline:none;
}

#mike i{
    margin-left: -3.2rem;
    color: grey;
}





/* ...............................Carosal Effects.......................... */
.container{
    
    height: 300px;
    width: 75%;
    top:60px;
    display: flex;
    margin-top: 6rem;
}
.card{
    display: flex;
    height: 220px;
    width: inherit;
    border-radius: 25px;
    transition: 0.4s ease-out;
    position: relative;
    margin-left: 2.5rem;
    margin-top: 2rem;
}
.card:not(:first-child){
    margin-left: -5rem;
}
.card:hover{
    transform: translateY(-10px);
    transition: 0.4s ease-out;
}
.card:hover~.card{
    position: relative;
    left: 1.5rem;
    transition: 0.4s ease-out;
}
/* .....................................................Aside Section.................................. */
aside{
    float: right;
    width: 25%;  
    margin-top: -19rem;
    margin-right: -12px; 
    overflow:auto;
    height: 75rem;
}
/* .............................................................Queue.......................................... */
.Queue{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.Queue h1{
    margin-left: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.Queue label{
    font-size: 1.5rem;
    outline: none;
}


.Queue input{
    border: none;
    background-color: transparent;
    width: 1rem;
}



.Queue input,label{
    color: turquoise;
}


/* .......................................................Song list........................................... */
.Song-list{
    margin-top: 2rem;
}

.Song-list li{
    margin-top: 20px;
}

.Song-list ol li{
    display: flex;
    justify-content: space-between;
}

.Song-list h3{
    
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-top: 0px;
    font-weight: lighter;
    color: gray;
    margin-left:-5rem;
}
.Song-list h3:hover{
    transform: scale(1.1,1.1);
}

.Song-list img{
    border: none;
    border-radius:10%

}
.Song-list img:hover{
    transform: scale(1.1,1.1);
}

h3::first-line{
    font-weight: bold;
    font-size: 25px;
    color: white;
}

.Song-list span i{
    font-size: 30px;
    margin-right: 20px;
    color: red;
}
.Song-list span i:hover{
    transform: scale(1.1,1.1);
}

/* ..........................................Media Query  */
@media (max-width:1350px){
    .Song-list span i {
        font-size: 19px;
        margin-right: 58px;
    }
    
    .Song-list img{
        margin-left: -35px;
        width: 2vw; 
        height: 2vh
    }
    .Song-list h3{
        margin-left: 0rem;
        font-size: 16px;
    }
    h3::first-line {
    font-weight: bold;
    font-size: 20px;
    color: white;
    }
    
}

/* ........................................................Latest Release.................................. */
.section{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 75%;
    margin-bottom: 2rem;
    justify-content: space-around;
}
.latest{
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-around;
}
.section-img{
    display: flex;
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-top: 10px;
    margin-left: 1rem;
    margin-bottom: 1rem;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    
}
.section-img img{
    width: 100%;
    height: 100%;
}
.Button{
    transition: all 0.5s ease-in-out;
    display: inline-block;
    color: transparent;
    padding: 10px;
    font-size: 40px;
    position: absolute;
    transform: translate(50%, 50%);
}
.section-img img:hover{
    transform: scale(1.1,1.1);
}
.section-img:hover .Button{
    
    color: rgb(214, 200, 200);
}

.section-img-descrip {
    display: flex;
    justify-content: space-around;
    
    width: 100px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    color: grey;
    
}
h4::first-line{
    font-weight: bold;
    font-size: 25px;
    color: white;
    
}

.section-img-queue input{
    border: none;
    margin-top: 30px;
    background-color: transparent;
    

}

.Queue-dot{
    color: grey;
    font-size: 30px;
    margin-top: -22px;
    
}
.section-img-queue input:focus {
    outline:none;
}
/* ...................................Responsiveness................. */
@media (max-width:1200px){
    .section{
        flex-direction: column;
    }
    .latest{
        width: 100%;
    }
    .section-img-descrip h4{
        margin-left: 80px;
    }
}


/*  .................................................Popular Artist...................................... */
.Popular-Artist{
    display: flex;
    box-sizing: border-box;
    width: 75%;
    margin-bottom: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
}
.Artist-img img{
    display: flex;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    
}
.Artist-img img:hover{
    transform: scale(1.1,1.1);
}
.Artist-img h1{
    text-align: center;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color: grey;
    
}


.Artist-Button{
    transition: all 0.2s ease-in-out;
    display: inline-block;
    color: transparent;
    transform: translate(100%, -150%);
    padding: 10px;
    font-size: 40px;
    position: absolute;
}
.Artist-img:hover .Artist-Button{
    color: rgb(214, 200, 200);
}


/* .......................................................Music-Variety......................................... */
.Music-variety{
    display: flex;
    box-sizing: border-box;
    width: 75%;
    margin-top:2rem ;
    justify-content: space-around;
    background-color: rgb(9, 9, 53);
    flex-wrap: wrap;
}
.Music-form-img{
    position: relative;
}
.Music-form-img img{
    display: flex;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    
}
.Music-form-img img:hover{
    transform: scale(1.1,1.1);
}
.Music-variety-square-img img:hover{
    transform: scale(1.1,1.1);
}
.Music-form-img h2{
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: transparent;
    top: 35%;
    left: 30%;
}
.Music-form-img:hover h2{
    color: white;
    transition: all 0.5s ease-in-out;
}

.Music-variety-square-img img{
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}
.Music-variety-square-img h2{
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: -7rem;
    margin-left: 3rem;
    line-height: 1.1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: transparent;
}
.Music-variety-square-img:hover h2{
    color: white;
    transition: all 0.5s ease-in-out;
}

    
   /*.....................................................Music-Occusion....................................  */

.Music-occasion{
    display: flex;
    box-sizing: border-box;
    width: 75%;
    margin-top:2rem ;
    justify-content: space-around;
}
.Music-type-img{
    display: flex;
    width: auto;
    height: 230px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    
    
}
.Music-type-img img:hover{
    transform: scale(1.2,1.2);
}
.Music-type-img h2{
    position: absolute;
    margin-top: 5rem;
    margin-left: 6rem;
    font-size:2rem; 
    color: transparent;
}
.Music-type-img:hover h2{
    color: white;
    transition: all 0.5s ease-in-out;
}

/* ..........................................................English-Language............................... */
.English-Language{
    display: flex;
    box-sizing: border-box;
    width: 75%;
    margin-top:1rem ;
    justify-content: space-around; 
    flex-wrap: wrap;
}
.English-Language-img{
    display: flex;
    height: 7rem;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 5px;
}
.English-Language-img h2{
    position: absolute;
    margin-top: 5rem;
    margin-left: 1.7rem;
    
}
.English-Language-img img:hover{
    transform: scale(1.1,1.1);
}
.English-Button {
    transition: all 0.2s ease-in-out;
    display: inline-block;
    margin-top: 1rem;
    color: transparent;
    margin-left: 3.5rem;
    padding: 10px;
    font-size: 40px;
    position: absolute;
    
}
.English-Language-img:hover .English-Button {
color: rgb(214, 200, 200);


}
/* .........................................Latest-Hindi (Part 4-5)............................................. */

.Hindi-Language{
    display: flex;
    box-sizing: border-box;
    width: 75%;
    margin-top:1rem ;
    justify-content: space-around; 
    flex-wrap: wrap;
}
.Hindi-Language-img{
    display: flex;
    height: 7rem;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 5px;
}
.Hindi-Language-img img:hover{
    transform: scale(1.1,1.1);
}
.Hindi-Button {
    transition: all 0.2s ease-in-out;
    display: inline-block;
    margin-top: 1rem;
    color: transparent;
    margin-left: 4rem;
    padding: 10px;
    font-size: 40px;
    position: absolute;
}
.Hindi-Language-img h2{
    display: block;
    position: absolute;
    margin-top: 5rem;
    margin-left: 2rem;
}
.Hindi-Language-img:hover .Hindi-Button{
    color: rgb(214, 200, 200);
}


/* .........................................................Music Play (Part 5-5).....................................*/
.Music-Play-img{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    margin-top:1rem ;
    justify-content: space-between;
    background-color: rgb(37, 36, 36); 
    align-items: center;
}
.musicPlay{
    display: flex;
    padding: 0 1rem;
    align-items: center;
    width: 30%;
    justify-content: space-evenly;
    padding: 1rem 0;
}
.audioPlay{
    width: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.songPlay{
    display: flex;
    align-items: center;
}
.audio-control {
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    position: relative;
    align-items: center;
    color: white;
}
.audio-control span{
    margin-left: 20px;
}
.slider{
    margin-left: 15px;
} 
.Music-Play-img h3{
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5px;
    font-weight: lighter;
    color: gray;
    width: 10rem;
    
}
.Music-Play-img h3::first-line{
    font-weight: bold;
    font-size: 25px;
    color: white;
}
.Music-Play-img span {
    font-size: 25px;
    color: grey;

}
.heart{
    margin-top: -1rem;
}
.heart i{
    margin: 1rem;
}
.Music-Play-Button i{
    position: absolute;
    font-size: 20px;
    margin-top: -1rem;
    color:transparent;
}
.Music-Play-Button i:hover{
    color: white;
    
}
/* .....................................Responsiveness............................... */
@media (max-width:1024){
.Music-Play-img h3{
    margin-left: 20px;
}
}


/* ............................................Media query for carosal................... */
@media screen and (max-width: 992px){
    .card img{
        width: 100%;
        margin-left: -1.2rem;
    }
    
    /* ..............Popular Artist........... */
    .Popular-Artist{
        width: 75%;
    }
    .Artist-img img{
        width: 100%;
    }
    .Artist-Button i{
        margin-left: -1rem;
    }

    /* .............Music-Variety */
    .Music-variety{
        width: 75%;
    }
    .Music-variety-square-img img{
        width: 80%;
    }
    
    .Music-form-img h2{
        font-size: 1.6rem;
    }
    .Music-occasion{
        width: 75%;
    }
    .Music-type-img img{
        width: 100%;
    }
    .Music-occasion h2{
        margin-left: 1.5rem;
    }
    .Music-variety-Button i{
        margin-left: -1.8rem;
    }
    /* ..............English-Language */
    .English-Language{
        width: 75%;
    }
    .English-Language-img img{
        width: 100%;
    }
    .English-Button i{
        margin-left: -1rem;
    }
    /* ................Hindi Language */
    
    .Hindi-Language{
        width: 75%;
    }
    .Hindi-Language-img img{
        width: 100%;
    }.Hindi-Button i{
        margin-left: -1rem;
    }
/* .............Footer Section...... */

.heart{
    margin-left: 0.5rem;
}
.Music-Play{
    margin-left: 4rem;
}
.slider{
    margin-top: -0.1rem;
}
.audio-control,.slider{
    display: flex;
}

.Music-Play-img{
    flex-direction: column;
}
.musicPlay{
    width: 100%;
}
.audioPlay{
    width: 100%;
}
}









