@charset "utf-8";
/*
---------------

All Section CSS in Order With Aprox line number :

  *  | Name
  ----------------------------------------
  1. | Home (Banner Section)
        -- 1a. Top Bar
        -- 1b. Banner Container

  2. | Parallax Overlay
  3. | Header Positions
  4. | Navigation
  5. | All Sections - Like About
  6. | Shortcodes
  7. | Basic Classes for Avatar
        -- 7a. Margins
        -- 7b. Paddings
        -- 7c. Heading Color
        -- 7d. Spacer
        -- 7e. Font Sizes
        -- 7f. Section Background

  8. | All Elements
        -- 8a. Services
    -- 8b. Team Members
    -- 8c. Social Media
    -- 8d. Counter
    -- 8e. Testimonial Slider
    -- 8f. Client Logo Slider
    -- 8g. Testimonials
    -- 8h. Skillbar
    -- 8h. Buttons
    -- 8i. Tables
    -- 8j. Accordition
    -- 8k. Tabs
    -- 8l. Alerts
    -- 8m. Pricing
    -- 8n. List Style
    -- 8o. Select Boxit Styling
    -- 8p. Pie chart

  9. | Blog Posts Section
 10. | Contact Section
 11. | Map Section
 12. | Freelance About Me Section
 13. | Title Area
 14. | All sections title
 15. | Portfolio Section
    -- 15a. Portfolio Filter
    -- 15b. Portfolio Rounded
    -- 15c. Portfolio Squre
    -- 15d. Single Portfolio Items Control
    -- 15e. Portfolio Hover

 16. | 404 Page
 17. | Single Post Page
    -- 17a. Content Structure
    -- 17b. Next - Previouse Post Links
    -- 17c. Post Navigation
    -- 17d. Author Info
    -- 17e. Coumments

 18. | Under Construction Page
 19. | Mobile, Tablet App Pages
    -- 19a. App Template Sections
    -- 19b. App Page Feature
    -- 19c. App Screenshot
    -- 19d. Owl Normal Arrow

 20. | E-Book Template
    -- 20a. E-Book Sections

 21. | Software Template
    -- 21a. App Screenshot

 22. | Contact Form
    -- 22a. Form Style
    -- 22b. Subscriptions Input Elements

 23. | Footer Widgets
    -- 23a. Blog Page Sidebar
    -- 23b. Category List
    -- 23c. Recent Posts
    -- 23d. Advertisement
    -- 23e. Twitter Feed

 24. | Footer
 25. | Video Background
 26. | Other Minor CSS

--------------
*/

html, body {
  height: 100%;
  color: #777;

  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #777;
}
a {
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -ms-word-wrap: break-word;
  word-wrap: break-word;

  -webkit-transition: .4s cubic-bezier(0.25,.46,.45,.94);
  -moz-transition: .4s cubic-bezier(0.25,.46,.45,.94);
  -o-transition: .4s cubic-bezier(0.25,.46,.45,.94);
  transition: .4s cubic-bezier(0.25,.46,.45,.94);
  -webkit-transition-property: background-color,color;
  -moz-transition-property: background-color,color;
  -o-transition-property: background-color,color;
  transition-property: background-color,color;
}
a:active,
a:hover,
a:focus {
  outline: 0;
  background: transparent;
  color: #121212;
  text-decoration: none;
}
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: 0;
    outline : 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1;
}
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.3em; }
h5 { font-size: 1em; }
h6 { font-size: .7em; }

iframe {border: none;}
hr {border-width: 2px 0 0;margin: 30px 0;}
img {max-width: 100%;height: auto;}
p {font-size: 14px; line-height: 20px;font-weight: normal;-ms-word-wrap: break-word;word-wrap: break-word;}
dl dt{font-weight:bold;}
dd{margin-left:1.0786666666666667em;font-weight:normal;}
#wrapper {clear: both;overflow-x: hidden;background: #fff;}

/* ==============================================
  1. Home (Banner Section)
=============================================== */
#home {
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /*background-image: url(../images/bg/banner-bg.jpg);*/
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}
#home-freelancer {
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: none;
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}
#home-hosting {
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url('../images/bg/banner-bg.jpg');
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}

/* ==============================================
  -- 1a. Top Bar
=============================================== */
.topbar-container {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  margin: 20px auto;
}
.top-left {
  float: left;
  display: inline-block;
  margin: 20px 0;
}
.top-right {
  float: right;
  display: inline-block;
  margin: 20px 0;
}
.top-right a {
  padding: 15px 0 0 20px;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
}
.logo-top a {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
.top-right a i {
  padding: 0 5px 0 0;
}
.start-project {-webkit-border-radius: 6px;-moz-border-radius: 6px;-ms-border-radius: 6px;-o-border-radius: 6px;border-radius: 6px;border: 1px solid #fff !important;padding: 10px 15px !important;margin: 0 0 0 20px;font-size: 14px !important;}

/* ==============================================
  -- 1b. Banner Container
=============================================== */
.home-container {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  z-index: 3;
}
.home-title {
  position: relative;
  color: #FFFFFF;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
}
.banner-heading {
  font-weight: 400;
  margin: 0px auto 40px;
  font-size: 48px;
  line-height: 40px;
}
.banner-subheading {
  font-weight: 400;
  margin: 0px auto 40px;
  line-height: 30px;
  /*width: 95%;*/
}
.panel {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.home-btn {
  margin-top: 45px;
}

/* ==============================================
  2. Parallax Overlay
=============================================== */
.parallax-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern.png');
  background-repeat: repeat;
  background-color: rgba(0,0,0,0.2);
  z-index: 0;
}

/* ==============================================
  3. Header Positions
=============================================== */
.header-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
}
.on-scroll.header-bottom {bottom: 134px;}
.header-top {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  z-index: 9999;
}

/* ==============================================
  4. Navigation
=============================================== */
#main-nav .current {color: #5A528D;}
.navbar {
  min-height: 70px;
  border: 0;
  margin: 0;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
}
.navbar-default {
  border-color: transparent;
  border-bottom: none;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 4;
  background-color: #fff;
    opacity: .95;

  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow:0 1px 5px rgba(0, 0, 0, 0.15);
  box-shadow:0 1px 5px rgba(0, 0, 0, 0.15);
}
.navbar-right {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  margin-top:10px;
}
.nav ul li a {
  font-weight: 400;
}
.navbar-collapse {
  margin-top:6px;
  padding-right: 15px;
  padding-left: 35px;
  color: #121212;
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin: 18px 15px 8px 0;
  background: transparent;
  border: 0;
  -webkit-border-radius: 0;-moz-border-radius: 0;-ms-border-radius: 0;-o-border-radius: 0;border-radius: 0;
}
.navbar-toggle:focus {
  outline: none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 24px;
  height: 4px;
  -webkit-border-radius: 2px;-moz-border-radius: 2px;-ms-border-radius: 2px;-o-border-radius: 2px;border-radius: 2px;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #121212;
}
.navbar-logo {
  padding: 10px 0;
  display: inline-block;
}
.retina-logo {display: none!important;}
.nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav > ul > li {
  display: inline-block;
}
.nav > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #121212;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #5a528d;
}
.nav > ul > li > span {
  position: relative;
  display: block;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: normal;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > li > a,
.navbar-nav > ul > li > span.dropdown-toggle a,
.navbar-default .navbar-nav > li > a {
  color: #121212;
  background: transparent;
}
.navbar-nav > ul > li > .dropdown-menu {
  margin: 0px;
  padding: 0;
}
.navbar-nav > ul > li > .dropdown-menu li a {
  padding: 10px 0 10px 15px;
}
.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}
.dropdown-menu .menu-item-has-children .dropdown-menu {
  left: 100%;
  top: -3px;
}
.dropdown-menu {
  font-size: 13px;
  padding: 0 !important;

  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow:0 1px 5px rgba(0, 0, 0, 0.15);
  box-shadow:0 1px 5px rgba(0, 0, 0, 0.15);

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;

}
.dropdown-menu > li > a {text-align: left;padding: 8px 15px;}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
.contact-nav-wrap {width: 56px;}
.contact-nav-wrap a {background: url('../images/contact-icon-bg-outter.png') no-repeat #ddd !important;padding: 20px !important;line-height: 0px !important;margin: -5px 0 0 0;height: 56px;}
.contact-nav-wrap a:hover {background: url('../images/contact-icon-bg-outter.png') no-repeat #c0c0c0 !important;}
.contact-nav-wrap a:hover, .contact-nav-wrap a:active, .contact-nav-wrap a:focus {
    background-color: #5A528D;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {color: #5A528D;background-color: transparent;}

.sticky-wrapper {
    height: 160px !important;
    }

/* ==============================================
  5. All Sections - Like About, Testimonials
=============================================== */
.section {
  margin: 60px auto;
}
.section-top {
  margin: 60px auto 0;
}
.section-bottom {
  margin: 0 auto 60px;
}

/* ==============================================
  6. Shortcodes
=============================================== */
.btn, .btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
text-shadow: none;
border: 0;
background-image: none;
-webkit-border-radius: 3px;-moz-border-radius: 3px;-ms-border-radius: 3px;-o-border-radius: 3px;border-radius: 3px;
-webkit-transition: .4s cubic-bezier(0.25,.46,.45,.94);
transition: .4s cubic-bezier(0.25,.46,.45,.94);
-webkit-transition-property: background-color,color;
transition-property: background-color,color;
box-shadow: none;
}
.btn:hover, .btn-primary:hover, .btn-success:hover, .btn-info:hover, .btn-warning:hover, .btn-danger:hover {
    background-color: #121212;
  border-color: transparent;
}
.btn:focus, .btn-primary:focus, .btn-success:focus, .btn-info:focus, .btn-warning:focus, .btn-danger:focus {
    background-color: #999;
  border-color: transparent;
}
.btn:active, .btn-default:active, .btn-primary:active, .btn-success:active, .btn-info:active, .btn-warning:active, .btn-danger:active {
    background: #121212 ;
    border: 0;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #121212;
    border-color: #121212;
    outline: none;
}
.open .dropdown-toggle.btn-primary {
border-color: transparent;
}

blockquote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}
ul.check-list-1 li:before,
ul.check-list-2 li:before,
ul.check-list-3 li:before,
ul.chevron-list-1 li:before,
ul.chevron-list-2 li:before,
ul.dot-circle-list li:before {
  display: inline-block;
  width: 40px;
  margin-left: -40px;
  text-align: center;
  line-height: inherit;
  font-family: 'FontAwesome';
}
ul.check-list-1,
ul.check-list-2,
ul.check-list-3,
ul.chevron-list-1,
ul.chevron-list-2,
ul.dot-circle-list,
ul.caret-list {
  list-style:none;
}
ul li {
  font-weight: normal;
}
ul.check-list-1 li:before {
  font-size: 13px;
  content: '\f00C';

}
ul.check-list-2 li:before {
  font-size: 13px;
  content: '\f058';

}
ul.check-list-3 li:before {
  font-size: 13px;
  content: '\f14a';

}
ul.chevron-list-1 li:before {
  font-size: 13px;
  content: '\f054';

}
ul.chevron-list-2 li:before {
  font-size: 13px;
  content: '\f138';

}
ul.dot-circle-list li:before {
  font-size: 13px;
  content: '\f192';

}
ul.caret-list li:before {
  font-size: 13px;
  content: '\f152';

}
.btn-link:hover,
.btn-link:focus {
  color: #121212;
  text-decoration: underline;
  background-color: transparent;
}
.nav > ul > li > a:hover, .nav > ul > li > a:focus {
    text-decoration: none;
    color: #5A528D;
    border: none;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #121212;
    text-decoration: none;
    background-color: #f5f5f5;
    outline: 0;
}

/* ==============================================
  7. Basic Classes for Avatar - Just go through it
=============================================== */
.uppercase {text-transform: uppercase !important;}
.capitalize {text-transform: capitalize !important;}
.lowercase {text-transform: lowercase !important;}
.white {color: #fff !important;}
.black {color: #000 !important;}
.dark {color: #444444 !important;}
.red {color: #dd3533 !important;}
.separator-light {background: rgba(255, 255, 255, 0.2) !important;}
.separator-dark {background: rgba(0, 0, 0, 0.2) !important;}
.separator-dark-border {border-color: rgba(0, 0, 0, 0.2) !important;}
.border-1 {border-width: 1px 0px 0px !important;}
.fwb {font-weight: bold;}
.fwl {font-weight: lighter;}
.fwn {font-weight: normal;}
.float-none {float: none;}
.float-left {float: left;}
.float-right {float: right;}

/* ==============================================
  -- 7a. Margins
=============================================== */
.margin-0-auto {margin: 0 auto; float: none !important;}
.margin-0 {margin: 0 !important;}
.margin-t-0 {margin-top: 0 !important;}
.margin-b-0 {margin-bottom: 0;}
.margin-l-0 {margin-left: 0;}
.margin-r-0 {margin-right: 0;}
.margin-10 {margin: 10px;}
.margin-20 {margin: 20px;}
.margin-30 {margin: 30px;}
.margin-40 {margin: 40px;}
.margin-50 {margin: 50px;}
.margin-60 {margin: 60px;}
.margin-70 {margin: 70px;}
.margin-80 {margin: 80px;}
.margin-90 {margin: 90px;}
.margin-100 {margin: 100px;}
.margin-t-10 {margin: 10px 0 0;}
.margin-t-20 {margin: 20px 0 0;}
.margin-t-30 {margin: 30px 0 0;}
.margin-t-40 {margin: 40px 0 0;}
.margin-t-50 {margin: 50px 0 0;}
.margin-t-60 {margin: 60px 0 0;}
.margin-t-70 {margin: 70px 0 0;}
.margin-t-80 {margin: 80px 0 0;}
.margin-t-90 {margin: 90px 0 0;}
.margin-t-100 {margin: 100px 0 0;}
.margin-b-10 {margin: 0 0 10px;}
.margin-b-20 {margin: 0 0 20px;}
.margin-b-30 {margin: 0 0 30px;}
.margin-b-40 {margin: 0 0 40px;}
.margin-b-50 {margin: 0 0 50px;}
.margin-b-60 {margin: 0 0 60px;}
.margin-b-70 {margin: 0 0 70px;}
.margin-b-80 {margin: 0 0 80px;}
.margin-b-90 {margin: 0 0 90px;}
.margin-b-100 {margin: 0 0 100px;}

/* ==============================================
  -- 7b. Paddings
=============================================== */
.padding-10 {padding: 10px;}
.padding-20 {padding: 20px;}
.padding-30 {padding: 30px;}
.padding-40 {padding: 40px;}
.padding-50 {padding: 50px;}
.padding-60 {padding: 60px;}
.padding-70 {padding: 70px;}
.padding-80 {padding: 80px;}
.padding-90 {padding: 90px;}
.padding-100 {padding: 100px;}
.padding-t-10 {padding: 10px 0 0;}
.padding-t-20 {padding: 20px 0 0;}
.padding-t-30 {padding: 30px 0 0;}
.padding-t-40 {padding: 40px 0 0;}
.padding-t-50 {padding: 50px 0 0;}
.padding-t-60 {padding: 60px 0 0;}
.padding-t-70 {padding: 70px 0 0;}
.padding-t-80 {padding: 80px 0 0;}
.padding-t-90 {padding: 90px 0 0;}
.padding-t-100 {padding: 100px 0 0;}
.padding-b-10 {padding: 0 0 10px;}
.padding-b-20 {padding: 0 0 20px;}
.padding-b-30 {padding: 0 0 30px;}
.padding-b-40 {padding: 0 0 40px;}
.padding-b-50 {padding: 0 0 50px;}
.padding-b-60 {padding: 0 0 60px;}
.padding-b-70 {padding: 0 0 70px;}
.padding-b-80 {padding: 0 0 80px;}
.padding-b-90 {padding: 0 0 90px;}
.padding-b-100 {padding: 0 0 100px;}
.padding-0 {padding: 0 !important;}
.padding-t-0 {padding-top: 0;}
.padding-b-0 {padding-bottom: 0;}
.padding-l-0 {padding-left: 0;}
.padding-r-0 {padding-right: 0;}

/* ==============================================
  -- 7c. Heading Color
=============================================== */
.heading-light {color: #aaaaaa;}
.heading-dark {color: #444444;}

/* ==============================================
  -- 7d. Spacer
=============================================== */
.spacer {display: block; height: 0; clear: both; overflow: hidden;}
.spacer-5 { height: 5px }
.spacer-10 { height: 10px }
.spacer-20 { height: 20px }
.spacer-30 { height: 30px }
.spacer-40 { height: 40px }
.spacer-50 { height: 50px }
.spacer-60 { height: 60px }
.spacer-70 { height: 70px }
.spacer-80 { height: 80px }
.spacer-90 { height: 90px }
.spacer-100 { height: 100px }

/* ==============================================
  -- 7e. Font Sizes - Even Valuse 12 to 60
=============================================== */
.fsz-12 {font-size: 12px !important}
.fsz-14 {font-size: 14px !important}
.fsz-16 {font-size: 16px !important}
.fsz-18 {font-size: 18px !important}
.fsz-20 {font-size: 20px !important}
.fsz-22 {font-size: 22px !important}
.fsz-24 {font-size: 24px !important}
.fsz-26 {font-size: 26px !important}
.fsz-28 {font-size: 28px !important}
.fsz-30 {font-size: 30px !important}
.fsz-32 {font-size: 32px !important}
.fsz-34 {font-size: 34px !important}
.fsz-36 {font-size: 36px !important}
.fsz-38 {font-size: 38px !important}
.fsz-40 {font-size: 40px !important}
.fsz-42 {font-size: 42px !important}
.fsz-44 {font-size: 44px !important}
.fsz-46 {font-size: 46px !important}
.fsz-48 {font-size: 48px !important}
.fsz-50 {font-size: 50px !important}
.fsz-52 {font-size: 52px !important}
.fsz-54 {font-size: 54px !important}
.fsz-56 {font-size: 56px !important}
.fsz-58 {font-size: 58px !important}
.fsz-60 {font-size: 60px !important}

/* ==============================================
  -- 7f. Section Background Colors
=============================================== */
.white-bg {background: #fff !important;}
.black-bg {background: #2b2b2b !important;}
.dark-bg {background-color: #444444 !important;}
.grey-bg {background: #f0f0f0 !important;}
.light-bg {background-color: #f8f8f8 !important;}
.light-dark-bg {background-color: rgba(255,255,255,0.2) !important;}
.purple-bg {background: #5a528d !important;}

/* ==============================================
  -- 7g. Normal Colors
=============================================== */
.purple-color {color: #635c90 !important;}
.green-color {color: #3fb19d !important;}
.red-color {color: #e1584d !important;}
.blue-color {color: #2aa4d0 !important;}
.light-brown-color {color: #e09077 !important;}
.mid-night-color {color: #354e5b !important;}
.light {color: #aaa !important;}

/* ==============================================
  8. All Elements
=============================================== */

/* ==============================================
  -- 8a. Services
=============================================== */
.av-service {
  text-align: center;
}
.av-service-pattern {
  display: block;
  background: url('../images/service-bg-pattern.png');
  position: relative;
  top: 50px;
  height: 25px;
  left: 0px;
  margin: 0px auto 110px;
}
.av-service h4 {
  font-size:22px;
  font-weight: 400;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding: 0 0 20px;
  display: inline-block;
  margin: 0 auto 30px;
}
.av-service p {
  font-size:16px;
  font-weight: normal;
  line-height: 24px;
  margin: 0;
  padding: 0;
  color: #777;
}
.av-service-icon {
  position: absolute;
  left: 0px;
  right: 0px;
}
.av-service .av-service-icon .av-icon {
  color: #fff;
  box-shadow: 0 0 0 3px #ddd;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.av-service .av-service-icon .av-icon:after {
  top: 0px;
  left: 0px;
  padding: 0px;
  z-index: -1;
  background: #5a528d;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}
.av-service:hover .av-service-icon .av-icon {
  color: #fff;

  -webkit-box-shadow: 0 0 0 3px #5a528d;
  -moz-box-shadow: 0 0 0 3px #5a528d;
  -ms-box-shadow: 0 0 0 3px #5a528d;
  -o-box-shadow: 0 0 0 3px #5a528d;
  box-shadow: 0 0 0 3px #5a528d;
}
.av-service .av-service-icon .av-icon:after {
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}
.av-service:hover .av-service-icon .av-icon:after {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.av-service .av-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 15px 0;
  width: 90px;
  height: 90px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.av-service .av-icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.av-service .av-icon:before {
  font-family: 'FontAwesome';
  speak: none;
  font-size: 48px;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

/* Services One */
.av-service-one {
  text-align: left;
  padding: 3px 0 0;
}
.av-service-one h4 {
  font-size:18px;
  font-weight: normal;
  color: #444;
  border-bottom: none;
  padding: 20px 0 0;
  display: block;
  margin: 0 auto 20px;
}
.av-service-one p {
  font-size:15px;
  font-weight: normal;
  line-height: 22px;
  margin: 0;
  padding: 0;
  color: #777;
}
.av-service-one .av-service-icon {
  position: inherit;
  left: 0px;
  right: 0px;
  float: left;
}
.av-service-one .service-one-content {
  padding: 0 0 0 85px;
}
.av-service-one .av-service-icon .av-icon {
  color: #fff;
  box-shadow: 0 0 0 3px #ddd;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.av-service-one .av-service-icon .av-icon:after {
  top: 0px;
  left: 0px;
  padding: 0px;
  z-index: -1;
  background: #4e4e4e;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}
.av-service-one:hover .av-service-icon .av-icon {
  color: #fff;
  box-shadow: 0 0 0 3px #4e4e4e;
}
.av-service-one .av-service-icon .av-icon:after {
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}
.av-service-one:hover .av-service-icon .av-icon:after {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.av-service-one .av-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
  width: 65px;
  height: 65px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #FFF;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.av-service-one .av-icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.av-service-one .av-icon:before {
  font-family: 'FontAwesome';
  speak: none;
  font-size: 28px;
  line-height: 68px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

/* Service for Hosting */
.av-service-hosting {
  text-align: center;
}
.av-service-hosting .hosting-icon {
  display: block;
}
.av-service-hosting h4 {
  font-size:22px;
  font-weight: 400;
  color: #454545;
  padding: 0;
  display: inline-block;
  margin: 30px auto;
}
.av-service-hosting p {
  margin: 0 auto 30px;
}

/* ==============================================
  -- 8b. Team Members
=============================================== */
.team-member {
  background: #fff;
  text-align: center;
  padding: 25px 10px 10px;
  margin: 0 0 20px;
  float:left;
  width: 100%;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;

  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
}
.team-member img {
  width: 160px;
  height: 160px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.member-info p {
  font-size: 13px;
  color: #999;
  font-weight: normal;
}
.member-info h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin: 20px 0 10px;
  color: #444;
}
.member-info h5 {
  font-size: 14px;
  font-weight: normal;
  color: #777;
  margin: 0 0 10px;
}

/* ==============================================
  -- 8c. Social Media
=============================================== */
.ebook-author .social-media {margin: 30px auto 20px;}
.social-media {
  list-style: none;
  margin: 20px auto 20px;
}
.social-media li {
  display: inline-block;
  margin: 6px 8px 10px;
  text-align: center;
}
.social-media li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #5a528d;
  margin: 0;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0% 100%;
  -moz-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  -o-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.social-media li a:hover {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.social-media li a i {
  color: #fff;
  font-size: 14px;
  padding: 10px;
  /* Rotate */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 55% 45%;
  -moz-transform-origin: 55% 45%;
  -ms-transform-origin: 55% 45%;
  -o-transform-origin: 55% 45%;
  transform-origin: 55% 45%;
}
/* Social Media Colors */
.facebook {background: #4a6eac !important;}
.twitter {background: #50d3f7 !important;}
.linkedin {background: #0086c2 !important;}
.google_plus {background: #db543c !important;}
.dribbble {background: #f1679a !important;}
.youtube {background: #d54b3b !important;}
.vimeo {background: #94d1ef !important;}
.skype {background: #00b9ef !important;}
.rss {background: #fc9f13 !important;}
.pinterest {background: #d63836 !important;}
.flickr {background: #ed1884 !important;}
.foursquare {background: #237fc0 !important;}
.android {background: #97c03c !important;}
.bitbucket {background: #013566 !important;}
.css3 {background: #2062ae !important;}
.dropbox {background: #018bd3 !important;}
.github {background: #000 !important;}
.html5 {background: #e54d25 !important;}
.instagram {background: #517fa3 !important;}
.stack_exchange {background: #2fa4f1 !important;}
.stack_overflow {background: #fea501 !important;}
.trello {background: #226784 !important;}
.tumblr {background: #304d6b !important;}

/* ==============================================
  -- 8d. Counter
=============================================== */
.counter-wrap {
  margin: 0 0 20px;
}
.counter {
  padding:0;
  margin: 15px 0 0;
  float: left;
}
.counter p {
  font-weight: 600;
  margin: 5px 0 0;
  font-size: 16px;
}
.counter-letters {
  font-size: 36px;
  font-weight: 400;
  line-height: 0px;
  margin-top: 20px;
}
.counter-letters.customers {font-size: 24px;color: #444;font-weight: 700;}
.counter-letters p {
  font-weight: 600;
  letter-spacing: 2px;
}
.valuein {
  font-size: 36px;
  font-weight: normal;
  line-height: 0px;
}
.counter-icon {float: left;
}
.counter-icon i {
  width:60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 35px;
  margin: 0 15px 0 0;

  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
/*.counter-wrap:hover .counter-icon i {
  background-color: #dd3430;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff !important;
}*/

/* ==============================================
  -- 8e. Testimonial Slider
=============================================== */
.owl-carousel {float: left;}
#testi-slider {margin:0 auto; float:left;}
#testi-slider .owl-wrapper-outer {padding: 20px;}
#testi-slider .owl-wrapper {min-height: auto;}
.testimonial-author {text-align: center;width: 100%;}
.testimonial-author-img {display: inline-block;}
.testimonial-author-content {display: inline-table;padding: 0px 30px;vertical-align: middle;width: 60%;text-align: left;}
.testimonial-author-content p {margin: 0 auto 20px;color: #777;font-size: 16px;font-weight: normal;line-height: 24px;}
.testimonial-author-img {box-shadow: 0 0 0 2px #fff;
  border-style: solid;border-width: 1px;-ms-border-radius: 200px;-moz-border-radius: 200px;-webkit-border-radius: 200px;-o-border-radius: 200px;border-radius: 200px;-webkit-box-shadow: 0 0 0 2px #777;-moz-box-shadow: 0 0 0 2px #777;-ms-box-shadow: 0 0 0 2px #777;-o-box-shadow: 0 0 0 2px #777;box-shadow: 0 0 0 2px #777;
  padding: 8px;
}
.testimonial-author-img img {
  color: #fff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  -ms-border-radius: 200px;-moz-border-radius: 200px;-webkit-border-radius: 200px;-o-border-radius: 200px;border-radius: 200px;
  width: 130px;
  height: 130px;
}
.testi-auth-name:before {content: "-";padding: 0 5px 0 0;}
.testi-auth-name {color: #454545;font-size: 18px;font-weight: 400;}
.testi-auth-name:after {content: ",";}
.testi-auth-company {font-weight: normal;font-size: 14px;padding: 0 0 0 5px;color: #777;}
#testi-slider .owl-controls .owl-page span {
  width: 12px;
  height: 12px;
  background: transparent;
  border:1px solid #e0e0e0;
  margin: 3px 0 0 10px;
  display: inline-block;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;

  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
#testi-slider .owl-controls .owl-page.active span {
  background: #da322c;
  border:1px solid #da322c;
}

/* ==============================================
  -- 8f. Client Logo Slider
=============================================== */
#client-logo {margin: 0 auto;}
#client-logo .owl-controls {display: block !important; }
#client-logo .owl-wrapper-outer {}
#client-logo .owl-item {text-align: center;}
.red-arrow #client-logo .owl-controls .owl-buttons div {position: absolute; top: 10px; padding: 10px 15px; color: #fff; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
.red-arrow #client-logo .owl-controls .owl-buttons .owl-next {position: absolute; right: 0; }
.red-arrow #client-logo .owl-controls .owl-buttons .owl-prev {position: absolute; left: 0; }

/* ==============================================
  -- 8g. Testimonials
=============================================== */
.testimonial {
  margin:0px;
  text-align:center;
  font-weight: normal;
}
.testimonial .client-img {
  margin:0 auto 10px;
  display: inline-block;
  width: 65px;
  height: 65px;
}
.testimonial .client-img img {
  -webkit-border-radius:100%;
  -moz-border-radius:100%;
  -o-border-radius:100%;
  border-radius:100%;
}
.testimonial h4 {
  font-size:16px;
  color:#444444;
  font-weight:normal;
  margin:0;
  padding:0;
  display:block;
}
.testimonial .testi-author {
  display: inline-block;
  padding: 0 0 0 15px;
  text-align: left;
  position: relative;
  top: 10px;
}
.testimonial span {
  font-size:15px;
  color:#777777;
  margin:0 0 20px;
  display:block;
}
.testi-content {
  border:1px solid #e6e6e6;
  padding:0;
  margin: 0 0 40px;
  position: relative;
  background: #fff;

  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  -o-border-radius:6px;
  border-radius:6px;
}
.testi-arrow {
  position: absolute;
  background: url('../images/testimonial-arrow-down.png') no-repeat scroll 0% 0% transparent;
  top: 100%;
  left: 47%;
  height: 32px;
  width: 32px;
}
.testimonial p {
  padding:20px 15px;
  margin: 0;
  color:#777;
  font-weight: normal;
}

/* ==============================================
  -- 8h. Skillbar
=============================================== */
.skillbar {
  position:relative;
  display:block;
  margin: 50px 0px 70px 10px;
  padding: 0 0 0 50px;
  width:100%;
  background:#eee;
  height:35px;
  -webkit-transition:0.4s linear;
  -moz-transition:0.4s linear;
  -ms-transition:0.4s linear;
  -o-transition:0.4s linear;
  transition:0.4s linear;
  -webkit-transition-property:width, background-color;
  -moz-transition-property:width, background-color;
  -ms-transition-property:width, background-color;
  -o-transition-property:width, background-color;
  transition-property:width, background-color;
}
.skillbar-title {
  position: absolute;
  top: -22px;
  left: -10px;
  font-weight:bold;
  font-size:13px;
  color:#fff;
  background: #6e64b2;
  z-index: 1;

  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.skillbar-title span {
  display:block;
  background:transparent;
  padding:0;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 6px;
  background: #6e64b2;

  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.skillbar-bar {
  position: relative;
  left: 10px;
  height:35px;
  width:0px;
  background:#6adcfa;
  padding: 0;
}
.skill-bar-software {
  position:absolute;
  right:0px;
  top:40px;
  font-size:14px;
  color:#666;
  font-weight: normal;
}
.percentage-text {
  text-align: center;
  vertical-align: middle;
  padding: 8px 0px 0px 6px;
  font-weight: 600;
}
.skill-first-col {padding: 0 20px 0 0;}

/* Photo Shop */
.photoshop .skillbar-title,
.photoshop .skillbar-bar {background: #acdafd;} /* Light Color */
.photoshop .skillbar-title span {background: #6e64b2;} /* Dark Color */
.photoshop .percentage-text {color: #6e64b2;} /* Text Color = Dark Color */

/* Fireworks */
.fireworks .skillbar-title,
.fireworks .skillbar-bar {background: #e6e800;} /* Light Color */
.fireworks .skillbar-title span {background: #595536;} /* Dark Color */
.fireworks .percentage-text {color: #595536;} /* Text Color = Dark Color */

/* HTML5 */
.html-5 .skillbar-title,
.html-5 .skillbar-bar {background: #ffad80;} /* Light Color */
.html-5 .skillbar-title span {background: #ea6434;} /* Dark Color */
.html-5 .percentage-text {color: #ea6434;} /* Text Color = Dark Color */

/* Javascript */
.java .skillbar-title,
.java .skillbar-bar {background: #fae16e;} /* Light Color */
.java .skillbar-title span {background: #c6a724;} /* Dark Color */
.java .percentage-text {color: #c6a724;} /* Text Color = Dark Color */

/* illustrator */
.illustrator .skillbar-title,
.illustrator .skillbar-bar {background: #ff8a26;} /* Light Color */
.illustrator .skillbar-title span {background: #3e2b1e;} /* Dark Color */
.illustrator .percentage-text {color: #3e2b1e;} /* Text Color = Dark Color */

/* inDesign */
.indesign .skillbar-title,
.indesign .skillbar-bar {background: #f059ab;} /* Light Color */
.indesign .skillbar-title span {background: #5a3849;} /* Dark Color */
.indesign .percentage-text {color: #5a3849;} /* Text Color = Dark Color */

/* dreamweaver */
.dreamweaver .skillbar-title,
.dreamweaver .skillbar-bar {background: #abf600;} /* Light Color */
.dreamweaver .skillbar-title span {background: #133211;} /* Dark Color */
.dreamweaver .percentage-text {color: #133211;} /* Text Color = Dark Color */

/* WordPress */
.wordpress .skillbar-title,
.wordpress .skillbar-bar {background: #6bbddc;} /* Light Color */
.wordpress .skillbar-title span {background: #308fb2;} /* Dark Color */
.wordpress .percentage-text {color: #308fb2;} /* Text Color = Dark Color */

/* ==============================================
  -- 8h. Buttons
=============================================== */
/* Style One */
a.btn-style-one {
  display: inline-block;
  background-color:#dd3534;
  color: #fff;
  text-align: center;

  cursor:pointer;
  position:relative;

  padding: 5px 30px;
  line-height: 33px;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;

  -webkit-box-shadow: inset 0 -3px rgba(0,0,0,.2);
  -moz-box-shadow: inset 0 -3px rgba(0,0,0,.2);
  box-shadow: inset 0 -3px rgba(0,0,0,.2);

  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
a.btn-style-one:hover {
  color:#ffffff;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;

  -webkit-box-shadow: inset 0 -1px rgba(0,0,0,.2);
  -moz-box-shadow: inset 0 -1px rgba(0,0,0,.2);
  box-shadow: inset 0 -1px rgba(0,0,0,.2);
  top: 1px;
}
a.btn-style-one.medium-btn {
  padding: 5px 20px 7px !important;
  line-height: 33px !important;
  font-size: 15px !important;
  font-weight:bold !important;
  margin: 0 0 20px;
}
a.btn-style-one.small-btn {
  padding: 5px 25px 6px !important;
  line-height: 30px !important;
  font-size: 13px !important;
  font-weight:bold !important;
  margin: 0 0 20px;
}
.btn-style-one {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}
.btn-style-one i {padding: 0 0 0 8px;}
/* Style Two */
a.btn-style-two {
  display: inline-block;
  background-color:transparent;
  color: #dd3534;
  text-align: center;
  border: 2px solid #dd3534;

  cursor:pointer;
  position:relative;

  padding: 5px 30px;
  line-height: 33px;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn-style-two:hover {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
/* Style Three */
a.btn-style-three {
  display: inline-block;
  background-color:transparent;
  color: #fff;
  text-align: center;
  background-color: #dd3534;

  cursor:pointer;
  position:relative;

  padding: 5px 30px;
  line-height: 33px;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn-style-three:hover {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
/* Style Four */
a.btn-style-four {
  display: inline-block;
  background-color:transparent;
  color: #dd3534;
  text-align: center;
  border: 2px solid #dd3534;

  cursor:pointer;
  position:relative;

  padding: 5px 30px;
  line-height: 33px;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn-style-four:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
/* Style Five */
a.btn-style-five {
  display: inline-block;
  background-color:transparent;
  color: #fff;
  text-align: center;
  background-color: #dd3534;

  cursor:pointer;
  position:relative;

  padding: 5px 30px;
  line-height: 33px;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn-style-five:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

/* Button Sizes */
a.small-btn {
  padding: 0px 20px !important;
  line-height: 30px !important;
  font-size: 13px !important;
  font-weight:bold !important;
  margin: 0 0 20px;
}
a.medium-btn {
  padding: 5px 20px !important;
  line-height: 33px !important;
  font-size: 15px !important;
  font-weight:bold !important;
  margin: 0 0 20px;
}
a.large-btn {
  padding: 10px 25px !important;
  font-size: 18px !important;
  font-weight:bold !important;
  margin: 0 0 20px;
}

/* Button Coloring */
/* Purple */
.btn-style-one.purple,
.btn-style-three.purple,
.btn-style-five.purple {
  background-color: #635c90 !important;
}
.btn-style-two.purple,
.btn-style-four.purple {
  color: #635c90 !important;
  border-color: #635c90 !important;
}
/* Green */
.btn-style-one.green,
.btn-style-three.green,
.btn-style-five.green {
  background-color: #3fb19d !important;
}
.btn-style-two.green,
.btn-style-four.green {
  color: #3fb19d !important;
  border-color: #3fb19d !important;
}
/* Red */
.btn-style-one.red,
.btn-style-three.red,
.btn-style-five.red {
  background-color: #e1584d !important;
}
.btn-style-two.red,
.btn-style-three.red,
.btn-style-four.red {
  color: #fff !important;
  border-color: #e1584d !important;
}
/* Blue */
.btn-style-one.blue,
.btn-style-three.blue,
.btn-style-five.blue {
  background-color: #2aa4d0 !important;
}
.btn-style-two.blue,
.btn-style-four.blue {
  color: #2aa4d0 !important;
  border-color: #2aa4d0 !important;
}
.btn-style-four.white {
  color: #fff !important;
  border-color: #fff !important;
}
/* Light Brown */
.btn-style-one.light-brown,
.btn-style-three.light-brown,
.btn-style-five.light-brown {
  background-color: #e09077 !important;
}
.btn-style-two.light-brown,
.btn-style-four.light-brown {
  color: #e09077 !important;
  border-color: #e09077 !important;
}
/* Mid-Night */
.btn-style-one.mid-night,
.btn-style-three.mid-night,
.btn-style-five.mid-night {
  background-color: #354e5b !important;
}
.btn-style-two.mid-night,
.btn-style-four.mid-night {
  color: #354e5b !important;
  border-color: #354e5b !important;
}

/* ==============================================
  -- 8i. Tables
=============================================== */

/* Style One and Default */
.table-style-one a {color: #da322c;}
.table-style-one a:hover {text-decoration: underline;}
table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  color: #777;
}
.table-style-one {
  font-size: 12px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #5a538c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 30px;
}
table td, table th {
  padding: 3px 10px;
}
table thead th {
  background-color: #5a538c;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: normal;
  padding: 15px 0 15px 10px;
  text-transform: uppercase;
}
table thead th:first-child {
  border: none;
}
table tbody td {
  font-size: 14px;
  font-weight: normal;
  padding: 15px 10px;
}
table tbody .alt td {
  background: #5a538c;
}
table tbody tr:last-child td {
  border-bottom: none;
}
table tfoot,
table tfoot a {
  border-top: 1px solid #5a538c;
  background: #5a538c;
  color: #fff;
}
table tfoot td div {
  border-top: 1px solid #5a538c;
  background: #5a538c;
}
table tfoot td {
  padding: 10px;
  font-size: 14px
}
table tfoot td div {
  padding: 2px;
}
table tfoot td ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
table tfoot li {
  display: inline;
}
table tfoot li a {
  text-decoration: none;
  display: inline-block;
  padding: 2px 8px;
  margin: 1px;
  color: #FFFFFF;
  border: 1px solid #5a538c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #5a538c;
}
table tfoot ul.active, table tfoot ul a:hover {
  text-decoration: none;
  border-color: #5a538c;
  color: #FFFFFF;
  background: none;
  background-color: #00557F;
}

/* Style Two */
.table-style-two a {color: #da322c;}
.table-style-two a:hover {text-decoration: underline;}
.table-style-two table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  color: #777;
}
.table-style-two {
  font-size: 12px;
  background: #fff;
  overflow: hidden;
  margin: 0 0 30px;
}
.table-style-two table td, .table-style-two table th {
  padding: 3px 10px;
}
.table-style-two table thead th {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  padding: 15px 0 15px 10px;
  text-transform: uppercase;
}
.table-style-two table tbody td {
  font-size: 14px;
  font-weight: normal;
  padding: 15px 10px;
}
.table-style-two table tbody .alt td {
  background: #5a538c;
}
.table-style-two table tbody.fr-highlight td:first-child {
  color: #324d5b;
}
.table-style-two table tbody tr:last-child td {
  border-bottom: none;
}
.table-style-two table tfoot {
  border-top: 2px solid #5a538c;
  color: #5a538c;
}
.table-style-two table tfoot td div {
  border-top: 1px solid #5a538c;
  background: #5a538c;
}
.table-style-two table tfoot td {
  padding: 10px;
  font-size: 14px;
}
.table-style-two table tfoot td div {
  padding: 2px;
}
.table-style-two table tfoot td ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.table-style-two table tfoot li {
  display: inline;
}
.table-style-two table tfoot li a {
  text-decoration: none;
  display: inline-block;
  padding: 2px 8px;
  margin: 1px;
  color: #FFFFFF;
  border: 1px solid #5a538c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #5a538c;
}
.table-style-two table tfoot ul.active, .table-style-two table tfoot ul a:hover {
  text-decoration: none;
  border-color: #5a538c;
  color: #FFFFFF;
  background: none;
  background-color: #00557F;
}
.hash {color: #dedede !important;}

/* Style Three */
.table-style-three a {color: #fff;}
.table-style-three a:hover {text-decoration: underline;}
.table-style-three table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  color: #fff;
}
.table-style-three {
  font-size: 12px;
  background: #5a538c;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 30px;
}
.table-style-three table td, .table-style-three table th {
  padding: 3px 10px;
}
.table-style-three table thead tr {
  border-bottom: 1px solid #fff;
}
.table-style-three table thead th {
  color: #fff;
  background-color: #5a538c;
  font-size: 16px;
  font-weight: normal;
  padding: 15px 0 15px 10px;
  text-transform: uppercase;
}
.table-style-three table tbody td {
  font-size: 14px;
  font-weight: normal;
  padding: 15px 10px;
}
.table-style-three table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.table-style-three table tbody .alt td {
  background: #5a538c;
}
.table-style-three table tbody tr:last-child td {
  border-bottom: none;
}
.table-style-three table tfoot {
  color: #fff;
  background: #5a538c;
}
.table-style-three table tfoot td div {
  color: #fff;
  background: #5a538c;
}
.table-style-three table tfoot td {
  padding: 10px;
  font-size: 14px;
}
.table-style-three table tfoot td div {
  padding: 2px;
}
.table-style-three table tfoot td ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.table-style-three table tfoot li {
  display: inline;
}
.table-style-three table tfoot li a {
  text-decoration: none;
  display: inline-block;
  padding: 2px 8px;
  margin: 1px;
  color: #FFFFFF;
  border: 1px solid #5a538c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #5a538c;
}
.table-style-three table tfoot ul.active, .table-style-three table tfoot ul a:hover {
  text-decoration: none;
  border-color: #5a538c;
  color: #FFFFFF;
  background: none;
  background-color: #00557F;
}

/* Style Four */
.table-style-four a {color: #da322c;}
.table-style-four a:hover {text-decoration: underline;}
.table-style-four table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  color: #777;
}
.table-style-four {
  font-size: 12px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 30px;
}
.table-style-four table td, .table-style-four table th {
  padding: 3px 10px;
  border-bottom: 1px solid #ccc;
}
.table-style-four table thead {
  border-bottom: 1px solid #ccc;
}
.table-style-four table thead th {
  background-color: #fff;
  color: #5a538c;
  font-size: 16px;
  font-weight: normal;
  padding: 15px 0 15px 10px;
  text-transform: uppercase;
}
.table-style-four table thead th:first-child {
  border: none;
}
.table-style-four table tr:hover {
  background-color: #dddbe7;
}
.table-style-four table tbody td {
  font-size: 14px;
  font-weight: normal;
  padding: 15px 10px;
}
.table-style-four table tbody .alt td {
  background: #5a538c;
}
.table-style-four table tbody tr:last-child td {
  border-bottom: none;
}
.table-style-four table tfoot {
  border-top: 1px solid #ccc;
  background: #fff;
  color: #5a538c;
}
.table-style-four table tfoot td div {
  border-top: 1px solid #5a538c;
  background: #5a538c;
}
.table-style-four table tfoot td {
  padding: 10px;
  font-size: 14px;
  border:none;
}
.table-style-four table tfoot td div {
  padding: 2px;
}
.table-style-four table tfoot td ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.table-style-four table tfoot li {
  display: inline;
}
.table-style-four table tfoot li a {
  text-decoration: none;
  display: inline-block;
  padding: 2px 8px;
  margin: 1px;
  color: #FFFFFF;
  border: 1px solid #5a538c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #5a538c;
}
.table-style-four table tfoot ul.active, .table-style-four table tfoot ul a:hover {
  text-decoration: none;
  border-color: #5a538c;
  color: #FFFFFF;
  background: none;
  background-color: #00557F;
}

/* ==============================================
  -- 8j. Accordition
=============================================== */
.panel-default > .panel-heading {
  background: transparent;
  padding: 0;
}
.panel-default > .panel-heading a {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -ms-border-radius: 6px 6px 0 0;
  -o-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  border: 2px solid #ccc;
  margin: 0 0 -2px 0;
  color: #5a528d;
}
.panel-default > .panel-heading a.collapsed {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  margin: 0;
  color: #888;
}
.panel-default > .panel-heading a {padding: 15px;font-weight: normal;display: block;}
.panel-default > .panel-heading i {
  float: right;
  font-size: 13px;
  padding: 0px;
  border: 2px solid #ccc;
  width: 25px;
  height: 25px;
  text-align: center;
  margin: -1px -4px 0 0;
  line-height: 23px;
  color: #ccc;
  -webkit-border-radius: 100px;-moz-border-radius: 100px;-ms-border-radius: 100px;-o-border-radius: 100px;border-radius: 100px;
}
.accordion-toggle.collapsed .fa-minus,
.accordion-toggle .fa-plus {
  display:none;
}
.accordion-toggle.collapsed .fa-plus {
  display:inline-block;
}
.panel-title:hover {
     cursor: pointer;
}
.panel-body {
    background-color: transparent;
    padding-left: 30px;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
    padding: 15px;
  border: 2px solid #ccc;
  border-top: 0;
  margin: -2px 0 0 0;
  background: #fff;
  color: #888;
  font-weight: normal;

  -webkit-border-radius: 0px 0 6px 6px;
  -moz-border-radius: 0px 0 6px 6px;
  -ms-border-radius: 0px 0 6px 6px;
  -o-border-radius: 0px 0 6px 6px;
  border-radius: 0px 0 6px 6px;
}

/* ==============================================
  -- 8k. Tabs
=============================================== */
.nav-tabs {
    border: none;
}
.tab-pane {
    padding: 15px 8px;
    background-color: transparent;
}
.tab-pane p {
  color: #888;
  font-weight: normal;
  line-height: 24px;
  font-size: 14px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #fff;
    background-color: #5a528d;
    cursor: default;
    border: none;
    border-bottom-color: transparent;
}
.nav-tabs > li > a:focus {
  color: #fff !important;
}
.nav-tabs > li {
  border: 2px solid #ccc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.nav-tabs > li:first-child {
  border-right: none;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nav-tabs > li:first-child > a {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.nav-tabs > li:last-child {
  border-left: none;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nav-tabs > li:last-child > a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.nav-tabs > li > a {
    margin: 0px;
    line-height: 1.42857143;
    border: none;
    background-color: #fff;
    color: #888;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

/* Verticle Tabs */
.tab-wrap .nav-tabs {
  border: 2px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.tab-wrap .nav-tabs > li {margin: 0;}
.tab-wrap .nav-tabs > li,
.tab-wrap .nav-tabs > li:first-child {
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.tab-wrap .nav-tabs > li > a,
.tab-wrap .nav-tabs > li.active > a {border-bottom: 1px solid #ccc;padding: 15px 20px;}
.tab-wrap .nav-tabs > li:first-child > a {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.tab-wrap .nav-tabs > li:last-child > a {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -ms-border-radius: 0 0 3px 3px;
  -o-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  border-bottom:none;
}

/* ==============================================
  -- 8l. Alerts
=============================================== */
.alert-box {margin:0 0 10px; font-size:14px;position: relative;-webkit-border-radius: 0;-moz-border-radius: 0;-ms-border-radius: 0;-o-border-radius: 0;border-radius: 0;padding: 15px;}
.rounded { border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
.alert-box .toggle-alert {position: absolute; top: 2px; right: 2px; display: block; width: 20px; height: 20px;}
.toggle-alert i {background: transparent;color: rgba(0,0,0,.2);width: 20px;height: auto;text-align: center;line-height: 20px;font-size: 13px;}

/* ==============================================
  -- 8m. Pricing
=============================================== */
.pricing-table {
  border: 1px solid #ebebeb;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -ms-border-radius: 0 0 3px 3px;
  -o-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  margin: 0 0 20px;
}
.pricing-table .pricing-head {
  height: 170px;
  text-align: center;
  background: #f6f6f6;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  -o-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  padding: 15px 0;
  position: relative;
  z-index: 0;
}
.pricing-table .pricing-head.price-one {
  background: url('../images/bg/banner-bg.jpg') no-repeat center center;
}
.pricing-table .pricing-head.price-two {
  background: url('../images/bg/banner-bg.jpg') no-repeat center center;
}
.pricing-table .pricing-head.price-three {
  background: url('../images/bg/banner-bg.jpg') no-repeat center center;
}
.pricing-table .pricing-head.price-four {
  background: url('../images/bg/banner-bg.jpg') no-repeat center center;
}
.pricing-table .pricing-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: -1;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  -o-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
.pricing-table:hover .pricing-overlay {
  background-color: rgba(0,0,0,0.8);
}
.pricing-head .plan-name {
  font-size: 24px;
  display: block;
  margin: 0 0 10px;
  color: #fff;
}
.pricing-head .for-who {
  font-size: 15px;
  display: block;
  color: #fff;
}
.pricing-head .plan-price {
  color: #5a528d;
  font-size: 25px;
  background: #fff;
  width: 130px;
  height: 130px;
  line-height: 90px;
  display: inline-block;
  margin: 20px 0;

  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.pricing-head .plan-price strong {
  font-size: 45px;
  padding: 0 2px;
}
.style-two .plan-name {color: #fff;}
.style-two .for-who {color: #fff;}
.style-two .plan-price {
  -webkit-box-shadow: inset 0px 1px rgba(0,0,0,.1);
  -moz-box-shadow: inset 0px 1px rgba(0,0,0,.1);
  box-shadow: inset 0px 1px rgba(0,0,0,.1);
}
.style-two:hover .plan-name {color: #fff;}
.pricing-table .plan {
  border-radius: 6px;
  list-style: none;
  padding: 0 20px 10px;
  margin: 52px 0 0;
  background: #fff;
  text-align: center;
  color: #777;
}
.pricing-table .plan li {
  font-size: 15px;
  padding: 12px 15px;
  font-weight: normal;
  border-bottom: 1px solid #ebebeb;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.pricing-table .plan li:last-child {
  border-bottom: none;
}
.pricing-table .plan li.plan-name {
  border-radius: 6px 6px 0 0;
  padding: 15px;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  background: #e74c3c;
  margin-bottom: 30px;
  border-top: 0;
}
.pricing-table .plan li > strong {
  color: #e74c3c;
}
.pricing-table .plan li.plan-action {
  margin-top: 10px;
  border-top: 0;
}
.pricing-table .plan.featured {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.plan-action a {margin: 0 !important;}

/* ==============================================
  -- 8n. List Style
=============================================== */
/* List Style One - Default Bullet Coloring */
ul.list-one {
    list-style: none;
    padding:0;
    margin:0 0 20px;
}

ul.list-one li {
    padding-left: 1em;
    text-indent: -.7em;
    font-size: 14px;
    line-height: 30px;
}

ul.list-one li:before {
  content: "• ";
    color: #d93530;
    font-size: 14px;
    font-family: 'FontAwesome';
    padding-right: 0.8em;
    position: relative;
    top: 0px;
}
/* List Style Two - Use FontAwesome icon class on li element */
ul.list-two {
    list-style: none;
    padding:0;
    margin:0 0 20px;
}

ul.list-two li {
    padding-left: 1em;
    text-indent: -.7em;
    font-size: 14px;
    line-height: 30px;
}

ul.list-two li:before {
    font-family: 'FontAwesome';
    padding-right: 0.8em;
    position: relative;
    top: 0px;
}
ul.list-two.white li:before {
    color: #fff;
}

/* List Style Three - Use FontAwesome icon class on li element */
ul.list-three {
    list-style: none;
    padding:0;
    margin:0 0 20px;
}

ul.list-three li {
    padding-left: 1em;
    text-indent: -.7em;
    font-size: 14px;
    line-height: 30px;
}

ul.list-three li:before {
    color: #d93530;
    font-size: 14px;
    font-family: 'FontAwesome';
    padding-right: 0.8em;
    position: relative;
    top: 0px;
    content: "\f046";
}

/* List Style Four - Use FontAwesome icon class on li element */
ul.list-four {
    list-style: none;
    padding:0;
    margin:0 0 20px;
}

ul.list-four li {
    padding-left: 1em;
    text-indent: -.7em;
    font-size: 14px;
    line-height: 30px;
}

ul.list-four li:before {
    color: #d93530;
    font-size: 14px;
    font-family: 'FontAwesome';
    padding-right: 0.8em;
    position: relative;
    top: 0px;
    content: "\f054";
}

/* ==============================================
  -- 8o. Select Boxit Styling
=============================================== */
.selectboxit-container .selectboxit {border:1px solid #ddd;}
.selectboxit-container {margin: 7px 0;}
.selectboxit-container span, .selectboxit-container .selectboxit-options a {height: 45px !important;line-height: 45px !important;}
.selectboxit-list li a,
.selectboxit-list li.selectboxit-selected a {color: #9a9a9a !important;font-size: 14px !important;}
.selectboxit-list li.selectboxit-focus a {color: #fff !important;}
.selectboxit-options li a:hover,
.selectboxit-options li a:active,
.selectboxit-options li a:focus {color: #fff !important;}
.selectboxit-btn {
  background-color: #fff;
  background-image: -moz-linear-gradient(top, #ffffff, #fff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#fff));
  background-image: -webkit-linear-gradient(top, #ffffff, #fff);
  background-image: -o-linear-gradient(top, #ffffff, #fff);
  background-image: linear-gradient(to bottom, #ffffff, #fff);
  background-repeat: repeat-x;
  border: 0 solid #cccccc;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-bottom-color: #ccc;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #333333;
  background-color: #fff;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 0;
}
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  top: 29% !important;
  right: 40% !important;
  left: auto !important;
  font-family: "FontAwesome";
  line-height: 20px;
  font-style: normal;
}
.selectboxit-container .selectboxit-options,
.selectboxit-container .selectboxit {
    width: 100% !important;
    min-height: 34px !important;
}
.selectboxit-container {
  display: block !important;
}
.selectboxit-container span {
  min-width: 0%;
  max-width: 100% !important;
}

/* ==============================================
  -- 8p. Pie chart
=============================================== */
.chart, .chart-one {position: relative;float: left;margin: 10px;}
.chart span {
  display: block;
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 32px;
}
.chart-one span {
  position: absolute;
  bottom: 36%;
  left: 0;
  right: 0px;
  text-align: center;
  font-size: 32px;
  display: block;
  width: 150px;
  color: #F1F1F1;
}
.chart-text {margin: 30px 0px 0px;}

/* ==============================================
  9. Blog Posts Section
=============================================== */
#blog {
  overflow-x: hidden;
}
.blog-posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-posts ul li:nth-child(even) {
  background: #f8f8f8;
  width: 100%;
  margin: 0 auto;
}
.blog-posts ul li {color: #000;padding: 30px 0;width: 100%;margin: 0 auto;position:relative;}
.blog-posts ul li:nth-child(even):before,
.blog-posts ul li:nth-child(even):after {content: ""; position: absolute; background: #f8f8f8; top: 0; bottom: 0; width: 100%;}
.blog-posts ul li:nth-child(even):before {right: 100%; background-position:100% 0%;}
.blog-posts ul li:nth-child(even):after {left: 100%; background-position: 0 0;}
.blog-posts .post-metas {
  width:120px;
  float: left;
  text-align: center;
  text-transform: capitalize;
  color: #444;
  font-weight: 400;
}
.blog-posts .post-metas i {
  font-size: 30px;
}
.blog-posts .post-metas h2 {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  margin: 10px 0;
  padding: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}
.blog-posts .content {font-weight: normal;display: inline-block;width: 82%;}
.blog-posts .content a.date {margin: 0px 0px 5px;display: inline-block;color: #777;font-size: 14px;font-weight: 400;}
.blog-posts .content h2 {margin:0 0 8px;padding: 0;font-size: 20px;letter-spacing: 0;}
.blog-posts .content h2 a {color: #444;font-size: 18px;font-weight: 400;text-transform: uppercase;}
.blog-posts .content p {color: #777;}
.post-metas span a {font-weight: normal;text-decoration: underline;}
.hidden-items {display: none;}
.view-more {margin:20px auto;}
.content { margin-top:0px; }
.post-category .post-categories {margin: 0px;padding: 0px;display: inline-block;}
.post-category .post-categories li {list-style: none;display: inline-block;}
.post-categories li:after {content: ", ";}
.post-categories li:last-child:after {content: "";}
.post-category i {padding: 0 8px 0 0;}
.vc-blog {padding: 0;}
.format-status iframe,
.format-video iframe,
.format-audio iframe,
.post-content iframe {min-width: 100% !important;}
.post-content iframe {max-width: 100% !important;}

/* ==============================================
  10. Contact Section
=============================================== */
.contact-info h2,
.address h2,
.contact-form h2 {font-size: 20px;font-weight: 600;color: #444444;letter-spacing: 0;}
.contact-info a, .contact-info p,
.address a, .address p {font-size: 16px;font-weight: normal;color: #777;line-height: 32px;}
#contact textarea {max-width: 100%;}
.contact-info a {margin: 0 0 50px;display: block;}
.contact-info a:last-child {margin: 0;}
.contact-info .social-media {padding: 0;margin: 20px 0 0 20px;}
.contact-min a,
.contact-min i {font-size: 18px;color: #444;}
.contact-min i {padding: 0 5px 0 0;}
.contact-min .social-media i {padding: 10px;color: #fff;font-size: 14px}
.contact-min .social-media {margin: 0;}

/* ==============================================
  11. Map Section
=============================================== */
#map {height: 450px;width: auto;}
.map-section {position: relative;}
.map-info {position: absolute;left:auto;top:0px;width:360px;height: 100%;background: rgba(43,43,43, 0.6);font-weight: 400;padding: 0;}
.map-info h2.map-info-heading {background: rgba(43, 43, 43, 0.6);margin:0;padding: 20px 0;text-align: center;font-size: 24px;font-weight: bold;color: #fff;letter-spacing: 0;font-weight: 400;}
.reach-info {padding: 20px;}
.reach-info > div:first-child {display: block;margin: 10px 0 20px;}
.reach-info > div {display: block;margin: 35px 0;}
.reach-info .by-walk h3,
.reach-info .by-car h3,
.reach-info .by-train h3 {font-size: 18px;font-weight: 400;color: #fff;display: inline-block;margin: 0px;}
.reach-info img {display: inline-block;vertical-align: sub;}
.reach-info p {display: inline-block;font-size: 14px;font-weight: normal;color: #fff;}
.reach-content {width: 75%;display: inline-block;margin: 0 0 0 12px;}


/* ==============================================
  12. freelance.html About Me Section
=============================================== */
.about-me {margin: 0 0 60px;}
.about-me h4, .avatar-service h4 {margin: 0 0 20px;}
.about-me p {font-weight: normal;font-size: 14px;line-height: 28px;}
.avatar-styling {padding: 0; margin: 0;}
.avatar-styling li {padding: 10px 10px 10px 20px; margin: 0; list-style: none;background: transparent url('../images/avatar-bullet.png') no-repeat 0 20px;border-bottom: 1px solid rgba(0, 0, 0, 0.2);font-weight: normal;font-size: 14px;line-height: 28px;}
.avatar-styling li:last-child {border-bottom: 0px;}


/* ==============================================
  13. Title Area
=============================================== */
#title-area {
  height: 175px;
  width: auto;
  margin: 0 auto;
  background: url('../images/bg/banner-bg.jpg');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
#title-area .container {
  z-index: 0;
  position: inherit;
  margin-left: 5%!important;
  height: 175px;
  width: 100%;
  margin-top: 0px;
}
.page-title {
  color: #fff;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 175px;
  float: left;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.breadcrumbs {
  float: right;
  text-align: right;
  line-height: 175px;
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs a:after {
  content: "/";
  padding: 0 10px;
}

/* ==============================================
  14. All sections title
=============================================== */
.section-title {
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #444;
  letter-spacing: 0;
}
h3.sub-heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
/* Separator */
.separator {
  height: 1px;
  width: 60%;
  margin: 30px auto 20px;
  display: block;
  background: #dcdcdc;
  position: relative;
}
.separator-1 {
  display: block;
  background: url('../images/service-bg-pattern.png');
  height: 25px;
  left: 0px;
  margin: 0px auto 0;
}
.separator-100 {
  height: 1px;
  width: 100%;
  margin: 30px auto 20px;
  display: block;
  background: rgba(90, 82, 141, 0.2);
  position: relative;
}
.center-point {
  width: 10px;
  height: 10px;
  background: #da322c;
  margin: 3px 0 0 0;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -5px;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
}


/* ==============================================
  15. Portfolio Section
=============================================== */

/* ==============================================
  -- 15a. Portfolio Filter
=============================================== */
.catfilter {text-align: center; margin-bottom: 40px;padding: 0;}
.catfilter li a {display: block !important;}
.catfilter a {margin: 0; color:#444; text-align:center;padding: 5px 15px;font-weight: 400; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px;}
.catfilter li {display: inline-block;margin: 0px 5px 0 0;}
.catfilter li.active a {color: #fff;background-color: #DD3430;}
.isotope-item {z-index: 2;}
.isotope-hidden.isotope-item {z-index: 1;}
.isotope, .isotope .isotope-item {-webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -ms-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; }
.isotope {-webkit-transition-property: height, width; -moz-transition-property: height, width; -ms-transition-property: height, width; -o-transition-property: height, width; transition-property: height, width; }
.isotope .isotope-item {-webkit-transition-property: -webkit-transform, opacity; -moz-transition-property:-moz-transform, opacity; -ms-transition-property:-ms-transform, opacity; -o-transition-property:-o-transform, opacity; transition-property: transform, opacity; }
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {-webkit-transition-duration: 0s; -moz-transition-duration: 0s; -ms-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s;}

/* ==============================================
  -- 15b. Portfolio Rounded
=============================================== */
.port-main-wrap {overflow: hidden;}
.avatar-portfolio {padding: 0;}
.avatar-portfolio li {display: block; width: 250px; float: left;margin: 0 55px 40px 0;text-align: center;}
.avatar-portfolio.square li {cursor: inherit;}
.avatar-portfolio li:first-child {}
.avatar-portfolio li:nth-child(4n+0) {margin: 0px 0px 40px;}
.avatar-portfolio.square li:nth-child(4n+0) {margin: 0;}
.avatar-portfolio li.isotope-item {height: 300px;}
.avatar-portfolio li {display: block; position: relative;cursor: pointer;}
.avatar-portfolio li img {display: block; max-width: 100%;width:250px;height: 250px; -webkit-border-radius: 100%;-moz-border-radius: 100%;-ms-border-radius: 100%;-o-border-radius: 100%;border-radius: 100%;}
.item-info {position: relative; left: 0; z-index: 1; width: 100%; height: auto; background: transparent; padding: 12px 0;}
.item-info h4 {line-height: 1;font-size: 18px;font-weight: 400;color: #444;}
.item-info h4 a {color: #444;}
.item-info span {color: #aaa;}
.item-info span a {cursor: pointer;font-size: 14px;font-weight: normal;color: #aaa;display: inline-block; -webkit-border-radius: 0;-moz-border-radius: 0;-ms-border-radius: 0;-o-border-radius: 0;border-radius: 0;}
.border-circle {border-radius: 150px;}
#port-items .project-info {height: 0; opacity: 0; filter: avatar(opacity=0);}
.carousel-inner .separator {width:100%;margin: 40px auto 60px;}
.carousel-inner h2 {font-size: 30px;font-weight: 400;letter-spacing: 0;color: #444;}
.carousel-inner img {max-width:100%;width:100%;}
.carousel-image-wrap {margin: 0 0 20px;}

/* ==============================================
  -- 15c. Portfolio Squre
=============================================== */
.square .border-circle,
.square li img,
.square li {-webkit-border-radius: 0;-moz-border-radius: 0;-ms-border-radius: 0;-o-border-radius: 0;border-radius: 0;}
.square li {margin: 0px; width: 292px;}
.square li img {width: 292px;height: 292px;}
.square li.portfolio-square {height: auto;}

/* Visual Composer Shortcode */
.vc-portfolio.square li {width: 285px !important;}
.vc-portfolio.square li img {width: 285px !important;height: 285px !important;}
.vc-portfolio.avatar-portfolio li {width: 240px;}
.vc-portfolio.avatar-portfolio li img {width: 240px;height: 240px;}
.vc-portfolio.avatar-portfolio li:hover .port-hover {height: 240px;}

/* ==============================================
  -- 15d. Single Portfolio Items Control
=============================================== */
#port-items .carousel-control {top: 20px; left: 86%; width: 50px; height: 50px; background: transparent; opacity: 1;filter: avatar(opacity=100);text-shadow: 0 0px 0px rgba(0, 0, 0, 0); color: #bbb;}
#port-items .carousel-control.right {left: 89%;}
#port-items .carousel-control:hover {color:#dd3430;}
#port-items .carousel-control.closing i {left: 0px; top: 4px; position: relative; text-shadow: 0 0px 0px rgba(0, 0, 0, 0); color: #fff; }
#port-items .carousel-control.closing {
  width: 35px;
  height: 35px;
  background: #dd3430;
  display: inline-block;
  position: absolute;
  top: 4%;
  left: 97%;
  right: 0;
  cursor: pointer;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
}

.description-inner p, .carousel-description {font-size: 16px; color:#777; line-height: 24px; font-weight: normal;padding: 0; margin: 0px auto 40px;}
.carousel-description i {margin-right: 5px; font-size: 17px;}
.project-details {margin: 0;}
.project-details span {display: block;margin: 10px 0;font-weight:normal;color: #777;}
.project-details span i {font-size: 18px;color: #666;width: 20px;text-align:center;width: 30px;}
.portfolio-category-list a {color: #666;}
.port-featured-image {margin: 0px 20px 20px 0;float: left;}
.portfolio-content {float: left;}

/* ==============================================
  -- 15e. Portfolio Hover
=============================================== */
.avatar-portfolio li:hover .port-hover {background: rgba(43, 43, 43, 0.8); position: absolute; width: 100%; height: 250px;-webkit-border-radius: 400px;-moz-border-radius: 400px;-ms-border-radius: 400px;-o-border-radius: 400px;border-radius: 400px;}
.avatar-portfolio.square li:hover .port-hover {height: 100%;}
.avatar-portfolio li:hover .port-hover .overlay {
  width: 40px;
  height: 40px;
  background: rgba(43, 43, 43, 0.2);
  border:2px solid #fff;
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 49.6%;
  cursor: pointer;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.avatar-portfolio li .port-hover i,
.square li .port-hover .hover-text {display: none;}
.avatar-portfolio.square li:hover .port-hover {-webkit-border-radius: 0px;-moz-border-radius: 0px;-ms-border-radius: 0px;-o-border-radius: 0px;border-radius: 0px;}
.avatar-portfolio li:hover .port-hover i {
  display: inline-block;
  color: #fff;
  padding: 0;
  position: absolute;
  top: 9px;
  left: 18px;
  /* Rotate */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}
.square li:hover .port-hover .hover-text {display: block;}
.square li .port-hover .hover-text h4,
.square li .port-hover .hover-text a {
  color: #fff;
}
.square li .port-hover .hover-text {
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  color: #fff;
}
.square li:hover .port-hover .overlay {
  position: absolute;
  top: 60%;
  left: 49.6%;
}
.view-more-btn.freelancer-page {display: block;margin: 40px 0 0;}

/* ==============================================
  16. 404 Page
=============================================== */
.page-error {margin: 60px auto 0;}
.page-nf-line {border:10px solid #f0f0f0; margin: 0 0 160px; }
.page-not-found img { float:left}
.page-not-found { min-height: 320px; margin-top: 0; }
.nf-box { float: left;background: #5a538c;width: 640px;margin: 40% 0px 0px 30%;display: inline-block;position: absolute;}
.nf-box p { font-weight:bold; color:#fff; padding: 0px 30px 20px; font-size:16px; line-height:28px; }
.nf-box a { font-weight:bold; color:#fff; text-decoration:underline; }
.nf-box h4 { margin:0 0 30px 20px; font-weight:bold; font-size:20px; text-transform:uppercase; color:#fff; display: inline-block; padding:20px 20px; background:rgba(255,255,255,.3); }

/* ==============================================
  17. Single Post Page
=============================================== */
.post-content {margin: 10px auto 0;}

/* ==============================================
  -- 17a. Content Structure
=============================================== */
.post-title {font-size: 24px;font-weight: normal;color: #444444;-ms-word-wrap: break-word;word-wrap: break-word;}
.post-link {text-decoration: underline;}
a.post-title {margin: 15px 0 5px;display: block;}
.post-meta span {font-size: 14px;color: #777;padding: 0 15px 0 0;font-weight: normal;margin: 5px 0 5px;display: inline-block;}
.post-meta span a {color: #777;}
.post-meta i {color: #5a528d;padding: 0 5px 0 0;font-size: 17px;}
.featured-image img {max-width: 100%;margin: 10px 0 20px;}
.post-content p,
.post-list p {font-size: 14px;line-height: 26px;font-weight: normal;margin: 0 0 30px;}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h2 {font-weight: normal;}

/* Gallery Sldier */
#blog-slider {margin: 0 0 20px;}
#blog-slider.owl-theme .owl-controls .owl-buttons {position: absolute; top: 34%; left: 0px;width: 100%;}
#blog-slider.owl-theme .owl-controls .owl-pagination {position: absolute;bottom: 25px;width: 100%;}
#blog-slider.owl-theme .owl-controls .owl-page span {background: #fff;}
#blog-slider.owl-theme .owl-controls .owl-buttons div {color: #FFF; display: inline-block; margin: 5px; padding: 3px 10px; font-size: 42px; background: transparent; opacity: 1;-webkit-border-radius: 30px;-moz-border-radius: 30px;-ms-border-radius: 30px;-o-border-radius: 30px;border-radius: 30px;}
#blog-slider.owl-theme .owl-controls .owl-buttons .owl-prev {position: absolute;left: 0}
#blog-slider.owl-theme .owl-controls .owl-buttons .owl-next {position: absolute;right: 0}
#blog-slider.owl-theme .owl-controls {opacity: 0.3; filter: avatar(opacity=30);margin: 0;-webkit-transition: all 0.4s;-moz-transition: all 0.4s;transition: all 0.4s;}
#blog-slider.owl-theme:hover .owl-controls {opacity: 1; filter: avatar(opacity=100);}

/* ==============================================
  -- 17b. Next - Previouse Post Links
=============================================== */
.nxt-prev-post-links {font-size: 20px;margin: 20px 0px;display: block;width: 100%;float: left;}
.nxt-prev-post-links a, .nxt-prev-post-links a {padding: 8px 15px 6px;background-color: #ddd;color: #777;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;-o-border-radius: 4px;border-radius: 4px;}
.nxt-prev-post-links a:hover {background-color: #dd3430;color: #fff;}
.nxt-prev-post-links a[rel="next"] {float: left;}
.nxt-prev-post-links a[rel="prev"] {float: right;}

/* ==============================================
  -- 17c. Post Navigation
=============================================== */
.page-numbers {list-style: none;display: block;margin: 30px 0 0;padding: 0;}
.page-numbers li {display: inline-block;padding: 0 5px 0 0;}
.page-numbers li a,
.page-numbers.dots,
.wp-pagenavi .extend,
.page-numbers li span.current {padding: 10px 15px;background-color: #ebebeb;color: #444;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;-o-border-radius: 4px;border-radius: 4px;font-weight: normal;}
.page-numbers li span.current,
.page-numbers li a:hover {background-color: #dd3430;color: #fff;}
.wp-pagenavi .extend {margin: 0 10px 0 0;}

/* Pagination */
.wp-pagenavi {list-style: none;display: block;margin: 30px 0 0;padding: 0;}
.wp-pagenavi a,
.wp-pagenavi span.current {padding: 10px 15px;background-color: #ebebeb;color: #444;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;-o-border-radius: 4px;border-radius: 4px;font-weight: normal;margin: 0 10px 0 0;}
.wp-pagenavi span.current,
.wp-pagenavi a:hover {background-color: #dd3430;color: #fff;}
.wp-pagenavi select{border: 2px solid #BFBFBF; background:#f7f7f7; color:#696969; height:25px; min-width:60px; padding:10px 15px;}

/* ==============================================
  -- 17d. Author Info
=============================================== */
.author-bio .author-image {margin: 0 20px 0 0;float: left;width: 120px;}
/*.author-bio .author-image img {-webkit-border-radius: 100%;-moz-border-radius: 100%;-ms-border-radius: 100%;-o-border-radius: 100%;border-radius: 100%;}*/
.author-name h3 {font-weight: normal;font-size: 22px;color: #444444;margin: 15px 0 10px;display: inline-block;}
.author-description p {font-weight: normal;line-height: 20px;}
.blog-list-author a {color: #DD3430;}

/* ==============================================
  -- 17e. Coumments
=============================================== */
.comments {padding: 0;margin: 0;list-style: none;}
.comment-wrapper {}
.comment-wrapper h3 {margin: 20px 0 30px;font-weight: normal;color: #444444;}
.comment-area {background:#fff; margin-bottom:20px; margin-left: 110px; padding:20px; border: 2px solid #e6e6e6;-webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px;position:relative;}
.comment-area:before {content: "\f053"; font-family:'FontAwesome'; font-size:14px;font-weight: normal;color:#e6e6e6;position:absolute;left:-8px;background:#fff;line-height:9px}
.comment-area h4 {margin: 0 0 20px;font-weight: normal;display: inline-block;}
.comment-area .comment-reply-link {float: right;font-weight: normal;}
.comments-reply i {padding: 0 5px 0 0;}
.comment-area p {font-weight: normal;font-size: 14px;line-height: 24px;}
.comment-area iframe {max-width: 100%;}
.comments-meta .comments-date {font-size: 14px;font-weight: normal;color: #bbb;display: block;text-align: right;margin: 10px 0 0;}
.comment-avatar {float:left;width: 80px;}
.comment-avatar img {-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
.comments-reply {float: right;}
#cancel-comment-reply-link {display:block; margin-top:0; text-align:right}
#cancel-comment-reply-link i {font-size:22px; padding:0 5px;}
#reply-title small {float: right;}
.form-submit {
  width: 25%;
  float: left;
  padding: 0;
}
div.error {
    padding: 0px 0px 10px;
    color: #F00;
    font-size: 12px;
}
.comment-body {clear: both;}
.children {list-style: none;padding: 0px 0 0 112px;}
.children .form-submit {width: 100%;}
.children .comment-wrapper {margin-left: 85px;}
.commentlist .children {list-style: none; margin: 0; padding:0 0 0 85px;}
.commentlist .children .children {padding:0 0 0 85px;}
.children #respond { margin:0 0 50px; }
.depth-1  #respond {  margin:0 0 50px; }
.children #respond #reply-title {margin-top:20px; }
.comment-form .col-lg-4,
.comment-form .col-lg-12 {padding: 0;}
.comment-form .col-lg-4.form-author-name,
.comment-form .col-lg-4.form-author-email {padding: 0 15px 0 0;}


/* ==============================================
  18. Under Construction Page
=============================================== */
#uc-wrapper {overflow: hidden;}
.under-construction {
  color: #fff;
  background: url('../images/bg/banner-bg.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.uc-heading {font-size:32px; text-transform:uppercase; font-weight:bold;margin:40px 0 30px;}
.uc-short-title {font-size:24px;margin:10px 0 20px;}
.coundown {font-size:38px;}
.ds-element {displaY:inline-block;margin:40px 0 20px; padding:40px 15px; border:3px solid #fff; width:150px;}
.ds-element:first-child {border-right:none;}
.ds-element:last-child,
.ds-element-minutes {border-left:none;}
.ds-element-title {font-size:24px;font-weight: normal;}
.ds-element-value  {font-size: 38px;font-weight: normal;}
.uc-message {background: rgba(255,255,255,0.8);margin: 0 auto;width: 50%;color: #444444;padding: 20px;-webkit-border-radius: 6px;-moz-border-radius: 6px;-ms-border-radius: 6px;-o-border-radius: 6px;border-radius: 6px;}
.uc-message p {font-weight: normal;font-size: 14px;line-height: 24px;margin: 0;}

/* ==============================================
  19. Mobile, Tablet, Desktop, Watch App Pages
=============================================== */
#app-banner {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url('../images/bg/banner-bg.jpg');
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
  padding: 6% 0px 0;
}

#watch-banner,
#glass-banner {
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url('../images/bg/banner-bg.jpg');
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}
#glass-banner {
  background-image: url('../images/bg/banner-bg.jpg');
}
#glass-banner .banner-subheading {
  width: 100%;
}

.banner-promo {
  z-index: 3;
  position: relative;
  left: 0px;
  right: 0px;
  bottom: 0;
}
.banner-title {
  position: relative;
  color: #FFFFFF;
  z-index: 99999;
}
#app-banner .banner-heading {
  font-weight: 400;
  margin: 70px auto 40px;
  line-height: 44px;
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
#watch-banner .banner-heading {
  font-weight: 400;
  margin: 0px auto 40px;
  line-height: 44px;
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
#app-banner .banner-subheading,
#watch-banner .banner-subheading {
  font-weight: 400;
  margin: 0px auto 40px;
  line-height: 35px;
  width: 100%;
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
.app-hand-iphone {
  padding: 0;
}
.app-hand-iphone img {
  height: auto;
}
.android-hand-iphone img,
.ios-tab-one img,
.android-tab-one img {
  height: auto;
}

/* ==============================================
  -- 19a. App Template Sections
=============================================== */
#features-section,
#feature-month,
#why-best,
#available-store,
#promo-video,
#screenshots,
#app-clients,
#testimonials,
#testimonials-normal,
#video-bg,
#achievement {
  background: transparent;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}
#screenshots {
  background: #2b2b2b;
}
#app-clients {
  background: #5a538c;
}

/* ==============================================
  -- 19b. App Page Feature
=============================================== */
.app-features-left,
.app-features-right {
  display: block;
  font-weight: normal;
  margin: 0 0 30px;
}
.app-content h3 {
  color: #444;
}
.app-content p {
  color: #777;
}
.app-features-right {
  text-align: right;
  float: right;
}
.app-features-left {
  text-align: left;
  float: left;
}
.app-icon {
  position: relative;
  left: 0px;
  right: 0px;
  font-size: 28px;
  float: right;
}
.app-features-left .app-icon {float: left;}
.app-features-right .app-icon .fa,
.app-features-left .app-icon .fa {
  color: #fff;
  box-shadow: 0 0 0 3px #4e4e4e;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.app-features-right .app-icon .fa:after,
.app-features-left .app-icon .fa:after {
  top: 0px;
  left: 0px;
  padding: 0px;
  z-index: -1;
  background: #4e4e4e;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}
.app-features-right:hover .app-icon .fa:after,
.app-features-left:hover .app-icon .fa:after {
  background: #5a528d;
}
.app-features-right:hover .app-icon .fa,
.app-features-left:hover .app-icon .fa {
  color: #fff;
  -webkit-box-shadow: 0 0 0 3px #5a528d;
  -moz-box-shadow: 0 0 0 3px #5a528d;
  -ms-box-shadow: 0 0 0 3px #5a528d;
  -o-box-shadow: 0 0 0 3px #5a528d;
  box-shadow: 0 0 0 3px #5a528d;
}
.app-features-right .app-content {
  float: left;
  width: 75%;
}
.app-features-left .app-content {
  float: right;
  width: 75%;
}
.app-features-right:hover .app-icon .fa:after,
.app-features-left:hover .app-icon .fa:after {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.app-features-right .fa,
.app-features-left .fa {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 30px 0 0;
  width: 70px;
  height: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.app-features-right .fa:after,
.app-features-left .fa:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.app-features-right .fa:before,
.app-features-left .fa:before {
  font-family: 'FontAwesome';
  speak: none;
  font-size: 30px;
  line-height: 70px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}
.app-features-right .fsz-48.fa:before,
.app-features-left .fsz-48.fa:before {font-size: 48px;}
#why-best .list-two,
#glass-feature .list-two {padding: 0;margin: 20px 0 0;display: block;}
#why-best .list-two li,
#glass-feature .list-two li {list-style: none;font-size: 16px;margin: 0 0 10px;}
#why-best,
#why-best h5,
#why-best p,
#why-best li,
#glass-feature,
#glass-feature h5,
#glass-feature p,
#glass-feature li {color: #f8f8f8;font-weight: normal;}
#why-best .list-two li:before,
#glass-feature .list-two li:before {color: #aaa;font-size: 18px;}
#why-best p,
#glass-feature p {margin: 10px 0 30px;}
#available-store p {line-height: 26px;}
.iphone-explain-best {margin: 20px 0 0;}
.tablet-why-best h2 {margin: 60px 0 0;}
.watch-five {margin: 80px 0;}
.glass-five {margin: 140px 0 80px;}

/* ==============================================
  -- 19c. App Screenshot
=============================================== */
#app-screenshot {margin: 30px auto 20px;}
#app-screenshot .owl-controls {display: block !important; }
#app-screenshot .owl-wrapper-outer {}
#app-screenshot .owl-item {text-align: center;margin: 0 0px;}
#app-screenshot .owl-item:first-child {margin: 0 0px 0 0;}
#app-screenshot .owl-item:last-child {margin: 0 0 0 0px;}
#app-screenshot .owl-controls .owl-buttons div {position: absolute; top: 10px; padding: 10px 15px; color: rgba(255,255,255,.2); -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px;background: transparent;font-size: 48px;}
#app-screenshot .owl-controls .owl-buttons div:hover {color: rgba(255,255,255,.4);}
#app-screenshot .owl-controls .owl-buttons .owl-next {position: absolute; right: -60px; top: 40%; }
#app-screenshot .owl-controls .owl-buttons .owl-prev {position: absolute; left: -60px; top: 40%; }
#app-screenshot a {width:260px;height:100%;position: relative;z-index: 0;display:inline-block;}
#app-screenshot.watch-screen a {width:216px;}
#app-screenshot a:hover .screen-overlay {position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); z-index: 2; }
#app-screenshot a .screen-overlay:before {display: none;}
#app-screenshot a:hover .screen-overlay:before {content:"\f0b2";display: block;position: relative;top: 41.8%;left: 0;color: #fff;font-size: 48px;font-family: 'FontAwesome';}
#app-screenshot.watch-screen a:hover .screen-overlay:before {top: 34%;}
.owl-item {text-align: center;}

/* ==============================================
  -- 19d. Owl Normal Arrow
=============================================== */
.normal-arrow .owl-controls .owl-buttons div {position: absolute; top: 10px; padding: 10px 15px; color: rgba(255,255,255,.2); -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px;background: transparent !important;}
.normal-arrow .owl-controls .owl-buttons div i {font-size: 48px;}
.normal-arrow .owl-controls .owl-buttons div:hover {color: rgba(255,255,255,.6);}
.normal-arrow .owl-controls .owl-buttons .owl-next {position: absolute; right: -50px; top: -10%;}
.normal-arrow .owl-controls .owl-buttons .owl-prev {position: absolute; left: -50px; top: -10%;}

/* ==============================================
  20. E-Book Template
=============================================== */
#ebook-banner {
  background: #5a528d;
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
  padding: 6% 0 4%;
  position: relative;
}
#ebook-banner .banner-subheading {
  margin: 0 0 40px;
  line-height: 22px;
  font-size: 16px;
}
#ebook-banner .banner-heading {
  margin: 70px 0 40px;
  font-size: 32px;
  line-height: 40px;
}
.ebook-premium .ebook-select {
  background: rgba(0,0,0,.1);
  margin: 0 10px 0 0;
  padding: 30px 20px;
  cursor: pointer;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.ebook-premium .ebook-select-hover {
  background: rgba(0,0,0,.2);
}
.ebook-premium .android-hand-iphone {margin: 70px 0 0;}

/* Radio Button */
.ebook-premium input[type="radio"] + label {
  cursor: pointer;
  color:#fff;
    font-size:36px;
    font-weight: normal;
    padding: 0 10px;
    letter-spacing: 2px;
}
.ebook-premium form p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
}
.ebook-premium input[type="radio"] {
    display:none;
}

.ebook-premium input[type="radio"] + label span {
    display:inline-block;
    width:22px;
    height:22px;
    margin:-1px 10px 0 0;
    vertical-align:middle;
    background:url('../images/forms/radio-btn-ebook.png') 0px 0 no-repeat;
    cursor:pointer;
}

.ebook-premium input[type="radio"]:checked + label span {
    background:url('../images/forms/radio-btn-ebook.png') -23px 0 no-repeat;
}

/* ==============================================
  -- 20a. E-Book Sections
=============================================== */
#chapters,
#about-author {
  background: transparent;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
}
.book-chapters tr td:nth-child(3n+3) {
  text-align: center;
  color: #da322c;
}
.book-chapters tr td:nth-child(3n+1) {
  text-align: center;
}
.learn-more {margin: 0 30px;}
.learn-more i {padding: 0 5px 0px;}
.book-author-name {
  font-weight: normal;
  font-size: 22px;
  color: #444;
  margin: 20px 0 20px 10px;
}
.book-author-sub {
  font-weight: normal;
  font-size: 16px;
  color: #aaa;
  margin: 10px 0 30px 10px;
}
.social-media {
  padding: 0 0 0 15px;
}
.author-short-info {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;

  max-width: 222px;
  max-height: 222px;

  padding: 6px;
  background: #fff;

  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
}
.author-short-info img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;

  max-width: 210px;
  max-height: 210px;
}
.ebook-author p {
  color: #777;
  font-size: 14px;
  font-weight: normal;
}
.subcribe-to-download {
  background: rgba(0,0,0,.1);
  margin: 0 10px 0 0;
  padding: 30px;
  text-align: center;
  text-transform: uppercase;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.subcribe-to-download h2 {
  margin: 0;
  font-weight: normal;
  font-size: 24px;
}
.subcribe-to-download h5 {
  margin: 15px 0;
  font-weight: normal;
  font-size: 14px;
}
.subcribe-to-download input[type="submit"] {
  width: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  margin: 10px 0 0;
}
.subcribe-to-download input[type="email"] {
  width: 90%;
  background: url('../images/forms/form-one-mail.png') no-repeat scroll 97% 50% #fff !important;
  border: 0 !important;
}
.subcribe-to-download input[type="email"]:focus,
.subcribe-to-download input[type="email"]:active {
  border: 0;
}


/* ==============================================
  21. Software Template
=============================================== */
#cover-normal-screen {
  background-color: transparent;
  display: table;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: middle;
  z-index: 1;
  position: relative;

  padding: 6% 0 0;
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.soft-screen {
  width: 890px;
  margin: 0 auto;
}
.soft-screen img {
  width: auto;
  background: #000;
  padding: 40px 40px 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
}
#software-banner .banner-heading,
#software-banner-ios .banner-heading {
  margin: 0 0 20px;
}
#software-banner .banner-subheading,
#software-banner-ios .banner-subheading {
  font-size: 16px;
  line-height: 25px;
}
#software-banner .btn-style-three {
  font-weight: normal;
  text-transform: uppercase;
  margin: 0 0 40px;
}
#software-banner-ios .btn-style-three {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 10px;
}
#software-banner-ios p {
  margin: 0px;
}
#software-banner .btn-style-three i,
#simple-promo .btn-style-three i,
#software-banner-ios .btn-style-three i {
  padding: 0 0 0 5px;
}
#simple-promo .btn-style-three {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 400;
}
#soft-screenshots h4 {
  line-height: 22px;
}

/* ==============================================
  -- 21a. App Screenshot
=============================================== */
#software-slider {margin: 30px auto -10px; width: 880px; height: 440px; background: #000; padding: 40px 40px 0; -webkit-border-radius: 20px 20px 0 0; -moz-border-radius: 20px 20px 0 0; -ms-border-radius: 20px 20px 0 0; -o-border-radius: 20px 20px 0 0; border-radius: 20px 20px 0 0;float: none !important;}
#software-slider .owl-controls {display: block !important; }
#software-slider .owl-wrapper-outer {}
#software-slider .owl-item {text-align: center;margin: 0 0px;}
#software-slider .owl-item:first-child {margin: 0 0px 0 0;}
#software-slider .owl-item:last-child {margin: 0 0 0 0px;}
#software-slider .owl-controls .owl-buttons div {position: absolute; top: 10px; padding: 10px 15px; color: #777; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px;background: transparent;font-size: 36px;}
#software-slider .owl-controls .owl-buttons div:hover {color: #000;}
#software-slider .owl-controls .owl-buttons .owl-next i,
#software-slider .owl-controls .owl-buttons .owl-prev i {font-size: 68px;}
#software-slider .owl-controls .owl-buttons .owl-next {position: absolute; right: -80px; top: 40%; }
#software-slider .owl-controls .owl-buttons .owl-prev {position: absolute; left: -80px; top: 40%; }
#software-slider a {position: relative;z-index: 0;display:inline-block;}
#software-slider a:hover .screen-overlay {position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); z-index: 2; }
#software-slider a .screen-overlay:before {display: none;}
#software-slider a:hover .screen-overlay:before {content:"\f0b2";display: block;position: relative;top: 41.8%;left: 0;color: #fff;font-size: 48px;font-family: 'FontAwesome';}


/* ==============================================
  22. Contact Form
=============================================== */
.form-one input,
.form-one textarea {
  background: #f6f6f6;
  border: none;
  color: #777;
  resize: none;
}
.form-one input:focus,
.form-one input:active {
  border: none;
  background: #eee;
  color: #777;
}
.form-one textarea {
  background: url('../images/forms/form-one-textarea.png') no-repeat scroll 99.5% 98% #F6F6F6;
}
.form-one textarea:focus,
.form-one textarea:active {
  background: url('../images/forms/form-one-textarea.png') no-repeat scroll 99.5% 98% #eee;
  border: none;
  color: #777;
}
.form-one input[type="text"] {
  background: url('../images/forms/form-one-user.png') no-repeat scroll 98% 50% #F6F6F6;
}
.form-one input[type="text"]:focus,
.form-one input[type="text"]:active {
  background: url('../images/forms/form-one-user.png') no-repeat scroll 98% 50% #eee;
  border: none;
  color: #777;
}
.form-one input[type="email"] {
  background: url('../images/forms/form-one-mail.png') no-repeat scroll 98% 50% #F6F6F6;
}
.form-one input[type="email"]:focus,
.form-one input[type="email"]:active {
  background: url('../images/forms/form-one-mail.png') no-repeat scroll 98% 50% #eee;
  border: none;
  color: #777;
}
/* Placeholder */
.form-one ::-webkit-input-placeholder {
   text-transform: uppercase;
}
.form-one :-moz-placeholder { /* Firefox 18- */
  text-transform: uppercase;
}
.form-one ::-moz-placeholder {  /* Firefox 19+ */
   text-transform: uppercase;
}
.form-one :-ms-input-placeholder {
   text-transform: uppercase;
}

/* ==============================================
  -- 22a. Form Style
=============================================== */
input, select,
.mc4wp-form input[type="date"], .mc4wp-form input[type="email"], .mc4wp-form input[type="tel"], .mc4wp-form input[type="text"], .mc4wp-form input[type="url"] {
  width: 100%;
  max-width: 100%;
  padding: 12.9px;
  color: #444;
  background: #fff;
  border: 1px solid #ddd;
  margin: 7px 0px;
  font-weight: normal;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
outline: 0;
}
textarea {
  width: 100%;
  max-width: 100%;
  height: 165px;
  padding: 12.9px;
  color: #444;
  background: #fff;
  border: 1px solid #ddd;
  margin: 7px 0px;
  font-weight: normal;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  border: 1px solid #999;
  background-color: #fff;
  color:#333;
}
input[type="text"].s {
  background: url('../images/forms/search.png') no-repeat scroll 97% 50% #fff !important;
  padding: 12.9px 32px 12.9px 13px;
}
input[type="radio"], input[type="checkbox"] {
  width: auto !important;
}
button, html input[type="button"], input[type="reset"], input[type="submit"],
input#submit,
input.wpcf7-submit {
  display: inline-block;
  background-color:#dd3534;
  color: #fff !important;
  text-align: center;

  cursor:pointer;
  position:relative;

  padding: 0 25px;
  height: 45px;
  width: auto;
  font-size: 15px;
  font-weight:bold;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border:none;

  -webkit-box-shadow: inset 0 -3px rgba(0,0,0,.2);
  -moz-box-shadow: inset 0 -3px rgba(0,0,0,.2);
  box-shadow: inset 0 -3px rgba(0,0,0,.2);

  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
input#submit:hover,
input.wpcf7-submit:hover {
  color:#ffffff;
  -webkit-transition: all 0.1s ease-in-out;
   -moz-transition: all 0.1s ease-in-out;
   -o-transition: all 0.1s ease-in-out;
   transition: all 0.1s ease-in-out;

   box-shadow: inset 0 -1px rgba(0,0,0,.2);
  top: 1px;
}
input[type="submit"][disabled] { background:#888; }

span.required {
  font-size: 13px;
  color: #ff0000;
}
#message,
#subs-message {
  margin: 10px 0;
  padding: 0;
}
.error_message {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 22px;
  padding: 6px 15px;
  color: #dd3533;
  font-weight: 400;
  background-color: #FBE3E4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
#success_page h4.highlight {
  line-height: 24px;
  padding: 5px 15px;
  font-weight: 400;
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  font-size: 16px;
}
#success_page h4.highlight strong {
  font-weight: bold;
}
#message,
#subs-message {
  width: 100%;
  padding: 0px 15px;
  float: left;
}

.loader {
  padding: 0 10px;
}
acronym {
border-bottom:1px dotted #ccc;
}
div.wpcf7-validation-errors {border: 1px solid #F7E700;}
div.wpcf7-response-output {padding: 1em;margin: 2em 0px 1em;font-weight: normal;}
.post-password-form {
    padding:20px; border:2px solid #E1E6E9; color:#8c9295; position:relative;
    -webkit-border-radius: 2px;-moz-border-radius: 2px;-ms-border-radius: 2px;-o-border-radius: 2px;border-radius: 2px;
    margin: 10px 0 25px;
}
.post-password-form input {width: auto;padding: 8px;-webkit-border-radius: 3px;-moz-border-radius: 3px;-ms-border-radius: 3px;-o-border-radius: 3px;border-radius: 3px;margin: 10px;line-height: 8px;}
.post-password-form input[type='submit'] { background:#475258; padding:0 15px !important; font:700 14px arial, helvetica, sans-serif; color:#FFF; text-transform:uppercase; cursor:pointer;border:0;height: 34px;}

/* ==============================================
  -- 22b. Subscriptions Input Elements
=============================================== */
#subscriptions input[type="submit"] {
  text-align: center;
  text-transform: uppercase;
}
#subscriptions input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  color:#444444;
    font-size:14px;
    font-weight: 600;
}
#subscriptions input[type="checkbox"] {
    display:none;
}
#subscriptions input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url('../images/forms/check_radio_sheet.png') left top no-repeat;
    cursor:pointer;
}
#subscriptions input[type="checkbox"]:checked + label span {
    background:url('../images/forms/check_radio_sheet.png') -19px top no-repeat;
}
#subscriptions ul.subscription-topic {
  margin: 20px auto;
  padding: 0;
}
#subscriptions .subscription-topic li {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0 20px 0 0;
}

/* Radio Button */
#subscriptions input[type="radio"] + label {
  cursor: pointer;
  color:#444444;
    font-size:14px;
    font-weight: 600;
}
#subscriptions input[type="radio"] {
    display:none;
}

#subscriptions input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url('../images/forms/check_radio_sheet.png') -38px top no-repeat;
    cursor:pointer;
}

#subscriptions input[type="radio"]:checked + label span {
    background:url('../images/forms/check_radio_sheet.png') -57px top no-repeat;
}


/* ==============================================
  23. Footer Widgets
=============================================== */
.widget_mc4wp_widget p {font-size: 13px;text-align: left;margin: 0;padding: 0;font-weight: 400;}
.widget_mc4wp_widget p.not-spam {font-size: 10px;}
.widget_mc4wp_widget form {float: none;width: 100%;}
.widget_mc4wp_widget input[type="email"] {width:80%;float: left;padding: 9px 12.9px;}
.widget_mc4wp_widget input[type="submit"] {width: auto; padding: 0px 10px 3px; margin: 5px 0 0 0;height: 42px;}
footer form.mc4wp-form {text-align: left;margin: 0;}
.mc4wp-error{float: left;}

/* ==============================================
  -- 23a. Blog Page Sidebar
=============================================== */
.widget-title {font-weight: normal;font-size: 22px;text-transform: uppercase;color: #444;}
.title-bar {background-color: #e2e2e2; height: 3px; width: 20%; padding: 0px 10px 0 0;margin: 20px 0;display: block;}
.title-bar-center {background-color: #e2e2e2; height: 3px; width: 10%; padding: 0px 10px 0 0;margin: 20px auto;display: block;}
.widget {float: left;margin: 0px;width: 100%;}
.widget .post-date {display: inline-block;padding: 0;font-size: 12px;float: right;}
.widget .recentcomments a {font-weight: bold;}

/* ==============================================
  -- 23b. Widget List Items
=============================================== */
.sidebar ul {padding: 0;list-style: none;}
.sidebar ul li:before {content: '\f054'; font-family: 'FontAwesome'; font-size: 12px; color: #777; padding: 0 10px 0 0; }
.sidebar ul li {display: block;margin: 20px 0;}
.sidebar ul li a {color: #777;font-weight: normal;}
.sidebar ul li .badge {min-width: 38px;float: right;background: #2d2d2d;color: #fff;padding: 5px 10px;font-size: 14px;-webkit-border-radius: 30px;-moz-border-radius: 30px;-ms-border-radius: 30px;-o-border-radius: 30px;border-radius: 30px;}
.sidebar ul li:hover.cat-item,
.sidebar ul li:hover.cat-item:before {color: #5a528d;}
.sidebar ul li:hover.cat-item .badge {background: #5a528d;}

/* ==============================================
   Hide All ul li styles in selectBoxIt
=============================================== */
.sidebar .selectboxit-list li:before {content: ''; font-family: 'FontAwesome'; font-size: 12px; color: #777; padding: 0 0 0 0;}
.sidebar .selectboxit-list li {display: block;margin: 0;}
.sidebar .selectboxit-list li a {color: #777;font-weight: normal;}
.sidebar .selectboxit-list li .badge {min-width: 38px;float: none;background: #2d2d2d;color: #fff;padding: 0;font-size: 14px;-webkit-border-radius: 0;-moz-border-radius: 0;-ms-border-radius: 0;-o-border-radius: 0;border-radius: 0;}
.sidebar .selectboxit-list li:hover.cat-item,
.sidebar .selectboxit-list li:hover.cat-item:before {color: #5a528d;}
.sidebar .selectboxit-list li:hover.cat-item .badge {background: #5a528d;}

/* ==============================================
  -- 23c. Recent Posts
=============================================== */
.recent-posts .post-item {display: inline-block;margin: 0 0 10px;}
.recent-posts .post-item img {float:left;margin: 0 15px 0 0;}
.recent-posts .post-item a {color:#444;float:left;width: 60%;font-weight: normal;line-height: 20px;margin: 0 0 10px;}
.recent-posts .post-item .rp-date {float:left;color: #888;font-weight: normal;}

/* ==============================================
  -- 23d. Advertisement
=============================================== */
.advertisement img {max-width: 100%;}


/* ==============================================
  24. Footer
=============================================== */
#footer {
  background-color: #2b2b2b;
  text-align: left;
}
#footer .widget-title {
  color: #fff;
  text-align: left;
}
#footer .textwidget {
  color: #fff;
  text-align: left;
  font-weight: normal;
}
#footer .row {
  padding: 20px 0 30px;
}
#footer a:hover {color: #fff;} {text-decoration: none;}
#footer h2 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
  margin: 20px 0 30px;
  padding: 0;
  text-align: left;
}
#footer ul {
  margin: 0;
  padding: 0;
}
#footer ul li {
  list-style: none;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 8px;
  padding: 0;
  text-align: left;
}
.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255, .2);
}
.copyright-text {
  font-size:13px;
  color: #aaa;
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
}


/* ==============================================
  25. Video Background
=============================================== */
#video-bg {position:relative;height:600px;}
.video-container {position: relative;padding-bottom: 56.25%;/*padding-top: 30px;*/height: 0;overflow: hidden;}
.video-container iframe,.video-container object,.video-container embed {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.video-overlay {position: absolute;z-index: 1;display: table-cell;height: 200px;margin: auto;top: 0;right: 0;left: 0;border: 0 none;vertical-align: middle;width: 100%;bottom: 0;}
.video-overlay-bg {position: absolute;width: 100%;height: 100%;background: rgba(0,0,0,0);top: 0;right: 0;left: 0;z-index: 888;}

/* ==============================================
  26. Other Minor CSS
=============================================== */
.info-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #777;
  margin: 40px auto;
  display: block;
}

/* ==============================================
  Logos View Based on Color Palate
=============================================== */
.logo-top > .default,
.under-construction .default,
.navbar-header .default {display: block;}
.logo-top > .yellow,
.under-construction .yellow,
.navbar-header .yellow {display: none;}
.logo-top > .blue,
.under-construction .blue,
.navbar-header .blue {display: none;}
.logo-top > .green,
.under-construction .green,
.navbar-header .green {display: none;}
.logo-top > .orange,
.under-construction .orange,
.navbar-header .orange {display: none;}
.logo-top > .red,
.under-construction .red,
.navbar-header .red {display: none;}

/* Extra Elements */
.app-store {padding: 0 10px 0 0;}
.absolute {position: absolute; z-index: 999}
.help-support {margin-bottom: 20px !important;}

/* Team Member Popup */
/* Styles for dialog window */
.zoom-anim-dialog {
  background: white;
  padding: 0;
  text-align: left;
  max-width: 334px;
  margin: 40px auto;
  position: relative;
  display: block;

  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
/*.team-popup-image {width: 50%;float: left;}*/
.team-popup-content {padding: 10px 20px;text-align: center;}
.team-popup-content h2 {font-size: 26px;}
.team-popup-content h3 {font-size: 20px;margin: 10px 0;font-weight: normal;}
.mfp-close-btn-in .mfp-close {color: #FFF !important;}

/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;



  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);

  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0.001; /* Chrome opacity transition bug */
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0.01;

  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* ==============================================
   Dribbble Feed From jribbble.js
=============================================== */
.dribbble-feed {padding: 0; margin: 0;text-align: left !important;}
.dribbble-feed li {list-style: none;width: 80px;height: auto;padding: 0 !important;margin: 3px !important;display: inline-block;border: 1px solid #f8f8f8;}
footer .dribbble-feed li {border: 1px solid #585858;}

/* ==============================================
  Dribbble Feed From jflickrfeed.min.js
=============================================== */
.flickr-feed {padding: 0; margin: 0;text-align: left !important;}
.flickr-feed li {list-style: none;width: auto;height: auto;padding: 0 !important;margin: 3px !important;display: inline-block;border: 1px solid #f8f8f8;}
footer .flickr-feed li {border: 1px solid #585858;}

/* ==============================================
   Twitter Feed from twitter.js
=============================================== */
.twitter-feed a {color: #625b93 !important;}
.twitter-feed a:hover {color: #fff !important;}
.twitter-feed .fa {color: #bbb;padding: 0 5px 0;font-size: 14px;}
.twitter-feed a:first-child .fa {padding: 0 5px 0 0;}
.twitter-feed .fa:hover {color: #fff;}
.twitter-feed p {margin: 0 0 5px;}
.interact a {padding: 0 5px 0;}
.interact a:first-child {padding: 0 5px 0 0;}
a.twitter-btn {margin: 5px 0 0 !important;}
a:hover.twitter-btn {text-decoration: none !important;}
.twitter-feed .user {float: left;padding: 0 10px 10px 0;}
.twitter-feed .user span {display: none;}

/* ==============================================
  Service Box - HTML - Since 1.3
=============================================== */
.service-box {
  border:1px solid #e8e8e8;
  background: #fff;
  padding: 15px;
  text-align: center;
  margin: 0 auto 30px;
}
.service-image {
  border:1px solid #e8e8e8;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  height: auto;
  line-height: 110px;
  min-height: 110px;
  text-align: center;
}
.service-content h3 {
  font-size: 18px;
  color: #454545;
  font-weight: normal;
  margin: 23px auto 20px;
}
.service-content p {
  font-size: 13px;
  color: #777;
  font-weight: normal;
}
.service-box:hover,
.service-box:hover .service-image {
  border:1px solid #5a528d;
}
.service-five {
  text-align: center;
  margin: 0 auto 30px;
}
.service-five .service-five-image {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.service-five .service-five-icon {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  color: #808184;
  font-size: 75px;
  line-height: 0;
}

/* Service Six */
.service-six {
  text-align: center;
  margin: 0 auto 30px;
}
.service-six-content h3 {
  font-size: 18px;
  color: #454545;
}
.service-six-content p {
  font-size: 14px;
  color: #777;
}
.service-number {
  text-align: center;
}
.service-check {
  background: #da322c;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin: 0 auto;
  position: relative;
  left: 30px;
  bottom: 90px;
  border:2px solid #fff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.service-six:hover .service-check {
  background: #222;
}
.service-six:hover .service-circle {
  background: #da322c;
}
.service-check i {
  line-height: 30px;
}
.service-circle {
  background: #222;
  font-size: 40px;
  font-weight: bold;
  width: 80px;
  height: 80px;
  line-height: 72px;
  margin: 0 auto;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.3);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.service-bottom-arrow {
  background: url('../images/service-six-arrow.png') no-repeat center bottom;
  height: 8px;
  width: auto;
  top: -28px;
  position: relative;
}
.service-six-content {
  margin: -28px 0 0;
}


/* ==============================================
   Visual Composer Tweeks
=============================================== */
.extra-full-width .wpb_row {margin: 0;}

/* VC Tabs */
.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {background-color: transparent !important;}
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab {padding: 15px 8px !important;}
.wpb_content_element .wpb_tabs_nav li.ui-tabs-active,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:hover,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:focus {background: #5A528D !important;}
.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:hover,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:focus {color: #fff !important;}
.wpb_tabs .wpb_tabs_nav li {margin: 0 0px 0 0 !important;border: 2px solid #ccc;}
.wpb_tabs.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a {padding: 10px 15px !important;color: #888;}
.wpb_tabs .wpb_tabs_nav li:first-child {border-right: none;-webkit-border-radius: 5px 0px 0px 5px;-moz-border-radius: 5px 0px 0px 5px;-ms-border-radius: 5px 0px 0px 5px;-o-border-radius: 5px 0px 0px 5px;border-radius: 5px 0px 0px 5px;}
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:first-child a:hover,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:first-child a:focus,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:first-child a:active {border-right: none;-webkit-border-radius: 3px 0px 0px 3px;-moz-border-radius: 3px 0px 0px 3px;-ms-border-radius: 3px 0px 0px 3px;-o-border-radius: 3px 0px 0px 3px;border-radius: 3px 0px 0px 3px;}
.wpb_tabs .wpb_tabs_nav li:last-child {border-left: none;-webkit-border-radius: 0px 5px 5px 0px;-moz-border-radius: 0px 5px 5px 0px;-ms-border-radius: 0px 5px 5px 0px;-o-border-radius: 0px 5px 5px 0px;border-radius: 0px 5px 5px 0px;}
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:last-child a:hover,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:last-child a:focus,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:last-child a:active {border-left: none;-webkit-border-radius: 0px 3px 3px 0px;-moz-border-radius: 0px 3px 3px 0px;-ms-border-radius: 0px 3px 3px 0px;-o-border-radius: 0px 3px 3px 0px;border-radius: 0px 3px 3px 0px;}

/* Vc Accordion */
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {background: transparent !important;padding: 0px !important;}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {padding: 15px !important;margin: 0;color: #5a528d;font-size: 15px;font-weight: normal;}
.wpb_accordion_section {border: 2px solid #ccc;-webkit-border-radius: 6px;-moz-border-radius: 6px;-ms-border-radius: 6px;-o-border-radius: 6px;border-radius: 6px;margin: 0 0 5px;}
.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon, .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {display: none !important;}
.wpb_accordion_header.ui-corner-all a:after,
.wpb_accordion_header.ui-state-hover a:after,
.wpb_accordion_header.ui-state-focus a:after {content:"\f067";font-family: 'FontAwesome';float: right;font-size: 12px;padding: 0px;border: 2px solid #CCC;width: 25px;height: 25px;text-align: center;margin: -1px -4px 0px 0px;line-height: 20px;color: #CCC;border-radius: 100px;}
.wpb_accordion_header a:after,
.wpb_accordion_header.ui-state-focus a:after {content:"\f068";font-family: 'FontAwesome';float: right;font-size: 12px;padding: 0px;border: 2px solid #CCC;width: 25px;height: 25px;text-align: center;margin: -1px -4px 0px 0px;line-height: 20px;color: #CCC;border-radius: 100px;}

/* Toggle */
h4.wpb_toggle:before {content:"\f067";font-family: 'FontAwesome';float: left;font-size: 12px;padding: 0px;border: 2px solid #CCC;width: 25px;height: 25px;text-align: center;margin: -2px 10px 20px 0px;line-height: 21px;color: #CCC;
-webkit-border-radius: 100px;-moz-border-radius: 100px;-ms-border-radius: 100px;-o-border-radius: 100px;border-radius: 100px;}
h4.wpb_toggle.wpb_toggle_title_active:before {content:"\f068";font-family: 'FontAwesome';float: left;font-size: 12px;padding: 0px;border: 2px solid #CCC;width: 25px;height: 25px;text-align: center;margin: -2px 10px 20px 0px;line-height: 21px;color: #CCC;-webkit-border-radius: 100px;-moz-border-radius: 100px;-ms-border-radius: 100px;-o-border-radius: 100px;border-radius: 100px;}
.wpb_toggle, #content h4.wpb_toggle {
    background: none !important;
    padding-left: 0px !important;
    clear: both;
    margin-top: 0px;
}
.wpb_toggle_content {padding: 10px 0 10px !important;}
h4.wpb_toggle {font-size: 16px;font-weight: normal;}

/* Tour */
.wpb_tour .wpb_tabs_nav {border: 2px solid #ccc;-webkit-border-radius: 6px;-moz-border-radius: 6px;-ms-border-radius: 6px;-o-border-radius: 6px;border-radius: 6px;margin: 0;}
.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a {padding: 15px 20px !important;color: #888;}
.wpb_tour .wpb_tabs_nav li {margin: 0 !important;}
.wpb_tour .wpb_tabs_nav li:first-child {border-right: none;-webkit-border-radius: 5px 5px 0px 0px;-moz-border-radius: 5px 5px 0px 0px;-ms-border-radius: 5px 5px 0px 0px;-o-border-radius: 5px 5px 0px 0px;border-radius: 5px 5px 0px 0px;}
.wpb_tour.wpb_content_element .wpb_tabs_nav li:first-child a:hover,
.wpb_tour.wpb_content_element .wpb_tabs_nav li:first-child a:focus,
.wpb_tour.wpb_content_element .wpb_tabs_nav li:first-child a:active {border-right: none;-webkit-border-radius: 3px 5px 0px 0px;-moz-border-radius: 3px 5px 0px 0px;-ms-border-radius: 3px 5px 0px 0px;-o-border-radius: 3px 5px 0px 0px;border-radius: 3px 5px 0px 0px;}
.wpb_tour .wpb_tabs_nav li:last-child {border-left: none;-webkit-border-radius: 0px 0px 5px 5px;-moz-border-radius: 0px 0px 5px 5px;-ms-border-radius: 0px 0px 5px 5px;-o-border-radius: 0px 0px 5px 5px;border-radius: 0px 0px 5px 5px;}
.wpb_tour.wpb_content_element .wpb_tabs_nav li:last-child a:hover,
.wpb_tour.wpb_content_element .wpb_tabs_nav li:last-child a:focus,
.wpb_tour.wpb_content_element .wpb_tabs_nav li:last-child a:active {border-left: none;-webkit-border-radius: 0px 0px 3px 3px;-moz-border-radius: 0px 0px 3px 3px;-ms-border-radius: 0px 0px 3px 3px;-o-border-radius: 0px 0px 3px 3px;border-radius: 0px 0px 3px 3px;}
.wpb_tour_next_prev_nav {display: none;}

/* Extra */
.page-header {padding: 15px;margin: 0px 0px 20px;border: 2px solid #EEE;font-weight: normal;}
.page-header h1 {margin: 10px 0; font-size: 26px; font-weight: normal;}
.wpb_row, .wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button {
  margin: 0 !important;
}