@charset "UTF-8";

/**
*
* -------------------------------------------------------
*
* Template : ePack - Modern Element Packages
* Author : thecodrops
* Author URI : http://thecodrops.com
*
* -------------------------------------------------------
*
*/

/*-----------------------
    Accordion
-------------------------*/
.tc-accordion .panel {margin-bottom: 5px;background-color: rgba(0, 0, 0, 0.03);border: 0;border-radius: 0;box-shadow: none;}
.acdn-title {margin: 0;}
.acdn-title a {display: block;position: relative;padding: 15px;font-size: 18px;color: #666;}
.acdn-body {padding: 15px;border-top: 1px solid rgba(0, 0, 0, 0.04);font-size: 13px;}
.tc-accordion .acdn-title a:after {position: absolute;font-family: FontAwesome;content: "\f068";color: inherit;font-size: 12px;right: 15px;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);}
.tc-accordion .acdn-title a.collapsed:after {content: "\f067";}

/*-----------------------
    Accordion Style1
-------------------------*/
.tc-accordion-style1 .panel {background-color: #fff;-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);}
.tc-accordion-style1 .acdn-body {border-top: 1px solid rgba(0, 0, 0, 0.04);}

/*-----------------------
    Accordion Style2
-------------------------*/
.tc-accordion-style2 .panel {background: transparent;}
.tc-accordion-style2 .acdn-title a {background-color: #444;color: #bbb;}
.tc-accordion-style2 .acdn-body {background-color: #555;color: #bbb;}

/*-----------------------
    Accordion Style3
-------------------------*/
.tc-accordion-style3 .panel {background: transparent;}
.tc-accordion-style3 .acdn-title a {border-left: 2px solid #444;background-color: #fff;}
.tc-accordion-style3 .acdn-body {background-color: #fff;color: #bbb;}

/*-----------------------
    Accordion Style4
-------------------------*/
.tc-accordion-style4 .panel {background: transparent;}
.tc-accordion-style4 .acdn-body {border: 0;}
.tc-accordion-style4 .acdn-title a {border: 1px solid #f5f5f5;}

/*-----------------------
    Accordion Style5
-------------------------*/
.tc-accordion-style5 .panel {background: transparent;}
.tc-accordion-style5 .acdn-body {border: 0;}
.tc-accordion-style5 .acdn-title a {position: relative;overflow: hidden;z-index: 10;}
.tc-accordion-style5 .acdn-title a:before {position: absolute;content: '';height: 100%;width: 100%;left: -10px;top: 0;background: rgba(0, 0, 0, 0.03);-webkit-transform: skew(-15deg);transform: skew(-15deg);z-index: -1;}
.tc-accordion-style5 .acdn-title a:after {right: 25px;}

/*-----------------------
    Accordion Style6
-------------------------*/
.tc-accordion-style6 .panel {background: transparent;}
.tc-accordion-style6 .acdn-body {border: 0;}
.tc-accordion-style6 .acdn-title a {position: relative;overflow: hidden;z-index: 10;}
.tc-accordion-style6 .panel + .panel .acdn-title a {border-top: 1px solid rgba(0, 0, 0, 0.05);}
.tc-accordion-style6 .acdn-title a:after {padding: 5px 6px;background: #444;color: #fff;}


/*-----------------------
    Animation
-------------------------*/
[class*='tc-animation-'] {-webkit-animation-duration: 0.5s;animation-duration: 0.5s;-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
.tc-animation-fade {-webkit-animation-name: tc-fade;animation-name: tc-fade;-webkit-animation-duration: 0.8s;animation-duration: 0.8s;-webkit-animation-timing-function: linear !important;animation-timing-function: linear !important;}
.tc-animation-slide-top {-webkit-animation-name: tc-fade-top;animation-name: tc-fade-top;}
.tc-animation-slide-bottom {-webkit-animation-name: tc-fade-bottom;animation-name: tc-fade-bottom;}
.tc-animation-slide-left {-webkit-animation-name: tc-fade-left;animation-name: tc-fade-left;}
.tc-animation-slide-right {-webkit-animation-name: tc-fade-right;animation-name: tc-fade-right;}
.tc-animation-scale-up {-webkit-animation-name: tc-animation-scale-up;animation-name: tc-animation-scale-up;}
.tc-animation-scale-down {z-index: 11;-webkit-animation-name: tc-animation-scale-down;animation-name: tc-animation-scale-down;}
.tc-animation-shake {-webkit-animation-name: tc-shake;animation-name: tc-shake;}
.tc-animation-rotate {-webkit-animation-name: tc-rotate;animation-name: tc-rotate;}
.tc-animation-scale {-webkit-animation-name: tc-scale;animation-name: tc-scale;}
.tc-animation-hover:not(:hover),
.tc-animation-hover:not(:hover) [class*='tc-animation-'] {-webkit-animation-name: none;animation-name: none;}
.tc-animation-reverse {-webkit-animation-direction: reverse;animation-direction: reverse;-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}

/*-------------------------
    Fade
---------------------------*/
@-webkit-keyframes tc-fade {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes tc-fade {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/*---------------------------
    Fade Top
------------------------------*/
@-webkit-keyframes tc-fade-top {
    0% {opacity: 0;-webkit-transform: translateY(-60%);}
    100% {opacity: 1;-webkit-transform: translateY(0);}
}
@keyframes tc-fade-top {
    0% {opacity: 0;transform: translateY(-60%);}
    100% {opacity: 1;transform: translateY(0);}
}

/*---------------------------
    Fade Bottom
------------------------------*/
@-webkit-keyframes tc-fade-bottom {
    0% {opacity: 0;-webkit-transform: translateY(60%);}
    100% {opacity: 1;-webkit-transform: translateY(0);}
}
@keyframes tc-fade-bottom {
    0% {opacity: 0;transform: translateY(60%);}
    100% {opacity: 1;transform: translateY(0);}
}

/*---------------------------
    Fade Left
------------------------------*/
@-webkit-keyframes tc-fade-left {
    0% {opacity: 0;-webkit-transform: translateX(-60%);}
    100% {opacity: 1;-webkit-transform: translateX(0);}
}
@keyframes tc-fade-left {
    0% {opacity: 0;transform: translateX(-60%);}
    100% {opacity: 1;transform: translateX(0);}
}

/*---------------------------
    Fade Right
------------------------------*/
@-webkit-keyframes tc-fade-right {
    0% {opacity: 0;-webkit-transform: translateX(60%);}
    100% {opacity: 1;-webkit-transform: translateX(0);}
}
@keyframes tc-fade-right {
    0% {opacity: 0;transform: translateX(60%);}
    100% {opacity: 1;transform: translateX(0);}
}


/*------------------------------
   Scale Up
--------------------------------*/
@-webkit-keyframes tc-animation-scale-up {
    0% {opacity: 0;-webkit-transform: scale(0.2);}
    100% {opacity: 1;-webkit-transform: scale(1);}
}

@keyframes tc-animation-scale-up {
    0% {opacity: 0;transform: scale(0.2);}
    100% {opacity: 1;transform: scale(1);}
}

/*---------------------------
    Scale Down
------------------------------*/
@-webkit-keyframes tc-animation-scale-down {
  0% {opacity: 0;-webkit-transform: scale(1.6);}
  100% {opacity: 1;-webkit-transform: scale(1);}
}
@keyframes tc-animation-scale-down {
  0% {opacity: 0;transform: scale(1.6);}
  100% {opacity: 1;transform: scale(1);}
}

/*---------------------------
    Rotate
------------------------------*/
@-webkit-keyframes tc-rotate {
    0% {-webkit-transform: rotate(280deg);}
    100% {-webkit-transform: rotate(360deg);}
}
@keyframes tc-rotate {
    0% {transform: rotate(280deg);}
    100% {transform: rotate(360deg);}
}

/*---------------------------
    Shake
------------------------------*/
@-webkit-keyframes tc-shake {
    0%,
    100% {-webkit-transform: translateX(0);}
    10% {-webkit-transform: translateX(-9px);}
    20% {-webkit-transform: translateX(8px);}
    30% {-webkit-transform: translateX(-7px);}
    40% {-webkit-transform: translateX(6px);}
    50% {-webkit-transform: translateX(-5px);}
    60% {-webkit-transform: translateX(4px);}
    70% {-webkit-transform: translateX(-3px);}
    80% {-webkit-transform: translateX(2px);}
    90% {-webkit-transform: translateX(-1px);}
}
@keyframes tc-shake {
    0%,
    100% {transform: translateX(0);}
    10% {transform: translateX(-9px);}
    20% {transform: translateX(8px);}
    30% {transform: translateX(-7px);}
    40% {transform: translateX(6px);}
    50% {transform: translateX(-5px);}
    60% {transform: translateX(4px);}
    70% {transform: translateX(-3px);}
    80% {transform: translateX(2px);}
    90% {transform: translateX(-1px);}
}

/*-------------------
    Scale
---------------------*/
@-webkit-keyframes tc-scale {
    0% {-webkit-transform: scale(1.2);}
    100% {-webkit-transform: scale(1);}
}
@keyframes tc-scale {
    0% {transform: scale(1.2);}
    100% {transform: scale(1);}
}

/*------------------------
	Box Style1
--------------------------*/
.tc-box-style1 {padding: 25px;background-color: #fff;box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);margin-bottom: 25px;}
.tc-box-style1 .box-title {font-size: 18px;line-height: normal;color: #444;border-bottom: 1px solid #eee;padding-bottom: 8px;margin: 0 0 15px;}
.tc-box-style1 .box-content {font-size: 14px;}

/*------------------------
	Box Style2
--------------------------*/
.tc-box-style2 {background-color: #fff;border: 1px solid #eee;margin-bottom: 25px;}
.tc-box-style2 .box-title {font-size: 18px;line-height: normal;background-color: #000;padding: 15px 25px 13px;color: #fff;margin: 0 -1px;}
.tc-box-style2 .box-content {font-size: 14px;padding: 20px 25px;}

/*------------------------
	Box Style3
--------------------------*/
.tc-box-style3 {margin-bottom: 25px;}
.tc-box-style3 .box-title {font-size: 18px;line-height: normal;color: #444;padding: 15px 20px 12px;background-color: rgba(0, 0, 0, 0.04);margin: 0 0 15px;}
.tc-box-style3 .box-content {font-size: 14px;padding: 15px 20px 12px;background-color: rgba(0, 0, 0, 0.04);}

/*------------------------
	Box Style4
--------------------------*/
.tc-box-style4 {background-color: #fff;border: 1px solid #f5f5f5;margin-bottom: 25px;}
.tc-box-style4 .box-title {font-size: 18px;line-height: normal;border-bottom: 1px solid #f5f5f5;padding: 15px 25px 13px;color: #444;margin: 0 -1px;}
.tc-box-style4 .box-content {font-size: 14px;padding: 20px 25px;}

/*------------------------
	Box Style5
--------------------------*/
.tc-box-style5 {margin-bottom: 25px;border-left: 5px solid #444;padding: 25px;background-color: #fff;}
.tc-box-style5 .box-title {font-size: 18px;line-height: normal;color: #444;padding: 10px 20px 7px;background-color: rgba(0, 0, 0, 0.03);margin: 0 0 15px;}
.tc-box-style5 .box-content {font-size: 14px;}

/*------------------------
	Box Style6
--------------------------*/
.tc-box-style6 {background-color: #232323;margin-bottom: 25px;}
.tc-box-style6 .box-title {font-size: 18px;line-height: normal;background: rgba(255, 255, 255, 0.1);padding: 15px 25px 13px;color: #bbb;margin: 0;}
.tc-box-style6 .box-content {font-size: 14px;padding: 20px 25px;}


/*----------------------------
    Button Common Styles
------------------------------*/
[class*="tcb-"] {min-width: 95px;padding: 11px 15px;display: inline-block;position: relative;font-size: 12px;font-weight: 400;line-height: 1;white-space: nowrap;vertical-align: middle;cursor: pointer;text-decoration: none !important;text-align: center;}
.tcb-large {padding: 13px 20px;font-size: 14px;}
.tcb-small {padding: 9px 12px;font-size: 11px;}
.tcb-pill {-webkit-border-radius: 40px;border-radius: 40px;}
.tcb-round {-webkit-border-radius: 5px;border-radius: 5px;}
.tcb-fullwidth {width: 100%;-webkit-box-sizing: border-box;box-sizing: border-box;}


/*------------------------------
    Basic
--------------------------------*/
.tcb-basic {-webkit-transition: background-color .25s ease;transition: background-color .25s ease;border: 1px solid #f5f5f5;}
.tcb-basic.tcb-default {background-color: #f5f5f5;color: #444;}
.tcb-basic.tcb-default:hover {background-color: #eee;color: #666;}
.tcb-basic.tcb-primary {color: #fff;background-color: #337ab7;border-color: #337ab7;}
.tcb-basic.tcb-primary:hover {color: #fff;background-color: #286090;border-color: #286090;}
.tcb-basic.tcb-success {color: #fff;background-color: #c1cd23;border-color: #c1cd23;}
.tcb-basic.tcb-success:hover {color: #fff;background-color: #919a1a;border-color: #919a1a;}
.tcb-basic.tcb-info {color: #fff;background-color: #5bc0de;border-color: #5bc0de;}
.tcb-basic.tcb-info:hover {color: #fff;background-color: #31b0d5;border-color: #31b0d5;}
.tcb-basic.tcb-warning {color: #fff;background-color: #f0ad4e;border-color: #f0ad4e;}
.tcb-basic.tcb-warning:hover {color: #fff;background-color: #ec971f;border-color: #ec971f;}
.tcb-basic.tcb-danger {color: #fff;background-color: #d9534f;border-color: #d9534f;}
.tcb-basic.tcb-danger:hover {color: #fff;background-color: #c9302c;border-color: #c9302c;}
.tcb-basic.tcb-black {color: #fff;background-color: #28373b;border-color: #28373b;}
.tcb-basic.tcb-black:hover {background-color: #131A1B;border-color: #131A1B;color: #fff;}
.tcb-basic.tcb-pink {color: #fff;background-color: #9d5db8;border-color: #9d5db8;}
.tcb-basic.tcb-pink:hover {color: #fff;background-color: #8e44ad;border-color: #8e44ad;}
.tcb-basic.tcb-turquoise {color: #fff;background-color: #1abc9c;border-color: #1abc9c;}
.tcb-basic.tcb-turquoise:hover {color: #fff;background-color: #16a085;border-color: #16a085;}

/*------------------------------
    Basic A
--------------------------------*/
.tcb-basic-a {border: 2px solid transparent;-webkit-transition: .2s all ease-in-out;transition: .2s all ease-in-out;}
.tcb-basic-a:not(.tcb-default) {color: #fff;}
.tcb-basic-a.tcb-default {background: #f5f5f5;color: #444;}
.tcb-basic-a.tcb-primary {background-color: #337ab7;}
.tcb-basic-a.tcb-success {background-color: #c1cd23;}
.tcb-basic-a.tcb-info {background-color: #5bc0de;}
.tcb-basic-a.tcb-warning {background-color: #f0ad4e;}
.tcb-basic-a.tcb-danger {background-color: #d9534f;}
.tcb-basic-a.tcb-black {background-color: #28373b;}
.tcb-basic-a.tcb-pink {background-color: #9d5db8;}
.tcb-basic-a.tcb-turquoise {background-color: #1abc9c;}
.tcb-basic-a:hover {background: transparent;}
.tcb-basic-a.tcb-default:hover {border-color: #f5f5f5;color: #777;}
.tcb-basic-a.tcb-primary:hover {color: #337ab7;border-color: #337ab7;}
.tcb-basic-a.tcb-success:hover {color: #c1cd23;border-color: #c1cd23;}
.tcb-basic-a.tcb-info:hover {color: #5bc0de;border-color: #5bc0de;}
.tcb-basic-a.tcb-warning:hover {color: #f0ad4e;border-color: #f0ad4e;}
.tcb-basic-a.tcb-danger:hover {color: #c9302c;border-color: #c9302c;}
.tcb-basic-a.tcb-black:hover {color: #28373b;border-color: #28373b;}
.tcb-basic-a.tcb-pink:hover {color: #9d5db8;border-color: #9d5db8;}
.tcb-basic-a.tcb-turquoise:hover {color: #1abc9c;border-color: #1abc9c;}

/*------------------------------
    Basic B
--------------------------------*/
.tcb-basic-b {border: 1px solid;background: transparent;-webkit-transition: .25s background cubic-bezier(0, 0, 0, 0.2);transition: .25s background cubic-bezier(0, 0, 0, 0.2);}
.tcb-basic-b.tcb-default {border-color: #f3f3f3;color: #444;}
.tcb-basic-b.tcb-default:hover {background: #f3f3f3;color: #666;}
.tcb-basic-b.tcb-primary {color: #337ab7;border-color: #337ab7;}
.tcb-basic-b.tcb-primary:hover, 
.tcb-basic-b.tcb-primary:active, 
.tcb-basic-b.tcb-primary:focus {background: #337ab7;color: #fff;}
.tcb-basic-b.tcb-success {color: #c1cd23;border-color: #c1cd23;}
.tcb-basic-b.tcb-success:hover, 
.tcb-basic-b.tcb-success:active, 
.tcb-basic-b.tcb-success:focus {background: #c1cd23;color: #fff;}
.tcb-basic-b.tcb-info {color: #5bc0de;border-color: #5bc0de;}
.tcb-basic-b.tcb-info:hover, 
.tcb-basic-b.tcb-info:active, 
.tcb-basic-b.tcb-info:focus {background: #5bc0de;color: #fff;}
.tcb-basic-b.tcb-warning {color: #f0ad4e;border-color: #f0ad4e;}
.tcb-basic-b.tcb-warning:hover, 
.tcb-basic-b.tcb-warning:active, 
.tcb-basic-b.tcb-warning:focus {background: #f0ad4e;color: #fff;}
.tcb-basic-b.tcb-danger {color: #d9534f;border-color: #d9534f;}
.tcb-basic-b.tcb-danger:hover, 
.tcb-basic-b.tcb-danger:active, 
.tcb-basic-b.tcb-danger:focus {background: #d9534f;color: #fff;}
.tcb-basic-b.tcb-black {color: #28373b;border-color: #28373b;}
.tcb-basic-b.tcb-black:hover, 
.tcb-basic-b.tcb-black:active, 
.tcb-basic-b.tcb-black:focus {background: #28373b;color: #fff;}
.tcb-basic-b.tcb-pink {color: #9d5db8;border-color: #9d5db8;}
.tcb-basic-b.tcb-pink:hover, 
.tcb-basic-b.tcb-pink:active, 
.tcb-basic-b.tcb-pink:focus {background: #9d5db8;color: #fff;}
.tcb-basic-b.tcb-turquoise {color: #1abc9c;border-color: #1abc9c;}
.tcb-basic-b.tcb-turquoise:hover, 
.tcb-basic-b.tcb-turquoise:active, 
.tcb-basic-b.tcb-turquoise:focus {background: #1abc9c;color: #fff;}

/*------------------------------
    Basic C
--------------------------------*/
.tcb-basic-c {border: 1px solid #ddd;background: transparent;position: relative;color: #444;}
.tcb-basic-c:hover {color: #666;background: transparent;}
.tcb-basic-c:before, 
.tcb-basic-c:after {position: absolute;content: '';height: 1px;width: 7px;background: #ddd;top: 50%;margin-top: -1px; -webkit-transition: .25s width cubic-bezier(0, 0, 0, 0.2);transition: .25s width cubic-bezier(0, 0, 0, 0.2);}
.tcb-basic-c:before {left: 0;}
.tcb-basic-c:after {width: 0;}
.tcb-basic-c:hover:before {width: 10px;} 
.tcb-basic-c:hover:after {right: 0;width: 10px;}
.tcb-basic-c.tcb-primary {color: #337ab7;border-color: #337ab7;}
.tcb-basic-c.tcb-success {color: #c1cd23;border-color: #c1cd23;}
.tcb-basic-c.tcb-info {color: #5bc0de;border-color: #5bc0de;}
.tcb-basic-c.tcb-warning {color: #f0ad4e;border-color: #f0ad4e;}
.tcb-basic-c.tcb-danger {color: #d9534f;border-color: #d9534f;}
.tcb-basic-c.tcb-black {color: #28373b;border-color: #28373b;}
.tcb-basic-c.tcb-pink {color: #9d5db8;border-color: #9d5db8;}
.tcb-basic-c.tcb-turquoise {color: #1abc9c;border-color: #1abc9c;}
.tcb-basic-c.tcb-primary:before, 
.tcb-basic-c.tcb-primary:after {background: #337ab7;}
.tcb-basic-c.tcb-success:before, 
.tcb-basic-c.tcb-success:after {background: #c1cd23;}
.tcb-basic-c.tcb-info:before, 
.tcb-basic-c.tcb-info:after {background: #5bc0de;}
.tcb-basic-c.tcb-warning:before, 
.tcb-basic-c.tcb-warning:after {background: #f0ad4e;}
.tcb-basic-c.tcb-danger:before, 
.tcb-basic-c.tcb-danger:after {background: #d9534f;}
.tcb-basic-c.tcb-black:before, 
.tcb-basic-c.tcb-black:after {background: #28373b;}
.tcb-basic-c.tcb-pink:before, 
.tcb-basic-c.tcb-pink:after {background: #9d5db8;}
.tcb-basic-c.tcb-turquoise:before, 
.tcb-basic-c.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    Basic D
--------------------------------*/
.tcb-basic-d {position: relative;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);color: #444;z-index: 1;padding: 12px !important;}
.tcb-basic-d:hover {color: #666;}
.tcb-basic-d:before, 
.tcb-basic-d:after {position: absolute;content: '';height: 2px;width: 100%;background: #ddd;left: 0; -webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);z-index: -1;}
.tcb-basic-d:before {top: 0;}
.tcb-basic-d:after {bottom: 0;}
.tcb-basic-d:hover:before {height: 50%;}
.tcb-basic-d:hover:after {height: 50%;}
.tcb-basic-d:not(.tcb-default):hover {color: #fff;}
.tcb-basic-d.tcb-primary {color: #337ab7;}
.tcb-basic-d.tcb-success {color: #c1cd23;}
.tcb-basic-d.tcb-info {color: #5bc0de;}
.tcb-basic-d.tcb-warning {color: #f0ad4e;}
.tcb-basic-d.tcb-danger {color: #d9534f;}
.tcb-basic-d.tcb-black {color: #28373b;}
.tcb-basic-d.tcb-pink {color: #9d5db8;}
.tcb-basic-d.tcb-turquoise {color: #1abc9c;}
.tcb-basic-d.tcb-primary:before, 
.tcb-basic-d.tcb-primary:after {background: #337ab7;}
.tcb-basic-d.tcb-success:before, 
.tcb-basic-d.tcb-success:after {background: #c1cd23;}
.tcb-basic-d.tcb-info:before, 
.tcb-basic-d.tcb-info:after {background: #5bc0de;}
.tcb-basic-d.tcb-warning:before, 
.tcb-basic-d.tcb-warning:after {background: #f0ad4e;}
.tcb-basic-d.tcb-danger:before, 
.tcb-basic-d.tcb-danger:after {background: #d9534f;}
.tcb-basic-d.tcb-black:before, 
.tcb-basic-d.tcb-black:after {background: #28373b;}
.tcb-basic-d.tcb-pink:before, 
.tcb-basic-d.tcb-pink:after {background: #9d5db8;}
.tcb-basic-d.tcb-turquoise:before, 
.tcb-basic-d.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    Basic E
--------------------------------*/
.tcb-basic-e {position: relative;z-index: 1;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);color: #444;}
.tcb-basic-e:hover {color: #666;}
.tcb-basic-e:before, 
.tcb-basic-e:after {position: absolute;content: '';height: 100%;width: 2px;background: #ddd;top: 0;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);z-index: -1;}
.tcb-basic-e:before {left: 0;}
.tcb-basic-e:after {right: 0;}
.tcb-basic-e:hover:before {width: 50%;}
.tcb-basic-e:hover:after {width: 50%;}
.tcb-basic-e:not(.tcb-default):hover {color: #fff;}
.tcb-basic-e.tcb-primary {color: #337ab7;}
.tcb-basic-e.tcb-success {color: #c1cd23;}
.tcb-basic-e.tcb-info {color: #5bc0de;}
.tcb-basic-e.tcb-warning {color: #f0ad4e;}
.tcb-basic-e.tcb-danger {color: #d9534f;}
.tcb-basic-e.tcb-black {color: #28373b;}
.tcb-basic-e.tcb-pink {color: #9d5db8;}
.tcb-basic-e.tcb-turquoise {color: #1abc9c;}
.tcb-basic-e.tcb-primary:before, 
.tcb-basic-e.tcb-primary:after {background: #337ab7;}
.tcb-basic-e.tcb-success:before, 
.tcb-basic-e.tcb-success:after {background: #c1cd23;}
.tcb-basic-e.tcb-info:before, 
.tcb-basic-e.tcb-info:after {background: #5bc0de;}
.tcb-basic-e.tcb-warning:before, 
.tcb-basic-e.tcb-warning:after {background: #f0ad4e;}
.tcb-basic-e.tcb-danger:before, 
.tcb-basic-e.tcb-danger:after {background: #d9534f;}
.tcb-basic-e.tcb-black:before, 
.tcb-basic-e.tcb-black:after {background: #28373b;}
.tcb-basic-e.tcb-pink:before, 
.tcb-basic-e.tcb-pink:after {background: #9d5db8;}
.tcb-basic-e.tcb-turquoise:before, 
.tcb-basic-e.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    Animate A
--------------------------------*/
.tcb-animate-a {position: relative;z-index: 1;border: 1px solid #f0f0f0;-webkit-transition: all 0.4s;transition: all 0.4s;color: #444;}
.tcb-animate-a:before {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #f0f0f0;z-index: -1;opacity: 0;-webkit-transform: scale3d(0.7, 1, 1);transform: scale3d(0.7, 1, 1);-webkit-transition: -webkit-transform 0.4s, opacity 0.4s, background .4s;transition: transform 0.4s, opacity 0.4s, background .4s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);}
.tcb-animate-a,
.tcb-animate-a:before {-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);}
.tcb-animate-a:hover {color: #666;border-color: #f0f0f0;}
.tcb-animate-a:hover:before {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
.tcb-animate-a.tcb-primary {border-color: #2e6da4;color: #2e6da4;}
.tcb-animate-a.tcb-primary:hover:before {background: #2e6da4;}
.tcb-animate-a.tcb-success {color: #4cae4c;border-color: #4cae4c;}
.tcb-animate-a.tcb-success:hover:before {background: #4cae4c;}
.tcb-animate-a.tcb-info {color: #46b8da;border-color: #46b8da;}
.tcb-animate-a.tcb-info:hover:before {background: #46b8da;}
.tcb-animate-a.tcb-warning {color: #eea236;border-color: #eea236;}
.tcb-animate-a.tcb-warning:hover:before {background: #eea236;}
.tcb-animate-a.tcb-danger {color: #d43f3a;border-color: #d43f3a;}
.tcb-animate-a.tcb-danger:hover:before {background: #d43f3a;}
.tcb-animate-a.tcb-black {border-color: #28373b;color: #28373b;}
.tcb-animate-a.tcb-black:hover:before {background: #28373b;}
.tcb-animate-a.tcb-pink {border-color: #9d5db8;color: #9d5db8;}
.tcb-animate-a.tcb-pink:hover:before {background: #9d5db8;}
.tcb-animate-a.tcb-turquoise {border-color: #1abc9c;color: #1abc9c;}
.tcb-animate-a.tcb-turquoise:hover:before {background: #1abc9c;}
.tcb-animate-a:not(.tcb-default):hover {color: #fff;}

/*------------------------------
    Animate B
--------------------------------*/
.tcb-animate-b {overflow: hidden;position: relative;z-index: 1;border: 1px solid transparent;-webkit-transition: border-color 0.3s, color 0.3s;transition: border-color 0.3s, color 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);box-sizing: border-box;}
.tcb-animate-b:not(.tcb-default) {color: #fff;}
.tcb-animate-b.tcb-default {background-color: #f5f5f5;color: #444;}
.tcb-animate-b.tcb-default:hover {background-color: #eee;color: #666;}
.tcb-animate-b.tcb-primary {background-color: #337ab7;}
.tcb-animate-b.tcb-success {background-color: #c1cd23;}
.tcb-animate-b.tcb-info {background-color: #5bc0de;}
.tcb-animate-b.tcb-warning {background-color: #f0ad4e;}
.tcb-animate-b.tcb-danger {background-color: #d9534f;}
.tcb-animate-b.tcb-black {background-color: #28373b;}
.tcb-animate-b.tcb-pink {background-color: #9d5db8;}
.tcb-animate-b.tcb-turquoise {background-color: #1abc9c;}
.tcb-animate-b:before {content: '';position: absolute;top: 0;left: 0;width: 150%;height: 100%;background: #ddd;z-index: -1;-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);-webkit-transform-origin: 0% 100%;transform-origin: 0% 100%;-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;transition: transform 0.3s, opacity 0.3s, background-color 0.3s;}
.tcb-animate-b:hover:before {opacity: 1;background-color: #ddd;-webkit-transform: rotate3d(0, 0, 1, 0deg);transform: rotate3d(0, 0, 1, 0deg);-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);}
.tcb-animate-b.tcb-primary:before {background: #286090;}
.tcb-animate-b.tcb-primary:hover {border-color: #204d74;}
.tcb-animate-b.tcb-primary:hover:before {background-color: #204d74;}
.tcb-animate-b.tcb-success:before {background: #c1cd23;}
.tcb-animate-b.tcb-success:hover {border-color: #398439;}
.tcb-animate-b.tcb-success:hover:before {background-color: #398439;}
.tcb-animate-b.tcb-info:before {background: #5bc0de;}
.tcb-animate-b.tcb-info:hover {border-color: #269abc;}
.tcb-animate-b.tcb-info:hover:before {background-color: #269abc;}
.tcb-animate-b.tcb-warning:before {background: #f0ad4e;}
.tcb-animate-b.tcb-warning:hover {border-color: #d58512;}
.tcb-animate-b.tcb-warning:hover:before {background-color: #d58512;}
.tcb-animate-b.tcb-danger:before {background: #d9534f;}
.tcb-animate-b.tcb-danger:hover {border-color: #ac2925;}
.tcb-animate-b.tcb-danger:hover:before {background-color: #ac2925;}
.tcb-animate-b.tcb-black:before {background: #28373b;}
.tcb-animate-b.tcb-black:hover {border-color: #131A1B;}
.tcb-animate-b.tcb-black:hover:before {background-color: #131A1B;}
.tcb-animate-b.tcb-pink:before {background: #9d5db8;}
.tcb-animate-b.tcb-pink:hover {border-color: #733D8B;}
.tcb-animate-b.tcb-pink:hover:before {background-color: #733D8B;}
.tcb-animate-b.tcb-turquoise:before {background: #1abc9c;}
.tcb-animate-b.tcb-turquoise:hover {border-color: #129077;}
.tcb-animate-b.tcb-turquoise:hover:before {background-color: #129077;}

/*------------------------------
    Animate C
--------------------------------*/
.tcb-animate-c {border: 1px solid;background: transparent;position: relative;z-index: 1;-webkit-transition: .3s ease all;transition: .3s ease all;}
.tcb-animate-c:after {content: '';position: absolute;z-index: -1;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;width: 100%;height: 0;top: 0;left: 0;}
.tcb-animate-c:not(.tcb-default):hover,
.tcb-animate-c:not(.tcb-default):active {color: #fff;}
.tcb-animate-c:hover:after,
.tcb-animate-c:active:after {height: 100%;}
.tcb-animate-c.tcb-default {border-color: #eee;color: #444;}
.tcb-animate-c.tcb-default:after {background: #eee;}
.tcb-animate-c.tcb-primary {border-color: #337ab7;color: #337ab7;}
.tcb-animate-c.tcb-primary:after {background: #337ab7;}
.tcb-animate-c.tcb-success {border-color: #c1cd23;color: #c1cd23;}
.tcb-animate-c.tcb-success:after {background: #c1cd23;}
.tcb-animate-c.tcb-info {border-color: #5bc0de;color: #5bc0de;}
.tcb-animate-c.tcb-info:after {background: #5bc0de;}
.tcb-animate-c.tcb-warning {border-color: #f0ad4e;color: #f0ad4e;}
.tcb-animate-c.tcb-warning:after {background: #f0ad4e;}
.tcb-animate-c.tcb-danger {border-color: #d9534f;color: #d9534f;}
.tcb-animate-c.tcb-danger:after {background: #d9534f;}
.tcb-animate-c.tcb-black {border-color: #28373b;color: #28373b;}
.tcb-animate-c.tcb-black:after {background: #28373b;}
.tcb-animate-c.tcb-pink {border-color: #9d5db8;color: #9d5db8;}
.tcb-animate-c.tcb-pink:after {background: #9d5db8;}
.tcb-animate-c.tcb-turquoise {border-color: #1abc9c;color: #1abc9c;}
.tcb-animate-c.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    Animate D
--------------------------------*/
.tcb-animate-d {border: 1px solid;background: transparent;position: relative;z-index: 1;-webkit-transition: .3s ease all;transition: .3s ease all;}
.tcb-animate-d:after {content: '';position: absolute;-webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);width: 0;height: 100%;top: 0;left: 0;z-index: -1;}
.tcb-animate-d:not(.tcb-default):hover,
.tcb-animate-d:not(.tcb-default):active {color: #fff;}
.tcb-animate-d:hover:after,
.tcb-animate-d:active:after {width: 100%;}
.tcb-animate-d.tcb-default {border-color: #eee;color: #444;}
.tcb-animate-d.tcb-default:after {background: #eee;}
.tcb-animate-d.tcb-primary {border-color: #337ab7;color: #337ab7;}
.tcb-animate-d.tcb-primary:after {background: #337ab7;}
.tcb-animate-d.tcb-success {border-color: #c1cd23;color: #c1cd23;}
.tcb-animate-d.tcb-success:after {background: #c1cd23;}
.tcb-animate-d.tcb-info {border-color: #5bc0de;color: #5bc0de;}
.tcb-animate-d.tcb-info:after {background: #5bc0de;}
.tcb-animate-d.tcb-warning {border-color: #f0ad4e;color: #f0ad4e;}
.tcb-animate-d.tcb-warning:after {background: #f0ad4e;}
.tcb-animate-d.tcb-danger {border-color: #d9534f;color: #d9534f;}
.tcb-animate-d.tcb-danger:after {background: #d9534f;}
.tcb-animate-d.tcb-black {border-color: #28373b;color: #28373b;}
.tcb-animate-d.tcb-black:after {background: #28373b;}
.tcb-animate-d.tcb-pink {border-color: #9d5db8;color: #9d5db8;}
.tcb-animate-d.tcb-pink:after {background: #9d5db8;}
.tcb-animate-d.tcb-turquoise {border-color: #1abc9c;color: #1abc9c;}
.tcb-animate-d.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    Animate E
--------------------------------*/
.tcb-animate-e {border: 1px solid;position: relative;overflow: hidden;z-index: 1;-webkit-transition: .2s cubic-bezier(0.19, 0.4, 0.9, 0.76) background;transition: .2s cubic-bezier(0.19, 0.4, 0.9, 0.76) background;}
.tcb-animate-e:after {content: '';position: absolute;width: 100%;height: 0;top: 50%;left: 50%;opacity: 0;-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);transform: translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);}
.tcb-animate-e:not(.tcb-default):after {background: rgba(255,255,255,0.15);}
.tcb-animate-e:not(.tcb-default):hover,
.tcb-animate-e:not(.tcb-default):active {color: #fff;}
.tcb-animate-e:hover:after,
.tcb-animate-e:active:after {height: 100%;opacity: 1;}
.tcb-animate-e.tcb-default {border-color: #eee;color: #444;}
.tcb-animate-e.tcb-default {border-color: rgba(0,0,0,0.05);}
.tcb-animate-e.tcb-default:after {background: rgba(0,0,0,0.05);}
.tcb-animate-e.tcb-primary {border-color: #337ab7;color: #337ab7;}
.tcb-animate-e.tcb-success {border-color: #c1cd23;color: #c1cd23;}
.tcb-animate-e.tcb-info {border-color: #5bc0de;color: #5bc0de;}
.tcb-animate-e.tcb-warning {border-color: #f0ad4e;color: #f0ad4e;}
.tcb-animate-e.tcb-danger {border-color: #d9534f;color: #d9534f;}
.tcb-animate-e.tcb-black {border-color: #28373b;color: #28373b;}
.tcb-animate-e.tcb-pink {border-color: #9d5db8;color: #9d5db8;}
.tcb-animate-e.tcb-turquoise {border-color: #1abc9c;color: #1abc9c;}
.tcb-animate-e.tcb-default:hover {background-color: #eee;color: #666;}
.tcb-animate-e.tcb-primary:hover {background-color: #337ab7;}
.tcb-animate-e.tcb-success:hover {background-color: #c1cd23;}
.tcb-animate-e.tcb-info:hover {background-color: #5bc0de;}
.tcb-animate-e.tcb-warning:hover {background-color: #f0ad4e;}
.tcb-animate-e.tcb-danger:hover {background-color: #d9534f;}
.tcb-animate-e.tcb-black:hover {background-color: #28373b;}
.tcb-animate-e.tcb-pink:hover {background-color: #9d5db8;}
.tcb-animate-e.tcb-turquoise:hover {background-color: #1abc9c;}

/*------------------------------
    Animate F
--------------------------------*/
.tcb-animate-f {margin: 1em 2em;-webkit-transition: color 0.3s;transition: color 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);color: #444;}
.tcb-animate-f:not(.tcb-default) {color: #fff;}
.tcb-animate-f:before,
.tcb-animate-f:after {content: '';position: absolute;border-radius: inherit;background: #eee;z-index: -1;}
.tcb-animate-f:before {top: -3px;bottom: -3px;left: -3px;right: -3px;opacity: 0.3;-webkit-transform: scale3d(0.7, 1, 1);transform: scale3d(0.7, 1, 1);-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;}
.tcb-animate-f:after {top: 0;left: 0;width: 100%;height: 100%;-webkit-transform: scale3d(1.1, 1, 1);transform: scale3d(1.1, 1, 1);-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;transition: transform 0.3s, background-color 0.3s;}
.tcb-animate-f:before,
.tcb-animate-f:after {-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);}
.tcb-animate-f:hover:before {opacity: 1;}
.tcb-animate-f:hover:after {background-color: #fff !important;}
.tcb-animate-f:hover:after,
.tcb-animate-f:hover:before {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}
.tcb-animate-f.tcb-primary:hover {color: #337ab7;}
.tcb-animate-f.tcb-primary:before,
.tcb-animate-f.tcb-primary:after {background: #337ab7;}
.tcb-animate-f.tcb-success:hover {color: #c1cd23;}
.tcb-animate-f.tcb-success:before,
.tcb-animate-f.tcb-success:after {background: #c1cd23;}
.tcb-animate-f.tcb-info:hover {color: #5bc0de;}
.tcb-animate-f.tcb-info:before,
.tcb-animate-f.tcb-info:after {background: #5bc0de;}
.tcb-animate-f.tcb-warning:hover {color: #f0ad4e;}
.tcb-animate-f.tcb-warning:before,
.tcb-animate-f.tcb-warning:after {background: #f0ad4e;}
.tcb-animate-f.tcb-danger:hover {color: #d9534f;}
.tcb-animate-f.tcb-danger:before,
.tcb-animate-f.tcb-danger:after {background: #d9534f;}
.tcb-animate-f.tcb-black:hover {color: #28373b;}
.tcb-animate-f.tcb-black:before,
.tcb-animate-f.tcb-black:after {background: #28373b;}
.tcb-animate-f.tcb-pink:hover {color: #9d5db8;}
.tcb-animate-f.tcb-pink:before,
.tcb-animate-f.tcb-pink:after {background: #9d5db8;}
.tcb-animate-f.tcb-turquoise:hover {color: #1abc9c;}
.tcb-animate-f.tcb-turquoise:before,
.tcb-animate-f.tcb-turquoise:after {background: #1abc9c;}

/*------------------------------
    3D A
--------------------------------*/
.tcb-3d-a {background: #eee;color: #444;box-shadow: 0 6px #ddd;}
.tcb-3d-a:hover {box-shadow: 0 4px #ddd;top: 2px;}
.tcb-3d-a:active {box-shadow: 0 0 #ddd;top: 6px;}
.tcb-3d-a:not(.tcb-default) {color: #fff;}
.tcb-3d-a.tcb-primary {background-color: #337ab7;box-shadow: 0 6px #285F8F;}
.tcb-3d-a.tcb-success {background-color: #c1cd23;box-shadow: 0 6px #459D45;}
.tcb-3d-a.tcb-info {background-color: #5bc0de;box-shadow: 0 6px #289FC3;}
.tcb-3d-a.tcb-warning {background-color: #f0ad4e;box-shadow: 0 6px #EC961D;}
.tcb-3d-a.tcb-danger {background-color: #d9534f;box-shadow: 0 6px #D43F3B;}
.tcb-3d-a.tcb-black {background-color: #28373b;box-shadow: 0 6px #0d1213;}
.tcb-3d-a.tcb-pink {background-color: #9d5db8;box-shadow: 0 6px #82459D;}
.tcb-3d-a.tcb-turquoise {background-color: #1abc9c;box-shadow: 0 6px #149077;}
.tcb-3d-a.tcb-primary:hover {box-shadow: 0 4px #285F8F;top: 2px;}
.tcb-3d-a.tcb-success:hover {box-shadow: 0 4px #459D45;top: 2px;}
.tcb-3d-a.tcb-info:hover {box-shadow: 0 4px #289FC3;top: 2px;}
.tcb-3d-a.tcb-warning:hover {box-shadow: 0 4px #EC961D;top: 2px;}
.tcb-3d-a.tcb-danger:hover {box-shadow: 0 4px #D43F3B;top: 2px;}
.tcb-3d-a.tcb-black:hover {box-shadow: 0 4px #0d1213;top: 2px;}
.tcb-3d-a.tcb-pink:hover {box-shadow: 0 4px #82459D;top: 2px;}
.tcb-3d-a.tcb-turquoise:hover {box-shadow: 0 4px #149077;top: 2px;}
.tcb-3d-a.tcb-primary:active {box-shadow: 0 0 #285F8F;top: 6px;}
.tcb-3d-a.tcb-success:active {box-shadow: 0 0 #459D45;top: 6px;}
.tcb-3d-a.tcb-info:active {box-shadow: 0 0 #289FC3;top: 6px;}
.tcb-3d-a.tcb-warning:active {box-shadow: 0 0 #EC961D;top: 6px;}
.tcb-3d-a.tcb-danger:active {box-shadow: 0 0 #D43F3B;top: 6px;}
.tcb-3d-a.tcb-black:active {box-shadow: 0 0 #0d1213;top: 6px;}
.tcb-3d-a.tcb-pink:active {box-shadow: 0 0 #82459D;top: 6px;}
.tcb-3d-a.tcb-turquoise:active {box-shadow: 0 0 #149077;top: 6px;}

/*------------------------------
    3D B
--------------------------------*/
.tcb-3d-b {background: #eee;color: #444;box-shadow: 4px 4px #ddd;}
.tcb-3d-b:hover {box-shadow: 3px 3px #ddd;top: 1px;}
.tcb-3d-b:active {box-shadow: 0 0 #ddd;top: 4px;}
.tcb-3d-b:not(.tcb-default) {color: #fff;}
.tcb-3d-b.tcb-primary {background-color: #337ab7;box-shadow: 4px 4px #285F8F;}
.tcb-3d-b.tcb-success {background-color: #c1cd23;box-shadow: 4px 4px #459D45;}
.tcb-3d-b.tcb-info {background-color: #5bc0de;box-shadow: 4px 4px #289FC3;}
.tcb-3d-b.tcb-warning {background-color: #f0ad4e;box-shadow: 4px 4px #EC961D;}
.tcb-3d-b.tcb-danger {background-color: #d9534f;box-shadow: 4px 4px #D43F3B;}
.tcb-3d-b.tcb-black {background-color: #28373b;box-shadow: 4px 4px #0d1213;}
.tcb-3d-b.tcb-pink {background-color: #9d5db8;box-shadow: 4px 4px #82459D;}
.tcb-3d-b.tcb-turquoise {background-color: #1abc9c;box-shadow: 4px 4px #149077;}
.tcb-3d-b.tcb-primary:hover {box-shadow: 3px 3px #285F8F;top: 1px;}
.tcb-3d-b.tcb-success:hover {box-shadow: 3px 3px #459D45;top: 1px;}
.tcb-3d-b.tcb-info:hover {box-shadow: 3px 3px #289FC3;top: 1px;}
.tcb-3d-b.tcb-warning:hover {box-shadow: 3px 3px #EC961D;top: 1px;}
.tcb-3d-b.tcb-danger:hover {box-shadow: 3px 3px #D43F3B;top: 1px;}
.tcb-3d-b.tcb-black:hover {box-shadow: 3px 3px #0d1213;top: 1px;}
.tcb-3d-b.tcb-pink:hover {box-shadow: 3px 3px #82459D;top: 1px;}
.tcb-3d-b.tcb-turquoise:hover {box-shadow: 3px 3px #149077;top: 1px;}
.tcb-3d-b.tcb-primary:active {box-shadow: 0 0 #285F8F;top: 4px;}
.tcb-3d-b.tcb-success:active {box-shadow: 0 0 #459D45;top: 4px;}
.tcb-3d-b.tcb-info:active {box-shadow: 0 0 #289FC3;top: 4px;}
.tcb-3d-b.tcb-warning:active {box-shadow: 0 0 #EC961D;top: 4px;}
.tcb-3d-b.tcb-danger:active {box-shadow: 0 0 #D43F3B;top: 4px;}
.tcb-3d-b.tcb-black:active {box-shadow: 0 0 #0d1213;top: 4px;}
.tcb-3d-b.tcb-pink:active {box-shadow: 0 0 #82459D;top: 4px;}
.tcb-3d-b.tcb-turquoise:active {box-shadow: 0 0 #149077;top: 4px;}

/*------------------------------
    3D C
--------------------------------*/
.tcb-3d-c {background: #eee;color: #444;box-shadow: 4px 0 #ddd;}
.tcb-3d-c:hover {box-shadow: 2px 0 #ddd;left: 1px;}
.tcb-3d-c:active {box-shadow: 0 0 #ddd;left: 4px;}
.tcb-3d-c:not(.tcb-default) {color: #fff;}
.tcb-3d-c.tcb-primary {background-color: #337ab7;box-shadow: 4px 0 #285F8F;}
.tcb-3d-c.tcb-success {background-color: #c1cd23;box-shadow: 4px 0 #459D45;}
.tcb-3d-c.tcb-info {background-color: #5bc0de;box-shadow: 4px 0 #289FC3;}
.tcb-3d-c.tcb-warning {background-color: #f0ad4e;box-shadow: 4px 0 #EC961D;}
.tcb-3d-c.tcb-danger {background-color: #d9534f;box-shadow: 4px 0 #D43F3B;}
.tcb-3d-c.tcb-black {background-color: #28373b;box-shadow: 4px 0 #0d1213;}
.tcb-3d-c.tcb-pink {background-color: #9d5db8;box-shadow: 4px 0 #82459D;}
.tcb-3d-c.tcb-turquoise {background-color: #1abc9c;box-shadow: 4px 0 #149077;}
.tcb-3d-c.tcb-primary:hover {box-shadow: 2px 0 #285F8F;left: 1px;}
.tcb-3d-c.tcb-success:hover {box-shadow: 2px 0 #459D45;left: 1px;}
.tcb-3d-c.tcb-info:hover {box-shadow: 2px 0 #289FC3;left: 1px;}
.tcb-3d-c.tcb-warning:hover {box-shadow: 2px 0 #EC961D;left: 1px;}
.tcb-3d-c.tcb-danger:hover {box-shadow: 2px 0 #D43F3B;left: 1px;}
.tcb-3d-c.tcb-black:hover {box-shadow: 2px 0 #0d1213;left: 1px;}
.tcb-3d-c.tcb-pink:hover {box-shadow: 2px 0 #82459D;left: 1px;}
.tcb-3d-c.tcb-turquoise:hover {box-shadow: 2px 0 #149077;left: 1px;}
.tcb-3d-c.tcb-primary:active {box-shadow: 0 0 #285F8F;left: 4px;}
.tcb-3d-c.tcb-success:active {box-shadow: 0 0 #459D45;left: 4px;}
.tcb-3d-c.tcb-info:active {box-shadow: 0 0 #289FC3;left: 4px;}
.tcb-3d-c.tcb-warning:active {box-shadow: 0 0 #EC961D;left: 4px;}
.tcb-3d-c.tcb-danger:active {box-shadow: 0 0 #D43F3B;left: 4px;}
.tcb-3d-c.tcb-black:active {box-shadow: 0 0 #0d1213;left: 4px;}
.tcb-3d-c.tcb-pink:active {box-shadow: 0 0 #82459D;left: 4px;}
.tcb-3d-c.tcb-turquoise:active {box-shadow: 0 0 #149077;left: 4px;}

/*------------------------------
    3D D
--------------------------------*/
.tcb-3d-d {background: #eee;color: #444;box-shadow: -4px 0 #ddd;}
.tcb-3d-d:hover {box-shadow: -2px 0 #ddd;left: -1px;}
.tcb-3d-d:active {box-shadow: 0 0 #ddd;left: -4px;}
.tcb-3d-d:not(.tcb-default) {color: #fff;}
.tcb-3d-d.tcb-primary {background-color: #337ab7;box-shadow: -4px 0 #285F8F;}
.tcb-3d-d.tcb-success {background-color: #c1cd23;box-shadow: -4px 0 #459D45;}
.tcb-3d-d.tcb-info {background-color: #5bc0de;box-shadow: -4px 0 #289FC3;}
.tcb-3d-d.tcb-warning {background-color: #f0ad4e;box-shadow: -4px 0 #EC961D;}
.tcb-3d-d.tcb-danger {background-color: #d9534f;box-shadow: -4px 0 rgb(208, 5, 0);}
.tcb-3d-d.tcb-black {background-color: #28373b;box-shadow: -4px 0 #0d1213;}
.tcb-3d-d.tcb-pink {background-color: #9d5db8;box-shadow: -4px 0 #82459D;}
.tcb-3d-d.tcb-turquoise {background-color: #1abc9c;box-shadow: -4px 0 #149077;}
.tcb-3d-d.tcb-primary:hover {box-shadow: -2px 0 #285F8F;left: -1px;}
.tcb-3d-d.tcb-success:hover {box-shadow: -2px 0 #459D45;left: -1px;}
.tcb-3d-d.tcb-info:hover {box-shadow: -2px 0 #289FC3;left: -1px;}
.tcb-3d-d.tcb-warning:hover {box-shadow: -2px 0 #EC961D;left: -1px;}
.tcb-3d-d.tcb-danger:hover {box-shadow: -2px 0 rgb(208, 5, 0);left: -1px;}
.tcb-3d-d.tcb-black:hover {box-shadow: -2px 0 #0d1213;left: -1px;}
.tcb-3d-d.tcb-pink:hover {box-shadow: -2px 0 #82459D;left: -1px;}
.tcb-3d-d.tcb-turquoise:hover {box-shadow: -2px 0 #149077;left: -1px;}
.tcb-3d-d.tcb-primary:active {box-shadow: 0 0 #285F8F;left: -4px;}
.tcb-3d-d.tcb-success:active {box-shadow: 0 0 #459D45;left: -4px;}
.tcb-3d-d.tcb-info:active {box-shadow: 0 0 #289FC3;left: -4px;}
.tcb-3d-d.tcb-warning:active {box-shadow: 0 0 #EC961D;left: -4px;}
.tcb-3d-d.tcb-danger:active {box-shadow: 0 0 rgb(208, 5, 0);left: -4px;}
.tcb-3d-d.tcb-black:active {box-shadow: 0 0 #0d1213;left: -4px;}
.tcb-3d-d.tcb-pink:active {box-shadow: 0 0 #82459D;left: -4px;}
.tcb-3d-d.tcb-turquoise:active {box-shadow: 0 0 #149077;left: -4px;}


/*----------------------------
    Calltoaction Styles
------------------------------*/
.tc-calltoaction {padding: 25px 30px;background: #fff;min-height: 63px;border: 1px solid rgba(0,0,0,0.04);-webkit-box-shadow: -3px 0 0 rgba(0, 0, 0, 0.8);box-shadow: -3px 0 0 rgba(0, 0, 0, 0.8);}
.tc-calltoaction .cta-button {display: inline-block;padding: 20px 30px;font-size: 16px;text-decoration: none;background-color: #444;color: #e5e5e5;}
.tc-calltoaction .cta-button:hover {background-color: #000;color: #fff;}
.tc-calltoaction h3 {font-size: 22px;line-height: 32px;margin: 0;color: #333;}
.tc-calltoaction p {margin: 5px 0 0;}
.tc-calltoaction:not(.cta-align-center) {display: -ms-flexbox;display: -webkit-flex;display: flex;-ms-flex-wrap: wrap;-webkit-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: center;-webkit-align-items: center;align-items: center;}
.tc-calltoaction.cta-align-left {text-align: left;}
.tc-calltoaction.cta-align-left .cta-button {margin-left: auto;}
.tc-calltoaction.cta-align-right {text-align: right;-webkit-box-shadow: 3px 0 0 rgba(0, 0, 0, 0.8);box-shadow: 3px 0 0 rgba(0, 0, 0, 0.8);}
.tc-calltoaction.cta-align-center {text-align: center;padding: 45px;-webkit-box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.8);box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.8);}
.tc-calltoaction.cta-align-center h3 {font-size: 26px;}
.tc-calltoaction.cta-align-center .cta-button {margin-top: 25px;}
.tc-calltoaction.cta-align-center .cta-content > div {margin-top: 10px;}
.tc-calltoaction.cta-radius {padding: 25px 40px;border-radius: 60px;-webkit-box-shadow: none;box-shadow: none;}
.tc-calltoaction.cta-radius .cta-button {border-radius: 60px;}

/*----------------------------
    Responsive Medium
------------------------------*/
@media (min-width: 767px) {
    .tc-calltoaction:not(.cta-align-center) .cta-content {max-width: 75%;}
    .tc-calltoaction.cta-align-right a.cta-button {-ms-flex-order: -1;-webkit-order: -1;order: -1;}
    .tc-calltoaction.cta-align-right .cta-content {margin-left: auto;}
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
    .tc-calltoaction:not(.cta-align-center) .cta-content {max-width: 70%;}
}

@media (max-width: 767px) {
    .tc-calltoaction .cta-button {margin: 18px 0 10px;text-align: center;}
    .tc-calltoaction .cta-content {text-align: center;margin-left: auto;margin-right: auto;}
    .tc-calltoaction.cta-align-left .cta-button {margin-right: auto;}
    .tc-calltoaction.cta-align-right .cta-button {margin-right: auto;margin-left: auto;}
}

@media only screen and (max-width: 480px) {
    .tc-calltoaction .cta-button {padding: 10px;margin: 18px 0 10px;font-size: 14px;text-align: center;}
    .tc-calltoaction .cta-content {text-align: center;}
}


/*-----------------------
    Carousel
-------------------------*/
.carousel-caption {
	text-shadow: none;
}
.carousel-caption .cs-title {
	margin-top: 0;
	font-size: 20px;
	line-height: normal;
}
.car-nav:before {
    position: absolute;
    font-family: FontAwesome;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 32px;
    color: #444;
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.car-prev:before {
    content: "\f104";
	left: 35px;
}
.car-next:before {
    content: "\f105";
	right: 35px;
	padding-left: 5px;
}
.carousel:hover .car-nav:before {
	opacity: 1;
}

/*-----------------------
    Carousel Style1
-------------------------*/
.tc-carousel-style1 .carousel-caption {
    background-color: rgba(26, 26, 26, 0.84);
    color: #fff;
    top: 35px;
    right: 35px;
    left: auto;
    width: 60%;
    bottom: auto;
    text-align: left;
    padding: 35px;
}
.tc-carousel-style1 .cs-title a {
	color: #fff;
	text-decoration: none;
}
.tc-carousel-style1 .cs-desc {
	color: #fff;
	margin: 0;
}
.tc-carousel-style1 .carousel-indicators li {
	height: 6px;
	width: 30px;
	border-color: #444;
	margin: 0;
}
.tc-carousel-style1 .carousel-indicators li.active {
	background-color: #444;
}
.tc-carousel-style1 .car-nav:before {
    border: 2px solid #444;
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
}
.tc-carousel-style1 .car-prev:before {
	left: 65px;
}
.tc-carousel-style1 .car-next:before {
	right: 65px;
	padding-left: 5px;
}
.tc-carousel-style1 .car-nav:hover:before {
	background: #444;
	color: #fff;
}
.tc-carousel-style1.carousel:hover .car-prev:before {
	left: 35px;
}
.tc-carousel-style1.carousel:hover .car-next:before {
	right: 35px;
}
.tc-carousel-style1.tc-light .car-nav:before {
    border-color: #fff;
    color: #fff;
}
.tc-carousel-style1.tc-light .car-nav:hover:before {
	background: #fff;
	color: #444;
}
.tc-carousel-style1.tc-light .carousel-indicators li {
    border-color: #fff;
}
.tc-carousel-style1.tc-light .carousel-indicators li.active {
    background-color: #fff;
}	

@media screen and (min-width: 767px) {
	.tc-carousel-style1.tc-light .carousel-caption {
	    background-color: rgba(255, 255, 255, 0.1);
	}
	.tc-carousel-style1.tc-light .cs-title a, 
	.tc-carousel-style1.tc-light .cs-desc {
		color: rgba(255, 255, 255, 0.9);
	}
}
@media screen and (max-width: 767px) {
	.tc-carousel-style1 .carousel-caption {
	    position: initial;
	    width: 100%;
	}
	.tc-carousel-style1 .carousel-indicators li {
	    border-color: #fff;
	}
	.tc-carousel-style1 .carousel-indicators li.active {
	    background-color: #fff;
	}
}


/*--------------------------------------
    Flipbox Common Styles
----------------------------------------*/
.tc-flipbox-wrap img {width: 100%;}
.tc-flipbox-wrap {display: block;text-align: center;position: relative;margin-bottom: 30px;-webkit-perspective: 1000px;perspective: 1000px;}
.tc-flipbox-wrap .front-part, .tc-flipbox-wrap .back-part {height: 100%;margin-bottom: 0;-moz-box-sizing: border-box;box-sizing: border-box;-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transition: 400ms;transition: 400ms;}
.tc-flipbox-wrap .front-part {z-index: 9;-webkit-backface-visibility: hidden;backface-visibility: hidden;}
.tc-flipbox-wrap .back-part {position: absolute;top: 0;width: 100%;z-index: -1;}


/*--------------------------------------
    Horizontal Flip Left
----------------------------------------*/
.tc-flipbox-wrap .horizontal-flip-left .front-part {-webkit-transform: rotateY(0deg);transform: rotateY(0deg);}
.tc-flipbox-wrap .horizontal-flip-left:hover .front-part {-webkit-transform: rotateY(180deg);transform: rotateY(180deg);}
.tc-flipbox-wrap .horizontal-flip-left .back-part {-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg);}
.tc-flipbox-wrap .horizontal-flip-left:hover .back-part {-webkit-transform: rotateY(0deg);transform: rotateY(0deg);}

/*--------------------------------------
    Horizontal Flip Right
----------------------------------------*/
.tc-flipbox-wrap .horizontal-flip-right .front-part {-webkit-transform: rotateY(0deg);transform: rotateY(0deg);}
.tc-flipbox-wrap .horizontal-flip-right:hover .front-part {-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg);}
.tc-flipbox-wrap .horizontal-flip-right .back-part {-webkit-transform: rotateY(180deg);transform: rotateY(180deg);}
.tc-flipbox-wrap .horizontal-flip-right:hover .back-part {-webkit-transform: rotateY(0deg);transform: rotateY(0deg);}

/*--------------------------------------
    Vertical Flip Bottom
----------------------------------------*/
.tc-flipbox-wrap .vertical-flip-bottom .front-part {-webkit-transform: rotateX(0deg);transform: rotateX(0deg);}
.tc-flipbox-wrap .vertical-flip-bottom:hover .front-part {-webkit-transform: rotateX(180deg);transform: rotateX(180deg);}
.tc-flipbox-wrap .vertical-flip-bottom .back-part {-webkit-transform: rotateX(-180deg);transform: rotateX(-180deg);}
.tc-flipbox-wrap .vertical-flip-bottom:hover .back-part {-webkit-transform: rotateX(0deg);transform: rotateX(0deg);}

/*--------------------------------------
    Vertical Flip Top
----------------------------------------*/
.tc-flipbox-wrap .vertical-flip-top .front-part {-webkit-transform: rotateX(0deg);transform: rotateX(0deg);}
.tc-flipbox-wrap .vertical-flip-top:hover .front-part {-webkit-transform: rotateX(-180deg);transform: rotateX(-180deg);}
.tc-flipbox-wrap .vertical-flip-top .back-part {-webkit-transform: rotateX(180deg);transform: rotateX(180deg);}
.tc-flipbox-wrap .vertical-flip-top:hover .back-part {-webkit-transform: rotateX(0deg);transform: rotateX(0deg);}


/*----------------------------
    Form Style1
------------------------------*/
.tc-form-style1 .form-field {margin-bottom: 20px;}
.tc-form-style1 .form-field input {width: 100%;height: 50px;padding: 5px 18px;font-size: 12px;border: 0;-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);}
.tc-form-style1 .form-field textarea {width: 100%;padding: 10px 18px;font-size: 12px;border: 0;-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);}
.tc-form-style1 .form-field input:focus, 
.tc-form-style1 .form-field textarea:focus {border-color: rgba(0, 0, 0, 0.4);outline: none;}
.tc-form-style1 .form-button {text-align: center;}
.tc-form-style1 .form-button button {background: #fff;border: 0;-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);height: 46px;min-width: 170px;font-size: 12px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-form-style1 .form-button button:hover {background: #444;border-color: #444;color: #fff;}

/*----------------------------
    Form Style2
------------------------------*/
.tc-form-style2 .form-field {margin-bottom: 20px;}
.tc-form-style2 .form-field input {width: 100%;height: 50px;padding: 5px 18px;font-size: 12px;border: 2px solid rgba(0, 0, 0, 0.04);}
.tc-form-style2 .form-field textarea {width: 100%;padding: 10px 18px;font-size: 12px;border: 2px solid rgba(0, 0, 0, 0.04);}
.tc-form-style2 .form-field input:focus, 
.tc-form-style2 .form-field textarea:focus {border-color: rgba(0, 0, 0, 0.4);outline: none;}
.tc-form-style2 .form-button {text-align: center;}
.tc-form-style2 .form-button button {background: #fff;border: 2px solid rgba(0, 0, 0, 0.04);height: 46px;min-width: 170px;font-size: 12px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-form-style2 .form-button button:hover {background: #444;border-color: #444;color: #fff;}

/*----------------------------
    Form Style3
------------------------------*/
.tc-form-style3 .form-field {margin-bottom: 20px;}
.tc-form-style3 .form-field input {background: transparent;width: 100%;height: 50px;padding: 5px 18px;font-size: 12px;border-width: 0 0 1px 0;border-style: solid;border-color: rgba(0, 0, 0, 0.1);}
.tc-form-style3 .form-field textarea {background: transparent;width: 100%;padding: 10px 18px;font-size: 12px;border-width: 0 0 1px 0;border-style: solid;border-color: rgba(0, 0, 0, 0.1);}
.tc-form-style3 .form-field input:focus, 
.tc-form-style3 .form-field textarea:focus {border-color: rgba(0, 0, 0, 0.4);outline: none;}
.tc-form-style3 .form-button {text-align: center;}
.tc-form-style3 .form-button button {background: transparent;border-width: 0 0 1px 0;border-style: solid;border-color: rgba(0, 0, 0, 0.1);height: 46px;min-width: 170px;font-size: 12px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-form-style3 .form-button button:hover {background: rgba(0, 0, 0, 0.05);border-color: rgba(0, 0, 0, 0.05);color: #444;}


/*--------------------------------
    Common Styles
----------------------------------*/
.heading-inner {position: relative;display: inline-block;margin-bottom: 20px;margin-top: 0;font-size: 24px;text-rendering: optimizeLegibility;}

/*--------------------------------
    Heading Style1
----------------------------------*/
.tc-heading-style1 .heading-inner {padding-bottom: 10px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
.tc-heading-style1 .heading-inner:after {content: '';position: absolute;height: 1px;width: 25%;bottom: -1px;left: 0;background-color: #232323;}
.tc-heading-style1.tc-heading-center {text-align: center;}
.tc-heading-style1.tc-heading-center .heading-inner:after {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-heading-style1.tc-heading-right {text-align: right;}
.tc-heading-style1.tc-heading-right .heading-inner:after {left: auto;right: 0;}

/*--------------------------------
    Heading Style2
----------------------------------*/
.tc-heading-style2 .heading-inner {padding-top: 10px;border-top: 1px solid rgba(0, 0, 0, 0.1);padding-bottom: 10px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
.tc-heading-style2 .heading-inner:before, 
.tc-heading-style2 .heading-inner:after {content: '';position: absolute;height: 1px;width: 25%;bottom: -1px;left: 0;background-color: #232323;}
.tc-heading-style2 .heading-inner:before {bottom: auto;top: -1px;}
.tc-heading-style2.tc-heading-center {text-align: center;}
.tc-heading-style2.tc-heading-center .heading-inner:before, 
.tc-heading-style2.tc-heading-center .heading-inner:after {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-heading-style2.tc-heading-right {text-align: right;}
.tc-heading-style2.tc-heading-right .heading-inner:before, 
.tc-heading-style2.tc-heading-right .heading-inner:after {left: auto;right: 0;}

/*--------------------------------
    Heading Style3
----------------------------------*/
.tc-heading-style3 .heading-inner {padding-bottom: 10px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
.tc-heading-style3 .heading-inner:after {content: '';position: absolute;height: 6px;width: 6px;bottom: -3px;left: 0;background-color: #232323;border-radius: 50%;}
.tc-heading-style3.tc-heading-center {text-align: center;}
.tc-heading-style3.tc-heading-center .heading-inner:after {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-heading-style3.tc-heading-right {text-align: right;}
.tc-heading-style3.tc-heading-right .heading-inner:after {left: auto;right: 0;}

/*--------------------------------
    Heading Style4
----------------------------------*/
.tc-heading-style4 .heading-inner {padding: 10px;}
.tc-heading-style4 .heading-inner:before {content: '';position: absolute;height: 10px;width: 10px;left: 0;top: 0;border-left: 1px solid #000;border-top: 1px solid #000;}
.tc-heading-style4 .heading-inner:after {content: '';position: absolute;height: 10px;width: 10px;right: 0;bottom: 0;border-right: 1px solid #000;border-bottom: 1px solid #000;}
.tc-heading-style4.tc-heading-center {text-align: center;}
.tc-heading-style4.tc-heading-right {text-align: right;}

/*--------------------------------
    Heading Style5
----------------------------------*/
.tc-heading-style5 .heading-inner {padding-bottom: 15px;}
.tc-heading-style5 .heading-inner:before {content: '';position: absolute;bottom: 0;height: 1px;width: 50px;background: #000;left: 0;}
.tc-heading-style5 .heading-inner:after {content: '';position: absolute;bottom: 3px;height: 1px;width: 80px;background: #000;left: 0;}
.tc-heading-style5.tc-heading-center {text-align: center;}
.tc-heading-style5.tc-heading-center .heading-inner:after,
.tc-heading-style5.tc-heading-center .heading-inner:before {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-heading-style5.tc-heading-right {text-align: right;}
.tc-heading-style5.tc-heading-right .heading-inner:after,
.tc-heading-style5.tc-heading-right .heading-inner:before {left: auto;right: 0;}

/*--------------------------------
    Heading Style6
----------------------------------*/
.tc-heading-style6 .heading-inner {padding-bottom: 15px;}
.tc-heading-style6 .heading-inner:before {content: '';position: absolute;bottom: 0px;height: 3px;width: 80px;background: #444;left: 0;border-radius: 7px;}
.tc-heading-style6 .heading-inner:after {content: '';position: absolute;bottom: 1px;height: 1px;width: 100%;background: #444;left: 0;}
.tc-heading-style6.tc-heading-center {text-align: center;}
.tc-heading-style6.tc-heading-center .heading-inner:after,
.tc-heading-style6.tc-heading-center .heading-inner:before {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-heading-style6.tc-heading-right {text-align: right;}
.tc-heading-style6.tc-heading-right .heading-inner:after,
.tc-heading-style6.tc-heading-right .heading-inner:before {left: auto;right: 0;}

/*--------------------------------
    Heading Sizes
----------------------------------*/
.tc-heading-xlarge .heading-inner {font-size: 42px;}
.tc-heading-large .heading-inner {font-size: 36px;}
.tc-heading-small .heading-inner {font-size: 17px;}


/*========================
    Image Caption #1
==========================*/
.tc-image-caption1 {position: relative;overflow: hidden;}
.tc-image-caption1 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption1:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-caption1 .caption {position: absolute;bottom: 20px;left: 20px;z-index: 10;}
.tc-image-caption1:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-caption1:hover:after {opacity: 1;}
.tc-image-caption1 .caption h3 {color: #fff;font-size: 19px;margin-bottom: 5px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-caption1 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption1:hover .caption h3, 
.tc-image-caption1:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption1 .link-wrap {position: absolute;top: 15px;right: 15px;z-index: 10;}
.tc-image-caption1 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(255,255,255,0.1);text-align: center;color: #fff;font-size: 14px;opacity: 0;border-radius: 50%;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption1 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 2px;}
.tc-image-caption1 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-caption1:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption1 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}

/*========================
    Image Caption #2
==========================*/
.tc-image-caption2 {position: relative;overflow: hidden;}
.tc-image-caption2 img {-webkit-transform: scale(1);transform: scale(1);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption2:hover img {-webkit-transform: scale(1.3);transform: scale(1.3);}
.tc-image-caption2 .caption {position: absolute;bottom: 20px;z-index: 10;width: 100%;text-align: center;}
.tc-image-caption2:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.4);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-caption2:hover:after {opacity: 1;}
.tc-image-caption2 .caption h3 {color: #fff;font-size: 19px;padding-top: 12px;margin-bottom: 0px;border-top: 1px solid rgba(255,255,255,.2);-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-caption2 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.6);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption2:hover .caption h3, 
.tc-image-caption2:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption2 .link-wrap {position: absolute;top: 45%;left: 50%;z-index: 10;-webkit-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}
.tc-image-caption2 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;border: 1px solid rgba(255,255,255,0.8);text-align: center;color: #fff;font-size: 14px;opacity: 0;border-radius: 50%;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption2 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 2px;}
.tc-image-caption2 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-caption2:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption2 .link-wrap a:hover {background-color: rgba(255,255,255,0.8);color: #444;}

/*========================
    Image Caption #3
==========================*/
.tc-image-caption3 {position: relative;overflow: hidden;}
.tc-image-caption3 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption3:hover img {-webkit-transform: scale(1.5) translateX(12px);transform: scale(1.5) translateX(12px);}
.tc-image-caption3 .caption {position: absolute;bottom: 20px;z-index: 10;right: 25px;text-align: right;}
.tc-image-caption3:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.7);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-caption3:hover:after {opacity: 1;}
.tc-image-caption3 .caption h3 {color: #fff;font-size: 19px;padding-top: 12px;margin-bottom: 0px;border-top: 3px solid rgba(255,255,255,.2);-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-caption3 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption3:hover .caption h3, 
.tc-image-caption3:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption3 .link-wrap {position: absolute;top: 25px;left: 25px;z-index: 10;}
.tc-image-caption3 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;border: 2px solid rgba(255,255,255,0.2);text-align: center;color: #fff;font-size: 12px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption3 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 2px;}
.tc-image-caption3 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-caption3:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption3 .link-wrap a:hover {background-color: rgba(255,255,255,0.8);color: #444;}

/*========================
    Image Caption #4
==========================*/
.tc-image-caption4 {position: relative;overflow: hidden;}
.tc-image-caption4 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption4:hover img {-webkit-transform: scale(1.5) translateX(-12px);transform: scale(1.5) translateX(-12px);}
.tc-image-caption4 .caption {position: absolute;bottom: 20px;z-index: 10;left: 25px;text-align: left;width: calc(100% - 50px);}
.tc-image-caption4:after {position: absolute;content: '';height: calc(100% - 20px);width: calc(100% - 20px);background-color: rgba(0, 0, 0, 0.4);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 10px;left: 10px;}
.tc-image-caption4:hover:after {opacity: 1;}
.tc-image-caption4 .caption h3 {color: #fff;font-size: 19px;margin-bottom: 5px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-caption4 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.8);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption4:hover .caption h3, 
.tc-image-caption4:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption4 .link-wrap {position: absolute;top: 25px;left: 25px;z-index: 10;}
.tc-image-caption4 .link-wrap a {display: inline-block;height: 32px;width: 32px;line-height: 32px;background-color: rgba(255,255,255,0.8);text-align: center;color: #444;font-size: 12px;border-radius: 50%;opacity: 0;-webkit-transform: scale(0);transform: scale(0);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption4 .link-wrap a:last-child {margin-left: 2px;-webkit-transition-delay: .1s;transition-delay: .1s;}
.tc-image-caption4:hover .link-wrap a {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}
.tc-image-caption4 .link-wrap a:hover {background-color: rgba(255,255,255,0.5);color: #444;}

/*==========================
    Caption Animation #5
===========================*/
.tc-image-caption5 {position: relative;overflow: hidden;}
.tc-image-caption5 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption5:hover img {-webkit-transform: scale(1.5) translateY(12px);transform: scale(1.5) translateY(12px);}
.tc-image-caption5:after {position: absolute;content: '';height: 100%;width: 100%;opacity: 0;background-color: rgba(0, 0, 0, 0.5);-webkit-transition: all .5s ease-in;transition: all .5s ease-in;top: 0;left: 0;}
.tc-image-caption5:hover:after {opacity: 1}
.tc-image-caption5 .caption {position: absolute;bottom: 0;z-index: 10;left: 0;text-align: left;width: 100%;padding: 15px;background-color: rgba(0,0,0,0.6);text-align: center;}
.tc-image-caption5 .caption h3 {color: #fff;font-size: 19px;margin-bottom: 2px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption5 .link-wrap {position: absolute;top: 40%;left: 50%;-webkit-transform: translateY(-50%) translateX(-50%);transform: translateY(-50%) translateX(-50%);z-index: 10;}
.tc-image-caption5 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;background-color: rgba(0, 0, 0, 0.6);text-align: center;color: #fff;font-size: 12px;border-radius: 50%;opacity: 0;-webkit-transform: scale(0);transform: scale(0);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption5 .link-wrap a:last-child {margin-left: 2px;-webkit-transition-delay: .1s;transition-delay: .1s;}
.tc-image-caption5:hover .link-wrap a {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}
.tc-image-caption5 .link-wrap a:hover {background-color: rgba(0, 0, 0, 0.9);color: #f5f5f5;}

/*========================
    Caption Animation #6
==========================*/
.tc-image-caption6 {position: relative;overflow: hidden;}
.tc-image-caption6 img {-webkit-transform: scale(1) rotate(0deg);transform: scale(1) rotate(0deg);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-caption6:hover img {-webkit-transform: scale(1.5) rotate(10deg);transform: scale(1.5) rotate(10deg);}
.tc-image-caption6:after {position: absolute;content: '';height: 100%;width: 100%;opacity: 0;background-color: rgba(0, 0, 0, 0.3);-webkit-transition: all .25s ease-in;transition: all .25s ease-in;top: 0;left: 0;}
.tc-image-caption6:hover:after {opacity: 1}
.tc-image-caption6 .caption {position: absolute;bottom: 0;z-index: 10;left: 0;text-align: left;width: 100%;padding: 15px;background-color: rgba(0,0,0,0.6);-webkit-transform: translateY(40px);transform: translateY(40px);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;text-align: center;opacity: 0;}
.tc-image-caption6:hover .caption {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-caption6 .caption h3 {color: #fff;font-size: 19px;margin-bottom: 2px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption6 .link-wrap {position: absolute;top: 40%;left: 50%;-webkit-transform: translateY(-50%) translateX(-50%);transform: translateY(-50%) translateX(-50%);z-index: 10;}
.tc-image-caption6 .link-wrap a {display: inline-block;height: 32px;width: 32px;line-height: 32px;background-color: rgba(0, 0, 0, 0.6);text-align: center;color: #fff;font-size: 12px;border-radius: 50%;opacity: 0;-webkit-transform: scale(0);transform: scale(0);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-caption6 .link-wrap a:last-child {margin-left: 2px;-webkit-transition-delay: .1s;transition-delay: .1s;}
.tc-image-caption6:hover .link-wrap a {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}
.tc-image-caption6 .link-wrap a:hover {background-color: rgba(0, 0, 0, 0.9);color: #f5f5f5;}


/*-----------------------
    Common Styles
-------------------------*/
[class*="tc-link"],
[class*="tc-link"] ul {padding: 0;margin: 0;}
[class*="tc-link"] li {display: inline-block;list-style-type: none;}
[class*="tc-link"] li + li {margin-left: 15px;}
[class*="tc-link"] li a {display: block;position: relative;color: #777;-webkit-transition: all .25s ease;transition: all .25s ease;}
[class*="tc-link"] li a:hover,
[class*="tc-link"] li.active a {color: #444;}

/*-----------------------
    Link Effect1
-------------------------*/

.tc-link-effect1 li a {position: relative;padding-bottom: 8px;}
.tc-link-effect1 li a::after {position: absolute;top: 100%;left: 0;width: 100%;height: 3px;background: rgba(0, 0, 0, 0.1);content: '';opacity: 0;-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;transition: opacity 0.3s, transform 0.3s;-webkit-transform: translateY(10px);transform: translateY(10px);}
.tc-link-effect1 li a:hover::after,
.tc-link-effect1 li.active a:after {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}

/*-----------------------
    Link Effect2
-------------------------*/
.tc-link-effect2 li a {position: relative;padding-bottom: 8px;}
.tc-link-effect2 li a::after {position: absolute;top: 100%;left: 0;width: 0;height: 1px;background: #444;content: '';opacity: 0;-webkit-transition: opacity 0.3s, width 0.4s;transition: opacity 0.3s, width 0.4s;}
.tc-link-effect2 li a:hover::after,
.tc-link-effect2 li.active a:after {opacity: 1;width: 30px;}

/*-----------------------
    Link Effect3
-------------------------*/
.tc-link-effect3 li a {padding-bottom: 10px;}
.tc-link-effect3 li a::after {position: absolute;top: 100%;left: 0;width: 100%;height: 1px;background: #777;content: '';opacity: 0;-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;transition: height 0.3s, opacity 0.3s, transform 0.3s;-webkit-transform: translateY(-10px);transform: translateY(-10px);}
.tc-link-effect3 li a:hover::after,
.tc-link-effect3 li.active a::after {height: 5px;opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}

/*-----------------------
    Link Effect4
-------------------------*/
.tc-link-effect4 li + li {margin-left: 15px;}
.tc-link-effect4 li a::before,
.tc-link-effect4 li a::after {position: absolute;top: 50%;left: 50%;width: 80px;height: 80px;border: 2px solid rgba(0, 0, 0, 0.05);border-radius: 50%;content: '';opacity: 0;-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);transform: translateX(-50%) translateY(-50%) scale(0.2);}
.tc-link-effect4 li a::after {width: 70px;height: 70px;border-width: 6px;-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);transform: translateX(-50%) translateY(-50%) scale(0.8);}
.tc-link-effect4 li a:hover::before,
.tc-link-effect4 li a:hover::after,
.tc-link-effect4 li.active a:before,
.tc-link-effect4 li.active a:after {opacity: 1;-webkit-transform: translateX(-50%) translateY(-50%) scale(1);transform: translateX(-50%) translateY(-50%) scale(1);}

/*-----------------------
    Link Effect5
-------------------------*/
.tc-link-effect5 li a {padding: 10px 0;}
.tc-link-effect5 li a::before,
.tc-link-effect5 li a::after {position: absolute;left: 0;width: 100%;height: 2px;background: rgba(0, 0, 0, 0.4);content: '';opacity: 0;-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;transition: opacity 0.3s, transform 0.3s;-webkit-transform: translateY(-10px);transform: translateY(-10px);}
.tc-link-effect5 li a::before {top: 0;-webkit-transform: translateY(-10px);transform: translateY(-10px);}
.tc-link-effect5 li a::after {bottom: 0;-webkit-transform: translateY(10px);transform: translateY(10px);}
.tc-link-effect5 li a:hover::before,
.tc-link-effect5 li.active a:before,
.tc-link-effect5 li a:hover::after,
.tc-link-effect5 li.active a:after {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}


/*---------------------
    Common Styles
-----------------------*/
[class*="tc-member-"] img {width: 100%;}


/*-------------------
    Style1
---------------------*/
.tc-member-style1 {overflow: hidden;box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);}
.tc-member-style1 .member-photo {overflow: hidden;position: relative;}
.tc-member-style1 .member-photo img {transition: all .3s cubic-bezier(0, 0, 0, 0.1);transition: all .3s cubic-bezier(0, 0, 0, 0.1);-webkit-transform: scale(1);transform: scale(1);}
.tc-member-style1 .member-icons {margin-top: 10px;position: absolute;bottom: 20px;width: 70%;background: rgba(255, 255, 255, 0.13);text-align: center;padding: 6px 20px;}
.tc-member-style1.member-light .member-icons {background: rgba(0, 0, 0, 0.3);}
.tc-member-style1 .member-icons:before {content: '';position: absolute;right: -100%;height: 1px;width: 100%;background: rgba(255, 255, 255, 0.13);top: 50%;}
.tc-member-style1.member-light .member-icons:before {background: rgba(0, 0, 0, 0.3);}
.tc-member-style1 .member-icon i {font-size: 13px;color: rgb(255, 255, 255);margin: 0 6px;-webkit-transition: transform .2s cubic-bezier(0, 0, 0, 0.6), -webkit-transform .2s cubic-bezier(0, 0, 0, 0.6);transition: transform .2s cubic-bezier(0, 0, 0, 0.6), -webkit-transform .2s cubic-bezier(0, 0, 0, 0.6);-webkit-transform: scale(1);transform: scale(1);}
.tc-member-style1 .member-info {padding: 25px 20px;}
.tc-member-style1 .member-name {font-size: 18px;margin: 0;}
.tc-member-style1 span.member-role {font-size: 12px;color: #999;display: block;}
.tc-member-style1 .member-icon i:hover {-webkit-transform: scale(1.2);transform: scale(1.2);}
.tc-member-style1:hover .member-photo img {-webkit-transform: scale(1.1);transform: scale(1.1);}

/*-------------------
    Style2
---------------------*/
.tc-member-style2 {box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);-webkit-transform: translateY(0);transform: translateY(0);-webkit-transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);}
.tc-member-style2 .member-photo {position: relative;}
.tc-member-style2 .member-icons {position: absolute;top: 0;background: #232323;text-align: center;width: 40px;padding: 10px 0;left: -7px;}
.tc-member-style2 .member-icons:before {content: '';position: absolute;left: -7px;bottom: -7px;border: 7px solid transparent;border-right-color: #232323;}
.tc-member-style2 .member-icon i {font-size: 13px;color: rgb(255, 255, 255);margin: 0 6px;}
.tc-member-style2 .member-info {padding: 20px 20px;}
.tc-member-style2 .member-name {font-size: 18px;margin: 0;position: relative;padding-bottom: 3px;}
.tc-member-style2 .member-name:before {content: '';position: absolute;right: 0;height: 1px;width: 30px;background: #000;bottom: 0;}
.tc-member-style2 span.member-role {font-size: 12px;color: #999;display: block;}
.tc-member-style2:hover {-webkit-transform: translateY(-10px);transform: translateY(-10px);}

/*--------------------
    Style3
----------------------*/
.tc-member-style3 {box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);-webkit-transform: translateY(0);transform: translateY(0);-webkit-transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);}
.tc-member-style3 .member-photo {position: relative;}
.tc-member-style3 .member-icons {position: absolute;bottom: 0;background: rgba(255,255,255,0.1);width: 100%;padding: 7px 10px;left: 0;}
.tc-member-style3.member-light .member-icons {background: rgba(0,0,0,0.4);}
.tc-member-style3 .member-icon i {font-size: 11px;color: rgb(255, 255, 255);margin: 0 6px;height: 26px;border: 1px solid rgba(255, 255, 255, 0.38);width: 26px;line-height: 26px;text-align: center;border-radius: 50%;background: transparent;-webkit-transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);}
.tc-member-style3 .member-info {padding: 20px 20px;}
.tc-member-style3 .member-name {font-size: 18px;margin: 0;}
.tc-member-style3 span.member-role {font-size: 12px;color: #999;display: block;}
.tc-member-style3:hover {-webkit-transform: translateY(-10px);transform: translateY(-10px);}
.tc-member-style3 .member-icon i:hover {background: #fff;color: #444;}

/*--------------------
    Style4
----------------------*/
.tc-member-style4 {position: relative;-webkit-transform: translateY(0);transform: translateY(0);-webkit-transition: all .15s cubic-bezier(0, 0, 0, 0.1);transition: all .15s cubic-bezier(0, 0, 0, 0.1);margin-bottom: 51px;}
.tc-member-style4 .member-icons {position: absolute;top: 100%;padding: 12px 15px;right: 0;width: 100%;-webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);}
.tc-member-style4 .member-icon i {font-size: 11px;color: rgb(0, 0, 0);margin: 0 2px;height: 26px;border: 1px solid rgba(0, 0, 0, 0.18);width: 26px;line-height: 26px;text-align: center;-webkit-transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);transition: all .25s cubic-bezier(0.43, 0.44, 0.63, 0.61);}
.tc-member-style4 .member-info {padding: 8px 20px;position: absolute;bottom: 0;width: 100%;color: #fff;background: rgba(255, 255, 255, 0.02);}
.tc-member-style4.member-light .member-info {background: rgba(0, 0, 0, 0.3);}
.tc-member-style4 .member-name {font-size: 18px;margin: 0;color: #fff;}
.tc-member-style4 span.member-role {font-size: 12px;color: #fff;display: block;}
.tc-member-style4:hover {-webkit-transform: translateY(-10px);transform: translateY(-10px);}
.tc-member-style4 .member-icon i:hover {background: rgba(0, 0, 0, 0.18);color: #444;}

/*---------------------------
    Member Alignment
----------------------------*/
.tc-member-style1.member-align-right {text-align: right;}
.tc-member-style1.member-align-right .member-icons {right: 0;}
.tc-member-style1.member-align-right .member-icons:before {left: -100%;}
.tc-member-style1.member-align-center {text-align: center;}
.tc-member-style1.member-align-center .member-icons {left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-member-style1.member-align-center .member-icons:before {right: 100%;}
.tc-member-style1.member-align-center .member-icons:after {content: '';position: absolute;left: 100%;height: 1px;width: 100%;background: rgba(255,255,255,0.1);top: 50%;}
.tc-member-style2.member-align-right .member-info {text-align: right;}
.tc-member-style2.member-align-right .member-name:before {left: 0;}
.tc-member-style2.member-align-right .member-icons {right: -7px;left: auto;}
.tc-member-style2.member-align-right .member-icons:before {right: -7px;left: auto;border-left-color: #232323;border-right-color: transparent;}
.tc-member-style2.member-align-center .member-info {text-align: center;}
.tc-member-style2.member-align-center .member-name {padding-bottom: 8px;margin-bottom: 3px;}
.tc-member-style2.member-align-center .member-name:before {right: 50%;-webkit-transform: translateX(50%);transform: translateX(50%);}
.tc-member-style3.member-align-right {text-align: right;}
.tc-member-style3.member-align-center {text-align: center;}
.tc-member-style4.member-align-right {text-align: right;}
.tc-member-style4.member-align-center {text-align: center;}
.tc-member-style5.member-align-right {text-align: right;}
.tc-member-style5.member-align-center {text-align: center;}
.tc-member-style6.member-align-right {text-align: right;}
.tc-member-style6.member-align-center {text-align: center;}

/*---------------------
    Media Styles
-----------------------*/
@media (max-width: 991px) {
    .row div[class*="col-"] {margin-bottom: 35px;}
    .row div[class*="col-"]:last-child {margin-bottom: 0;}
    .tc-member-style4, 
    .tc-member-style5 {margin-bottom: 81px;}
}


/*-----------------------------
    Common Styles
-------------------------------*/
div[class*="tc-note-"] + div[class*="tc-note-"] {margin-top: 20px;}

/*-----------------------------
    Note Style1
-------------------------------*/
.tc-note-style1 {vertical-align: middle;padding: 20px;background-color: #fff;border: 1px solid #f5f5f5;display: table;width: 100%;}
.tc-note-style1 .note-icon {color: #aaa;width: 58px;display: table-cell;text-align: center;vertical-align: middle;font-size: 30px;}
.tc-note-style1 .note-desc {vertical-align: middle;padding-left: 15px;}
.tc-note-style1 .note-desc h3 {margin: 0 0 7px 0;font-size: 20px;}
.tc-note-style1.tc-note-info {border-color: #3dc0f1;}
.tc-note-style1.tc-note-info .note-icon {color: #3dc0f1;}
.tc-note-style1.tc-note-success {border-color: #4CAF50;}
.tc-note-style1.tc-note-success .note-icon {color: #4CAF50;}
.tc-note-style1.tc-note-warning {border-color: #FF9800;}
.tc-note-style1.tc-note-warning .note-icon {color: #FF9800;}
.tc-note-style1.tc-note-danger {border-color: #ff5252;}
.tc-note-style1.tc-note-danger .note-icon {color: #ff5252;}

/*-----------------------------
    Note Style2
-------------------------------*/
.tc-note-style2 {vertical-align: middle;padding: 20px;background-color: #fff;border-top: 3px solid #444;display: table;width: 100%;-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);}
.tc-note-style2 .note-icon {width: 58px;display: table-cell;text-align: center;vertical-align: middle;font-size: 30px;}
.tc-note-style2 .note-desc {vertical-align: middle;padding-left: 15px;}
.tc-note-style2 .note-desc h3 {margin: 0 0 7px 0;font-size: 20px;}
.tc-note-style2.tc-note-info {border-color: #3dc0f1;}
.tc-note-style2.tc-note-info .note-icon {color: #3dc0f1;}
.tc-note-style2.tc-note-success {border-color: #4CAF50;}
.tc-note-style2.tc-note-success .note-icon {color: #4CAF50;}
.tc-note-style2.tc-note-warning {border-color: #FF9800;}
.tc-note-style2.tc-note-warning .note-icon {color: #FF9800;}
.tc-note-style2.tc-note-danger {border-color: #ff5252;}
.tc-note-style2.tc-note-danger .note-icon {color: #ff5252;}

/*-----------------------------
    Note Style3
-------------------------------*/
.tc-note-style3 {vertical-align: middle;padding: 20px;background-color: #fff;border: 2px solid #f5f5f5;display: table;width: 100%;}
.tc-note-style3 .note-icon {width: 58px;height: 58px;line-height: 58px;display: table-cell;text-align: center;vertical-align: middle;font-size: 20px;background: rgba(0,0,0,0.05);border-radius: 50%;color: #444;}
.tc-note-style3 .note-desc {vertical-align: middle;padding-left: 15px;margin-left: 20px;border-left: 2px solid rgba(0,0,0,0.04);}
.tc-note-style3 .note-desc h3 {margin: 0 0 7px 0;font-size: 20px;}
.tc-note-style3.tc-note-info {background-color: #3dc0f1;}
.tc-note-style3.tc-note-success {background-color: #4CAF50;}
.tc-note-style3.tc-note-warning {background-color: #FF9800;}
.tc-note-style3.tc-note-danger {background-color: #ff5252;}
.tc-note-style3.tc-note-info .note-desc h3, 
.tc-note-style3.tc-note-info .note-desc p {color: #fff;}
.tc-note-style3.tc-note-success .note-desc h3, 
.tc-note-style3.tc-note-success .note-desc p {color: #fff;}
.tc-note-style3.tc-note-warning .note-desc h3, 
.tc-note-style3.tc-note-warning .note-desc p {color: #fff;}
.tc-note-style3.tc-note-danger .note-desc h3, 
.tc-note-style3.tc-note-danger .note-desc p {color: #fff;}
.tc-note-style3.tc-note-info .note-icon, 
.tc-note-style3.tc-note-success .note-icon, 
.tc-note-style3.tc-note-warning .note-icon, 
.tc-note-style3.tc-note-danger .note-icon {color: #fff;background-color: rgba(255,255,255,0.15);}

/*-----------------------------
    Note Style4
-------------------------------*/
.tc-note-style4 {padding: 25px;background-color: #fff;border: 1px solid #f5f5f5;position: relative;overflow: hidden;}
.tc-note-style4 .note-icon {text-align: center;position: absolute;right: -17px;bottom: 0;font-size: 90px;transform: rotate(15deg);opacity: 0.1;color: #bbb;}
.tc-note-style4 .note-desc h3 {margin: 0 0 7px 0;font-size: 20px;border-bottom: 1px solid rgba(68, 68, 68, 0.04);padding-bottom: 8px;margin-bottom: 14px;width: 95%;}
.tc-note-style4.tc-note-info, 
.tc-note-style4.tc-note-info .note-desc h3 {border-color: rgba(61, 192, 241, 0.5);}
.tc-note-style4.tc-note-info .note-icon {color: #3dc0f1;}
.tc-note-style4.tc-note-success, 
.tc-note-style4.tc-note-success .note-desc h3 {border-color: rgba(76, 175, 80, 0.5);}
.tc-note-style4.tc-note-success .note-icon {color: #4CAF50;}
.tc-note-style4.tc-note-warning, 
.tc-note-style4.tc-note-warning .note-desc h3 {border-color: rgba(255, 152, 0, 0.5);}
.tc-note-style4.tc-note-warning .note-icon {color: #FF9800;}
.tc-note-style4.tc-note-danger, 
.tc-note-style4.tc-note-danger .note-desc h3 {border-color: rgba(255, 82, 82, 0.5);}
.tc-note-style4.tc-note-danger .note-icon {color: #ff5252;}


/*-----------------------------
    Common Styles
-------------------------------*/
.post-grid-img img {width: 100%}
.post-grid-item {margin-bottom: 25px;}

/*--------------------------
    Post Grid Style1
----------------------------*/
.tc-post-grid-style1 .post-grid-content {padding: 25px;border-width: 0 1px 1px 1px;border-style: solid;border-color: #eee;background-color: #fff;}
.tc-post-grid-style1 .post-grid-title {font-size: 18px;text-transform: uppercase;margin-bottom: 4px;margin-top: 0;}
.tc-post-grid-style1 .post-grid-title a {color: #222;text-decoration: none;}
.tc-post-grid-style1 .post-grid-title a:hover {color: #555;}
.tc-post-grid-style1 .post-grid-meta {padding: 0;list-style-type: none;margin: 0;font-size: 10px;text-transform: uppercase;}
.tc-post-grid-style1 .post-grid-meta * {color: #999;}
.tc-post-grid-style1 .post-grid-meta li {display: inline-block;position: relative;}
.tc-post-grid-style1 .post-grid-meta li + li {padding-left: 10px;margin-left: 10px;}
.tc-post-grid-style1 .post-grid-meta li + li:after {position: absolute;content: '';background: #ddd;height: 8px;width: 1px;top: 50%;left: -2px;-webkit-transform: translateY(-50%);transform: translateY(-50%);}
.tc-post-grid-style1 .post-grid-desc {margin-top: 10px;}
.tc-post-grid-style1 .post-grid-desc p {color: #888;}
.tc-post-grid-style1 .post-grid-footer {margin-top: 25px;}
.tc-post-grid-style1 .post-grid-footer .readon {padding: 4px 17px;font-size: 11px;border: 1px solid #eee;color: #999;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-post-grid-style1 .post-grid-footer .readon:hover {border-color: #444;background-color: #444;color: #bbb;}

/*-----------------------
    Post Grid Style2
------------------------*/
.tc-post-grid-style2 .post-grid-content {padding: 20px 20px 12px;background-color: #ffffff;-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);}
.tc-post-grid-style2 .post-grid-img {overflow: hidden;}
.tc-post-grid-style2 .post-grid-img img {-webkit-transform: scale(1);transform: scale(1);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-post-grid-style2 .post-grid-item:hover .post-grid-img img {-webkit-transform: scale(1.3);transform: scale(1.3);opacity: 0.8;}
.tc-post-grid-style2 .post-grid-title {font-size: 18px;text-transform: uppercase;margin-bottom: 4px;margin-top: 0;}
.tc-post-grid-style2 .post-grid-title a {color: #222;text-decoration: none;}
.tc-post-grid-style2 .post-grid-title a:hover {color: #555;}
.tc-post-grid-style2 .post-grid-meta {list-style-type: none;margin: 10px 0;font-size: 10px;text-transform: uppercase;background: #f5f5f5;padding: 0px 10px;}
.tc-post-grid-style2 .post-grid-meta * {color: #666;}
.tc-post-grid-style2 .post-grid-meta li {display: inline-block;position: relative;}
.tc-post-grid-style2 .post-grid-meta li + li {padding-left: 10px;margin-left: 10px;}
.tc-post-grid-style2 .post-grid-meta li + li:after {position: absolute;content: '';background: #666;height: 1px;width: 5px;top: 50%;left: -2px;}
.tc-post-grid-style2 .post-grid-desc {margin-top: 20px;}
.tc-post-grid-style2 .post-grid-desc p {color: #888;}
.tc-post-grid-style2 .post-grid-footer {margin-top: 10px;}
.tc-post-grid-style2 .post-grid-footer .readon {font-size: 13px;color: #777;}

/*-----------------------
    Post Grid Style3
------------------------*/
.tc-post-grid-style3 .post-grid-item {margin-bottom: 25px;padding: 0 12px;}
.tc-post-grid-style3 .post-grid-img {position: relative;margin-left: -12px;margin-right: -12px;}
.tc-post-grid-style3 .post-grid-img .post-date {position: absolute;top: 15px;background: rgba(0, 0, 0, 0.7);padding: 8px 15px;left: 15px;font-size: 16px;color: #fff;}
.tc-post-grid-style3 .post-grid-meta {padding-left: 0;list-style-type: none;margin-bottom: 5px;}
.tc-post-grid-style3 .post-grid-meta li {display: inline-block;font-size: 12px;margin-right: 5px;}
.tc-post-grid-style3 .post-grid-meta li a {color: #999;}
.tc-post-grid-style3 .post-grid-content {background: #fff;border: 1px solid #f5f5f5;padding: 25px;margin-top: -25px;z-index: 111;position: relative;}
.tc-post-grid-style3 .post-grid-title {margin-top: 0;font-size: 18px;margin-bottom: 20px;}
.tc-post-grid-style3 .post-grid-title a {color: #444;}
.tc-post-grid-style3 .post-grid-title a:hover {color: #222;}
.tc-post-grid-style3 .post-grid-desc {margin-bottom: 15px;}
.tc-post-grid-style3 .post-grid-footer .readon {padding: 2px 14px;font-size: 11px;border: 1px solid rgba(0, 0, 0, 0.1);color: #999;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-post-grid-style3 .post-grid-footer .readon:hover {border-color: #444;background-color: #444;color: #bbb;}


/*-----------------------------
    Services Style1
-------------------------------*/
.tc-services-style1 .services-item {padding: 30px 25px 25px;position: relative;text-align: center;background: #fff;border: 1px solid rgba(0, 0, 0, 0.05);margin-bottom: 25px;}
.tc-services-style1 .services-icon {font-size: 32px;display: inline-block;background-color: #444;color: #bbb;height: 82px;width: 82px;text-align: center;line-height: 82px;border-radius: 50%;margin-bottom: 10px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style1 .services-item:hover .services-icon {background-color: #222;color: #fff;}
.tc-services-style1 .services-title {display: inline-block;font-size: 17px;margin-bottom: 20px;}
.tc-services-style1 .services-desc p {font-size: 12px;line-height: 1.6;color: #888;}
.tc-services-style1 .services-desc a {color: #888;font-size: 12px;position: relative;display: inline-block;text-decoration: none !important;margin-top: 15px;}
.tc-services-style1 .services-desc a:hover {color: #222;}

/*-----------------------------
    Services Style2
-------------------------------*/
.tc-services-style2 .services-item {position: relative;text-align: center;background: #fff;border: 1px solid rgba(0, 0, 0, 0.05);margin-bottom: 25px;}
.tc-services-style2 .services-icon {font-size: 25px;padding: 30px;background-color: #f5f5f5;color: #bbb;text-align: center;margin-bottom: 10px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;margin-left: -1px;margin-right: -1px;margin-top: -1px;}
.tc-services-style2 .services-item:hover .services-icon {background-color: #222;color: #fff;}
.tc-services-style2 .services-desc {padding: 20px;}
.tc-services-style2 .services-title {display: inline-block;font-size: 16px;margin-top: 0;margin-bottom: 20px;}
.tc-services-style2 .services-desc p {font-size: 12px;line-height: 1.6;color: #777;}
.tc-services-style2 .services-desc a {color: #777;font-size: 12px;position: relative;display: inline-block;text-decoration: none !important;margin-top: 15px;}
.tc-services-style2 .services-desc a:hover {color: #222;}

/*-----------------------------
    Services Style3
-------------------------------*/
.tc-services-style3 .services-item {padding: 30px 25px 25px;position: relative;text-align: center;background-color: #fff;border: 1px solid rgba(0, 0, 0, 0.05);margin-bottom: 25px;}
.tc-services-style3 .services-icon {font-size: 36px;display: inline-block;color: #bbb;text-align: center;margin-bottom: 15px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style3 .services-title {background-color: #444;color: #fff;padding: 15px;font-size: 16px;margin-bottom: 30px;margin-left: -25px;margin-right: -25px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style3 .services-item:hover .services-title {background-color: #222;}
.tc-services-style3 .services-desc p {font-size: 12px;line-height: 20px;color: #888;}
.tc-services-style3 .services-desc a {position: relative;display: inline-block;color: #888;font-size: 11px;line-height: normal;border: 1px solid #e5e5e5;text-decoration: none !important;padding: 3px 10px;margin-top: 20px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style3 .services-desc a:hover {color: #222;border-color: #222;}

/*-----------------------------
    Services Style4
-------------------------------*/
.tc-services-style4 .services-item {padding: 30px 25px 25px;position: relative;text-align: center;background-color: #fff;border: 1px solid rgba(0, 0, 0, 0.05);margin-bottom: 25px;margin-top: 50px;}
.tc-services-style4 .services-icon {position: absolute;top: -35px;background-color: #fff;border: 1px solid #eee;height: 70px;width: 70px;font-size: 26px;color: #bbb;text-align: center;z-index: 11;margin-bottom: 15px;line-height: 70px;-webkit-transform: rotate(45deg);transform: rotate(45deg);left: 50%;margin-left: -35px;}
.tc-services-style4 .services-icon i {-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
.tc-services-style4 .services-title {font-size: 16px;padding-top: 20px;padding-bottom: 15px;}
.tc-services-style4 .services-desc p {font-size: 12px;line-height: 20px;color: #888;}
.tc-services-style4 .services-desc a {position: relative;display: inline-block;color: #888;font-size: 11px;line-height: normal;border: 1px solid #e5e5e5;border-radius: 10px;text-decoration: none !important;padding: 2px 12px;margin-top: 20px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style4 .services-desc a:hover {color: #222;border-color: #222;}
@media (max-width: 767px) {.tc-services-style4 .services-item {margin-top: 70px;}}

/*-----------------------------
    Services Style5
-------------------------------*/
.tc-services-style5 .services-item {position: relative;text-align: center;margin-bottom: 30px;}
.tc-services-style5 .services-icon {display: inline-block;background-color: #fff;border: 1px solid #eee;height: 90px;width: 90px;line-height: 90px;font-size: 34px;color: #bbb;text-align: center;margin-bottom: 15px;border-radius: 50%;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style5 .services-item:hover .services-icon {background-color: #232323;border-color: #232323;color: #fff;}
.tc-services-style5 .services-icon i {-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
.tc-services-style5 .services-title {font-size: 16px;margin-top: 20px;margin-bottom: 20px;}
.tc-services-style5 .services-desc p {font-size: 12px;line-height: 20px;color: #888;}
.tc-services-style5 .services-desc a {position: relative;display: inline-block;color: #888;font-size: 11px;line-height: normal;border: 1px solid #e5e5e5;border-radius: 10px;text-decoration: none !important;padding: 2px 12px;margin-top: 20px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style5 .services-desc a:hover {color: #222;border-color: #222;}

/*-----------------------------
    Services Style6
-------------------------------*/
.tc-services-style6 .services-item {position: relative;margin-bottom: 30px;}
.tc-services-style6 .services-icon {position: relative;display: inline-block;background-color: #444;height: 70px;width: 76px;line-height: 70px;font-size: 26px;color: #fff;text-align: center;margin-bottom: 15px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style6 .services-icon:before {content: '';position: absolute;border: 10px solid transparent;border-top-color: #444;bottom: -9px;left: 0;transform: rotate(-90deg);}
.tc-services-style6 .services-icon i {-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
.tc-services-style6 .services-title {font-size: 16px;margin-top: 20px;margin-bottom: 20px;}
.tc-services-style6 .services-desc p {font-size: 12px;line-height: 20px;color: #999;}
.tc-services-style6 .services-desc a {position: relative;display: inline-block;color: #777;font-size: 12px;line-height: normal;text-decoration: none !important;margin-top: 20px;-webkit-transition: all .3s ease-out;transition: all .3s ease-out;}
.tc-services-style6 .services-desc a:hover {color: #222;border-color: #222;}


/*-----------------------
    Tabs style 1
-------------------------*/
.tc-tabs-style1 {padding: 20px;background: #ffffff;box-shadow: 0 3px 10px rgba(51, 122, 183, 0.1);}
.tc-tabs-style1 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;}
.tc-tabs-style1 .tc-tab-desc {font-size: 13px;}
.tc-tabs-style1 .tab-content {margin-top: 20px;padding-left: 5px;}
.tc-tabs-style1 .nav-tabs {border-bottom: 0;}
.tc-tabs-style1 .nav-tabs li a {margin-bottom: 4px;border: 0 !important;border-radius: 0;line-height: normal;font-size: 13px;color: #777;font-weight: 600;}
.tc-tabs-style1 .nav-tabs li a:hover, 
.tc-tabs-style1 .nav-tabs li.active a {background: #f5f5f5;}


/*-----------------------
    Tabs style 2
-------------------------*/
.tc-tabs-style2 {padding: 20px;background: #ffffff;border: 2px solid rgba(68, 68, 68, 0.1);}
.tc-tabs-style2 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;}
.tc-tabs-style2 .tc-tab-desc {font-size: 13px;}
.tc-tabs-style2 .tab-content {margin-top: 20px;padding-left: 5px;}
.tc-tabs-style2 .nav-tabs {border-bottom: 0;}
.tc-tabs-style2 .nav-tabs li a {border: 0 !important;border-radius: 0;line-height: normal;font-size: 13px;color: #777;border-radius: 20px;font-weight: 600;padding: 8px 20px;margin-right: 4px;margin-bottom: 4px;}
.tc-tabs-style2 .nav-tabs li a:hover, 
.tc-tabs-style2 .nav-tabs li.active a {background: #000000;color: #fff;}

/*


.tc-tabs-style2 .fl-tabs-label {
	cursor: pointer;
}
.tc-tabs-style2 .fl-tabs-labels {
	border: 0 !important;
	border-radius: 0;
	line-height: normal;
	font-size: 13px;
	color: #777;
	border-radius: 20px;
	font-weight: 600;
	padding: 8px 20px;
	margin-right: 4px;
	margin-bottom: 4px;
}
.tc-tabs-style2 .fl-tabs-label {
	border-bottom: 0;
}

.tc-tabs-style2 .fl-tabs-label.fl-tab-active {
	background: #fff;
	position: relative;
	z-index: 1;
}
.tc-tabs-style2 .fl-tabs-label a {border: 0 !important;border-radius: 0;line-height: normal;font-size: 13px;color: #777;border-radius: 20px;font-weight: 600;padding: 8px 20px;margin-right: 4px;margin-bottom: 4px;}
.tc-tabs-style2 .fl-tabs-label a:hover, 
.tc-tabs-style2 .fl-tabs-label.active a {background: #000000;color: #fff;}



.tc-tabs-style2 .fl-tabs-label.fl-tab-active:focus {
	outline: 0;
}

.tc-tabs-style2 .fl-tabs-horizontal .fl-tabs-label.fl-tab-active {
	border-width: 1px;
	border-style: solid;
	border-bottom: none !important;
	padding: 11px 18px 12px;
	top: 1px;
}

.tc-tabs-style2 .fl-tabs-panel-label {
	display: none;
}
.tc-tabs-style2 .fl-tabs-panel-label span {
	display: table-cell;
	width: 100%;
}
.tc-tabs-style2 .fl-tabs-panel-label .fa {
	display: table-cell;
	line-height: inherit;
	opacity: .5;
	filter: alpha(opacity=50);
	padding-left: 15px;
	vertical-align: middle;
}
.tc-tabs-style2 .fl-tabs-panels {
	background: #fff;
	border-width: 1px;
	border-style: solid;
}
.tc-tabs-style2 .fl-tabs-panel-content {
	display: none;
	padding: 18px;
}
.tc-tabs-style2 .fl-tabs-panel-content.fl-tab-active {
	display: block;
}
.tc-tabs-style2 .fl-tabs-panel-content p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.tc-tabs-style2 .fl-tabs-horizontal .tc-tabs-style2 .fl-tabs-label {
	float: left;
}

.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-labels {
	float: left;
	width: 30%;
}
.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-label.fl-tab-active {
	border-width: 1px;
	border-style: solid;
	border-right: none !important;
	left: 1px;
	padding: 11px 18px 11px 16px;
}
.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-panels {
	float: left;
	width: 70%;
}
@media (max-width: 768px) {
	.tc-tabs-style2 .fl-tabs-labels {
		display: none;
	}
	.tc-tabs-style2 .fl-tabs-label.fl-tab-active {
		position: static;
	}
	.tc-tabs-style2 .fl-tabs-panel-label {
		display: table;
		padding: 10px 15px;
	}
	.tc-tabs-style2 .fl-tabs-panel {
		border-bottom-style: solid;
		border-bottom-width: 1px;
	}
	.tc-tabs-style2 .fl-tabs-panel:last-child {
		border-bottom: none;
	}
	.tc-tabs-style2 .fl-tabs-panel-content {
		padding: 0 15px 15px 15px;
	}
	.tc-tabs-style2 .fl-tabs-horizontal .tc-tabs-style2 .fl-tabs-label {
		float: none;
	}
	.tc-tabs-style2 .fl-tabs-horizontal .tc-tabs-style2 .fl-tabs-label.fl-tab-active {
		border: none;
		padding: 10px 15px;
	}
	.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-labels {
		float: none;
		width: auto;
	}
	.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-label.fl-tab-active {
		border: none;
		padding: 10px 15px;
	}
	.tc-tabs-style2 .fl-tabs-vertical .tc-tabs-style2 .fl-tabs-panels {
		float: none;
		width: auto;
	}
}
*/

/*-----------------------
    Tabs style 3
-------------------------*/
.tc-tabs-style3 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;}
.tc-tabs-style3 .tc-tab-desc {font-size: 13px;}
.tc-tabs-style3 .tab-content {margin-top: 35px;}
.tc-tabs-style3 .nav-tabs {border-bottom: 0;}
.tc-tabs-style3 .nav-tabs li a {position: relative;display: inline-block;border: 0 !important;border-radius: 0;line-height: normal;font-size: 16px;color: #777;border-radius: 20px;padding: 0 0 10px 0;margin-right: 15px;margin-bottom: 4px;background: transparent !important;}
.tc-tabs-style3 .nav-tabs li a:after {content: '';position: absolute;left: 0;bottom: 0;height: 2px;width: 0;background: #444;-webkit-transition: all .4s ease;transition: all .4s ease;}
.tc-tabs-style3 .nav-tabs li a:hover, 
.tc-tabs-style3 .nav-tabs li.active a {color: #222;}
.tc-tabs-style3 .nav-tabs li a:hover:after {width: 30%;}
.tc-tabs-style3 .nav-tabs li.active a:after {width: 100%;}

/*-----------------------
    Tabs style 4
-------------------------*/
.tc-tabs-style4 {padding: 20px;background: #444;}
.tc-tabs-style4 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;color: #fff;border-bottom: 1px solid rgba(255, 255, 255, 0.16);}
.tc-tabs-style4 .tc-tab-desc {font-size: 13px;color: #bbb;}
.tc-tabs-style4 .tab-content {margin-top: 20px;padding-left: 5px;}
.tc-tabs-style4 .nav-tabs {border-bottom: 0;}
.tc-tabs-style4 .nav-tabs li a {border: 0 !important;border-radius: 0;line-height: normal;font-size: 13px;color: #bbb;border-radius: 4px;padding: 8px 20px;margin-right: 4px;margin-bottom: 4px;}
.tc-tabs-style4 .nav-tabs li a:hover, 
.tc-tabs-style4 .nav-tabs li.active a {background: rgba(255, 255, 255, 0.24);color: #fff;}

/*-----------------------
    Tabs style 5
-------------------------*/
.tc-tabs-style5 {padding: 30px;background: #ffffff;box-shadow: 0 3px 10px rgba(68, 68, 68, 0.1);}
.tc-tabs-style5 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;}
.tc-tabs-style5 .tc-tab-desc {font-size: 13px;}
.tc-tabs-style5 .tab-content {margin-top: 35px;}
.tc-tabs-style5 .nav-tabs {border-bottom: 0;}
.tc-tabs-style5 .nav-tabs li a {position: relative;display: inline-block;border: 0 !important;border-radius: 0;line-height: normal;font-size: 16px;color: #777;border-radius: 20px;padding: 8px 0 8px 0;margin-right: 15px;margin-bottom: 4px;background: transparent !important;}
.tc-tabs-style5 .nav-tabs li a:before, 
.tc-tabs-style5 .nav-tabs li a:after {content: '';position: absolute;left: 0;bottom: 0;height: 2px;width: 0;background: #444;-webkit-transition: all .4s ease;transition: all .4s ease;}
.tc-tabs-style5 .nav-tabs li a:after {top: 0;right: 0;left: auto;}
.tc-tabs-style5 .nav-tabs li a:hover, 
.tc-tabs-style5 .nav-tabs li.active a {color: #222;}
.tc-tabs-style5 .nav-tabs li a:hover:before, 
.tc-tabs-style5 .nav-tabs li a:hover:after {width: 50%;}
.tc-tabs-style5 .nav-tabs li.active a:before, 
.tc-tabs-style5 .nav-tabs li.active a:after {width: 100%;}

/*-----------------------
    Tabs style 6
-------------------------*/
.tc-tabs-style6 {padding: 20px;background-color: #ffffff;box-shadow: 0 3px 10px rgba(51, 122, 183, 0.15);}
.tc-tabs-style6 .tc-tab-title {margin: 0 0 15px 0;font-size: 20px;line-height: normal;}
.tc-tabs-style6 .tc-tab-desc {font-size: 13px;}
.tc-tabs-style6 .tab-content {margin-top: 20px;padding-left: 5px;}
.tc-tabs-style6 .nav-tabs {border-bottom: 0;}
.tc-tabs-style6 .nav-tabs li a {padding: 8px 15px;margin-bottom: 4px;border: 0 !important;border-radius: 0;line-height: normal;font-size: 13px;color: #777;font-weight: 600;}
.tc-tabs-style6 .nav-tabs li a:hover, 
.tc-tabs-style6 .nav-tabs li.active a {background-color: #f5f5f5;}
.tc-tabs-style6 .nav-tabs li.active a:after, 
.tc-tabs-style6 .nav-tabs li a:hover:after {content: '';position: absolute;border: 7px solid transparent;border-top-color: #f5f5f5;bottom: -14px;left: 50%;transform: translateX(-50%);}


/*-----------------------
    Testimonial Style1
-------------------------*/
.tc-testimonial-style1 {padding: 35px;background: #fff;border: 1px solid rgba(0, 0, 0, 0.08);position: relative;margin-bottom: 40px !important;}
.tc-testimonial-style1 .testi-desc p {margin-bottom: 20px;color: #999;}
.tc-testimonial-style1 .testi-photo {display: inline-block;position: absolute;bottom: -40px;border-radius: 50%;}
.tc-testimonial-style1 .testi-photo img {width: 80px;height: 80px;border-radius: 50%;border: 8px solid #fff;box-shadow: 0 0 0 1px rgba(49, 49, 49, 0.07);}
.tc-testimonial-style1 .testi-info {text-align: right;}
.tc-testimonial-style1 .position {font-size: 12px;color: #888;}
.tc-testimonial-style1 .position a {color: #888;}

/*-----------------------
    Testimonial Style2
-------------------------*/
.tc-testimonial-style2 {padding: 35px;background: #fff;position: relative;margin-top: 40px;border: 1px solid #f5f5f5;}
.tc-testimonial-style2 .testi-desc {padding-top: 35px;}
.tc-testimonial-style2 .testi-desc p {margin-bottom: 20px;color: #999;}
.tc-testimonial-style2 .testi-photo {display: inline-block;position: absolute;top: -40px;border-radius: 50%;}
.tc-testimonial-style2 .testi-photo img {width: 80px;height: 80px;border: 8px solid #fff;background: #f9f9f9;padding: 5px;}
.tc-testimonial-style2 .testi-info {text-align: right;}
.tc-testimonial-style2 .position {font-size: 12px;color: #888;}
.tc-testimonial-style2 .position a {color: #888;}

/*-----------------------
    Testimonial Style3
-------------------------*/
.tc-testimonial-style3 .testi-desc {padding: 35px;background: #fff;margin-bottom: 25px;position: relative;box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);}
.tc-testimonial-style3 .testi-desc:after {content: '';border: 12px solid transparent;position: absolute;border-top-color: #fff;height: 20px;bottom: -24px;}
.tc-testimonial-style3 .testi-photo {display: inline-block;}
.tc-testimonial-style3 .testi-photo img {height: 80px;width: 80px;border-radius: 50%;padding: 5px;background: #f9f9f9;}
.tc-testimonial-style3 .testi-info {display: inline-block;vertical-align: middle;}
.tc-testimonial-style3 .position {font-size: 12px;color: #888;}
.tc-testimonial-style3 .position a {color: #888;}

/*-----------------------
    Testimonial Style4
-------------------------*/
.tc-testimonial-style4 {text-align: center;}
.tc-testimonial-style4 .testi-desc {padding-top: 100px;max-width: 800px;margin-left: auto;margin-right: auto;}
.tc-testimonial-style4 .testi-desc p {font-size: 15px;line-height: 26px;color: #777;}
.tc-testimonial-style4 .testi-photo {position: absolute;left: 50%;top: 0;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.tc-testimonial-style4 .testi-photo img {height: 80px;width: 80px;border-radius: 50%;padding: 5px;background: #eee;}
.tc-testimonial-style4 .testi-info {display: inline-block;padding-top: 10px;position: relative;margin-top: 10px;}
.tc-testimonial-style4 .testi-info:before {position: absolute;left: 50%;top: 0;-webkit-transform: translateX(-50%);transform: translateX(-50%);content: '';height: 1px;width: 20px;background-color: #444;}
.tc-testimonial-style4 .position {font-size: 12px;color: #888;}
.tc-testimonial-style4 .position a {color: #888;}

/*-----------------------
    Testimonial Style5
-------------------------*/
.tc-testimonial-style5 .testi-desc {padding: 35px;background: #fff;border: 1px solid #444;border-radius: 10px;margin-bottom: 25px;position: relative;}
.tc-testimonial-style5 .testi-desc:after {content: '';border: 12px solid transparent;position: absolute;border-top-color: #fff;height: 20px;bottom: -23px;}
.tc-testimonial-style5 .testi-desc:before {content: '';border: 12px solid transparent;position: absolute;border-top-color: #000;height: 20px;bottom: -24px;}
.tc-testimonial-style5 .testi-photo {display: inline-block;}
.tc-testimonial-style5 .testi-photo img {height: 80px;width: 80px;border-radius: 50%;padding: 3px;background: #444;}
.tc-testimonial-style5 .testi-info {display: inline-block;vertical-align: middle;margin-left: 5px;}
.tc-testimonial-style5 .position {font-size: 12px;color: #888;}
.tc-testimonial-style5 .position a {color: #888;}

/*-----------------------
    Testimonial Style6
-------------------------*/
.tc-testimonial-style6 {padding-top: 40px;background: #fff;position: relative;}
.tc-testimonial-style6 .testi-desc {padding-top: 65px;border-top: 2px solid #f5f5f5;}
.tc-testimonial-style6 .testi-desc p {margin-bottom: 20px;color: #999;}
.tc-testimonial-style6 .testi-photo {display: inline-block;position: absolute;top: 0;border-radius: 50%;margin-right: 29px;}
.tc-testimonial-style6 .testi-photo img {width: 80px;height: 80px;background: #f9f9f9;padding: 5px;}
.tc-testimonial-style6 .testi-info {text-align: right;background: #f5f5f5;padding: 10px 15px;background: -webkit-linear-gradient(left, #ffffff 15%, #f5f5f5 85%, #eee 100%);background: linear-gradient(to right, #ffffff 15%, #f5f5f5 85%, #eee 100%);}
.tc-testimonial-style6 .position {font-size: 12px;color: #888;}
.tc-testimonial-style6 .position a {color: #888;}


/*-----------------------
    Timeline Style
-------------------------*/
.tc-timeline {position: relative;padding: 2em 0;margin-top: 2em;margin-bottom: 2em;}
.tc-timeline::before {content: '';position: absolute;top: 0;left: 18px;height: 100%;width: 1px;background: #f5f5f5;}
.tc-timeline .tc-timeline-block {position: relative;margin: 2em 0;}
.tc-timeline .tc-timeline-block:after {content: "";display: table;clear: both;}
.tc-timeline .tc-timeline-block:first-child {margin-top: 0;}
.tc-timeline .tc-timeline-block:last-child {margin-bottom: 0;}
.tc-timeline .tc-timeline-content {position: relative;margin-left: 60px;background: #f5f5f5;border-radius: 0.25em;padding: 1em;}
.tc-timeline .tc-timeline-content img, 
.tc-timeline .tc-timeline-content video, 
.tc-timeline .tc-timeline-content iframe {margin-bottom: 25px;width: 100%;}
.tc-timeline .tc-timeline-content:after {content: "";display: table;clear: both;}
.tc-timeline .tc-timeline-content h2,
.tc-timeline .tc-timeline-content h2 a {font-size: 24px;margin-top: 0px;color: #303e49;}
.tc-timeline .tc-timeline-content .tc-read-more,
.tc-timeline .tc-timeline-content .tc-date {display: inline-block;}
.tc-timeline .tc-timeline-content p {text-align: justify;margin: 1em 0;}
.tc-timeline .tc-timeline-content .tc-read-more {float: right;padding: 3px 15px;border: 1px solid #444;color: #444;font-size: 12px;border-radius: 2px;-webkit-transition: all .3s ease;transition: all .3s ease;}
.tc-timeline .tc-timeline-content .tc-read-more:hover {background: #444;color: #fff;}
.tc-timeline .tc-timeline-content .tc-date {float: left;padding: .8em 0;opacity: .7;}
.tc-timeline .tc-timeline-content::before {content: '';position: absolute;top: 16px;right: 100%;height: 0;width: 0;border: 10px solid transparent;border-right: 10px solid #f5f5f5;}

/*-----------------------
    Responsive Media
-------------------------*/
@media only screen and (min-width: 1170px) {
    .tc-timeline {margin-top: 3em;margin-bottom: 3em;}
    .tc-timeline::before {left: 50%;margin-left: -2px;}
}
@media only screen and (min-width: 1170px) {
    .tc-timeline .tc-timeline-block {margin: 4em 0;}
    .tc-timeline .tc-timeline-block:first-child {margin-top: 0;}
    .tc-timeline .tc-timeline-block:last-child {margin-bottom: 0;}
}
.tc-timeline .tc-timeline-icon {position: absolute;top: 0;left: 0;width: 45px;height: 45px;border-radius: 50%;background: #fff;border: 1px solid rgba(0, 0, 0, 0.05);}
.tc-timeline .tc-timeline-icon i {position: absolute;left: 50%;top: 50%;-webkit-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);font-size: 18px;}
@media only screen and (min-width: 1170px) {
    .tc-timeline .tc-timeline-icon {width: 70px;height: 70px;left: 50%;margin-left: -35px; -webkit-transform: translateZ(0);-webkit-backface-visibility: hidden;}
    .tc-timeline .tc-timeline-icon i {font-size: 24px;}
}
@media only screen and (min-width: 1170px) {
    .tc-timeline .tc-timeline-content {margin-left: 0;padding: 1.6em;width: 45%;}
    .tc-timeline .tc-timeline-content::before {top: 24px;left: 100%;border-color: transparent;border-left-color: #f5f5f5;}
    .tc-timeline .tc-timeline-content .tc-read-more {float: left;}
    .tc-timeline .tc-timeline-content .tc-date {position: absolute;width: 100%;left: 122%;top: 6px;}
    .tc-timeline .tc-timeline-block:nth-child(even) .tc-timeline-content {float: right;}
    .tc-timeline .tc-timeline-block:nth-child(even) .tc-timeline-content::before {top: 24px;left: auto;right: 100%;border-color: transparent;border-right-color: #f5f5f5;}
    .tc-timeline .tc-timeline-block:nth-child(even) .tc-timeline-content .tc-read-more {float: right;}
    .tc-timeline .tc-timeline-block:nth-child(even) .tc-timeline-content .tc-date {left: auto;right: 122%;text-align: right;}
}