  .figure {
    position: relative;
    width: 360px; /* can be omitted for a regular non-lazy image */
    max-width: 100%;
    padding: 0px 10px;
    margin: 0px 0px 20px;
  }
  .figure img.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
  }
  .figure:hover img.image-hover {
    opacity: 1;
  }
.flex-container {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
}
.team-name{
padding: 0;
margin-top: 5px;
font-size: 20px;
font-weight: bold;
font-colour: #4A5054
}


