.teams_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.teams_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  color: rgb(26, 49, 60);
  transition: ease 0.9s;
}

.teams_link:hover {
  color: rgb(12, 90, 166);
}

.teams_link_img_wrap {
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  background: #ffffff;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.9s;
}

.slider_teams_link_img_wrap {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 64, 0.5);
  background: #ffffff;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.9s;
}

.teams_link:hover .teams_link_img_wrap {
  box-shadow: 0px 0px 25px rgba(0, 0, 64, 0.5);
}

.teams_link_img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.teams_link_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .teams_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .teams_link_title {
    font-size: 18px;
  }

  .teams_link_img_wrap {
    height: 110px;
    width: 110px;
  }

  .slider_teams_link_img_wrap {
    height: 110px;
    width: 110px;
  }

  .teams_link_img {
    height: 80px;
    width: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .teams_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .teams_link {
    gap: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .teams_link_title {
    font-size: 20px;
  }

  .teams_link_img_wrap {
    height: 130px;
    width: 130px;
  }

  .slider_teams_link_img_wrap {
    height: 130px;
    width: 130px;
  }

  .teams_link_img {
    height: 100px;
    width: 100px;
  }
}
