.eut-icon-box-main {
    min-height: 360px;
}

.eut-icon-box-hover {
  min-height: 360px;
  display: none;
}

.hover {
  animation: 0s slidein;
  display: block;
}

.noactive {
  animation: 0s slideout;
  display: none;
}


/* @keyframes slideaway {
  from { display: block; }
  to { transform: translateY(50px); opacity: 0;}
}

@keyframes slideawayhover {
  from { display: none; }
  to { transform: translateY(50px); opacity: 1;}
} */


@keyframes slideout {
  from {
    opacity: 1;
    margin-bottom: 0%;
    width: 100%;
    display: block;
  }

  to {
    opacity: 0;
    margin-bottom: 0%;
    width: 100%;
    display: none;
  }
}

@keyframes slidein {
  from {
    opacity: 0;
    margin-bottom: 0%;
    width: 100%;
  }

  to {
    opacity: 1;
    margin-bottom: 0%;
    width: 100%;
    display: block;
  }
}