.c-facts {
  padding: 0;
}
@media (max-width: 61.24em) {
.c-facts {
  padding: 1.5rem 0px;
}
}
.c-facts__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 61.24em) {
  .c-facts__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.c-facts__item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-facts__item-wrap h3{
  margin: 0px;
}
.c-facts__item-wrap img{
  width: 65px;
}
.c-facts__item{
  padding: 27px;
  background: #1c3b50;
}
.c-facts__item-wrap:hover img{
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
    -webkit-animation-iteration-count: infinite !important;
    animation-iteration-count: infinite !important;
}