.team-member-card__wrapper {
  max-width: 338px;
  transition: 0.3s ease background-color;
}
@media only screen and (max-width: 767px) {
  .team-member-card__wrapper {
    margin: 0 auto 40px auto;
    max-width: 70%;
  }
}
@media only screen and (max-width: 480px) {
  .team-member-card__wrapper {
    max-width: 100%;
  }
}
.team-member-card__wrapper:hover {
  background-color: #ffd101 !important;
}
.team-member-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-height: 398px;
}
.team-member-card__link:hover .tmc-top-box .team-member-card__image {
  opacity: 0;
}
.team-member-card__link:hover .tmc-top-box .team-member-card__image_hover {
  opacity: 1;
}
.team-member-card__link:hover .tmc-bottom-box .team-member-card__content {
  opacity: 0;
}
.team-member-card__link:hover .tmc-bottom-box .team-member-card__content_hover {
  opacity: 1;
}
.team-member-card .tmc-top-box {
  position: relative;
}
.team-member-card .tmc-top-box__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  opacity: 0.5;
  transition: 0.3s ease opacity;
}
.team-member-card .tmc-top-box__wrapper {
  position: absolute;
  border-left: 1px solid white;
  border-top: 1px solid white;
  border-right: 1px solid white;
  width: calc(100% - 24px);
  margin: 12px 12px 0 12px;
  height: 100%;
  padding: 12px;
  z-index: 20;
}
.team-member-card .tmc-bottom-box {
  padding: 0 12px 12px 12px;
}
.team-member-card .tmc-bottom-box__wrapper {
  border-left: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  padding: 12px;
  min-height: 160px;
  position: relative;
}
.team-member-card__image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  position: relative;
  z-index: 10;
  transition: 0.3s ease opacity;
}
.team-member-card__image_hover {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}
.team-member-card__content {
  position: relative;
  z-index: 15;
  transition: 0.3s ease opacity;
}
.team-member-card__content h2 {
  color: white;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
}
.team-member-card__content p {
  color: white;
  font-size: 22px;
  line-height: 26px;
  font-style: italic;
}
.team-member-card__content p:last-of-type {
  margin-bottom: 0;
}
.team-member-card__content_hover {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 12px;
}
.team-member-card__content_hover p,
.team-member-card__content_hover h2 {
  color: #555436 !important;
}
/*# sourceMappingURL=view.css.map */