.team-part {
  margin-bottom: 95px;
}
.team-part h2 {
  font-size: 31px;
  font-family: "Cygre-Bold";
  margin-bottom: 30px;
}
.team-part__planner {
  margin-top: 40px;
  display: flex;
}
.team-part__img {
  margin-right: 20px;
}
.team-part__content {
  width: 100%;
}
.team-part__plan {
  display: block;
  padding: 27px;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.team-part__plan:not(:last-child) {
  margin-bottom: 20px;
}
.team-part__plan h3 {
  font-family: "Cygre-Bold";
  margin-bottom: 6px;
}
.team-part__plan:hover {
  background-color: #0B6BFB;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .team-part h2 {
    margin-bottom: 20px;
  }
  .team-part__img img {
    width: 370px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .team-part__planner {
    flex-direction: column;
  }
  .team-part__img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .team-part__img img {
    width: 100%;
  }
}