/**
*
* ---------------------------------------------------------
*
* Template : HoverMe - A Pure CSS3 Animation Packages
* Author : thecodrops
* Author URI : http://thecodrops.com
*
* ---------------------------------------------------------
*
*/


/*-----------------------------------
    Basic Style 
--------------------------------------*/
body {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #818181;
}
figure,
p,
address {
    margin: 0;
}
p {
    line-height: 24px;
    font-size: 13px;
    color: #888;
}
iframe,
img {
    border: 0;
    width: 100%
}
a,
a:hover,
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Poppins', sans-serif;
    color: #7c7c7c;
}
main > section {
    padding: 0px 0;
    position: relative;
}
.btn {
    border-radius: 0;
    border: 0;
    position: relative;
    text-transform: uppercase;
}
.btn-blue {
    background-color: rgba(0, 158, 227, 0.78);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
}
.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}
[class*="tcb-"] {
    margin: 6px 4px;
}
.table>tbody>tr>td {
    border: 0;
}
.color-red {
    color: red;
}
.bg-blue {
    background-color: #009EE3;
}
.sec-color {
    background-color: #fafafa;
}
.sec-spacer {
    padding: 10px 5px;
}
.spacer1 {
    height: 10px;
}
.spacer2 {
    height: 20px;
}
.spacer3 {
    height: 30px;
}
.spacer4 {
    height: 40px;
}
.title {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #444;
    padding: 7px 20px;
    margin: 0;
    margin-bottom: 70px;
    text-transform: uppercase;
    box-shadow: 0 3px 5px rgba(34, 34, 34, 0.08);
}
.title.white {
    color: white;
}
.text-center.title:before {
    left: 50%;
    transform: translateX(-50%);
}
.text-center.title:after {
    left: calc(50% + 10px);
    transform: translateX(-50%);
}
.bg-img {
    background-image: url(../image/bg-img.png);
}
.bg-img1 {
    background-image: url(http://thecodude.com/demo/html/click/img/b1.jpg);
}
.tc-element-list-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.tc-element-list-menu li a {
    position: relative;
    display: block;
    padding: 20px;
    font-size: 17px;
    background: rgba(0, 0, 0, 0.05);
    width: 100%;
    color: #999;
    margin-bottom: 25px;
    text-align: center;
}
.tc-element-list-menu li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #888;
}
.tc-element-list-menu li a .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 4px;
    background: #ef1c2e;
    font-size: 11px;
    padding: 5px 9px 4px 9px;
    letter-spacing: 1px;
}
.tc-element-list-menu li a .badge.update {
    background: #4CAF50;
}
.tc-element-list-menu li a .badge.hot {
    background: #f39c12;
}
.title .badge {
    border-radius: 4px;
    background: #ef1c2e;
    font-size: 11px;
    padding: 5px 9px 4px 9px;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .row [class*="col-"]:nth-child(n+2) [class*="testimonial-"] {
        margin-top: 60px;
    }
}

/* =================================== */
/*  Header Style 
/* =================================== */

.header {
    background: #232323;
    padding: 10px 0;
    text-transform: uppercase;
}
.header .logo {
    width: 120px;
    float: left;
}
.header .header-button {
   float: right;
   color: #fff;
   font-size: 13px;
}
.header .header-button a {
    color: #ffffff;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    font-size: 10px;
    border-radius: 13px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    margin: 0 8px;
    padding: 0 14px;
    letter-spacing: 0.8px;
}
/*=======================
    Heading
========================*/
.heading {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative;
}
.heading h1 {
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
}
.heading h3 {
    color: #777;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
}

/*=======================
    Navigation
========================*/
.header nav {
    float: right;
    margin-left: 50px;
    margin-bottom: -2px;
}
.header nav > ul {
    padding-left: 0;
    margin: 0;
    display: inline-block;
    list-style-type: none;
}
.header nav > ul > li {
    float: left;
    position: relative;
    padding: 0 12px;
}
.header nav > ul > li > ul {
    position: absolute;
    visibility: hidden;
    width: 280px;
    background: #444;
    z-index: 111;
    top: calc(100% + 50px);
    transition: .3s all ease-in-out;
    opacity: 0;
    padding: 25px;
    list-style: none;
    right: 0;
}
.header nav > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 15px);
}
.header nav > ul > li > ul li + li {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.header nav a {
    color: #bbb;
    text-decoration: none;
    letter-spacing: .8px;
    font-size: 12px;
}
.header nav a:hover, 
.header nav a:active, 
.header nav a:focus {
    color: #fff;
}

/*--------------------------------------
    Footer
----------------------------------------*/
footer {
    background-color: #232323;
}
footer .container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 14px 30px 8px 30px;
    position: relative;
    letter-spacing: 0.5px;
}
footer a {
    color: #aaa;
}
footer a:hover {
    color: #fff;
}
footer .totop {
    float: right;
}

/*color switcher*/
#colorSwitcher,
#topNav2 {
    position: fixed;
    z-index: 3;
}
#closeSwitcher,
#openSwitcher {
    position: fixed;
    top: 200px;
    left: 0;
    z-index: 4;
    padding: 15px;
    color: #fff;
    background: #222;
    cursor: pointer;
    border: 1px solid #222;
    border-left: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
#closeSwitcher {
    color: #fff;
    background: #222;
    border: 1px solid #222;
    display: none;
    left: 300px;
    box-shadow: 10px 5px 46px 8px rgba(0, 0, 0, .14), 10px 0 26px -6px rgba(0, 0, 0, .2);
}
#colorSwitcher {
    top: 200px;
    left: -300px;
    width: 300px;
    min-height: 0;
    background: #FFF;
    border-radius: 0;
    box-shadow: 10px 5px 46px 8px rgba(0, 0, 0, .14), 10px 0 26px -6px rgba(0, 0, 0, .2);
    padding: 20px; 
}
#colorSwitcherWrapper {
    width: 290px;
    margin: 0 auto;
    padding-bottom: 10px;
}
#colorSwitcherWrapper h2 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
#colorSwitcherWrapper ul {
    margin: 0;
    padding: 1px 0;
    list-style: none;
}
#colorSwitcherWrapper ul li.color-1 {
    background: #3498db;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-2 {
    background: #ff5252;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-3 {
    background: #FF9800;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-4 {
    background: #4CAF50;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-5 {
    background: #673AB7;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-6 {
    background: #9b59b6;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-7 {
    background: #3dc0f1;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-8 {
    background: #2c3e50;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-9 {
    background: #d35400;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.color-10 {
    background: #1abc9c;
    border: 1px solid #fff;
}
#colorSwitcherWrapper ul li.active {
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #ddd;
}
#colorSwitcherWrapper ul li {
    width: 43px;
    height: 24px;
    display: inline-block;
    margin-right: 6px;
    cursor: pointer;
    margin-bottom: 3px
}
.clear {
    clear: both;
}
#colorSwitcherWrapper p {
    font-size: 12px;
    line-height: 1;
    padding-top: 10px;
    text-align: center;
    color: #999;
    clear: both;
    text-align: left;
}
@media screen and (max-width: 959px) {
    #colorSwitcher,
    #topNav2 {
        position: absolute;
        z-index: 3;
        top: 50px;
    }
    #closeSwitcher,
    #openSwitcher {
        position: absolute;
        top: 50px;
    }
}

div#colorSwitcher nav h3 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
div#colorSwitcher nav ul a {
    color: #666;
    font-size: 14px;
}

div#colorSwitcher nav > ul {
    padding-left: 0;
    list-style-type: none;
}
div#colorSwitcher nav > ul > li {
    margin-bottom: 10px;
}
div#colorSwitcher nav > ul > li > ul > li {
    margin-top: 10px;
}