body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #151515;
	font-family: 'Open Sans', sans-serif;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;	
}

.main_container {
	display: table;
	padding: 0;
	height: 100%;
	max-width: 1200px;
    margin: 0 auto;
}

.theme_name {
	text-align: center;
	margin: 20px 0 40px 0;
}

.canvas {
	z-index: -9999;
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	z-index: -999;	
}

.canvas img{
	min-height: 50%;
	min-width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	height: auto;
}

.row
{
	width: 100%;
	display: block;
	vertical-align: middle;
	position: relative;
	margin: 0px;
	padding: 10px 0;
	overflow: auto;
}

.demo {
	display: inline;
	position: relative;
	width: 50%;
	float: left;
	padding: 25px;
}

.demo img {
	max-width: 100%;
	height: auto;
	transition: all 0.4s linear 0s;
	-webkit-transition: all 0.4s linear 0s;	
}

.demo_inner {
	width: 100%;
}

.demo:hover > .demo_title {
	color: #18aebf;
	letter-spacing: 7px;
}

.demo  img:hover {
	opacity: 0.6;
}

.clearfix {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.demo_title {
    font-family: "Open Sans";
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
	transition: all 0.4s linear 0s;
	-webkit-transition: all 0.4s linear 0s;		
}

.demo_details {
  display: block;
  line-height: 24px;
  font-size: 14px;
  color: #7b7b7b;
  text-align: center;
  margin-top: 7px;
}

.demos_page_title {
    margin: 0 auto;
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: 0px;
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;
}

.vibrant_color {
	color: #18aebf;
}

.title_desc {
	color: #fff;
    font-size: 13px;
    padding-top: 5px;
    letter-spacing: 3px;
    display: block;	
}

/* Landscape phones and down */
@media only screen  and (max-width : 480px) {
	.demo {
		width: 100%;
		margin-bottom: 20px;
	}
	.row {
		padding: 0;
		top: 0;
	}
}

/* Landscape phone to portrait tablet */
@media only screen  and (min-width: 480px) and (max-width : 768px) {
	.demo {
		width: 100%;
		margin-bottom: 20px;
	}
	.row {
		padding: 0;
		top: 0;
	}
	.demo  img:hover {
		margin-top: -5px;
		margin-bottom: 15px;
	}
	
	.main_container {
		padding: 50px 0;
	}
}

/* Portrait tablet to landscape and desktop */
@media only screen and (min-width: 768px) and (max-width: 979px) {
	.row{
		padding: 0
		margin-bottom: 20px;
	}
	.demo {
		padding: 15px;
	}
}

@media only screen and (min-width: 980px) and (max-width: 1199px) {
	.row{
		padding: 0
	}
	.demo {
		padding: 15px;
	}	
}