/*-------font-------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


/* ---------------------------
        common styles
--------------------------- */
body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding:0;
    
}

/*-----------------------
     header-section
-----------------------*/
.header-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #2D25A0;
    padding:153px 0px 86px 0px; 
    column-gap: 102px;
    margin-bottom: 70px;

}

.header-title{
    margin-left:156px;

}

.header-title h2{
    color:#FFFFFF;
    font-size: 64px;
    font-weight:700;
}

.link-button{
    text-decoration: none;
    font-size: 16px;
    background: #E02C6D;
    color:#FFFFFF;
    padding:10px 24px;
    
}

.link-button:hover{
    padding: 18px 26px;
    font-weight: 700;
    box-shadow: 1px 1px 10px #E02C6D;
} 

.header-slider img{
    width:556px;
    height:456px;


}

/*---------------------
      players-section
------------------------*/
.players-container{
    
    margin-top:70px;
    margin-left: 180px;
    margin-right:210px;
    
} 



.players-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap:30px;
    row-gap:27px;
    width: 330px;
   

  }


.players{
    
    width:330px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    
   
  }

  .player-info{
    width:300px;
    padding:15px 15px;
  
  }


  .player-info img{
      width:100%;
   
  }


.player-info h2{
    font-size: 28px;
    font-weight: 700;
    padding-top: 16px;
    padding-bottom: 10px;
 

  }

.player-info p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 10px;
  }




/*-------Latest Update -------*/
.updates{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    margin:0px 10px 35px 10px;
   
}

.team{
    background-color: rgb(255 255 255);
    border-radius: 10px;
    box-shadow: 2px 2px 8px lightgrey;
    padding: 10px;
   
}
#latest{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    padding: 20px;
}
.team .team-banner img{
    width: 400px;
    height: 300px;
}




/* photo-gallery section  */
.gallery-section{
    width:70%;
    margin-left: 180px;
    margin-right:200px;
    padding-left:21px;
    justify-content: center;
    border: 5px solid rgb(219, 213, 213);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    
}
.gallery-section h1{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    
}
.photo-container{
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 10px;
  }
.photo{
    width:210px;
    height: 210px;
}
.photo img{
    width:100%;
    height:90%;
}


/*----------------
    footer section 
------------------*/

.buttom-logo{
   text-align: center;
    
}

.buttom-logo img{
    display: block;
    width:484px;
    height:110px;
    margin: 20px auto 10px auto;
}

/* social icon section */
.social-icons{
    text-align: center;
    margin-bottom: 20px;
    
}

.social-icons a{
        text-emphasis: none;
        color:#969BAB;
        font-size:16px;
        margin:0px 14px 0px 0px;
        padding:8px 10px;
        background-color: #dfd9d9;
        border-radius: 50%;


}


/* footer title section */
.foot-title p{
    text-align: center;
    font-weight: 400;
    font-size: 18px;
}







/*------------- Responsive -------------
/* Mobile Devices  */
@media only screen and (max-width:688px){
    .header-container,.players-list, .updates, .photo-container{
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        margin-left:20px;
    }
    .header-container{
        width:100%;
        margin-right: 20px;
    }
    .header-title h2{
            font-size: 36px;
            
    }
    .header-title{
        margin-left:30px;
    }
    .header-slider img{
        width:330px;
        height:260px;
        margin-top: 40px;
        margin-left:30px;
    }
    .players-container{
        margin-left:38px;
    }
    .players-list{
        width: 100%;
        margin-right:0px;
        margin-left: 0px;
    }

     .team{
        width:350px;
        margin-bottom: 10px;
        margin-right: 10px;
    }
    .team .team-banner img{
        width: 349px;
        height: 299px;
    }
       .gallery-section{
        margin-left: 45px;
    }
  
}

