.swiper.sertificates-slider {
	margin-bottom:70px;
}
.sertificates-slider .swiper-slide{
	height: auto !important;
	display: flex;
}
.sert-slide{
	display: flex;
	align-items: center;
  justify-content: center;
	width: 100%;
  height: 330px;
}


.sert-slide img{
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 1200px){

}
@media screen and (max-width: 1025px){
  .sert-slide{
    height: 270px;
  }
}
@media screen and (max-width: 480px){
  .sert-slide{
    height: 160px;
  }
}

.sert-slide {
  position: relative;
  cursor: pointer;
}

.sert-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.sert-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 
    background-image: url(/local/templates/main/img/icons/lupa.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px 70px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.sert-slide:hover::after {
  opacity: 1;
}

 
.sert-slide img {
  transition: transform 0.3s ease;
}

.sert-slide:hover img {
  transform: scale(1.02);
}

 
@media screen and (max-width: 768px) {
  .sert-slide::after {
    background-size: 30px 30px;
  }
}

@media screen and (max-width: 480px) {
  .sert-slide::after {
    background-size: 25px 25px;
  }
}
