#certificats-block {
  margin-top: 40px;
  margin-bottom: 80px;
}
#certificats-block .certificats {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
#certificats-block .item {
  padding: 0 15px;
  flex: 0 0 25%;
  margin-bottom: 30px;
}
#certificats-block .item__img {
  box-shadow: 0px 0px 20px rgba(22, 37, 61, 0.05);
  position: relative;
  padding-top: 134%;
  height: auto;
  border-radius: 1px;
  overflow: hidden;
}
#certificats-block .item__img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding: 17px;
}
#certificats-block .item__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(229, 64, 68, 0.9);
  transition: all 0.3s ease-in;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}
#certificats-block .item__img-hover svg {
  display: block;
}
#certificats-block .item__svg {
  margin-bottom: 15px;
  transform: scale(0.3);
  transition: all 0.3s ease-in;
}
#certificats-block .item:hover {
  cursor: pointer;
}
#certificats-block .item:hover .item__img-hover {
  opacity: 1;
  transition: all 0.3s ease-in;
}
#certificats-block .item:hover .item__img-hover .item__svg {
  transform: scale(1);
  transition: all 0.3s ease-in;
}
#certificats-block .item__number {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
#certificats-block .item__name {
  margin-top: 5px;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}

@media (max-width: 1200px) {
  #certificats-block .item__name {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  #certificats-block .item {
    flex-basis: 33.3333333333%;
  }
}
@media (max-width: 760px) {
  #certificats-block .item__number {
    font-size: 14px;
  }
  #certificats-block .item__name {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  #certificats-block .certificats {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  #certificats-block .item {
    padding: 0 5px;
    flex-basis: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 430px) {
  #certificats-block .item {
    flex-basis: 100%;
  }
}/*# sourceMappingURL=block.css.map */