@charset "utf-8";
/* CSS Document */

/* ===== Reset ===== */

* { 
	margin: 0;
	padding: 0;
}

body {
	background-color: #1e1e1e;
	transition: background-color .6s ease-in;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #7e7e7e;
	line-height: 20px;
	cursor: default;
}

.clearfix {
	clear: both;
}

img {
	vertical-align: top;
}

a img {
	border: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Open Sans', sans-serif;
}

blockquote {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5em;
	font-weight: 300;
	color: #aaaaaa;
	line-height: 34px;
	padding-left: 35px;
	background: url(../images/@2x/quote-icon.png) no-repeat;
	background-size: 21px 15px;
}

.quote-author {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5em;
	font-weight: 300;
	color: #aaaaaa;
}

/* ===== End ===== */


/* ===== Main Menu ===== */

.header-section {
	width: 240px;
	height: 100%;
	position: fixed;
	margin-top: -40px;
	background-color: #1e1e1e;
	transition: background-color .6s ease-in;
	box-shadow: 3px 0px 3px #000000;
	z-index: 100;
}

.logo {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 12px 0px 14px 0px;
	background-color: #110f0f;
	transition: background-color .6s ease-in, border-bottom-color .6s ease-in;
	border-bottom: #dda146 solid 5px;
}


/* ===== Nav Menu ===== */

.header-section #navbtn {
  display: none;
  float: right;
  top: 0;
  margin-top: 18px;
  margin-right: 20px;
}

.main-menu {
	width: 100%;
	position: absolute;
	margin-top: 139px;
}

.main-menu ul ul {
	display: none;
}

.main-menu ul li:hover > ul {
	display: block;
}

.main-menu ul {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	text-align: right;
	list-style: none;
}

.main-menu ul li {
	padding: 10px 20px;
	position: relative;
	background-color: transparent;

	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
	-ms-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

.main-menu ul li:hover {
	background-color: #110f0f;
}

.main-menu ul li a {
	color: #ffffff;
	text-decoration: none;
}

.hover-active {
	width: 10px;
	height: 41px;
	position: absolute;
	top: 0;
	margin-left: 220px;
	/*background: url(../images/@2x/hover-active-menu.png) no-repeat;*/
	background-size: 10px 41px;
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.main-menu ul li:hover > .hover-active {
	opacity: 1;
}

.main-menu ul .menu-active {
	transition: background-color .6s ease-in;
	background-color: #110f0f;
}

.menu-active .hover-active {
	opacity: 1;
}

.main-menu ul ul {
	width: 190px;
	position: absolute;
	left: 100%;
	top: 0;
	padding-left: 20px;
	text-align: left;
	background: url(../images/blank.gif) repeat;
}

.main-menu ul ul li {
	float: none;
	position: relative;
	margin-bottom: 3px;
}

.main-menu ul ul li a {
	font-size: 14px;
}

.main-menu ul ul ul {
	position: absolute;
	left: 100%;
	top:0;
	padding-left: 3px;
}

.submenu-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #110f0f;
	z-index: -1;
	
	/* These three lines are for transparency in all browsers. */
	opacity: 0.8;
}

/* ===== Nav Menu End ===== */


/* ===== Main Menu Social Media Icon ===== */

.social-main {
	position: absolute;
	bottom: 0;
	right: 0;
	margin-right: 20px;
	margin-bottom: 10px;
}

.social-main ul {
	list-style: none;
}

.social-main ul li {
	display: inline;
	float: left;
	margin-left: 4px;
}

/* ===== Social Media End ===== */


/* ===== Content ===== */

.wrapper {
	width: 1024px;
	height: auto;
	/*margin: 40px auto;*/
	margin-top: 40px;
	margin-left: 290px;
}

.container {
	width: 100%;
	height: auto;
	margin-top: 20px;
}

.details {
	background-color: #2e2e2e;
	padding: 40px;
	display: table;
	transition: background-color .6s ease-in;
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.content-header {
	position: relative;
	margin-top: -13px;
	padding-bottom: 10px;
	overflow: hidden;
	border-bottom: #4e4e4e solid 1px;
}

.content-header h1{
	font-size: 2.2em;
	font-weight: 300;
	color: #dda146;
	line-height: 42px;
	float: left;
}

.content-header nav {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-bottom: 15px;
}

.content-header nav a {
	color: #aaaaaa;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.content-header nav a:hover {
	color: #ffffff;
}

.content-header ul {
	list-style: none;
}

.content-header ul li {
	display: inline;
	float: left;
	margin-left: 7px;
	padding-left: 13px;
	background: url(../images/back-space-non-breaking-space.png) no-repeat left;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.content-header ul li:first-child {
	background: none;
}

.content-body {
	margin-top: 28px;
}

.content-body a {
	text-decoration: none;
}

.content-body .large-button{
	margin-top: 40px;
}

/* ===== End ===== */


/* ===== Page Header ===== */

.page-header {
	width: 100%;
	height: 120px;
	display: table;
	background-color: #2e2e2e;
	box-sizing:border-box;
  	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;
	border-left: #dda146 solid 5px;
	transition: background-color .6s ease-in;
}

.light {
	background-color: #00aaaa;
	border-left: none;
}

.page-header .content {
	padding: 30px 40px;
	display: table-cell;
	vertical-align: middle;
}

.header-title {
	float: left;
	margin-top: 5px;
}

.header-title h1 {
	text-transform: uppercase;
}

.header-title h2 {
	font-size: 2.2em;
	font-weight: 300;
	line-height: 42px;
	color: #fff;
	float: left;
}

.page-header h1 {
	font-size: 2.5em;
	font-weight: 300;
	color: #ffffff;
	line-height: 25px;
}

.sub-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #aaaaaa;
	margin-top: 8px;
}

.light .sub-title {
	color: #ffffff;
}

.page-navigation {
	float: right;
	margin-top: 20px;
}

.page-navigation a {
	color: #aaaaaa;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.page-navigation a:hover {
	color: #ffffff;
}

.light .page-navigation a {
	color: #ffffff;
}

.page-navigation ul {
	list-style: none;
}

.page-navigation ul li {
	display: inline;
	float: left;
	margin-left: 7px;
	padding-left: 13px;
	background: url(../images/back-space-non-breaking-space.png) no-repeat left;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.light .page-navigation ul li {
	background: url(../images/back-space-non-breaking-space-white.png) no-repeat left;
}

.page-navigation ul li:first-child {
	background: none;
}

/* ===== Page Header End ===== */


/* ===== Grid Content Area ===== */

.grid-half {
	width: 502px;
	height: auto;
}

.left {
	float: left;
}

.right {
	float: right;
}

.large-grid {
	width: 100%;
	height: 502px;
	position: relative;
}

.large-grid a {
	text-decoration: none;
}

.large-grid .flip-front img {
	width: 100%;
	height: auto;
}

.large-grid .flip-back {
	width: 100%;
	height: 100%;
	background-color: #2e2e2e;
	padding: 30px;
	position: relative;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.large-grid .large-button {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 30px;
	margin-bottom: 30px;
}

.large-grid blockquote {
	margin-top: 120px;
}

.large-grid .quote-author {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 30px;
	margin-bottom: 40px;
}

.small-grid {
	list-style: none;
	margin-top: -20px;
	margin-left: -20px;
}

.small-grid li {
	width: 241px;
	height: 241px;
	float: left;
	margin-top: 20px;
	margin-left: 20px;
}

.left .small-grid {
	margin-top: 0px;
}

.right .large-grid {
	margin-top: 20px;
}

.small-grid .flip-front {
	width: 100%;
	height: 100%;
}

.small-grid .flip-front figure img {
	width: 100%;
	height: auto;
}

.icon .flip-front {
	width: 100%;
	height: 100%;
	background-color: #2e2e2e;
	position: relative;
	text-align: center;
}

.icon .grid-title {
	font-size: 1.5em;
	font-weight: 300;
	color: #aaaaaa;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	padding: 30px;
}

.icon .icon-light {
	background-color: #00aaaa;
}

.icon .text-white {
	color: #ffffff;
}

.text-colortwo {
	color: #ffffff;
}

.largest-font {
	font-size:3em;
	color:#aaaaaa;
}

.large-font {
	font-size:2em;
	font-weight:400;
	line-height:70px;
}

.half-feature-image img,
.fullwidth-feature img {
	width: 100%;
	height: auto;
}

/* ===== Grid Content Area End ===== */


/* ===== Grid Box Title ===== */

.box-title {
	width: 100%;
	height: 100%;
	background-color: #2e2e2e;
	position: relative;
	text-align: center;
}

.box-title h2 {
	font-size: 1.5em;
	font-weight: 300;
	color: #aaaaaa;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	padding: 30px;
}

.box-title .icon {
	padding-top: 28%;
}

.tiny-grid .icon {
	padding-top: 23%;
}

.tiny-grid h2 {
	font-size: 1em;
	font-weight: 400;
	padding: 20px;
}

/* ===== Grid Box Title End===== */


/* ===== Flip Back Details ===== */

.title-back {
	font-size: 1.5em;
	font-weight: 300;
	color: #ffffff;
	text-align: left;
}

.description-back {
	font-size: 14px;
	color: #ffffff;
	line-height: 20px;
	margin-top: 10px;
}

.text-gray {
	color: #aaaaaa;
}

.text-dark {
	color: #7e7e7e;
}

.more-details {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	position: absolute;
	bottom: 0;
	right: 0;
	margin-bottom: 33px;
	margin-right: 20px;
	padding-right: 27px;
	background: url(../images/@2x/plus-link-small.png) no-repeat right;
	background-size: 15px 15px;
}

.tiny-active {
	margin-bottom: 25px;
	padding-right: 20px;
	background: url(../images/@2x/plus-link-readmore.png) no-repeat right;
	background-size: 11px 11px;
}

.large-title-back {
	font-size: 2.2em;
	font-weight: 300;
	line-height: 45px;
	color: #aaaaaa;
}

.large-description-back {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5em;
	font-weight: 300;
	line-height: 34px;
	color: #7e7e7e;
	margin-top: 50px;
}

.active-details {
	width: 100%;
	height: 100%;
	background-color: #00aaaa;
	padding: 20px;
	position: relative;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.active-details a {
	opacity: 0.6;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.active-details a:hover {
	opacity: 1;
}

.tiny-title {
	font-weight: 300;
	margin-top: 0px;
}

.gray {
	background-color: #2e2e2e;
}

/* ===== Flip Back Details End ===== */


/* ===== Text Thumbnail ===== */

.small-thumb {
	width: 241px;
	height: 241px;
	background-color: #00aaaa;
	padding: 20px;
	position: relative;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.dark {
	background-color: #2e2e2e;
}

.small-thumb h2 {
	font-size: 1.5em;
	font-weight: 300;
	color: #ffffff;
	line-height: 33px;
}

.small-thumb .text-gray {
	color: #aaaaaa;
}

.small-thumb p {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	line-height: 20px;
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 20px;
	margin-bottom: 33px;
}

/* ===== Text Thumbnail End ===== */


/* ===== Call to Action ===== */

.call-action {
	width: 100%;
	height: 120px;
	margin-top: 40px;
	display: table;
	background-color: #2e2e2e;
	box-sizing:border-box;
  	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;
	border-left: #dda146 solid 5px;
}

.light {
	background-color: #00aaaa;
	border-left: none;
}

.call-action .content {
	padding: 30px 40px;
	display: table-cell;
	vertical-align: middle;
}

.call-action h1 {
	font-size: 2.2em;
	font-weight: 300;
	line-height: 42px;
	color: #aaaaaa;
	float: left;
}

.call-action a {
	text-decoration: none;
}

.call-action .large-button {
	float: right;
	margin: 38px 40px;
}

.full-grid {
	margin-top: 20px;
}

.sub-text {
	font-size:18px;
	font-weight:400;
	margin-left:10px;
}

/* ===== Call to Action End ===== */


/* ===== Service ===== */

.service ul {
	list-style: none;
	margin-left: -20px;
	margin-top: -20px;
}

.service ul li {
	width: 241px;
	height: 241px;
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

.service .flip-front {
	width: 100%;
	height: 100%;
	background-color: #2e2e2e;
	position: relative;
	text-align: center;
}

.service .grid-title {
	font-size: 1.5em;
	font-weight: 300;
	color: #aaaaaa;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	padding: 30px;
}

.service-icon {
	padding-top: 28%;
}

.service-large ul li {
	width: 502px;
	height: 502px;
	position: relative;
	background-color: #2e2e2e;
}

.service-large .thumb-hover img {
	width: 100%;
	height: auto;
}

.service-details {
	padding: 30px 40px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.service-details a {
	text-decoration: none;
}

.service-details h2 a {
	font-size: 24px;
	font-weight: 300;
	color: #aaaaaa;
	line-height: 20px;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.service-details h2 a:hover {
	color: #ffffff;
}

.service-details p {
	margin-top: 20px;
}

.service-details .large-button {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 40px;
	margin-bottom: 40px;
}

.service-large .thumb-hover {
	width: 502px;
	height: 251px;
}

/* ===== Service End ===== */


/* ===== Category Filter ===== */

.category-filter ul {
	list-style: none;
	margin-top: 15px;
}

.category-filter ul li {
	color:#aaaaaa;
	text-decoration: none;
	float: left;
	margin-right: 20px;
	display: inline;
	cursor: pointer;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.category-filter ul li:hover,
.category-filter .active {
	color: #ffffff;
}

.grid .mix{
    opacity: 0;
    display: none;
}

/* ===== Category Filter End ===== */


/* ===== Portfolio ===== */

.portfolio ul {
	list-style: none;
	margin-left: -20px;
	margin-top: -20px;
}

.portfolio ul li {
	width: 241px;
	height: 241px;
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

.portfolio ul li .flip-front img {
	width: 100%;
	height: auto;
}

.work-meta {
	width: 23%;
	padding-right: 20px;
}

.work-meta ul {
	list-style: none;
}

.work-meta ul li {
	margin-bottom: 15px;
}

.work-meta a {
	text-decoration: none;
}

.work-meta .work-button {
	margin-top: 28px;
}

.status {
	color: #ffffff;
}

.portfolio-detail {
	display: table-cell;
	width: 77%;
	vertical-align: top;
}

/* ===== Portfolio End ===== */


/* ===== Related Work ===== */

.related ul {
	list-style: none;
	margin-left: -20px;
	margin-top: -20px;
}

.related ul li {
	width: 241px;
	height: 241px;
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

.related .flip img {
	width: 100%;
	height: auto;
}

/* ===== Related Work End ===== */


/* ===== Gallery ===== */

.gallery-list ul {
	list-style: none;
	margin-left: -20px;
	margin-top: -20px;
}

.gallery-list ul li {
	width: 241px;
	height: 241px;
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

.gallery-list ul li img {
	width: 100%;
	height: auto;
}

/* ===== Gallery End ===== */


/* ===== Our Team ===== */

.team ul {
	list-style: none;
	margin-left: -20px;
	margin-top: -20px;
}

.team ul li {
	width: 241px;
	height: 241px;
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

.team .flip-front figure img {
	width: 100%;
	height: auto;
}

/* ===== Our Team End ===== */


/* ===== Blog ===== */

.blog {
	display: table;
	border-collapse: collapse;
}

.blog-content {
	display: table-cell;
	width: 704px;
	border-right: #1e1e1e solid 20px;
	transition: border-color .6s ease-in;
	vertical-align: top;
}

.content-list {
	list-style: none;
	margin-top: -20px;
}

.content-list li {
	width: 100%;
	height: auto;
	margin-top: 20px;
	background-color: #2e2e2e;
}

.content-list .thumb-hover img {
	width: 100%;
	height: auto;
}

.blog-details {
	padding: 30px 40px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.blog-details a {
	text-decoration: none;
}

.blog-details h2 a {
	font-size: 24px;
	font-weight: 300;
	color: #aaaaaa;
	line-height: 20px;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.blog-details h2 a:hover {
	color: #ffffff;
}

.blog-details p {
	margin-top: 20px;
}

.bottom-active {
	width: 100%;
	margin-top: 20px;
	overflow: hidden;
}

.blog-meta {
	margin-top: 5px;
	float: left;
}

.blog-meta-details {
	margin:0px 12px 0px 8px;
}

.blog-single {
	float: none;
	padding-top: 15px;
	border-top: #4e4e4e solid 1px;
}

.blog-meta a {
	color: #7e7e7e;
	text-decoration: none;
}

.blog-meta a:hover {
	text-decoration: underline;
}

.bottom-active .readmore-button{
	float: right;
}

.next-page ul {
	margin-top: 20px;
	float: right;
	list-style: none;
}

.next-page ul li {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #aaaaaa;
	width: 23px;
	height: 27px;
	float: left;
	margin-left: 5px;
	text-align: center;
	padding-top: 3px;
	vertical-align: middle;
	background-color: #2e2e2e;
	
	-webkit-transition: color, background-color 0.2s ease-in-out;
	-moz-transition: color, background-color 0.2s ease-in-out;
	-ms-transition: color, background-color 0.2s ease-in-out;
	-o-transition: color, background-color 0.2s ease-in-out;
	transition: color, background-color 0.2s ease-in-out;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.next-page ul li:hover{
	color: #ffffff;
	background-color: #00aaaa;
}

.next-page .page-active {
	color: #ffffff;
	background-color: #00aaaa;
}

.next {
	background: url(../images/@2x/next.png) no-repeat center;
	background-size: 8px 11px;
}

.next:hover {
	background: url(../images/@2x/next-white.png) no-repeat center;
	background-size: 8px 11px;
}

.blog-single-details {
	width: 100%;
	height: auto;
	padding: 30px 40px 40px 40px;
	background-color: #2e2e2e;
	overflow: hidden;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.blog-single-details h1 {
	font-size: 24px;
	font-weight: 300;
	color: #ffffff;
	margin-bottom: 20px;
}

.blog-single-content {
	margin-top: 20px;
}

.blog-related ul {
	list-style: none;
	margin-left: -20px;
}

.blog-related ul li {
	width: 161px;
	height: 161px;
	float: left;
	margin-top: 20px;
	margin-left: 20px;
}

.blog-related .flip-front img {
	width: 100%;
	height: auto;
}

/* ===== Blog End ===== */


/* ===== Blog Comment ===== */

.comment-area {
	margin-top: 30px;
}

.comment-area h1 {
	font-size: 24px;
	font-weight: 300;
	color: #ffffff;
	text-transform: uppercase;
}

.comment-area ul {
	list-style: none;
}

.comment-number {
	margin-left:15px;
}

.comment-list {
	display: table;
	margin-top: 20px;
	background-color: #2e2e2e;
	border-left: #00aaaa solid 5px;
	border-collapse: separate;
	border-spacing: 30px;
}

.comment-date {
	font-size:12px;
	color:#aaaaaa;
	margin-left:10px;
}

.comment-reply {
	background-color: #4e4e4e;
}

.comment-reply p {
	color: #aaaaaa;
}

.avatar-table {
	display: table-cell;
	vertical-align: top;
	padding: 0px 5px;
}

.avatar-table figure {
	width: 75px;
	border-radius: 50%;
	overflow: hidden;
}

.avatar-table figure img {
	width: 100%;
	height: auto;
}

.comment-table {
	display: table-cell;
}

.comment-table p {
	margin-top: 15px;
}

.comment-top {
	overflow: hidden;
}

.name-date {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	float: left;
}

.reply {
	float: right;
}

.reply a {
	color: #aaaaaa;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.reply a:hover {
	color: #ffffff;
}

/* ===== Blog Comment End ===== */


/* ===== Social Share Button ===== */

#social-share {
	margin-top: 25px;
}

#social-share .share-this {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #aaaaaa;
	margin-bottom: 10px;
}
  
#social-share a {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	float: left;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#social-share .facebook {
	background-color: #36bfc4;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

#social-share .facebook:hover {
	background-color: #31aeb3;
}
  
#social-share .twitter {
	background-color: #96d7e3;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

#social-share .twitter:hover {
	background-color: #89c4cf;
}
  
#social-share .googleplus {
	background-color: #ee7760;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

#social-share .googleplus:hover {
	background-color: #de705b;
}

/* ===== Social Share Button End ===== */


/* ===== Contact ===== */

.map {
	width: 100%;
	height: 502px;
}

#map-canvas {
    margin: 0;
    padding: 0;
    height: 100%;
}

.contact {
	display: table;
}

.contact-info {
	display: table-cell;
	width: 502px;
	background-color: #2e2e2e;
}

.send-message {
	display: table-cell;
	width: 502px;
	border-right: #1e1e1e solid 20px;
	vertical-align: top;
}

.send-message .message {
	margin-top: 0px;
	padding: 35px 40px 20px 40px;
}

.message h2 {
	font-size: 24px;
	font-weight: 300;
	color: #ffffff;
	text-transform: uppercase;
}

.message input {
	margin-top: 20px;
}

.email_success {
	color: #aaaaaa;
	text-align: right;
	margin-top: 20px;
}

.info-box {
	padding: 35px 40px;
}

.info-box h2 {
	font-size: 24px;
	font-weight: 300;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.info-box ul {
	list-style: none;
}

.info-box ul li {
	margin-top: 5px;
}

.info-box .blog-single-content {
	margin-top: 30px;
}

.info-box .blog-single-content figure {
	float: left;
	margin: 0px 25px 15px 0px;
}

.contact-meta {
	color:#7e7e7e;
	margin-left:10px;
}

/* ===== Contact End ===== */


/* ===== Sidebar ===== */

aside {
	display: table-cell;
}

.sidebar {
	width: 300px;
}

.sidebar-box {
	width: 100%;
	margin-bottom: 20px;
}

.sidebar-title {
	background-color: #00aaaa;
}

.sidebar-title h2{
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
	padding: 15px 30px;
}

.sidebar-details {
	width: 100%;
	height: auto;
	padding: 20px;
	background-color: #2e2e2e;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}


/* ===== Sidebar Recent News ===== */

.recent {
	list-style: none;
	margin-top: -10px;

}

.recent li {
	padding: 20px 0px;
	border-bottom: #4e4e4e solid 1px;
}

.recent li:last-child {
	border-bottom: none;
}

.recent-list {
	display: table;
}

.recent-list figure {
	display: table-cell;
	width: 65px;
	position: relative;
	float: left;
	margin-right: 20px;
}

.recent-list figure img {
	width: 100%;
	height: auto;
}

.recent-details {
	display: table-cell;
	vertical-align: top;
}

.recent-details h4 a {
	font-size: 14px;
	font-weight: 400;
	color: #aaaaaa;
	line-height: 20px;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.recent-details h4 a:hover {
	color: #ffffff;
}

.recent-details a {
	text-decoration: none;
}

.readmore {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #ffffff;
	line-height: 11px;
	text-transform: uppercase;
	padding-left: 20px;
	margin-top: 13px;
	background: url(../images/@2x/plus-link-readmore.png) no-repeat left center;
	background-size: 11px 11px;
	
	-webkit-transition: padding-left 0.5s ease-in-out;
	-moz-transition: padding-left 0.5s ease-in-out;
	-ms-transition: padding-left 0.5s ease-in-out;
	-o-transition: padding-left 0.5s ease-in-out;
	transition: padding-left 0.5s ease-in-out;
}

.readmore:hover {
	padding-left: 25px;
}

/* ===== Sidebar Recent News End ===== */


/* ===== Sidebar Categories ===== */

.category {
	list-style: none;
	margin-top: -10px;
}

.category li {
	padding: 15px 20px;
	border-bottom: #4e4e4e solid 1px;
}

.category li:last-child {
	padding: 10px 20px;
	margin-top: 5px;
	border-bottom: none;
}

.category li a {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #aaaaaa;
	text-decoration: none;
	
	-webkit-transition: color 0.5s ease-in-out;
	-moz-transition: color 0.5s ease-in-out;
	-ms-transition: color 0.5s ease-in-out;
	-o-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

.category li a:hover {
	color: #ffffff;
}

.category-list {
	padding-left: 20px;
	background: url(../images/@2x/plus-link-readmore.png) no-repeat left center;
	background-size: 11px 11px;
	
	-webkit-transition: padding-left 0.5s ease-in-out;
	-moz-transition: padding-left 0.5s ease-in-out;
	-ms-transition: padding-left 0.5s ease-in-out;
	-o-transition: padding-left 0.5s ease-in-out;
	transition: padding-left 0.5s ease-in-out;
}

.category-list:hover {
	padding-left: 25px;
}

/* ===== Sidebar Categories End ===== */


/* ===== Sidebar Gallery ===== */

.gallery {
	list-style: none;
	overflow: hidden;
}

.gallery li {
	float: left;
}

.gallery-list figure {
	position: relative;
}

.sidebar-box .gallery .gallery-list {
	width: 75px;
	height: 75px;
}
	
.sidebar-box .gallery img {
	width: 100%;
	height: auto;
}

/* ===== Sidebar Gallery End ===== */


/* ===== Sidebar Tags ===== */

.sidebar-tags {
	list-style: none;
	margin-top: 15px;
}

.sidebar-tags li {
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	padding: 5px 10px;
	background-color: #2e2e2e;
	border-radius: 3px;
	
	-webkit-transition: background-color 0.5s ease;
	-moz-transition: background-color 0.5s ease;
	-ms-transition: background-color 0.5s ease;
	-o-transition: background-color 0.5s ease;
	transition: background-color 0.5s ease;
}

.sidebar-tags li:hover {
	background-color: #00aaaa;
}

.sidebar-tags a {
	text-decoration: none;
	color: #aaaaaa;
	
	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

.sidebar-tags a:hover {
	color: #ffffff;
}

/* ===== Sidebar Tags End ===== */


/* ===== Footer Top ===== */

.footer-section {
	width: 1024px;
	height: auto;
	margin-top: 20px;
	margin-left: 290px;
	padding: 35px 30px 0px 30px;
	background-color: #2e2e2e;
	overflow: hidden;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.footer-text {
	font-size: 14px;
	font-weight: normal;
	color: #7e7e7e;
	line-height: 20px;
}

.footer-title {
	font-size: 20px;
	font-weight: 600;
	color: #aaaaaa;
	line-height: 16px;
}

.footer-content {
	margin-top: 30px;
}

.footer-about .footer-content {
	margin-top: 0px;
}

.footer-about {
	width: 302px;
	height: auto;
	float: left;
	margin-right: 29px;
}

.footer-contact {
	width: 302px;
	height: auto;
	float: left;
	margin-right: 29px;
}

.footer-contact ul {
	list-style: none;
}

.footer-contact ul li {
	border-bottom: #404040 solid 1px;
	padding: 15px 0px;
}

.footer-contact ul li:first-child {
	padding: 0px 0px 15px 0px;
}

.footer-contact ul li:last-child {
	border-bottom: none;
}

.footer-contact .email {
	background: url(../images/@2x/footer-icon-email.png) no-repeat;
}

.footer-contact .phone {
	background: url(../images/@2x/footer-icon-phone.png) no-repeat;
}

.contact-list {
	width: 100%;
	height: 41px;
	display: table;
	padding-left: 55px;
	box-sizing:border-box;
  	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;
	background: url(../images/@2x/footer-icon-home.png) no-repeat;
	background-size: 41px 41px !important;
}

.contact-list span {
	display: table-cell;
	vertical-align: middle;
}

.footer-subscribe {
	width: 302px;
	height: auto;
	float: right;
}

.footer-subscribe a {
	text-decoration: none;
}

/* ===== Footer Top End ===== */


/* ===== Footer bottom ===== */

.footer-bottom {
	width: 100%;
	height: auto;
	margin-top: 40px;
	margin-bottom: 20px;
	overflow: hidden;
}

.copyright {
	font-size: 12px;
	font-weight: normal;
	color: #7e7e7e;
	float: left;
}

.copyright a {
	color: #7e7e7e;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.copyright a:hover {
	color: #cccccc;
}

.footer-bottom nav {
	float: right;
}

.footer-bottom ul {
	list-style: none;
}

.footer-bottom ul li {
	display: inline;
	float: left;
	margin-left: 14px;
}

.footer-bottom ul li a {
	font-size: 12px;
	font-weight: normal;
	color: #7e7e7e;
	text-decoration: none;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.footer-bottom ul li a:hover {
	color: #cccccc;
}

/* ===== Footer bottom End ===== */


/** ===== Go To Top ===== **/

.back-to-top {
	width: 40px;
	height: 40px;
    position: fixed;
    bottom: 2em;
    right: 0px;
	background: url(../images/@2x/go-to-top.png) no-repeat;
	background-size: 40px 40px;
	opacity: 0.5;
	z-index: 100;
    display: none;
}

.back-to-top:hover {    
    opacity: 0.7;
}

/** ===== Go To Top End ===== **/


/** ===== for Firefox only ===== **/

@-moz-document url-prefix() {
    .comment-active {
		margin-top: 13px;
	}
}

body[theme=yellow] { background-color: #33311e; }
body[theme=yellow] .page-header, body[theme=yellow] .details, body[theme=yellow] .gray, body[theme=yellow] .header-section, body[theme=yellow] .service-large ul li { background-color: #554f11; }
body[theme=yellow] .blog-content { border-color: #33311e; }
body[theme=yellow] .logo, body[theme=yellow] .menu-active, body[theme=yellow] .submenu-bg { background-color: #262304; }

body[theme=brown] { background-color: #2f251f; }
body[theme=brown] .page-header, body[theme=brown] .details, body[theme=brown] .gray, body[theme=brown] .header-section, body[theme=brown] .service-large ul li { background-color: #3e2617;}
body[theme=brown] .blog-content { border-color: #2f251f; }
body[theme=brown] .logo, body[theme=brown] .menu-active, body[theme=brown] .submenu-bg { background-color: #2c1404; }

body[theme=green] { background-color: #22331e; }
body[theme=green] .page-header, body[theme=green] .details, body[theme=green] .gray, body[theme=green] .header-section, body[theme=green] .service-large ul li { background-color: #172414; }
body[theme=green] .blog-content { border-color: #22331e; }
body[theme=green] .logo, body[theme=green] .menu-active, body[theme=green] .submenu-bg { background-color: #092203; }

body[theme=red] { background-color: #33201e; }
body[theme=red] .page-header, body[theme=red] .details, body[theme=red] .gray, body[theme=red] .header-section, body[theme=red] .service-large ul li { background-color: #4b1b14; }
body[theme=red] .blog-content { border-color: #33201e; }
body[theme=red] .logo, body[theme=red] .menu-active, body[theme=red] .submenu-bg { background-color: #290904; }

body[theme=blue] { background-color: #20303c; }
body[theme=blue] .page-header, body[theme=blue] .details, body[theme=blue] .gray, body[theme=blue] .header-section, body[theme=blue] .service-large ul li { background-color: #092b43; }
body[theme=blue] .blog-content { border-color: #20303c; }
body[theme=blue] .logo, body[theme=blue] .menu-active, body[theme=blue] .submenu-bg { background-color: #041827; }

/******* hover.css ***********/

@charset "utf-8";
/* CSS Document */

/**
	Gridz Site Template
 	Copyright (c) 2013, Pophonic 

	Author: Pophonic
	Profile: themeforest.net/user/pophonic
	
**/

/* ===== Flip Hover Effect ===== */

.flip {
    position: relative;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    -o-perspective: 1000;
    perspective: 1000;
}

.flip .flip-front, .flip .flip-back {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.75s;
    -moz-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
}

.flip .flip-front {
    z-index: 5;
}

.flip .flip-back {
    z-index: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.flip:hover .flip-front {
    z-index: 5;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip:hover .flip-back {
    z-index: 10;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.flip a {
	text-decoration: none;
}

/* ===== End ===== */


/* ===== Scale Hover Effect ===== */

.thumb-hover {
	position: relative;
	overflow: hidden;
}

.thumb-hover figure {
	transition:All 1s ease-in-out;
	-webkit-transition:All 1s ease-in-out;
	-moz-transition:All 1s ease-in-out;
	-o-transition:All 1s ease-in-out;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
}

.thumb-hover figure:hover {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}

.cover {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

.sidebar-cover {
	opacity: 0;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

.cover:hover {
	opacity: 1;
}

.cover-background {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #1e1e1e;
	z-index: 0;
	opacity: 0.5;
}

.plus-hover {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	background: url(../images/@2x/plus-hover.png) no-repeat center;
	background-size: 50px 50px;
}

.zoom {
	background: url(../images/@2x/zoom-hover.png) no-repeat center;
	background-size: 50px 50px;
}

/* ===== End ===== */

/******** button.css ********/

@charset "utf-8";
/* CSS Document */

/**
	Gridz Site Template
 	Copyright (c) 2013, Pophonic 

	Author: Pophonic
	Profile: themeforest.net/user/pophonic
	
**/

/* ===== Button ===== */

.large-button {
	width: 195px;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background-color: #dda146;
	padding: 12px;
	border-radius: 5px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.dark-button {
	background-color: #1e1e1e;
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.large-button:hover,
.work-button:hover,
.readmore-button:hover {
	background-color: #110f0f;
}

.dark-button:hover {
	background-color: #2e2e2e;
}

.work-button {
	width: 140px;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	background-color: #00aaaa;
	padding: 10px;
	border-radius: 5px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.readmore-button {
	width: 107px;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	background-color: #00aaaa;
	padding: 5px 10px;
	border-radius: 5px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

/* ===== End ===== */

/****** form.css ******/

@charset "utf-8";
/* CSS Document */

/**
	Gridz Site Template
 	Copyright (c) 2013, Pophonic 

	Author: Pophonic
	Profile: themeforest.net/user/pophonic
	
**/

/* ===== Subscribe Field Box ===== */

.subscribe-box {
	width: 100%;
	height: auto;
	margin-top: 25px;
}

.subscribe-box input {
	font-size: 12px;
	font-weight: normal;
	width: 145px;
	height: 33px;
	padding: 0px 15px;
	color: #6e6e6e;
	background-color: #1e1e1e;
	border: #404040 solid 1px;
	border-radius: 5px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.subscribe-box .first-name {
	float: left;
	margin-right: 12px;
}

.subscribe-box .email {
	width: 100%;
	margin-top: 12px;
}

.subscribe-box .subscribe-button {
	width: 145px;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	float: right;
	background-color: #110f0f;
	margin-top: 20px;
	padding: 9px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.subscribe-box .subscribe-button:hover {
	background-color: #dda146;
}

/* ===== End ===== */


/* ===== Subscribe placeholder color ===== */

.subscribe-box .placeholder { /* Internet Explorer */
	color: #6e6e6e;
}

.subscribe-box input::-webkit-input-placeholder { /* WebKit browsers */
    color: #6e6e6e;
}

.subscribe-box input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #9e9e9e;
}
.subscribe-box input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #9e9e9e;
}

/* ===== End ===== */


/* ===== Leave a Comment ===== */

.leave-comment {
	margin-top: 20px;
	padding: 35px 40px;
	background-color: #2e2e2e;
}

.leave-comment input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	width: 302px;
	height: 35px;
	padding: 0px 20px;
	color: #aaaaaa;
	background-color: #4e4e4e;
	border: #4e4e4e solid 1px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.leave-comment .input-name {
	float: left;
	margin-right: 20px;
}

.leave-comment textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	width: 100%;
	height: 200px;
	margin-top: 20px;
	padding: 10px 20px;
	color: #aaaaaa;
	background-color: #4e4e4e;
	border: #4e4e4e solid 1px;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.comment-active {
	margin-top: 10px;
	overflow: hidden;
}

.comment-active span {
	float: left;
	color: #aaaaaa;
	line-height: 14px;
}

.comment-active .submit-button {
	width: 165px;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	float: right;
	background-color: #110f0f;
	margin-top: 5px;
	padding: 9px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	
	/* div padding fix */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.comment-active .submit-button:hover {
	background-color: #dda146;
}

/* ===== End ===== */


/* ===== Leave a comment placeholder color ===== */

.leave-comment .placeholder { /* Internet Explorer */
	color: #aaaaaa;
}

.leave-comment input::-webkit-input-placeholder,
.leave-comment textarea::-webkit-input-placeholder { /* WebKit browsers */
    color: #aaaaaa;
}

.leave-comment input:-moz-placeholder,
.leave-comment textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #eeeeee;
}
.leave-comment input::-moz-placeholder,
.leave-comment textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #eeeeee;
}

/* ===== End ===== */

/******* responsive.css ******/

@charset "utf-8";
/* CSS Document */

/**
	Gridz Site Template
 	Copyright (c) 2013, Pophonic 

	Author: Pophonic
	Profile: themeforest.net/user/pophonic
	
**/

/* ===== Design for a width of 1280px ===== */

@media only screen and (max-width:1280px)
{
	
	/** Main Menu **/

	.header-section {
		width: 205px;
	}
	
	/** Nav Menu **/
	
	.hover-active {
		margin-left: 185px;
	}
	
	/** Content **/

	.wrapper,
	.footer-section {
		margin-left: 225px;
	}
}


/* ===== Design for a width of 1264px ===== */

@media only screen and (max-width:1264px)
{
	
	/** Main Menu **/

	.header-section {
		width: 195px;
	}
	
	/** Nav Menu **/
	
	.hover-active {
		margin-left: 175px;
	}
	
	/** Content **/

	.wrapper,
	.footer-section {
		margin-left: 210px;
	}
	
	/** Main Menu Social Media Icon **/
	
	.social-main ul li {
		margin-left: 2px;
	}
}


/* ===== Design for a width of 1024px ===== */

@media only screen and (max-width:1024px)
{
	
	/** Main Menu **/
	
	.header-section {
		width: 1024px;
		height: auto;
		position: relative;
		margin-top: 0px;
		box-shadow: 0px 3px 3px #000000;
		overflow: hidden;
	}
	
	.logo {
		width: 130px;
		height: auto;
		padding: 10px 0px 5px 0px;
		text-align: center;
		border-bottom: none;
	}
	
	.logo img {
		width: 80px;
		height: auto;
	}
	
	.main-menu {
		display: none;
		position: static;
		width: 100%;
		top: auto;
		right: auto;
		margin-top: 0px;
	}
	
	.main-menu ul {
		text-align: left;
		background-color: #009797;
	}
	
	.main-menu ul li {
		float: none;
		margin: 0;
	}
	
	.main-menu ul li a {
		display: block;
		width: 100%;
	}
	
	.main-menu ul li:hover {
		background-color: transparent;
	}
	
	.main-menu ul li:hover > .hover-active {
		display: none;
	}
	
	.main-menu ul .menu-active {
		background-color: transparent;
	}
	
	.hover-active {
		display: none;
	}
	
	.main-menu ul ul {
		width: 100%;
		position: relative;
		left: 0;
		top: 0;
		margin-top: 10px;
		margin-bottom: -10px;
		display: block;
	}
	
	.main-menu ul ul li {
		float: none;
		position: relative;
		margin-bottom: 0px;
	}
	
	.main-menu ul ul ul {
		position: relative;
		left: 0;
		top: 0;
		padding-left: 20px;
	}
	
	.header-section #navbtn {
		display: block;
	}
	
	.social-main {
		display: none;
	}
	
	
	/** Content **/
	
	.wrapper {
		margin: 0 auto;
		margin-top: 40px;
	}
	
	
	/** Footer Top **/
	
	.footer-section {
		margin: 0 auto;
		margin-top: 20px;
	}
}


/* ===== Design for a width of 768px to 1023px ===== */

@media only screen and (max-width:1023px)
{
	/** Main Menu **/
	
	.header-section {
		width: 100%;
	}
	
	
	/** Content **/
	
	.wrapper {
		width: 728px;
	}
	
	.content-header h1{
		float: none;
	}
	
	.content-header nav {
		position: relative;
		margin: 10px 0px 10px -20px;
		overflow: hidden;
	}
	
	
	/** Blockquote **/
	
	blockquote {
		font-size: 2em;
		line-height: 40px;
	}
	
	
	/** Grid Content Area **/
	
	.grid-half {
		width: 728px;
	}
	
	.left {
		float: none;
	}
	
	.right {
		float: none;
	}
	
	.large-grid {
		height: 728px;
	}
	
	.large-grid figure {
		width: 728px;
	}
	
	.large-grid img {
		width: 100%;
		height: auto;
	}
	
	.small-grid li {
		width: 354px;
		height: 354px;
	}
	
	.small-grid li figure img {
		width: 100%;
		height: auto;
	}
	
	.icon .service-icon {
		padding-top: 33%;
	}
	
	.grid-half .banner-slide {
		margin-bottom: 40px;
	}
	
	.half-feature-image {
		width: 728px;
		height: 728px;
		margin-bottom: 20px;
	}
	
	.half-feature-image img,
	.fullwidth-feature img {
		width: 100%;
		height: auto;
	}
	
	
	/** Service **/
	
	.service ul {
		margin-left: -19px;
	}
	
	.service ul li {
		width: 230px;
		height: 230px;
		margin-left: 19px;
	}
	
	.service-large ul {
		margin-top: 20px;
	}
	
	.service-large ul li {
		width: 728px;
		height: auto;
		float: none;
		overflow: hidden;
	}
	
	.service-large .thumb-hover {
		width: 100%;
		height: auto;
	}
	
	.service-large .thumb-hover img {
		width: 100%;
		height: auto;
	}
	
	.service-details .large-button {
		position: relative;
		float: right;
		margin-top: 30px;
		margin-bottom: 40px;
		margin-right: 0px;
	}
	

	/** Portfolio, Gallery, Team, Related Grid **/
	
	.portfolio ul,
	.gallery-list ul,
	.team ul,
	.related ul {
		margin-left: -19px;
	}
	
	.portfolio ul li,
	.gallery-list ul li,
	.team ul li,
	.related ul li {
		width: 230px;
		height: 230px;
		margin-left: 19px;
	}
	
	.portfolio .flip img,
	.gallery-list ul li img,
	.team .flip img,
	.related .flip img {
		width: 100%;
		height: auto;
	}
	
	.work-meta {
		width: 30%;
	}
	
	.portfolio-detail {
		width: 70%;
	}
	
	
	/** Blog **/
	
	.blog-content {
		width: 483px;
	}
	
	.content-list .thumb-hover img {
		width: 100%;
		height: auto;
	}
	
	.blog-details h2 a {
		line-height: 28px;
	}
	
	.bottom-active .readmore-button{
		margin-top: 20px;
	}
	
	.blog-related ul {
		margin-left: -21px;
	}
	
	.blog-related ul li {
		width: 147px;
		height: 147px;
		margin-left: 21px;
	}
	
	.blog-related .flip-front img {
		width: 100%;
		height: auto;
	}
	
	/* Leave a Comment */
	
	.leave-comment .input-email {
		margin-top: 20px;
	}
	
	
	/** Sidebar **/
	
	.sidebar {
		width: 225px;
	}
	
	
	/** Contact **/
	
	.contact {
		display: block;
	}
	
	.send-message {
		display: block;
		width: 728px;
		border-right: none;
		vertical-align: top;
	}
	
	.contact-info {
		display: block;
		width: 728px;
		margin-top: 20px;
	}
	
	.leave-comment input {
		width: 314px;
	}
	
	.leave-comment .input-subject {
		width: 100%;
	}
	
	
	/** Footer Top **/
	
	.footer-section {
		width: 728px;
	}
	
	.footer-about {
		width: 100%;
		float: none;
		margin-right: 0px;
	}
	
	.footer-contact {
		width: 319px;
		margin-top: 40px;
		margin-right: 30px;
	}
	
	.footer-subscribe {
		width: 319px;
		margin-top: 40px;
	}
	
	.subscribe-box input {
		width: 153px;
	}
	
	.subscribe-box .first-name {
		margin-right: 13px;
	}
}


/* ===== Design for a width of 480px to 767px ===== */

@media only screen and (max-width:767px)
{
	/** Content **/
	
	.wrapper {
		width: 460px;
	}
	
	
	/** Blockquote **/
	
	.large-grid blockquote {
		margin-top: 100px;
	}
	
	
	/** Page Header **/
	
	.page-header {
		height: auto;
		display: block;
		position: relative;
	}
	
	.page-header h1 {
		line-height: 38px;
	}
	
	.page-header .content {
		display: block;
		padding: 30px 40px;
		overflow: hidden;
	}
	
	.header-title {
		margin-top: 40px;
	}
	
	.category-filter ul {
		margin-top: 20px;
	}
	
	.sub-title {
		margin-top: 20px;
		line-height: normal;
	}
	
	.page-navigation {
		position: absolute;
		margin-top: 0px;
		margin-left: -20px;
	}
	
	
	/** Call to Action **/
	
	.call-action {
		height: auto;
		display: block;
		overflow: hidden;
	}
	
	.call-action .large-button {
		margin: 0px 40px 38px 40px;
	}
	
	
	/** Grid Content Area **/
	
	.grid-half {
		width: 460px;
	}
	
	.large-grid {
		height: 460px;
	}
	
	.large-grid figure {
		width: 460px;
	}
	
	.small-grid li {
		width: 220px;
		height: 220px;
	}
	
	.half-feature-image {
		width: 460px;
		height: 460px;
	}
	
	.icon .service-icon {
		padding-top: 28%;
	}
	
	
	/** Service **/
	
	.service ul {
		margin-left: -20px;
	}
	
	.service ul li {
		width: 220px;
		height: 220px;
		margin-left: 20px;
	}
	
	.service-large ul li {
		width: 460px;
		height: auto;
		overflow: hidden;
	}
	

	/** Portfolio, Gallery, Team, Related Grid **/
	
	.portfolio ul,
	.gallery-list ul,
	.team ul,
	.related ul {
		margin-left: -20px;
	}
	
	.portfolio ul li,
	.gallery-list ul li,
	.team ul li,
	.related ul li {
		width: 220px;
		height: 220px;
		margin-left: 20px;
	}
	
	.details aside {
		display: block;
	}
	
	.work-meta {
		width: 100%;
		padding-right: 0px;
	}
	
	.portfolio-detail {
		display: block;
		width: 100%;
		margin-top: 40px;
	}

	
	/** Blog **/
	
	.blog {
		display: block;
	}
	
	.blog-content {
		display: block;
		width: 100%;
		overflow: hidden;
	}
	
	.content-list {
		margin-top: 0px;
	}
	
	.blog-related ul {
		margin-left: -20px;
	}
	
	.blog-related ul li {
		width: 140px;
		height: 140px;
		margin-left: 20px;
	}
	
	.tiny-grid h2 {
		font-size: 0.9em;
		font-weight: 400;
		padding: 15px;
	}
	
	.tiny-active {
		font-size: 12px;
		margin-bottom: 20px;
	}
	
	
	/* Leave a Comment */
	
	.leave-comment input {
		width: 100%;
	}
	
	
	/** Sidebar **/
	
	aside {
		display: block;
	}
	
	.sidebar {
		width: 100%;
		margin-top: 20px;
	}
	
	.sidebar-box .gallery .gallery-list {
		width: 76.6px;
		height: 76.6px;
	}
	
	.sidebar-box .gallery img {
		width: 100%;
		height: auto;
	}
	
	
	/** Contact **/
		
	.send-message,
	.contact-info {
		width: 100%;;
	}


	/** Footer Top **/
	
	.footer-section {
		width: 460px;
	}
	
	.footer-contact {
		width: 100%;
		margin-right: 0px;
	}
	
	.footer-subscribe {
		width: 100%;
	}
	
	.subscribe-box input {
		width: 194px;
	}
	
	.subscribe-box .first-name {
		margin-right: 12px;
	}
	
	
	/** Footer Bottom **/
	
	.footer-bottom {
		text-align: center;
	}
	
	.copyright {
		float: none;
	}
	
	.footer-bottom nav {
		float: none;
		margin-top: 10px;
		overflow: hidden;
	}
	
	.footer-bottom ul li {
		float: none;
		margin: 0px 7px 0px 7px;
	}
}


/* ===== Design for a width of 320px to 479px ===== */

@media only screen and (max-width:479px)
{
	/** Main Menu **/
	
	.header-section {
		min-width: 320px;
	}
	
	
	/** Content **/
	
	.wrapper {
		width: 310px;
	}
	
	
	/** Blockquote **/
	
	blockquote {
		font-size: 1.5em;
		line-height: 30px;
	}
	
	.large-grid blockquote {
		margin-top: 20px;
	}
	
	.quote-author {
		font-family: 'Open Sans', sans-serif;
		font-size: 14px;
		font-weight: 300;
	}
	
	
	/** Grid Content Area **/
	
	.grid-half {
		width: 310px;
	}
	
	.large-grid {
		height: 310px;
	}
	
	.large-grid figure {
		width: 310px;
	}
	
	.small-grid li,
	.half-feature-image {
		width: 310px;
		height: 310px;
	}
	
	.small-grid .icon h2 {
		margin-bottom: 20px;
	}
	
	
	/** Service **/
	
	.service ul {
		margin-left: 0px;
	}
	
	.service ul li {
		width: 310px;
		height: 310px;
		margin-left: 0px;
	}
	
	.service-large ul li {
		width: 100%;
		height: auto;
	}
	
	.service .grid-title {
		margin-bottom: 20px;
	}
	
	.service-details h2 a {
		line-height: normal;
	}
	

	/** Portfolio, Gallery, Team, Related Grid **/
	
	.portfolio ul,
	.gallery-list ul,
	.team ul,
	.related ul {
		margin-left: 0px;
	}
	
	.portfolio ul li,
	.gallery-list ul li,
	.team ul li,
	.related ul li {
		width: 310px;
		height: 310px;
		margin-left: 0px;
	}
	
	.portfolio .flip img,
	.gallery-list ul li img,
	.team .flip img,
	.related .flip img {
		width: 310px;
		height: 310px;
	}
	
	.box-title h2 {
		margin-bottom: 20px;
	}
	
	
	/** Blog **/
	
	.blog-single-details h1 {
		line-height: 30px;
	}
	
	.blog-related ul {
		margin-left: -20px;
	}
	
	.blog-related ul li {
		width: 145px;
		height: 145px;
		margin-left: 20px;
	}
	
	.tiny-grid h2 {
		margin-bottom: 5px;
	}
	
	
	/* Comments */
	
	.reply {
		float: left;
		margin-top: 10px;
	}
	
	.comment-active .submit-button {
		float: left;
		margin-top: 15px;
	}
	
	
	/** Sidebar **/
	
	.sidebar-box .gallery .gallery-list {
		width: 77.5px;
		height: 77.5px;
	}
	
	
	/** Contact **/
	
	.map {
		height: 310px;
	}
	
	.info-box h2 {
		line-height: 30px;
	}
	
		
	/** Detail Flip Back **/
	
	.large-title-back {
		font-size: 1.5em;
		line-height: 30px;
	}
	
	.large-description-back {
		font-size: 14px;
		line-height: 20px;
		margin-top: 20px;
	}
	
	
	/** Footer Top **/
	
	.footer-section {
		width: 310px;
	}
	
	.subscribe-box input {
		width: 100%;
	}
	
	.subscribe-box .first-name {
		margin-right: 0px;
	}
	
	.subscribe-box .last-name {
		margin-top: 12px;
	}
	
	
	/** Footer Bottom **/
	
	.footer-bottom ul li {
		margin: 0px 5px 0px 5px;
	}
}