.team_wrap {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  overflow: hidden;
  padding: 16px;
}

.stats_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stats_circle_wrap {
  border: 5px solid;
  border-left-color: rgb(50, 167, 44);
  border-bottom-color: rgb(50, 167, 44);
  border-right-color: rgb(203, 51, 59);
  border-top-color: rgb(193, 194, 213);
  border-radius: 50%;
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stats_circle_subtitle {
  font-size: 20px;
  font-weight: 600;
  color: rgb(26, 49, 60);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.stats_circle_subtitle_accent {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.stats_circle_list {
  display: none;
}

.stats_right_wrap {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  gap: 16px;
}

.stats_info_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats_info_title {
  font-size: 18px;
  font-weight: 700;
}

.stats_info_subtitle {
  font-size: 11px;
  font-weight: 600;
  color: rgb(26, 49, 60);
}

.stats_info_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(165, 165, 165);
}

.stats_info_card_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats_info_card_wrap {
  height: 15px;
  width: 10px;
}

.team_position_list_wrap {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  overflow: hidden;
  padding: 16px;
}

.team_position_list_accordion_wrap {
  cursor: pointer;
  user-select: none;
}

.team_position_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.team_position_accordion_list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team_position_list_wrap.active .team_position_accordion_list {
  opacity: 1;
}

.team_position_item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  background-image: url("../images/52e66c0100e69346ccfc611e034b5fbe.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider_team_position_item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 64, 0.5);
  background-image: url("../images/52e66c0100e69346ccfc611e034b5fbe.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team_position_accordion_item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team_position_accordion_item.visible {
  opacity: 1;
  transform: translateY(0);
}

.team_position_link {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: ease 0.9s;
}

.team_position_link:hover {
  color: #00eeff;
}

.team_position_link_img_wrap {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}

.team_position_link_img_wrap img {
  transition: transform 0.9s ease;
}

.team_position_link:hover .team_position_link_img_wrap img {
  transform: scale(1.1);
}

.team_position_link_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team_position_info_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  padding: 16px;
  bottom: 0;
}

.team_position_info_title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.team_position_info_subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}

.team_position_info_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.awards_list {
  display: flex;
  gap: 24px;
}

.awards_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgb(26, 49, 60);
  transition: ease 0.9s;
  gap: 16px;
  height: 100%;
}

.awards_link:hover {
  color: rgb(12, 90, 166);
}

.awards_link_img {
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
}

.awards_link_info_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.awards_link_info_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.awards_link_info_text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .stats_right_wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .team_position_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .stats_circle_wrap {
    height: 150px;
    width: 150px;
  }

  .stats_circle_subtitle {
    font-size: 22px;
  }

  .stats_circle_subtitle_accent {
    font-size: 18px;
  }

  .stats_info_title {
    font-size: 20px;
  }

  .stats_info_subtitle {
    font-size: 13px;
  }
  .stats_info_text {
    font-size: 13px;
  }

  .team_position_info_title {
    font-size: 40px;
  }

  .team_position_info_subtitle {
    font-size: 18px;
  }

  .team_position_info_text {
    font-size: 25px;
  }

  .awards_link_info_title {
    font-size: 18px;
  }

  .awards_link_info_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .team_wrap {
    padding: 24px;
  }

  .stats_wrapper {
    grid-template-columns: 30% 70%;
    gap: 24px;
    align-items: flex-start;
  }

  .stats_left_wrap {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .stats_circle_list {
    width: 40%;
    display: block;
  }

  .stats_circle_item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(0, 0, 64, 0.35);
  }

  .stats_circle_item:last-child {
    border: none;
  }

  .stats_circle_item_subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgb(26, 49, 60);
  }

  .stats_circle_item_wrap {
    border-radius: 50%;
    height: 8px;
    width: 8px;
  }

  .stats_circle_item_text {
    font-size: 15px;
    font-weight: 500;
    color: rgb(26, 49, 60);
  }

  .stats_right_wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .stats_info_wrap {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .team_position_list_wrap {
    padding: 24px;
  }

  .team_position_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .stats_info_title {
    font-size: 24px;
  }

  .stats_info_subtitle {
    font-size: 15px;
  }
  .stats_info_text {
    font-size: 15px;
  }

  .stats_info_card_wrap {
    height: 20px;
    width: 15px;
  }

  .team_position_list {
    grid-template-columns: repeat(4, 1fr);
  }

  .team_position_link_img_wrap {
    aspect-ratio: 4/4;
  }

  .team_position_info_title {
    font-size: 50px;
  }

  .team_position_info_subtitle {
    font-size: 20px;
  }

  .team_position_info_text {
    font-size: 30px;
  }

  .awards_link_info_title {
    font-size: 20px;
  }

  .awards_link_info_text {
    font-size: 15px;
  }
}
