/* font */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
 /* common style or utilities */

 body{
    font-family: 'Poppins', sans-serif;
    background-color: #F3F1FF;
 }
 main{
     display: flex;
     justify-content: center;
     flex-direction: column;
    align-items:center ;
 }
 .container{
    background-color: #FFFFFF;
    width: 870px;
    padding: 30px;
    margin-top: 21px;
    border-radius: 5pxs;

 }
 /* header  */
 header{
     background-color:#562EFF;
     width: 100%;
     height: 94px;
 }
 .header-box{
     display: flex;
     justify-content: space-between;
     
 }
 .header-box img{
     width: 40.42px;
     height: 51px;
     margin-right: 20px;
 }
 .nev-profile{
    display: flex;
    align-items: center;
    margin-right: 480px;
     
 }
 .photo-logo{
    display: flex;
    align-items: center;
    margin-left: 480px;
 }
 a{
     text-decoration: none;
     margin-right: 20px;
     color: white;
 }
 #logo-name{
     color: white;
 }

/* top players style */
.top-players{
    margin-bottom: 21px;
}
.section-title{
    color: #562EFF;
    font-weight: 500;
    font-size: 24px;
    margin-top: 3px;


}
.players{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-row-gap: 30px;
}
.player{
    display: flex;
    align-items: center;
}

.player img{
    width: 56px;
    height: 56px;

}
.player-name{
    margin-left: 16px;
    font-size: 18px;
    
}
hr{
    border: 1px solid #D1D1D1;
    margin-bottom: 27px;
}
/* top blog styles */

.blogs{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    grid-row-gap: 26px;
}
.blog .thumbnal img{
    width: 177px;
    height: 117px;
}
.blog{
    display: flex;
}
.blog-info{
    margin-left: 15px;

}
.blog-title{
    font-size: 20px;

}
.blog-author{
    color:#9F9F9F ;
    font-size: 16px;
}
.blog-author a{
    text-decoration: none;
    font-size: 16px;
    color:#562EFF;

}
/* courses style  */
.courses{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
}

.course{
    box-shadow: ;
    background: #FFFFFF;
    border-radius: 5px;
    filter: drop-shadow(0px 5.34229px 13.3557px rgba(0, 0, 0, 0.05));
}
.course-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.course .course-banner img{
    width: 224px;
    height: 104px;
}
.fa-star{
    font-size: 12px;
}
.fa-star.filled{
    color: #FFC014;
    margin-bottom: 16px;
   

}
.fa-star.empty{
    color: #AEAEAE;
    margin-bottom: 16px;

}
.course-duration{
    color:#FF4A60;
    width: 94.83px;
    height:29.38px;
    font-size: 15px;
    background: #FFE4E8;
    border-radius:14.6913px;
     font-weight: 600;
     text-align: center;
     margin-right: 12px;
     margin-bottom: 16px;
}
/* ------------------------------------------------------------------Media Queriers -----------------------------------------------------*/
/* Mobile Device */
 @media only screen and (max-width:688px) {
    header{
         width: 100%;
     }
     
     .container{
         width: 100%;
     }
        .players, .blogs, .courses{
            grid-template-columns:  repeat(1, 1fr);
        } 
        .player, .blog, .course{
            flex-direction: column;
        }
     }
     /* Table */
     @media only screen and (min-width:688px) and (max-width:992px) {
         .container{
             width: 100%;
         }
         .players{
             grid-template-columns:  repeat(2, 1fr);
         }

     }
     
  