
.container
{
  width: 100%;
  height: 60px;
  background: #b70e19;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.container .box
{
  position: relative;
  width: 300px;
  height: 50px;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.container .box:last-child
{
  border: none;
}

.container .box .icon
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 28px;
  transition: 0.5s;
}

.container .box .icon .fa
{
  padding-right: 10px;
  transition: 0.5s;
}

.container .box:hover .icon
{
  transform: translateY(-100%);
}

.container .box:hover .icon .fa
{
  transform: translateY(50px);
  font-size: 50px;
  opacity: .1;
  transition-delay: .5s;
  z-index: -1;
}

.container .box .details
{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  transition: 0.5s;
  font-size: 20px;
}

.container .box:hover .details
{
  transform: translateY(0);
}