JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
		<div class="index_page">	
			<div class="container ">	
				<div class="row from_the_news cnt">
					<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 news_head"></div>
					
					<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 box_outer">
						<article class="box">
							<span class="pic corners5"><img class="img-responsive" src="images/news_pics/news-pic.jpg" width="305" height="134" alt=""></span>
							
							<p>We have recently completed beatiful website for  a luxury hair beauty y completed for  a luxury hair beauty boutique Salon Studio. The website is ...</p>
						</article>
					</div>
					
					<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 box_outer">
						<article class="box">
							<span class="pic corners5"><img class="img-responsive" src="images/news_pics/news-pic.jpg" width="305" height="134" alt=""></span>
							
							<p>We have recently completed beatiful website for  a luxury hair beauty boutique Smpleted beatiful website for  a luxury hair beauty boutique Salon Studio. The website is ...</p>
						</article>
					</div>

					<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 box_outer">
						<article class="box">
							<span class="pic corners5"><img class="img-responsive" src="images/news_pics/news-pic.jpg" width="305" height="134" alt=""></span>
							
							<p>We have recently completed beatiful website for  a luxury hair beauty boutique Salon Studio. The website is ...</p>
						</article>
					</div>						
				</div>
			</div>
		</div>

CSS

/************************************************************************************************************** 1.global reset and common settings */

html, body, div, h1, h2, h3, h4, h5, h6, a, a img, p, ul, ol, li, span, fieldset , form, dl, dd, dt, table, tr, td, img, input{ 
	border: none;
	margin: 0; 
	outline: none;	
	padding: 0;
}

html{
    height:100%;	
}

body{	
    height:100%;	
	font: normal 100% tahoma, arial, sans-serif;

}	

ul, li{
	list-style-type: none !important;
	list-style-image: none !important;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus { outline: none; }

textarea{
	resize: none;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	zoom:1;
}

.clear{
	clear: both;
}	
	
.hide{
	display: none;
}

.visible_wrap{
	width: 934px;
	overflow: hidden;
	margin: 0 auto;
}

.visible_wrap1000{
	width: 1000px;
	overflow: hidden;
	margin: 0 auto;
}

.corners{
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
}

.corners5{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

.btn{
	/*height: 67px;*/
	display: inline-block;
	padding: 0 12px;
	
	text-decoration: none;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
	font: 33px/67px 'Greyscale', arial, sans-serif;
}

.btn_red{
	background-color: #e73204; 
	background-image: -webkit-linear-gradient(bottom, #e73204, #eb4a09); 
	background-image:    -moz-linear-gradient(bottom, #e73204, #eb4a09); 
	background-image:     -ms-linear-gradient(bottom, #e73204, #eb4a09); 
	background-image:      -o-linear-gradient(bottom, #e73204, #eb4a09); 
	background-image:         linear-gradient(bottom, #e73204, #eb4a09); 
	
}

.btn_blue{
	background-color: #2d84dd; 
	background-image: -webkit-linear-gradient(bottom, #2d84dd, #68b3ec); 
	background-image:    -moz-linear-gradient(bottom, #2d84dd, #68b3ec);...