/* ==============================================================

Project:	Appbox Responsive App Landing Template
Info:		https://www.codegrape.com/item/appbox-responsive-app-landing-template/19097
Version:	1.0
Author:		flashblue
Profile:	https://www.codegrape.com/user/flashblue

-----------------------------------------------------------------
					*** TABLE OF CONTENTS ***
-----------------------------------------------------------------

	1.	General
	2.	Loader
	3.	Buttons
	4.	Navigation
	5.	Slider
	6.	Features
	7.	How It Works
	8.	Download
	9.	Counter
	10.	Screenshots
	11.	Testimonials
	12.	Newsletter
	13.	Pricing Table
	14.	FAQ
	15.	Contact
	16.	Footer
	17.	Blog List
	18.	Single Blog Post
	
=============================================================*/

/*********************
    - 1. General -
*********************/
body {
	font-size:16px;
	font-family:"Source Sans Pro", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	margin-top:0;
	font-family:"Source Sans Pro", sans-serif;
	font-weight:700;
}

img {
	max-width:100%;
}

a {
	color:#444;
	-webkit-transition:.3s;
	   -moz-transition:.3s;
			transition:.3s;
}

a:hover {
	text-decoration:none;
	outline:0;
}

a:focus {
	text-decoration:none;
	outline:0;
}

/********************
    - 2. Loader -
********************/
.preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff;
    z-index:9999999;
}

.spinner-loader {
    margin-top:-20px;
    margin-left:-25px;
    width:50px;
    height:40px;
    text-align:center;
    font-size:10px;
    position:absolute;
    top:50%;
    left:50%;
}

.spinner-loader > div {
    height:100%;
    width:6px;
    display:inline-block;
    -webkit-animation:loader-stretchdelay 1.2s infinite ease-in-out;
    		animation:loader-stretchdelay 1.2s infinite ease-in-out;
}

.spinner-loader .load2 {
    -webkit-animation-delay:-1.1s;
    animation-delay:-1.1s;
}

.spinner-loader .load3 {
    -webkit-animation-delay:-1.0s;
    animation-delay:-1.0s;
}

.spinner-loader .load4 {
    -webkit-animation-delay:-0.9s;
    animation-delay:-0.9s;
}

.spinner-loader .load5 {
    -webkit-animation-delay:-0.8s;
    animation-delay:-0.8s;
}

@-webkit-keyframes loader-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform:scaleY(0.4);
    }
	
    20% {
        -webkit-transform:scaleY(1);
    }
}

@keyframes loader-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform:scaleY(0.4);
				transform:scaleY(0.4);
    }
	
    20% {
        -webkit-transform:scaleY(1);
				transform:scaleY(1);
    }
}

/*********************
    - 3. Buttons -
*********************/
.btn-custom {
	border:2px solid;
	display:inline-block;
	font-size:18px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:0.1em;
	padding:10px;
	min-width:176px;
	text-align:center;
}

.btn-custom i {
	margin-right:6px;
}

.btn-fill {
	position:relative;
	box-shadow:0 0 1px transparent;
	transition:color 0.3s;
	-webkit-transform:perspective(1px) translateZ(0);
			transform:perspective(1px) translateZ(0);
	-webkit-transition-property:color;
			transition-property:color;
	-webkit-transition-duration:0.3s;
			transition-duration:0.3s;
}

.btn-fill:before {
	content:"";
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	right:0;
	bottom:0;
	-webkit-transform:scaleX(0);
			transform:scaleX(0);
	-webkit-transform-origin:0 50%;
			transform-origin:0 50%;
	-webkit-transition-property:transform;
			transition-property:transform;
	-webkit-transition-duration:0.3s;
			transition-duration:0.3s;
	-webkit-transition-timing-function:ease-out;
			transition-timing-function:ease-out;
	-webkit-transform-origin-x:0px;
	-webkit-transform-origin-y:50%;
}

.btn-fill:hover {
	color:#fff;
}

.btn-fill:hover:before {
	-webkit-transform:scaleX(1);
    		transform:scaleX(1);
}

/* Download */
.btn-download {
	position:relative;
	display:inline-block;
	color:#fff;
	background:rgba(255, 255, 255, 0.1);
	border:1px solid rgba(255, 255, 255, 0.3) !important;
	padding:8px 20px 6px 60px;
	font-size:20px;
	font-weight:600;
	min-width:220px;
	margin-right:20px;
	margin-bottom:20px;
	text-align:left;
	transition:all 0.1s linear;
}

.btn-download span {
	font-size:14px;
	display:block;
	font-weight:400;
	letter-spacing:0.04em;
}

.btn-download i {
	font-size:32px;
	position:absolute;
	top:14px;
	left:16px;
}

.btn-download:focus,
.btn-download:hover {
	border-color:#fff !important;
	color:#fff !important;
}

/************************
    - 4. Navigation -
************************/
.navbar {
	margin-bottom:0;
}

.navbar-brand {
	padding:30px 15px 0;
	height:auto;
	-webkit-transition:all 0.3s ease-out;
	   -moz-transition:all 0.3s ease-out;
			transition:all 0.3s ease-out;
}

.navbar-brand h1 {
	font-size:34px;
	margin:0;
	text-transform:uppercase;
	color:#fff;
	font-weight:700;
	-webkit-transition:all 0.5s;
	   -moz-transition:all 0.5s;
			transition:all 0.5s;
}

.navbar-default {
	background:rgba(255,255,255,0.10);
	border:none;
	border-bottom:1px solid rgba(255,255,255,0);
	border-radius:0;
	z-index:8;
	-webkit-transition:all 1s;
	   -moz-transition:all 1s;
			transition:all 1s;
}

.navbar-nav li {
	padding:30px 0;
	margin:0 2px;
	-webkit-transition:all 0.3s ease-out;
	   -moz-transition:all 0.3s ease-out;
			transition:all 0.3s ease-out;
}

.nav li {
    position:relative;
}

.navbar-default .navbar-nav > li > a {
	font-weight:700;
	font-size:14px;
	text-transform:uppercase;
	color:#fff;
	letter-spacing:0.05em;
	padding:6px 16px 6px; 
	position:relative;
	border:1px solid transparent;
}

.nav ul {
	display:none;
	padding:0;
	min-width:200px;
	list-style:none;
    position:absolute;
	top:100%;
	left:0;
	border:1px solid rgba(255, 255, 255, 0.12);
	margin-top:0px;
}

.nav ul li {
	transition:all 0.4s;
	margin:0;
}

.nav ul li:hover {
	background:rgba(255,255,255,0.14);
}

.nav li:hover a {
	border:1px solid rgba(255,255,255,0.5);
}

.nav ul li a {
	border:none !important;
}

.nav .active a {
	background:none !important;
	color:#fff !important;
	border:1px solid rgba(255,255,255,0.5) !important;
	transition:all 0.3s;
}

.nav ul li a {
	display:block;
	color:#fff;
	padding:12px 20px;
}

.nav .active ul li a {
	border:none !important;
}

.nav ul ul {
	left:100%;
	top:0;
	margin-top:-1px;
}

.nav ul li {
	padding:0;
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0.05em;
	border-bottom:1px solid rgba(255,255,255,0.12);
}

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

.sticky-header {
	border-bottom:1px solid rgba(255,255,255,0.2);
	-webkit-transition:all 0.3s ease-out;
			transition:all 0.3s ease-out;
}

.sticky-header .navbar-brand {
	padding-top:15px;
}

.sticky-header .navbar-nav>li {
	padding:15px 0;
}

.sticky-header .navbar-brand h1,
.sticky-header .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	color:#fff;
}

/********************
    - 5. Slider -
********************/
.banner {
	position:relative;
	top:0px;
	left:0;
	width:100%;
	padding:168px 0 54px;
}

.banner:after {
	content:'';
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	opacity:0.6;
}

.banner .row {
	position:relative;
	z-index:1;
}

.header-content {
	padding-top:50px;
}

.typing-title {
	display:none;
}

.header-content h2 {
	font-size:42px;
	color:#fff;
	margin-bottom:1em;
}

.header-content p {
	font-size:18px;
	color:#fff;
	letter-spacing:0.03em;
	line-height:1.6em;
}

.download-button {
	margin-top:60px;
}

.download-button a {
	margin-right:20px;
	color:#fff;
	border-color:#fff;
}

.download-button a:before {
	background:#fff;
}

/* Slider */
.header-slider {
	text-align:center;
}

.slider-image img {
	display:inline-block !important;
	width:auto !important;
	max-width:100%;
}

.header-slider .owl-dots .owl-dot {
	display:inline-block;
	margin-top:30px;
}

.header-slider .owl-dots .owl-dot span {
    width:16px;
    height:16px;
	margin:5px 7px;
    background:#D6D6D6;
    display:block;
    transition:opacity 0.2s;
    border-radius:50%;
    background:#fff;
	opacity:0.5;
}

.header-slider .owl-dots .owl-dot span:hover,
.header-slider .owl-dots .active span {
	opacity:1;
}

/* Video */
.video-bg .header-content {
	padding:50px 0 100px;
	text-align:center;
}

/**********************
    - 6. Features -
**********************/
.feature {
	padding:100px 0;
}

.section-title {
	text-align:center;
	margin-bottom:70px;
}

.section-title h2 {
	font-size:32px;
	color:#212121;
	font-weight:400;
	margin-bottom:6px;
}

.section-title h2 span {
	font-weight:700;
}

.section-title p {
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	margin-bottom:0;
}

.feature-single {
	text-align:center;
	padding:20px;
	position:relative;
}

.feature-single:before {
	content:'';
	display:block;
	position:absolute;
	z-index:-1;
	top:10px;
	bottom:10px;
	right:-10px;
	left:-10px;
	-webkit-transform:scale(0,1);
	   -moz-transform:scale(0,1);
			transform:scale(0,1);
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;
			transition:all 0.3s;
	
}

.feature-single:after {
	content:'';
	display:block;
	position:absolute;
	z-index:-1;
	top:-10px;
	bottom:-10px;
	right:10px;
	left:10px;
	-webkit-transform:scale(1,0);
	   -moz-transform:scale(1,0);
			transform:scale(1,0);
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;
			transition:all 0.3s;	
}

.feature-single:hover:after,
.feature-single:hover:before {
	-webkit-transform:scale(1);
	   -moz-transform:scale(1);
			transform:scale(1);
}

.icon-feature-single {	
    display:inline-block;
    width:54px;
    height:54px;
    font-size:22px;
    border-radius:6px;
    padding-top:12px;
	margin-bottom:30px;
	margin-top:12px;
    -webkit-transform:rotate(45deg);
       -moz-transform:rotate(45deg);
			transform:rotate(45deg);
}	

.icon-feature-single i {
   	-webkit-transform:rotate(-45deg);
       -moz-transform:rotate(-45deg);
	 		transform:rotate(-45deg);
}

.feature-single h3 {
	font-size:18px;
	color:#212121;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:0.03em;
	padding:10px 0;
}

.feature-single p {
	color:#5d5d5d;
	font-size:14px;
	line-height:1.5em;
	letter-spacing:0.03em;
}

.key-feature {
	background:#f0f6f6;
	padding:100px 0;
}

.key-feature-image {
	padding:0 10px;
}

.key-feature-content .row.no-gutters {
  	margin-right:0;
  	margin-left:0;
}

.key-feature-content .row.no-gutters > [class^="col-"],
.key-feature-content .row.no-gutters > [class*=" col-"] {
  	padding-right:0;
  	padding-left:0;
}

.key-feature-single {
	padding:20px 10px 10px;
	text-align:center;
	border-right:1px solid #ddd;
	border-bottom:1px solid #ddd;
}

.key-feature-single i {
	font-size:52px;
}

.key-feature-single h3 {
	font-size:16px;
	color:#212121;
	text-transform:uppercase;
	font-weight:600;
	letter-spacing:0.03em;
	margin-top:20px;
	height:34px; 
	overflow:hidden;
}

.no-right-border {
	border-right:none;
}

.no-bottom-border {
	border-bottom:none;
}

/**************************
    - 7. How It Works -
**************************/
.how-it-work .row.no-gutters {
  	margin-right:0;
  	margin-left:0;
}

.how-it-work .container-fluid,
.how-it-work .row.no-gutters > [class^="col-"],
.how-it-work .row.no-gutters > [class*=" col-"] {
  	padding-right:0;
  	padding-left:0;
}

.how-work-image img {
	width:100%;
}

.how-work-content {
	padding:100px 10% 30px;
}

.how-work-content h2 {
	font-size:32px;
	color:#212121;
	margin-bottom:1em;
}

.how-work-content p {
	font-size:16px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	line-height:1.5em;
	margin-bottom:1.5em;
}

.how-work-content ul {
	padding-left:0;
	list-style:none;
}

.how-work-content ul li {
	font-size:16px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	line-height:1.5em;
	position:relative;
}

.how-work-content ul li:before {
	content:'\f101';
	font-family:'FontAwesome';
	margin-right:10px;
	font-size:16px;
}

.work-btn {
	margin-top:60px;
}

.work-btn a {
	margin-right:20px;
}

.work-btn a:hover {
	color:#fff;
}

/**********************
    - 8. Download -
**********************/
.request-download {
	background:#f0f6f6;
	padding:100px 0;
}

.download-link-form {
	text-align:center;
}

.download-link-form .form-control {
	font-family:"Source Sans Pro", sans-serif;
	font-size:16px;
	letter-spacing:0.03em;
	background:#fff;
	border:1px solid #e0e0e0;
	border-right:none;
	box-shadow:none;
	border-radius:0;
	height:54px;
	min-width:400px;
	padding:0 20px;
	transition:all 0.3s;
}

.download-link-form .btn-download-link {
	font-family:"Source Sans Pro", sans-serif;
	letter-spacing:0.03em;
	color:#fff;
	font-size:16px;
	text-transform:uppercase;
	height:54px;
	font-weight:600;
	border:none;
	border-radius:0;
	padding:0 30px;
	margin-left:-4px;
	outline:0;
}

.download-link-form .btn-download-link:focus {
	color:#fff;
	box-shadow:none;
	outline:0;
}

.btn-download-store {
	text-align:center;
	margin-top:60px;
}

.btn-download-store a {
	display:inline-block;
	margin:0 10px;
}

/*********************
    - 9. Counter -
*********************/
.complete-project-area {
	padding:80px 0;
	color:#fff;
}

.single-project-area {
	text-align:center;
}

.icon-project {
	display:inline-block;
	padding-top:15px;
}

.icon-project i {
	font-size:50px;
}

.single-project-area h2 {
	font-size:42px;
	margin-top:20px;
}

.single-project-area h3 {
	font-size:18px;
	font-weight:400;
	letter-spacing:0.03em;
	margin-bottom:0;
}

/**************************
    - 10. Screenshots -
**************************/
.screenshot {
	padding:100px 0;
}

.screenshot-single {
	text-align:center;
}

.screenshot-single img {
	display:inline-block !important;
	width:auto !important;
}

.screenshot-slider .owl-dots {
	text-align:center;
	margin-top:40px;
}

.screenshot-slider .owl-dots .owl-dot {
	display:inline-block;
}

.screenshot-slider .owl-dots .owl-dot span {
    width:14px;
    height:6px;
	margin:5px 4px;
    display:block;
    transition:background 0.2s;
    border-radius:4px;
    background:#d2d2d2;
}

.screenshot-slider .owl-nav {
	margin-top:30px;
	text-align:center;
}

.screenshot-slider .owl-nav .owl-prev,
.screenshot-slider .owl-nav .owl-next {
	display:inline-block;
	width:34px;
	height:34px;
	border:1px solid #c8c8c8;
	margin:0 4px;
	color:#212121;
	padding-top:4px;
	border-radius:50%;
	transition:all 0.3s;
}

.screenshot-slider .owl-nav .owl-prev:hover,
.screenshot-slider .owl-nav .owl-next:hover {
	color:#fff;
}

/***************************
    - 11. Testimonials -
***************************/
.testimonials-newsletter .container {
	background:-webkit-linear-gradient(left,rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 50%, transparent 50%);
}

.testimonials-newsletter .section-title {
	margin-bottom:40px;
}

.testimonials-newsletter .section-title h2 {
	color:#fff;
}

.testimonials {
	padding:80px 30px;
}

.owl-testimonial {
	text-align:center;
	padding:0 30px;
}

.testimonial-content {
	position:relative;
}

.testimonial-content:before {
	content:'\f10d';
	font-family:'FontAwesome';
	font-size:54px;
	color:#fff;
	margin-bottom:10px;
	display:inline-block;
}

.testimonial-content p {
	color:#fff;
	font-size:14px;
	letter-spacing:0.03em;
	line-height:1.5em;
}

.testimonial-content h3 {
	color:#fff;
	font-size:16px;
	letter-spacing:0.03em;
	line-height:1.5em;
	text-transform:uppercase;
}

.owl-testimonial .owl-nav {
	margin-top:30px;
}

.owl-testimonial .owl-nav .owl-prev,
.owl-testimonial .owl-nav .owl-next {
	display:inline-block;
	width:24px;
	height:24px;
	background:rgba(255, 255, 255, 0.5);
	margin:0 4px;
	transition:all 0.3s;
}

.owl-testimonial .owl-nav .owl-prev:hover,
.owl-testimonial .owl-nav .owl-next:hover {
	background:#fff;
}

/*************************
    - 12. Newsletter -
*************************/
.newsletter {
	padding:80px 30px;
	text-align:center;
}

.newsletter-content {
	padding:10px 0;
}

.newsletter-content i {
	color:#fff;
	font-size:54px;
}

.newsletter-content p {
	color:#fff;
	font-size:14px;
	letter-spacing:0.03em;
	line-height:1.5em;
	margin-top:1.5em;
}

.newsletter-form {
	margin-top:40px;
}

.newsletter-form .form-control {
	background:none;
	color:#fff;
	border:2px solid #fff;
	border-radius:0;
	height:50px;
	min-width:280px;
	font-size:14px;
	letter-spacing:0.03em;
	padding:0 20px;
}

.newsletter-form .form-control::-webkit-input-placeholder {
	color:#fff;
}

.newsletter-form .form-control:-moz-placeholder {
	color:#fff;
}

.newsletter-form .form-control::-moz-placeholder {
	color:#fff;
}

.newsletter-form .form-control:-ms-input-placeholder { 
	color:#fff;
}

.newsletter-form .btn-subscribe {
	background:#fff;
	font-size:16px;
	font-weight:600;
	text-transform:uppercase;
	border:2px solid #fff;
	border-radius:0;
	height:50px;
	letter-spacing:0.03em;
	padding:0 20px;
	margin-left:-4px;
}

.newsletter-form .btn-subscribe:focus {
	background:#fff;
	box-shadow:none;
	outline:0;
	border:2px solid #fff;
}

/****************************
    - 13. Pricing Table -
****************************/
.pricing {
	padding:100px 0;
}

.price-single {
	background:#fff;
	border:1px solid #e0e0e0;
	text-align:center;
	max-width:320px;
	margin:0 auto;
	transition:transform 0.3s; 
}

.price-single:hover {
    transform:translateY(-4px);
}

.price-header {
	padding:30px 10px 20px;
}

.price-header h2 {
	color:#fff;
	font-size:26px;
	text-transform:uppercase;
}

.price-header p {
	color:#fff;
	font-size:40px;
	font-weight:700;
	margin-bottom:0;
}

.price-header p small {
	font-size:14px;
	font-weight:400;
	letter-spacing:0.03em;
}

.price-specification ul {
	padding-left:0;
	list-style:none;
	margin-bottom:0;
}

.price-specification ul li {
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	padding:14px 10px;
	border-bottom:1px solid #e0e0e0;
}

.price-btn {
	padding:30px 0;
	position:relative;
	z-index:1;
}

.price-btn a {
	padding:8px 10px;
	border-width:1px;
}

.price-btn a:hover {
	color:#fff;
}

.recommended-products .price-header {
	background:rgba(255, 255, 255, 0.1);
}

.recommended-products ul li {
	color:#fff;
	letter-spacing:0.03em;
	padding:14px 10px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.recommended-products .price-btn a {
	color:#fff;
	border-color:#fff;
}

.recommended-products .price-btn a:before {
	background:#fff;
}

/******************
    - 14. FAQ -
*******************/
.our-support {
	padding:100px 0;
	background:#f0f6f6;
}

.faq-support .panel {
	border:none;
	border-radius:0;
	box-shadow:none;
	margin-bottom:8px;
}

.faq-support .panel-heading {
	padding:0;
	border:1px solid #c8c8c8;
	border-radius:0;
}

.faq-support .panel-heading h4 {
	font-size:16px;
	color:#212121;
	font-weight:600;
	cursor:pointer;
}

.faq-support .panel-heading h4 a {
	display:block;
	padding:16px 40px 16px 16px;
}

.faq-support .panel-body {
	border:1px solid #c8c8c8;
	border-top:none !important;
}

.faq-support .panel-body p {
	font-size:14px;
	color:#5d5d5d;
	line-height:1.5em;
	letter-spacing:0.03em;
}

.faq-support .panel-heading  .panel-title a {
	position:relative;
}

.faq-support .panel-heading  .panel-title a:after {
	content:'\f106';
	font-family:'FontAwesome';
	position:absolute;
	right:20px;
	top:18px;
}

.faq-support .panel-heading  a.collapsed:after {
	content:'\f107';
	font-family:'FontAwesome';
	position:absolute;
	right:20px;
	top:18px;
}

/**********************
    - 15. Contact -
**********************/
.contact-us {
	padding:100px 0;
}

.contact-form {
	max-width:748px;
	margin:0 auto;
}

.contact-form .form-group {
	margin-bottom:20px;
}

.contact-form .form-control {
	width:100%;
	border:1px solid #ccc;
	box-shadow:none;
	border-radius:0;
	padding-left:20px;
	padding-right:20px;
	min-height:50px;
	font-size:14px;
	letter-spacing:0.03em;
}

.btn-contact {
	background:transparent;
	outline:0;
}

.btn-contact:hover{
	color:#fff;
}

/*********************
    - 16. Footer -
*********************/
footer {
	padding:80px 0;
	background:#212121;
	text-align:center;
}

.footer-social ul {
	padding-left:0;
}

.footer-social ul li {
	display:inline-block;
	padding:0 4px;
}

.footer-social ul li a {
	display:block;
	color:#fff;
	font-size:16px;
	width:30px;
	height:30px;
	border:1px solid #fff;
	border-radius:4px;
	padding-top:3px;
	margin:0 6px;
	transition:all 0.3s;
    -webkit-transform:rotate(45deg);
       -moz-transform:rotate(45deg);
	  		transform:rotate(45deg);
}

.footer-social ul li a:hover {
	background:#fff;
	color:#212121;
}

.footer-social ul li a i {
	-webkit-transform:rotate(-45deg);
       -moz-transform:rotate(-45deg);
			transform:rotate(-45deg);
}

.copyright-text {
	margin-top:20px;
}

.copyright-text p {
	color:#b0b0b0;
	font-size:16px;
	letter-spacing:0.03em;
	margin-bottom:0;
}

.footer-menu ul {
	padding:0;
	margin-top:30px;
}

.footer-menu ul li {
	display:inline-block;
	padding:0 4px;
}

.footer-menu ul li a {
	color:#b0b0b0;
	text-transform:uppercase;
	font-size:14px;
	letter-spacing:0.03em;
	transition:all 0.2s;
}

.footer-menu ul li a:hover {
	color:#fff;
}

.footer-menu ul li:after {
	content:'/';
	color:#b0b0b0;
	margin-left:10px;
}

.footer-menu ul li:last-child:after {
	display:none;
}

.mfp-close-btn-in .mfp-close {
	position:absolute;
}

/************************
    - 17. Blog List -
************************/
.main-title {
	position:relative;
    top:0px;
    left:0;
    width:100%;
    padding:160px 0 70px;
}

.main-title:after {
    content:'';
    display:block;
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
	opacity:0.9;
}

.main-title .row {
    position:relative;
    z-index:1;
    text-align:center;
}

.main-title-caption h1 {
    font-size:32px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:0.03em;
    position:relative;
	margin-bottom:0;
}

/* Breadcrumb */
.breadcrumb {
	background:none;
	margin-bottom:0;
}

.breadcrumb li {
	letter-spacing:0.1em;
	text-transform:uppercase;
}

.breadcrumb>li+li:before {
	color:#fff;
	font-size:14px;
}

.breadcrumb li a {
	color:#fff;
	font-size:14px;
}

.breadcrumb>.active {
	color:#000;
	font-size:14px;
}

/* Sidebar */
.blog {
	padding:100px 0;
	background:#f0f6f6;
}

.sidebar-single {
	background:#fff;
	padding:30px 40px;
	margin-bottom:50px;
}

.sidebar-title {
	text-align:center;
}

.sidebar-title h2 {
	font-size:22px;
	color:#212121;
	text-transform:uppercase;
	padding-bottom:24px;
	margin-bottom:20px;
	border-bottom:1px solid #e2e2e2;
}

/* Search form */
.search-form .form-control {
	border:1px solid #c8c8c8;
	border-radius:0;
	box-shadow:none;
	font-size:16px;
	height:44px;
}

.btn-search {
	background:none;
	width:100%;
	padding:8px;
	z-index:1;
}

.btn-search:hover {
	color:#fff;
}

/* Author */
.author-content {
	text-align:center;
	padding-top:10px;
}

.author-content img {
	border-radius:50%;
}

.author-content p {
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	line-height:1.5em;
	margin:20px 0;
}

.author-social-follow {
	text-align:center;
	padding:10px 0;
}

.author-social-follow a {
	display:inline-block;
	width:30px;
	height:30px;
	border-radius:50%;
	color:#212121;
	border:1px solid #212121;
	padding-top:3px;
	font-size:16px;
	transition:all 0.2s;
	margin:0 2px;
}

.author-social-follow a:hover {
	color:#fff;
}

/* Sidebar list */
.sidebar-list {}

.sidebar-list ul {
	padding:0;
	list-style:none;
}

.sidebar-list ul li a {
	display:block;
	color:#5d5d5d;
	letter-spacing:0.03em;
	position:relative;
	padding:6px 0;
}

.sidebar-list ul li a:before {
	content:'\f101';
	font-family:'FontAwesome';
	margin-right:10px;
}

/* Popular post */
.popular-post {
    padding:14px 0 6px;
}

.popular-post-image {
    width:24%;
    display:table-cell;
	padding-top:6px;
}

.popular-post-info {
    width:75%;
    display:table-cell;
    padding-left:12px;
    vertical-align:top;
}

.popular-post-info h4 {
	font-size:16px;
	line-height:1.5em;
	margin-bottom:6px;
}

.popular-post-info h4 a {
	color:#5d5d5d;
}

.popular-post-info p {
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0.1em;
}

/* Latest post slider */
.latest-post-slider {
	padding-top:10px;
	text-align:center;
}

.latest-post-slider ul {
	padding:0;
	margin-top:20px;
}

.latest-post-slider ul li {
	display:inline-block;
	font-size:14px;
	color:#212121;
	letter-spacing:0.1em;
	text-transform:uppercase;
}

.latest-post-slider ul li:after {
	content:'/';
	padding:0 4px;
}

.latest-post-slider ul li:last-child:after {
	display:none;
}

.latest-post-slider h3 {
	font-size:18px;
	color:#212121;
	line-height:1.5em;
}

.latest-post-slider .owl-dots {
	margin-top:10px;
}
.latest-post-slider .owl-dots .owl-dot {
	display:inline-block;
	margin:0 3px;
}

.latest-post-slider .owl-dots .owl-dot span {
    width:14px;
    height:14px;
	display:block;
    transition:opacity 0.2s;
    border-radius:50%;
    background:#c8c8c8;
}

/* Instagram feed */
.instagram-feed {
	margin-top:30px;
}

.instagram-feed:after {
	content:'';
	display:block;
	clear:both;
}

.instagram-pics {
	float:left;
	width:31.33%;
	margin-right:3%;
	margin-bottom:3%;
}

.instagram-pics:nth-of-type(3n + 3) {
	margin-right:0;
}

/* Tag cloud */
.tag-cloud a {
	display:inline-block;
	border:1px solid #212121;
	color:#212121;
	text-transform:uppercase;
	font-size:14px;
	letter-spacing:0.03em;
	padding:3px 24px;
	margin-bottom:10px;
	margin-right:6px;
	transition:all 0.3s;
}

.tag-cloud a:hover {
	color:#fff;
}

/* Vertical post */
.vertical-post-single {
	background:#fff;
	padding:20px;
	margin-bottom:30px;
}

.vertical-post-single figure {
	width:100%;
	height:100%;
	overflow:hidden;
}

.vertical-post-single figure img {
	-webkit-transition:all 0.4s;
	   -moz-transition:all 0.4s;
			transition:all 0.4s;
}

.vertical-post-single:hover figure img {
	transform:scale(1.14); 
}

.horizontal-post-single ul,
.vertical-post-single ul {
	padding:0;
	margin-bottom:6px;
}

.vertical-post-single ul {
	margin-top:30px;	
}

/* Horizontal post */
.horizontal-post-single ul {
	margin-top:6px;
}

.horizontal-post-single ul li,
.vertical-post-single ul li {
	display:inline-block;
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.05em;
	text-transform:uppercase;
}

.horizontal-post-single ul li:after,
.vertical-post-single ul li:after {
	content:'/';
	padding:0 2px;
}

.horizontal-post-single ul li:last-child:after,
.vertical-post-single ul li:last-child:after {
	display:none;
}

.horizontal-post-single h2,
.vertical-post-single h2 {
	font-size:18px;
	color:#212121;
	letter-spacing:0.03em;
	margin-top:8px;
	margin-bottom:16px;
}

.horizontal-post-single p,
.vertical-post-single p {
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	line-height:21px;
}

/* Read more button */
.btn-read-more {
	margin-top:10px;
	margin-right:20px;
	font-size:14px;
	background:none;
	z-index:1;
	border-width:1px;
	padding:6px 26px;
	min-width:auto;
}

.btn-read-more:hover {
	color:#fff;
}

.horizontal-post-single {
	background:#fff;
	padding:20px;
	margin-bottom:30px;
}

.horizontal-post-single figure {
	float:left;
	width:46%;
	height:100%;
	overflow:hidden;
}

.horizontal-post-single figure img {
	width:100%;
	-webkit-transition:all linear 0.2s;
	   -moz-transition:all linear 0.2s;
			transition:all linear 0.2s;
}

.horizontal-post-single:hover figure img {
	transform:scale(1.14); 
}

.horizontal-post-single .blog-content {
	float:right;
	width:50%;
	margin-left:-3px;
}

.horizontal-post-single:after {
	content:'';
	display:block;
	clear:both;
}

/* Pagination */
.pagination {}

.pagination > li {
	display:inline-block;
	margin:0 2px;
}

.pagination > li > a {
	font-weight:600;
	color:#212121;
	padding:10px 16px;
	border-radius:0 !important;
	font-size:14px;
	border-color:#212121;
}

.pagination > li > a:hover {
	background:#fff;
}

.pagination > .active > a {
	background:#fff;
}

.pagination > .active > a:hover {
	background:#fff;
}

/*******************************
    - 18. Single Blog Post -
*******************************/
.blog-single-content {
	background:#fff;
	margin-bottom:50px;
}

.entry-header {
	padding:20px 50px;
	width:100%;
}

.entry-header ul {
	padding:0;
	list-style:none;
	margin:0;
}

.entry-header ul li {
	display:inline-block;
	margin-right:8px;
}

.entry-header ul li a {
	color:#fff;
	text-transform:uppercase;
	letter-spacing:0.1em;
}

.entry-header ul li a i {
	font-size:14px;
	margin-right:2px;
}

.entry-body {
	padding:50px 50px 20px;
}

.entry-body h1 {
	font-size:32px;
	letter-spacing:0.03em;
	margin-bottom:24px;
}

.entry-body h2 {
	font-size:22px;
	letter-spacing:0.03em;
	margin-bottom:24px;
}

.entry-body p {
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	line-height:1.8em;
	margin-bottom:1.5em;
}

.entry-body blockquote {
	background:#f8f8f8;
	padding:20px;
}

.entry-body blockquote p:before {
	content:'\f10d';
	font-family:'FontAwesome';
	font-size:23px;
	margin-right:8px;
}

.entry-body ol {
	padding-left:50px;
	margin-bottom:1.5em;
}

.entry-body ol li {
	padding:5px 0;
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
}

.entry-body ul {
	padding-left:50px;
	margin-bottom:1.5em;
	list-style:none;
}

.entry-body ul li {
	padding:5px 0;
	font-size:14px;
	color:#5d5d5d;
	letter-spacing:0.03em;
	position:relative;
}

.entry-body ul li:before {
	content:'';
	width:6px;
	height:6px;
	background:#ccc;
	position:absolute;
	left:-14px;
	top:12px;
}

.entry-footer {
	padding:0 50px 50px;
}

.post-tags,
.post-social {
	padding:6px 0;
}

.post-tags span,
.post-social span {
	display:inline-block;
	color:#212121;
	font-weight:700;
	text-transform:uppercase;
	margin-right:6px;
	letter-spacing:0.03em;
}

.post-tags a,
.post-social a {
	display:inline-block;
	color:#5d5d5d;
	text-transform:uppercase;
	letter-spacing:0.03em;
	transition:all 0.3s;
}

.post-social a {
	margin:0 4px;
}

.post-tags a:after {
	content:',';
}

.post-tags a:last-child:after {
	display:none;
}

.post-nav {
	margin-top:40px;
}

.post-nav:after {
	content:'';
	display:block;
	clear:both;
}

.post-nav a {
	z-index:1;
}

.post-nav a:hover {
	color:#fff;
}

.post-nav .btn-prev {
	float:left;
}

.post-nav .btn-next {
	float:right;
}

.single-postbox {
	background:#fff;
	padding:40px 50px;
	margin-bottom:50px;
}

.single-postbox-title h2 {
    font-size:22px;
    color:#212121;
    text-transform:uppercase;
    padding-bottom:24px;
    margin-bottom:30px;
    border-bottom:1px solid #e2e2e2;
}

.related-post-single {
	text-align:center;
}

.related-post-single ul {
    padding:0;
    margin-top:14px;
}

.related-post-single ul li {
    display:inline-block;
    font-size:12px;
    color:#212121;
    letter-spacing:0.1em;
    text-transform:uppercase;
}

.related-post-single ul li:after {
    content:'/';
    padding:0 4px;
}

.related-post-single ul li:last-child:after {
	display:none;
}

.related-post-single h3 {
    font-size:16px;
    color:#212121;
    line-height:1.5em;
}

.comment-box-single {
	padding:20px 0 10px;
	border-bottom:1px solid #f1f1f1;
}

.comment-box-single:last-child {
	border-bottom:none;
}

.comment-reply {
	margin-left:10%;
}

.comment-box-single:after {
	content:'';
	display:block;
	clear:both;
}

.author-img {
	width:18%;
	float:left;
}

.author-img img {
    border-radius:50%;
}

.comment-single-content {
	width:80%;
	float:right;
}

.author-info h3 {
	color:#212121;
	font-size:18px;
	margin-bottom:6px;
}

.author-info h3 a {
	float:right;
	font-weight:400;
	font-size:16px;
}

.author-info h4 {
	font-size:14px;
	letter-spacing:0.03em;
	font-weight:400;
	margin-top:0;
	padding-bottom:6px;
}

.comment-single-content p {
	font-size:14px;
	color:#5d5d5d;
	line-height:1.5em;
}

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

.comment-form .form-control {
	border:1px solid #c8c8c8;
	box-shadow:none;
	border-radius:0;
	font-size:14px;
	min-height:46px;
}

.btn-comment {
	background:none;
	z-index:1;
}

.btn-comment:hover {
	color:#fff;
}

