.partner-certs__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 20px;
}
.partner-certs__item {
  width: 100%;
  position: relative;
}
.partner-certs__item-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  z-index: 20;
}
.partner-certs__item-img img {
  max-width: 200px;
  max-height: 100%;
}
.partner-certs__item-img .is-tinted {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 250ms;
}
.partner-certs__item span {
  width: 100%;
  padding: 10px 15px 0;
  display: block;
  position: absolute;
  top: 0;
  line-height: 1.25;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transition: all 150ms ease-out;
  z-index: 10;
}
@media (min-width: 576px) {
  .partner-certs__item {
    width: calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .partner-certs__item {
    width: calc(33.3333333333% - 15px);
  }
  .partner-certs__item-img img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 992px) {
  .partner-certs__item {
    width: calc(25% - 15px);
  }
}
@media (min-width: 1400px) {
  .partner-certs__item {
    width: 16.6666666667%;
  }
}
@media (hover: hover) and (min-width: 992px) {
  .partner-certs__item:hover .is-tinted {
    opacity: 0;
    display: none;
  }
  .partner-certs__item:hover span {
    top: 100%;
    bottom: auto;
    opacity: 1;
  }
}

.serm-places__slider {
  padding-bottom: 60px;
}
.serm-places__slider .swiper-pagination span {
  width: 15px;
  height: 15px;
  margin-left: 5px !important;
  margin-right: 5px !important;
  background-color: #F3F2F2;
  clip-path: polygon(60% 0, 100% 30%, 90% 90%, 40% 100%, 0 70%, 10% 10%);
  opacity: 1;
}
.serm-places__slider .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #A7E8E5;
}
.serm-places__slider .swiper-slide {
  width: auto;
  position: relative;
  min-width: 200px;
}
.serm-places__item {
  background: #A7E8E5;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  padding: 16px;
}
.serm-places__item.with-img {
  display: flex;
  background: #ffffff;
  position: absolute;
  z-index: 1;
  max-height: 56px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 100ms;
}
.serm-places__item.with-img:hover {
  opacity: 1;
}
.serm-places__item.with-img img {
  max-height: 100%;
  max-width: 100%;
}
