/*
	# FONTS
	
	# BASE
	
	# LAYOUT
		+ Header
		+ Navigation
		+ Footer
		
	# SECTIONS
		+ Grid
		+ Backgrounds
		+ Content sections
		+ Section bar
		+ Section bottom image
		+ Portfolio
		+ Team
		
	# MODULES
		+ Feature block
		+ Pricing table
		+ Text box
		+ Map
		+ Preloader
		
	# COMPONENTS
		+ Titles
		+ Form
		+ Alerts
		+ Buttons
		+ Blockquotes
		+ Lists
		+ Progress bar
		+ Carousels
		+ Modals
		+ Lightbox
		
	# ANIMATIONS
	
	# GLOBALS
	
	# RESPONSIVE
		+ Notebook
		+ Desktop and Below
		+ Tablet
		+ Tablet and Below
		+ Mobile
		
	# KEYFRAMES
*/

/* FONTS
================================================== */

@import url('https://fonts.googleapis.com/css?family=Judson:400,700|Raleway:100,300,400,700&subset=latin-ext');


/* BASE
================================================== */

body {
	font-size: 18px;
	line-height: 1.6666667em; /* 30/18 */
	-webkit-font-smoothing: antialiased;
	word-spacing: 0;
	letter-spacing: 0;
	background: #fff;
	color: #000;
}

body, input, button, textarea {
	font-family: 'Raleway', Arial, sans-serif;
}

a, input, textarea, button {
	-webkit-transition: color .3s, background, .3s, border-color .3s, opacity .3s;
	   -moz-transition: color .3s, background, .3s, border-color .3s, opacity .3s;
			transition: color .3s, background, .3s, border-color .3s, opacity .3s;
}

a,
a:focus {
	color: #ec2f10;
}

a:hover {
	color: #666;
}

a:hover,
a:focus {
	text-decoration: none;
}

* {
	outline: none !important;
}

img {
	max-width: 100%;
}

p, ul, ol, form, table, figure, blockquote {
	margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.2em;
	font-family: 'Judson', Arial, sans-serif;
}

h1, .h1 {
	font-size: 42px;
}

h2, .h2 {
	font-size: 36px;
}

h3, .h3 {
	font-size: 30px;
	font-family: 'Judson', Arial, sans-serif;
}

h4, .h4 {
	font-size: 24px;
}

h5, .h5 {
	font-size: 18px;
}

h6, .h6 {
	font-size: 14px;
}

ul, ol {
	padding-left: 20px;
}

/* LAYOUT
================================================== */

/*
	Header
*/ 

.moveText {
	padding-top: 100px;
}

.header {
	position: relative;
}

.header.full-screen .header-middle {
	position: relative;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	   -moz-transform: translate(0, -50%);
			transform: translate(0, -50%);
}

	.header .subtitle {
		margin: 0 0 25px;
		font-size: 12px;
		letter-spacing: .1em;
		font-family: 'Raleway', Arial, sans-serif;
		color: #ec2f10;
	}

	.header .maintitle {
		margin: auto;
		font-size: 100px;
		color: #000000;
	}
	
	.header .scroll-down {
		position: absolute;
		right: 0;
		left: 0;
		bottom: 50px;
		font-size: 10px;
		letter-spacing: .05em;
		text-transform: uppercase;
		color: #fff;
	}
	
		.header .scroll-down i {
			display: block;
			font-size: 26px;
			-webkit-animation: scrollButton 2s linear infinite;
					animation: scrollButton 2s linear infinite;
		}

/*
	Blog Navbar
*/
.blogNavbar {
	padding: 25px;
	background: #fff;
	z-index: 1000;
	-webkit-transition: padding .3s;
	   -moz-transition: padding .3s;
			transition: padding .3s;
}

.blogNavbar.top-nav-collapse {
	padding-top: 1em;
	padding-bottom: 1em;
	border-bottom-color: #f6f6f6;
}

.blogmenu-items {
	position: relative;
	margin: 0;
	padding: 0;
}

	.blogmenu-items li {
		display: inline-block;
		float: left;
	}

		.blogmenu-items li a {
			display: block;
			padding: 1px 20px;
			text-transform: uppercase;
			font-size: 12px;
			letter-spacing: .05em;
			color: rgb(255, 0, 0);
		}
		
		.nav > li > a:hover,
		.nav > li > a:focus {
			background-color: transparent;
		}
		
		.blogmenu-items li:hover > a {
			color: #2a962a;
		}
	

/*
	Navigation
*/

.navbar {
	padding: 20px;
	background-color: transparent;
	z-index: 1000;
	-webkit-transition: padding .3s;
	   -moz-transition: padding .3s;
			transition: padding .3s;
}

.navbar.top-nav-collapse {
	padding-top: 25px;
	padding-bottom: 25px;
	border-bottom-color: #f6f6f6;
	background: #fff;
	opacity: .95;
}

	.menu-items {
		position: relative;
		margin: 0;
		padding: 0;
	}

		.menu-items li {
			display: inline-block;
			float: left;
		}

			.menu-items li a {
				display: block;
				padding: 1px 20px;
				text-transform: uppercase;
				font-size: 12px;
				letter-spacing: .05em;
				color: rgb(255, 0, 0);
			}
			
			.nav > li > a:hover,
			.nav > li > a:focus {
				background-color: transparent;
			}
			
			.menu-items li:hover > a {
				color: #ffffff;
			}
		
		.menu-items .menu-line {
			position: absolute;
			display: block;
			float: none;
			bottom: -2px;
			width: 10px;
			height: 2px;
			margin: 0 0 0 -5px;
			background: #ec2f10;
		}
		
.navbar .logo {
	position: relative;
	display: block;
	height: 33px;
}

	.navbar .logo img {
		position: relative;
		display: block;
		top: 50%;
		max-height: 50px;
		-webkit-transform: translate(0, -50%);
		   -moz-transform: translate(0, -50%);
				transform: translate(0, -50%);
	}

.article-menu.float-right .menu-items {
	float: right;
	margin-top: 100px;
}

/*
	Footer
*/

.footer {
	padding: 2.5em 0 .5em;
	text-align: center;
	font-size: 14px;
	color: #999;
	background: #000;
}

.left {
	text-align: left;
}



/* SECTIONS
================================================== */

/*
	Grid
*/

.row.collapsed {
	margin-left: 0;
	margin-right: 0;
}

	.row.collapsed > [class*="col-"] {
		padding-left: 0;
		padding-right: 0;
	}
	
	.row.bordered > [class*="col-"] {
		border-left: 1px solid transparent;
	}
	
	.row.bordered > [class*="col-"]:first-child {
		border-left: 0;
	}

/*
	Backgrounds
*/

.bg-img-road		{ background-image: url('../images/backgrounds/road.jpg'); }
.bg-img-bridge		{ background-image: url('../images/backgrounds/bridge.jpg'); }
.bg-img-mountains-1	{ background-image: url('../images/backgrounds/mountains-1.jpg'); }
.bg-img-mountains-2	{ background-image: url('../images/backgrounds/mountains-2.jpg'); }

.bg-color-light-gray	{ background-color: #fcfcfc; }

.has-bg {
	background-position: center center;
	-webkit-background-size: cover;
			background-size: cover;
}

.text-on-dark-bg {
	color: #fff;
}

.text-on-dark-bg .section-subtitle {
	color: #aaa;
}

.has-layer {
	position: relative;
}

.has-layer:before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.layer-opacity-1:before		{ opacity: .1; }
.layer-opacity-2:before		{ opacity: .2; }
.layer-opacity-3:before		{ opacity: .3; }
.layer-opacity-4:before		{ opacity: .4; }
.layer-opacity-5:before		{ opacity: .5; }
.layer-opacity-6:before		{ opacity: .6; }
.layer-opacity-7:before		{ opacity: .7; }
.layer-opacity-8:before		{ opacity: .8; }
.layer-opacity-9:before		{ opacity: .9; }
.layer-opacity-10:before	{ opacity: 1; }
	
.layer-black:before {
	background-color: #000;
	top: 1000px;
}

.layer-red-black:before {
	background: #FD8023;
	background: -moz-linear-gradient(-45deg, #FD8023 20%, #000000 80%);
	background: -webkit-linear-gradient(-45deg, #FD8023 20%,#000000 80%);
	background: linear-gradient(135deg, #FD8023 20%,#000000 90%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec2f10', endColorstr='#000000',GradientType=1 );
}

.layer-white-transparent:before {
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}

	.has-layer > * {
		position: relative;
		z-index: 1;
	}
	
	.negative-bg {
		position: absolute;
		top: -1000px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	
	.negative-bg:after {
		position: absolute;
		content: "";
		top: -100px;
		right: 0;
		left: 0;
		height: 1100px;
		background: #fff;
		background: -moz-linear-gradient(top, rgba(255,255,255,1) 10%, rgba(255,255,255,0.3) 100%);
		background: -webkit-linear-gradient(top, rgba(255,255,255,1) 100%,rgba(255,255,255,0.3) 100%);
		background: linear-gradient(to top, rgb(255, 255, 255) 10%,rgba(255, 255, 255, 0.248) 50%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b3ffffff',GradientType=0 );
	}
	.negativeBG {
		position: absolute;
		top: -1000px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	
	.negativeBG:after {
		position: absolute;
		content: "";
		right: 0;
		left: 0;
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b3ffffff',GradientType=0 );
	}

/*
	Content sections
*/

.section {
	position: relative;
	padding: 150px 0 120px;
}

.section-bottom-space {
	padding-bottom: 120px;
}

/*
	Section bar
*/

.section-bar {
	padding: 100px 0 70px;
}

	.section-bar-title {
		font-size: 30px;
		line-height: 1.3333333em; /* 40/30 */
		font-family: 'Raleway', Arial, sans-serif;
	}
	.freetrial-bar-title {
		font-size: 30px;
		line-height: 1.3333333em; /* 40/30 */
		font-family: 'Raleway', Arial, sans-serif;
	}

	.section-bar-btn {
		padding-top: 10px;
		text-align: right;
	}
	
/*
	Section bottom image
*/

.notebook-bg div,
.notebook-bg img,
.notebook-frame img {
	width: 1200px;
}

.img-notebook {
	position: relative;
	height: 340px;
	margin-top: 50px;
	border-bottom: 1px solid #eee;
}

.notebook-bg {
	position: absolute;
	overflow: hidden;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	z-index: 1;
	opacity: 0.3;
}

	.notebook-bg div,
	.notebook-bg div:after {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}

	.notebook-bg div {
		position: relative;
		overflow: hidden;
		left: 50%;
		height: 200%;
		z-index: 1;
		-webkit-transform: translate(-50%, 0);
		   -moz-transform: translate(-50%, 0);
				transform: translate(-50%, 0);
	}

	.notebook-bg div:after {
		content: "";
		bottom: 0;
		z-index: 2;
		-webkit-box-shadow: inset 0 0 100px 80px #fcfcfc;
		   -moz-box-shadow: inset 0 0 100px 80px #fcfcfc;
				box-shadow: inset 0 0 100px 80px #fcfcfc;
	}

	.notebook-bg img {
		position: relative;
		display: block;
		max-width: none;
		margin: 0 auto;
		z-index: 1;
	}
	
.notebook-frame {
	position: absolute;
	top: 55px; /* 55 */
	right: 0;
	left: 0;
	width: 592px;
	height: 316px;
	margin: 0 auto;
	background: url('../images/notebook.png') center center no-repeat;
	-webkit-background-size: 100%;
			background-size: 100%;
	z-index: 1;
}

	.notebook-frame div {
		position: absolute;
		overflow: hidden;
		top: 7%; /* 22px */
		right: 0;
		left: 0;
		width: 62.5%;
		height: 73.5%;
		margin: 0 auto;
		z-index: -1;
	}
	
		.notebook-frame img {
			position: relative;
			display: block;
			top: -77px; /* 55+22 */
			left: 50%;
			max-width: none;
			-webkit-transform: translate(-50%, 0);
			   -moz-transform: translate(-50%, 0);
					transform: translate(-50%, 0);
		}
	
/*
	Portfolio
*/

.centeredimg {
    position: absolute;
    top: 120px;
    left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-shadow: 1px 1px 1px #373737;
	font-size: 50px;
	font-weight: bold;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-shadow: 1px 1px 1px #373737;
	font-size: 25px;
	font-weight: bold;
}

.centerimg {
	display: block;
    margin-left: auto;
	margin-right: auto;
	padding-top: 200px;
}
.center {
	text-align: center;
	padding-bottom: 135px;
}



.portfolio {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-bottom: 1px solid transparent;
	border-left: 1px solid transparent;
}

	.portfolio-box {
		position: relative;
		overflow: hidden;
		float: left;
		margin: 0;
		padding: 0;
		border-right: 1px solid transparent;
		border-top: 1px solid transparent;
	}

		.portfolio-box .box-bg {
			display: block;
			width: 100%;
			-webkit-transition: all .6s;
			   -moz-transition: all .6s;
					transition: all .6s;
		}
	
		.portfolio-box .box-layer {
			position: absolute;
			visibility: hidden;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			text-align: center;
			color: #fff;
			background: rgba(0, 0, 0, 0.15);
			opacity: 0;
			-webkit-border-radius: 20px;
			   -moz-border-radius: 20px;
					border-radius: 20px;
			-webkit-transition: all .6s;
			   -moz-transition: all .6s;
					transition: all .6s;
		}
		
			.portfolio-box .box-layer-inner {
				position: relative;
				top: 50%;
				padding: 15px;
				z-index: 2;
				-webkit-transform: translate(0, -50%);
				   -moz-transform: translate(0, -50%);
						transform: translate(0, -50%);
			}
			
				.portfolio-box .box-layer-inner > *:last-child {
					margin-bottom: 0;
				}
				
				.portfolio-box .box-layer-title {
					position: relative;
					display: block;
					margin-bottom: 0;
					font-size: 1em;
					font-weight: 400;
					font-family: 'Raleway', Arial, sans-serif;
					-webkit-transition: all .6s;
					   -moz-transition: all .6s;
							transition: all .6s;
				}
				
				.portfolio-box .box-layer-title:before {
					position: absolute;
					content: "";
					bottom: -15px;
					left: 50%;
					width: 10px;
					height: 2px;
					margin-left: -5px;
					background: #fff;
				}
				
				.portfolio-box .box-layer ul {
					display: block;
					overflow: hidden;
					padding: 0;
					line-height: 0;
					font-size: 0;
					list-style-type: none;
				}
				
					.portfolio-box .box-layer ul li {
						display: inline-block;
						vertical-align: middle;
						margin-left: 1px;
					}
					
					.portfolio-box .box-layer ul li:first-child {
						margin-left: 0;
					}
				
					.portfolio-box .box-layer ul a {
						display: block;
						width: 50px;
						height: 50px;
						line-height: 50px;
						font-size: 20px;
						color: #fff;
						background: rgba(0, 0, 0, .1);
					}
					
					.portfolio-box .box-layer ul a:hover {
						background: rgba(0, 0, 0, .05);
					}
					
					.portfolio-box .box-layer ul li:first-child a {
						-webkit-border-radius: 3px 0 0 3px;
						   -moz-border-radius: 3px 0 0 3px;
								border-radius: 3px 0 0 3px;
					}
					
					.portfolio-box .box-layer ul li:last-child a {
						-webkit-border-radius: 0 3px 3px 0;
						   -moz-border-radius: 0 3px 3px 0;
								border-radius: 0 3px 3px 0;
					}
					
.portfolio-box:hover .box-bg {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
			transform: scale(1.1);
	-webkit-filter: blur(10px);
	   -moz-filter: blur(10px);
	     -o-filter: blur(10px);
	    -ms-filter: blur(10px);
	        filter: blur(10px);
}
.portfolio-box:hover .centered {
	visibility: hidden;
}

.portfolio-box:hover .box-layer {
	visibility: visible;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	opacity: 1;
	border-radius: 3px;
}

.portfolio-box:hover .box-layer-title {
	margin-bottom: 45px;
}

.portfolio.column-5 .portfolio-box	{
	width: 20%;
}

/*
	Team
*/

.team-box {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

	.team-box .box-bg {
		display: block;
		width: 100%;
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}

	.team-box .box-layer {
		position: absolute;
		visibility: hidden;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 10px;
		text-align: center;
		color: #fff;
		background: rgba(0, 0, 0, .8);
		opacity: 0;
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}
	
		.team-box .box-layer-inner {
			position: relative;
			top: 50%;
			padding: 10px;
			font-size: 14px;
			z-index: 2;
			-webkit-transform: translate(0, -50%);
			   -moz-transform: translate(0, -50%);
					transform: translate(0, -50%);
		}
		
			.team-box .box-layer-inner > *:last-child {
				margin-bottom: 0;
			}
			
			.team-box .box-layer-title {
				margin-bottom: 0;
				font-size: 30px;
			}
			
			.team-box p {
				margin-bottom: 20px;
				-webkit-transition: all .6s;
				   -moz-transition: all .6s;
						transition: all .6s;
			}
			
			.team-box .box-layer li {
				padding: 10px;
			}
			
				.team-box .box-layer ul a {
					display: block;
					font-size: 20px;
					line-height: 1em;
					color: #fff;
				}
				
				.team-box .box-layer ul a:hover {
					-webkit-transform: scale(1.3);
					   -moz-transform: scale(1.3);
							transform: scale(1.3);
				}
				
.team-box:hover .box-bg {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
			transform: scale(1.1);
}

.team-box:hover .box-layer {
	visibility: visible;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	padding: 0;
	opacity: 1;
}

/* MODULES
================================================== */

/*
	Feature block
*/

.feature-block {
	padding: 0 30px;
	text-align: center;
}

	.feature-icon,
	.feature-title,
	.feature-list,
	.feature-list li {
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}
	
	.feature-icon img{
		height: 140px;
	}
	
	.feature-title {
		margin: 40px 0 0;
		font-size: 18px;
		font-family: 'Raleway', Arial, sans-serif;
		opacity: 1;
	}
	
	.feature-list {
		margin: -40px;
		padding: 0;
		list-style-type: none;
		opacity: 0;
	}
	
		.feature-list li {
			padding: 0;
			font-size: 14px;
			line-height: 1.4285714em; /* 20/14 */
		}
	
.feature-block:hover .feature-icon {
	height: 130px;
	margin-top: -20px;
	margin-bottom: -40px;
}

.feature-block:hover .feature-title {
	margin: 0;
	font-size: 0;
	opacity: 0;
}

.feature-block:hover .feature-list {
	margin-top: 20px;
	opacity: 1;
	margin-bottom: 25px;
}

	.feature-block:hover .feature-list li {
		padding: 5px 0;
	}
	
/*
	Pricing table
*/

.pricing-table {
	padding: 40px 40px 60px;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, .9);
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
			transition: all .5s;
}

.pricing-table:hover {
	background: #000;
}

	.table-label {
		position: absolute;
		top: -13px;
		left: 7px;
		width: 70px;
		height: 40px;
		padding: 0;
		font-size: 10px;
		line-height: 1.2em; /* 12/10 */
		text-align: center;
		text-transform: uppercase;
		font-weight: 700;
		color: #000;
		background: #fff;
		-webkit-transform: rotate(-45deg);
		   -moz-transform: rotate(-45deg);
				transform: rotate(-45deg);
		-webkit-transform-origin: 100% 100% 0;
		   -moz-transform-origin: 100% 100% 0;
				transform-origin: 100% 100% 0;
	}
	
	.table-label:before,
	.table-label:after {
		position: absolute;
		content: "";
		top: 0;
		border-bottom: 40px solid #fff;
	}
	
	.table-label:before {
		left: -39px;
		border-left: 40px solid transparent;
	}
	
	.table-label:after {
		right: -39px;
		border-right: 40px solid transparent;
	}
	
		.table-label span {
			position: relative;
			display: block;
			top: 50%;
			-webkit-transform: translate(0, -50%);
			   -moz-transform: translate(0, -50%);
					transform: translate(0, -50%);
		}

	.pricing-title {
		margin-bottom: 20px;
		font-size: 36px;
	}
	
	.pricing-price {
		margin-bottom: 30px;
		font-size: 14px;
	}
		
		.pricing-price span {
			font-size: 48px;
		}
		
	.pricing-text {
		position: relative;
		margin-bottom: 30px;
		padding-bottom: 32px;
		font-size: 12px;
		line-height: 1.5em; /* 18/12 */
		color: #999;
	}
	
	.pricing-text:after {
		position: absolute;
		content: "";
		bottom: 0;
		left: 50%;
		width: 30px;
		height: 2px;
		margin-left: -15px;
		background: #fff;
	}
	
		.pricing-text > *:last-child {
			margin-bottom: 0;
		}
		
	.pricing-features {
		font-size: 14px;
		text-align: left;
	}
	
		.pricing-features .fa-check {
			color: #ec2f10;
		}
		
		.pricing-features .fa-close {
			color: #666;
		}
		
.row.bordered .pricing-table {
	margin-bottom: 1px;
}

/*
	Text box
*/

.text-box {
	padding: 40px;
	background: #f9f9f9;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
}

.text-box.has-bg-image {
	position: relative;
	margin-top: 80px;
	z-index: initial;
}

	.text-box *:last-child {
		margin-bottom: 0;
	}
	
	.text-box-bg {
		position: absolute;
		overflow: hidden;
		top: -80px;
		right: -20px;
		left: -20px;
		max-height: 175px;
		z-index: -1;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
		.text-box-bg img {
			width: 100%;
			opacity: .7;
		}

/*
	Map
*/

.section-map {
  display: block;
  width: 100%;
  height: 400px;
}

/*
	Preloader
*/

.preloader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 10000;
}

.preloader .pl-line {
	position: absolute;
	top: 50%;
	left: 50%;
	border-style: solid;
	border-color: #674594;
	border-width: 1px 0 0;
	transform: translate(-50%, -50%);
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
			border-radius: 100%;
}

.preloader .pl-line-1 {
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	-webkit-animation: preloader .5s linear infinite;
			animation: preloader .5s linear infinite;
}

.preloader .pl-line-2 {
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	-webkit-animation: preloader 1s linear infinite;
			animation: preloader 1s linear infinite;

}

.preloader .pl-line-3 {
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	-webkit-animation: preloader 2s linear infinite;
			animation: preloader 2s linear infinite;
}

.preloader .pl-line-4 {
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	-webkit-animation: preloader 4s linear infinite;
			animation: preloader 4s linear infinite;
}

/* COMPONENTS
================================================== */

/*
	Titles
*/

.section-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.section-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: #888;
}

.products-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.products-subtitle {
	margin: 0 0 50px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: #888;
}
.about-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.about-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: rgb(214, 214, 214);
}

.benefits-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.benefits-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: #888;
}

.testimonials-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.testimonials-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: #888;
}

.contact-title {
	margin: -16px 0 24px;
	font-size: 72px;
}

.contact-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 1.5em; /* 36/24 */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 300;
	color: #888;
}

/*
	Form
*/

.form-control,
.btn {
	height: 60px;
	font-size: 14px;
	line-height: 20px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}


.form-group {
	margin-bottom: 30px;
}

.form-control {
	padding: 19px;
	border: 1px solid transparent;
	background: #ededed;
	-webkit-box-shadow: none !important;
	   -moz-box-shadow: none !important;
			box-shadow: none !important;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
			transition: all .5s;
}

.form-control:focus {
	border-color: #f6f6f6;
	background: #fcfcfc;
}

.form-feedback {
	display: none;
}

.help-block {
	margin-bottom: 0;
	font-size: 12px;
	line-height: 16px;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
	color: #ec2f10;
}

.has-error .form-control,
.has-error .form-control:focus,
.has-success .form-control,
.has-success .form-control:focus {
	border-color: #f6f6f6;
}

/*
	Alerts
*/

.alert {
	margin-bottom: 30px;
	padding: 15px 30px;
	font-size: 14px;
	color: #fff;
	background: transparent;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

.alert-success {
	border-color: #13d799;
	color: #13d799;
	background: rgba(19, 215, 153, .05); /* #13d799 */
}

.alert-danger {
	border-color: #ca280d;
	color: #ca280d;
	background: rgba(236, 47, 16, .05); /* #ec2f10 */
}

.alert-info {
	border-color: #10b6ec;
	color: #10b6ec;
	background: rgba(16, 182, 236, .05); /* #10b6ec */
}

.alert-warning {
	border-color: #eac80f;
	color: #eac80f;
	background: rgba(234, 200, 15, .05); /* #eac80f */
}

/*
	Buttons
*/

.btn,
.btn:before {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
			transition: all .5s;
}

.btn {
	position: relative;
	padding: 18px 28px;
	border: 2px solid transparent;
	background: #f6f6f6;
	text-transform: uppercase;
	font-weight: 700;
	z-index: 1;
}

.btn-sm {
	height: 50px;
	padding: 13px 23px;
	font-size: 12px;
}

.btn:before {
	position: absolute;
	content: "";
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	opacity: 1;
	z-index: -1;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

.btn:hover:before {
	-webkit-animation: btnHover .5s linear 1;
			animation: btnHover .5s linear 1;
}

	.btn-icon-left i {
		margin-right: 10px;
	}
	
	.btn-icon-right i {
		margin-left: 10px;
	}

[class*="btn-border-"] {
	background: transparent;
}

[class*="btn-border-"]:hover {
	border-color: transparent;
}

.btn-sm-border-red,
.btn-sm-border-red:focus {
	border-color: #ec2f10;
	color: #ec2f10;
}

.btn-sm-border-red:hover {
	color: #fff;
}

.btn-sm-border-red:hover:before {
	background: #ec2f10;
}

.btn-border-red,
.btn-border-red:focus {
	border-color: #ec2f10;
	color: #ec2f10;
}

.btn-border-red:hover {
	color: #fff;
}

.btn-border-red:hover:before {
	background: #ec2f10;
}

.btn-border-white,
.btn-border-white:focus {
	border-color: rgb(255, 255, 255);
	color: rgb(242, 125, 0);
}

.btn-border-white:hover {
	color: rgb(136, 6, 6);
}

.btn-border-white:hover:before {
	background: #fff;
}

.btn-border-gray,
.btn-border-gray:focus {
	border-color: #555;
	color: #fff;
}

.btn-border-gray:hover {
	color: #000;
}

.btn-border-gray:hover:before {
	background: #fff;
}

/*
	Blockquotes
*/

blockquote {
	position: relative;
	padding: 0;
	border: 0;
	font-size: 18px;
	line-height: 1.6666667em;
}

blockquote:before {
	position: absolute;
	content: "";
	top: -15px;
	left: 40px;
	width: 47px;
	height: 40px;
	background: url("../images/svg/quote.svg") center center no-repeat;
	-webkit-background-size: 100% auto;
			background-size: 100% auto;
}

	blockquote .text {
		padding: 40px;
		font-style: italic;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}

	blockquote cite {
		display: block;
		margin-top: 15px;
		text-align: right;
		font-style: normal;
		font-size: 14px;
	}
	
		blockquote cite span {
			font-weight: 700;
		}

	.transparent-dark .text {
		color: #fff;
		background: rgba(0, 0, 0, .6);
	}
	
/*
	Lists
*/

.list-with-icon {
	padding-left: 30px;
	list-style-type: none;
}

	.list-with-icon li {
		position: relative;
		margin-bottom: 5px;
	}
	
	.list-with-icon li:last-child {
		margin-bottom: 0;
	}

		.list-with-icon i {
			position: absolute;
			top: 0;
			left: -30px;
			width: 20px;
			line-height: inherit;
			text-align: center;
		}
		
.list-inline-icon {
	padding: 0;
	list-style-type: none;
}
	
	.list-inline-icon li {
		display: inline-block;
		float: left;
		margin: 0 10px 10px 0;
	}
	
	.list-inline-icon li:last-child {
		margin-right: 0;
	}

		.list-inline-icon li a {
			display: block;
			width: 40px;
			height: 40px;
			line-height: 36px;
			font-size: 18px;
			border: 2px solid #000;
			text-align: center;
			color: #000;
			-webkit-border-radius: 3px;
			   -moz-border-radius: 3px;
					border-radius: 3px;
		}
		
		.list-inline-icon li a:hover {
			color: #fff;
			background: #000;
			-webkit-transform: scale(1.15);
			   -moz-transform: scale(1.15);
					transform: scale(1.15);
		}

.tag-list {
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	line-height: 14px;
}

	.tag-list li {
		margin-top: 4px;
	}

		.tag-list li span {
			display: inline-block;
			padding: 5px 10px;
			color: #999;
			background: #f6f6f6;
			-webkit-border-radius: 3px;
			   -moz-border-radius: 3px;
					border-radius: 3px;
		}


/*
	Progress bar
*/

.progress-bar-list {
	padding: 0;
	list-style-type: none;
}

	.progress-bar-list li {
		margin-bottom: 20px;
	}

		.progress,
		.progress-bar {
			-webkit-border-radius: 3px;
			   -moz-border-radius: 3px;
					border-radius: 3px;
			-webkit-box-shadow: none;
			   -moz-box-shadow: none;
					box-shadow: none;
		}
		
		.progress {
			height: 3px;
			margin: 0;
			background: #eee;
		}

		.progress-bar {
			background: #000;
			background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(236,47,16,1) 100%);
			background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(236,47,16,1) 100%);
			background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(236,47,16,1) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ec2f10',GradientType=1 );
			-webkit-transition: none;
			   -moz-transition: none;
					transition: none;
		}
		
		.progress-bar-title {
			font-size: 12px;
		}
		
/*
	Carousels
*/

.owl-prev,
.owl-next {
	opacity: .5;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
			transition: all .3s;
}

.owl-prev:hover,
.owl-next:hover {
	opacity: .3;
}

.owl-nav .disabled {
	display: none;
}

.nav-middle .owl-prev,
.nav-middle .owl-next {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 30px;
	font-size: 24px;
	line-height: 30px;
	margin-top: -15px;
	text-align: center;
}

.nav-middle .owl-prev {
	left: 0;
}

.nav-middle .owl-next {
	right: 0;
}

/* Blockquote carousel */

.blockquote-carousel {
	margin-top: -15px;
	padding-left: 200px;
	padding-right: 200px;
}

	.blockquote-carousel blockquote {
		margin-bottom: 0;
		padding-top: 15px;
	}

		.blockquote-carousel blockquote:before {
			top: 0;
		}
	
/* Counter carousel */

.counter-carousel {
	margin: 0;
	padding: 50px 0;
	text-align: center;
	font-size: 14px;
}

.text-on-dark-bg .counter-carousel {
	background: rgba(100%, 100%, 100%, .05);
}

	.counter-carousel li {
		display: inline-block;
		float: left;
		list-style-type: none;
	}
	
		.counter-carousel .number {
			display: block;
			margin-bottom: 10px;
			font-size: 48px;
			line-height: 1em;
			font-weight: 100;
		}
		
			.counter-carousel .number i {
				display: inline-block;
				vertical-align: middle;
				font-size: 32px;
			}
		
		.counter-carousel .text {
			display: block;
			font-weight: 700;
		}
	
/*
	Modals
*/

.modal {
	font-size: 14px;
	line-height: 1.7142857em; /* 24/14 */
}

	.modal-content {
		border: 0;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
				box-shadow: none;
	}
		
		.modal .close {
			margin-top: 10px;
			font-size: 18px;
			text-shadow: none;
		}
		
		.modal-header {
			padding: 30px 20px 15px;
			border-bottom: 0;
		}
			
			.modal-title {
				line-height: 1.2em;
			}
			
		.modal-body {
			padding: 15px 20px 30px;
		}
		
			.modal-body > *:last-child {
				margin-bottom: 0;
			}
			
			.modal-body figure {
				margin-left: -20px;
				margin-right: -20px;
			}
			
				.modal-body figure img {
					width: 100%;
				}
				
.modal-backdrop.in {
	opacity: .8;
}

/*	
	Lightbox
*/

.lb-outerContainer,
.lightbox .lb-image {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}


/* ANIMATIONS
================================================== */

.owl-item.animated  {
	-webkit-animation-duration: .5s;
			animation-duration: .5s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}  

.scroll-anim {
	opacity: 0;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

.owl-animated-out {
	z-index: 1;
}

.owl-animated-in {
	z-index: 0;
}

.carouselShow {
	-webkit-animation-name: carouselShow;
			animation-name: carouselShow;
}

.carouselHide {
	-webkit-animation-name: carouselHide;
			animation-name: carouselHide;
}

.fadeIn {
	-webkit-animation-name: fadeIn;
			animation-name: fadeIn;
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
			animation-name: fadeInUp;
}


/* GLOBALS
================================================== */

.no-bottom-space {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.bottom-space-xs {
	margin-bottom: 10px;
}

.bottom-space-sm {
	margin-bottom: 20px;
}

.bottom-space-md {
	margin-bottom: 30px;
}

.bottom-space-lg {
	margin-bottom: 40px;
}

.bottom-space-xl {
	margin-bottom: 50px;
}

.text-white {
	color: #fff !important;
}

.text-gray {
	color: #999;
}

.text-sm {
	font-size: 14px;
	line-height: 1.7142857em; /* 24/14 */
}


/* RESPONSIVE
================================================== */

/*
	Notebook
*/

@media screen and (min-width: 992px) and (max-width: 1200px) {
	
	/*
		Portfolio
	*/
	
	.portfolio.column-5 .portfolio-box	{
		width: 25%;
	}
	
}

/*
	Desktop and Below
*/

@media screen and (max-width: 1200px) {
	
	/*
		Navigation
	*/
	
	.menu-items li a {
		padding-left: 10px;
		padding-right: 10px;
	}
	
}

/*
	Tablet
*/

@media screen and (min-width: 768px) and (max-width: 991px) {
	
	/*
		Titles
	*/
	
	.section-title {
		font-size: 60px;
	}
	
	.section-subtitle {
		font-size: 20px;
	}
	
	/*
		Portfolio
	*/
	
	.portfolio.column-5 .portfolio-box	{
		width: 33.3333333%;
	}
	
	/*
		Pricing tanle
	*/
	
	.pricing-table {
		padding: 50px 20px 40px;
	}
	
	.pricing-title {
		font-size: 28px;
	}
	
	/*
		Blockquote carousel
	*/
	
	.blockquote-carousel {
		padding-left: 80px;
		padding-right: 80px;
	}
	
}

/*
	Tablet and Below
*/

@media screen and (max-height: 700px) {
	.moveText{
		padding-top: 300PX;
	}
}


@media screen and (max-width: 991px) {
	
	body {
		font-size: 14px;
	}
	.moveText{
		padding-top: 300px;
	}
	
	/*
		Header
	*/
	
	.header .maintitle {
		font-size: 70px;
	}
	
	/*
		Navigation
	*/
	
	.article-menu.float-right .menu-items {
		margin-top: 85px;
	}
	
	.menu-button {
		position: relative;
		display: block;
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 18px;
		text-align: center;
		color: #ec2f10;
		z-index: 2;
	}
	
	.menu-button,
	.menu-button:focus,
	.menu-button:active,
	.menu-button:hover {
		color: #ec2f10;
	}
	
	.main-menu {
		position: fixed;
		float: none !important;
		top: 0;
		bottom: 0;
		left: 0;
		width: 250px;
		padding-top: 15px;
		background-color: #ec9410;
		z-index: 2;
		-webkit-transform: translate(-250px);
		   -moz-transform: translate(-250px);
				transform: translate(-250px);
		-webkit-transition: transform .4s, box-shadow .4s;
		   -moz-transition: transform .4s, box-shadow .4s;
				transition: transform .4s, box-shadow .4s;
	}

	.main-menu ul > li:hover > a {
		color: #ffffff;
	}
	
	
	.main-menu:after {
		position: absolute;
		content: "";
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: .1;
		z-index: -1;   
		background:  url("../images/backgrounds/bridge.jpg") center center no-repeat;
			-webkit-background-size: cover;
					background-size: cover;
	}
	
	.navbar,
	.navbar.top-nav-collapse {
		padding: 20px;
	}
	
		.navbar .menu-items li {
			display: block;
			float: none;
		}
		
		.navbar .menu-items .menu-line {
			display: none;
		}
		
			.navbar .menu-items li a {
				padding: 10px 30px;
				color: rgba(100%, 100%, 100%, .9);
			}
			
			.navbar .menu-items li.active > a {
				font-weight: 700;
				color: #fff;
			}
	
	.menu-layer {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #000;
		z-index: 1;
		opacity: 0;
		-webkit-transition: opacity .4s;
		   -moz-transition: opacity .4s;
				transition: opacity .4s;
	}
		
	.show-menu {
		overflow: hidden;
	}
	
	.show-menu .menu-button,
	.show-menu .menu-button:focus,
	.show-menu .menu-button:active,
	.show-menu .menu-button:hover {
		color: #fff;
	}
	
	.show-menu .main-menu {
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .4);
		   -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .4);
				box-shadow: 0 0 20px rgba(0, 0, 0, .4);
		-webkit-transform: translate(0, 0);
		   -moz-transform: translate(0, 0);
				transform: translate(0, 0);
	}
	
	/*
		Feature block
	*/
	
	.feature-block {
		padding: 0;
	}

	/*
		Member carousel
	*/
	
	.member-carousel {
		margin: 0 0 60px !important;
	}
	
		.member-carousel [class*="col-"] {
			padding: 0 !important;
		}
	
		.member-carousel .team-box {
			margin-bottom: 0;
		}
	
}

/*
	Mobile
*/

@media screen and (max-width: 767px) {
	
	/*
		Header
	*/
	
	.header .maintitle {
		font-size: 32px;
	}
	
	.header .scroll-down {
		bottom: 30px;
	}
	
	/*
		Navigation
	*/
	
	.article-menu.float-right .menu-items {
		float: none;
		margin-top: 0;
	}
	
	.article-menu .menu-items {
		margin-bottom: 50px;
		text-align: center;
	}
		
		.article-menu .menu-items li {
			float: none;
			padding: 10px 0;
		}
		
			.article-menu .menu-items li.active > a {
				color: #ec2f10;
			}
		
		.article-menu .menu-items .menu-line {
			display: none;
		}
	
	/*
		Titles
	*/
	
	.section-title {
		font-size: 50px;
	}
	
	.section-subtitle {
		font-size: 18px;
	}
	
	/*
		Sections
	*/
	
	.section {
		padding-top: 100px;
		padding-bottom: 70px;
	}
	
	.section-bottom-space {
		padding-bottom: 70px;
	}
	
	.section-subtitle {
		margin-bottom: 50px;
	}
	
	/*
		Map
	*/
	
	.section-map {
		height: 250px;
	}
	
	/*
		Portfolio
	*/
	
	.portfolio.column-5 .portfolio-box	{
		width: 50%;
	}
	
	.portfolio-box:hover .box-layer-title {
		margin-bottom: 30px;
	}
	
	.portfolio-box .box-layer ul a {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	
	/*
		Text box
	*/
	
	.text-box.has-bg-image {
		margin-top: 40px;
	}

		.text-box-bg {
			top: -40px;
			right: -10px;
			left: -10px;
		}
		
		.text-box {
			padding: 20px;
		}
		
	/*
		Globals
	*/
	
	.text-center-on-xs {
		text-align: center;
	}
	
	/*
		Section bottom image
	*/
	
	.notebook-bg div,
	.notebook-bg img,
	.notebook-frame img {
		width: 670px;
	}
	
	.img-notebook {
		height: 190px;
	}
	
	.notebook-frame {
		width: 280px;
		height: 149px;
	}
	
	/*
		Blockquote
	*/
	
	blockquote:before {
		left: 20px;
		width: 40px;
		height: 34px;
	}
	
	blockquote .text {
		padding: 30px 20px;
		font-size: 14px;
		line-height: 1.6666667em;
	}
	
	/*
		Blockquote carousel
	*/
	
	.blockquote-carousel {
		padding-left: 30px;
		padding-right: 30px;
	}

}
/*
	Featured Post
*/

.featured-post {
	position: relative;
	margin-bottom: 30px;
	padding: 15px;
}

	.featured-post a {
		display: block;
		min-height: 140px;
		padding: 20px;
		border: 1px solid #eee;
		color: #000;
		background: #fff;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
	.featured-post figure {
		overflow: hidden;
		float: left;
		width: 100px;
		height: 100px;
		margin: 0;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}
	
			.featured-post figure img {
				width: 100%;
				height: 100%;
				-webkit-transition: all .3s;
				   -moz-transition: all .3s;
						transition: all .3s;
			}
			
	.has-thumbnail .featured-post-text {
		padding-left: 120px;
	}
	
		.featured-post .featured-post-title {
			margin: 0 0 10px;
			-webkit-transition: all .3s;
			   -moz-transition: all .3s;
					transition: all .3s;
		}
		
		.featured-post-date,
		.featured-post .post-type-icon {
			font-size: 14px;
			line-height: 24px;
			color: #888;
		}
		
			.featured-post .post-type-icon {
				position: relative;
				display: inline-block;
				vertical-align: middle;
				top: -1px;
				margin-right: 10px;
			}

.featured-post a:hover figure img {
	opacity: .7;
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
			transform: scale(1.1);
}

.testimonial-img {
	position: relative;
	margin-bottom: 30px;
}

	.testimonial-img a {
		display: block;
		min-height: 0px;
		padding: 10px;
		color: #000;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
	.testimonial-img figure {
		overflow: hidden;
		float: right;
		width: 50px;
		height: 50px;
		margin: 0;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}
	
			.testimonial-img figure img {
				width: 100%;
				height: 100%;
				-webkit-transition: all .3s;
				   -moz-transition: all .3s;
						transition: all .3s;
			}
			.has-thumbnail .testimonial-img-text {
				padding-left: 120px;
			}
			
				.testimonial-img .testimonial-img-title {
					margin: 0 0 10px;
					-webkit-transition: all .3s;
					   -moz-transition: all .3s;
							transition: all .3s;
				}
				
				.testimonial-img-date,
				.testimonial-img .post-type-icon {
					font-size: 14px;
					line-height: 24px;
					color: #888;
				}
				
					.testimonial-img .post-type-icon {
						position: relative;
						display: inline-block;
						vertical-align: middle;
						top: -1px;
						margin-right: 10px;
					}
.blog {
	background:  url("../images/backgrounds/doodles-1.png") center center repeat;
}

.blogbg {
	position: relative;
	padding: 180px 0 50px;
	background-image:  url("../images/backgrounds/blog_header.jpg");
}
.scroll-anim {
	opacity: 0;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}
.stdFadeInUp {
	-webkit-animation-name: stdFadeInUp;
			animation-name: stdFadeInUp;
}
.faqHeader {
	font-family: 'Raleway', Arial, sans-serif;
}
.panel-group {
	font-family: 'Raleway', Arial, sans-serif;
}
.panel-title {
	font-family: 'Raleway', Arial, sans-serif;
}
.panel-body {
	font-family: 'Raleway', Arial, sans-serif;
}
/* Fade In Up */

@keyframes stdFadeInUp {
	0% {
		opacity: 0;
		transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes stdFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}
/*
	Feature block
*/

.feature-block {
	padding: 0 30px;
	text-align: center;
}

	.feature-icon,
	.feature-title,
	.feature-list.secondary-text,
	.feature-list.secondary-text li {
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}
	
	.feature-icon {
		height: 130px;
	}
	
	.feature-title {
		margin: 40px 0 0;
		font-size: inherit;
		font-family: inherit;
		opacity: 1;
	}
	
	.feature-list.secondary-text {
		margin: 0;
		padding: 0;
		list-style-type: none;
		opacity: 0;
	}
	
		.feature-list.secondary-text li {
			padding: 0;
		}
	
.feature-block.block-hover:hover .feature-icon {
	height: 65px;
	margin-top: -20px;
}

.feature-block.block-hover:hover .feature-title {
	margin: 0;
	font-size: 0;
	opacity: 0;
}

.feature-block.block-hover:hover .feature-list {
	margin-top: 20px;
	opacity: 1;
}

	.feature-block.block-hover:hover .feature-list li {
		padding: 5px 0;
	}
/*
	Widget
*/

.widget {
	color: #888;
	margin: 0 0 30px;
}

	.widget-title {
		margin-bottom: 20px;
		color: rgb(0, 0, 0);
	}

	.widget ul {
		padding-left: 0;
		list-style: none;
	}
	
		.widget li + li {
			margin-top: 10px;
			padding-top: 10px;
			border-top: 1px solid #eee;
		}
	
.widget li .post-date {
	display: block;
}
	
/*
	Blog
*/

.blog-post {
	margin-bottom: 50px;
	background: #fcfcfc;
}

	.post-content {
		padding: 30px;
	}
	
	.blog-post.sticky .post-content {
		border-width: 2px 0;
		border-style: solid;
	}
	
		.post-content > *:last-child {
			margin-bottom: 0;
		}
	
	.post-title {
		margin-bottom: 10px;
		line-height: 1em;
	}

		.post-title a {
			color: #000;
		}
		
		.post-title i {
			display: inline-block;
			font-size: .5em;
			opacity: .3;
		}
		
	.post-meta {
		margin-bottom: 30px;
	}
	
		.post-meta .list-inline {
			display: inline-block;
		}
	
		.post-meta > li + li:before {
			display: inline-block;
			content: "\2022";
			margin-right: 10px;
			color: #ccc;
		}
		
		.post-meta .post-type-icon {
			position: relative;
			display: inline-block;
			vertical-align: middle;
			top: -1px;
			margin-right: 10px;
		}
	
	.post-read-more {
		text-align: right;
	}
	
.post-bottom-content {
	margin: 0 30px 50px;
}

	.post-share {
		margin-bottom: 40px;
	}
	
		.post-share .share-title,
		.post-share ul {
			margin: 0;
		}

		.post-share .share-title {
			padding: 10px 0;
		}

	.author-bio {
		position: relative;
		padding: 50px 0 20px 100px;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
		color: #888;
	}
	
		.author-bio .avatar {
			position: absolute;
			top: 50px;
			left: 0;
			width: 70px;
			height: 70px;
			margin-bottom: 30px;
		}

			.author-bio .avatar img {
				width: 100%;
				height: 100%;
			}
			
		.author-title {
			color: #000;
		}
	
		.secondary-text {
			line-height:24px;color:#888;font-size:14px;opacity: 1;visibility: visible;-webkit-transition: opacity 0.24s ease-in-out;-moz-transition: opacity 0.24s ease-in-out;transition: opacity 0.24s ease-in-out;
		}
		.wf-loading .secondary-text {
			opacity: 0;
		}
		.ie.wf-loading .secondary-text {
			visibility: hidden;
		}


	/*
	List tags
*/

.list-tags {
	margin-left: -2px;
	padding: 0;
	list-style-type: none;
}

.list-tags li {
	display: inline-block;
	float: left;
	margin: 0 2px 5px;
}

	.list-tags li a,
	.list-tags li span {
		display: block;
		padding: 5px 10px;
		font-size: 12px;
		line-height: 20px;
		color: #888;
		background: #eee;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
	.list-tags li a:hover {
		color: #fff;
		background: #ccc;
	}	
	
	/*
	Media box 1
*/

.media-box-1 {
	position: relative;
	overflow: hidden;
}

.box-img img{
	width: 100%;
	height: auto;
}

	.media-box-1 .box-bg {
		margin-left:auto;
		margin-right:auto;
		display: block;
		width: auto;
		height: 100%;
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}

	.media-box-1 .box-layer {
		position: absolute;
		visibility: hidden;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		text-align: center;
		color: #fff;
		background: rgba(0, 0, 0, 0.15);
		opacity: 0;
		-webkit-border-radius: 20px;
		   -moz-border-radius: 20px;
				border-radius: 20px;
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}
	
		.media-box-1 .box-layer-inner {
			position: relative;
			top: 50%;
			padding: 15px;
			z-index: 2;
			-webkit-transform: translate(0, -50%);
			   -moz-transform: translate(0, -50%);
					transform: translate(0, -50%);
		}
		
			.media-box-1 .box-layer-inner > *:last-child {
				margin-bottom: 0;
			}
			
			.media-box-1 .box-layer-title {
				position: relative;
				display: block;
				margin-bottom: 0;
				font-size: 1em;
				font-weight: 400;
				font-family: 'Raleway', Arial, sans-serif;
				-webkit-transition: all .6s;
				   -moz-transition: all .6s;
						transition: all .6s;
			}
			
			.media-box-1 .box-layer-title:before {
				position: absolute;
				content: "";
				bottom: -15px;
				left: 50%;
				width: 10px;
				height: 2px;
				margin-left: -5px;
				background: #fff;
			}
			
			.media-box-1 .box-layer.only-icon {
				font-size: 24px;
			}
				
				.media-box-1 .box-layer ul {
					display: block;
					overflow: hidden;
					padding: 0;
					line-height: 0;
					font-size: 0;
					list-style-type: none;
				}
				
					.media-box-1 .box-layer ul li {
						display: inline-block;
						vertical-align: middle;
						margin-left: 1px;
					}
					
					.media-box-1 .box-layer ul li:first-child {
						margin-left: 0;
					}
				
					.media-box-1 .box-layer ul a {
						display: block;
						width: 50px;
						height: 50px;
						line-height: 50px;
						font-size: 20px;
						color: #fff;
						background: rgba(0, 0, 0, .1);
					}
					
					.media-box-1 .box-layer ul a:hover {
						background: rgba(0, 0, 0, .05);
					}
					
					.media-box-1 .box-layer ul li:first-child a {
						-webkit-border-radius: 3px 0 0 3px;
						   -moz-border-radius: 3px 0 0 3px;
								border-radius: 3px 0 0 3px;
					}
					
					.media-box-1 .box-layer ul li:last-child a {
						-webkit-border-radius: 0 3px 3px 0;
						   -moz-border-radius: 0 3px 3px 0;
								border-radius: 0 3px 3px 0;
					}
					
.media-box-1:hover .box-bg {
	-webkit-transform: scale(1.2);
	   -moz-transform: scale(1.2);
			transform: scale(1.2);
	-webkit-filter: blur(10px);
	   -moz-filter: blur(10px);
		 -o-filter: blur(10px);
		-ms-filter: blur(10px);
			filter: blur(10px);
}

.media-box-1:hover .box-layer {
	visibility: visible;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	opacity: 1;
	border-radius: 3px;
}

.media-box-1:hover .box-layer-title {
	margin-bottom: 45px;
}
.sectionspace {
	padding-top: 50px;
}
.headerbg {
	background:  url("../images/backgrounds/ToxPlanet_Header_1920x1280.png");
	background-size: 1920px 2000px;

}
.footerbg {
	background:  url("../images/backgrounds/ToxPlanet_Footer_1920x860.png");
	background-size: 1920px 1000px;
}

.bottomNav {
	overflow: hidden;
	background-color: transparent;
	position: fixed;
	bottom: 0;
	width: 100%;
	margin-right: 30px;
	margin-bottom: 5px;
	padding-right: 10px; 
	z-index: 99999;
  }
  
  .bottomNav a {
	float: right;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 17px;
	border-radius: 10px;
  }
  
  .bottomNav a:hover {
	background: #f1f1f1;
	color: black;
  }



/* KEYFRAMES
================================================== */

/* Btn hover */

@keyframes btnHover {
	0% {
		top: -2px;
		right: -2px;
		bottom: -2px;
		left: -2px;
	}
	50% {
		top: -7px;
		right: -7px;
		bottom: -7px;
		left: -7px;
		opacity: .4;
	}
	75% {
		top: 3px;
		right: 3px;
		bottom: 3px;
		left: 3px;
	}
	100% {
		top: -2px;
		right: -2px;
		bottom: -2px;
		left: -2px;
	}
}

@-webkit-keyframes btnHover {
	0% {
		top: -2px;
		right: -2px;
		bottom: -2px;
		left: -2px;
	}
	50% {
		top: -10px;
		right: -10px;
		bottom: -10px;
		left: -10px;
		opacity: .3;
	}
	100% {
		top: -2px;
		right: -2px;
		bottom: -2px;
		left: -2px;
	}
}

/* Carousel show */

@keyframes carouselShow {
	0% {
		opacity: 0;
		transform: translate(0, 20px);
	}  
	100% {
		opacity: 1;
	}  
}

@-webkit-keyframes carouselShow {
	0% {
		opacity: 0;
		transform: translate(0, 20px);
	}  
	100% {
		opacity: 1;
	}  
}

/* Carousel hide */

@keyframes carouselHide {
	0% {
		opacity: 1;
	}  
	100% {
		opacity: 0;
		transform: translate(0, -20px);
	}  
}

@-webkit-keyframes carouselHide {
	0% {
		opacity: 1;
	}  
	100% {
		opacity: 0;
		transform: translate(0, -20px);
	}  
}

/* Scroll button */

@keyframes scrollButton {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, 0);
	}
	65% {
		transform: translate(0, -20%);
	}
	75% {
		transform: translate(0, 0);
	}
	85% {
		transform: translate(0, -16%);
	}
	90% {
		transform: translate(0, 0);
	}
	95% {
		transform: translate(0, -8%);
	}
	100% {
		transform: translate(0, 0);
	}
}

@-webkit-keyframes scrollButton {
	0% {
		-webkit-transform: translate(0, 0);
	}
	50% {
		-webkit-transform: translate(0, 0);
	}
	65% {
		-webkit-transform: translate(0, -20%);
	}
	75% {
		-webkit-transform: translate(0, 0);
	}
	85% {
		-webkit-transform: translate(0, -16%);
	}
	90% {
		-webkit-transform: translate(0, 0);
	}
	95% {
		-webkit-transform: translate(0, -8%);
	}
	100% {
		-webkit-transform: translate(0, 0);
	}
}

/* Fade In */

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Fade In Up */

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}

/* Preloader */

@keyframes preloader {
	0% {
		transform: rotate(0deg) scale(1, 1);
	}
	20% {
		transform: rotate(160deg) scale(2, 2);
	}
	100% {
		transform: rotate(360deg) scale(1, 1);
		
	}
}

@-webkit-keyframes preloader {
	0% {
		-webkit-transform: rotate(0deg) scale(1, 1);
	}
	20% {
		-webkit-transform: rotate(160deg) scale(2, 2);
	}
	100% {
		-webkit-transform: rotate(360deg) scale(1, 1);
		
	}
}