.section_list_player {
  margin-top: 80px;
}
.tiltle_player {
  font-size: 20px;
  text-align: center;
}
.list_player_info {
  margin-top: 20px;
}
.list_player {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
}
.item_player_info {
  width: 230px;
  height: 300ox;
  background-color: #fff;
  margin: 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item_player_info_img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.item_player_info_name {
  font-size: 18px;
  width: 200px;
  text-align: center;
}
.item_player_info_club {
  font-size: 16px;
  width: 180px;
  text-align: center;
}
.item_player_info a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
}
/* player detail  */
.player_img_container {
  width: 80%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  grid-template-areas:
    "aa bb"
    "aa cc";
}
.player_img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
#player_img1 {
  grid-area: aa;
}
#player_img2 {
  grid-area: bb;
}
#player_img3 {
  grid-area: cc;
}
.player_statistical {
  background-color: #d9d9d9;
  border-radius: 55px;
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 30px auto;
}
#tournament_name {
  width: 100%;
  font-size: 22px;
  margin-top: -5px;
  text-align: center;
}
.statistical_title {
  margin-left: 50px;
}
.statistical_items {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
.statistical_item {
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 200px;
  height: 150px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.statistical_item-inf {
  font-weight: bold;
  font-size: 20px;
}
.statistical_item-num {
  font-weight: 500;
  font-size: 18px;
}
.detail_inf {
  display: flex;
  width: 80%;
  margin: 50px auto;
  justify-content: space-between;
}
#logoclub {
  border-radius: 30px;
  width: 300px;
  height: 350px;
}
