/* add your css rules here */

/* [FOR CONTAINERS WITH HIDDEN CONTENT THAT WILL SLIDE ON PARENT HOVER] */
	
	.hidden_content{
		position:absolute;
		bottom:-100%;
		transition:all, 1s;
		padding:10px;
		box-sizing:border-box;
		background-color:#6400aa;
	}
	
	
	[class^="col-"]:hover > .hidden_content{
		bottom:0;
	}
	
/* [] */	
	
	.col-2{
		width:48.8%;
	}
	
	
	.col-3{
		width:30.4%
	}
			
	.col-4{
		width:23.3%;
	}
		
		
	.border{
			border:thin solid #dddddd;
		}
		
	.border-left{
			border-left:thin solid #dddddd;
		}

	.border-right{
			border-right:thin solid #dddddd;
		}

	.border-top{
			border-top:thin solid #dddddd;
padding-top:20px !important;
		}

	.border-bottom{
			border-bottom:thin solid #dddddd;
		}	