.c-partner {
  position: relative;
  min-height: 380px;
  padding: 50px 50px 30px;
  border-radius: 20px;
  overflow: hidden;
}
.c-partner:hover .c-partner__image img {
  transform: scale(1.1);
}
.c-partner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-partner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*transition: transform 0.3s ease-in-out;*/
}
.c-partner__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.c-partner__container img {
  border-radius: 50%;
  width: 128px;
  height: 128px;
}
.c-partner__container .o-button__arrow {
  margin: 20px auto 0;
  padding-right: 50px;
}
@media (max-width: 991.98px) {
  .c-partner__container .o-button__arrow {
    padding-right: 70px;
  }
}
.c-partner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c-partner__text h3 {
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.11;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.c-partner__text p {
  font-size: 1.125em;
  font-weight: normal;
  color: #fff;
  line-height: 1.44;
  margin: 0;
}