.our-team {
  background-color: #f1f1f2;
}
.our-team .content {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 0;
}
.our-team .content > p {
  padding: 24px 0;
  text-align: center;
}
.our-team .content h2 {
  text-align: center;
  text-transform: uppercase;
}
.our-team .content .team-list {
  display: flex;
  flex-flow: row wrap;
}
.our-team .content .team-list .partner {
  width: calc(20% - 20px);
  margin: 0 10px;
  text-align: center;
}
@media all and (max-width: 980px) {
  .our-team .content .team-list .partner {
    width: calc(33.33% - 20px);
  }
}
@media all and (max-width: 640px) {
  .our-team .content .team-list .partner {
    width: calc(50% - 20px);
  }
}
.our-team .content .team-list .partner img {
  width: 100%;
  filter: grayscale(1);
  margin-bottom: 20px;
  border-radius: 50%;
}
.our-team .content .team-list .partner a,
.our-team .content .team-list .partner a:visited {
  color: #ed1e79;
}
.our-team .content .team-list .partner .profile {
  display: none;
}
.our-team .content .team-link {
  padding: 48px;
  text-align: center;
}
#profile-information {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
#profile-information .window {
  width: 60%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 24px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
}
@media all and (max-width: 640px) {
  #profile-information .window {
    width: 90%;
    height: 70%;
  }
}
#profile-information .window .content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
}
#profile-information .window .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#profile-information .window .close-button::after {
  content: "\f2d3";
  font-family: 'FontAwesome';
  display: block;
  color: #000;
  font-size: 24px;
}
