/* ================================================
   Global Styles
   ================================================ */

body,
html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    position: relative;
    color: #303834;
}

a {
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}


/* 
   Typography
   ---------- */

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: #303834;
}

h5,
h6 {
    font-weight: 400;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

@media (max-width: 767px) {
    h3 {
        font-size: 26px;
    }
}

p,
.lead {
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
	font-size:16px;
    color: #3c3c3b;
    line-height: 1.5;
}
.lead{margin-bottom:5px;}


/* 
   Buttons
   ------- */

.btn {
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 20px;
    border-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    /*transition:all .5s ease;*/
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.btn-xl {
    padding: 15px 50px;
    font-size: 24px;
    font-weight: bold;
}

.btn-xs {
    border-width: 1px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .btn-xl {
        font-size: 20px;
        padding: 15px 40px;
    }
}

.btn-default,
.btn-outline,
.btn-success {
    border-width: 2px;
}


/* 
   Navbar
   ------ */

.navbar-default {
    background-color: #3c3c3b;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.navbar-toggle {
    margin-top: 0px;
    margin-bottom: 0px;
}

.navbar-default .navbar-nav>li>a {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    border-radius: 3px;
}

.navbar-brand {
    padding: 0 15px;
    height: auto;
}

.dropdown-menu {
    -webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #F0F0F0;
}

.dropdown-menu .divider {
    background-color: #F0F0F0;
}

.dropdown-header {
    font-size: 11px;
    color: #CBCBCB;
    text-transform: uppercase;
}

.dropdown-menu>li>a {
    padding: 5px 20px;
    padding-right: 40px;
    color: #737373;
    font-family: Arial, Helvetica, sans-serif;
}

@media (min-width: 768px) {
    .navbar-nav>li>a {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


/* 
   Nav Tabs
   -------- */

.nav-center {
    text-align: center;
}

.nav-center ul.nav {
    display: inline-block;
}

.nav-center ul.nav li {
    display: inline;
}

.nav-center ul.nav li a {
    float: left;
}


/* 
   Pace Preloader
   -------------- */

.preloader {
    position: fixed;
    width: 100%;
    height: 2px;
    z-index: 9999999;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 9999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
}

.pace .pace-progress {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: width 1s ease-in-out 1s linear;
    -moz-transition: width 1s ease-in-out 1s linear;
    -ms-transition: width 1s ease-in-out 1s linear;
    -o-transition: width 1s ease-in-out 1s linear;
    transition: width 1s ease-in-out 1s linear;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 100%;
    position: fixed;
    z-index: 9999999;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    background: #F76D53;
}

.pace.pace-inactive {
    display: none;
}


/* 
   Back to Top
   ----------- */

.back_to_top {
    display: none;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.back_to_top:hover {
    opacity: 0.5;
}


/* 
   Utilites
   -------- */


/* Vertical Rhythm */

.vertical-space {
    margin: 20px 0;
}

.horizontal-space {
    margin: 0 20px;
}

.left-space {
    margin-left: 20px;
}

.right-space {
    margin-right: 20px;
}

.top-space {
    margin-top: 20px;
}

.bottom-space {
    margin-bottom: 20px;
}

.no-top-space {
    margin-top: 0;
}

.no-bottom-space {
    margin-bottom: 0;
}

.no-left-space {
    margin-left: 0;
}

.no-right-space {
    margin-right: 0;
}


/* lg - large */

.vertical-space-lg {
    margin: 50px 0;
}

.horizontal-space-lg {
    margin: 0 50px;
}

.left-space-lg {
    margin-left: 50px;
}

.right-space-lg {
    margin-right: 50px;
}

.top-space-lg {
    margin-top: 50px;
}

.bottom-space-lg {
    margin-bottom: 50px;
}


/* xl - Extra large */

.vertical-space-xl {
    margin: 80px 0;
}

.horizontal-space-xl {
    margin: 0 80px;
}

.left-space-xl {
    margin-left: 80px;
}

.right-space-xl {
    margin-right: 80px;
}

.top-space-xl {
    margin-top: 80px;
}

.bottom-space-xl {
    margin-bottom: 80px;
}


/* sm - small */

.vertical-space-sm {
    margin: 10px 0;
}

.horizontal-space-sm {
    margin: 0 10px;
}

.left-space-sm {
    margin-left: 10px;
}

.right-space-sm {
    margin-right: 10px;
}

.top-space-sm {
    margin-top: 10px;
}

.bottom-space-sm {
    margin-bottom: 10px;
}


/*other utility classes*/

.text-muted {
    color: #CECECE;
}

@media (min-width: 768px) {
    .lead {
        font-size: 23px;
    }
}

img.center-block.img-responsive {
    max-width: 100%;
}
/* ================================================
   Header
   ================================================ */

.header {
    position: relative;
    padding: 0;
}

.header_menu_padding {
    padding-top: 80px;
}

.header-content {
    padding-top: 30px;
	padding-bottom: 30px;
}

.click-to-call {
    float: right;
}

.click-to-call a {
    display: block;
    color: #fff;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 3px 0;
}

.phone-icon {
    border: 3px solid;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
}

.click-to-call span {
    vertical-align: middle;
}

.click-to-call a:hover,
.click-to-call a:focus,
.click-to-call a:active {
    text-decoration: none;
}
.click-to-call.visible-xs span {color:#333;}

.headline-support {
    font-weight: 400;
    margin-top: 0;
	font-size:25px;
	 color: #303834;
}

h1.headline {
    padding-top: 30px;
}

@media (max-width: 767px) {
    .hero-area {
        text-align: center;
    }
    .click-to-call {
        float: none;
        padding: 20px 0;
        margin: 0 auto;
        text-align: center;
    }
    /*center align logo on mobile if needed*/
    .mobile-center.navbar-header {
        text-align: center;
    }
    .mobile-center .navbar-brand {
        float: none;
    }
    .mobile-center .navbar-brand>img {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .position-static-md {
        position: static;
    }
    .image-align-bottom {
        position: absolute;
        bottom: 0%;
    }
}


/* 
 Sub page
 -------- */

.sub-header {
    position: relative;
    padding: 80px 0 30px;
    color: #FFF;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.page-title {
    margin-bottom: 5px;
}

.page-title small {
    font-weight: 300;
    font-size: 50%;
}


/* 
 Reveal Menu
 ----------- */

.reveal-menu {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.reveal-menu-hidden {
    top: -100%;
}

.reveal-menu-visible {
    top: 0;
}

/* ================================================
   Benefits
   ================================================ */

.benefit-item {
    padding: 0 20px 15px;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-item img {
    text-align: center;
}

.benefit-item .benefit-icon {
    font-size: 40px;
    margin: 0;
    text-align: center;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.3;
}

.benefit-item .benefit-title {
    font-weight: 400;
    font-size: 24px;
}


/*vertical*/

.benefits-vertical .benefit-item {
    position: relative;
    max-width: 450px;
    float: left;
    text-align: left;
    padding: 0 0 15px;
}

.benefits-vertical .benefit-item img {
    float: left;
}

.benefits-vertical .benefit-item .benefit-icon {
    float: left;
    width: 40px;
}

.benefits-vertical .benefit-item .benefit-title,
.benefits-vertical .benefit-item p {
    margin-left: 60px;
}

.benefits-vertical .benefit-item:last-child:after {
    bottom: 0;
    height: 0;
}

.benefits-vertical .benefit-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(227, 227, 227, 1) 27%, rgba(227, 227, 227, 1) 70%, rgba(254, 254, 254, 0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(27%, rgba(227, 227, 227, 1)), color-stop(70%, rgba(227, 227, 227, 1)), color-stop(100%, rgba(254, 254, 254, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(227, 227, 227, 1) 27%, rgba(227, 227, 227, 1) 70%, rgba(254, 254, 254, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(227, 227, 227, 1) 27%, rgba(227, 227, 227, 1) 70%, rgba(254, 254, 254, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(227, 227, 227, 1) 27%, rgba(227, 227, 227, 1) 70%, rgba(254, 254, 254, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(227, 227, 227, 1) 27%, rgba(227, 227, 227, 1) 70%, rgba(254, 254, 254, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fefefe', GradientType=1);
}

i.fa.fa-check {
    padding-right: 10px;
}
/* ================================================
   Sections
   ================================================ */

.highlight {
    background: #e9f5f5;
    padding: 20px 0;
}

.section-title {
    margin: 50px 0 30px;
}

.section-title .subline {
    font-size: 30px;
    color: #303834;
    font-weight: 400;
    margin-top: 0;
}

.section-title hr {
    max-width: 55px;
    border-top: 4px solid;
}

.section-title.left-aligned hr {
    text-align: left;
    margin-left: 0;
}

.highlight .section-title {
    text-align: center;
    margin-top: 40px;
}

.section-title.top-space-sm {
    margin-top: 15px;
}

.section-title p {
    max-width: 450px;
    margin: 0 auto;
}

/* ================================================
   Services
   ================================================ */

.thumbnail {
    text-align: center;
    padding: 0;
    margin-bottom: 50px;
    border: 1px solid #ECECEC;
    border-radius: 3px;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.thumbnail:hover {
    -webkit-box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.thumbnail a>img,
.thumbnail>img {
    min-width: 100%;
}

.caption-title {
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

.caption-text {
    line-height: 1.4;
    font-size: 18px;
    color: #C2C2C2;
}

.staff-member {
    text-align: center;
}

.staff-member > img {
    margin-bottom: 15px;
}

.staff-member > p {
    line-height: 1.2;
}

.staff-member > p > small {
    color: #CCC;
}


/* ================================================
   Pricing
   ================================================ */

.pricing-item {
    padding: 25px;
    border: solid 3px #F2F2F2;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.pricing-item .plan-name {
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-item .price {
    font-size: 60px;
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.4;
}

.pricing-item .plan-features {
    opacity: 0.7;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-item .price .curr {
    display: inline-block;
    font-size: 30px;
    vertical-align: super;
    font-weight: 400;
}

.pricing-item {
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}


/* ================================================
   FAQ
   ================================================ */

.faq {
    margin-bottom: 60px;
}

.faq-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}


/* ================================================
   Our Stats
   ================================================ */

.our-stats {
    margin: 50px 0 20px;
}

.stats-info {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .stats-info {
        margin-bottom: 15px;
    }
}

.stats-info .fa {
    font-size: 30px;
    color: #DCDCDC;
}

.stats-info h2 {
    margin: 10px 0 0;
}

.stats-info p {
    color: #c2c2c2;
    line-height: 1;
}


/* ================================================
   Testimonials
   ================================================ */

blockquote {
    font-size: 20px;
    border-left: 0;
    padding: 0 0 8px;
    margin-bottom: 0;
}

.bq-left {
    padding-right: 0;
    padding-left: 200px;
    text-align: right;
    background: url('../images/quote1.png') 10% center no-repeat;
}

.bq-right {
    padding-left: 0;
    padding-right: 200px;
    text-align: left;
    background: url('../images/quote2.png') 93% center no-repeat;
}

@media (max-width:767px) {
    blockquote {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .bq-left,
    .bq-right {
        text-align: center;
        background: none;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bq-author {
        text-align: center;
    }
}


/* ================================================
   Contact
   ================================================ */


@media (max-width: 768px) {
    .contact p {
        text-align: center;
        margin-bottom: 20px;
    }
}


/* ================================================
   Footer
   ================================================ */

footer {
    text-align: center;
    padding: 40px 0 30px;
}

.social-icons {
    padding-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    padding: 0 5px;
}

.social-icons a i {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.2);
    font-size: 1.55em;
    width: 2.15em;
    height: 2.15em;
    line-height: 2.15em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    margin: 0;
}

.social-icons.small a i {
    font-size: 0.95em;
}

.social-icons a:hover {
    opacity: 0.8;
}

