JSFiddle - React, Tailwind, and code Playground

by HemalathaThanigaivel

HTML

<section class="we-wrapper">
  <div class="container">
    <div class="row">
      <div class="col text-center">
        <h2 class="os-regular">
        Here’s how we can make it happen for you
        </h2>
        <hr class="custom">
      </div>
    </div>
    




<div id="w">
    <div id="content">      
      <section class="clearfix">
        <div id="appIcon" data-position="left" data-offset="60" class="notViewed animBlock floatl">
          <div class="circle-text">
            <div class="cirlce-text-head text-center">
            <span>
            Limitless<br> scale
            </span>
          </div>
          <div class="circle-text-subhead text-center">
            <span>
            With Cloud<br> Solutions
            </span>
          </div>
          </div>
        </div>      
        <div id="appIcon" data-position="left" data-offset="60" class="notViewed animBlock floatl">
        <div class="circle-text">
          <div class="cirlce-text-head text-center">
            <span>
            Limitless<br> control
            </span>
            </div>
          <div class="circle-text-subhead text-center">
            <span>
            With Web<br> Applications
            </span>
            </div>
          </div>
        </div>      
        <div id="appIcon" data-position="right" data-offset="60" class="notViewed animBlock floatr">
        <div class="circle-text">
        <div class="cirlce-text-head text-center">
          <span>
            Limitless<br> connectivity
            </span>
            </div>
          <div class="circle-text-subhead text-center">
            <span>
            With IoT<br> & Devices
            </span>
            </div>
          </div>
        </div>
        <div id="appIcon" data-position="right" data-offset="60" class="notViewed animBlock floatr">
        <div class="circle-text">
        <div class="cirlce-text-head text-center">
            <span>
            Limitless<br> insights
           ...

CSS

/** page structure **/
.cirlce-text-head span{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 2px solid #808184;
}
.cirlce-text-subhead span{
    font-size: 24px !important;
    font-weight: 400;
}
#w {
    display: block;
    /* width: 750px; */
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 45px;
  }
  
  #content {
    display: block;
    width: 100%;
    background: #fff;
    padding: 25px 20px;
    padding-bottom: 35px;
  }
  
  .floatr {
    float: right;
  }
  
  .floatl { 
    float: left;
  }
  
  .bigdl {
    display: inline-block;
    padding: 20px 42px;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.25);
    border-width: 1px;
    border-style: solid;
    border-color: #325bd0 #4561bf #1f4ebb;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #2f59c4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#538ed8), to(#2f59c4));
    background-image: -webkit-linear-gradient(top, #538ed8, #2f59c4);
    background-image: -moz-linear-gradient(top, #538ed8, #2f59c4);
    background-image: -ms-linear-gradient(top, #538ed8, #2f59c4);
    background-image: -o-linear-gradient(top, #538ed8, #2f59c4);
    background-image: linear-gradient(to bottom, #538ed8, #2f59c4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.25);
  }
  .bigdl:hover {
    text-decoration: none;
    background: #3b64ce;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5e99e2), to(#3b64ce));
    background-image: -webkit-linear-gradient(top, #5e99e2, #3b64ce);
    background-image: -moz-linear-gradient(top, #5e99e2, #3b64ce);
    background-image: -ms-linear-gradient(top, #5e99e2,...