.enews {
  display: flex;
}

.enews a{
    color: #0FACBD;
    font: 800 18px "Gotham A", "Gotham B";
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.enews a:hover {
    color: #2d647d;
}

.enews img {
  width: 33px;
  height: 15px;
  margin-bottom: 3px;
  margin-left: 2px;
}

.enews img.no-hover {
  display: inline-block;

}

.enews img.hover {
  display: none;
}

@media screen and (min-width: 1024px) {
  .enews:hover img.hover {
      display: inline-block;
      width: 145px;
      height: 112px;
  }

  .enews:hover img.no-hover {
      display: none;
  }
}
