.image-box .card{
  box-shadow: none;
  transition: all .4s ease;
}

.image-box .card:hover{
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
}

.image-box .image-wrapper.horizontal{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.image-box .image-wrapper.horizontal .description-wrapper{
  flex: 1;
  min-width: 200px;
}

.image-box .image{
  width: 80px;
  max-width: 100%;
  margin-bottom: 20px;
  display: inline-block;
}

.image-box .image-wrapper.horizontal .button{
  float: right;
}

.image-box .button{
  margin-top: 30px;
}

.image-box .button span svg,
.image-box .button img{
  margin-left: 15px;
  transition: .4s all linear;
  height: 22px;
}

.image-box .button .button span{
  display: flex;
  align-items: center;
  justify-content: center;
}


.image-box .uk-card-title.heading{
  margin-bottom: 15px;
}
.image-box .uk-card-title.heading *{
  margin-bottom: 0px;
}

.image-box .description *{
  font-size: 16px;
  margin-bottom: 0;
}



{# Responsive CSS #}
@media only screen and (max-width: 767px) {
  .image-box .card{
    padding: 18px !important;
  }
}
