/*
	# BASE
	
	# LAYOUT
		+ Header and Navigation
		+ Pages headline
		+ Footer
		+ Widget
		
	# SECTIONS
		+ Portfolio grid
		+ Intro
		+ Blog
		+ Comments
		
	# MODULES
		+ Notebook image
		+ Feature block
		+ Pricing table
		+ Map
		+ Preloader
		+ Media box 1
		+ Media box 2
		+ Featured Post
		+ Carousels
		+ Modals
		+ Lightbox
		+ Calendar widget
		
	# COMPONENTS
		+ Titles
		+ Form components
		+ Icon form
		+ Buttons
		+ Alerts
		+ Blockquotes
		+ Lists
		+ List tags
		+ Tables
		+ Progress bar
		+ Pagination
		+ Counter box
		
	# ANIMATIONS
	
	# GLOBALS
		+ WYSIWYG Editor
		
	# VISUAL COMPOSER
		+ Parallax
		+ Overlay
		+ Buttons
		
	# ANIMATIONS
		
	# RESPONSIVE
		+ Notebook and Above
		+ Notebook
		+ Desktop and Below
		+ Tablet
		+ Tablet and Below
		+ Mobile
		
	# KEYFRAMES
*/

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

body {
	padding-top: 135px;
	-webkit-font-smoothing: antialiased;
	word-spacing: 0;
	letter-spacing: 0;
	font-size: 18px;
	line-height: 30px;
	font-family: Raleway, 'Open Sans', Arial, sans-serif;
	background: #fff;
}

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: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;
	font-family: Judson, 'Open Sans', Arial, sans-serif;
}

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

abbr[title],
abbr[data-original-title] {
	text-decoration: none;
}

hr {
	margin-top: 30px;
	margin-bottom: 30px;
}

caption {
	color: inherit;
}

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

.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; }

	.has-layer > * {
		position: relative;
		z-index: 1;
	}
	
.bottom-space-md {
	margin-bottom: 30px;
}

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

/*
	Header and Navigation
*/

.navbar-over-content {
	padding-top: 0 !important;
}

.navbar {
	margin: 0;
	padding: 50px;
	z-index: 1000;
	background: #fff;
	-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;
}

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

		.menu-items li {
			position: relative;
			display: inline-block;
			float: left;
		}
		
		.menu-items.text-center li {
			float: none;
		}
		
			.menu-items li a {
				display: block;
				padding: 5px 20px;
				text-transform: uppercase;
				font-size: 12px;
				line-height: 22px;
				letter-spacing: .05em;
				color: #000;
			}
			
			.nav > li > a:hover,
			.nav > li > a:focus {
				background-color: transparent;
			}
			
		.menu-items .menu-line {
			position: absolute;
			display: block;
			float: none;
			bottom: -2px;
			width: 10px;
			height: 2px;
			margin: 0 0 0 -5px;
		}
		
.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%);
	}
	
.admin-bar .navbar {
	margin-top: 32px;
}

/*
	Pages headline
*/

.page-headline {
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 30px;
	color: #fff;
	background-position: center center;
	-webkit-background-size: cover;
			background-size: cover;
}
	
	.page-headline h1 {
		font-size: 70px;
		line-height: 1.2em;
		color: #fff;
	}
	
	.page-headline .headline-type {
		font-size: .5em;
		opacity: .7;
	}
	
/*
	Footer
*/

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

	.footer a {
		color: inherit;
		text-decoration: underline;
	}
	
	.footer a:hover {
		text-decoration: none;
	}
	
	.footer p:last-child {
		margin: 0;
	}

/*
	Widget
*/

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

	.widget-title {
		margin-bottom: 20px;
	}

	.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;
}

/* SECTIONS
================================================== */
	
/*
	Portfolio grid
*/

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

	.portfolio-grid .media-box-1 {
		float: left;
		margin: 0;
		padding: 0;
		border-right: 1px solid transparent;
		border-top: 1px solid transparent;
	}

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

/*
	Intro
*/

.intro-subtitle {
	margin: 0 0 25px;
	font-size: 12px;
	letter-spacing: .1em;
	text-align: center;
	font-family: inherit;
	text-transform: uppercase;
}

.intro-maintitle {
	margin: 0;
	font-size: 100px;
	line-height: 1.2em;
	text-align: center;
}

.intro-scroll-down {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 50px;
	width: 100px;
	margin: 0 auto;
	font-size: 10px;
	letter-spacing: .05em;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.intro-scroll-down,
.intro-scroll-down:hover,
.intro-scroll-down:active,
.intro-scroll-down:focus {
	color: #fff;
}

	.intro-scroll-down i {
		display: block;
		font-size: 26px;
		-webkit-animation: scrollButton 2s linear infinite;
				animation: scrollButton 2s linear infinite;
	}
	
/*
	Entry
*/

.entry-content {
	margin-bottom: 50px;
}

/*
	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;
		}
		
/*
	Comments
*/

.comments,
.comment-respond {
	padding: 0 30px;
}

.comments-navigation {
	padding: 15px 0;
	font-size: 14px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.comment-respond {
	margin-bottom: 50px;
}

.form-submit {
	text-align: right;
}

.commentlist {
	margin-left: -30px;
	margin-right: -30px;
	padding: 0;
	font-size: 16px;
	line-height: 26px;
}

	.commentlist li {
		list-style-type: none;
	}
	
	.comment {
		position: relative;
	}
	
	.comment:last-child {
		margin-bottom: 0;
	}
	
		.comment-avatar {
			position: absolute;
			top: 30px;
			width: 50px;
			height: 50px;
		}
		
		.bypostauthor .comment-avatar {
			border-bottom-width: 3px;
			border-bottom-style: solid;
		}
		
			.comment-avatar img {
				width: 100%;
				height: 100%;
			}
			
		.comment-head {
			margin-bottom: 15px;
			padding: 15px 0;
			font-size: 14px;
			line-height: 20px;
			color: #888;
		}
		
			.comment-author-name {
				font-weight: 700;
			}
			
			.comment-time {
				font-style: italic;
			}
			
			.comment-edit-link,
			.comment-reply-link {
				display: inline-block;
				margin-left: 20px;
			}
	
		.comment-body > *:last-child {
			margin-bottom: 0;
		}

	
	/* Main comments */
	
	.commentlist > .comment {
		padding: 30px 30px 30px 110px;
		margin: 0 0 30px;
		border: 1px solid #eee;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
		.commentlist > .comment > .comment-avatar {
			left: 30px;
		}
		
	/* Children comments */

	.commentlist .children {
		padding: 0;
	}
	
		.commentlist .children li {
			margin-top: 30px;
			padding-top: 30px;
			padding-left: 80px;
			border-top: 1px solid #eee;
		}
		
		.commentlist .children .comment-avatar {
			left: 0;
		}
	
/* MODULES
================================================== */

/*
	Notebook image
*/

body .section-notebook {
	overflow: inherit !important;
}
	
.notebook-bg div,
.notebook-bg img,
.notebook-frame img {
	width: 1200px;
}

.img-notebook {
	position: relative;
	height: 340px;
	margin-top: -40px;
	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:before {
		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:before {
		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);
		}

/*
	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;
	}
	
/*
	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: 12px;
		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;
		line-height: 1.2em;
		color: #fff;
	}
	
	.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: 18px;
		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 {
		margin-bottom: 30px;
		text-align: left;
	}
	
		.pricing-features .list-with-icon li {
			margin-bottom: 10px;
			color: #fff;
		}
	
		.pricing-features .fa-close {
			color: #666;
		}
		
/*
	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-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;
	}

/*
	Media box 1
*/

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

	.media-box-1 .box-bg {
		display: block;
		width: 100%;
		height: auto;
		-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;
}

/*
	Media box 2
*/

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

	.media-box-2 img {
		display: block;
		width: 100%;
		height: auto;
		-webkit-transition: all .6s;
		   -moz-transition: all .6s;
				transition: all .6s;
	}

	.media-box-2 .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;
	}
	
		.media-box-2 .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%);
		}
		
		.media-box-2 .only-icon .box-layer-inner {
			font-size: 30px;
		}
		
			.media-box-2 .box-layer-inner > *:last-child {
				margin-bottom: 0;
			}
			
			.media-box-2 .box-layer-title {
				margin-bottom: 0;
				font-size: 30px;
				color: #fff;
			}
			
			.media-box-2 p {
				margin-bottom: 20px;
				-webkit-transition: all .6s;
				   -moz-transition: all .6s;
						transition: all .6s;
			}
			
			.media-box-2 .box-layer li {
				padding: 10px;
			}
			
				.media-box-2 .box-layer ul a {
					display: block;
					font-size: 20px;
					line-height: 1em;
					color: #fff;
				}
				
				.media-box-2 .box-layer ul a:hover {
					-webkit-transform: scale(1.3);
					   -moz-transform: scale(1.3);
							transform: scale(1.3);
				}
				
.media-box-2:hover .box-bg {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
			transform: scale(1.1);
}

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

/*
	Featured Post
*/

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

	.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);
}

/*
	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;
}

.owl-dots {
	position: absolute;
	overflow: hidden;
	bottom: 20px;
	left: 50%;
	z-index: 1;
	-webkit-transform: translate(-50%, 0);
	   -moz-transform: translate(-50%, 0);
			transform: translate(-50%, 0);
}
	
	.owl-dot {
		display: block;
		float: left;
		width: 15px;
		height: 15px;
		margin: 0 5px;
		border: 2px solid #fff;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}
	
/* 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;
		}
		
/* Gallery carousel */

.gallery-carousel .owl-dots {
	bottom: 15px;
}

.gallery-carousel-item {
	position: relative;
	overflow: hidden;
}

	.gallery-carousel-text {
		position: absolute;
		right: 0;
		bottom: 45px;
		left: 0;
		padding: 20px;
		text-align: center;
		color: #fff;
		background: rgba(0, 0, 0, .5);
		z-index: 1;
	}
	
		.gallery-carousel-text > *:last-child {
			margin-bottom: 0;
		}
	
	.gallery-carousel-title {
		margin-bottom: 10px;
		color: #fff;
	}
	
/*
	Modals
*/

.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-figure {
			position: relative;
			overflow: hidden;
			height: 200px;
			margin-left: -20px;
			margin-right: -20px;
		}
		
			.modal-body figure img {
				position: absolute;
				top: 50%;
				width: 100%;
				-webkit-transform: translate(0, -50%);
				   -moz-transform: translate(0, -50%);
						transform: translate(0, -50%);
			}
			
.modal-backdrop.in {
	opacity: .8;
}

/*	
	Lightbox
*/

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

/*
	Calendar widget
*/

.calendar_wrap {
	padding: 5px 8px 0;
	background: #fcfcfc;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

	.calendar_wrap table {
		width: 100%;
		margin: 0;
	}

		.calendar_wrap table caption,
		.calendar_wrap table thead th,
		.calendar_wrap table tbody th,
		.calendar_wrap table tfoot th,
		.calendar_wrap table thead td,
		.calendar_wrap table tbody td,
		.calendar_wrap table tfoot td {
			text-align: center;
			border: 0;
		}
		
			.calendar_wrap table tbody a {
				font-weight: 700;
			}
			
		.calendar_wrap table tfoot {
			text-transform: uppercase;
			font-size: 12px;
		}
		
			.calendar_wrap table tfoot td {
				padding: 8px 0;
			}

			.calendar_wrap table tfoot td:first-child {
				text-align: left;
			}
			
			.calendar_wrap table tfoot td:last-child {
				text-align: right;
			}

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

/*
	Titles
*/

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

.section-subtitle {
	margin: 0 0 100px;
	font-size: 24px;
	line-height: 36px;
	font-family: inherit;
	font-weight: 300;
	color: #888;
}

.text-white .section-title,
.text-white .section-subtitle {
	color: #fff;
}

/*
	Form components
*/

.form-control::-webkit-input-placeholder	{ color: #666; opacity: 1; }
.form-control::-moz-placeholder				{ color: #666; opacity: 1; }
.form-control:-ms-input-placeholder			{ color: #666; opacity: 1; }
.form-control:-moz-placeholder				{ color: #666; opacity: 1; }

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

.form-control,
.widget select {
	height: 60px;
	padding: 19px;
	border: 1px solid transparent;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	background: #f6f6f6;
	-webkit-box-shadow: none !important;
	   -moz-box-shadow: none !important;
			box-shadow: none !important;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
			transition: all .5s;
}

.widget select {
	width: 100%;
}

.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 .form-control,
.has-error .form-control:focus,
.has-success .form-control,
.has-success .form-control:focus {
	border-color: #f6f6f6;
}

span.wpcf7-not-valid-tip {
	display: inline-block;
	margin-top: 10px;
	padding: 3px 10px;
	font-size: 12px;
	line-height: 18px;
	border: 1px solid #ec2f10;
	color: #ec2f10;
	background: #fff5f5;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
}

/*
	Icon form
*/

.icon-form {
	position: relative;
}

	.icon-form .form-control {
		padding-right: 50px;
	}

	.icon-form .btn {
		position: absolute;
		top: 0;
		right: 0;
		padding-right: 20px;
		padding-left: 20px;
		color: #888;
		background: transparent;
	}
	
/*
	Buttons
*/

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

.btn {
	position: relative;
	height: 60px;
	padding: 18px 28px;
	border-width: 2px;
	font-size: 14px;
	line-height: 20px;
	background: #f6f6f6;
	text-transform: uppercase;
	font-weight: 700;
	background: transparent;
	z-index: 1;
	-webkit-box-shadow: none !important;
	   -moz-box-shadow: none !important;
			box-shadow: none !important;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

.btn:hover {
	border-color: transparent;
}

.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;
	}

.btn-border-default:hover,
.btn-border-default:focus {
	color: #fff;
}

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

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

.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;
}

/*
	Alerts
*/

.alert,
div.wpcf7-response-output {
	margin: 0 0 30px;
	padding: 15px 30px;
	font-size: 14px;
	color: #000;
	background: transparent;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

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

.alert-danger,
div.wpcf7-mail-sent-ng {
	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,
div.wpcf7-validation-errors,
div.wpcf7-spam-blocked {
	border-color: #eac80f;
	color: #eac80f;
	background: rgba(234, 200, 15, .05); /* #eac80f */
}

/*
	Blockquotes
*/

blockquote {
	position: relative;
	padding: 0 0 0 70px;
	border: 0;
	font-size: 1.333333em;
	line-height: 1.333333em;
	font-weight: 300;
	font-style: italic;
}

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

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

.text-white blockquote:before {
	background-image: url("../images/svg/quote-light.svg");
	opacity: 1;
}
	
.quote-box {
	padding: 0;
	font-size: 1em;
	line-height: 1.6666667em;
}
	
.quote-box:before {
	top: -15px;
	left: 40px;
	margin-top: 0;
}
	
	.quote-box .text {
		padding: 40px;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
.quote-box.transparent-dark:before {
	background-image: url("../images/svg/quote-light.svg");
	opacity: 1;
}

	.quote-box.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);
		}

/*
	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;
	}

/*
	Tables
*/

.table {
	margin-bottom: 30px;
}

table {
	width: 100%;
	font-size: 14px;
	line-height: 24px;
}

table:not([class="table"]) td,
table:not([class="table"]) th {
	padding: 8px;
	border: 1px solid #eee;
}

/*
	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 {
			-webkit-transition: none;
			   -moz-transition: none;
					transition: none;
		}
		
		.progress-bar-title {
			font-size: 12px;
		}
		
			.progress-bar-title .text-gray {
				color: #888;
			}
			
/*
	Pagination
*/

.pagenav {
	margin-bottom: 40px;
	padding: 0;
	text-align: center;
	list-style-type: none;
}

	.pagenav a {
		display: inline-block;
	}

	.pagenav .page-numbers {
		display: inline-block;
		min-width: 50px;
		margin: 0 5px 10px;
		padding: 13px;
		border: 2px solid #eee;
		font-size: 14px;
		line-height: 20px;
		color: #000;
		-webkit-transition: color .3s, background-color .3s, border-color .3s;
		   -moz-transition: color .3s, background-color .3s, border-color .3s;
				transition: color .3s, background-color .3s, border-color .3s;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
				border-radius: 2px;
	}
	
		.pagenav a.page-numbers:hover,
		.pagenav a .page-numbers:hover {
			color: #fff;
		}
		
		.pagenav > span.page-numbers,
		.pagenav .page-numbers.current {
			color: #888;
			border-color: transparent;
		}

/*
	Counter box
*/

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

	.counter-box .number {
		display: block;
		margin-bottom: 10px;
		font-size: 48px;
		line-height: 1em;
		font-weight: 100;
	}
	
		.counter-box .number i {
			display: inline-block;
			vertical-align: middle;
			font-size: 32px;
		}
	
	.counter-box .text {
		display: block;
		font-weight: 700;
	}
	
/* GLOBALS
================================================== */

.page-edit-link {
	font-size: 14px;
	line-height: 24px;
}

	.page-edit-link a {
		display: inline-block;
		margin-right: 15px;
	}
	
.embed-auto iframe {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
}

.embed-responsive-1by1 {
	padding-bottom: 100%;
}

.embed-responsive-256by81 {
	padding-bottom: 31.640625%;
}

/* WYSIWYG Editor */

.attachment-blog-thumb {
	height: auto;
}

.entry-content img {
	margin: 0 0 30px 0;
}

.alignleft,
img.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
	display: inline;
	float: left;
}

.alignright,
img.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
	display: inline;
	float: right;
}

.aligncenter,
img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	display: block;
	clear: both;
}

.alignnone {
	margin-bottom: 30px;
}

.wp-caption {
	max-width: 100%;
	text-align: left;
}

	.wp-caption img {
		display: block;
		border: 0 none;
		padding: 0;
		margin: 0;
	}

	.wp-caption p.wp-caption-text {
		line-height: 18px;
		font-size: 14px;
		margin: 0;
		padding: 10px 0 0;
		font-style: italic;
	}
	
/* Text meant only for screen readers. */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
}

blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
}

blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
}

.gallery {
	margin-bottom: 30px !important;
}

	.gallery-item {
		position: relative;
		overflow: hidden;
		float: left;
		margin: 0;
		text-align: center;
		list-style: none;
	}
	
	.gallery-columns-1 .gallery-item	{ width: 100%; }
	.gallery-columns-2 .gallery-item	{ width: 50%; }
	.gallery-columns-3 .gallery-item	{ width: 33.3333333%; }
	.gallery-columns-4 .gallery-item	{ width: 25%; }
	.gallery-columns-5 .gallery-item	{ width: 20%; }
	.gallery-columns-6 .gallery-item	{ width: 16.6666667%; }
	.gallery-columns-7 .gallery-item	{ width: 14.2857143%; }
	.gallery-columns-8 .gallery-item	{ width: 12.5%; }
	.gallery-columns-9 .gallery-item	{ width: 11.1111111%; }
	
		.gallery-caption {
			position: absolute;
			right: 0;
			bottom: 0;
			left: 0;
			line-height: 18px;
			font-size: 14px;
			margin: 0;
			padding: 10px;
			font-style: italic;
			color: #fff;
			background: rgba(0, 0, 0, .5);
		}
		
		.gallery .gallery-item a {
			display: block;
		}

		.gallery .gallery-item a:hover {
			opacity: .8;
		}

		.gallery .gallery-item img {
			display: block;
			width: 100%;
			border: 0 !important;
		}

.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.post-content img,
.entry-content img {
	height: auto;
}

/* VISUAL COMPOSER
================================================== */

/*
	Parallax
*/

.vc_parallax-content-outside-gradient {
	overflow: inherit !important;
	z-index: -1;
}

.vc_parallax-content-outside-gradient:after {
	position: absolute;
	content: "";
	top: -450px;
	right: 0;
	left: 0;
	height: 450px;
	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) 10%,rgba(255,255,255,0.3) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 10%,rgba(255,255,255,0.3) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b3ffffff',GradientType=0 );
}

	.vc_parallax-content-outside-gradient .vc_parallax-wrapper {
		position: absolute;
		overflow: hidden;
		top: -450px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 0;
	}
	
	.vc_parallax-content-outside-gradient .vc_parallax-inner {
		margin-top: -450px;
	}

/*
	Overlay
*/

.vc_overlay-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.vc_overlay > * {
	position: relative;
	z-index: 1;
}

.vc_overlay > .vc_overlay-inner {
	position: absolute;
	z-index: 0;
}

.vc_overlay > .vc_overlay-inner + .vc_parallax-inner {
	z-index: -1;
}

/*
	Buttons
*/

.vc_general.vc_btn3.vc_btn3-style-steady,
.vc_general.vc_btn3.vc_btn3-style-steady:focus,
.vc_general.vc_btn3.vc_btn3-style-steady:hover {
	border-width: 2px;
}

.vc_btn3.vc_btn3-style-steady,
.vc_btn3.vc_btn3-style-steady:before {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
			transition: all .5s;
}

.vc_btn3.vc_btn3-style-steady {
	position: relative;
	border-style: solid;
	background: #f6f6f6;
	text-transform: uppercase;
	font-weight: 700;
	background: transparent;
	z-index: 1;
}

.vc_btn3.vc_btn3-style-steady:hover {
	border-color: transparent;
}

.vc_btn3.vc_btn3-style-steady:before {
	position: absolute;
	content: "";
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	opacity: 1;
	z-index: -1;
}

.vc_btn3.vc_btn3-style-steady:hover:before {
	-webkit-animation: btnHover .5s linear 1;
			animation: btnHover .5s linear 1;
}

.vc_btn3.vc_btn3-shape-rounded.vc_btn3-style-steady,
.vc_btn3.vc_btn3-shape-rounded.vc_btn3-style-steady:before {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

.vc_btn3.vc_btn3-shape-round.vc_btn3-style-steady,
.vc_btn3.vc_btn3-shape-round.vc_btn3-style-steady:before {
	-webkit-border-radius: 2em;
	   -moz-border-radius: 2em;
			border-radius: 2em;
}

/* 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;
}

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

/*
	Notebook and Above
*/

@media screen and (min-width: 992px) {
	
	/* Submenu */
	
	.menu-items .sub-menu {
		position: absolute;
		visibility: hidden;
		top: 100%;
		left: 0;
		width: 250px;
		margin: 0;
		padding: 0;
		background: #fcfcfc;
		opacity: 0;
		-webkit-transition: all .3s;
		   -moz-transition: all .3s;
				transition: all .3s;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;
	}
	
	.menu-items li:hover > .sub-menu {
		visibility: visible;
		opacity: 1;
	}
	
		.menu-items .sub-menu li {
			display: block;
			float: none;
		}
		
			.menu-items .sub-menu li a {
				padding-top: 10px;
				padding-bottom: 10px;
			}
			
			.menu-items .sub-menu .sub-menu {
				top: 0;
				left: 100%;
			}
	
}

/*
	Notebook
*/

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

/*
	Desktop and Below
*/

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

/*
	Tablet
*/

@media screen and (min-width: 768px) and (max-width: 991px) {
	
	/*
		Titles
	*/
	
	.section-title {
		font-size: 60px;
	}
	
	.section-subtitle {
		font-size: 20px;
	}
	
	/*
		Portfolio
	*/
	
	.portfolio-grid.column-5 .media-box-1 {
		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-width: 991px) {
	
	body {
		padding-top: 75px;
	}
	
	/*
		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;
		z-index: 2;
	}
	
	.main-menu {
		position: fixed;
		overflow: auto;
		float: none !important;
		top: 0;
		bottom: 0;
		left: 0;
		width: 250px;
		padding-top: 15px;
		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;
	}
	
	.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 ,
			.navbar .menu-items li:hover > 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 .media-box-2 {
			margin-bottom: 0;
		}
	
}

/*
	Mobile
*/

@media screen and (max-width: 782px) {
	
	.admin-bar .navbar {
		margin-top: 45px;
	}
	
}

@media screen and (max-width: 600px) {
	
	.admin-bar .navbar.top-nav-collapse {
		margin-top: 0;
	}
	
}

@media screen and (max-width: 767px) {
	
	/*
		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 .menu-line {
			display: none;
		}
	
	/*
		Page headline
	*/
	
	.page-headline h1 {
		font-size: 32px;
	}
	
	/*
		Intro
	*/
	
	.intro-maintitle {
		font-size: 32px;
	}
	
	.intro-scroll-down {
		bottom: 30px;
	}
	
	/*
		Titles
	*/
	
	.section-title {
		font-size: 50px;
	}
	
	.section-subtitle {
		font-size: 18px;
	}
	
	/*
		Map
	*/
	
	.section-map {
		height: 250px;
	}
	
	/*
		Portfolio
	*/
	
	.portfolio-grid.column-5 .media-box-1 {
		width: 50%;
	}
	
	.media-box-1:hover .box-layer-title {
		margin-bottom: 30px;
	}
	
	.media-box-1 .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;
		}
	
	/*
		Section bottom image
	*/
	
	.img-notebook {
		height: 190px;
		margin: 110px 0 0;
	}
	
	.notebook-bg div,
	.notebook-bg img,
	.notebook-frame img {
		width: 670px;
	}
	
	.notebook-frame {
		width: 280px;
		height: 149px;
	}
	
	body .before-notebook {
		padding-bottom: 150px !important;
	}
	
	/*
		Blockquotes
	*/

	blockquote {
		padding: 0 0 0 40px;
		font-size: 1.2em;
		line-height: 1.2em;
	}

	blockquote:before {
		width: 30px;
		height: 26px;
	}
	
	.quote-box:before {
		left: 20px;
		width: 40px;
		height: 34px;
		margin-top: 0;
	}
		
		.quote-box .text {
			padding: 30px 20px;
			font-size: 14px;
			line-height: 1.6666667em;
		}
		
	/*
		Blockquote carousel
	*/
	
	.blockquote-carousel {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	/*
		Filter menu
	*/
	
	.filter-menu {
		margin-top: 0 !important;
	}
	
	.filter-menu.pull-left,
	.filter-menu.pull-right {
		float: none !important;
	}
	
	/*
		Pricing table
	*/
	
	.pricing-table {
		margin-right: 20px;
		margin-left: 20px;
	}
	
	/*
		Comments
	*/
	
	.comments,
	.comment-respond {
		padding-left: 0;
		padding-right: 0;
	}
	
	.post-bottom-content,
	.commentlist {
		margin-left: 0;
		margin-right: 0;
	}
	
		.commentlist > .comment {
			padding-left: 30px;
			padding-top: 15px;
		}
		
			.comment-avatar {
				display: none;
			}
			
			.comment-head {
				margin-bottom: 0;
			}
		
			.commentlist .children li {
				margin-left: 15px;
				padding: 15px 0 0;
			}
			
	/*
		WYSIWYG Editor
	*/
	
	.gallery-columns-1 .gallery-item	{ width: 100%; }
	.gallery-columns-2 .gallery-item,
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-9 .gallery-item	{ width: 50%; }
	
	/*
		Visual Composer
	*/
	
	.vc_parallax-content-outside-gradient:after {
		top: -300px;
		height: 300px;
	}

		.vc_parallax-content-outside-gradient .vc_parallax-wrapper {
			top: -300px;
		}
		
		.vc_parallax-content-outside-gradient .vc_parallax-inner {
			margin-top: -300px;
		}
}

/* 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);
	}
}

/* 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);
		
	}
}