JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.3/css/foundation.min.css">
        <div class="row center flip-boxes">
          <div class="small-3 spb_icon_box columns">
            <div class="spb-asset-content">
            <div class="sf-icon-box sf-icon-box-animated-alt animated-no-rounded">
            <div class="height-adjust"></div>
            <div class="inner">
            <div class="front" style="background-color:#263238;"><div class="back-title" data-title="Lorem Ipsum" style="color:#ffffff;"></div><div class="front-inner-wrap"><div id="sf-svg-28" class="sf-svg-icon-holder sf-svg-icon-animate business-outline_bulb-63 has-color" data-svg-src="http://uplift.swiftideas.com/wp-content/themes/uplift/images/svgs/business-outline_bulb-63.svg" data-anim-type="delayed" data-path-timing="ease-in" data-anim-timing="ease-out" style="stroke: rgb(255, 255, 255); opacity: 1;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 48 48"><g transform="translate(0, 0)">
            <path data-color="color-2" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke-linejoin="round" d="M2,24L6,24" style="stroke-dasharray: 4, 6; stroke-dashoffset: 0;"></path>
            <path data-color="color-2" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke-linejoin="round" d="M8.4,8.4L11.3,11.3" style="stroke-dasharray: 5, 7; stroke-dashoffset: 0;"></path>
            <path data-color="color-2" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke-linejoin="round" d="M24,2L24,6" style="stroke-dasharray: 4, 6; stroke-dashoffset: 0;"></path>
            <path data-color="color-2" fill="none" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke-linejoin="round" d="M39.6,8.4L36.7,11.3"...

CSS

.sf-icon-box {
    display: block;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.sf-icon-box-animated-alt {
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 4px;
  padding: 0;
  position: relative;
}
.sf-icon-box-animated-alt .inner {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.sf-icon-box-animated-alt .front {
    background: #f7f7f7;
    z-index: 2;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.sf-icon-box-animated-alt .front, .sf-icon-box-animated-alt .back {
    -webkit-transition: all 500ms cubic-bezier(1.000,0,.6,1);
    -moz-transition: all 500ms cubic-bezier(1.000,0,.6,1);
    -o-transition: all 500ms cubic-bezier(1.000,0,.6,1);
    transition: all 500ms cubic-bezier(1.000,0,.6,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sf-icon-box-animated-alt .front .back-title {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 25%;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: all 200ms cubic-bezier(1.000,0,.6,1);
    -moz-transition: all 200ms cubic-bezier(1.000,0,.6,1);
    -o-transition: all 200ms cubic-bezier(1.000,0,.6,1);
    transition: all 200ms cubic-bezier(1.000,0,.6,1);
}
.sf-icon-box-animated-alt .front-inner-wrap {
    width: 100%;
    height: auto;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
}

.sf-icon-box-animated-alt .back {
    background: #ccc;
    z-index: 3;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 25%;
    left: 0;
 ...