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

Project:	AppMe - App Landing Page WordPress Theme
Info:		https://themeforest.net/item/appme-app-landing-page-wordpress-theme/22469944
Version:	2.4
Author:		AthenaStudio
Profile:	https://themeforest.net/user/athenastudio

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

	1.	General
	2.	Loader
	3.	Buttons
	4.	Navigation
	5.	Slider
	6.	Sections
	7.	Features
	8.	Parallax video
	9.	Screenshots
	10.	Team
	11.	Counters
	12.	Subscribe
	13.	Testimonials
	14.	Pricing
	15.	Support
	16.	Contact
	17.	Footer
	18.	Blog
	19.	Single blog post
	20.	Sidebars
	21.	Widgets
	22.	Error page
	23.	Visual composer
	
============================================================== */

/*********************
    - 1. General -
*********************/
html {
	font-size:100%;
	-webkit-font-smoothing:antialiased;
	-webkit-text-size-adjust:100%;
		-ms-text-size-adjust:100%;	
	overflow-x:hidden;
} 

body {
	font-family:"Montserrat", sans-serif;
	font-size:14px;
	line-height:1.75;
	overflow-x:hidden;
	-webkit-font-smoothing:antialiased;
}

* {
	word-wrap:break-word;
}

h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
	clear:both;
	margin-top:0;
	font-family:"Montserrat", sans-serif;
	font-weight:700;
}

h1, .h1 {font-size:60px;}
h2, .h2 {font-size:40px;}
h3, .h3 {font-size:32px;}
h4, .h4 {font-size:22px;}
h5, .h5 {font-size:18px;}
h6, .h6 {font-size:16px;}

img {
	max-width:100%;
	height:auto;
}

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

p {
	margin-bottom:20px;
}

p:empty {
    display:none;
}

.mb-0 {
	margin-bottom:0 !important;
}

.w-100 {
	clear:both !important;
	float:none !important;
	width:100% !important;
	margin-left:0 !important;
	padding-left:0 !important;
}

/* Table */
table, th, td {
  	border:1px solid rgba(0, 0, 0, 0.1);
}

table {
  	border-collapse:separate;
  	border-spacing:0;
  	border-width:1px 0 0 1px;
  	margin-bottom:24px;
  	width:100%;
}

caption, th, td {
  	font-weight:normal;
  	text-align:left;
  	padding:10px 20px;
}

th,
table tbody tr:first-child td {
  	border-width:0 1px 1px 0;
  	font-weight:bold;
}

td {
  	border-width:0 1px 1px 0;
}

/* Definition list */
dt {
	font-weight:bold;
}

dd {
	padding-bottom:15px;
}

/* Blockquote */
blockquote {
	font-size:14px;
	padding:15px 30px;
	border:0;
}

blockquote p {
	font-size:20px;
	font-weight:bold;
}

blockquote.is-large p {
	font-size:32px !important;
	font-style:normal !important;
}

blockquote cite {
	font-style:italic;
	font-size:inherit;
	color:inherit;
}

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

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

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

.spinner-loader > div:last-child {
	margin-right:0;
}

.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.5);
				transform:scaleY(0.5);
    }
	
    20% {
        -webkit-transform:scaleY(1);
				transform:scaleY(1);
    }
}

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

/*********************
    - 3. Buttons -
*********************/
.btn-custom,
.wp-block-button__link {
	display:inline-block;
	border:1px solid;
	border-radius:2px;
	font-size:16px;
	font-weight:600;
	line-height:23px;
	text-transform:uppercase;
	padding:10px 25px;
	text-align:center;
	background:transparent;
}

.btn-custom i,
.wp-block-button__link i {
	margin-right:6px;
}

.download-button .btn-custom {
	margin-bottom:20px !important;
}

/* Fill */
.btn-fill,
.wp-block-button__link {
	position:relative;
	box-shadow:0 0 1px transparent;
	transition:all 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,
.wp-block-button__link: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,
.wp-block-button__link:hover {
	color:#fff;
}

.btn-fill:hover:before,
.wp-block-button__link: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-radius:2px;
	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 em {
	display:block;
	font-size:14px;
	line-height:20px;	
	font-weight:400;
	font-style:normal;
	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 {
	position:relative;
	padding:35px 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-default {
	background:none;
	border: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 {
	position:relative;
	padding:5px 0; 
	margin:0 12px;
	font-weight:600;
	font-size:14px;
	text-transform:uppercase;
	color:#fff;
}

.navbar-default .navbar-nav > li > a:after {
	content:"";
	position:absolute;
	top:50%;
	width:0;
	height:2px;
	display:block;
	background:#fff;
	transform:translateY(-50%);
	-webkit-transition:all 0.3s ease-out;
	   -moz-transition:all 0.3s ease-out;
			transition:all 0.3s ease-out;
}

.nav .active a:after,
.nav li:hover a:after {
	width:100% !important;
}

.nav ul {
	display:none;
	padding:0;
	min-width:200px;
	list-style:none;
    position:absolute;
	top:100%;
	left:0;
	border:0;
	margin-top:0px;
}

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

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

.nav ul li a {
	display:block;
	color:#fff;
	padding:12px 20px;
	font-size:13px;
	border:none !important;
}

.nav .active a {
	background:none !important;
	color:#fff !important;
	transition:all 0.3s;
}

.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;
	border-bottom:1px solid rgba(255, 255, 255, 0.12);
}

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

.sticky-header {
	background:#111;
	border-bottom:0;
	-webkit-transition:all 0.3s ease-out;
			transition:all 0.3s ease-out;
}

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

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

body.admin-bar .navbar.navbar-fixed-top {
	padding-top:32px;
}

#responsive-menu {
	display:none;
}

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

.banner .wpb-content-wrapper {
    background:none !important;
}

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

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

.header-content h2 {
	font-size:48px;
	font-weight:600;
	color:#fff;
	text-transform:uppercase;
	margin-bottom:30px;
}

.header-content p {
	font-size:18px;
	color:#fff;
	line-height:1.6em;
	margin-bottom:40px;
}

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

.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:25px;
}

.header-slider .owl-dots .owl-dot span {
    width:10px;
    height:10px;
	margin:5px 3px;
    display:block;
    transition:all 0.3s;
    border-radius:20px;
    background:#fff;
}

.header-slider .owl-dots .active span {
	width:30px;
}

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

/**********************
    - 6. Sections -
**********************/
section {
	position:relative;
	background:#fff;
	padding:100px 0;
}

section.bg-grey {
	background:#f7f7f7;
}

/* Parallax background */
.parallax-bg {
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-position:center top;
	background-size:cover;
}

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

.section-title h2 {
	position:relative;
	clear:both;
	display:inline-block;
	font-size:35px;
	color:#000;
	font-weight:300;
	margin-left:14px;
	margin-bottom:20px;
	text-transform:uppercase;
}

.section-title h2:before {
	content:"";
	position:absolute;
	top:6px;
	left:-15px;
	height:26px;
	width:6px;
	-webkit-transform:skewX(-10deg);
	   -moz-transform:skewX(-10deg);
			transform:skewX(-10deg);
}

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

.section-title p {
	font-size:14px;
	color:#7f7f7f;
	margin-bottom:0;
}

/* White */
.section-title.white h2,
.section-title.white p {
	color:#fff !important;
}

.section-title.white h2:before {
	background:#fff !important;
}

/* Align */
.section-title.text-left {
	text-align:left;
}

.section-title.text-right {
	text-align:right;
}

/**********************
    - 7. Features -
**********************/
.feature-single {
	position:relative;
	text-align:center;	
}

.feature-single .icon {	
    display:inline-block;
    font-size:52px;
    margin-bottom:10px;
}

.feature-single h3 {
	font-size:18px;
	font-weight:400;
	text-transform:uppercase;
	padding:10px 0;
	transition:all 0.3s;
}

.feature-single p {
	color:#666;
}

.feature-mobile {
	padding-top:50px;
	margin-bottom:-150px;
	z-index:2;
}

/* Key features */
section.key-features {
	padding-bottom:0;
	overflow:hidden;
}

.key-features .section-title {
	padding-top:20px;
}

.feature-box {
	position:relative;
	display:block;
	width:100%;
	margin-bottom:30px;
}

.feature-box.box-left:last-child {
	margin-bottom:0;
}

.feature-box:after {
    content:"";
    clear:both;
    display:block;
}

.feature-box.box-left {
	padding-right:90px;
	text-align:right;
}

.feature-box.box-right {
	padding-right:0;
	padding-left:90px;
	text-align:left;
}

.feature-box .box-icon {
    position:absolute;
    right:0;
    top:0;
    width:70px;
    height:70px;
    text-align:center;
    border:1px solid #000;
    line-height:70px;
    border-radius:100%;
    font-size:30px;
	transition:all 0.3s;
}

.feature-box.box-right .box-icon {
	right:auto;
	left:0;
}

.feature-box:hover .box-icon {
    color:#fff;
}

.feature-box .box-title {
    text-transform:uppercase;
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
	transition:all 0.3s;
}

.feature-box .box-text {
    font-size:14px;
	color:#666;
}

.feature-center {
	margin-bottom:-240px;
}

/****************************
    - 8. Parallax video -
****************************/
.parallax-video {
	color:#fff;
}

.video-control {
	width:70px;
	text-align:center;
	color:#fff;
	cursor:pointer !important;
}

.video-control i {
	cursor:pointer !important;
	font-size:18px;
	line-height:64px;
	width:70px;
	border:3px solid #fff;
	border-radius:50%;
	-moz-backface-visibility:hidden;
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;
			transition:all 0.3s;
}

.video-control i.fa-play {
	text-indent:4px;
}

.video-control:hover i {
	background-color:#fff;
	-webkit-transform:scale(1.12);
	   -moz-transform:scale(1.12);
			transform:scale(1.12);
}

.watch-text {
	text-align:center;
	text-transform:uppercase;
	font-size:30px;
	font-weight:700;
	margin-top:30px;
}

/*************************
    - 9. Screenshots -
*************************/
.screenshot-slider .owl-item img {
	border-radius:2px;
}

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

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

.screenshot-slider .owl-dots .owl-dot span {
    width:10px;
    height:10px;
	margin:5px 3px;
    display:block;
    transition:all 0.3s;
    border-radius:20px;
    border:1px solid #000;
}

.screenshot-slider .owl-dots .active span {
	 width:30px;
}

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

/* Arrows */
.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:6px;
	border-radius:50%;
	transition:all 0.3s;
}

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

/*******************
    - 10. Team -
*******************/
.team-member {
    position:relative;
    background-color:#fff;	
    overflow:hidden;
	-webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);    
    -webkit-transform:translateY(0);
       -moz-transform:translateY(0);
        	transform:translateY(0);
    transition:all 0.3s;
}

[class^="col-"]:last-child .team-member {
	margin-bottom:0 !important;
}

.team-member:hover {
    -webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform:translateY(-5px);
       -moz-transform:translateY(-5px);
        	transform:translateY(-5px);
}

.team-member .team-image {
	position:relative;
	background-color:#fff;	
}

.team-member .team-image img {
    width:100%;
	border-radius:2px;
	transition:.5s;
}

.team-member:hover .team-image img {
	opacity:0.6;
}

.team-member .team-details {
    position:absolute;
    left:0;
    bottom:0;
    background-color:#fff;
    width:100%;
	border-radius:0 0 2px 2px;
    transition:all 0.3s;
}

.team-member:hover .team-details {
    bottom:0;
}

.team-member .team-details .team-title-box {
    position:absolute;
    left:0;
    bottom:0;
	width:100%;
	padding:15px 10px;
    text-align:center;
    background-color:#fff;
	transition:all 0.3s;
}

.team-member:hover .team-details .team-title-box {
	bottom:100%;
}

.team-member .team-details .team-title-box .title {
    text-transform:uppercase;
	font-size:16px;
    font-weight:700;
	margin-top:3px;
	transition:all 0.3s;
}

.team-member .team-details .team-title-box p {
    padding:0;
	margin:0;
}

.team-member .team-details .team-title-box .position {
    color:#666;
}

.team-member .team-details .team-social {
    text-align:center;
    padding:15px 0;
    margin-bottom:-100%;
	border-radius:0 0 2px 2px;
	border-top:1px solid #f3f3f3;
    transition:all 0.3s;
}

.team-member:hover .team-details .team-social {
    margin-bottom:0;
}

.social-links > a {
   	display:inline-block;
	color:#666;
	font-size:16px;
	line-height:16px;
	margin:0 12px;
	transition:all 0.3s;
}

.social-links.mt-4 {
	margin-top:30px;
}

.social-links.mt-4 > a:first-child {
	margin-left:0;
}

/* Member info */
.member-info ul {
	position:relative;
    clear:both;
	z-index:1;
	display:block;
    float:left;
	list-style:none;
    width:100%;
    padding:30px 0;
    padding-top:15px;
    margin-top:50px;
}

.member-info ul:after {
    position:absolute;
	content:'';
    right:0;
    top:0;
    z-index: -1;
    height:100%;
    width:110%;
}

.member-info ul li {
    float:left;
    width:50%;
    padding:0 15px;
    color:#ffffff;
    margin-top:15px;
}

.member-info ul li a {
	color:#fff;
}

/* Skills */
.skills, .bar {
	clear:both;
}

.progress {
	height:6px;
	border-radius:0;
	margin-bottom:30px;
	background-color:#ddd;
	box-shadow:none;
}

.skills > .bar:last-child > .progress {
	margin-bottom:0;
}

.progress .progress-bar {
	width:0;
	border-radius:0;
	box-shadow:none;
	transition:none;
}

.progress-heading {
	overflow:hidden;
	height:27px;
	margin-bottom:2px;
}

.progress-heading .progress-title {
	float:left;
	margin:0;
	padding:0;
	color:#444;
	font-weight:600;
	line-height:22px;
	text-transform:none;
}

.progress-heading .progress-value {
	position:relative;
}

.progress-heading .progress-value > span {
	position:absolute;
	right:-4px;
	font-size:12px;
	line-height:22px;
	color:#fff;
	height:22px;
	padding:0 8px;
	border-radius:3px;
}

.progress-heading .progress-value > span:before {
	content:'';
	position:absolute;
	top:100%;
	right:4px;
	width:0;
	height:0;
	border-top-width:5px;
	border-top-style:solid;
	border-left:8px solid transparent !important;
}

/***********************
    - 11. Counters -
***********************/
.counter {
	text-align:center;
	overflow:hidden;
	color:#fff;
}

.counter .icon {
	position:relative;
	display:block;
	font-size:48px;
	line-height:48px;
	font-weight:normal;
	margin-bottom:20px;
	text-align:center;
	cursor:default;
}

[class^="col-"]:last-child .counter-content {
	border-right:0;
}

.counter-content h5 {
	font-weight:700;
	font-size:40px;
	line-height:40px;
	margin-bottom:10px;
}

.counter-content p {
	font-size:14px;
	line-height:14px;
}

/************************
    - 12. Subscribe -
************************/
.subscribe-form {
	text-align:center;
}

.subscribe-form .form-control {
	font-family:"Montserrat", sans-serif;
	font-size:14px;
	background:#fff;
	border:1px solid #e0e0e0;
	border-right:none;
	box-shadow:none;
	border-radius:2px;
	height:54px;
	min-width:400px;
	padding:0 20px;
	transition:all 0.3s;
}

.subscribe-form .btn-subscribe {
	font-family:"Montserrat", sans-serif;
	color:#fff;
	font-size:16px;
	text-transform:uppercase;
	height:54px;
	font-weight:600;
	border:none;
	border-radius:0 2px 2px 0;
	padding:0 30px;
	margin-left:-4px;
	outline:0;
	transition:all 0.3s;
}

.subscribe-form .btn-subscribe:hover,
.subscribe-form .btn-subscribe:focus {
	color:#fff;
	box-shadow:none;
	outline:0;
	opacity:0.8;
}

/***************************
    - 13. Testimonials -
***************************/
.testimonial-carousel .carousel-text {
    margin-bottom:50px;
}

.testimonial-carousel .carousel-text .single-box {
    width:620px;
    text-align:center;
    margin:0 auto;
}

.testimonial-carousel .carousel-text .single-box p {
    font-size:25px;
    line-height:1.5em;
}

.testimonial-carousel .carousel-images .slick-slide img {
    cursor:pointer;
    padding:12px;
    transition:all 0.3s;
    opacity:0.5;
}

.testimonial-carousel .carousel-images .slick-slide .client-info {
    margin-top:25px;
    text-align:center;
    transition:all 0.3s;
    visibility:hidden;
    opacity:0;
}

.testimonial-carousel .carousel-images .slick-slide .client-info h3 {
    text-transform:uppercase;
    font-size:15px;
    margin:0 0 5px 0;
}

.testimonial-carousel .carousel-images .slick-slide .client-info span {
    display:block;
}

.testimonial-carousel .carousel-images .slick-slide:active,
.testimonial-carousel .carousel-images .slick-slide:focus {
    outline:none;
}

.testimonial-carousel .carousel-images .slick-center img {
    padding:0;
    opacity:1;
}

.testimonial-carousel .carousel-images .slick-center .client-info {
    visibility:visible;
    opacity:1;
}

/**********************
    - 14. Pricing -
**********************/
.price-table {
    border-radius:2px;
    text-align:center;
    width:100%;
	background-color:#fff;
    -webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);    
    -webkit-transform:translateY(0);
       -moz-transform:translateY(0);
        	transform:translateY(0);
    transition:all 0.3s;
}

.price-table:hover {
    -webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform:translateY(-5px);
       -moz-transform:translateY(-5px);
        	transform:translateY(-5px)
}

/* Title */
.price-table .price-title {
	position:relative;
    padding:40px 20px;
	margin-bottom:0;
	border-radius:2px 2px 0 0;
	background:#f0f0f0;
    transition:all 0.3s;
}

.price-table .price-title > h5 {
    font-size:20px;
    font-weight:700;
	margin-bottom:20px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.price-table .price-title .price-rate .currency {
    font-weight:700;
    font-size:24px;
	vertical-align:top;
}

.price-table .price-title .price-rate .rate {
    font-weight:700;
    font-size:70px;
	line-height:70px;
}

.price-table .price-title .price-rate .time {
	clear:both;
	display:block;
	font-size:12px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.price-table .price-title.featured,
.price-table .price-title.featured > h5 {
	color:#fff !important;
}

/* Ribbon */
.price-table .card-ribbon {
	position:absolute;
	overflow:hidden;
	top:-10px;
	left:-10px;
	width:114px;
	height:114px;
	z-index:99;
}

.price-table .card-ribbon span {
	position:absolute;
	display:block;
	width:165px;
	padding:9px 0;
	background-color:#23292c;
	box-shadow:0 5px 5px rgba(0, 0, 0, .2);
	color:#fff;
	font-size:12px;
	text-transform:uppercase;
	text-align:center;
	left:-37px;
	top:21px;
	letter-spacing:1px;
	transform:rotate(-45deg);
}

.price-table .card-ribbon:before, .card-ribbon:after {
	position:absolute;
	z-index:-1;
	content:'';
	display:block;
	border:5px solid #0c0c0c;
	border-top-color:transparent;
	border-left-color:transparent;
}

.price-table .card-ribbon:before {
	top:0;
	right:0;
}

.price-table .card-ribbon:after {
	bottom:0;
	left:0;
}

/* Content */
.price-table .price-content {
    padding:60px 30px;
}

.price-table .price-content ol,
.price-table .price-content ul {
    list-style:none;
    margin:0;
    padding:0;
}

.price-table .price-content ol li,
.price-table .price-content ul li {
    margin-bottom:10px;
}

.price-table .price-content ol li:last-child,
.price-table .price-content ul li:last-child {
    margin-bottom:0;
}

/* Footer */
.price-table .price-footer {
	clear:both;    
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
}

.price-table .price-footer > a {
	display:block;
	padding:12px 0;
	color:#fff;
	background:#111;
	border-radius:0 0 2px 2px;
}

/**********************
    - 15. Support -
**********************/
.panel-group .panel {
	border:none;
	border-radius:0;
	box-shadow:none;
}

.panel-group .panel-heading {
	padding:0;
	background-color:#f8f8f8;
	border-radius:2px;
}

.panel-group .panel-heading:hover {
	background-color:#f0f0f0;
}

.panel-group .panel-heading h4 {
	font-size:16px;
	font-weight:400;	
	cursor:pointer;
}

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

.panel-group .panel-body {
	color:#666;
	border:none !important;
}

.panel-group .panel-body p:last-child {
	margin-bottom:0;
}

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

.panel-group .panel-heading  .panel-title a:after {
	content:'\f106';
	font-family:'Font Awesome 5 Free';
	position:absolute;
	right:20px;
	top:18px;
}

.panel-group .panel-heading  a.collapsed:after {
	content:'\f107';
	font-family:'Font Awesome 5 Free';
	position:absolute;
	right:20px;
	top:18px;
}

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

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

.wpcf7-form .form-control {
	font-family:"Montserrat", sans-serif;
	width:100%;
	padding:0;
	border:none;
	border-bottom:1px solid #e0e0e0;
	background:transparent;
	box-shadow:none;
	border-radius:0;
	min-height:50px;
	font-size:14px;
}

.wpcf7-form textarea.form-control {
	min-height:100px !important;
}

.wpcf7-submit {
	font-family:"Montserrat", sans-serif, 'Font Awesome 5 Free';
	height:54px;
	padding:0 30px;
	margin-top:20px;
	color:#fff !important;
	border:none;
	transition:all 0.3s;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus {
	opacity:0.8;
}

.wpcf7 .ajax-loader {
	position:absolute;
	top:35px;
}

.wpcf7-not-valid-tip {
	margin-top:10px;
	font-size:14px;
}

.wpcf7-response-output {
	border:0 !important;
	padding:0 !important;
	margin:20px 0 0 0 !important;
	font-weight:700 !important;
	color:#dc3232 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	font-size:20px !important;
}

.contact-form-wrapper {
	padding:80px 40px !important;
	background:#f8f8f8;
	border-radius:2px 0 0 2px;
}

.contact-form-wrapper {
	text-align:center;
}

.contact-form-wrapper h3 {
	clear:both;
	margin-bottom:50px !important;
	font-weight:normal;
	letter-spacing:1px;
	text-transform:uppercase;
}

/* Contact info */
.contact-box {
	clear:both;
	padding-bottom:50px;
	text-align:center;
}

.contact-box .icon {	
    display:inline-block;
    font-size:30px;
    margin-bottom:10px;
}

.contact-box h4 {
	clear:both;
	font-weight:700;
	font-size:16px;
	margin-bottom:15px;
	text-transform:uppercase;
}

.contact-box p,
.contact-box div {
	clear:both;
}

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

.footer-logo,
.footer-social {
	margin-top:20px;
}

.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;
	line-height:16px;
	margin:0 6px;
	transition:all 0.3s;
}

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

.copyright-text p {
	color:#b0b0b0;
	font-size:13px;
	letter-spacing:1px;
	text-transform:uppercase;
	margin-bottom:0;
}

.copyright-text a {
	color:#fff;
	font-weight:700;
}

.to-top {
	display:inline-block;
	width:35px;
	height:35px;
	margin:0 auto;
}

.to-top i {
	cursor:pointer !important;
	font-size:18px;
	line-height:31px;
	width:35px;
	height:35px;
	color:#fff;
	border:2px solid #fff;
	border-radius:50%;
	-moz-backface-visibility:hidden;
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;
		 -o-transition:all 0.3s;
			transition:all 0.3s;
}

.to-top:hover i {
	background-color:#fff;
	color:#282828;
	-webkit-transform:scale(1.12);
	   -moz-transform:scale(1.12);
	  	 -o-transform:scale(1.12);
		-ms-transform:scale(1.12);
			transform:scale(1.12);
}

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

/* Footer widgets */
footer .widget a {
	color:#fff;
}

footer .widget {
	float:left;
	width:33.33333333%;
	margin:0 auto !important;	
}

footer .widget header > h4 {
	clear:both;
	color:#fff;
	margin-top:40px;
	text-transform:uppercase;
}

footer .widget li {
    border-bottom:1px solid #333 !important;
}

footer .widget li,
footer .widget p,
footer #wp-calendar caption,
footer #wp-calendar thead th {
	color:#b0b0b0;
}

footer .tagcloud a {
	background:#666;
}

footer #wp-calendar tbody td {
	border-color:#666;
}

/* Footer menu */
footer .widget_nav_menu {
	text-align:left;	
}

footer .fullwidth-nav-menu {
	clear:both;
	text-align:center;
	width:100%;
}

footer .widget_nav_menu .menu {
	margin:20px 0 0 0;
}

footer .widget_nav_menu .menu li {
	list-style:none;
	display:inline-block;
	border:0 !important;
	padding:0 5px;
}

footer .widget_nav_menu .menu li:first-child {
	padding-left:0;
}

footer .widget_nav_menu .menu li > a {
	color:#fff;
	font-size:13px;
	letter-spacing:1px;
	text-transform:uppercase;
	-webkit-transition:all 0.2s;
	   -moz-transition:all 0.2s;
			transition:all 0.2s;
}

/*******************
    - 18. Blog -
*******************/
.screen-reader-text {
	display:none;
}

.blog-home .blog-col {
	-webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);    
    -webkit-transform:translateY(0);
       -moz-transform:translateY(0);
        	transform:translateY(0);
    transition:all 0.3s;
}

[class^="col-"]:last-child .blog-home .blog-col {
	margin-bottom:0 !important;
}

.blog-home .blog-col:hover {
    -webkit-box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    		box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform:translateY(-5px);
       -moz-transform:translateY(-5px);
        	transform:translateY(-5px);
}

.blog-home .blog-wrapper {
	clear:both;
	padding:40px;
	background:#fff;
	border-radius:0 0 2px 2px;
}

.blog-home .blog-about {
	clear:both;
	padding:0 0 20px 0;
	margin:0;
	color:#999;
	font-size:12px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.blog-home .blog-col > p {
	margin-bottom:0 !important;
}

.blog-home .blog-col > a {
	display:block;
	background:#fff;
}

.blog-home .blog-img {
	width:100%;
	transition:.5s;
	border-radius:2px 2px 0 0;
}

.blog-home .blog-img:hover {
	opacity:0.6;
}

.blog-home .blog-text h4 {
	font-weight:700;
	margin-bottom:20px;
	text-transform:uppercase;
}

.blog-home .blog-text p {
	color:#666;
}

.blog-home .blog-text p:last-child {
	margin-bottom:0;
}

/* Main title */
.main-title {
	position:relative;
    top:0px;
    left:0;
    width:100%;
    padding:200px 0 100px;
}

.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:48px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    position:relative;
	margin-bottom:0;
}

/* Subtitle */
.blog-subtitle {
	clear:both;
	display:block;
	background:none;
	padding:8px 15px;
	margin-bottom:0;
	letter-spacing:0.1em;
	text-transform:uppercase;
	color:#fff;
}

/* Breadcrumb */
.breadcrumbs_list {
	clear:both;
	display:block;
	background:none;
	padding:8px 15px;
	margin-bottom:0;
}

.breadcrumbs_list span {
	letter-spacing:0.1em;
	text-transform:uppercase;
}

.breadcrumbs_list > span:last-child {
	display:none;
}

.breadcrumbs_list > span+span:before {
	color:#fff;
	font-size:14px;
	padding:0 5px;
	content:"/\00a0";
}

.breadcrumbs_list span a {
	color:#fff;
	font-size:14px;
}

.breadcrumbs_list > .current {
	color:#000;
	font-size:14px;
}

/* Tag cloud */
.tagcloud a {
  	display:inline-block;
  	padding:8px 12px;
  	margin-right:2px;
  	margin-bottom:5px;
  	background:#eee;
  	color:#333;
	font-size:12px;
	line-height:14px;
	border-radius:2px;
}

.tagcloud a:hover {
  	color:#fff;
}

/* Read more button */
.more-link {
	clear:both;
	display:block !important;
	margin-top:20px !important;
	font-size:12px;
	z-index:1;
	padding:0;
	min-width:auto;
	text-align:left;
	letter-spacing:1px;
	text-transform:uppercase;
	background:none !important;
	text-shadow:none !important;
	box-shadow:none !important;
	border:none !important;
}

.more-link:hover {
	color:#333;
}

/* Horizontal post */
.post-single {	
	padding-bottom:60px;
	margin-bottom:0 !important;
}

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

.post-single .entry-header {
	margin-bottom:30px;
}

.post-single > h2 {
	text-transform:uppercase;
}

.post-single p {
	font-size:14px;
	color:#5d5d5d;
}

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

.post-single figure img {
	width:100%;
	border-radius:2px;
	transition:all 0.3s;
}

.post-single:hover figure img {
	opacity:0.6; 
}

.post-single .blog-content {
	clear:both;
}

/* Pagination */
.pagination {}

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

.pagination > li > a {
	font-weight:600;
	padding:8px 16px;
	border-radius:2px !important;
	font-size:14px;
	color:#444;
	border-color:#e0e0e0;
}

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

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

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

/*******************************
    - 19. Single blog post -
*******************************/
.blog-single-content {
	background:#fff;
	margin-bottom:50px;
}

.post-single > figure img,
.entry-image > img {
	clear:both;
	width:100%;
	border-radius:2px;
	padding-bottom:20px;
}

.entry-header {
	width:100%;	
}

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

.entry-header ul li {
	display:inline-block;
	margin-right:15px;
	color:#999;
	font-size:12px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.entry-header ul li a:hover {
	color:#333;
}

.entry-body {
	padding:30px 0 20px;
}

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

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

.entry-body blockquote p:before {
	content:'\f10d';
	font-family:'Font Awesome 5 Free';
    font-weight:900;
	font-size:23px;
	margin-right:8px;
}

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

.entry-body ol li {
	position:relative;
	padding:2px 0;
	font-size:14px;
	color:#5d5d5d;
}

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

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

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

/* Tags */
.post-tags {
	clear:both;
	text-align:center;
	margin-bottom:20px;
}

.post-tags a {
	position:relative;
	display:inline-block;
	margin:0 10px;
	font-size:13px;
	letter-spacing:1px;
	text-transform:uppercase;
	transition:all 0.3s;
}

.post-tags a:hover {
	color:#444;
}

.post-tags a:after {
	content:"";
	display:block;
	width:5px;
	height:5px;
	background:#efefef;
	clear:both;
	margin:5px auto;
	border-radius:50%;
}

/* Social */
.post-social {
	clear:both;
	text-align:center;
}

.post-social span {
	clear:both;
	display:block;
	color:#aaa;
	font-size:13px;
	font-weight:600;
	margin-bottom:15px;
	text-align:center;
}

.post-social a {
	cursor:pointer;
}

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

/* Previous/Next posts */
.nav-links {
	clear:both;
	margin-top:40px;
	padding:20px 0;
	font-size:16px;
	border-top:1px solid #f1f1f1;
	border-bottom:1px solid #f1f1f1;
	overflow:hidden;
}

.comment-navigation .nav-previous, 
.posts-navigation .nav-previous, 
.post-navigation .nav-previous {
	float:left;
	width:50%;
	text-align:left;
}

.comment-navigation .nav-next, 
.posts-navigation .nav-next, 
.post-navigation .nav-next {
	float:right;
	width:50%;
	text-align:right;
}

.nav-links span {
	display:block;
    color:#aaa;
    font-weight:600;
    font-size:13px;    
    letter-spacing:1px;
}

/* Single post box */
.single-postbox {
	background:#fff;
	margin-bottom:50px;
}

.single-postbox-title h2,
.comment-respond h3 {
    font-size:22px;
    text-transform:uppercase;
    padding-bottom:20px;
    margin-bottom:30px;
    border-bottom:1px solid #e2e2e2;
}

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

.related-post-single a img {
	border-radius:2px;
	transition:all 0.3s;
}

.related-post-single a img:hover {
	opacity:0.6;
}

.related-post-single h3 {
    font-size:14px;
	font-weight:700;
    line-height:1.5em;
	text-transform:uppercase;
	margin-top:10px;
}

.related-post-single .date {
    color:#999;
	font-size:12px;
	letter-spacing:1px;
	text-transform:uppercase;
}

/* About author */
.about-author {
	margin-top:58px;
}

.about-author .avatar {
	margin-right:20px;
	padding-top:3px;
	float:left;
}

.about-author .avatar img {
	display:block;
}

.about-author .description {
	overflow:hidden;
}

.about-author .description > h4 {
	font-weight:normal;
	text-transform:uppercase;
}

.about-author .description > p {
	color:#666;
}

.about-author .description > span {
	display:block;
	clear:both;
	color:#999;
	font-size:12px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.about-author .description > span > a:hover {
	color:#333;
}

/* Comment */
.comment-box-single {
	clear:both;
	padding:20px 0 10px;
	border-top:1px solid #f1f1f1;
}

.single-postbox-title + .comment-box-single {
	border-top:0 !important;
}

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

.comment-box-single .comment-approved {
	color:#f75016;
}

.comment.depth-2,
.comment.depth-3,
.comment.depth-4,
.comment.depth-5 {
	clear:both;
	margin-left:10%;
	padding:20px 0 10px;
	border-top:1px solid #f1f1f1;
}

.comment.bypostauthor {
	color:#ff0000;
}

.author-img {
	float:left;
	width:80px;
	margin-right:30px;
}

.comment-single-content {
	width:calc(100% - 110px);
	float:right;
}

.author-info h3 {
	font-size:18px;
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:6px;
}

.author-info h3 a.comment-edit-link,
.author-info h3 a.comment-reply-link {
	float:right;
	margin-left:20px;
	font-weight:400;
	font-size:12px;
}

.author-info h4 {
	font-size:12px;
	font-weight:400;
	margin-top:0;
	padding-bottom:6px;
}

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

.single-postbox .comment-respond {
	margin-top:50px;
} 

.comment-respond #cancel-comment-reply-link {
	vertical-align:middle;
	font-size:12px;
	margin-left:10px;
}

.nocomments {
	color:#ff0000;
}

.navigation {
	clear:both;
	margin-top:20px;
	text-align:center;
}

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

.comment-form .form-control {
	font-family:"Montserrat", sans-serif;
	width:100%;
	border:1px solid #e0e0e0;
	box-shadow:none;
	border-radius:2px;
	padding:20px;
	min-height:50px;
	font-size:14px;
}

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

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

/* Page links */
.page-links {
	clear:both;
	margin:0 0 1.5em;
	font-weight:bold;
}

.page-links a {
	font-weight:normal;
	color:#fff !important;
	background:#444;
	border-radius:2px;
	padding:2px 7px;
	margin:0 1px;
}

/***********************
    - 20. Sidebars -
***********************/
.sidebar {
	clear:both;
	margin-bottom:50px;
}

/* Sidebar title */
.sidebar header {
	position:relative;
  	margin-bottom:30px;
	z-index:5;
}

.sidebar header h4 {
	display:inline-block;
  	margin-bottom:0;
	padding-bottom:10px;
  	font-weight:700;
	font-size:18px;
	line-height:18px;
	text-transform:uppercase;
	border-bottom:1px solid #000;
}

.sidebar header h4:before {
  	content:'';
  	position:absolute;
  	display:inline-block;
  	width:100%;
  	height:1px;
  	bottom:0;
  	left:0;
  	z-index:-5;
	background-color:#eee;
}

/* Search form */
.search-form {
	display:table;
	width:100%;
}

.search-form .search-field {
	float:left;
	font-family:"Montserrat", sans-serif;
	font-size:14px;
	background:#fff;
	border:1px solid #e0e0e0;
	border-right:none;
	box-shadow:none;
	border-radius:2px 0 0 2px;
	width:calc(100% - 51px);
	height:48px;
	padding:0 20px;
	transition:all 0.3s;
}

.btn-search {	
	position:relative;
	float:right;
	font-family:"Montserrat", sans-serif;
	color:#fff;
	font-size:16px;
	text-transform:uppercase;
	text-indent:-1000;
	width:48px;
	height:48px;
	font-weight:600;
	border-radius:0 2px 2px 0;
	background-color:#fff;
	border:1px solid #e0e0e0 !important;
	border-left:0 !important;
	outline:0;
}

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

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

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

.author-content h5 {
	font-size:18px;
	font-weight:700;
	margin-top:20px;
}

.author-content p {
	font-size:14px;
	line-height:1.5em;
	margin:20px 0;
}

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

/* Instagram feed */
#sb_instagram,
#sb_instagram.sbi_width_resp {
  	width:calc(100% + 12px) !important;
	margin:-6px;
}

#sb_instagram .sbi_item a {
  	border-radius:2px;
}

/* Recent posts */
.recent-post {
    padding:14px 0 6px;
}

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

.recent-post-image img {
	border-radius:2px;
}

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

.recent-post-info h4 {
	font-size:14px;
	font-weight:700;
	line-height:1.5em;
	margin-bottom:6px;
	text-transform:uppercase;
}

.recent-post-categories {
	color:#999;
	font-size:12px;
	margin-bottom:6px;
}

.recent-post-categories a:hover {
	text-decoration:underline;
}

.recent-post-info p {
	color:#666;
	font-size:12px;
	margin:0;
}

/* Categories */
.custom-categories > ul {
	padding:30px !important;
	background-color:#f9f9f9;
	list-style:none;
}

.custom-categories > ul > li > ul {
	padding:0;
	margin-top:11px;
	border:0 !important;
}

.custom-categories li {
	position:relative;
	clear:both !important;
	padding-left:20px !important;
	margin-top:20px !important;
	border-bottom:none !important;
}

.custom-categories li:first-child { 
	margin-top:0 !important;
}

.custom-categories > ul > li:last-child,
.custom-categories > ul > li > ul > li:last-child{
	margin-bottom:0;
}

.custom-categories li:before {
	content:'\f105';
  	font-family:'Font Awesome 5 Free';
	position:absolute;
	top:6px;
	left:0;
	font-size:14px;
	font-weight:900;
	line-height:1;
	color:#ccc;
}

.custom-categories li > a {
	float:left;
	border:0 !important;
	padding:0 40px 0 0 !important;
	font-size:13px;
	line-height:13px;
	font-weight:600;
	background-color:transparent !important;
}

.custom-categories li > a:before {
	display:none !important;
}

.custom-categories li > span {
	position:absolute;
	right:0;
	top:3px;
	padding:4px 6px;
	font-size:10px;
	line-height:10px;
	text-align:center;
	border:1px solid #ddd;
	background-color:#fff;	
	font-weight:500;
	vertical-align:middle;
	white-space:nowrap;
	color:#777;
}

/**********************
    - 21. Widgets -
**********************/
/* Recent comment */
.sidebar .widget a {
	color:#222;
}

.widget li, 
.widget ol, 
.widget ul {
	list-style:none;
	margin:0;
	padding:0;
}

.widget li {
	color:#666;
	padding:6px 0;
    margin-bottom:0 !important;
    border-bottom:1px solid #eee;
}

.widget li:last-child {
    border:none;
    padding-bottom:0;
}

.widget_pages li li a,
.widget_categories li li a {
    padding-left:20px;
}

/* Select */
.widget select {
	float:left;
	font-family:"Montserrat", sans-serif;
	font-size:14px;
	background:#fff;
	border:1px solid #e0e0e0;
	border-right:none;
	box-shadow:none;
	border-radius:2px;
	height:40px;
	width:100%;
	padding:0 20px;
	transition:all 0.3s;
}

/* Keyboard */
kbd {
	padding:2px 4px;
	font-size:90%;
	color:#fff;
	background-color:#333;
	-webkit-border-radius:2px;
       -moz-border-radius:2px;
    		border-radius:2px;
}

/* Navigation menu */
.widget_nav_menu li ul {
    margin-left:20px;
}

/* Calendar */
.widget_calendar {
	clear:both;
}

#wp-calendar {
	width:100%;
}

#wp-calendar caption { 
	text-align:right; 
	color:#333; 
	font-size:12px; 
	margin-top:10px;
}
	
#wp-calendar thead { 
	font-size:10px; 
}

#wp-calendar thead th { 
	padding-bottom:10px; 
}

#wp-calendar tbody { 
	color:#aaa; 
}

#wp-calendar tbody td { 
	background:#f5f5f5; 
	border:1px solid #fff; 
	text-align:center; padding:8px;
}

#wp-calendar tbody td:hover { 
	background:#fff; 
}

#wp-calendar tbody .pad { 
	background:none; 
}

#wp-calendar tfoot #next { 
	font-size:10px; 
	text-transform:uppercase; 
	text-align:right; 
}

#wp-calendar tfoot #prev { 
	font-size:10px; 
	text-transform:uppercase; 
	padding-top:10px; 
}

/*************************
    - 22. Error page -
*************************/
#error-page {
	position:absolute;
	top:50%;
	left:0;
	right:0;
	-webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
			transform:translateY(-50%);
}

#error-page p > i {
	font-size:120px;
	margin-bottom:50px;
}

#error-page p > a {
	margin-top:60px;
}

#error-page .more-link {
	display:inline-block !important;
	margin-top:30px !important;
}

/******************************
    - 23. Visual composer - 
******************************/
.wpb_row.vc_row-flex .row {
    box-sizing:border-box;
    display:flex;
    flex-wrap:wrap;
}

.wpb_row.vc_row-o-equal-height .vc_column_container {
    -moz-box-align:stretch;
    align-items:stretch;
}

.wpb_row.vc_row-flex .vc_column_container {
    display:flex;
}

.wpb_row.vc_row-o-content-middle .vc_column_container .vc_column-inner {
    -moz-box-pack:center;
    justify-content:center;
}

.wpb_row.vc_row-flex .vc_column_container .vc_column-inner {
	-moz-box-flex:1;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.wpb_row.vc_row-o-content-bottom .vc_column_container .vc_column-inner {
    -moz-box-pack:end;
    justify-content:flex-end;
}

.wpb_row.vc_row-o-content-top .vc_column_container .vc_column-inner {
    -moz-box-pack:start;
    justify-content:flex-start;
}

.wpb_content_element {
	margin-bottom:0 !important;	
}


