/* Reset
---------------------------------------------------------------------------------------- */
p{
	clear: both;
}

/* Image hover
---------------------------------------------------------------------------------------- */
.dark .image-link, .light .image-link{
	position:relative;
	display:inline-block;
	overflow: hidden;
	max-width: 100%;
}
.dark .image-link:after{
	position:absolute;
	content:'';
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: black;
	opacity:0;
	z-index:1;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.dark .image-link:before {
	font-family: FontAwesome;
	content:'\f065';
	position:absolute;
	display:inline-block;
	border-radius:50%;
	text-align:center;
	line-height:40px;
	top:-60px;
	left:calc(50% - 20px);
	z-index:2;
	color: #fff;
    display: inline;
    font-size: 16px;
    height: 40px;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.dark .link-to.image-link:before {
	content: '\f0c1';
}
.dark .image-link:hover:after {
	opacity:0.7;
}
.dark .image-link:hover:before {
	top:calc(50% - 20px);
}

	/* Hover Style: Light  */
.light .image-link:after{
	position:absolute;
	content:'';
	width:calc(100% - 20px);
	height:calc(100% - 20px);
	top:10px;
	left:10px;
	background: #fff;
	opacity:0;
	z-index:1;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.light .image-link:before {
	font-family: FontAwesome;
	content:'\f065';
	position:absolute;
	display:inline-block;
	border-radius:50%;
	text-align:center;
	line-height:40px;
	top:-60px;
	left:calc(50% - 20px);
	z-index:2;
	color: #3d3d3d;
    display: inline;
    font-size: 16px;
    height: 40px;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.light .image-link:hover:after {
	opacity:0.7;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
}
.light .image-link:hover:before {
	top:calc(50% - 20px);
}

/* Popular CSS
---------------------------------------------------------------------------------------- */
.more-link {
	text-transform: uppercase;
	font-weight: 500;
	color: #ffbe2a;
	font-size: 80%;
	display: block;
	width: 100%;
}

/* ALIGN
---------------------------------------------------------------------------------------- */
.k2t-align-right {
	text-align:right;
}
.k2t-align-left {
	text-align:left;
}
.k2t-align-center {
	text-align:center;
}		

/* COLUMN
---------------------------------------------------------------------------------------- */
.container {
	max-width: 1170px;
	width: 100%;
	margin: auto;
}

/* HEADING
---------------------------------------------------------------------------------------- */
.k2t-heading {
	display:block;
	clear:both;
	position: relative;
}
.k2t-heading .k2t-heading-inner {
	display:inline-block;
}	
.k2t-heading .h {
	margin-bottom:0;
	font-weight: 600;
}
.k2t-heading .h a {
	color:inherit;
	text-decoration:none;
}	
.k2t-heading .h span{
	font-size: 23px;
	font-weight: 500;
	line-height: 42px;
}
.k2t-heading .subtitle {
	font-weight:normal;
	font-family:"Open Sans", sans-serif;
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:12px;
	margin-top:6px;
	margin-bottom:0;
}
	
	/* align */
.k2t-heading.align-center {
	text-align:center;
}
.k2t-heading.align-right {
	text-align:right;
}
	
	/* icon 
	---------------------------- */
.k2t-heading .heading-icon.heading-icon-top {
	margin-bottom:20px;
}
.k2t-heading .heading-icon.heading-icon-left {
	margin-right:20px;
	float:left;
}		
.k2t-heading .heading-icon.heading-icon-right {
	margin-left:20px;
	float:right;
}
.k2t-heading .heading-icon.heading-icon-bottom {
	margin-top:20px;
}
.k2t-heading .text {
	overflow:hidden;
}
.k2t-heading .heading-icon.type-icon {
	font-size:32px;
	display:inline-block;
	width:80px;
	height:80px;
	background:#ffbe2a;
	color:#fff;
	text-align:center;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	position:relative;
	opacity:0.5;
}
.k2t-heading .heading-icon.type-icon i {
	line-height:80px;
	position:relative;
	z-index:12;
}	
.k2t-heading .heading-icon.type-icon:after {
	content:"";
	position:absolute;
	width:92px;
	height:92px;
	background:#ffbe2a;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	top:-6px;
	left:-6px;
	opacity:0.25;
	z-index:10;
}
.k2t-heading .heading-icon.type-icon:before {
	position:absolute;
	z-index:15;
	content:"";
	left:50%;
	margin-left:-5px;
	bottom:-10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 12px 0 0;
	border-color: #ffbe2a transparent transparent transparent;
}
		/* align left & right */
.k2t-heading .heading-icon.type-icon.heading-icon-left,
.k2t-heading .heading-icon.type-icon.heading-icon-right {
	font-size:18px;
	width:60px;
	height:60px;
}			
.k2t-heading .heading-icon.type-icon.heading-icon-left i,
.k2t-heading .heading-icon.type-icon.heading-icon-right i {
	line-height:60px;
}
.k2t-heading .heading-icon.type-icon.heading-icon-left:after,
.k2t-heading .heading-icon.type-icon.heading-icon-right:after {
	width:72px;
	height:72px;
}
	
	/* left & right + no subtitle */
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-left,
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-right {
	font-size:16px;
	width:50px;
	height:50px;
}			
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-left i,
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-right i {
	line-height:50px;
}
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-left:after,
.k2t-heading.no-subtitle .heading-icon.type-icon.heading-icon-right:after {
	width:62px;
	height:62px;
}	
	
	/* has border + Three dotted (default)
	---------------------------- */
.k2t-heading.has-border.three_dotted{
	margin-bottom: 8px;
}
.k2t-heading.has-border.three_dotted .k2t-heading-inner {
	display:block;
	overflow:hidden;
}	
.k2t-heading.has-border.three_dotted .text .h {
	position:relative;
	display:inline-block;
}
.k2t-heading.has-border.align-right.three_dotted .text .h:before,
.k2t-heading.has-border.align-left.three_dotted .text .h:after,
.k2t-heading.has-border.align-center.three_dotted .text .h:before,
.k2t-heading.has-border.align-center.three_dotted .text .h:after {
	position:absolute;
	content:"";
	width:9999px;
	height:7px;
	top:50%;
	left:100%;
	margin-top:-3px;
	margin-left:10px;
	background: url(../images/heading-border-dotted.html) repeat-x;
}
.k2t-heading.has-border.align-right.three_dotted .text .h:before,
.k2t-heading.has-border.align-center.three_dotted .text .h:before {
	left:auto;
	right:100%;
	margin-left:auto;
	margin-right:10px;
}

	/* has border + Short line
	---------------------------- */	
.k2t-heading.short_line{
	margin-bottom: 18px;
}
.k2t-heading.has-border.short_line .text .h:before{
	background: #9e9e9e;
	height: 4px;
	width: 30px;
	display: inline-block;
	content: "";
	position: absolute;
	bottom: 0;
}
.k2t-heading.has-border.align-left.short_line .text .h:before{
	left: 0;
}
.k2t-heading.has-border.align-center.short_line .text .h:before{
	left: 50%;
	margin-left: -15px;
}
.k2t-heading.has-border.align-right.short_line .text .h:before{
	right: 0;
}
	
	/* has border + Bottom icon
	---------------------------- */
.k2t-heading.bottom_icon{
	margin-bottom: 6px;
}
.k2t-heading.bottom_icon .text{
	text-align: center;
}
.k2t-heading.bottom_icon .h{
	margin-bottom: -5px;
}
.k2t-heading.has-border.bottom_icon .has-boder-style {
	width: 180px;
	display: inline-block;
	position: relative;
}
.k2t-heading.has-border.bottom_icon .has-boder-style span{
	display: table-cell;
    padding: 0 10px;
    white-space: pre;
}
.k2t-heading.has-border.bottom_icon .has-boder-style span:first-child,
.k2t-heading.has-border.bottom_icon .has-boder-style span:last-child{
	display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0;
}
.k2t-heading.has-border.bottom_icon .has-boder-style span i{
	margin-top: 11px;
}
.k2t-heading.has-border.bottom_icon .has-boder-style span:first-child i,
.k2t-heading.has-border.bottom_icon .has-boder-style span:last-child i{
	background: 0 0 #cccccc;
    display: inline-block;
    height: 1px;
    width: 100%;
}
	
	/* has border + Heading
	---------------------------- */
.k2t-heading.has-border.heading {
	margin-bottom: 18px;
}
.k2t-heading.has-border.heading .h span{
	padding: 0 30px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	display: inline-block;
}
.k2t-heading.has-border.heading .h:before, .k2t-heading.heading .h:after{
	border-top: 1px solid #cccccc;
    content: "";
    display: inline-block;
    height: 9px;
    margin-top: 17px;
    width: 60px;
}
	
	/* has border + Boxed heading
	---------------------------- */
.k2t-heading.has-border.boxed_heading{
	margin-bottom: 11px;
}
.k2t-heading.has-border.boxed_heading .text{
	position: relative;
	overflow: inherit;
}
.k2t-heading.has-border.boxed_heading .h{
	border: 1px solid #cccccc;
	border-top: 0;
	padding: 8px 10px;
}
.k2t-heading.has-border.boxed_heading .has-boder-style{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: -19px;
	display: table;
}
.k2t-heading.has-border.boxed_heading .has-boder-style span{
	display: table-cell;
    padding: 0 10px;
    white-space: pre;
}
.k2t-heading.has-border.boxed_heading .has-boder-style span:first-child,
.k2t-heading.has-border.boxed_heading .has-boder-style span:last-child{
	display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0;
}
.k2t-heading.has-border.boxed_heading .has-boder-style span i{
	margin-top: 11px;
}
.k2t-heading.has-border.boxed_heading .has-boder-style span:first-child i,
.k2t-heading.has-border.boxed_heading .has-boder-style span:last-child i{
	background: 0 0 #cccccc;
    display: inline-block;
    height: 1px;
    width: 100%;
}

	/* has border + Bottom border
	---------------------------- */
.k2t-heading.has-border.bottom_border{
	border-bottom: 1px solid #dddddd;
	margin-bottom: 20px;
}

	/* has border + Line Through
	---------------------------- */
.k2t-heading.has-border.line_through{
	margin-bottom: 8px;
}
.k2t-heading.has-border.line_through .k2t-heading-inner {
	display:block;
	overflow:hidden;
}	
.k2t-heading.has-border.line_through .text .h {
	position:relative;
	display:inline-block;
}
.k2t-heading.has-border.align-right.line_through .text .h:before,
.k2t-heading.has-border.align-left.line_through .text .h:after,
.k2t-heading.has-border.align-center.line_through .text .h:before,
.k2t-heading.has-border.align-center.line_through .text .h:after {
	position:absolute;
	content:"";
	width:9999px;
	height:1px;
	top:50%;
	left:100%;
	margin-left:10px;
	background: #dddddd;
}
.k2t-heading.has-border.align-right.line_through .text .h:before,
.k2t-heading.has-border.align-center.line_through .text .h:before {
	left:auto;
	right:100%;
	margin-left:auto;
	margin-right:10px;
}

	/* has border + Double line
	---------------------------- */
.k2t-heading.has-border.double_line{
	margin-bottom: 8px;
}
.k2t-heading.has-border.double_line .k2t-heading-inner {
	display:block;
	overflow:hidden;
}	
.k2t-heading.has-border.double_line .text .h {
	position:relative;
	display:inline-block;
}
.k2t-heading.has-border.align-right.double_line .text .h:before,
.k2t-heading.has-border.align-left.double_line .text .h:after,
.k2t-heading.has-border.align-center.double_line .text .h:before,
.k2t-heading.has-border.align-center.double_line .text .h:after {
	border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    content: "";
    height: 5px;
    left: 100%;
    margin-left: 10px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 9999px;
}
.k2t-heading.has-border.align-right.double_line .text .h:before,
.k2t-heading.has-border.align-center.double_line .text .h:before {
	left:auto;
	right:100%;
	margin-left:auto;
	margin-right:10px;
}

	/* has border + Fat Line
	---------------------------- */
.k2t-heading.has-border.fat_line{
	margin-bottom: 8px;
}
.k2t-heading.has-border.fat_line .k2t-heading-inner {
	display:block;
	overflow:hidden;
}	
.k2t-heading.has-border.fat_line .text .h {
	position:relative;
	display:inline-block;
}
.k2t-heading.has-border.align-right.fat_line .text .h:before,
.k2t-heading.has-border.align-left.fat_line .text .h:after,
.k2t-heading.has-border.align-center.fat_line .text .h:before,
.k2t-heading.has-border.align-center.fat_line .text .h:after {
	background: #dddddd;
    content: "";
    height: 5px;
    left: 100%;
    margin-left: 10px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 9999px;
}
.k2t-heading.has-border.align-right.fat_line .text .h:before,
.k2t-heading.has-border.align-center.fat_line .text .h:before {
	left:auto;
	right:100%;
	margin-left:auto;
	margin-right:10px;
}

/* BUTTON
---------------------------------------------------------------------------------------- */
.k2t-button {
	display:inline-block;
	margin:0 20px 5px 0;
	vertical-align:bottom;
}
.k2t-button .button-text {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
		
	/* icon */
.k2t-button .button-icon-right .button-icon {
	margin: 0 -22px 0 15px;
	float: right;
}
.k2t-button .button-icon {
	color: #fff;
}
.k2t-button .btn-large .button-icon {
	font-size: 221%;
}
.k2t-button .btn-medium .button-icon {
	font-size: 190%;
	line-height: 190%;
}
.k2t-button .btn-small .button-icon {
	font-size: 158%;
}
.k2t-button .button-icon-left .button-icon {
	float: left;
	margin: 0 15px 0 -22px;
}
.k2t-button .btn-medium.button-icon-left .button-icon {
	margin-left: -6px;
}
.k2t-button .btn-small.button-icon-left .button-icon {
	margin-left: -5px;
    padding-right: 12px;
}
.k2t-button .btn-tiny.button-icon-left .button-icon {
	margin-left: -4px;
    padding-right: 10px;
}
.k2t-button .btn-medium.button-icon-right .button-icon {
	margin-right: -6px;
}
.k2t-button .btn-small.button-icon-right .button-icon {
	margin-right: -5px;
    padding-left: 12px;
}
.k2t-button .btn-tiny.button-icon-right .button-icon {
	margin-right: -4px;
    padding-left: 10px;
}
	/* align */
.k2t-button.align-center,
.k2t-button.align-right {
	text-align:center;
	display:block;
	margin-right:0;
}
.k2t-button.align-center .button-icon,
.k2t-button.align-right .button-icon {
	display:inline-block;
}
.k2t-button.align-right {
	text-align:right;
}
	
	/* fullwidth */
.k2t-button.button-fullwidth {
	display:block;
	float:none;
	text-align:center;
	margin-right:0;
}	
.k2t-button.button-fullwidth .k2t-btn {
	display:block;
}
 /* tinytext*/
.k2t-button.k2t-custom-big-btn a{
	font-size: 100%;
    height: 120px;
    letter-spacing: 2px;
    line-height: 120px;
    padding: 0 50px;
	 }
.k2t-button.k2t-custom-big-btn a:hover {
	background:#ffbe2a !important;
	}	 
/* CIRCLE BUTTON
---------------------------------------------------------------------------------------- */
.k2t-circle-button,
.k2t-circle-button:hover {
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	display:inline-block;
	width:80px;
	height:80px;
	line-height:80px;
	text-align:center;
	text-decoration:none;
	color:#fff;
	background:#ffbe2a;
	position:relative;
	overflow:hidden;
}
.k2t-circle-button span {
	display:block;
}	
.k2t-circle-button .button-text {
	position:relative;
	z-index:20;
	transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-moz-transition:all .5s cubic-bezier(.18,.96,.18,.96);
}		
.k2t-circle-button .button-icon {
	z-index:10;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	text-align:center;
	font-size:36px;
	opacity:0;
	transform:translateX(110%);
	-webkit-transform:translateX(110%);
	-moz-transform:translateX(110%);
	transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-moz-transition:all .5s cubic-bezier(.18,.96,.18,.96);
}
.k2t-circle-button .button-icon i {
	line-height:80px;
}
.k2t-circle-button:hover .button-text {
	transform:translateX(-110%);
	-moz-transform:translateX(-110%);
	-webkit-transform:translateX(-110%);
	opacity:0;
}
.k2t-circle-button:hover .button-icon {
	transform:translateX(0%);
	-moz-transform:translateX(0%);
	-webkit-transform:translateX(0%);
	opacity:1;
}	
	
/* DROPCAP
---------------------------------------------------------------------------------------- */
.k2t-dropcap {
	display:block;
	float:left;
	margin:6px 20px 6px 0;
	font-size:60px;
	line-height:1.25;
	text-align:center;
	font-family: 'PT Sans', sans-serif;
}
	
	/* style 2 */
.k2t-dropcap.style-2 {
	background:#ffbe2a;
	color:#fff;
	font-size:40px;
	width:60px;
	height:60px;	
	line-height:60px;
	position:relative;
	margin:6px 22px 14px 0;
}
.k2t-dropcap.style-2 i {
	line-height:60px;
}
	
	/* style 3 */
.k2t-dropcap.style-3 {
	border:1px solid;
	background:#fff;
	color:#ffbe2a;
	font-size:36px;
	width:60px;
	height:60px;	
	line-height:58px;
	position:relative;
	margin:6px 18px 6px 0;
}
.k2t-dropcap.style-3:before {
	z-index: 12;
	content: "";
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 12px 0 0;
	border-color: #ffbe2a transparent transparent transparent;
}
.k2t-dropcap.style-3:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 12px 12px;
	border-color: transparent transparent #fff transparent;
	z-index: 11;
}
.k2t-dropcap.style-3 i {
	line-height:60px;
}
	
	/* style 4 */
.k2t-dropcap.style-4 {
	background:#ffbe2a;
	color:#fff;
	font-size:40px;
	width:60px;
	height:60px;
	border-radius:100%;	
	-webkit-border-radius:100%;	
	-moz-border-radius:100%;	
	line-height:60px;
	position:relative;
	margin:6px 22px 14px 0;
}
.k2t-dropcap.style-4 i {
	line-height:60px;
}

	/* dropcap icon */
.k2t-dropcap.dropcap-icon {
	font-size:32px2;
}	
.k2t-dropcap.style-2.dropcap-icon,
.k2t-dropcap.style-3.dropcap-icon,
.k2t-dropcap.style-4.dropcap-icon {
	font-size:24px;
}
	
	/* dropcap image */
.k2t-dropcap.dropcap-image {
	margin:0 20px 6px 0;
}	
	
/* ICONBOX LIST
---------------------------------------------------------------------------------------- */
.k2t-iconbox-list {
	position:relative;
}
.k2t-iconbox-list ul {
	list-style:none;
	margin:0;
	padding:0;
}	
.k2t-iconbox-list li {
	margin:0;
	padding-bottom:60px;
	position:relative;
	float: left;
	width: 100%;
}
.k2t-iconbox-list li:hover .iconbox-list-icon {
	background: #636363;
}
.k2t-iconbox-list li .k2t-iconbox-list-inner {
	width: 50%;
}
.k2t-iconbox-list li:nth-child(2n+1) .k2t-iconbox-list-inner {
	float: right;
}		
.k2t-iconbox-list .iconbox-list-icon {
	display:block;
	width:80px;
	height:80px;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	font-size:32px;
	background:#ffffff;
	color:#ffbe2a;
	position:absolute;
	z-index:20;
	text-align:center;
	right: 50%;
	margin-right: -40px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.k2t-iconbox-list .iconbox-list-text:before,
.k2t-iconbox-list .iconbox-list-text:after {
	content: "";
	position: absolute;
	top: 80px;
	left: 0;
	height: 100%;
	left: 50%;
	margin-left: -1px;
	bottom: 0;
	border: 1px solid #e6e6e6;
}
.k2t-iconbox-list li:first-child .iconbox-list-text:before,
.k2t-iconbox-list li:last-child .iconbox-list-text:before,
.k2t-iconbox-list li:last-child .iconbox-list-text:after {
	border: 0;
}
.k2t-iconbox-list .iconbox-list-icon i {
	line-height:80px;
}
.k2t-iconbox-list .iconbox-list-text {
	overflow:hidden;
	text-align: right;
	padding:30px 70px 0 0;
}
.k2t-iconbox-list li:nth-child(2n+1) .iconbox-list-text {
	text-align: left;
	padding-right: 0;
	padding-left: 70px;
	padding:30px 0 0 70px;
}
.k2t-iconbox-list .title {
	margin-bottom:10px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #4f4f4f;
	transition:all ease-in-out .3s;
	-moz-transition:all ease-in-out .3s;
	-ms-transition:all ease-in-out .3s;
	-webkit-transition:all ease-in-out .3s;
}
.k2t-iconbox-list:not(.style-3) li:hover .title {
	color: #ffbe2a;
}
	/* style 2 */
.k2t-iconbox-list.style-2 .title {
	margin-top: 38px;
}
.k2t-iconbox-list.style-2 .iconbox-list-icon {
	width: 96px;
	height: 96px;
	background: #fff;
	margin-right: -48px;
}
.k2t-iconbox-list.style-2 .iconbox-list-icon:before,
.k2t-iconbox-list.style-2 .iconbox-list-icon:after {
	content: "";
	position: absolute;
	top: 50%;
}
.k2t-iconbox-list.style-2 .iconbox-list-icon:before {
	width: 35px;
	height: 2px;
	margin-top: -1px;
	background: #e6e6e6;
	right: -37px;
}
.k2t-iconbox-list.style-2 .iconbox-list-icon:after {
	width: 8px;
	height: 8px;
	background: #e6e6e6;
	margin-top: -4px;
	right: -45px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.k2t-iconbox-list.style-2 li:nth-child(2n) .iconbox-list-icon:before {
	right: auto;
	left: -37px;
}
.k2t-iconbox-list.style-2 li:nth-child(2n) .iconbox-list-icon:after {
	right: auto;
	left: -45px;
}
.k2t-iconbox-list.style-2 .iconbox-list-text:before,
.k2t-iconbox-list.style-2 .iconbox-list-text:after {
	top: 0;
}
.k2t-iconbox-list.style-2 .iconbox-list-icon i,
.k2t-iconbox-list.style-3 .iconbox-list-icon i {
	width: 80px;
	height: 80px;
	color: #fff;
	background: #636363;
	margin-top: 6px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.k2t-iconbox-list.style-2 .iconbox-list-text {
	padding-right: 128px;
	padding-top:0;
}
.k2t-iconbox-list.style-2 li:nth-child(2n+1) .iconbox-list-text	{
	padding-left: 128px;
	padding-top:0;
}
.k2t-iconbox-list.style-2 li:hover .iconbox-list-icon,
.k2t-iconbox-list.style-3 li:hover .iconbox-list-icon {
	background: #fff;
	border-color: #ffbe2a;
}
.k2t-iconbox-list.style-2 li:hover .iconbox-list-icon i,
.k2t-iconbox-list.style-3 li:hover .iconbox-list-icon i {
	background: #ffbe2a;
}
.k2t-iconbox-list.style-3 li .k2t-iconbox-list-inner {
	width: 100%;
}
.k2t-iconbox-list.style-3 li:nth-child(2n+1) .k2t-iconbox-list-inner {
	float: none;
}
.k2t-iconbox-list.style-3 .iconbox-list-icon {
	position: inherit;
	float: left;
	width: 85px;
	height: 85px;
	background: #fff;
	border-radius:0;
}
.k2t-iconbox-list.style-3 .iconbox-list-icon i {
	width: 73px;
	height: 73px;
	margin-top: 5px;
	line-height:73px;
}
.k2t-iconbox-list.style-3 .iconbox-list-text {
	text-align: left;
	padding: 0 0 0 70px;
}
.k2t-iconbox-list.style-3 .iconbox-list-text:before,
.k2t-iconbox-list.style-3 .iconbox-list-text:after {
	border-left-style: solid;
	left: 43px;
}
.k2t-iconbox-list.style-3 .title {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 14px;
}
.k2t-iconbox-list.style-3 li:nth-child(2n+1) .iconbox-list-text {
	padding-top:0;
}

	/* Style 3: layout right*/
.k2t-iconbox-list.style-3.align-right .iconbox-list-icon{
	float: right;
	margin-right: 0;
}
.k2t-iconbox-list.style-3.align-right .iconbox-list-text{
	text-align: right;
	padding-left: 0;
	padding-right: 30px;
}
.k2t-iconbox-list.style-3.align-right .iconbox-list-text:before, 
.k2t-iconbox-list.style-3.align-right .iconbox-list-text:after{
	right: 43px;
	left: auto;
}

			
/* IMAGEBOX
---------------------------------------------------------------------------------------- */
.k2t-imagebox {
	box-shadow: 0px 2px 5px rgba(0,0,0,.05);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,.05);
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,.05);
	border:1px solid #e5e5e5;
	background:#fff;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	transition: all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	overflow:hidden;
}
.k2t-imagebox:hover {
	border-color: #d5d5d5;
	box-shadow: 0px 2px 6px rgba(0,0,0,.22);
	-webkit-box-shadow: 0px 2px 6px rgba(0,0,0,.22);
	-moz-box-shadow: 0px 2px 6px rgba(0,0,0,.22);
}	
.k2t-imagebox .image {
	position:relative;
	overflow:hidden;
	border-bottom: 1px solid #e5e5e5;
}
.k2t-imagebox .image a {
	display:block;
	position:relative;
}	
.k2t-imagebox .image a .overlay {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
	
.k2t-imagebox .title,
.k2t-imagebox.title-above .image {
	position:relative;
}
.k2t-imagebox .title {
	margin-bottom:5px;
}	
.k2t-imagebox .title .h {
	margin-bottom:0;
	font-size:21px;
	color:#ffbe2a;
}
.k2t-imagebox .title .h a {
	text-decoration:none;
	color:inherit;
}	
.k2t-imagebox .image a .overlay {
	background:#fff;
	opacity:0;
	transition:all .3s ease-out;
	-webkit-transition:all .3s ease-out;
	-moz-transition:all .3s ease-out;
	width:110%;
	height:110%;
	left:-5%;
	top:-5%;
}
.k2t-imagebox .image a .overlay:hover {
}
	
	/* title above image */
.k2t-imagebox.title-above .title {
	padding:16px 22px 16px;
	margin-bottom:0;
}	
.k2t-imagebox.title-above .title:after {
	display:none;
}
.k2t-imagebox.title-above .image {
}
	
	/* image right, image left */
.k2t-imagebox.image-right div.text,
.k2t-imagebox.image-left div.text {
	padding-top:16px;
}	

	/* imagebox effect */
.k2t-imagebox .image1,
.k2t-imagebox .image2 {
}		
.k2t-imagebox .image1 {
	position:relative;
	z-index:15;	
}
.k2t-imagebox .image2 {
	position:absolute;
	z-index:10;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;	
}
	
	/* hover effect */
.k2t-imagebox.thumb-effect-fade .image1 img {
	transition:opacity .5s ease-out, -webkit-transform 0.5s ease-out;
	-webkit-transition:opacity .5s ease-out, -webkit-transform 0.5s ease-out;
	-moz-transition:opacity .5s ease-out, -webkit-transform 0.5s ease-out;
}	
.k2t-imagebox.thumb-effect-fade .image:hover .image1 img {
	opacity:0;
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
	-moz-transform:scale(1.2);
}
.k2t-imagebox.thumb-effect-fade .image2 img {
	opacity:0;
	transition:opacity .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-transition:opacity .5s cubic-bezier(.18,.96,.18,.96);
	-moz-transition:opacity .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-backface-visibility: hidden;
}	
.k2t-imagebox.thumb-effect-fade .image:hover .image2 img {
	opacity:1;
}
	
	/* slide effect */
.k2t-imagebox.thumb-effect-slide .image2 {
	transform:translateY(100%);
	-moz-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-moz-transition:all .5s cubic-bezier(.18,.96,.18,.96);
}
.k2t-imagebox.thumb-effect-slide .image:hover .image2 {
	transform:translateY(0);
	-moz-transform:translateY(0);
	-webkit-transform:translateY(0);
}
.k2t-imagebox.thumb-effect-slide .image1 {
	transform:translateY(0);
	-moz-transform:translateY(0);
	-webkit-transform:translateY(0);
	transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-webkit-transition:all .5s cubic-bezier(.18,.96,.18,.96);
	-moz-transition:all .5s cubic-bezier(.18,.96,.18,.96);
}
.k2t-imagebox.thumb-effect-slide .image:hover .image1 {
	transform:translateY(-110%);
	-moz-transform:translateY(-110%);
	-webkit-transform:translateY(-110%);
}
	
	/* text */
.k2t-imagebox div.text {
	padding:32px 22px 16px;
}	
	
	/* content */
.k2t-imagebox .desc p,
.k2t-imagebox .desc ul,
.k2t-imagebox .desc ol {
	margin-bottom:10px;
}
	
	/* layout */
.k2t-imagebox.image-left .image {
	display:block;
	float:left;
	max-width:50%;
}
.k2t-imagebox.image-right .image {
	display:block;
	float:right;
	max-width:50%;
}		
.k2t-imagebox.image-left .text,
.k2t-imagebox.image-right .text {
	overflow:hidden;
}
.k2t-imagebox.image-left .title .h,
.k2t-imagebox.image-right .title .h {
	font-size:26px;
	margin-bottom:20px;
}

.k2t-imagebox .learnmore {
	margin-top:18px;
}
	
/* ICONBOX
---------------------------------------------------------------------------------------- */
.k2t-iconbox {
	position:relative;
	display:block;
	margin:0 0 20px;
}
.k2t-iconbox .iconbox-icon,
.k2t-iconbox .iconbox-image{
	max-width: 100%;
}	
.k2t-iconbox .learnmore {
    color: #4f4f4f;
    display: table;
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 15px;
    text-transform: uppercase;
	font-weight:500;
	margin:20px 0 0 0;
}
.k2t-iconbox .learnmore a:hover {
	color: #4f4f4f;
}
.k2t-iconbox .iconbox-text ol,
.k2t-iconbox .iconbox-text ul,
.k2t-iconbox .iconbox-text .k2t-iconlist {
	margin-bottom:10px;
}

	/* layout 1 */
.k2t-iconbox.layout-1{
	background: #fff;
	padding: 28px 25px 33px;
}
.k2t-iconbox.layout-1 .iconbox-icon{
	margin-bottom: 6px;
}
.k2t-iconbox.layout-1 .iconbox-icon i{
	font-size: 220%;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
}
.k2t-iconbox.layout-1 .iconbox-text .title .h{
	font-size: 140%;
	margin-bottom: 15px;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
}

	/* layout 1
	 * has shadow
 	 */
.k2t-iconbox.layout-1.has-shadow{
	-webkit-box-shadow: 8px 8px 0px 0px rgba(0,0,1,0.04);
	-moz-box-shadow: 8px 8px 0px 0px rgba(0,0,1,0.04);
	-ms-box-shadow: 8px 8px 0px 0px rgba(0,0,1,0.04);
	box-shadow: 8px 8px 0px 0px rgba(0,0,1,0.04);
}
	/* layout 1
	 * icon left, text left
 	 */
.k2t-iconbox.layout-1.align-left .iconbox-icon {
	float: left;
	text-align: left;
}
.k2t-iconbox.layout-1.align-left .iconbox-text {
	clear: both;
	text-align: left;
}
.k2t-iconbox.layout-1.has-bg .iconbox-icon,
.k2t-iconbox.layout-1.icon-border .iconbox-icon {
	text-align: center;
} 

	/* layout 1
	 * icon right, text right
 	 */
.k2t-iconbox.layout-1.align-right .iconbox-icon {
	float: right;
	text-align: right;
}
.k2t-iconbox.layout-1.align-right .iconbox-text {
	clear: both;
	text-align: right;
}

	/* layout 1
	 * box has border
 	 */
.k2t-iconbox.has-border {
	border: 1px solid transparent;
	padding: 15px 20px;
}

	/* layout 2 */
.k2t-iconbox.layout-2 .iconbox-icon {
	position:relative;
	margin-right:14px;
	text-align:center;
	font-size:22px;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	color:#fff;
	margin-top: -6px;
}
.k2t-iconbox.layout-2 .iconbox-icon i {
	line-height:60px;
}
.k2t-iconbox.layout-2 .title {
	margin-bottom:10px;	
}	
.k2t-iconbox.layout-2 .title .h {
	font-size:14px;
	margin-bottom:0;
	font-weight:700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

	/* layout 2
	 * icon has border
 	 */
.k2t-iconbox.layout-2.icon-border .iconbox-icon{
	border: 1px solid #ffbe2a;
}
	
	/* layout 3 */
.k2t-iconbox.layout-3 .iconbox-icon {
	position: relative;
}
.k2t-iconbox.layout-3 .title {
	margin-bottom:15px;
}	
.k2t-iconbox.layout-3 .title .h {
	font-size:14px;
	line-height:24px;
	margin-bottom:0;
	overflow:hidden;
	font-weight: 700;
	letter-spacing: 1px;
	padding-left: 30px;
}
	
		/* ANIMATION */
	.k2t-iconbox.has-animation .iconbox-icon,
	.k2t-iconbox.has-animation .iconbox-image {
		opacity:0;
		-webkit-transform: scale3d(0, 0, 0);
		-moz-transform: scale3d(0, 0, 0);
		transform: scale3d(0, 0, 0);
	}
	.k2t-iconbox.has-animation .title,
	.k2t-iconbox.has-animation .desc,
	.k2t-iconbox.has-animation .learnmore {
		opacity:0;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}		
	.k2t-iconbox.has-animation.run_animation .iconbox-icon,
	.k2t-iconbox.has-animation.run_animation .iconbox-image {
		-webkit-animation:zoomIn 1s both;
		animation:zoomIn 1s both;
	}
	.k2t-iconbox.has-animation.run_animation .title {
		-webkit-animation:fadeInDown 1s both;
		animation:fadeInDown 1s both;
	}
	.k2t-iconbox.has-animation.run_animation .desc,
	.k2t-iconbox.has-animation.run_animation .learnmore {
		-webkit-animation:fadeInUp 1s both;
		animation:fadeInUp 1s both;
	}	

	/* layout 1
	 * icon above, text below
 	 */
.k2t-iconbox.layout-1 {
	text-align:center;
}
.k2t-iconbox.layout-1 .iconbox-image {
	margin-bottom:20px;
}
	
	/* layout 2
	 * icon left, text right
 	 */
.k2t-iconbox.layout-2 .iconbox-icon,
.k2t-iconbox.layout-2 .iconbox-image {
	display:block;
	float:left;
	margin-right:20px;
}
.k2t-iconbox.layout-2 .iconbox-text {
	overflow:hidden;
}	
.k2t-iconbox.layout-2.align-right .iconbox-icon,
.k2t-iconbox.layout-2.align-right .iconbox-image {
	float:right;
	margin-right:0;
	margin-left:20px;
}
.k2t-iconbox.layout-2.align-right .iconbox-text {
	text-align:right;
}
	/* layout 3
	 * icon left, title right
 	 */
.k2t-iconbox.layout-3 .iconbox-icon,
.k2t-iconbox.layout-3 .iconbox-image {
	display:block;
	float:left;
}
.k2t-iconbox.layout-3 .iconbox-image {
	margin-right:15px;
}	
.k2t-iconbox.layout-3 .title .h {
	overflow:hidden;
}
.k2t-iconbox.layout-3.align-right .iconbox-icon,
.k2t-iconbox.layout-3.align-right .iconbox-image {
	float:right;
	margin-right:0;
	margin-left:20px;
}
.k2t-iconbox.layout-3.align-right .iconbox-text {
	text-align:right;
}

	/* Box border */
.k2t-iconbox.box-border{
	border: 1px solid #ededed;
	padding: 15px 20px;
}

	/* Box background */
.k2t-iconbox.box-background{
	padding: 15px 20px;
	color: #fff;
}
.k2t-iconbox.box-background .learnmore a{
	color: #fff;
}
	
/* PROCESS
---------------------------------------------------------------------------------------- */
.k2t-process {
	margin:0 0 20px;
}
.k2t-process .layer-table {
	display:table;
	width:100%;
}
.k2t-process .layer-row {
	display:table-row;
}
.k2t-process .k2t-step {
	display:table-cell;
}
.k2t-process.process-1 .k2t-step {
	width:50%;
}	
.k2t-process.process-2 .k2t-step {
	width:50%;
}
.k2t-process.process-3 .k2t-step {
	width:33.33%;
}	
.k2t-process.process-4 .k2t-step{
	width: 25%;
}
.k2t-process.process-5 .k2t-step{
	width: 20%;
}
.k2t-process.process-6 .k2t-step{
	width: 16.66%;
}
.k2t-process .k2t-step {
	position:relative;
	font-family: "Raleway",sans-serif;
}

	/* Line style */
.k2t-process.process-4.style-line .k2t-step{
	width: 30%;
}
.k2t-process.process-4.style-line .k2t-step:first-child, .k2t-process.process-4.style-line .k2t-step:last-child {
	width:20%;
}
.k2t-process.process-5.style-line .k2t-step{
	width: 22%;
}
.k2t-process.process-5.style-line .k2t-step:first-child, .k2t-process.process-5.style-line .k2t-step:last-child {
	width:17%;
}
.k2t-process.process-6.style-line .k2t-step{
	width: 18.66%;
}
.k2t-process.process-6.style-line .k2t-step:first-child, .k2t-process.process-6.style-line .k2t-step:last-child {
	width:12.66%;
}
.k2t-process.style-line .k2t-step .step-inner:before{
	height: 1px;
	border-top:1px dashed #ececec;
	width: 100%;
	position: absolute;
	top: 42px;
	z-index: -1;
	content: "";
}
.k2t-process.style-line .k2t-step .h{
	color: #4f4f4f;
    font-size: 110%;
	letter-spacing:1px;
    font-weight: 600;
    margin-top: 20px;
}
.k2t-process.style-line .k2t-step .step-heading {
	text-align: center;
}
.k2t-process.style-line .step-count{
	width: 86px;
	height: 86px;
	display: inline-block;
	background: #fff;
	border-radius: 50%;
	border:2px solid #ececec;
	text-align: center;
	line-height: 76px;
	font-size: 195%;
	font-weight: 600;
}
.k2t-process.style-line .step-count i{
	line-height: 3.1em;
}
.k2t-process.style-line .featured.k2t-step .step-count,
.k2t-process.style-line .featured.k2t-step .step-inner:before {
	color: #ffbe2a;
	border-color: #ffbe2a;
}
.k2t-process.style-line .k2t-step .step-inner .step-text {
	text-align:center;
}
.k2t-process.style-line .k2t-step:first-child .step-heading ,
.k2t-process.style-line .k2t-step:first-child .step-inner .step-text {
	text-align: left;
}
.k2t-process.style-line .k2t-step:last-child .step-heading,
.k2t-process.style-line .k2t-step:last-child .step-inner .step-text {
	text-align: right;
}

	
	
	
	/* Box style */
.k2t-process.style-box{
	border: 1px solid #ededed;
	background: #fff;
}
.k2t-process.style-box .step-inner-parent{
	min-height: 72px;
	margin-top: 30px;
	text-align: center;
}
/*.k2t-process.style-box .k2t-step::after,
.k2t-process.style-box .k2t-step::before{
    border-bottom: 3.7em solid transparent;
    border-left: 1.5em solid #ededed;
    border-top: 3.7em solid transparent;
    content: "";
    margin-top: -1.5em;
    position: absolute;
    right: -1.5em;
    top: 20%;
}
.k2t-process.style-box .k2t-step.featured::after,
.k2t-process.style-box .k2t-step.featured::before{
    border-bottom: 3.7em solid transparent;
    border-left: 1.5em solid transparent;
    border-top: 3.7em solid transparent;
}	

.k2t-process.style-box .k2t-step::after {
    z-index: 2;
    border-left-color: #fff;
}
.k2t-process.style-box .k2t-step::before {
    border-left-color: #ededed;
    right: -1.6em;
    z-index: 1;
}
.k2t-process.style-box .k2t-step:last-child:after, 
.k2t-process.style-box .k2t-step:last-child:before,
.k2t-process.style-box .step-count{
	display: none;
}
.k2t-process.style-box .k2t-step.featured:after{
	border-left-color: #ffbe2a;
}

	*/

.k2t-process.style-box .k2t-step::after {
    content: "";
    position: absolute;
	width:1px;
	height:100%;
	top:0;
	right:0;
	background:#ededed;
	z-index:1;
	}
.k2t-process.style-box .k2t-step::before {
	width:40px;
	height:40px;
	content:'\f0b2';
	font-size:10px;
	font-family:FontAwesome;
	text-align:center;
	position:absolute;
	top:50%;
	right:-20px;
	margin:-20px 0 0 0;
	background:#fff;
	z-index:2;
	line-height:38px;
	color:#ededed;
	border-radius:3px;
	transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	border:1px solid #ededed;
	}
.k2t-process.style-box .k2t-step.featured::after {
	background:#fff;
	}	
.k2t-process.style-box .k2t-step.featured::before {
	border-color:#fff;
	background:#ffbe2a;
	color:#fff;
	}	
	
.k2t-process.style-box .k2t-step:last-child:after,
.k2t-process.style-box .k2t-step:last-child:before,
.k2t-process.style-box .step-count {
	display:none;
	}	
	

.k2t-process.style-box .k2t-step .step-inner{
	display: inline-block;
	color: #919191;
}
.k2t-process.style-box .k2t-step .step-inner > *{
	display: table-cell;
	vertical-align: middle;
}
.k2t-process.style-box .k2t-step .step-inner .step-icon{
	text-align: center;
}
.k2t-process.style-box .k2t-step .step-inner .step-text > *{
	margin-left: 15px;
	text-align: left;
}
.k2t-process.style-box .k2t-step .step-icon i{
	font-size: 200%;
	line-height: 100%;
}
.k2t-process.style-box .k2t-step .step-heading{
	margin-bottom: -5px;
}
.k2t-process.style-box .k2t-step .h{
    font-weight: 700;
}
.k2t-process.style-box .k2t-step .step-content{
	font-size: 95%;
}
.k2t-process.style-box .k2t-step.featured{
	background: #ffbe2a;
}
.k2t-process.style-box .k2t-step.featured *{
	color: #fff;
}
	
	
/* HIGHLIGHT
---------------------------------------------------------------------------------------- */
.k2t-highlight {
	padding:1px 4px;
	margin:0 2px;
	background-color:#DFEEF3;
	border-radius:1px;
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
}
.k2t-highlight.style-2 {
	color:#fff;
	background:#ffbe2a;
}
	
/* HR
---------------------------------------------------------------------------------------- */
.k2t-hr {
	clear:both;
	margin:20px auto 30px;
	max-width:100%;
	display:block;
	clear:both;
	height:1px;
	margin-right:auto;
	border-top:1px solid;
	opacity:0.3;
}
.k2t-hr.style-2 {
	background:none;
	height:8px;
	position:relative;
	background:none;
	border-top:1px solid;
	border-bottom:1px solid;
}	
.k2t-hr.style-3 {
	background:none;
	height:8px;
	position:relative;
}
.k2t-hr.style-3:before,
.k2t-hr.style-3:after {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:1px;
	content:"";
	background:url(../images/dot.html) repeat-x top left;
	background-size:4px 1px;
	-webkit-background-size:4px 1px;
	-moz-background-size:4px 1px;
}
.k2t-hr.style-3:after {
	top:auto;
	bottom:0;
}			
.k2t-hr.style-4 {
	background:url(../images/dot.html) repeat-x top left;
	background-size:4px 1px;
	-webkit-background-size:4px 1px;
	-moz-background-size:4px 1px;
}
	
/* MEMBER
---------------------------------------------------------------------------------------- */
.k2t-member {
	display: block;
	margin: 0 0 20px;
}
.k2t-member .member-inner {
	position: relative;
}
.k2t-member .image {
	margin: 0 0 20px;
}
.k2t-member .text {
	overflow: hidden;
}
.k2t-member .name-role {
	margin: 0 0 16px;
	position: relative;
}
.k2t-member .name {
	margin-bottom: 0;
	font-size: 14px;
	font-weight:bold;
	letter-spacing:1px;
	font-weight: bold;
}
.k2t-member .role {
	margin-bottom: 0;
	color: #767676;
	font-weight: normal;
}
.k2t-member .social ul {
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	text-align: center;
}	
.k2t-member .social ul li {
	display: block;
	float: left;
	margin: 0 2px;
}	
.k2t-member .social ul li a {
	font-size: 16px;
	color: #888;
	text-decoration: none;
	background: none;
	transition:all .3s ease-in-out;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
}
.k2t-member .social ul li a:hover {
	color: #333;
}
/* Style 1
----------------------- */
.k2t-member.style-1 .member-inner,
.k2t-member.style-2 .member-inner {
	text-align: center;
}
.k2t-member.style-1 .name {
	text-transform: uppercase;
}
.k2t-member.style-1 .role {
	font-size: 12px;
	color: #a9a9a9;
}
.k2t-member.style-1 .social ul {
	margin-top: 15px;
}
.k2t-member.style-1 .social ul li a {
	width: 28px;
	height: 28px;
	line-height: 28px;
}
.k2t-member.style-1 .image,
.k2t-member.style-3 .image {
	position: relative;
	overflow: hidden;
}
.k2t-member.style-1 .image:before,
.k2t-member.style-3 .image:before,
.k2t-member.style-1 .image img {
	-webkit-transition: all .35s ease;
	-moz-transition:    all .35s ease;
	transition:         all .35s ease;
}
.k2t-member.style-1 .image:before,
.k2t-member.style-3 .image:before {
	border: 1px solid #fff;
	bottom: 15px;
	content: "";
	left: 15px;
	position: absolute;
	right: 15px;
	top: 15px;
	opacity: 0;
	z-index: 1;
	-webkit-transform: scale(1.1);
	-moz-transform:    scale(1.1);
	-ms-transform:     scale(1.1);
	-o-transform:      scale(1.1);
	transform:         scale(1.1);
}
.k2t-member.style-1 .image:hover:before,
.k2t-member.style-3 .image:hover:before {
	opacity: 1;
}
.k2t-member.style-1 .image img {
	-webkit-transform: scale(1.2);
	-moz-transform:    scale(1.2);
	-ms-transform:     scale(1.2);
	-o-transform:      scale(1.2);
	transform:         scale(1.2);
	width: 100%;
}
.k2t-member.style-1 .image:hover img {
	opacity: .8;
}
.k2t-member.style-1 .image:hover:before,
.k2t-member.style-3 .image:hover:before,
.k2t-member.style-1 .image:hover img {
	-webkit-transform: scale(1);
	-moz-transform:    scale(1);
	-ms-transform:     scale(1);
	-o-transform:      scale(1);
	transform:         scale(1);
}
/* Style 2
----------------------- */
.k2t-member.style-2 .image {
	margin: 0;
}
.k2t-member.style-2 .image img{
	width: 100%;
}
.k2t-member.style-2 .text,
.k2t-member.style-2 .text .name,
.k2t-member.style-2 .text .role,
.k2t-member.style-2 .text .desc,
.k2t-member.style-2 .text .social {
	opacity: 0;
	-webkit-transition: opacity .35s ease 0s, transform .35s ease 0s;
	-moz-transition:    opacity .35s ease 0s, transform .35s ease 0s;
	transition:         opacity .35s ease 0s, transform .35s ease 0s;
}
.k2t-member.style-2 .text .name,
.k2t-member.style-2 .text .role,
.k2t-member.style-2 .text .desc,
.k2t-member.style-2 .text .social {

	-webkit-transform: translate3d(0, 100px, 0);
	-moz-transform:    translate3d(0, 100px, 0);
	-ms-transform:     translate3d(0, 100px, 0);
	-o-transform:      translate3d(0, 100px, 0);
	transform:         translate3d(0, 100px, 0);
}
.k2t-member.style-2 .text .role {
	-webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition:    all .5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	transition:         all .5s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.k2t-member.style-2 .text .role {
	-webkit-transition: all .7s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition:    all .7s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	transition:         all .7s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.k2t-member.style-2 .text .desc {
	-webkit-transition: all .9s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition:    all .9s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	transition:         all .9s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.k2t-member.style-2 .text .social {
	-webkit-transition: all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	-moz-transition:    all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
	transition:         all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.k2t-member.style-2:hover .text .name,
.k2t-member.style-2:hover .text .role,
.k2t-member.style-2:hover .text .desc,
.k2t-member.style-2:hover .text .social {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform:    translate3d(0, 0, 0);
	-ms-transform:     translate3d(0, 0, 0);
	-o-transform:      translate3d(0, 0, 0);
	transform:         translate3d(0, 0, 0);
	opacity: 1;
}
.k2t-member.style-2:hover .text {
	opacity: 1;
}
.k2t-member.style-2 .text:before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	background: rgba(255, 255, 255, .95);
}
.k2t-member.style-2 .text-inner {
	padding: 40px;
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform:    translateY(-50%);
	-ms-transform:     translateY(-50%);
	-o-transform:      translateY(-50%);
	transform:         translateY(-50%);
}
.k2t-member.style-2 .social ul li a {
	background: none;
	color: #a1a1a1;
}
.k2t-member.style-2 .social ul li a:hover {
	color: #3d3d3d;
}
.k2t-member.style-2 .role {
	text-transform: none;
	font-size: 14px;
	color: #767676;
}
.k2t-member.style-2 .social ul {
	margin-top: 20px;
}
/* Style 3
----------------------- */
.k2t-member.style-3 {
	overflow: hidden;
}
.k2t-member.style-3 .member-inner > * {
	float: left;
}
.k2t-member.style-3 .member-inner .image {
	width: 30%;
}
.k2t-member.style-3 .member-inner .text {
	width: 70%;
	padding-left: 20px;
}
.k2t-member.style-3 .name-role {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.k2t-member.style-3 .name {
	line-height: 20px;
	margin-bottom: 8px;
}
.k2t-member.style-3 .social ul li a {
	width: auto;
	margin: 10px 10px 0 0;
}
.k2t-member.style-3 .image:before {
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
}
/* Style 4
----------------------- */
.k2t-member.style-4 .member-inner {
	overflow: hidden;
}
.k2t-member.style-4 .image {
	margin: 0;
}
.k2t-member.style-4 .image img{
	width: 100%;
}
.k2t-member.style-4 .text{
	background: #fff;
	text-align: center;
	position: absolute;
	bottom: -70%;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: all .35s ease 0s, transform .35s ease 0s;
	-moz-transition:    all .35s ease 0s, transform .35s ease 0s;
	transition:         all .35s ease 0s, transform .35s ease 0s;
}
.k2t-member.style-4 .text > div{
	position: absolute;
	top: calc(50% - 118px);
	left: 0;
	padding: 0 15px;
	width: 100%;
}
.k2t-member.style-4 .text .name-role{
	margin-bottom: 24px;
	margin-top: 5px;
	-webkit-transition: all .35s ease 0s, transform .35s ease 0s;
	-moz-transition:    all .35s ease 0s, transform .35s ease 0s;
	transition:         all .35s ease 0s, transform .35s ease 0s;
}
.k2t-member.style-4 .text .name{
	text-transform: uppercase;
	font-size: 120%;
}
.k2t-member.style-4 .text .desc{
	margin-bottom: 30px;
    max-height: 93px;
    overflow: hidden;
}
.k2t-member.style-4:hover .text{
	bottom: 0;
}
.k2t-member.style-4:hover .text .name-role{
	margin-top: 0;
}
/*.k2t-member.style-4 img,
.k2t-member.style-4 .name-role {
	-webkit-transition: transform .35s ease 0s;
	-moz-transition:    transform .35s ease 0s;
	transition:         transform .35s ease 0s;
}
.k2t-member.style-4 .name-role {
	background: #fff;
	margin: 0;
	position: absolute;	
	width: 100%;
}
.k2t-member.style-4 .name {
	font-size: 18px;
	font-weight: 600;
}
.k2t-member.style-4 .desc {
	opacity: 0;
	padding: 20px 40px;
	-webkit-transform: translate3d(0px, 100%, 0px);
	-moz-transform:    translate3d(0px, 100%, 0px);
	-ms-transform:     translate3d(0px, 100%, 0px);
	-o-transform:      translate3d(0px, 100%, 0px);
	transform:         translate3d(0px, 100%, 0px);
	-webkit-transition: opacity .35s ease 0s, transform .35s ease 0s;
	-moz-transition:    opacity .35s ease 0s, transform .35s ease 0s;
	transition:         opacity .35s ease 0s, transform .35s ease 0s;
}
.k2t-member.style-4:hover img {
	-webkit-transform: translate3d(0px, -30px, 0px);
	-moz-transform:    translate3d(0px, -30px, 0px);
	-ms-transform:     translate3d(0px, -30px, 0px);
	-o-transform:      translate3d(0px, -30px, 0px);
	transform:         translate3d(0px, -30px, 0px);
}
.k2t-member.style-4:hover .name-role {
	padding: 15px 40px 0 40px;
	-webkit-transform: translate3d(0px, -100%, 0px);
	-moz-transform:    translate3d(0px, -100%, 0px);
	-ms-transform:     translate3d(0px, -100%, 0px);
	-o-transform:      translate3d(0px, -100%, 0px);
	transform:         translate3d(0px, -100%, 0px);
}
.k2t-member.style-4:hover .text,
.k2t-member.style-4:hover .name-role {
	background: rgba(255, 255, 255, .9);
}
.k2t-member.style-4:hover .desc {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-moz-transform:    translate3d(0px, 0px, 0px);
	-ms-transform:     translate3d(0px, 0px, 0px);
	-o-transform:      translate3d(0px, 0px, 0px);
	transform:         translate3d(0px, 0px, 0px);
}*/
/* PIECHART
---------------------------------------------------------------------------------------- */
.k2t-piechart {
	display:block;
	margin:0 0 20px;
}
	/* chart */
.k2t-piechart .chart {
	margin:0 auto;
	position:relative;
    text-transform: uppercase;
	font-weight:400;
	color:#666;
}
.k2t-piechart .chart canvas {
	position:absolute;
	top:0;
	left:0;
}
.k2t-piechart .chart-content {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	text-align:center;
	color:#333;
}
.k2t-piechart .chart-content .chart-number {
    height: 98px;
    left: 50%;
    line-height: 98px;
    margin: -49px auto auto -49px;
    position: absolute;
    top: 50%;
    width: 98px;
    background: #ebebeb;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.k2t-piechart .chart:hover .chart-content .chart-number {
	color: #fff;
	background-color: #ffbe2a;
}
.k2t-piechart .chart-content .chart-number span{
	font-family: "Raleway",sans-serif;
	font-weight: 500;
	font-size: 165%;
}
.k2t-piechart .chart-content .chart-number .chart-icon span{
	font-size: 140%;
}
.k2t-piechart .chart-content .percent {
	bottom: auto;
	visibility:hidden;
}
.k2t-piechart .chart-content .chart-text {
	font-weight:300;
}
	
	/* text */
.k2t-piechart .text {
	text-align:center;
	margin-top:10px;
}	
.k2t-piechart .title {
	font-size:14px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #4f4f4f;
	margin-bottom:5px;
	text-transform: uppercase;
}
.k2t-piechart .desc {
}	

	/* Icon */
.k2t-piechart .chart-icon i{
	display: block;
    margin-bottom: -1.2em;
    margin-top: 0.9em;
}
.k2t-piechart .chart-icon *{
	font-size: 20px;
}
	
/* PROGRESS
---------------------------------------------------------------------------------------- */
.k2t-progress {
	margin:0 0 20px;
	position:relative;
	overflow:hidden;
}
.k2t-progress .progress-background {
	background:#eee;
	height:14px;
	width:100%;
	position:relative;
}
.k2t-progress .bar-outer {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:10;
	overflow:hidden;
	border-radius:0 2px 2px 0;
}	
.k2t-progress .bar {
	position:absolute;
	top:0;
	left:0;
	width:90%;
	height:100%;
	z-index:11;
	background:#ffbe2a;
	left:-100%;
	opacity:0;
	border-radius:2px 0 0 2px;
}	
.k2t-progress .text {
	position:absolute;
	width:100%;
	height:100%;
	line-height:30px;
	padding-left:10px;
	color:#fff;
	z-index:15;
	font-family:"PT Sans", sans-serif;
	font-size:16px;
}
	
	/* striped */
.k2t-progress.striped .bar {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
	background-size: 40px 40px;
	-webkit-background-size: 40px 40px;
	-moz-background-size: 40px 40px;

	
			animation: 10s linear 0s normal none infinite running progress_striped;
		-moz-animation: 10s linear 0s normal none infinite running progress_striped;
	-webkit-animation: 10s linear 0s normal none infinite running progress_striped;
}
	
@keyframes progress_striped {
	from { background-position: left; }
	to { background-position: right; }
}
@-moz-keyframes progress_striped {
	from { background-position: left; }
	to { background-position: right; }
}
@-webkit-keyframes progress_striped {
	from { background-position: left; }
	to { background-position: right; }
}

	/* Style 2 */
.k2t-progress .percent {
	width:40px;
	transform:translateX(-40px);
	-moz-transform:translateX(-40px);
	-webkit-transform:translateX(-40px);
	margin-bottom:6px;
	height:20px;
	line-height:20px;
	position:absolute;
	bottom:100%;
	left:90%;
	background:#111;
	color:#fff;
	text-align:center;
	left:-100%;
	border-radius: 2px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	opacity:0;
}
.k2t-progress .percent:after {
	position:absolute;
	bottom:-9px;
	margin-left:-5px;
	left:50%;
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #111;
}	
.k2t-progress .text {
	position:static;
	color:inherit;
	padding-left:0;
}
	
/* PRICING
---------------------------------------------------------------------------------------- */
	/* layout */
.k2t-pricing {
	margin:0 0 30px;
}
.k2t-pricing .layer-table {
	display:table;
	width:100%;
}
.k2t-pricing .layer-row {
	display:table-row;
}
.k2t-pricing .pricing-column {
	display:table-cell;
	widows:25%;
}
.pricing-1 .pricing-column {
	width:100%;
}
.pricing-2 .pricing-column {
	width:50%;
}
.pricing-3 .pricing-column {
	width:33.33%;
}
.pricing-4 .pricing-column {
	width:25%;
}
.pricing-5 .pricing-column {
	width:20%;	/* no support for pricing table with 6 columns */
}
	
	/* separated */
.k2t-pricing.separated .layer-table,
.k2t-pricing.separated .layer-row,
.k2t-pricing.separated .pricing-column {
	display:block;
}
.k2t-pricing.separated .pricing-column {
	float:left;
	margin-left:2%;
}
.k2t-pricing.separated .pricing-column:first-child {
	margin-left:0;
}		
.pricing-1.separated .pricing-column {
	width:100%;
}
.pricing-2.separated .pricing-column {
	width:49%;
}
.pricing-3.separated .pricing-column {
	width:32%;
}
.pricing-4.separated .pricing-column {
	width:23.5%;
}
.pricing-5.separated .pricing-column {
	width:18.4%;
}
.k2t-pricing .pricing-column .title-price,
.k2t-pricing .pricing-column .pricing-content,
.k2t-pricing .pricing-column .pricing-bottom{
	border-left:1px solid #d5d5d5;
}
.k2t-pricing .pricing-column:last-child  .title-price,
.k2t-pricing .pricing-column:last-child  .pricing-content,
.k2t-pricing .pricing-column:last-child  .pricing-bottom{
	border-right:1px solid #d5d5d5;
}
.k2t-pricing .pricing-column > div:last-child{
	border-bottom:1px solid #d5d5d5;
}
	
	/* title-price */
.title-price .pricing-price {
	position:relative;
}	
.title-price .pricing-price:after,
.pricing-content li:after {
	position:absolute;
	bottom:0;
	width:100%;
	left:0;
	content:"";
	border-top:1px solid;
	opacity:0.15;
}
.pricing-column:not(.has-button) .pricing-content li:last-child:after{
	border-top: 0;
}
	
	/* title */
.pricing-title {
	padding: 20px 10px;
	text-align: center;
	position: relative;
	background: #363636;
	border-bottom: 10px solid #ffbe2a;
}	
.pricing-title .title {
	margin-bottom:0;
	font-size: 21px;
	font-family: "Raleway",sans-serif;
	font-weight: 700;
	color: #fff;
}
	
	/* price */
.title-price{
	padding: 0 30px;
}
.pricing-price{
	color: #777777;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.pricing-price > div{
	line-height: 1.7em;
}
.pricing-price > div:first-child{
	margin-top: 66px;
}
.pricing-price > div:last-child{
	margin-bottom: 53px;
}
.pricing-price .price{
	font-size: 50px;
	font-weight: 900;
	color: #363636;
	position: relative;
}
.pricing-price .unit{
	color: #363636;
    font-size: 22px;
    font-weight: normal;
    left: -14px;
    position: absolute;
    top: 9px;
}
.pricing-price .del{
	text-decoration:line-through;
}
	
	/* content */
.pricing-content{
	padding: 0 30px;
}
.pricing-content ul,
.pricing-content ol {
	list-style:none;
	margin:0;
	padding:0;
}
.pricing-content li	{
	padding:12px;
	position:relative;
	text-align:center;
}
	
	/* bottom */
.pricing-bottom {
	padding: 24px 10px 17px;
	text-align: center;
}
.pricing-bottom > *{
	margin: 0;
}
	
	/* featured column */
.pricing-column.featured {
	z-index:20;
}
.pricing-column.featured .pricing-title{
	border-color: #8dc63f;
}
.k2t-pricing .pricing-column.featured:last-child	{
	border-right-color:#ffbe2a;
}
.pricing-column.featured .title-price:after,
.pricing-column.featured .pricing-content li:after {
}	
	
	/* separated column */
.k2t-pricing.separated .pricing-column .pricing-content,
.k2t-pricing.separated .pricing-column .pricing-bottom,
.k2t-pricing.separated .pricing-column .title-price {
	border-right:1px solid #e5e5e5;
}	
.k2t-pricing.separated .pricing-column.features {
	border-right:none;
}
.k2t-pricing .pricing-column.featured .pricing-title{
	background: #262626;
}
	
/* TOGGLE
---------------------------------------------------------------------------------------- */
.k2t-toggle {
	margin:0 0 20px;
}
.toggle-title {
	position:relative;
	font-weight:normal;
	margin-bottom:0;
	padding:15px 0;
	border-bottom:1px solid #e5e5e5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.toggle-title i {
	margin-right: 15px;
}
.toggle-title a {
	text-decoration:none;
	color:#333;
	display:block;
}
.toggle-title a:hover {
color:#ffbe2a;	
	}
.toggle-content {
	padding: 10px 0 0;
}
.toggle-content ul{
	margin-left: 12px;
}
.toggle-content p {
	margin: 0;
}
	/* accordion */
.k2t-accordion {
	margin:0 0 20px;
}
	/* accordion style 2 */
.k2t-accordion.style-2,
.k2t-accordion.style-2 .toggle-title {
	border-style: solid;
	border-color: #e5e5e5;
}
.k2t-accordion.style-2 .toggle-title:hover,
.k2t-accordion.style-3 .toggle-title:hover,
.wpb_wrapper h4.wpb_toggle:hover {
	background: #f9f9f9;
}
.k2t-accordion.style-2 {
	border-width: 0 1px;
}
.k2t-accordion.style-2 .toggle-title {
	padding: 15px 10px;
	border-width: 1px 0;
	margin-top: -1px;
}
.k2t-accordion.style-2 .toggle-content,
.k2t-accordion.style-3 .toggle-content {
	padding: 10px;
}
.k2t-accordion.style-2 .open + .toggle-content:last-child {
	border-bottom: 1px solid #e5e5e5;
}

	/* accordion style 3 */
.k2t-accordion.style-3 .toggle-title,
.wpb_wrapper h4.wpb_toggle {
	padding: 15px 10px;
	border: 1px solid #e5e5e5;
	margin-bottom: 5px;
}

/* Toggle */
.wpb_toggle.wpb_toggle_title_active,
#content h4.wpb_toggle.wpb_toggle_title_active,
.wpb_toggle,
.wpb_wrapper h4.wpb_toggle {
	background: none;
}
.wpb_wrapper h4.wpb_toggle {
	position: relative;
	padding-left: 35px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.wpb_wrapper h4.wpb_toggle:hover {
	color:#ffbe2a;
	}
.wpb_wrapper h4.wpb_toggle:before {
	content: "\f107";
	font-family: FontAwesome;
	left: 15px;
	top: 15px;
	color:#d0d0d0;
	font-size:15px;
	position: absolute;
}
.wpb_wrapper h4.wpb_toggle.wpb_toggle_title_active:before {
	content: "\f106";
}
	
/* TAB
---------------------------------------------------------------------------------------- */
.tabnav {
	display:block;
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
	clear:both;
}
.tabnav:after {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:1px;
	content:"";
	border-top:1px solid;
	opacity:0.15;
}	
.tabnav li {
	display:block;
	float:left;
}	
.tabnav li a {
	display:block;
	text-decoration:none;
	height:42px;
	line-height:42px;
	padding:0 14px;
	cursor:pointer;
	color:#333;
	font-family:"PT Sans", sans-serif;
	font-size:14px;
	color:#333;
	margin-right:2px;
}
.tabnav li:last-child a {
	margin-right:0;
}	
.tabnav li.active a	{
	background:#ffbe2a;
	color:#fff;
}
.tabnav li a i {
	margin-right:10px;
}
.tab-content {
	margin-top:20px;
}
	
/* VERTICAL
------------------------------------- */
	/* layout */
.tab-vertical .tabnav {
	display:block;
	float:left;
	width:20%;
	text-align:left;
	margin-right:4%;
}
.tab-vertical .tab-content {
	display:block;
	overflow:hidden;
}
	
	/* nav */
.tab-vertical .tabnav {
	margin-bottom:0;
	padding-bottom:0;
}
.tab-vertical .tabnav:after {
	display:none;
}			
.tab-vertical .tabnav li {
	display:block;
	float:none;
}
.tab-vertical .tabnav li a {
	display:block;
	margin-right:0;
	margin-bottom:2px;
	height:42px;
	line-height:42px;
	text-align:left;
	padding:0 10px;
}
.tab-vertical .tabnav li a i {
	margin-right:5px;
}
.tab-vertical .tabnav li.active a {
	background:#
}
	
/* COUNTDOWN
---------------------------------------------------------------------------------------- */
.k2t-countdown {
	text-align:center;
	text-transform:uppercase;
	letter-spacing:2px;
	opacity:0;
}
.k2t-countdown .ele {
	display:block;
	float:left;
	padding:10px 0;
	text-align:center;
	position:relative;
	margin-bottom:10px;
}		
.k2t-countdown .ele > span {
	display: inline-block;
	float: left;
}
.k2t-countdown .ele span{
	display: block;
}
.k2t-countdown .ele .bulkhead{
	font-size: 170%;
	margin: 31px 10px;
}
.k2t-countdown .ele .num {
	border: 1px solid #dddddd;
    color: #535353;
    font-size: 350%;
    font-weight: 600;
    height: 100px;
    line-height: 100px;
    margin-bottom: 5px;
    padding-bottom: 22px;
    position: relative;
    width: 100px;
}
.k2t-countdown .ele .unit {
	font-family: 'Raleway', sans-serif;
	color: #a2a2a2;
}
.k2t-countdown .ele.hide {
	display:none;
}
	
	/* align */
.k2t-countdown.align-center {
	text-align:center;
}
.k2t-countdown.align-right {
	text-align:right;
}		
.k2t-countdown.align-center .inner,
.k2t-countdown.align-right .inner {
	display:inline-block;
}

	/* Style: square fill color; */
.k2t-countdown.countdown-square-fill .ele .num{
	background: #ffbe2a;
	border: none;
	color: #fff;
}

	/* Style: circle; */
.k2t-countdown.countdown-circle .ele .num{
	border-radius: 50%;
}

	/* Style: circle fill color; */
.k2t-countdown.countdown-circle-fill .ele .num{
	border-radius: 50%;
	background: #ffbe2a;
	border: none;
	color: #fff;
}

	/* Style: solid; */
.k2t-countdown.countdown-solid .ele .num{
	border-left: 0;
	border-top: 0;
	border-bottom: 0;
	width: 130px;
}
.k2t-countdown.countdown-solid .ele:last-child .num{
	border-right: 0;
}
.k2t-countdown.countdown-solid .ele .bulkhead{
	display: none;
}
	
/* COUNTER
---------------------------------------------------------------------------------------- */
.k2t-counter {
	margin: 0 0 10px;
	clear: both;
}
.k2t-counter .counter-inner {
	text-align: center;
}
.k2t-counter.icon-left .counter-inner {
	text-align: left;
}
.k2t-counter .counter-icon {
	font-size: 32px;
	width: 88px;
	height: 88px;
	line-height: 88px;
	margin: auto;
	text-align:center;
}
.k2t-counter .counter-number .number {
	opacity: 0;
	font-size: 30px;
	font-weight: 700;
}
.k2t-counter .title {
	font-size: 16px;
	display: block;
	color: #949494;
}
.k2t-counter .desc p {
	margin-bottom:10px;
}
.k2t-counter.icon-left .counter-icon,
.k2t-counter.icon-left .icon-graphic {
	float: left;
    text-align: center;
}
.k2t-counter.icon-left .counter-number,
.k2t-counter.icon-left .counter-text {
	padding-left: 112px;
} 
		
/* Image Grid
---------------------------------------------------------------------------------------- */
.wpb_image_grid_ul{
	margin: 0 auto;
}

/* SLIDER
---------------------------------------------------------------------------------------- */
.image-slider img {
	width:100%;
}
.image-slide {
	position:relative;
}
.image-slide a,
.image-slide a:hover {
	text-decoration:none;
	color:inherit;
}
.caption {
	position:absolute;
	width:100%;
	left:5%;
	top:5%;
	max-width:500px;
	padding:24px;
}
.caption-top {
	top:5%;
	bottom:auto;
}
.caption-bottom {
	top:auto;
	bottom:5%;
}
.caption-left {
	left:5%;
	right:auto;
}
.caption-right {
	text-align:right;
	left:auto;
	right:5%;
}
.image-slide .caption .title {
	font-weight:800;
	font-size:22px;
	line-height:1.6;
	display:inline;
	position: relative;
	z-index: 1;
}
.image-slide .caption .desc{
	position: relative;
	z-index: 1;
}
.image-slide .caption p {
	margin-bottom:0;
	display:inline;
}
.image-slide .caption .caption-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}
	
	
/* CAROUSEL
---------------------------------------------------------------------------------------- */
.k2t-carousel .swiper-slide-inner {
	padding:10px;
}
.k2t-carousel.carousel-nopadding .swiper-slide-inner {
	padding:0;
}	
.k2t-carousel .k2t-swiper-navi a {
	color:#aaa;
	background:#e9e9e9;
	box-shadow:0 -2px 0 rgba(0,0,0,.06) inset;
	-webkit-box-shadow:0 -2px 0 rgba(0,0,0,.06) inset;
	-moz-box-shadow:0 -2px 0 rgba(0,0,0,.06) inset;
	width:36px;
	height:36px;
	font-size:14px;
}
.k2t-carousel .k2t-swiper-navi a i {
	line-height:36px;
}	
.k2t-carousel .k2t-swiper-navi a:hover {
	background:#ffbe2a;
	color:#fff;
}	
.k2t-carousel .k2t-swiper-navi .next {
	right:-50px;
}
.k2t-carousel .k2t-swiper-navi .prev {
	left:-50px;
}

	/* Style 2 */
.k2t-carousel.style_2 .sync2{
	display: inline-block !important;
    margin: 0 -10px;
    width: calc(100% + 20px);
}
.k2t-carousel.style_2 .sync1 .owl-item .wpb_single_image .entry-image img{
	width: 100%;
}
.k2t-carousel.style_2 .sync2 .owl-item{
	padding: 0 10px;
}

	
	
/* BRANDS
---------------------------------------------------------------------------------------- */
.k2t-brands {
	display:block;
	margin:0 0 20px;
}
	
	/* layout */
.brand-table {
	display:table;
	width:100%;
}
.brand-row {
	display:table-row;
}
.brand-cell {
	display:table-cell;
	vertical-align:top;
}
.brands-1-columns .brand-cell {
	width:100%;
}
.brands-2-columns .brand-cell {
	width:50%;
}
.brands-3-columns .brand-cell {
	width:33.33%;
}
.brands-4-columns .brand-cell {
	width:25%;
}
.brands-5-columns .brand-cell {
	width:20%;
}
.brands-6-columns .brand-cell {
	width:16.66%;
}
.brands-7-columns .brand-cell {
	width:14.28%;
}
.brands-8-columns .brand-cell {
	width:12.5%;
}	
	
	/* has padding */
.k2t-brands.has-padding .brand-cell {
	padding:6px;
}
	
	/* grayscale */
.k2t-brands.enable-grayscale	.brand-cell {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
}
.k2t-brands.enable-grayscale	.brand-cell:hover {
	-webkit-filter:none;
	-moz-filter:none;
	-ms-filter:none;
	-o-filter:none;
	filter:none;
}	
	
/* CALLOUT
---------------------------------------------------------------------------------------- */
.k2t-callout {
	display:block;
	position:relative;
	clear:both;
}
.k2t-callout .callout-content {
	float:left;
	width:80%;
	text-align:right;
}
.k2t-callout .callout-button {
	float:right;
	width:20%;
}	
.k2t-callout .title {
	margin-bottom:5px;
	font-size:32px;
	font-weight:normal;
}
.k2t-callout .callout-icon {
	display:block;
	float:left;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	text-align:center;
	margin-right:20px;
	width:90px;
	height:90px;
	font-size:44px;
	color:#fff;
	background:#ffbe2a;
	box-shadow:-2px 2px 6px rgba(0,0,0,.1);
	-webkit-box-shadow:-2px 2px 6px rgba(0,0,0,.1);
	-moz-box-shadow:-2px 2px 6px rgba(0,0,0,.1);
}
.k2t-callout .callout-icon i {
	line-height:90px;
}
.k2t-callout .text {
	overflow:hidden;
}		
.k2t-callout .callout-button {
	padding-left:16px;
	text-align:right;
	padding-top:16px;
}
	
	/* has border*/
.k2t-callout.has-border {
	padding:40px 0;
}	
.k2t-callout.has-border:before,
.k2t-callout.has-border:after {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:1px;
	background:url(../images/dot.html) repeat-x top left;
	background-size:4px 1px;
	-webkit-background-size:4px 1px;
	-moz-background-size:4px 1px;
	content:"";
}
.k2t-callout.has-border:after {
	top:auto;
	bottom:0;
}
	
	/* text white */
.text-white .k2t-callout .callout-icon {
	color:#ffbe2a;
	background:#fff;
}	
.text-white .k2t-callout .callout-icon i {
	color:#ffbe2a;
}
	
	/* transaprent */
.k2t-callout .callout-button .button-transparent a {
	border:2px solid #fff;
	border-color:rgba(255,255,255,.5);
	background:none;
	line-height:40px;
}
	
/* ICONLIST
---------------------------------------------------------------------------------------- */	
.k2t-iconlist {
	margin:0 0 10px;
}
.k2t-iconlist ul,
.k2t-iconlist ol {
	list-style:none !important;
	margin:0;
	padding:0;
}
.k2t-iconlist li {
	padding:5px 0;
	position:relative;
	margin:0 !important;
}
.k2t-iconlist li i {
	margin-right:8px;
}
	
	/* align right */
.k2t-iconlist.align-right {
	text-align:right;
}
.k2t-iconlist.align-right i {
	margin-right:auto;
	margin-left:8px;
}	
	
/* TESTIMONIAL
---------------------------------------------------------------------------------------- */
.k2t-testimonial {
	position:relative;
	clear: both;
	display: inline-block;
	width: 100%;
}
.k2t-testimonial .testimonial-inner {
	position:relative;
	z-index:20;
}	

	/* content */
.testimonial-content {
	display:block;
	overflow:hidden;
	padding-bottom:15px;
}
.testimonial-content .speech {
	position:relative;
	background:#fafafa;
	padding:20px;
	border: 1px solid #ededed;
	-wekit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.testimonial-content .speech p {
	font-family: "Georgia",​Times,​serif;
	font-style:italic;
	}
.testimonial-content .speech:after {
	background:#fafafa;
    content: "";
    height: 10px;
    position: absolute;
    width: 10px;
	left:45px;
    bottom: -5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 1px 1px 0 0 #e4e4e4;
    -moz-box-shadow: 1px 1px 0 0 #e4e4e4;
    box-shadow: 1px 1px 0 0 #e4e4e4;
}
.testimonial-inner.right .testimonial-content .speech:after {
	right: 45px;
	left:auto;
}
.testimonial-info {
	margin-top: 5px;
}
.testimonial-info img {
	padding: 5px;
	border: 1px solid #e9e9e9;
	width: 100px;
	height: 100px;
	float: left;
	background: #fff;
	-wekit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.testimonial-inner.right .testimonial-info img {
	float: right;
}
.testimonial-meta {
	padding: 28px 0 0 120px;
	position: relative;
}
.testimonial-inner.right .testimonial-meta {
	text-align: right;
	padding-left: 0;
	padding-right: 120px;
}
.testimonial-inner.right .testimonial-meta *{
	text-align: right;
}
.testimonial-meta > span {
	display: block;
}
.testimonial-author {
	font-size: 100%;
	font-weight: 700;
	letter-spacing: 1px;
	color: #4f4f4f;
	text-transform: uppercase;
	font-family: 'Relaway', sans-serif;
}
.testimonial-position {
	font-size: 86%;
	color: #868686;
	opacity: .6;
}
.testimonial-from {
	margin-top: 3px;
	font-size: 12px;
}
.testimonial-from:hover {
	color: #868686;
}

	/* Style 2 */
.k2t-testimonial.style-2 {
	text-align: center;
}
.k2t-testimonial.style-2 .testimonial-avatar {
	width: 100px;
	height: 100px;
	overflow: hidden;
	padding: 5px;
	border: 1px solid #e2e2e2;
	background: #fff;
	margin: auto;
}
.k2t-testimonial.style-2 .testimonial-avatar,
.k2t-testimonial.style-2 .testimonial-avatar img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
.k2t-testimonial.style-2 .testimonial-avatar img {
	width: 100%;
	height: auto;
	max-height: 100%;
}
.k2t-testimonial.style-2 .testimonial-content {
	padding: 0;
}
.k2t-testimonial.style-2 .testimonial-content .speech {
	border: 0;
	background:none !important;
	padding: 20px;
}
.k2t-testimonial.style-2 .testimonial-content .speech:after,
.k2t-testimonial.style-2 .testimonial-meta:before {
	display: none;
}
.k2t-testimonial.style-2 .testimonial-meta {
	padding: 0;
}
.k2t-testimonial.style-2 .testimonial-position {
	text-transform: none;
	color: #a7a7a7;
}
.k2t-testimonial.style-2 .testimonial-info {
	margin: 0;
	position: relative;
	padding-top: 20px;
}
.k2t-testimonial.style-2 .testimonial-info:before {
	height: 1px;
	width: 350px;
	background: #e1e1e1;
	top: 0;
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -175px;
}

	/* Style 3 */
.k2t-testimonial.style-3 .testimonial-content{
	background: #f5f5f5;
	padding: 20px 10px;
	position: relative;
	overflow: inherit;
}
.k2t-testimonial.style-3 .testimonial-content:after{
	border-left: 20px solid transparent;
    border-top: 30px solid #f5f5f5;
    content: "";
    height: 0;
    left: 35px;
    position: absolute;
    bottom: -24px;
    width: 0;
}
.k2t-testimonial.style-3 .testimonial-content .testimonial-avatar {
    background: none repeat scroll 0 0 #fff;
    display: inline-block;
    float: left;
    height: 70px;
    margin: 6px 15px 5px 0;
    padding: 10px;
    width: 70px;
}
.k2t-testimonial.style-3 .testimonial-content .testimonial-avatar img {
    max-width: 50px;
    width: 100%;
}
.k2t-testimonial.style-3 .testimonial-content .speech{
	background: none;
	border: none;
	padding: 0;
}
.k2t-testimonial.style-3 .testimonial-content .speech:after{
	display: none; 
}
.k2t-testimonial.style-3 .testimonial-meta{
	padding: 15px 0 0 60px;
}
.k2t-testimonial.style-3 .testimonial-inner.right .testimonial-meta{
	text-align: left;
}
.k2t-testimonial.style-3 .testimonial-author{
	font-size: 90%;
	text-transform: none;
	font-weight: 500;
	color: #767676;
}
	
/* PARALLAX
---------------------------------------------------------------------------------------- */
.k2t-parallax {
	background-position:center center;
	position:relative;
	overflow:hidden;
}
.k2t-parallax .bg-element,
.k2t-fullwidth .bg-element {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	background-attachment:fixed;
	z-index:10;
}
.k2t-parallax.parallax-2 .bg-element {
	top:-30%;
	left:-30%;
	width:160%;
	height:160%;
	background-attachment:scroll;
}	

/* TEXT BLOCK
---------------------------------------------------------------------------------------- */
.k2t-text-block {
	display:block;
	margin:0 0 20px;
}
.k2t-text-block .layer-table {
	display:table;
}
.k2t-text-block .layer-row {
	display:table-row;
}
.k2t-text-block .block-1,
.k2t-text-block .block-2 {
	display:table-cell;
}
.k2t-text-block .block-1 {
	width:16%;
	vertical-align:top;
	text-align:right;
}
.k2t-text-block.has-separator .block-1 {
	padding-right:30px;
}
.k2t-text-block .block-2 {
	padding-left:30px;
}
.k2t-text-block p:last-child,
.k2t-text-block ul:last-child,
.k2t-text-block ol:last-child {
	margin-bottom:0;
}
	
.k2t-text-block.heading-align-top .block-1 {
	vertical-align:top;
}
.k2t-text-block.heading-align-bottom .block-1 {
	vertical-align:bottom;
}
.k2t-text-block.heading-align-middle .block-1 {
	vertical-align:middle;
}		

.k2t-text-block.has-separator .block-1 {
	border:none;
	position:relative;
}
.k2t-text-block.has-separator .block-1:after {
	position:absolute;
	content:"";
	top:0;
	right:0;
	width:1px;
	height:100%;
	background:url(../images/dot2.html) repeat-y top left;
	background-size:1px 4px;
	-webkit-background-size:1px 4px;
	-moz-background-size:1px 4px;
}
.k2t-text-block h1,
.k2t-text-block h2,
.k2t-text-block h3,
.k2t-text-block h4,
.k2t-text-block h5,
.k2t-text-block h6 {
	margin-bottom:20px;
}
.k2t-text-block .block-1 h1,
.k2t-text-block .block-1 h2,
.k2t-text-block .block-1 h3,
.k2t-text-block .block-1 h4,
.k2t-text-block .block-1 h5,
.k2t-text-block .block-1 h6 {
	padding-bottom:20px;
	position:relative;
}
.k2t-text-block .block-1 h1:after,
.k2t-text-block .block-1 h2:after,
.k2t-text-block .block-1 h3:after,
.k2t-text-block .block-1 h4:after,
.k2t-text-block .block-1 h5:after,
.k2t-text-block .block-1 h6:after {
	position:absolute;
	content:"";
	border-top:1px solid;
	width:60px;
	bottom:0;
	right:6px;
	opacity:0.5;
}
	
	
	/* TEXT WHITE */
.text-white .k2t-text-block.has-separator .block-1:after {
	background-image:url(../images/dot2-white.html);
	opacity:0.5;
}	
	

/* SPACER
---------------------------------------------------------------------------------------- */
.k2t-spacer {
	display:block;
	clear:both;
	height:30px;
}
		
/* IMAGE GRAYSCALE
---------------------------------------------------------------------------------------- */
.image-grayscale {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
}
.image-grayscale:hover {
	-webkit-filter:none;
	-moz-filter:none;
	-ms-filter:none;
	-o-filter:none;
	filter:none;
}	
	
/* ICONS
---------------------------------------------------------------------------------------- */
.k2t-icon {
	display:inline-block;
}
	
/* QUOTE
---------------------------------------------------------------------------------------- */
.k2t-quote blockquote {
	letter-spacing:1px;
	font-family:"Open Sans", sans-serif;
	text-transform:uppercase;
	padding-left:0;
	border:none;
	text-align:center;
}
.k2t-quote blockquote p {
	font-size:24px;
	font-weight:700;
	margin-bottom:26px;
}
.k2t-quote blockquote cite {
	float:none;
	margin-right:0;
	font-style:italic;
}
.k2t-quote blockquote cite a {
	color:inherit;
	text-decoration:none;
}	
	
/* TAB STICKY
---------------------------------------------------------------------------------------- */
.k2t-tab-sticky {
	display:block;
	position:relative;
	border:1px solid #ededed;
	background:#f9f9f9;
}
.tabsticky-nav {
	display:block;
	float:left;
	width:300px;
	padding-top:40px;
}
.tabsticky-content {
	overflow:hidden;
	display:block;
	padding-left:60px;
	padding-right:50px;
	background:#fff;
	border-left: 1px solid #ededed;
}
.tabsticky-content .k2t-section {
	opacity: 0;
	display: none;
	visibility: hidden;
	-webkit-transition: opacity 0.15s linear 0s;
	-moz-transition: opacity 0.15s linear 0s;
	transition: opacity 0.15s linear 0s;
}
.tabsticky-content .k2t-section.active {
	opacity: 1;
	display: block;
	visibility: visible;
}
.k2t-tab-sticky-footer {
	position:absolute;
	bottom:50px;
}
		
	/* navigation */
.tabsticky-nav	{
	font-family:"Raleway", sans-serif;
	position:relative;
}
.tabsticky-nav ul {
	list-style:none;
	margin:0;
	padding:0;
}
.tabsticky-nav ul li {
	display:block;
}
.tabsticky-nav ul li a {
	display:block;
	text-align:right;
	text-decoration:none;
	padding:14px 32px 14px 18px;
	font-size:14px;
	position:relative;
	color:#767676;
	border-top:1px dotted #ededed;
	transition:all .5s ease-out;
	-webkit-transition:all .5s ease-out;
	-moz-transition:all .5s ease-out;
}
.tabsticky-nav ul li a:hover,
.tabsticky-nav ul li.active a {
	color:#ffbe2a;
}
.tabsticky-nav ul li:first-child a {
	border:none;
}

/* Tabs
---------------------------------------------------------------------------------------- */
.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper.wpb_wrapper .wpb_tab,
.wpb_content_element.wpb_tabs .wpb_tabs_nav li.ui-tabs-active, .wpb_content_element.wpb_tabs .wpb_tabs_nav li:hover{
	background: none;
	padding: 0;
}
.wpb_content_element.wpb_tabs .wpb_tabs_nav li {
	float: none;
	display: inline-block;
}
.wpb_content_element.wpb_tabs .wpb_tabs_nav li a span{
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
}
.wpb_content_element.wpb_tabs .wpb_tabs_nav li a{
	color: #4f4f4f;
	padding: 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_content_element.wpb_tabs .wpb_tabs_nav li a i{
	display: inline-block;
    float: left;
    font-size: 130%;
    margin-right: 10px;
    margin-top: 1px;
    color: #7f7f7f;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_content_element.wpb_tabs .wpb_tabs_nav li.top a i{
	display: block;
    float: none;
    font-size: 200%;
    margin-bottom: 3px;
    margin-right: 0;
    text-align: center;
}
.wpb_content_element.wpb_tabs.center .wpb_tabs_nav{
	text-align: center;
}
.wpb_content_element.wpb_tabs.right .wpb_tabs_nav{
	text-align: right;
}

	/* Tabs style outline */
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav{
	margin-bottom: 15px;
}
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav li{
	padding: 11px 13px;
	border-width: 2px;
	border-style: solid;
	border-color: transparent;
	margin-right: 10px;
	border-radius:2px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_content_element.wpb_tabs.outline.center .wpb_tabs_nav li{
	margin-left: 5px;
	margin-right: 5px;
}
.wpb_content_element.wpb_tabs.outline.right .wpb_tabs_nav li{
	margin-left: 10px;
	margin-right: 0px;
}
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav li.ui-tabs-active, 
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav li.ui-tabs-active * {
	color: #ffbe2a;
	border-color: #ffbe2a;
}
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav li:hover,
.wpb_content_element.wpb_tabs.outline .wpb_tabs_nav li:hover * {
	color: #ffbe2a;
}

	/* Tabs style Fill */
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav{
	margin-bottom: 15px;
}
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li{
	padding: 13px 13px;
	border-color: transparent;
	margin-right: 10px;
	border-radius:2px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_content_element.wpb_tabs.fill.center .wpb_tabs_nav li{
	margin-left: 5px;
	margin-right: 5px;
}
.wpb_content_element.wpb_tabs.fill.right .wpb_tabs_nav li{
	margin-left: 10px;
	margin-right: 0px;
}
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li.ui-tabs-active,
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li.ui-tabs-active:hover {
	background-color: #ffbe2a;
	color:#fff;
}
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li:hover a,
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li:hover a i {
	color: #ffbe2a;
	}
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li.ui-tabs-active *,
.wpb_content_element.wpb_tabs.fill .wpb_tabs_nav li.ui-tabs-active:hover i{
	color: #fff;
}

	/* Tabs style solid */
.wpb_content_element.wpb_tabs.solid .wpb_tabs_nav li{
	margin-right: 40px;
	margin-bottom: 22px;
}
.wpb_content_element.wpb_tabs.solid.center .wpb_tabs_nav li{
	margin-left: 20px;
	margin-right: 20px;
}
.wpb_content_element.wpb_tabs.solid.right .wpb_tabs_nav li{
	margin-left: 40px;
	margin-right: 0px;
}
.wpb_content_element.wpb_tabs.solid .wpb_tabs_nav li.ui-tabs-active a, 
.wpb_content_element.wpb_tabs.solid .wpb_tabs_nav li:hover a ,
.wpb_content_element.wpb_tabs.solid .wpb_tabs_nav li.ui-tabs-active a i, 
.wpb_content_element.wpb_tabs.solid .wpb_tabs_nav li:hover a i {
	color: #ffbe2a;
}

	/* Tabs style bottom_line */
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav{
	border-bottom: 2px solid #e4e4e4;
	margin-bottom: 10px;
}
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li{
	padding: 20px;
	margin-right: 0;
}
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li:hover a,
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li.ui-tabs-active a,
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li:hover a i,
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li.ui-tabs-active a i {
	color: #ffbe2a;
	}
.wpb_content_element.wpb_tabs.bottom_line.left .wpb_tabs_nav li:first-child{
	padding-left: 0;
}
.wpb_content_element.wpb_tabs.bottom_line.right .wpb_tabs_nav li:last-child{
	padding-right: 0;
}
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li.ui-tabs-active, 
.wpb_content_element.wpb_tabs.bottom_line .wpb_tabs_nav li:hover {
	border-bottom: 2px solid #ffbe2a;
	margin-bottom: -2px;
}

/* Horizontal tabs
---------------------------------------------------------------------------------------- */
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper{
	display: table;
}
.wpb_tour.wpb_content_element .wpb_wrapper.wpb_tour_tabs_wrapper > *{
	display: table-cell;
	float: none;
	width: 40%;
	padding: 10px;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tour_next_prev_nav{
	display: none;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav{
	width: 10%;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li{
	background: none;
	position: relative;
	margin: 0;
	list-style: none;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
	border-radius:2px;
	  border-right: 2px solid #e4e4e4;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li.ui-tabs-active:after, 
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li:hover:after {
	border-right: 2px solid #ffbe2a;
    content: "";
    display: block !important;
    height: 100%;
    position: absolute;
    right: -2px;
    top: 0;
    width: 100%;
	
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li > a {
	color: #4f4f4f;
    cursor: pointer;
    font-family: "Raleway",sans-serif;
    font-weight: 600;
    padding: 13px 35px 13px 0;
    display: table;
    width: 100%;
    position: relative;
    z-index: 10;
    -webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li.ui-tabs-active > a, 
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li:hover > a{
	color: #ffbe2a;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li > a > *{
	display: table-cell;
    vertical-align: middle;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav > li > a > i{
    font-size: 130%;
    text-align: left;
    width: 70px;
}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .ui-tabs-panel > .wpb_text_column{
	padding: 13px 0 30px 20px;
}
.wpb_tour.wpb_content_element .wpb_wrapper.wpb_tour_tabs_wrapper .wpb_single_image img{
	width: 100%;
}
	
	/* Tabs style outline */
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav{
	border: none;
}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav > li{
	text-align: center;
	border: 2px solid transparent;
}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav > li > a{
	padding-left: 30px;
	padding-right: 30px;
	white-space: nowrap;
}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav > li:after{
	border: none;
}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav > li.ui-tabs-active {
	border-color: #ffbe2a;
}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .wpb_tabs_nav > li:hover a {
	color: #ffbe2a;
	}
.wpb_tour.wpb_content_element.outline .wpb_tour_tabs_wrapper .ui-tabs-panel > .wpb_text_column{
	padding-left: 35px;
}

/* Single Image
---------------------------------------------------------------------------------------- */
.wpb_single_image {
	max-width: 100%;
	overflow: hidden;
}
.wpb_single_image .entry-image .popup-icon{
	display: none;
}
.wpb_single_image .entry-title{
	text-align: center;
	color: #696969;
	margin-top: 13px;
}

	/* Style: Rounded */
.wpb_single_image.rounded img{
	border-radius: 2px;
}

	/* Style: Border */
.wpb_single_image.border .image-link{
	border: 5px solid #e1e1e1;
	max-width: 100%;
	display: inline-block;
}

	/* Style: Outline  */
.wpb_single_image.outline .image-link{
	border: 1px solid #e1e1e1;
	padding: 5px;
	max-width: 100%;
	display: inline-block;
}
	/* Style: Shadow  */
.wpb_single_image.shadow{
	overflow: inherit;
}
.wpb_single_image.shadow img{
	-webkit-box-shadow: 0 0 4px rgba(0,0,0, .65);
	-moz-box-shadow: 0 0 4px rgba(0,0,0, .65);
	box-shadow: 0 0 4px rgba(0,0,0, .65);
}

	/* Hover Style: Banner  */
.wpb_single_image.banner .entry-image {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}
.wpb_single_image.banner .entry-image figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}
.wpb_single_image.banner .entry-image figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
	width: 100%;
}
.wpb_single_image.banner .entry-image figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.wpb_single_image.banner .entry-image figure figcaption::before,
.wpb_single_image.banner .entry-image figure figcaption::after {
	pointer-events: none;
}
.wpb_single_image.banner .entry-image figure figcaption,
.wpb_single_image.banner .entry-image figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wpb_single_image.banner .entry-image figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.wpb_single_image.banner .entry-image figure .wpb_heading {
	color: #fff;
    font-family: "Raleway",sans-serif;
    font-size: 190%;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    top: calc(50% - 80px);
    line-height: 46px;
    -webkit-transition: all .2s ease-in-out 0.15s;
	-moz-transition:    all .2s ease-in-out 0.15s;
	-o-transition:      all .2s ease-in-out 0.15s;
	transition:         all .2s ease-in-out 0.15s;
}
.wpb_single_image.banner .entry-image figure .image-content{
	font-size: 110%;
    text-transform: uppercase;
    padding: 0.5em 2em;
	text-transform: none;
	margin-top: 60px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition:    all .3s ease-in-out 0s;
	-o-transition:      all .3s ease-in-out 0s;
	transition:         all .3s ease-in-out 0s;
}
.wpb_single_image.banner figure.effect-layla {
	background: #000000;
}
.wpb_single_image.banner figure.effect-layla figcaption {
	padding: 3em;
}
.wpb_single_image.banner figure.effect-layla figcaption::before,
.wpb_single_image.banner figure.effect-layla figcaption::after {
	position: absolute;
	content: '';
}
.wpb_single_image.banner figure.effect-layla figcaption::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}
.wpb_single_image.banner figure.effect-layla figcaption::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}
.wpb_single_image.banner figure.effect-layla img{
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}
.wpb_single_image.banner figure.effect-layla img,
.wpb_single_image.banner figure.effect-layla figcaption::before,
.wpb_single_image.banner figure.effect-layla figcaption::after{
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}
.wpb_single_image.banner figure.effect-layla:hover img {
	opacity: 0.7;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.wpb_single_image.banner figure.effect-layla:hover figcaption::before{
	-webkit-transform: scale(0,1);
	-moz-transform: scale(0,1);
	-o-transform: scale(0,1);
	transform: scale(0,1);
}
.wpb_single_image.banner figure.effect-layla:hover figcaption::after {
	-webkit-transform: scale(1,0);
	-moz-transform: scale(1,0);
	-o-transform: scale(1,0);
	transform: scale(1,0);
}
.wpb_single_image.banner figure.effect-layla:hover .image-content{
	opacity: 0;
	-webkit-transform: scale(3);
	-moz-transform: scale(3);
	-o-transform: scale(3);
	transform: scale(3);
}
.wpb_single_image.banner figure.effect-layla:hover .wpb_heading {
	opacity: 0;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}
.wpb_single_image.banner figure.effect-layla:hover figcaption::after,
.wpb_single_image.banner figure.effect-layla:hover .wpb_heading,
.wpb_single_image.banner figure.effect-layla:hover .image-content,
.wpb_single_image.banner figure.effect-layla:hover img {
	
}

/* Post Grid
---------------------------------------------------------------------------------------- */
.wpb_teaser_grid.align-left{
	text-align: left;
}
.wpb_teaser_grid.align-center{
	text-align: center;
}
.wpb_teaser_grid.align-right{
	text-align: right;
}
.wpb_teaser_grid .post-thumb img{
	width: 100%;
}
.wpb_teaser_grid .post-title, .wpb_teaser_grid .post-title a{
	color: #3d3d3d;
    font-size: 105%;
    font-weight: 600;
    text-transform: uppercase;
}
.wpb_teaser_grid .post-title:hover, .wpb_teaser_grid .post-title:hover a{
	color: #ffbe2a;
}
.wpb_teaser_grid .post-title{
	padding-top: 18px;
}
.wpb_teaser_grid .entry-content{
	padding-top: 10px !important;
}
.wpb_teaser_grid .vc_read_more{
	display: inline-block;
}

	/* Style: boxed;  */
.wpb_teaser_grid.style-boxed .isotope-inner .article-inner > *{
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	padding-left: 20px;
	padding-right: 20px;
}
.wpb_teaser_grid.style-boxed .isotope-inner .article-inner > *:first-child{
	border-top: 1px solid #e5e5e5;;
}
.wpb_teaser_grid.style-boxed .isotope-inner .article-inner > *:last-child{
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 35px;
}
.wpb_teaser_grid.style-boxed .isotope-inner .article-inner .post-thumb{
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.wpb_teaser_grid.style-boxed .isotope-inner .article-inner .post-thumb .post-thumbnail{
	margin-bottom: 0;
}

/* LATEST POSTS
---------------------------------------------------------------------------------------- */
.k2t-latest-posts .latest-post {
	display:block;
	float:left;
	padding:0 10px;
	margin-bottom:30px;
}
.k2t-latest-posts.cols-1 .latest-post {
	width:100%;
}
.k2t-latest-posts.cols-2 .latest-post {
	width:50%;
}
.k2t-latest-posts.cols-3 .latest-post {
	width:33.33%;
}
.k2t-latest-posts.cols-4 .latest-post {
	width:25%;
}
.k2t-latest-posts.cols-5 .latest-post {
	width:20%;
}
.k2t-latest-posts.cols-2 .latest-post(2n+1) {
	clear:left;
}
.k2t-latest-posts.cols-3 .latest-post(3n+1) {
	clear:left;
}
.k2t-latest-posts.cols-4 .latest-post(4n+1) {
	clear:left;
}
.k2t-latest-posts.cols-5 .latest-post(5n+1) {
	clear:left;
}				
	
.ltp-thumb {
	margin-bottom:20px;
}
.ltp-title-meta {
	position:relative;
	padding-bottom:10px;
	margin-bottom:10px;
}	
.ltp-title-meta:after {
	content:"";
	width:50px;
	height:4px;
	background:#ffbe2a;
	position:absolute;
	bottom:0;
	left:0;
	opacity:0.3;
}	
.ltp-title {
	margin-bottom:0px;
	line-height:1.2;
	font-size:18px;
	text-transform:uppercase;
	font-weight:bold;
}
.ltp-title a {
	transition:all .3s ease-out;
	-webkit-transition:all .3s ease-out;
	-moz-transition:all .3s ease-out;
	text-decoration:none;
}	
.ltp-title a:hover {
	color:#555;
}


.ltp-meta {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:10px;
	margin-bottom:10px;
	color:#333;
}	
.ltp-meta .ele {
	display:block;
	float:left;
}
.ltp-meta .ele:last-child {
	margin-right:0;
}
.ltp-meta .ele:after {
	content:"|";
	margin:0 8px;
}
.ltp-meta .ele:last-child:after	{
	display:none;
}
.ltp-meta a {
	color:#333;
}

/* VC Separator
---------------------------------------------------------------------------------------- */
.vc_separator.vc_sep_shadow .vc_sep_holder .vc_sep_line{
	height: 1px;
    position: relative;
}
.vc_separator.vc_sep_shadow .vc_sep_holder .vc_sep_line:after, .vc_separator.vc_sep_shadow .vc_sep_holder .vc_sep_line:before {
    background: url(../images/shadow-divider.html) no-repeat;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
}
.vc_separator.vc_sep_shadow .vc_sep_holder .vc_sep_line:before {
    background-position: right top;
    left: auto;
    right: 0;
    top: 0;
}
	
/* RECENT PROJECTS SLIDER SHORTCODE
---------------------------------------------------------------------------------------- */
.k2t-recent-projects-slider .swiper-slide .project-item {
	transition:all .2s;
	-webkit-transition:all .2s;
	-moz-transition:all .2s;
	position:relative;
	background:#ffbe2a;
}
.project-item img {
	position:relative;
	z-index:10;
	display:block;
	transition:all .3s ease-out;
	-webkit-transition:all .3s ease-out;
	-moz-transition:all .3s ease-out;
}
.k2t-recent-projects-slider .swiper-slide .project-item:hover img	{
	opacity:0.1;
}
.k2t-recent-projects-slider .project-item .infobox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	z-index: 20;
	display: none;
	text-align:center;
	color:#fff;
}
.k2t-recent-projects-slider .swiper-slide .project-item:hover .infobox {
	display:block;
}
.k2t-recent-projects-slider .project-item .infobox .layer-table {
	display: table;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.k2t-recent-projects-slider .project-item .infobox .layer-cell {
	display: table-cell;
	vertical-align: middle;
}
.k2t-recent-projects-slider .project-item img {
	width:100%;
}	
.k2t-recent-projects-slider .project-item .infobox .title {
	color:#fff;
	margin-bottom:0;
}
.k2t-recent-projects-slider .project-item .infobox .desc p {
	margin-bottom:0;
}	
	
.k2t-recent-projects-slider .k2t-swiper-navi a {
	color:#fff;
	background:transparent;
	border:2px solid #fff;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	opacity:0;
}
.k2t-recent-projects-slider:hover .k2t-swiper-navi a {
	opacity:1;
}
	
	/* 3d slider */
.k2t-recent-projects-slider.k2t-3d-slider .swiper-slide .project-item {
	opacity:0.5;
	background:#fff;
}
.k2t-recent-projects-slider.k2t-3d-slider .swiper-slide-active .project-item {
	opacity:1;
	background:#ffbe2a;
}
.k2t-recent-projects-slider.k2t-3d-slider .project-item:hover .infobox {
	display:none;
}
.k2t-recent-projects-slider.k2t-3d-slider .swiper-slide-active .project-item:hover .infobox	{
	display:block;
}

/* TIPSY
---------------------------------------------------------------------------------------- */
.tipsy { 
	position: absolute; 
	padding: 5px 6px; 
	z-index: 100000;
	font-family: 'PT Sans', sans-serif;
	font-size:14px;
	-webkit-animation: tipsyzoom 0.2s ease-out;
    -moz-animation: tipsyzoom 0.2s ease-out;
    animation: tipsyzoom 0.2s ease-out
}
.tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; }

/* Rounded corners */
.tipsy-inner { border-radius: 1px; -moz-border-radius: 1px; -webkit-border-radius: 1px; }

/* Uncomment for shadow */
/*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/

.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }

/* Rules to colour arrows */
.tipsy-arrow-n { border-bottom-color: #000; }
.tipsy-arrow-s { border-top-color: #000; }
.tipsy-arrow-e { border-left-color: #000; }
.tipsy-arrow-w { border-right-color: #000; }

.tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none;  border-left-color: transparent; border-right-color: transparent;}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-e .tipsy-arrow { right: 1px; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
.tipsy-w .tipsy-arrow { left: 1px; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }

@-webkit-keyframes tipsyzoom {
0% {
    transform:scale(0.7);
	-moz-transform:scale(0.7);
	-webkit-transform:scale(0.7);
    }
60% {
   transform:scale(1.1);
   -moz-transform:scale(1.1);
   -webkit-transform:scale(1.1);
    }
	
100% {
   transform:scale(1);
   -moz-transform:scale(1);
   -webkit-transform:scale(1);
    }
}
@-moz-keyframes tipsyzoom {
from {
	transform:scale(0.7);
    }
to {
    transform:scale(1);
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
    }
}
@keyframes tipsyzoom {
    from {
        transform:scale(0.7);
        } to {
       transform:scale(1);
	   -webkit-transform:scale(1);
	   -moz-transform:scale(1);
        }
}	
.tipsy-inner {
	border-radius:0px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	padding: 6px 9px 5px 9px;
	background:#ffbe2a;
}
.tipsy .tipsy-arrow { border-style:solid;}	
.tipsy-n .tipsy-arrow {
	border-width: 5px 0 0 5px;
	border-color: transparent transparent transparent #ffbe2a;
	margin-left:-3px;
}
.tipsy-s .tipsy-arrow {
	border-width: 5px 5px 0 0;
	border-color: #ffbe2a transparent transparent transparent;
	margin-left:-3px;
}
.tipsy-w .tipsy-arrow {
	border-width: 0 5px 5px 0;
	border-color: transparent #ffbe2a transparent transparent;
	margin-top:-3px;
}
.tipsy-e .tipsy-arrow {
	border-width: 5px 5px 0 0;
	border-color: #ffbe2a transparent transparent transparent;
	margin-top:-3px;
}
/* TOOLTIPSTER
---------------------------------------------------------------------------------------- */
/* This is the base styling required to make all Tooltipsters work */
.k2-tooltipster .tooltipster-markup {
	display:none;
}
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
	line-height:1.7;
	font-size:14px;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}

	/* CUSTOM CONTENT FROM THEME */
.tooltipster-default {
	border-radius:1px;
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border:none;
	background:#f9f9f9;
	border:1px solid #d5d5d5;
	box-shadow:5px 5px 35px rgba(0,0,0,.3);
	-webkit-box-shadow:5px 5px 35px rgba(0,0,0,.3);
	-moz-box-shadow:5px 5px 35px rgba(0,0,0,.3);
}	
.tooltipster-default .tooltipster-content {
}	
.tooltipster-image {
	display:block;
	text-align:center;
}
.tooltipster-header {
	position:relative;
	margin:0 15px;
	padding:8px 0 13px;
}	
.tooltipster-header:after {
	content:"";
	position:absolute;
	left:0;
	bottom:0px;
	width:100%;
	height:5px;
	border-top:1px solid;
	border-bottom:1px solid;
	opacity:0.3;
}
.tooltipster-header h1,
.tooltipster-header h2,
.tooltipster-header h3,
.tooltipster-header h4,
.tooltipster-header h5,
.tooltipster-header h6 {
	margin-bottom:0;
}
.tooltipster-desc {
	display:block;
	overflow:hidden;
	padding:15px;
}
.tooltipster-desc p {
	margin-bottom:0;
	display:block;
	line-height:inherit;
}
	
	
	/* THEME DARK */
.tooltipster-dark {
	border-radius:1px;
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	background:#111;
	color:#fff;
	border:none;
}	
.tooltipster-dark h1,
.tooltipster-dark h2,
.tooltipster-dark h3,
.tooltipster-dark h4,
.tooltipster-dark h5,
.tooltipster-dark h6 {
	color:#fff;
}
	
	
	/* THEME COLOR */
.tooltipster-color {
	border-radius:1px;
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	background:#ffbe2a;
	color:#fff;
	border:none;
}	
.tooltipster-color h1,
.tooltipster-color h2,
.tooltipster-color h3,
.tooltipster-color h4,
.tooltipster-color h5,
.tooltipster-color h6 {
	color:#fff;
}



/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-popup {
	opacity:0;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-o-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;	
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-popup-show {
	opacity:1;
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 0.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-slide {
	margin-top:15px;
	-webkit-transition-property:margin-top, opacity;
	-moz-transition-property: margin-bottom;
	-o-transition-property: margin-bottom;
	-ms-transition-property: margin-bottom;
	transition-property:margin-top, opacity;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
	margin-top:0;
	opacity:1;
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property:margin-top, opacity;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
/* button */
.k2t-btn {
	position:relative;
	text-decoration:none;
	cursor:pointer;
	color:#fff;
	background:#ffbe2a;
	display:inline-block;
	text-align:center;
	height:50px;
	line-height: 50px;
	padding:0 33px;
	transition:all .3s ease-out;
	-webkit-transition:all .3s ease-out;
	-moz-transition:all .3s ease-out;
	font-size: 90%;
	overflow:hidden;
	border-radius: 2px;
	font-family: "Raleway",sans-serif;
    font-weight: 600;
    border-style: solid;
}
.k2t-btn .button-mask {
	position:absolute;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	height:100%;
	display:block;
	opacity:0;
	background:#fff;
	transition:all .2s ease-out;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
}	
.k2t-btn:hover {
	text-decoration:none;
	color:#fff;
}
.k2t-btn:hover .button-mask {
	opacity:0.2;
}
.k2t-btn:active {
	top:1px;
	box-shadow:none;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
}
	
	/* icons */	
.k2t-btn i {
	margin-left:11px;
	font-size:90%;
}
.k2t-btn.btn-icon-left i{
	margin-right:11px;
	margin-left:0;
}	
.k2t-btn.btn-no-content i:first-child {
	margin-left:0;
}
.k2t-btn.btn-no-content.btn-icon-right i:last-child {
	margin-right:0;
}
	
	/* sizes */
.k2t-btn.btn-large {
	height:60px;
	line-height:60px;
	padding:0 50px;
	font-size: 120%;
}
.k2t-btn.btn-small {
	height:35px;
	line-height:36px;
	padding:0 25px;
	font-size: 80%;
}	
	
	/* button pill */
.k2t-btn.btn-pill {
	border-radius:88px;
	-webkit-border-radius:88px;
	-moz-border-radius:88px;
}
.k2t-btn.btn-pill.btn-large {
	border-radius:108px;
	-webkit-border-radius:108px;
	-moz-border-radius:108px;
}
.k2t-btn.btn-pill.btn-small {
	border-radius:68px;
	-webkit-border-radius:68px;
	-moz-border-radius:68px;
}
.k2t-btn.btn-pill.btn-no-content {
	padding:0 32px;
}
.k2t-btn.btn-pill.btn-large.btn-no-content {
	padding:0 19px;
}
.k2t-btn.btn-pill.btn-small.btn-no-content {
	padding:0 11px;
}	

	/* button 3D */
.k2t-btn.btn-3d {
	box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.1) inset;
}				

	/* block */
.k2t-btn.block {
	display:block;
}
	
	/* button with subtitle */
.k2t-btn.btn-has-subtitle {
	height:auto;
	line-height:inherit;
	text-align:left;
	padding:15px 30px;
}
.k2t-btn.btn-has-subtitle .button-text {
	display:block;
}	
.k2t-btn.btn-has-subtitle .button-icon {
	display:block;
	float:right;
	margin-left:16px;
	margin-top:-7px;
	width:40px;
	height:40px;
	text-align:center;
	font-size: 40px;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	color:#fff;
}
.k2t-btn.btn-has-subtitle.btn-icon-left .button-icon {
	float:left;
	display: inline-block;
	margin-left:auto;
	margin-right:16px;
}	
.k2t-btn.btn-has-subtitle .button-icon i {
	line-height:40px;
	margin:0;
}	
.k2t-btn.btn-has-subtitle .text {
	overflow: hidden;
	display: inline-block;
	float: left;
}	
.k2t-btn.btn-has-subtitle .button-main,
.k2t-btn.btn-has-subtitle .button-subtitle {
	display:block;
}
.k2t-btn.btn-has-subtitle .button-main {
	font-size:22px;
}
.k2t-btn.btn-has-subtitle .button-subtitle {
	font-family: 'Open Sans', sans-serif;
	text-transform:uppercase;
	font-size:11px;
	letter-spacing:1px;
}
.k2t-btn.btn-has-subtitle.btn-pill {
	border-radius:52px;
	-webkit-border-radius:52px;
	-moz-border-radius:52px;
	padding-left:36px;
	padding-right:36px;
}

/* Blog post
---------------------------------------------------------------------------------------- */
.k2t-blog-post {
	overflow: hidden;
}
.k2t-blog-post .article-inner > * {
	width: 50%;
	float: left;
}
.k2t-blog-post .post-thumbnail{
	margin-bottom: 0;
}
.k2t-blog-post .post-thumbnail .k2t-time{
	background: #fff;
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 0 15px 3px;
}
.k2t-blog-post .post-thumbnail time{
	font-size: 75%;
	color: #767676;
	font-weight: 400;
	display: inline-block;
	width: 100%;
}
.k2t-blog-post .post-content > h3 {
	margin-bottom: 10px;
}
.k2t-blog-post .post-content > h3 a {
	color: #3d3d3d;
	font-size: 140%;
	font-weight: 600;
	display: block;
	margin-bottom: 12px;
}
.k2t-blog-post .post-content > h3 a:hover{
	color: #ffbe2a;
}
.k2t-blog-post .post-content .k2t-button{
	margin-top: 20px;
}
.k2t-blog-post .post-content .k2t-button .k2t-btn{
	line-height: 46px;
}
.k2t-blog-post.even .post-thumb {
	float: right;
}

	/* Blog post: Style 4 */
.owl-carousel .owl-item > .k2t-blog-post-4{
	display: block;
}
.k2t-blog-post-4 .article-inner > *{
	float: none;
	width: 100%;
	display: inline-block;
}
.k2t-blog-post-4 .post-thumb{
	margin-bottom: 10px;
	overflow: hidden;
}
.k2t-blog-post-4 .post-content{
	min-height: auto;
}
.k2t-blog-post-4 .post-content > h3 a{
	font-size: 100%;
	margin-bottom: -3px;
}
.k2t-blog-post-4 .post-content time{
	color: #a5a5a5;
    display: inline-block;
    margin-bottom: 15px;
}
.k2t-blog-post-4 .post-content .more-link{
	margin-top: 20px;
}

/* Event
---------------------------------------------------------------------------------------- */
.k2t-event-inner {
	overflow: hidden;
	border-style: solid;
	margin: 0 20px;
	padding: 20px 0;
}
.k2t-event .time {
	float: left;
	width: 43px;
	margin: 0 20px 0 0;
	text-align: center;
	text-transform: uppercase;
}
.k2t-event .time .date {
	font-size: 16px;
	border: 2px solid #ffbe2a;
	width: 42px;
	height: 42px;
	line-height: 38px;
	color: #caeeff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
.k2t-event .time .month {
	font-size: 10px;
	color: #5e6678;
	font-weight: 500;
	margin-top: 6px;
}
.k2t-event .event-info {
	padding-left: 63px;
}
.k2t-event .event-info h5 a {
	font-size: 15px;
	color: #caeeff;
	font-weight: 500;
	display: block;
	margin-top: 5px;
}
.k2t-event .event-info .hour {
	font-size: 12px;
	color: #6d839c;
}