/**
 * The main stylesheet for Furion.
 *
 * @package Furion
 * @author  LunarTheme
 * @link	http: //www.lunartheme.com
 */
/*--------------------------------------------------------------
	CSS Overview
---------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic);
/*--------------------------------------------------------------
	Reset
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 14px; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http: //clagnut.com/blog/348/#c790 */
	overflow-x: hidden;
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http: //www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http: //caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http: //caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
.clearfix:after {
	 visibility: hidden;
	 display: block;
	 font-size: 0;
	 content: " ";
	 clear: both;
	 height: 0;
	 }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	color: #666;
	font-family: 'Droid serif', sans-serif;
	font-weight: 400;
	line-height: 214.286%;
	overflow:hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
table { /* tables still need 'cellspacing="0"' in the markup */
border-collapse: separate;
border-spacing: 0;
}
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%;
}
th, td {
	padding: 6px;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
}
td {
	border-width: 0 1px 1px 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
a {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	text-decoration: none;
	color: #252525;
}
a:hover, a:focus {
	text-decoration: none;
	color: #999;
}
a img {
	border: 0;
}
/*--------------------------------------------------------------
	Typography
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	color: #959595;
	font-family: 'Droid Serif', sans-serif;
	font-size: 100%;
}
button,
input:not(input[type='checkbox']):not(input[type='radio']),
select,
textarea {
	-webkit-appearance: none;
}
h1, h2, h3, h4, h5, h6 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
}
h1, .h1 {
	font-size: 80px;
}
h2, .h2 {
	font-size: 24px;
}
h3, .h3 {
	font-size: 18px;
}
h4, .h4 {
	font-size: 16px;
}
h5, .h5 {
	font-size: 14px;
}
h6, .h6 {
	font-size: 13px;
}
p {
	margin-bottom: 10px;
}
b,
strong {
	font-weight: 700;
}
dfn,
cite,
em,
i {
	font-style: italic;
}
q {
	display: block;
}
blockquote,
q {
	color: #666666;
	background-color: #f6f6f6;
	padding: 35px 96px 35px 85px;
	margin-bottom: 30px;
	font-size: 121.4285%;
	font-style: italic;
	font-weight: 300;
	line-height: 202%;
	position: relative;
}
blockquote:before,
q:before {
	content: '';
	background: #666666;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 5px;
}
blockquote:after,
q:after {
	content: "{";
	color: #ccc;
	font-family: "ElegantIcons";
	font-size: 70px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: absolute;
	bottom: 16px;
	right: 9px;
}
blockquote * {
	line-height: 202%;
	padding: 0;
	margin: 0;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #f6f6f6;
	color:#666;
	font-size: 100%;
	margin-bottom: 20px;
	max-width: 100%;
	overflow: auto;
	padding: 15px;
}
code,
kbd,
tt,
var {
	font-size: 100%;
}
abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark,
ins {
	background: #f6f6f6;
	color: #666;
	text-decoration: none;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
ol {
	margin: 0 0 1.5em 3em;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 1.3em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: middle;
	border: 0;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}
pre, code {
	font-family: 'DejaVu Sans Mono', Menlo, Consolas, monospace;
}
hr {
	background-color: #f6f6f6;
	height: 2px;
	padding: 0;
	margin: 0;
	clear: both;
	border: 0;
	border-top: 1px solid #666;
}
::selection {
	background: #666; /* Safari */
	color: #FFF;
}
::-moz-selection {
	background: #666; /* Firefox */
	color: #FFF;
}

/*--------------------------------------------------------------
	Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	border: 0;
	color: #999999;
	font-size: 92.8571%; /* Corrects font size not being inherited in all browsers */
	max-width: 100%;
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	outline: 0;
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #000;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	
	color: #fff;
	cursor: pointer;
	-webkit-appearance: button;

	display: inline-block;
	font-size: 100%;
	font-size: 16px;
	font-weight: 700;
	padding: 0 31px;
	height: 62px;
	line-height: 25px;
	outline: 0;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #f6f6f6;
	color: #666;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]: : -webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	background: #fff;
	color: #999;
	padding: 20px 15px;
	border: 1px solid #e5e5e5;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #333;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
	height: auto;
}
select {
	border: 1px solid #e5e5e5;
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}
/* list style 
---------------------------- */
.list-style-Mdash {
	list-style: none;
	padding-left: 15px;
	position: relative;
}
.list-style-Mdash li {
	padding-left: 16px;
	position: relative;
}
.list-style-Mdash li:before {
	content: 'K';
	font-family: 'ElegantIcons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: absolute;
	top: 8px;
	left: -17px;
}

/* Radio Style
---------------------------- */
.regular-radio {
	display: none;
}
.regular-radio + label {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 0 9px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	z-index: 0;
	display: inline-block;
	display: inline;
	zoom: 1;
	position: relative;
	margin-right: 5px;
}
.regular-radio:checked + label:after {
	content: ' ';
	width: 10px;
	height: 10px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	z-index: 0;
	position: absolute;
	top: 4px;
	background: #7cbe31;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
	text-shadow: 0px;
	left: 4px;
	font-size: 228%;
}
.regular-radio:checked + label {
	background-color: #e9ecee;
	color: #99a1a7;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
	position: relative;
	z-index: 0;
}
.regular-radio + label:active, .regular-radio:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
	position: relative;
	z-index: 0;
}

/* checkbox Style
---------------------------- */
.regular-checkbox {
	display: none;
}
.regular-checkbox + label {
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 8px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	z-index: 0;
	display: inline-block;
	*display: inline;
	zoom: 1;
	position: relative;
	top: 4px;
	margin-right: 5px;
}
.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
.regular-checkbox:checked + label {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	-ms-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	position: relative;
	z-index: 0;
	color: #99a1a7;
}
.regular-checkbox:checked + label:after {
	content: '\2714';
	font-size: 100%;
	position: absolute;
	top: -3px;
	left: 2px;
	color: #7cbe31;
}

/*--------------------------------------------------------------
	Default CSS
--------------------------------------------------------------*/
.clear {
	clear: both;
}
.vc_row-o-full-height {
	height: 100vh;
}
.textup {
	text-transform: uppercase;
}
.searchform .form-group {
	display: inline-block;
	position: relative;
	width: 100%;
}
.searchform .form-group > * {
	float: left;
	color: #b8b8b8;
}
.searchform .form-group input {
	width: 100%;
	border: 0;
}
.searchform .form-group button {
	background: none;
	position: absolute;
	right: 0;
	width: 0;
	border-left: 1px solid #ebebeb;
	-webkit-border-radius: 0;
	-moz-border-radius:    0;
	-ms-border-radius:     0;
	border-radius:         0;
}
.search-no-results .searchform {
	margin-top: 40px;
}
.container {
	max-width: 1170px;
	margin: auto;
}
.vc_row.k2t-line > .container, .wpb_column.k2t-line {
	border-left: 1px solid #d5e3e8;
	border-right: 1px solid #d5e3e8;
}
.k2t-line-left:not(.vc_row), .k2t-line-left > .container {
	border-left: 1px solid #d5e3e8;
}
.k2t-line-right:not(.vc_row), .k2t-line-right > .container {
	border-right: 1px solid #d5e3e8;
}
.k2t-line-top {
	border-top: 1px solid #d5e3e8;
}
.k2t-line-bottom {
	border-bottom: 1px solid #d5e3e8;
}
.vc_row .wpb_revslider_element {
	margin-bottom: 0;
}
/*--------------------------------------------------------------
	Page Loader
--------------------------------------------------------------*/
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #fbfbfb;
}
#loader-wrapper .circular {								
  position:absolute;
  top:50%;
  left:50%;
  width:50px; 
  height:50px;
  transform: translate3d(-50%,-50%,0);
  -moz-transform: translate3d(-50%,-50%,0);
  -webkit-transform: translate3d(-50%,-50%,0);

  -webkit-animation: rotate 3s linear infinite;
  -moz-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}
@-webkit-keyframes rotate {
  from {-webkit-transform: rotate(0deg);}
  to {-webkit-transform: rotate(360deg);}
}

@keyframes rotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

#loader-wrapper .path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite,
    color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite,
    color 6s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #3f88f8;
}

@-webkit-keyframes dash {
  0%   {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50%  { 
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@keyframes dash {
  0%   {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50%  { 
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@-webkit-keyframes color {
  0%   {stroke: #3f88f8;}
  20%  {stroke: #3f88f8;}
  25%  {stroke: #dd413b;}
  45%  {stroke: #dd413b;}
  50%  {stroke: #f6ae2e;}
  70%  {stroke: #f6ae2e;}
  75%  {stroke: #259a5d;}
  95%  {stroke: #259a5d;}

}

@keyframes color {
  0%   {stroke: #3f88f8;}
  20%  {stroke: #3f88f8;}
  25%  {stroke: #dd413b;}
  45%  {stroke: #dd413b;}
  50%  {stroke: #f6ae2e;}
  70%  {stroke: #f6ae2e;}
  75%  {stroke: #259a5d;}
  95%  {stroke: #259a5d;}

}

/*--------------------------------------------------------------
	WordPress Recommended Classes
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: inline;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
	font-style: oblique;
	font-size: 85%;
}
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	-ms-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 100%;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 9999; /* Above WP toolbar */
}
.gallery-caption {
	color: #ccc;
}
.sticky {
	z-index: 100;
}
.align-left{
	text-align: left;
}
.align-right {
	text-align: right;
}
.align-center {
	text-align: center;
}
.align-left > *,
.align-right > *,
.align-center > * {
	display: inline-block;
}

/*--------------------------------------------------------------
	Furion layout
--------------------------------------------------------------*/
.k2t-body {
	max-width: 1660px;
	margin: 0 auto;
}
.k2t-wrap {
	max-width: 1200px;
	padding: 0 15px;
	width: 100%;
	margin: auto;
}
.page-template .k2t-content > .k2t-wrap {
	padding-left: 15px;
	padding-right: 15px;
}
.page .k2t-wrap {
	padding: 0;
}
.k2t-wrap:before,
.k2t-wrap:after,
.k2t-row:before,
.k2t-row:after,
.cl:before,
.cl:after {
	display: table;
	content: "";
}
.k2t-wrap:after,
.k2t-row:after,
.cl:after {
	clear: both;
}
.k2t-row {
	margin: 0 -15px;
}
.k2t-row [class*="col-"] {
	float: left;
	position: relative;
	padding: 0 15px;
	min-height: .1px;
}
.col-1  { width: 8.33333%; }
.col-2  { width: 16.6667%; }
.col-3  { width: 25%;      }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6667%; }
.col-6  { width: 50%;      }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6667%; }
.col-9  { width: 75%;      }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%;     }

	/* VC layout */
.page-entry .content-page:after{
	content: " ";
	clear: both;
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
.content-page {
	font-size: 0;
	line-height: 0;
	text-align: center;
}
.content-page > * {
	font-size: 14px;
	line-height: 214.286%;
}
.content-page > * {
	text-align: left;
}
.vc_row {
	display: inline-block;
	font-size: 0;
	line-height: 0;
	max-width: 1200px;
	width: 100%;
}
.page .vc_row {
	margin: 0;
}
.page .vc_row-o-equal-height {
	margin: 0 auto;
}
.vc_row .vc_column_container {
	font-size: 14px;
	line-height: 214.286%;
}
.page .no-sidebar .container,
.page .no-sidebar .k2t-wrap {
	max-width: 1200px;
}
.page .no-sidebar div[data-vc-full-width-init='true'],
.page .no-sidebar div[data-vc-full-width-init='true'] .vc_inner {
	float: none;
	left: 0 !important;
	max-width: 1200px !important;
	margin: 0 auto;
}
.page .no-sidebar div[data-vc-stretch-content='true'] .vc_column_container,
.page .no-sidebar div[data-vc-stretch-content='true'] .vc_column_container .vc_inner {
	max-width: 1200px;
}
.wrap-stretch-row {
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}
/*--------------------------------------------------------------
	Header
--------------------------------------------------------------*/
.k2t-header {
	position: relative;
	z-index: 999;
	width: 100%;
}
.k2t-header.fixed {
	position: fixed;
	z-index: 10000;
	width: 100%;
	top: 0;
}
.k2t-header.header-absolute {
	position: absolute;
	z-index: 10000;
	width: 100%;
	top: 0;
	left: 0;
}
.k2t-header.fixed > div {
	background: none;
}
.k2t-header-top,
.k2t-header-mid,
.k2t-header-bot {
	width: 100%;
	margin: 0 auto;
}
.k2t-header.full-width .k2t-wrap,
.k2t-header-top.full-width .k2t-wrap,
.k2t-header-mid.full-width .k2t-wrap,
.k2t-header-bot.full-width .k2t-wrap {
	max-width: 1660px;
}
.k2t-header .k2t-row [class*="col-"] {
	position: initial;
}
.k2t-logo {
	display: block;
}
.k2t-logo .logo-text {
	font-size: 25px;
	line-height: 130px;
	letter-spacing: 0.13em;
	margin: 0;
	text-transform: uppercase;
}
.admin-bar .k2t-header.fixed {
	margin-top: 32px;
}
.admin-bar .sticky {
	margin-top: 32px;
}
.menu-toggle {
	display: none;
}
.h-element {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: -o-inline-flex;
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	max-width: 100%;
}
.k2t-header .sticky {
	z-index: 10000;
	position: fixed !important;
	top: 0;
	width: 100%;
}
.k2t-header-m {
	display: none;
}
.k2t-menu a {
	cursor: pointer;
}
.k2t-header,
.k2t-header .k2t-menu li a {
	color: #000;
	letter-spacing: 0.085em;
}
.k2t-menu li a {
	position: relative;
	overflow: hidden;
}
.k2t-header .k2t-menu li a:hover {
	color: #999999;
}
.k2t-header .k2t-menu > li {
	margin-right: 25px;
}
.k2t-header .k2t-menu > li > a {
	display: block;
	line-height: 130px;
	font-size: 100%;
	text-transform: uppercase;
}
.k2t-header .k2t-menu li a span {
	position: relative;
}
.k2t-header .k2t-menu li > a span:before {
	background-color: #bbd911;
	content: '';
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: -3px;
    left: 100%;
    opacity: 0;

	transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}
.k2t-header .k2t-menu li:hover > a span:before {
	content: '';
	left: 0;
	opacity: 1;
	width: 100%;
}
.k2t-header:not(.ios-divice) .k2t-menu li:hover > a span:before {
	animation: menuHover 0.3s linear 0s 1;
	-o-animation: menuHover 0.3s linear 0s 1;
	-moz-animation: menuHover 0.3s linear 0s 1;
	-webkit-animation: menuHover 0.3s linear 0s 1;
}

.k2t-header .k2t-menu > li.current-menu-item > a,
.k2t-header .k2t-menu > li.current-menu-parent > a,
.k2t-header .k2t-menu > li.current-menu-ancestor > a {
	color: #999999;
}
.k2t-header div.search-box span.icon_search:hover {
	color: #999;
}

@keyframes menuHover {
	0% { width: 0%;left: 0; }
	50% { width: 50%;left: 0; }
	100% { width: 100%;left: 0; }
}

@-webkit-keyframes menuHover {
	0% { width: 0%;left: 0; }
	50% { width: 50%;left: 0; }
	100% { width: 100%;left: 0; }
}

/*--------------------------------------------------------------
	Header - Top
--------------------------------------------------------------*/

.k2t-header-top {
	background: #b0cb1f;
}
.k2t-header-top p {
	margin: 0;
	padding: 10px 0;
}

.k2t-header-top .k2t-menu li ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	background: #fff;
	width: 150px;
	z-index: 100;
	margin: 0;
	top: 51px;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition:    all .4s ease-in-out 0s;
	transition:         all .4s ease-in-out 0s;
}
.k2t-header-top .k2t-menu li ul li {
	width: 100%;
}
.k2t-header-top .k2t-menu li .sub-menu a.has-icon i {
	margin-left: 10px;
	margin-top: -8px;
}
.k2t-header-top .k2t-menu li .sub-menu a.has-icon span.k2t-title-menu {
	margin-left: 10px;
}
.k2t-header-top .k2t-menu > li a.has-icon {
	padding-left: 30px;
}
.k2t-header-top .k2t-menu > li a span.k2t-title-menu {
	margin-left: 0;
}
.k2t-header-top .k2t-menu > li a i {
	position: absolute;
	top: 50%;
	left: 10px;
	font-size: 110%;
	margin-top: -6px;
}
.k2t-header-top .k2t-menu li ul li a {
	display: block;
	padding: 8px 10px 8px 20px;
	border-bottom: 1px solid #ececec;
	position: relative;
}


/*--------------------------------------------------------------
	Header - Middle
--------------------------------------------------------------*/
.k2t-header-mid.box-shadow {
	position: relative;
	z-index: 9;
}
.k2t-header-mid .k2t-menu {
	z-index: 9000;
}
.k2t-header-mid .k2t-menu > li {
	float: left;
	list-style: none;
	position: relative;
}
.k2t-header-mid .k2t-menu > li:hover {
	overflow: inherit;
}
.k2t-header-mid .k2t-menu > li a i {
	margin-right: 5px;
}
.k2t-header-mid .k2t-row > div:last-child > .k2t-menu:last-child > li:last-child {
	margin-right: 0;
}
/* Sub Menu */
.k2t-header-mid .k2t-menu li ul {
	border: 1px solid #cccccc; 
	background-color: #fff;
	margin: 0;
	padding: 0;
	position: absolute;
	left: -100px;
	top: 100px;
	opacity: 0;
	overflow: hidden;
	width: 260px;
}
.k2t-header-mid .k2t-menu li > ul {
	height: 0;
	opacity: 0;
}
.k2t-header-mid .k2t-menu > li ul li {
	line-height: 22px;
	list-style: none;
	padding-bottom: 7px;
	position: relative;
}
.k2t-header-mid .k2t-menu > li ul li:last-child{
	padding-bottom: 0;
}
.k2t-header-mid .k2t-menu > li:hover > ul {
	height: auto;
	left:-0;
	padding: 23px 29px;
	opacity: 1;
	overflow: hidden;
	-webkit-transition: left  .3s ease-out 0s;
	-moz-transition:    left  .3s ease-out 0s;
	transition:         left  .3s ease-out 0s;
	z-index: 9999;
}
.k2t-header-mid .k2t-menu li ul li a {
	display: inline-block;
	color: #212121;
	font-size: 95%;
	font-weight: 300;
	min-height: 30px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition:    all .4s ease-in-out 0s;
	transition:         all .4s ease-in-out 0s;
}
.k2t-header-mid .k2t-menu li ul li ul {
	left: 200px;
	top: 0;
}
.k2t-header-mid .element-editor {
	font-size: 85%;
}
.k2t-header-mid .search-box form {
	top: 101px;
}
.k2t-header-mid .k2t-logo img {
	max-height: 106px;
}

/*--------------------------------------------------------------
	Header - Bottom
--------------------------------------------------------------*/
.k2t-header-bot {
	background: #fff;
	font-size: 85%;
}
.k2t-header-bot.box-shadow {
	position: relative;
	z-index: 9;
}
.k2t-header-top .k2t-menu li,
.k2t-header-bot .k2t-menu li {
	float: left;
	position: relative;
	list-style: none;
}
.k2t-header-bot .k2t-menu li > a:hover,
.k2t-header-bot .k2t-menu li.active > a,
.k2t-header-mid .k2t-menu li > a.current {
	color: #999;
}
.k2t-header-bot .k2t-menu > li.children > a:before,
.k2t-header-bot .k2t-menu > li.children > a:after {
	background: #ccc;
}
.k2t-header-bot .k2t-menu > li.children > a:hover:before,
.k2t-header-bot .k2t-menu > li.children > a:hover:after {
	right: 3px;
	width: 11px;
	background-color: #3f51b5;
}
.k2t-header-top .k2t-menu li:hover > ul,
.k2t-header-bot .k2t-menu li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.k2t-header-bot .k2t-menu > li:hover > ul {
	margin-left: -105px;
}
.k2t-header-bot .k2t-menu ul li {
	display: inline-block;
	width: 100%;
}
.k2t-header-bot .k2t-menu ul li a {
	padding: 10px 10px;
	border-bottom: 1px solid #efefef;
	font-weight: 400;
	font-size: 85%;
}
.k2t-header-bot .k2t-menu ul li:last-child > a {
	border: 0;
}
.k2t-header-bot .k2t-menu ul li.children > a:after {
	position: absolute;
	content: "\f105";
	font-family: FontAwesome;
	top: 10px;
	right: 15px;
}
.k2t-header-bot .k2t-menu ul ul {
	top: -1px;
	left: 208px;
	left: 207px\9;
	margin: 0;
}
.k2t-header-bot .k2t-menu .menu-rtl > ul {
	left: -210px;
}
.k2t-header-bot .k2t-menu > li > a {
	text-transform: none;
	font-weight: 300;
	position: relative;
}
.k2t-header-bot .k2t-menu li a {
	padding: 12px 20px;
	font-size: 90%;
}
.k2t-header-bot .k2t-menu li .sub-menu a.has-icon i {
	margin-top: -8px;
}
.k2t-header-bot .k2t-menu li .sub-menu a.has-icon span.k2t-title-menu {
	margin-left: -9px;
}
.k2t-header-bot .k2t-menu > li a.has-icon {
	padding-left: 35px;
}
.k2t-header-bot .k2t-menu > li a span.k2t-title-menu {
	margin-left: 0;
}
.k2t-header-bot .k2t-menu > li a i {
	position: absolute;
	top: 50%;
	left: 12px;
	font-size: 110%;
	margin-top: -7px;
}
.k2t-header-bot .k2t-menu li ul {
	top: 50px;
}
.k2t-header-bot .k2t-menu li ul ul {
	top: -1px;
}
/*------ header 4 ---------*/

.k2t-header.h4_header_ {
    background-color: #000;
}
.h4_header_ .logo-text {
    color: #fff;
    line-height: 55px;
}
.k2t-header.h4_header_ .k2t-menu > li.current-menu-item > a:before,
.k2t-header.h4_header_ .k2t-menu > li.current-menu-parent > a:before,
.k2t-header.h4_header_ .k2t-menu > li.current-menu-ancestor > a:before,
.k2t-header.h4_header_ .k2t-menu li a:hover:before {
    background-color: #fff;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    transition: height 0.3s linear 0s;
    -moz-transition: height 0.3s linear 0s;
    -webkit-transition: height 0.3s linear 0s;
}
.k2t-header.h4_header_, .k2t-header.h4_header_ .k2t-menu li a,
.k2t-header.h4_header_ .k2t-menu li a:hover {
    color: #fff;
    margin-right: 25px;
    padding-right: 0;
    position: relative;
}
.k2t-header.h4_header_ .k2t-menu > li.current-menu-item > a,
.k2t-header.h4_header_ .k2t-menu > li.current-menu-parent > a,
.k2t-header.h4_header_ .k2t-menu > li.current-menu-ancestor > a {
    color: #fff;
}
.k2t-header.h4_header_ .k2t-menu .sub-menu a,
.k2t-header.h4_header_ .k2t-menu .sub-menu a:hover,
.k2t-header.h4_header_ .k2t-menu .mega-container a,
.k2t-header.h4_header_ .k2t-menu .mega-container a:hover {
	color: #000;
}
/*--------------------------------------------------------------
	Mega menu
--------------------------------------------------------------*/


.k2t-header .k2t-menu li.k2t-megamenu {
	
	position: static;
}
.k2t-header .k2t-menu .mega-container {
	background-color: #fff;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	position: absolute;
	left: 0;
	right: 0;
	opacity: 0;
	width: 100%;
	transition:         all .4s ease-in-out 0s;
	-moz-transition:    all .4s ease-in-out 0s;
	-webkit-transition: all .4s ease-in-out 0s;
	visibility: hidden;
	z-index: -1;
}
.k2t-header .k2t-menu .mega-container > ul > li:not(:last-child) {
	border-right: 1px solid #ccc;
}
.k2t-header .k2t-menu .mega-container ul {
	border: none;
	height: auto;
	padding: 20px;
}
.k2t-header .k2t-menu .k2t-megamenu:hover .mega-container,
.k2t-header .k2t-menu .k2t-megamenu:hover .mega-container ul {
	opacity: 1;
	margin-left: 0;
	visibility: visible;
	z-index: 100;
}
.k2t-header .k2t-menu .mega-container ul {
	margin: 0;
	position: static;
	opacity: 1;
}
.k2t-header .k2t-menu .mega-container > ul {
	display: table;
	table-layout: fixed;
	padding: 0;
	margin: 0 auto !important;
	width: 100%;
	max-width: 1170px;
	visibility: hidden;
}
.k2t-header .k2t-menu .mega-container > ul > li {
	display: table-cell;
	max-width: 260px;
	vertical-align: top;
}
.k2t-header .k2t-menu .mega-container > ul > li > a {
	font-size: 92.8571%;
	padding: 35px 30px 12px;
	text-transform: uppercase;
}
.k2t-header .k2t-menu .mega-container > ul > li:first-child > a,
.k2t-header .k2t-menu .mega-container > ul > li:first-child > ul {
	padding-left: 0;
}
.k2t-header .k2t-menu .mega-container > ul > li > a:hover,
.k2t-header .k2t-menu .mega-container  ul li.active > a {
	color: #999;
}
.k2t-header .k2t-menu .mega-container > ul > li .sub-menu {
	padding: 15px 30px 28px ;
}
.k2t-header .k2t-menu .mega-container > ul > li:hover > a,
.k2t-header .k2t-menu .mega-container > ul > li.current-menu-item > a,
.k2t-header .k2t-menu .mega-container > ul > li.current-menu-ancestor > a {
	background: none;
}
.k2t-header .k2t-menu .mega-container .k2t-megamenu-submenu > a {
	font-weight: 400;
}
.k2t-header .k2t-menu .mega-container .sub-menu {
	width: 100%;
}
.k2t-header .k2t-header-top .k2t-menu .mega-container {
	background: #fff;
}

/*--------------------------------------------------------------
	Header - Search box
--------------------------------------------------------------*/
.h-element.search-box span {
	display: block;
	font-size: 20px;
}
body .k2t-searchbox-close {
	opacity: 0;
}
body.mode-search {
	overflow: hidden;
}
body.mode-search .k2t-searchbox .mark {
	border: 0;
	width: 200%;
	height: 200%;
	z-index: 99;
}
.k2t-searchbox .mark {
	width: 200%;
	height: 0;
	border-radius: 0;
	background: #fff;
	outline: 0;
	z-index: -1;
	position: absolute;
	top: -50%;
	right: -50%;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.k2t-searchbox {
	display: table;
	height: 100%;
	right: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100000;
	visibility: hidden;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
body.mode-search .k2t-searchbox {
	opacity: 1;
	visibility: visible;
}
.k2t-searchbox form {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	width: 680px;
	max-width: 90%;
	visibility: hidden;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: all .5s ease-in-out;
	-moz-transition:    all .5s ease-in-out;
	transition:         all .5s ease-in-out;
	z-index: 10000;
}
body.mode-search .k2t-searchbox-close {
	color: #000;
	font-size: 40px;
	opacity: 1;
	position: absolute;
	right: 30px;
	top: 20px;
	z-index: 10000;
	cursor: pointer;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition:    all .5s ease-in-out;
	transition:         all .5s ease-in-out;
}
body.mode-search .k2t-searchbox-close:hover {
	color: #999;
}
body.mode-search .k2t-searchbox form {
	top: 50%;
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: all .3s ease-in-out;
	-moz-transition-delay:    all .3s ease-in-out;
	transition-delay:         all .3s ease-in-out;
}
.k2t-searchbox input[type="text"] {
	background: none;

	border-radius:         0;
	-webkit-border-radius: 0;
	-moz-border-radius:    0;
	-ms-border-radius:     0;
	border: 0;

	border-bottom: 1px solid #000;
	color: #000;
	font-size: 250%;
	font-weight: 300;
	height: auto;
	padding: 0 40px 0 0;
	text-align: left;
	width: 100%;
}
.k2t-searchbox input[type="text"]:focus {
	border: none;
	border-bottom: 1px solid #000;
}
.k2t-searchbox #searchsubmit {
	background: none;
	color: #000;
	font-size: 178%;
	padding: 0;
	position: absolute;
	right: 0;
	top: -13px;
}
.k2t-searchbox #searchsubmit:hover {
	color: #999;
}
.search-box {
	cursor: pointer;
}
/*--------------------------------------------------------------
	Mobile menu
--------------------------------------------------------------*/
@keyframes fixed {
  100% {
    	position: fixed;
    	top: 40px;
	}
}
/*--------------------------------------------------------------
	Title bar & breadcrumb
--------------------------------------------------------------*/
.k2t-title-bar {
	background-color: #999;
	margin-bottom: 60px;
	padding-top: 174px;
	padding-bottom: 114px;
	position: relative;
}
.k2t-title-bar .k2t-wrap,
.k2t-title-bar .container {
	max-width: 100%;
}
.k2t-title-bar .mask {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	position: absolute;
}
.k2t-title-bar .mask.colors {
	background-color: #000;
}
.k2t-title-bar .mask.pattern {
	background-image: url('../img/pattern/dot.png');
	background-repeat: repeat;
}

	/* Titlebar container */
.k2t-title-bar .k2t-wrap > * {
	position: relative;
	z-index: 1;
}
.k2t-title-bar .main-title {
	color: #000;
	font-family: 'Montserrat';
	font-size: 55px;
	font-weight: bold;
	text-indent: -66px;
	padding-bottom: 26px;
	margin-bottom: 0;
}
.k2t-title-bar .main-title.medium-title {
	font-size: 65px;
}
.k2t-title-bar .main-title.length-title {
	font-size: 60px;
}
.k2t-title-bar .main-title:after {
	background-color: #000;
	content: '';
	height: 2px;
	width: 128px;
	position: absolute;
	left: -64px;
	bottom: -12px;
}
.k2t-title-bar .k2t-wrap > *:not(.main-title) {
	padding-left: 64px;
}
.k2t-title-bar .main-excerpt {
	font-family: "Montserrat";
	font-size: 107.1428%;
	margin-left: 29px;
}
.k2t-title-bar .entry-author {
	color: #000;
	display: block;
	text-transform: uppercase;
}
.k2t-title-bar .description {
	font-family: 'Montserrat';
	font-weight: 300;
	margin-left: 29px;
}
.k2t-title-bar .breadcrumb.hidden {
	display: none;
}
.k2t-title-bar .breadcrumb:first-child {
}
.k2t-title-bar .k2t-wrap.breadcrum,
.k2t-title-bar .k2t-wrap.breadcrumb li,
.k2t-title-bar .k2t-wrap.breadcrumb li:before {
	color: #000;
	font-family: 'Montserrat';
}
.k2t-title-bar .k2t-wrap.breadcrumb a {
	color: #999;
}
.k2t-title-bar .k2t-wrap.breadcrumb a:hover {
	color: #000;
}
.k2t-title-bar .k2t-wrap.breadcrumb a.current {
	color: #000;
}
.k2t-title-bar .k2t-wrap.breadcrumb a.current:hover {
	color: #999;
}
.k2t-breadcrumbs {
	list-style: none;
	padding: 0;
	margin-left: 29px;
}
.k2t-breadcrumbs li {
	display: inline-block;
	position: relative;
	margin-right: 10px;
}
.k2t-breadcrumbs li:before {
	content: "/";
	color: #333;
	margin-right: 10px;
}
.k2t-breadcrumbs li:first-child:before {
	display: none;
}
.k2t-breadcrumbs a {
	display: inline-block;
	line-height: 1;
}

/*--------------------------------------------------------------
	Content
--------------------------------------------------------------*/
.boxed .k2t-container {
	max-width: 1170px;
	margin: auto;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	-moz-box-shadow:    0 0 10px rgba(0, 0, 0, .2);
	-ms-box-shadow:     0 0 10px rgba(0, 0, 0, .2);
	box-shadow:         0 0 10px rgba(0, 0, 0, .2);
}
.boxed .k2t-container .k2t-wrap {
	padding: 0 15px;
}
.k2t-body {
	background: #fff;
	clear: both;
}

.k2t-body .k2t-content{
	padding-bottom: 100px;
	position: relative;
}
.k2t-content:before,
.k2t-content:after {
	content: "";
	display: table;
}
.k2t-content:after {
	clear: both;
}
.no-sidebar .k2t-main,
.no-sidebar .k2t-blog {
	width: 100%;
}
.right-sidebar .k2t-blog,
.left-sidebar .k2t-blog,
.right-sidebar .k2t-main,
.left-sidebar .k2t-main {
	width: 74%;
}
.right-sidebar .k2t-blog,
.right-sidebar .k2t-main {
	padding-right: 95px;
}
.left-sidebar .k2t-blog,
.left-sidebar .k2t-main {
	padding-left: 95px;
}
.tax-portfolio-category .right-sidebar .k2t-blog > *,
.tax-portfolio-category .left-sidebar .k2t-blog > *,
.tax-portfolio-category .right-sidebar .k2t-main > *,
.tax-portfolio-category .left-sidebar .k2t-main > * {
	padding-left: 0px;
	padding-right: 0px;
}
.k2t-blog {
	width: 100%;
}
.k2t-sidebar {
	width: 26%;
	padding-top: 35px;
}
.right-sidebar .k2t-sidebar,
.left-sidebar .k2t-sidebar {
	padding-left: 5px;
}
.k2t-sidebar > * {
	padding: 0 20px 30px;
}
.right-sidebar .k2t-blog,
.two-sidebars .k2t-blog,
.two-sidebars .k2t-btc,
.right-sidebar .k2t-main,
.left-sidebar .k2t-main,
.k2t-sidebar,
.k2t-sidebar-sub,
.k2t-blog,
.k2t-main {
	float: left;
}
.left-sidebar .k2t-blog,
.left-sidebar .k2t-main {
	float: right;
}
.left-sidebar .k2t-main,
.no-sidebar .k2t-main {
	padding-right: 0;
}
.fullsc > * {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform:    translateY(-50%);
	-ms-transform:     translateY(-50%);
	-o-transform:      translateY(-50%);
	transform:         translateY(-50%);
}

/*--------------------------------------------------------------
	Furion Blog single
--------------------------------------------------------------*/
.k2t-blog {
	padding-top: 35px;
}
.bypostauthor {
	
}
.k2t-blog article.post-item {
	margin-top: 0;
}
.k2t-blog .entry-box h2 {
	font-size: 142.85714%;
	margin-bottom: 0;
}
.k2t-blog .top-meta {
	margin-bottom: 36px;
}
.k2t-blog .top-meta span,
.k2t-blog .top-meta a {
	color: #999;
	font-family: 'Montserrat';
	font-size: 78.5714%;
	text-transform: uppercase;
}
.k2t-blog .top-meta .author-meta a {
	color: #000;
}
.k2t-blog .top-meta .author-meta a:hover {
	color: #999;
}
.k2t-blog .top-meta > div > * {
	display: inline-block;
	position: relative;
}
.k2t-blog .top-meta > div > *:last-child {
	line-height: 13px;
	padding-right: 21px;
}
.k2t-blog .top-meta > div:not(:last-child) > *:last-child:after {
	content: '';
	background-color: #999;
	width: 2px;
	height: 100%;
	position: absolute;
	right: 0;
}
.k2t-blog .top-meta > div:not(:first-child) {
	padding-left: 21px;
}
.k2t-blog .top-meta a:hover {
	color: #000;
}
.k2t-blog .top-meta div {
	display: inline-block;
}
.k2t-blog .flx-entry-thumb {
	 margin-bottom: 37px;
}
.k2t-blog .post-entry {
	border-bottom: 1px solid #e5e5e5;
}
.k2t-blog .post-entry ul {
	padding-left: 13px;
	margin-bottom: 10px;
}
.k2t-blog .post-entry p + blockquote {
	margin-top: 33px;
}
.k2t-blog .post-entry > *:last-child,
.k2t-blog .post-entry + .bottom-meta {
	margin-top: 20px;
}
.k2t-blog .post-entry + *:not(.bottom-meta) {
	margin-top: 45px;
}
.k2t-blog .post-entry > *:last-child > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.bottom-meta {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 20px;
	margin-bottom: 45px;
}

.bottom-meta .tag-meta {
	padding-bottom: 3px;
	overflow: hidden;
}

.wpb_start_animation.animated{
	visibility: visible;
}

/* ----------------- tag ------------------*/
.tagcloud a {
	color: #999;
}
.tagcloud a:hover{
	color: #000;
}
.tagcloud a:not(:last-child):after {
	content: ', ';
}
.tagcloud span {
	color: #000;
	font-family: 'Montserrat';
	font-size: 85.7142%;
	font-weight: bold;
	text-transform: uppercase;
}
/* ----------------- NUMBER OF COMMENT ------------------*/
.entry-comment{
	float: right;
	padding-right: 15px;
}
.entry-comment span,
.entry-comment a {
	color: #999;
}
.entry-comment a:hover {
	color: #000;
}
.entry-comment span{
	padding-right: 5px;	
}

/*----------------------- RELATED POST ---------------*/
.k2t-blog .related-post {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 40px;
}
.k2t-blog .related-post h3 {
	font-size: 142.8571%;
	margin-bottom: 36px;
}
.k2t-blog .related-post .top-meta {
	margin-bottom: 0;
}
.k2t-blog .related-post .post h3 {
	font-size: 128.5714%;
}
.k2t-blog .related-post .post h5 {
	margin-bottom: 3px;
}
.k2t-blog .related-post .post a:first-child div {
	background-color: #fff;
	display: block;
	overflow: hidden;
	margin-bottom: 41px;
}
.k2t-blog .related-post .post a:first-child img {
	-webki-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.k2t-blog .related-post .post a:first-child:hover img {
	opacity: 0.7;
	-webkit-transform: scale(1.1) rotate(0.1deg);
	-moz-transform: scale(1.1) rotate(0.1deg);
	-ms-transform: scale(1.1) rotate(0.1deg);
	-o-transform: scale(1.1) rotate(0.1deg);
	transform: scale(1.1) rotate(0.1deg);
	-webki-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.k2t-blog .related-post .top-meta > div > :last-child {
	padding-right: 14px;
}
.k2t-blog .related-post .top-meta > a {
	display: inline-block;
}
.k2t-blog .related-post .top-meta > div:not(:first-child),
.k2t-blog .related-post .top-meta > a:first-of-type {
	padding-left: 14px;
}
.k2t-blog .related-post .owl-carousel {
	margin-bottom: 34px;
}

/*----------------------- AUTHOR BOX ---------------*/
.about-author {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.about-author > img {
	float: left;
	margin-right: 30px;
}
.about-author .author-info {
	background-color: #f6f6f6;
	float: left;
	padding: 22px;
	width: calc(100% - 240px);
}
.about-author .author-info p {
	margin-bottom: 0;
}
.about-author .author-info h4 {
	font-size: 107.1428%;
}

/*-----------------Comments List-------------------*/
.page #comments {
	margin-top: 30px;
}
#comments blockquote,
#comments q {
	background-color: #fff;
}
#comments h3 {
	font-size: 142.8571%;
	margin-bottom: 30px;
}
.comment-list {
	margin: 0;
	list-style: none;
}
.comment-list .pingback + .comment {
	margin-top: 34px;
}
.comment-list .comment-content {
	background-color: #f6f6f6;
	margin-left: 100px;
	padding: 21px;
	position: relative;
	z-index: 0;
}
.comment-list .comment-content:last-child {
	margin-bottom: 35px;
}
.comment-list .comment-content:before {
	content: 'D';
	color: #f6f6f6;
	font-family: "ElegantIcons";
	font-size: 30px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: absolute;
	top: 14px;
	left: -17px;
}
.comment-list .comment-content > p{
	color: #666;
}
.comment-list .comment-body {
	list-style: none;
	margin-bottom: 30px;
	position: relative;
}
.comment-list .comment-body footer .action-link > a{
	display: inline-block;
	padding-left: 10px;
	text-transform: uppercase;
}
.comment-body img {
	float: left;
}
.comment-body {
	position: relative;
	z-index: 0;
}
.comment-body .comment-meta .comment-author {
	display: block;
	color: #333;
	font-family: 'Montserrat';
	font-size: 100%;
	font-weight: bold;
	font-style: normal;
	margin-bottom: 10px;
}
.comment-list img {
	float: left;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}
.comment-list .children .comment-body{
	padding-left: 40px;
}
.comment-list .children .children {
	padding-left: 40px;
}
.comment-list .comment-body footer .action-link > a {
	color: #999;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
.comment-list .comment-body footer .action-link > a:hover {
	color: #000;
}
.comment-pagination {
	float: right;
}
.comment-pagination a, .comment-pagination span {
	padding-left: 15px;
	font-size: 115%;
	font-family: 'Roboto', sans-serif;
}
#comment-nav-below .assistive-text.section-heading {
	display: none;
}
#comment-nav-below .nav-previous, .comment-nav-below .nav-next {
	margin: 20px 0 10px;
}
/*--------------Comment Form--------------*/
#respond {
	display: inline-block;
	width: 100%;
}
#commentform > p.comment-form-author{
	width: 48%;
	float: left;
}
#commentform > p.comment-form-email{
	width: 48%;
	float: right;
}
#commentform > p.comment-form-url{
	clear: both;
}
#commentform > p {
	position: relative;
	margin-bottom: 19px;
}
#commentform > p.comment-notes {
	display: none;
}
#commentform > p textarea {
	border: 0;
	outline: 0;
	border: 1px solid #ccc;
	color: #999;
	padding: 20px 15px;
	height: 180px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#commentform > p input {
	border: 0;
	outline: 0;
	border: 1px solid #ccc;
	color: #999;
	padding: 0 15px;
	width: 100%;
	height: 50px;
	line-height: 50px;
	margin: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#commentform > p input:focus,
#commentform > p textarea:focus {
	border-color: #000;
	color: #000;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;	
}
#form-allowed-tags code {
	font-size: 85%;
}
.form-submit #submit {
	border: none;
	color: #fff;
	display: inline-block;
	font-family: 'Montserrat';
	font-size: 100%;
	font-weight: bold;
	height: 62px;
	line-height: 62px;
	width: auto;
	padding: 0 30px;
	text-transform: uppercase;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
.form-submit #submit:hover {
	background: #e5e5e5;
	color: #000;

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

.form-submit #submit label.error {
	position: absolute;
	left: 0;
	top: 15px;
	color: #3f51b5;
}

#response {
	color: #3f51b5;
	font-size: 100%;
}

/* Quote Post*/
.post-item.quote-post .post-inner{
	overflow: visible;
}
.post-item.quote-post .quote-content {
	border: 14px solid #ededed;
	padding: 45px 49px 30px;
	position: relative;
}
.post-item.quote-post .post-inner blockquote {
	background-color: #fff;
	color: #666666;
	font-size: 16px;
	margin-bottom: 19px;
	padding: 0;
	position: initial;
}
.post-item.quote-post .post-inner blockquote * {
	line-height: 187.5%
}
.post-item.quote-post .post-inner blockquote cite {
	display: block;
}
.post-item.quote-post blockquote:before {
	display: none;
}
.post-item.quote-post blockquote:after {
	bottom: 29px;
	right: 27px;
}
.post-item.quote-post header{
	display: none;
}
.post-item.quote-post .footer-content {
	margin-top: 72px;
}
.post-item.quote-post .footer-content * {
	display: none;
}
.footer-content .entry-comment {
	display: none;
}
.quote-wrapper .quote-content .author {
	color: #000;
	font-family: 'Montserrat';
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.format-video .flx-entry-thumb .wp-video,
.format-video .flx-entry-thumb .wp-video .mejs-video,
.format-video .flx-entry-thumb video,
.format-video .flx-entry-thumb .mejs-overlay,
.format-video .flx-entry-thumb iframe,
.format-audio .flx-entry-thumb iframe  {
	width: 100% !important;
}
.format-audio .flx-entry-thumb a {
	display: inline-block;
	max-width: 100%;
}
article.format-video .flx-entry-thumb iframe,
article.format-audio .flx-entry-thumb iframe {
	height: 100%
}
.format-video .flx-entry-thumb .wpb_video_widget {
	margin-bottom: 0;
}
/* Blog hover 
	---------------------------- */
.k2t-blog .flx-entry-thumb {
	overflow: hidden;
}
.k2t-blog .flx-entry-thumb a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	max-width: 100%;
}
.k2t-blog .flx-entry-thumb .mask-item {
	background-color: rgba(255,255,255,0.7);
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 10;
}
.k2t-blog .flx-entry-thumb:hover a .mask-item {
	opacity: 1;
}
.k2t-blog .flx-entry-thumb a img {
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.k2t-blog .flx-entry-thumb:hover a img {
	transform: scale(1.1);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
/* Blog format 
	---------------------------- */
.post.format-video .flx-entry-thumb a {
	position: relative;
}
.post.format-video .flx-entry-thumb a:before {
	border-top: 7px solid transparent;
	border-left: 13px solid #000;
	border-bottom: 7px solid transparent;
	content: "";
	height: 0;
	width: 0;
	margin: 1px 0 0 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;

	z-index: 5;
}
.post.format-video .flx-entry-thumb a:hover:before {
	border-left-color: #fff;
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}
.post.format-video .flx-entry-thumb a:hover:after {
	background-color: #000;
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}
.post.format-video .flx-entry-thumb a:after {
	background-color: #fff;
	border-radius: 50%;
	content: ''; 
	height: 41px;
	width: 41px; 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);

	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}

.post.format-audio .flx-entry-thumb {
	line-height: 0;
}

/* Blog medium thumbnail 
	---------------------------- */
.b-medium .post .post-inner {
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 26px;
}
.b-medium .entry-content {
	margin-bottom: 31px;
}
.b-medium .post-item .flx-entry-thumb {
	float: left;
	margin-bottom: 39px;
	width: 270px;
}
.b-medium .post-item .flx-entry-thumb a img {
	margin-top: 4px;
	max-width: 100%;
}
.b-medium .audio-post .flx-entry-thumb {
	height: 148px;
}
.b-medium .post .entry-title{
	font-size: 121.4285%;
	margin-bottom: 0;
}
.b-medium .post .top-meta {
	margin-bottom: 12px;
}
.b-medium .excerpt {
	line-height: 171.4285%;
	margin-bottom: 5px;
}
.b-medium .format-video .flx-entry-thumb .wp-video,
.b-medium .format-video .flx-entry-thumb .wp-video .mejs-video,
.b-medium .format-video .flx-entry-thumb video,
.b-medium .format-video .flx-entry-thumb .mejs-overlay {
	height: 100% !important;
}
.b-medium .wpb_video_widget .wpb_wrapper iframe {
	min-height: 250px;
}
.b-medium .k2t-blog .post-item .post-inner{
	display: inline-block;
	overflow: visible;
	width: 100%;
}
.b-medium .k2t-blog .post-item .entry-content{
	float: right;
	width: calc( 100% - 270px );
	padding-left: 30px;
}
.b-medium .k2t-blog .post-item header{
	margin: 0;
}
.b-medium .k2t-blog .post-item header h2{
	margin: 5px 0;
	font-size: 142%;
}
.b-medium .k2t-blog .post-item .footer-content{
	margin-top: 13px;
}
.b-medium .quote-post .quote-wrapper {
	margin-bottom: 39px;
}
.b-medium .k2t-navigation {
	margin-top: 18px;
}

/*-----------Blog Grid-----------------*/

.b-grid .grid-layout{
	margin-left: -15px;
	margin-right: -15px;
}
.b-grid .grid-layout .hentry{
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}
.b-grid .grid-layout.column-4 .hentry {
	width: 25%;
}
.b-grid .grid-layout.column-4 .hentry:nth-child(4n+1) {
	clear: both;
}
.b-grid .grid-layout.column-3 .hentry {
	width: 33.3%;
}
.b-grid .grid-layout.column-3 .hentry:nth-child(3n+1) {
	clear: both;
}
.b-grid .grid-layout.column-2 .hentry {
	width: 50%;
}
.b-grid .grid-layout.column-2 .hentry:nth-child(2n+1) {
	clear: both;
}



.k2t-blog .grid-layout .post-item {
	margin-bottom: 67px;
}
.k2t-blog .grid-layout .flx-entry-thumb {
	margin-bottom: 33px;
}
.k2t-blog .top-meta {
	margin-bottom: 16px;	
}
.k2t-blog .grid-layout .post-item .entry-title,
.k2t-blog .masonry-layout .post-item .entry-title {
	font-size: 	128.5714%;
	margin-bottom: 3px;
}
.k2t-blog .grid-layout .top-meta > div > :last-child {
	padding-right: 14px;
}
.k2t-blog .grid-layout .top-meta > div:not(:first-child) {
	padding-left: 11px;
}
.k2t-blog .grid-layout .top-meta > div:not(:last-child) > :last-child::after {
	width: 1px;
}
.k2t-blog .grid-layout .excerpt {
	margin-bottom: 23px;
}
.k2t-blog .top-meta > a:first-of-type {
    padding-left: 14px;
}
.k2t-blog .grid-layout .format-quote .footer-content {
	display: none;
}

/* --------------------    	BUTTON READ MORE -------------------- */
.more-link {
	color: #999;
	font-family: 'Montserrat';
	font-size: 100%;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.more-link span {
	display: inline-block;
	-webkit-transform: translateY(1px);
	-moz-transform: translateY(1px);
	-ms-transform: translateY(1px);
	-o-transform: translateY(1px);
	transform: translateY(1px);
}
.more-link:hover span {
	animation: morelinkAnimation 0.5s ease-in-out 0s 1;
}
@keyframes morelinkAnimation {
	0% { padding-left: 0px;}
	50% { padding-left: 5px;}
	100% { padding-left: 0px;}
}

@-webkit-keyframes morelinkAnimation {
	0% { padding-left: 0px;}
	50% { padding-left: 5px;}
	100% { padding-left: 0px;}
}

/* Blog masonry
---------------------------- */

.b-masonry.fullwidth .k2t-wrap {
	max-width: 100%;
}
.b-masonry .masonry-layout{
	margin-left: -15px;
	margin-right: -15px;
}
.b-masonry .masonry-layout article{
	padding-left: 15px;
	padding-right: 15px;
	overflow: visible;
}
.b-masonry .masonry-layout article .post-inner{
	overflow: hidden;
}

.b-masonry .grid-sizer {
	width: 20%;
}
.b-masonry .column-4 .grid-sizer {
	width: 25%;
}
.b-masonry .column-3 .grid-sizer {
	width: 33.3%;
}
.b-masonry .column-2 .grid-sizer {
	width: 50%;
}
.b-masonry .masonry-layout .hentry {
	width: 20%;
	float: left;
}
.b-masonry .masonry-layout .hentry.large {
	width: 40%;
}
.b-masonry .masonry-layout.column-4 .hentry {
	width: 25%;
}
.b-masonry .masonry-layout.column-4 .hentry.large {
	width: 50%;
}
.b-masonry .masonry-layout.column-3 .hentry {
	width: 33.3%;
}
.b-masonry .masonry-layout.column-3 .hentry.large {
	width: 66.6%;
}
.b-masonry .masonry-layout.column-2 .hentry {
	width: 50%;
}
.b-masonry .masonry-layout.column-2 .hentry.large {
	width: 100%;
}
.b-masonry .post-item {
	border-bottom: none;
	padding-left: 0;
	padding-right: 0;
}
.b-masonry .post-item .owl-carousel,
.b-masonry .post-item .owl-stage-outer {
	margin-bottom: 0;
}
.k2t-blog .masonry-layout .format-quote .footer-content {
	display: none;
}
.k2t-blog .masonry-layout .format-quote {
	margin-bottom: 80px;
}
.b-masonry .post-item.audio-post {
	padding-top: 0px;
}
.b-masonry .post-item .mejs-video,
.b-masonry .post-item .mejs-video video,
.b-masonry .mejs-poster,
.b-masonry .mejs-overlay-play {
	height: 169px !important;
	margin-bottom: 35px;
}
.b-masonry .mejs-container .mejs-controls {
	bottom: -17px;
}
.b-masonry .list-container-1 ul li a {
	padding: 8px;
}
.b-masonry .mejs-container {
	margin-bottom: 35px;
}
.b-masonry .post-item {
	margin-bottom: 64px;
}


/* Blog Listing large
---------------------------- */
.b-large .post-item .entry-title {
	font-size: 	171.4285%;
	margin-bottom: 3px;
}
.b-large .author-meta a {
	color: #000;
}
.b-large .author-meta a:hover{
	color: #999;
}
.b-large .flx-entry-thumb {
	margin-bottom: 32px;
}
.b-large .post .top-meta span,
.b-large .post .top-meta a {
	font-size: 85.7142%;
	letter-spacing: 0.1em;
}
.b-large .more-link {
	display: inline-block;
	font-size: 107.1428%;
	font-weight: 700;
	margin-bottom: 72px;
}
.b-large .post .excerpt {
	margin-bottom: 24px;
}
/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
	 -moz-transition-duration: 0.8s;
	  -ms-transition-duration: 0.8s;
	   -o-transition-duration: 0.8s;
		  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
	 -moz-transition-property: height, width;
	  -ms-transition-property: height, width;
	   -o-transition-property: height, width;
		  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
	 -moz-transition-property:    -moz-transform, opacity;
	  -ms-transition-property:     -ms-transform, opacity;
	   -o-transition-property:      -o-transform, opacity;
		  transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
	 -moz-transition-duration: 0s;
	  -ms-transition-duration: 0s;
	   -o-transition-duration: 0s;
		  transition-duration: 0s;
}

/* End: Recommended Isotope styles */

.blog-style-4 .post-item {
	padding: 0 0 30px;
	border-bottom: none;
}

.blog-style-4 .post-item .mejs-video,
.blog-style-4 .post-item .mejs-video video,
.blog-style-4 .mejs-poster,
.blog-style-4 .mejs-overlay-play {
	height: 169px !important;
	margin-bottom: 35px;
}
.blog-style-4 .mejs-container .mejs-controls {
	bottom: -17px;
}
.blog-style-4 .post-item header .entry-author, 
.blog-style-4 .post-item header .entry-date, 
.blog-style-4 .post-item header .entry-categories {
	margin-right: 25px;
}
.blog-style-4 .post-item header .entry-title {
	font-size: 142%;
	line-height: 22px;
}
.blog-style-4 .audio-post .flx-entry-thumb {
	margin-top: 40px;
}

.blog-style-4 .list-container-1 ul li a {
	padding: 8px;
}
.blog-style-4 .mejs-container {
	margin-bottom: 35px;
}

/*
Widget Twitter
*/
ul.fetched_tweets.dark li.tweets_avatar {
	background: #44ccff;
	border-color: #44ccff;
}
ul.fetched_tweets li.tweets_avatar {
	padding: 20px 20px 0!important;
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	-ms-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
ul.fetched_tweets li.tweets_avatar:hover{
	z-index: 9999;
	-webkit-box-shadow: 0 15px 30px rgba(0,0,0,.1);
	-moz-box-shadow: 0 15px 30px rgba(0,0,0,.1);
	-ms-box-shadow: 0 15px 30px rgba(0,0,0,.1);
	box-shadow: 0 15px 30px rgba(0,0,0,.1);
}
ul.fetched_tweets.light li.tweets_avatar:before{
	color: rgba(0,0,0,0.3);
}
ul.fetched_tweets li.tweets_avatar:before{
	content: '\f360';
	font-family: Material-Design-Iconic-Font;
	font-size: 48px;
	position: absolute;
	right: 22px;
	top: 20px;
	color: rgba(255,255,255,0.3);
	line-height: 0.9;
}
ul.fetched_tweets.dark div.wdtf-screen-name span.screen_name,
ul.fetched_tweets.dark li.tweets_avatar .wdtf-screen-name a {
	color: rgba(255,255,255,0.6)!important;
}
ul.fetched_tweets li.tweets_avatar .tweet_data {
	font-family: inherit;
	font-size: 115%;
	line-height: 1.75;
	margin-top: 30px;
	margin-bottom: 15px;
}
ul.fetched_tweets.dark li.tweets_avatar .times a {
	color: #fff!important;
}
ul.fetched_tweets.dark .tweets_avatar .tweet_data a {
	color: #fff!important;
}
ul.fetched_tweets.dark .tweets-intent-data {
	border: 0;
}
.tweets-intent-data .tweet-actions li {
	width: auto!important;
	margin: 0 20px 0 0;
}
.tweets-intent-data .tweet-actions li span:before{
	font-size: 100%;
}
/*--------------------------------------------------------------
	Post format
--------------------------------------------------------------*/
.k2t-thumb .wpb_video_wrapper iframe {
	max-width: 100%;
	height: 400px;
}
.post-entry iframe, .post-entry embed {
	max-width: 100%;
} 
.wpb_video_wrapper #player .title a {
	color: #3f51b5;
}

.k2t-thumb .wp-video {
	width: 100% !important;
}
.b-timeline .k2t-thumb .wp-video {
	height: auto !important;
}
.k2t-thumb .mejs-audio {
	height: 90px !important;
}
.k2t-thumb .mejs-audio .mejs-controls {
	top: 30px;
}
.k2t-thumb:hover .k2t-thumb-gallery img {
	-webkit-transform: scale(1);
	-moz-transform:    scale(1);
	-ms-transform:     scale(1);
	-o-transform:      scale(1);
	transform:         scale(1);
}
.b-medium .format-quote .k2t-thumb,
.b-small .format-quote .k2t-thumb {
	width: 100%;
	max-width: 100%;
}
.k2t-thumb-quote {
	padding: 45px 105px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	text-align: center;
}
.k2t-thumb-quote .quote-content {
	font: italic 16px/24px Georgia;
	position: relative;
}
.k2t-thumb-quote .quote-content i {
	font-size: 428%;
	position: absolute;
	left: -80px;
	color: #f2f2f2;
}
.k2t-thumb-quote .quote-content,
.k2t-thumb-quote .quote-author a {
	color: #767676;
}
.k2t-thumb-quote .quote-author {
	position: relative;
	margin-top: 35px;
}
.k2t-thumb-quote .quote-author:before {
	content: "* * *";
	position: absolute;
	top: -26px;
	left: 50%;
	margin-left: -11px;
}
.k2t-thumb-quote .quote-author a {
	font-size: 100%;
	font-weight: 500;
	position: relative;
}
.k2t-thumb-quote .quote-author a:before,
.k2t-thumb-quote .quote-author a:after {
	content: "";
	position: absolute;
	width: 18px;
	height: 1px;
	background: #e5e5e5;
	top: 9px;
}
.k2t-thumb-quote .quote-author a:before {
	left: -24px;
}
.k2t-thumb-quote .quote-author a:after {
	right: -24px;
}

/*--------------------------------------------------------------
	Pagination
--------------------------------------------------------------*/
.k2t-navigation ul {
	position: relative;
	text-align: center;
}
.k2t-navigation ul li {
	display: inline-block;
}
.k2t-navigation ul li a,
.k2t-navigation ul li span {
	display: inline-block;
	font-family: 'Montserrat';
	font-size: 107.1428%;
	font-weight: bold;
	margin: 0 9px;
	min-width: 15px;
}
.k2t-navigation ul li a {
	color: #999;
}
.k2t-navigation ul li a:hover {
	color: #000;
}
.k2t-navigation ul li span {
	border-bottom: 1px solid #000;
	color: #000;
}
.k2t-navigation a.page-numbers:not(.prev):not(.next) {
	position: relative;
}
.k2t-navigation a.page-numbers:not(.prev):not(.next):before{
	background-color: #000;
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 1px;

	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}

.k2t-navigation a.page-numbers:not(.prev):not(.next):after{
	background-color: #000;
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	width: 0;
	height: 1px;

	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}

.k2t-navigation a.page-numbers:hover:not(.prev):not(.next):before,
.k2t-navigation a.page-numbers:hover:not(.prev):not(.next):after {
	width: 50%;
	
	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}
.k2t-navigation .prev {
	position: absolute;
	top: 50%;
	left: 0;
	text-indent: 31px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}
.k2t-navigation .next {
	position: absolute;
	top: 50%;
	right: 0;
	text-indent: -50px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}
.k2t-navigation .next:hover,
.k2t-navigation .prev:hover {
	text-indent: 0;
	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}
.k2t-navigation .next,
.k2t-navigation .prev {
	background-color: #ebf0f1;
	color: #000;
	display: inline-block;
	width: 58px;
	height: 58px;
	line-height: 58px;
	margin: 0;
	padding-right: ;
	text-transform: uppercase;
}
.k2t-navigation .prev:before {
	content: '';
	height: 58px;
	width: 14px;
	position: absolute;
	right: -14px;
}
.k2t-navigation .next:before {
	content: '';
	height: 58px;
	width: 14px;
	position: absolute;
	left: -14px;
}
.nav-seemore .nav-seemore-inner{
	display: inline-block;
	padding: 8px 22px;
	font-size: 115%;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	background: #3f51b5;
}
.nav-seemore .nav-seemore-inner a{
	display: block;
	color: #fff;
}
#infscr-loading{
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*--------------------------------------------------------------
	404 page
--------------------------------------------------------------*/
.error404 .k2t-body {
	background: #ececec url('../img/icons/404-man.png') no-repeat right bottom;
	text-align: center;
	color: #fff;
}
.error404 .k2t-body {
	height: 100vh;
	width: 100%;
	max-width: 100%;
	display: table;
}
.error404 .k2t-body .k2t-not-found {
	display: table-cell;
	vertical-align: middle;
}
.error404 .error-404-text {
	padding: 0 0 40px;
	color: #000000;
	text-align: left;
	margin-top: -80px;
}
.error404 .error-404-text h2 {
	color: #ffffff;
	font-size: 150px;
	font-family: 'Montserrat';
	text-transform: capitalize;
}
.error404 a.error-404-home {
	background: #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	font-family: 'Montserrat';
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	text-transform: uppercase;
	color: #000;
	float: left;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 57px;
	line-height: 57px;
	text-align: center;
	width: 170px;
}
.error404 a.error-404-home i{
	margin-right: 5px;
	color: #000;
}
.error404 a.error-404-home:hover {
	z-index: 9999;
	-webkit-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	-moz-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	-ms-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
}
.k2t-404-search input{
	float: left;
	padding: 16px;
	border: 1px solid #000000;
	width: 34.189%;
}
.k2t-404-search form{
	float:left;
	width: 100%;
	margin-bottom: 60px;
}
.k2t-404-search button#searchsubmit{
	font-family: 'Montserrat';
    float: left;
	font-weight: 400;
    padding: 0px 57px;
    height: 51px;
    border-radius: 0;
    line-height: 50px;
}

/*--------------------------------------------------------------
	Page
--------------------------------------------------------------*/
.page-bottom-content > * {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
	SLider
--------------------------------------------------------------*/
.service-slider .flex-direction-nav a {
	text-indent: inherit;
	color: transparent;
	border-radius: 100%;
	background: rgba(0,0,0,0.3);
	font-size: 16px;
	content: "";
	line-height: 50px;
	margin: -20px 20px;
}
.service-slider .flex-direction-nav a:before {
	font-family: FontAwesome;
	left: 8px;
	position: relative;
	top: -6px;
	color: #fff;
}
.service-slider .flex-direction-nav .flex-prev:before {
	content: "\f053";
	left: 12px
}
.service-slider .flex-direction-nav .flex-next:before {
	content: "\f054";
	left: auto;
	right: -14px;
}

/*--------------------------------------------------------------
	Carousel slider
--------------------------------------------------------------*/
.owl-carousel {
	cursor: pointer;
}
.owl-dots {
	margin: 15px 0 40px 0;
	text-align: center;
}
.owl-nav {
	height: 0;
}
.owl-dots .owl-dot,
.owl-dots .owl-dot span {
	display: inline-block;
	position: relative;
}
.owl-dots .owl-dot span {
	background-color: #cecece;
	display: inline-block;
	height: 3px;
	width: 27px;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
}
.owl-dots .owl-dot:not(:last-child) {
	margin-right: 10px;
}
.owl-dots .owl-dot.active span {
	background-color: #000;
}

.owl-dots .owl-dot span:before {
	background-color: #000;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
}
.owl-dots .owl-dot:hover span:before {
	width: 100%;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
}

.dark-style .owl-dots .owl-dot span {
	background-color: #929292;
}
.dark-style .owl-dots .owl-dot.active span,
.dark-style .owl-dots .owl-dot:hover span:before {
	background-color: #fff;
}
.owl-controls .owl-prev,
.owl-controls .owl-next {
	height: 45px;
	width: 45px;
}
.owl-controls .owl-prev {
	float:left;
}
.owl-controls .owl-next {
	float:right;
}
.owl-controls .owl-nav {
	padding: 0 25px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
}
.owl-controls .owl-nav span {
	background-color: rgba(51,51,51,0.3);
	color: #d8dadb;
	display: inline-block;
	line-height: 45px;
	font-size: 20px;
	width: 45px;
	height: 45px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	
}
.owl-controls .owl-nav span:hover {
	background-color: rgba(51,51,51,0.8);
	color: #fff;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
/*--------------------------------------------------------------
	2. Widget style
--------------------------------------------------------------*/
.widget {
	padding: 0 0 55px;
	color: #666;
}
.widget ul {
	list-style: none;
}
.widget-title {
	color: #000;
	text-transform: uppercase;
	font-size: 20px;
}

.widget ul li {
	list-style: none;
	padding-bottom: 2px;
	margin-bottom:  5px;
}
.widget ul li a,
.widget ul li a:before,
.widget.widget_recent_comments ul li > a:hover,
.widget_rss ul li a:hover,
.widget .posts-list .post-item h4 a:hover {
	color: #666;
}

.widget ul li.current-cat a,
.widget ul li.current-cat span.count,
.widget_recent_comments ul li > a,
.widget ul li a:hover,
.widget_rss ul li a {
	color: #000;
}
.widget ul li.recentcomments a {
	width: auto;
	border: 0;
	padding: 0;
}
.widget .searchform .form-group input,
.widget select {
	width: 100%;
}
.widget select {
	height: 42px;
	padding: 0 15px;
}
.widget_categories > ul > .cat-item {
	position: relative;
}
.widget_categories > ul > .cat-item  a:before,
.widget_archive > ul > li > a:before ,
.widget_pages > ul > li > a:before {
	content: 'E';
	color: #666;
	font-family: "ElegantIcons";
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	padding-right: 6px;
}
.widget_pages li ul {
	margin-left: 2.9em;
}
.widget_categories > ul > .cat-item:hover > a,
.widget_categories > ul > .cat-item:hover > a:before,
.widget_categories > ul > .cat-item:hover > .count,
.widget_archive > ul > li:hover > a:before,
.widget_archive > ul > li:hover > a,
.widget_archive > ul > li:hover > span {
	color: #000;
}
.widget_archive > ul > li span {
	float: right;
}
.widget_categories > ul > .cat-item > .count{
	float: right;
	color: #666;
	width: 15%;
	text-align: right;
}
.widget_categories > ul > .cat-item .children{
	clear: both;
	overflow: hidden;
}
.widget_categories > ul > .cat-item .children li a{
	float: left;
}
.widget_categories > ul > .cat-item .children li .count{
	float: right;
}

/* Widget calendar */

.widget #wp-calendar{
	overflow: hidden;
	background: #fff;
}
.widget #wp-calendar{
	border: 0;
}

.widget #wp-calendar td {
	border: 0;
	color: #999;
	font-weight: 300;
	text-align: center;
}
.widget #wp-calendar th {
	border: 0;
	color: 666;
	font-weight: 500;
	text-align: center;
}
.widget #wp-calendar th {
	padding: 3px 6px;
	background: #f5f5f5;
}
.widget #wp-calendar td {
	padding: 6px 6px;
}
.widget #wp-calendar td a{
	background-color: #f6f6f6;
	color: #000;
	display: inline-block;
	font-weight: 700;
	width: 100%;
}
.widget #wp-calendar #prev a,
.widget #wp-calendar #next a{ 
	background-color: transparent;
}
.widget #wp-calendar td a:hover {
	color: #666;
}
.widget #wp-calendar caption {
	background: #fff;
	color: #000;
	font-size: 115%;
	font-weight: 500;
	padding: 13px 0;
	text-align: left;
}
.widget #wp-calendar td#today{
	background: #000;
	color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
}
.widget #wp-calendar td#today a{
	color: #fff;
}
.widget #wp-calendar thead{
	background: #f5f5f5;
}
/* tagcloud */
.widget .tagcloud {
	overflow: hidden;
}
.widget .tagcloud a {
	color: #999;
	display: inline-block;
	font-size: 107.1428% !important;
	padding-right: 3px;
}
.widget .tagcloud a:not(:last-child):after{
	content: ',';
}
.widget .tagcloud a:hover {
	color: #000;
}

/* widget recent post custom */

.widget .posts-list .post-item {
	display: block;
	margin-bottom: 20px;
	overflow: hidden;
}
.widget .posts-list .post-item .post-thumb {
	float: left;
	width: 80px;
}
.widget .posts-list .post-item .post-text {
	padding-left: 100px;
}
.widget .posts-list .post-item h4 {
	clear: none;
	font-size: 107.1428%;
	font-weight: 300;
	line-height: 1.3em;
	margin-top: 4px;
	margin-bottom: 0;
	text-transform: none;
}
.widget .posts-list .post-item .post-meta {
	font-size: 92.8571%;
}

/*--------------Widget searchform--------------*/
.widget .searchform [type="text"],
.searchform [type="text"] {
	background: #f6f6f6;
	border: 1px solid transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;

	color: #999999;
	height: 50px;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
	padding: 0 15px;
	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}
.widget .searchform [type="text"]:focus,
.searchform [type="text"]:focus {
	background: #fff;
	border: 1px solid #666;
	outline: none;
	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}
.widget .searchform input[type="text"]:focus::-webkit-input-placeholder {
	color: #252525;
}
.widget .searchform input[type="text"]:focus:-moz-placeholder {
	color: #252525;
}
.widget .searchform input[type="text"]:focus::-moz-placeholder {
	color: #252525;
}
.widget .searchform input[type="text"]:focus:-ms-input-placeholder {
	color: #252525;
}
.widget .searchform button {
	display: none;
	background-color: none;
	padding: 0 15px;
	color: transparent;
	position: absolute;
	right: 0;
	top: 0;
	border:none; 
	width: 40px;
	height: 100%;
	font-size: 16px;
	text-transform: none;
}
.widget .searchform button:after {
	position: absolute;;
	content: '\f1c3';
	font-family: Material-Design-Iconic-Font;
	color: #3d3d3d;
	right: 15px;
	top: 0;
	line-height: 50px;
}
.widget .searchform button:after:hover i {
	color: #3f51b5;
}
/*--------------Widget RSS--------------*/
.widget_rss .rssSummary {
	color: #999;
}
.widget .rss-date {
	display: block;
	font-size: 85%;
}
/*--------------Widget nav menu--------------*/
.widget_nav_menu li ul {
	margin-left: 1.5em;
}
.widget_nav_menu li.menu-item-has-children > a {
	position: relative;
}
.widget_nav_menu li.menu-item-has-children > a:after {
	content: '\35';
	color: #000;
	font-family: "ElegantIcons";
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: -27px;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);

	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;

	z-index: -1;
}
.widget_nav_menu li.menu-item-has-children.active > a:after {
	transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-webkit-transform: translateY(-50%) rotate(90deg);

	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.widget_nav_menu li.menu-item-has-children:hover > a:after {
	color: #999999;
}
.widget_nav_menu ul li {
	margin-bottom: 0;
	padding-bottom: 0;
}
.widget_nav_menu ul li a {
	color: #000;
	font-family: 'Montserrat';
	line-height: 256.384%;
}
.widget_nav_menu ul li a:hover {
	color: #999;
}
.widget_nav_menu ul li.current-menu-item a {
	color: #999999;
}
.widget_nav_menu div > ul > li > a {
	font-size: 17px;
	text-transform: uppercase;
}
.widget_nav_menu li.menu-item-has-children {
	cursor: pointer;
}
.widget_nav_menu li.menu-item-has-children ul {
	display: none;
}
/*--------------------------------------------------------------
	Search page
--------------------------------------------------------------*/
body.search .k2t-main .searchform .form-group input {
	width: 80%;
}
body.search .k2t-main .searchform .form-group button {
	background: #232323;
	color: #fff;
	height: 50px;
	line-height: 50px;
	width: 20%;
}

/*--------------------------------------------------------------
	Footer
--------------------------------------------------------------*/
.k2t-footer .k2t-wrap {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding-top: 56px;
	padding-bottom: 54px;
}
.k2t-footer .k2t-bottom .k2t-row > div:first-child,
.k2t-footer .k2t-bottom .k2t-row > div:first-child > aside{
	padding-left: 0;
	padding-right: 15px;
}
.k2t-footer .k2t-bottom .k2t-row > div:last-child,
.k2t-footer .k2t-bottom .k2t-row > div:last-child > aside {
	padding-right: 0;
	padding-left: 15px;
}
.k2t-footer .k2t-bottom {
	position: relative;
}
.k2t-footer .k2t-wrap .k2t-row {
	display: table;
	margin: 0;
	width: 100%;
}

.k2t-footer .k2t-wrap .widget ul li {
	padding: 0;
	margin: 0;
}
.k2t-footer .k2t-wrap .k2t-row > div {
}
.k2t-footer aside {
	padding: 15px 15px 0;
}
.k2t-footer .social li a {
	color: #ccc;
}
.k2t-footer .social li a:hover {
	color: #000;
}
.k2t-footer .k2t-wrap .widget {
	color: #999;
	letter-spacing: 0.025em;
}
.p-with-icon {
	padding-left: 34px;
	position: relative;
}
.p-with-icon span {
	font-size: 16px;
	position: absolute;
	top: 8px;
	left: 0;
}
/*
---------Social-----------
*/
.k2t-footer .social li a {
	color: #cccccc;
}
.k2t-footer .social li a:hover {
	color: #000;
}
/*
---------Mail Chimp-----------
*/
input:-moz-placeholder{color:red}
input:-ms-input-placeholder{color:red}

.k2t-footer .mc4wp-form label { 
	font-weight: 400;
	line-height: 1.75;
	margin-bottom: 25px;
	color: red;
}
.k2t-footer .mc4wp-form label {
	display: none;
}
.k2t-footer .mc4wp-form input[type=email] {
	color: #cccccc;
	height: 45px;
	line-height: 45px;
	margin-bottom: 20px;
	padding: 0px 49px 0 20px;
	width: 100%;
}
.k2t-footer .mc4wp-form > p:last-child {
	position: relative;
}

.k2t-footer .mc4wp-form .subscribe-submit {
	position: relative;
}
.k2t-footer .mc4wp-form input[type=email]::-webkit-input-placeholder {
	color: rgba(255,255,255,0.2);
}
.k2t-footer .mc4wp-form input[type=email]:focus::-webkit-input-placeholder {
	color: #fff;
}

/* Firefox < 19 */
.k2t-footer .mc4wp-form input[type=email]:-moz-placeholder {
	color: rgba(255,255,255,0.2);
}
.k2t-footer .mc4wp-form input[type=email]:focus:-moz-placeholder {
	color: #fff;
}

/* Firefox > 19 */
.k2t-footer .mc4wp-form input[type=email]::-moz-placeholder {
	color: rgba(255,255,255,0.2);
}
.k2t-footer .mc4wp-form input[type=email]:focus::-moz-placeholder {
	color: #fff;
}

/* Internet Explorer 10 */
.k2t-footer .mc4wp-form input[type=email]:-ms-input-placeholder {
	color: rgba(255,255,255,0.2);
}
.k2t-footer .mc4wp-form input[type=email]:focus:-ms-input-placeholder {
	color: #fff;
}
.mc4wp-form [type=submit] {
	background: #000;
	padding: 0;
	position: absolute;
	top: -76px;
	right: 0;
	height: 46px;
	line-height: 45px;
	width: 49px;
}
.mc4wp-form input[type=submit]:hover {
	background: #303f9f;
}

.k2t-info {
	position: relative;
	font-size: 85%;
	color: #c2c2c2;
	text-transform: uppercase;
	line-height: 1.7;
}
.k2t-info a {
	color: #c2c2c2;
}
.k2t-info p {
	margin-bottom: 0;
}
.k2t-info .row > div {
	float: left;
}
.k2t-info .widget_nav_menu {
	text-align: right;
}

.k2t-info .widget_nav_menu ul li {
	display: inline-block;
	padding: 0 12px;
	margin: 0;
	line-height: 1;
	border-left: 1px solid #c2c2c2;
}
.k2t-info .widget_nav_menu ul li:first-child {
	border: 0;
}
.k2t-info .widget_nav_menu ul li a {
	color:#c2c2c2; 
}
.k2t-info .widget_nav_menu ul li a:hover {
	color: #3f51b5;
}
.k2t-btt {
	background: rgba(0, 0, 0,0.3);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	display: block;
	font-size: 18px;
	font-weight: 700;
	position: fixed;
	right: 45px;
	bottom: 50px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	z-index: 999;
	transition:         all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
	text-align: center;
}
.k2t-btt span {
	color: #fff;
	font-weight: bold;
	line-height: 30px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.k2t-btt:hover {
	background: rgba(0, 0, 0,1);
	width: 50px;
	height: 50px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.k2t-btt:hover span {
	line-height: 50px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
/*--------------------------------------------------------------
Contact Page
--------------------------------------------------------------*/
.contact-info {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	font-size: 115%;
}
.contact-info div {
	color: #636363;
}
.contact-info div i {
	margin-right: 12px;
}
.contact-info a {
	color: #636363;
}
.contact-info a:hover {
	color: #3f51b5;
}
.contact-info .vc_icon_element.vc_icon_element-outer {
	display: inline-block;
	margin: 18px 18px 0 0;
}
.contact-info .vc_icon_element.vc_icon_element-outer:last-child {
	margin-right: 0;
}
.contact-info .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
	width: 20px;
	height: 20px;
	border: 0;
}
.contact-info .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}
.contact-info .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner:hover .vc_icon_element-icon:before {
	color: #3f51b5!important;
}
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	color: #ccc;
}
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner:hover .vc_icon_element-icon {
	color: #3f51b5!important;
}
/*--------------------------------------------------------------
	Contact Form 7
--------------------------------------------------------------*/
.wpcf7 p {
	clear: both;
}
.wpcf7 .one-third {
	width: 32%;
	float: left;
	clear: none;
	margin-right: 2%;
}
.wpcf7 p.one-third:nth-child(3) {
	margin-right: 0;
	float: right;
}
.wpcf7 input,
.wpcf7 textarea {
	width: 100%;
	background: transparent;
	border: 0;
	color: #767676;
	font-weight: 300;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
	border: 1px solid #ededed;
}
.wpcf7 #commentform input[type="submit"] {
	background: #3f51b5 none repeat scroll 0 0;
	border: medium none;
	border-radius: 3px;
	color: #fff;
	font-weight: 300;
	height: 70px;
	line-height: 70px;
	margin: 0;
	padding: 0 60px;
	text-transform: uppercase;
	width: auto;
	margin-top: 30px;
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.2); 
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	-ms-box-shadow: 0 3px 5px rgba(0,0,0,.2); 
	box-shadow: 0 3px 5px rgba(0,0,0,.2); 
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpcf7 #commentform input[type="submit"]:hover {
	z-index: 9999;
	-webkit-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	-moz-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	-ms-box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
	box-shadow: 0 15px 30px rgba(0,0,0,.1); /* drop shadow */
}

/*--------------------------------------------------------------
	Newsletter
--------------------------------------------------------------*/
.newsletter table,
.newsletter th,
.newsletter td {
	padding: 0;
	border: 0;
}
.newsletter th {
	display: none;
}
.newsletter tbody > tr {
	float: left
}
.newsletter .newsletter-email {
	width: 386px;
	margin-right: 20px;
	border: 0;
}
.newsletter .newsletter-submit {
	background: #972e37;
	border: 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.newsletter .newsletter-submit:hover {
	background: #7a1019;
}
.widget .newsletter form {
	position: relative;
}
.widget .newsletter .newsletter-email {
	width: 100%;
	border: 1px solid #ededed;
	padding: 0 40px 0 15px;
}
.widget .newsletter .newsletter-submit {
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	text-indent: -999em;
}
.widget .newsletter form > p:last-child {
	width: 0;
	height: 0;
}
.widget .newsletter form > p:last-child:before {
	content: "\f0e0";
	position: absolute;
	font-family: FontAwesome;
	top: 12px;
	right: 15px;
	color: #ccc;
}

/*--------------------------------------------------------------
	Social network
--------------------------------------------------------------*/
.share-title {
	color: #000;
	font-family: 'Montserrat';
	font-size: 85.7142%;
	font-weight: bold;
	text-transform: uppercase;
}
.k2t-social-share {
	display: inline-block;
}
.k2t-social-share span {
	display: none;
}
.k2t-social-share .social li a {
	color: #999;
	font-size: 100%;
}
.k2t-social-share .social li a:hover {
	color: #000;
}
.social li {
	list-style: none;
	display: inline-block;
	margin-left: 2px;
}
.social li a {
	border-radius:         2px;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;

	color: #000;
	display: block;
	font-size: 18px;
	height: 32px;
	width: 32px;
	line-height: 32px;
	position: relative;
	text-align: center;
}
.social li a:hover {
	color: #999999;
}

/*-----------------Social Widget-------------------------------*/


/*--------------------------------------------------------------
	Ultimate WP
--------------------------------------------------------------*/
#uwpqsf_id {
	border: 0;
	background: url('../img/icons/search.png') no-repeat 15px center;
	padding-left: 80px;
	display: inline-block;
	width: 100%;
}
#uwpqsf_id .uwpqsf_class {
	display: inline-block;
	width: 100%;
	max-width: 220px;
	margin-right: 20px;
	float: left;
	clear: none;
	position: relative;
}
#uwpqsf_id .uwpqsf_class[class*="tax-select-"]:after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	width: 20px;
	height: 41px;
	background: #fff;
	right: -1px;
	top: 7px;
	border-radius: 1px;
	line-height: 41px;
}
#uwpqsf_id .uwpqsf_submit {
	max-width: 100px;
	margin-top: 6px;
	margin-right: 0
}
#uwpqsf_id .uwpqsf_class input,
#uwpqsf_id .uwpqsf_class select {
	height: 43px;
	width: 100%;
	padding: 0 15px;
	color: #989898;
	border-color: #dfdfdf;
	border-radius: 2px;
	font-size: 85%;
	background: #fff;
}
#uwpqsf_id .uwpqsf_class select { 
	padding: 0 0 0 15px;
	border: none;
	box-shadow: none;
}
#uwpqsf_id .uwpqsf_class input {
	margin-top: 6px;
}
.uform_title,
#uwpqsf_id label.uwpqsf_class {
	display: none;
}
#uwpqsf_id .uwpqsf_class input#uwpqsf_id_btn {
	color: #fff;
	margin-top: 0;
	height: 42px;
	background: #434343;
}
#uwpqsf_id .uwpqsf_class input#uwpqsf_id_btn:hover {
	background: #3f51b5;
}
.uwpqsf_class > span[class*="taxolabel-"],
.uwpqsf_class > span[class*="cmflabel-"] {
	padding: 3px;
}

/*--------------------------------------------------------------
	Extra shortcodes
--------------------------------------------------------------*/
/* Instagram */
.null-instagram-feed {
	overflow: hidden;
}
.null-instagram-feed ul.instagram-pics {
	margin: -5px -10px;
}
.null-instagram-feed ul li {
	float: left;
	width: 25%;
	padding: 5px;
	margin: 0;
}
.null-instagram-feed ul li a {
	border: 0;
	padding: 0;
}
.null-instagram-feed ul li:before {
	display: none;
}
.null-instagram-feed ul li img {
	float: left;
	width: 100%;
	height: auto;
	padding: 0;
}
.null-instagram-feed ul li:hover a {
	transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

/*--------------------------------------------------------------
	Offcanvas Sidebar
--------------------------------------------------------------*/
.open-sidebar {
	height: 15px;
	width: 15px;
	z-index: 100;
	position: relative;
	display: inline-block;
	margin: 0px 10px 0;
}
.open-sidebar:hover .inner,
.open-sidebar:hover .inner:before,
.open-sidebar:hover .inner:after {
	background-color: #000;
}
.open-sidebar .inner,
.open-sidebar .inner:before,
.open-sidebar .inner:after {
	background-color: #000;
	content: "";
	display: block;
	height: 3px;
	width: 28px;
	-webkit-transition: all .5s ease;
	-moz-transition:    all .5s ease;
	-ms-transition:     all .5s ease;
	-o-transition:      all .5s ease;
	transition:         all .5s ease;
}
.open-sidebar .inner {
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform:    translate(-50%, -50%);
	-ms-transform:     translate(-50%, -50%);
	-o-transform:      translate(-50%, -50%);
	transform:         translate(-50%, -50%);
}
.open-sidebar .inner:before {
	margin-top: -7px;
	position: absolute;
}
.open-sidebar .inner:after {
	margin-top: 7px;
	position: absolute;
}
.open-sidebar.close-sidebar .inner {
	background-color: transparent !important;
	left: 54%;
}
.open-sidebar.close-sidebar .inner::before, .open-sidebar.close-sidebar .inner::after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: 0 50% 0;
	-o-transform-origin: 0 50% 0;
	-ms-transform-origin: 0 50% 0;
	-moz-transform-origin: 0 50% 0;
	-webkit-transform-origin: 0 50% 0;
}
.open-sidebar.close-sidebar .inner::after {
	transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.offcanvas-left #close-canvas {
	right: -120px;
}
.offcanvas-right #close-canvas {
	left: -120px;
}
#close-canvas {
	background: #3f51b5 none repeat scroll 0 0;
	border-radius: 100%;
	color: #fff;
	font-size: 220%;
	height: 50px;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 122px;
	width: 50px;
	margin: 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.admin-bar #close-canvas {
	top: 157px;
}
.scroll-dow .offcanvas-sidebar #close-canvas {
	opacity: 0;
}
.scroll-dow.offcanvas-open .offcanvas-sidebar #close-canvas,
.header-sticky .offcanvas-sidebar #close-canvas {
	top: 74px;
	opacity: 1;
}
.admin-bar.header-sticky .offcanvas-sidebar #close-canvas {
	top: 106px;
} 
.offcanvas-right .offcanvas-sidebar.is-open #close-canvas {
	left: -25px;
}
.offcanvas-left .offcanvas-sidebar.is-open #close-canvas {
	right: -25px;
}
#close-canvas.open-sidebar .inner,
#close-canvas.open-sidebar .inner:before,
#close-canvas.open-sidebar .inner:after { 
	background: #fff;
}

	/* Offcanvas sidebar widgets */
.offcanvas-type-default {
	position: relative;
}
.offcanvas-type-default,
.offcanvas-sidebar,
.k2t-header-m {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition:    all .4s ease-in-out;
	transition:         all .4s ease-in-out;
}
.offcanvas-right {
	right: 0;
}
.offcanvas-left {
	left: 0;
}
.offcanvas-sidebar {
	background: #ffffff;
	box-shadow: 0 15px 30px rgba(0,0,0,.5); /* drop shadow */
	-webkit-box-shadow: 0 15px 30px rgba(0,0,0,.5); /* drop shadow */
	-moz-box-shadow: 0 15px 30px rgba(0,0,0,.5); /* drop shadow */
	-ms-box-shadow: 0 15px 30px rgba(0,0,0,.5); /* drop shadow */

	font-size: 100%;
	line-height: 20px;
	padding-left: 15px;
	padding-right: 15px;
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100%;
	min-height: 100%;
	width: 350px;
	overflow-y: auto;
	z-index: 10001;
}
.offcanvas-sidebar .k2t-sidebar {
	width: 100% !important;
	margin-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
}
.offcanvas-sidebar .btn-close {
	cursor: pointer;
	display: inline-block;
	position: absolute;
	top: 60px;
	right: 25px;
	height: 22px;
	width: 22px;
}
.offcanvas-sidebar .btn-close:hover:after,
.offcanvas-sidebar .btn-close:hover:before {
	background-color: #666;
}
.offcanvas-sidebar .btn-close:after,
.offcanvas-sidebar .btn-close:before {
	content: '';
	background-color: #000;
	position: absolute;
	width: 31px;
	height: 2px;
}
.offcanvas-sidebar .btn-close:after {
	top: 9px;
	right: -5px;
	transform: rotate(45deg);
}
.offcanvas-sidebar .btn-close:before {
	top: 9px;
	left: -5px;
	transform: rotate(-45deg);
}
.admin-bar .offcanvas-sidebar .k2t-sidebar {
	margin-top: 62px;
}
.offcanvas-right .offcanvas-sidebar {
	right: -400px;
}
.offcanvas-right .offcanvas-sidebar.is-open {
	right: 0;
	left: auto;
}
.offcanvas-left .offcanvas-sidebar {
	left: -400px;
}
.offcanvas-left .offcanvas-sidebar.is-open {
	left: 0;
	right: auto;
}

/*--------------------------------------------------------------
	Background Image Animation
--------------------------------------------------------------*/
@-webkit-keyframes animatedBackground_ltr {
	0% { background-position: left; }
	100% { background-position: right; }
}
@-moz-keyframes animatedBackground_ltr {
	0% { background-position: left; }
	100% { background-position: right; }
}
@keyframes animatedBackground_ltr {
	0% { background-position: left; }
	100% { background-position: right; }
}
.left_to_right {
	animation: 60s linear 0s normal none infinite animatedBackground_ltr;
	-o-animation: 60s linear 0s normal none infinite animatedBackground_ltr;
	-ms-animation: 60s linear 0s normal none infinite animatedBackground_ltr;
	-moz-animation: 60s linear 0s normal none infinite animatedBackground_ltr;
	-webkit-animation: 60s linear 0s normal none infinite animatedBackground_ltr;
}
@-webkit-keyframes animatedBackground_rtl {
	0% { background-position: right; }
	100% { background-position: left; }
}
@-moz-keyframes animatedBackground_rtl {
	0% { background-position: right; }
	100% { background-position: left; }
}
@keyframes animatedBackground_rtl {
	0% { background-position: right; }
	100% { background-position: left; }
}
.right_to_left {
	animation: 60s linear 0s normal none infinite animatedBackground_rtl;
	-o-animation: 60s linear 0s normal none infinite animatedBackground_rtl;
	-ms-animation: 60s linear 0s normal none infinite animatedBackground_rtl;
	-moz-animation: 60s linear 0s normal none infinite animatedBackground_rtl;
	-webkit-animation: 60s linear 0s normal none infinite animatedBackground_rtl;
}
@-webkit-keyframes animatedBackground_ttb {
	0% { background-position: top; }
	100% { background-position: bottom; }
}
@-moz-keyframes animatedBackground_ttb {
	0% { background-position: top; }
	100% { background-position: bottom; }
}
@keyframes animatedBackground_ttb {
	0% { background-position: top; }
	100% { background-position: bottom; }
}
.top_to_bottom {
	animation: 60s linear 0s normal none infinite animatedBackground_ttb;
	-o-animation: 60s linear 0s normal none infinite animatedBackground_ttb;
	-ms-animation: 60s linear 0s normal none infinite animatedBackground_ttb;
	-moz-animation: 60s linear 0s normal none infinite animatedBackground_ttb;
	-webkit-animation: 60s linear 0s normal none infinite animatedBackground_ttb;
}
@-webkit-keyframes animatedBackground_btt {
	0% { background-position: bottom; }
	100% { background-position: top; }
}
@-moz-keyframes animatedBackground_btt {
	0% { background-position: bottom; }
	100% { background-position: top; }
}
@keyframes animatedBackground_btt {
	0% { background-position: bottom; }
	100% { background-position: top; }
}
.bottom_to_top {
	animation: 60s linear 0s normal none infinite animatedBackground_btt;
	-o-animation: 60s linear 0s normal none infinite animatedBackground_btt;
	-ms-animation: 60s linear 0s normal none infinite animatedBackground_btt;
	-moz-animation: 60s linear 0s normal none infinite animatedBackground_btt;
	-webkit-animation: 60s linear 0s normal none infinite animatedBackground_btt;
}

/*--------------------------------------------------------------
	VC Override
--------------------------------------------------------------*/
.wpb_alert.wpb_content_element {
	color: #fff;
	margin-bottom: 5px;
	padding: 8px 10px 8px 15px;
	position: relative;
	z-index: 0;
	border: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.wpb_alert.wpb_content_element .messagebox_text {
	background: none;
	padding: 0;
	display: table;
	width: 100%;
}
.wpb_alert.wpb_content_element .messagebox_text > * {
	display: table-cell;
	vertical-align: middle;
}
.wpb_alert.wpb_content_element .messagebox_text span:first-child {
	width: 43px;
}
.wpb_alert.wpb_content_element .messagebox_text i {
	font-size: 200%;
}
article.wpb_single_image {
	margin-bottom: 20px;
}

/* Background Transparent
---------------------------- */
.wpb_alert.wpb_content_element.bg-transparent {
	background: none !important;
	border-width: 1px;
	border-style: solid;
}

/* Alert Info
---------------------------- */
.wpb_alert.wpb_content_element.wpb_alert-info {
	background-color: #06C5AC;
}

/* Alert Warning
---------------------------- */
.wpb_alert.wpb_content_element.wpb_alert-warning {
	background-color: #FBAF5D;
}

/* Alert Success
---------------------------- */
.wpb_alert.wpb_content_element.wpb_alert-success {
	background-color: #8DC63F;
}

/* Alert Danger
---------------------------- */
.wpb_alert.wpb_content_element.wpb_alert-danger {
	background-color: #ed1c24;
}

/* Close action
---------------------------- */
.wpb_alert.wpb_content_element.has-close {
	padding-right: 35px;
}
.wpb_alert .close {
	height: 9px;
	position: absolute;
	right: 10px;
	top: 0px;
	width: 9px;
	color: #fff;
	font-size: 140%;
	cursor: pointer;
}

/*--------------------------------------------------------------
	Three Plguin
--------------------------------------------------------------*/

/*--------------------------------------------------------------
	Revolution slider
--------------------------------------------------------------*/
.rev_slider_wrapper .tp-leftarrow {
	background-color: transparent!important;
	top: initial !important;
	left: initial !important; 
	bottom: 24px;
	right: 200px;
}
.rev_slider_wrapper .tp-leftarrow:before {
	display: none;
}
.rev_slider_wrapper .tp-leftarrow:after{
	content: 'Prev';
}
.rev_slider_wrapper .tp-rightarrow {
	background-color: transparent!important;
	top: initial !important;
	left: initial !important; 
	bottom: 24px;
	right: 50px;
}
.rev_slider_wrapper .tp-rightarrow:before {
	display: none;
}
.rev_slider_wrapper .tp-rightarrow:after {
	content: 'Next';
}
.rev_slider_wrapper .tp-leftarrow:after,
.rev_slider_wrapper .tp-rightarrow:after {
	color: #000;
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
}
.rev_slider_wrapper .tp-leftarrow:hover:after,
.rev_slider_wrapper .tp-rightarrow:hover:after {
	color: #999;
}
.revolution-button:hover {
	border-color: rgba( 255, 255, 255, 1 );
}
.revolution-button.orange {
	color: #3f51b5 !important;
	border-color: #3f51b5;
}
.revolution-button.orange:hover {
	color: #02b98d !important;
	border-color: #02b98d;
}

/*rev new version*/
.rev_slider .custom .tp-bullet{
	width: 70px!important;
	height: 5px!important;
	border: 0!important;
	background: rgba(255,255,255,0.3)!important;
}
.rev_slider .custom .tp-bullet:hover, 
.rev_slider .custom .tp-bullet.selected {
	border: 0!important;
	background: #fff!important;
}

/* home 2 slider */
.home2-slider p {
	color: ;
	font-family: 'Montserrat';
	font-weight: bold;
}
.home2-slider .droi-serif {
	font-family: 'Droi Serif';
	font-weight: normal;
}
/*--------------------------------------------------------------
	DARK BACKGROUND
--------------------------------------------------------------*/
.background-dark h1,
.background-dark h2,
.background-dark h3,
.background-dark h4,
.background-dark h5 {
	color: #fff !important;
}
.background-dark .k2t-heading.has-border.short_line .text .h: :before {
	background: #fff;
}

/*--------------------------------------------------------------
	Light footer
--------------------------------------------------------------*/
.light-footer .k2t-footer .k2t-bottom,
.light-footer .k2t-info {
	background-color: #fff;
}
.light-footer .k2t-footer .k2t-bottom, .light-footer .k2t-footer .k2t-bottom *,
.light-footer .k2t-footer .k2t-wrap .k2t-row > div,
.light-footer .k2t-footer .k2t-wrap .k2t-row > div > * {
	border-color: #d5e3e8;
}
.light-footer .k2t-footer .k2t-bottom .widget-title {
	color: #3f51b5;
}

/*--------------------------------------------------------------
	Custom page css
--------------------------------------------------------------*/
.custom-list-a ul {
	list-style-type: none;
	padding-left: 0;
}
.custom-list-a ul > li > a:before {
	content: '•';
	margin-right: 10px;
}

.custom_search .widget .searchform input[type="text"] {
	background-color: #fff;
	border-radius: 3px;
	height: 70px;
	font-size: 16px;
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.2); 
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	-ms-box-shadow: 0 3px 5px rgba(0,0,0,.2); 
	box-shadow: 0 3px 5px rgba(0,0,0,.2); 
}
.custom_search .widget .searchform button:after {
	font-size: 28px;
	color: #3f51b5;
	top: 11px;
	right: 30px;
}

.fa-vimeo:before {content:"\f194" !important}

/* vc */
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid > li {
	margin-bottom: 0 !important;
}


