body {
    background: #fff;
    color: #666666;
    font-family: 'Lato', sans-serif;
    overflow-x:hidden;
}
.heading_border{
    width:40px;
    height:2px;
    background:#007da4;
}
.hidden{
    display:none;
}
.white-bg{
    background:#FFF !important;
}
a{
    color: #007da4;
    transition: 0.5s;
}
a:hover, a:active, a:focus {
    color: #305fa8;
    outline: none;
    text-decoration: none;
}
.img-responsive{
    max-width:100%;
}
.text-white{
    color:#FFF !important;
}
p {
    font-size: 16px;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: justify;
    color: #333;
}
b, strong {
    color: #007da4;
}
h3 b,h2 span {
    color: #007da4;
}
.footer-top strong {
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    font-family: 'Sarabun', sans-serif !important;
}

.smart-heading{
    margin: 0px 0 15px;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    padding-left: 5px;
    border-left: 3px solid #F44337;
}
.heading{
    border-bottom:1px solid #DDD;
    margin-bottom: 30px;
    padding-bottom: 9px;
    text-transform:capitalize;
}
.heading span{
    background: #007da4;
    padding: 10px 13px;
    color: #FFF;
    font-size: 20px;
}

.headign-border {
    border-top: 3px solid #007da4;
    width: 50px;
    display: block;
    margin-bottom: 10px;
}
.border-right-0{
    border-right:0 !important;
}
/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #007da4;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #2260d1;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid #eee;
}

#header.header-scrolled {
    background: #23343c;
    transition: all 0.5s;
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
}
.header-scrolled #logo h1 a.2nd img{
                                 display:block;
                             }
#header #logo img {
    padding: 0;
    width: 260px;
}
.header-scrolled .top-bar-container{
    display:none;
}
.top-bar-container{
    display: table;
    padding: 5px 0px;
    background: #007da4;
    width: 100%;
    margin: 0;
}
.top-bar-right{
    float:right;
    margin: 6px 0 0;
}
.top-bar-right .num span{
    background: #335da6;
    color: #FFF;
    padding: 8px 15px;
    border-radius: 0;
    font-size: 20px;
}
.top-bar-right li{
    display:inline;
    list-style-type:none;
}
.top-bar-right span{
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    font-size:14px;
}
.top-bar-right a{
    color: #fff;
}
.social-top{
    float:left;
    padding: 0;
    margin: 5px 0;
}
.social-top li{
    display:inline;
    list-style-type:none;
}
.social-top li a{
    display: inline-block;
    margin: 0px;
    padding: 0px;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    width: 33px;
    height: 33px;
    font-size: 18px;
    line-height: 31px;
}
.social-top li a:hover{
    color: #007da4;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
    margin-top: 78px;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.35);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 110px;
}

#intro .carousel-background img {
    max-width: 100%;
}

#intro .carousel-content {
    text-align: center;
    padding: 0;
}

#intro h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 38px;
    font-weight: 800;
    text-transform: capitalize;
    text-align: left;
}
#intro h2 span{
    background: #007da4;
    color: #FFF;
    padding: 1px 10px 5px;
    font-family: TCCEB;
}
#intro p {
    /* width: 80%; */
    margin: 0 0 10px;
    color: #fff;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    font-family: 'Lato', sans-serif;
}
#intro p span{
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
}


#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px;
    transition: 0.5s;
    color: #fff;
    background: #007da4;
    float: left;
}

#intro .btn-get-started:hover {
    background: #999;
    color: #fff;
}

.btn-primary {
    color: #fff !important;
    background-color: #007da4;
    border-color: #fff;
    padding: 12px 20px !important;
    border: 0;
    border-radius: 0;
    line-height: 27px;
    text-transform: uppercase;
    min-width: 100px;
}

.btn-primary:hover{
    color: #fff;
    background-color: #292734;
}
.btn-default {
    color: #fff;
    background-color: #007da4;
    border-color: #007da4;
    padding: 15px 20px !important;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
}

.btn-default:hover{
    color: #fff;
    background-color: #292734;
}
.btn-out-line {
    color: #eb4343;
    border:1px solid #eb4343;
    padding: 10px 15px !important;
    border-radius: 0;
    position: relative;
    margin: 0 auto;
}

.btn-out-line:hover{
    color: #fff;
    background-color: #eb4343;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
#nav-menu-container{
    margin-top: 5px;
}
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu .btn{
    background: #007da4;
    color: #fff;
    margin: 10px 0 0 0;
    border-radius: 0;
    padding: 10px !important;
}
.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    /* padding-right: 28px; */
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 0;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Styling */
.menu-header{
    background: #ffffff;
    display: table;
    width: 100%;
    padding: 10px 0;
}
.header-scrolled .menu-header{
    padding: 7px 0;
    background: #FFF;
    border-bottom: 1px solid #ddd;
}
.nav-menu a {
    padding: 23px 13px;
    text-decoration: none;
    display: inline-block;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    outline: none;
    font-family: 'Lato', sans-serif;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
    color: #007da4;
}

.nav-menu > li {
    margin-left: 0;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #292734;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 5px 8px;
    color: #fff;
    transition: 0.3s;
    display: block;
    font-size: 16px;
    text-transform: none;
    border-bottom: 1px solid #42404c;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.nav-menu ul li:hover > a {
    color: #000000;
    background: #FFF;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    margin:100px 0 0 15px;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #007da4;
}


/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

#mobile-nav ul li a:hover {
    color: #2260d1;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #2260d1;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #2260d1;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #2260d1;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
#page .section-header h3 {
    color: #fff !important;
    font-family: 'TCCEB' !important;
}
.section-header h3 {
    font-size: 32px;
    color: #007da4;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #007da4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
    background: #0e2753;
}
.service_home .content h3, .service_home .content h3 b, .service_home .content li, .service_home .content p{
    color:#FFF !important;
}
.service_home .content ul{
    margin:15px 0;
}
.service_home .content li{
    background: url(../img/check_ico.png);
    background-position: 1px 7px;
    background-repeat:no-repeat;
    background-size:22px;
    padding-left:27px;
}
.service_home .quote-form{
    background: #FFF;
    padding: 35px;
}
.service_home_box{
    padding: 25px;
}
.content span{
    color:#FFF !important;
}
.service_home h4{
    margin: 20px 5px 7px;
    color:#000;
    font-size:18px;
}
.service_home p{
    margin: 0 5px;
    color:#333;
}
.service_home_box .btn{
    border: 1px solid #007da4;
    background: #007da4;
    margin: 0;
    min-width: 110px;
    font-size: 16px;
    padding: 10px 15px !important;
}
.service_home_box .btn:hover{
    border: 1px solid #007da4;
    background:#007da4;
    color:#FFF;
}
/* Featured Services Section
--------------------------------*/
#featured-services1 {
    background: #335da6;
}

#featured-services1 .box {
    padding: 30px 20px;
}
#featured-services1 .box img{
    width: 75px;
    float: left;
    padding: 5px;
    margin: 0px 15px 20px 0;
    border-radius: 40px;
    border: 1px solid #007da4;
    background: #007da4;
}
#featured-services1 .box-bg {background: #007da4;}

#featured-services1 i {
    color: #3261d1;
    font-size: 60px;
    display: inline-block;
    line-height: 1;
    float: left;
    width: 70px;
    height: 65px;
}

#featured-services1 h4 {
    font-weight: 400;
    margin: 10px 0 5px 0;
    font-size: 22px;
}

#featured-services1 h4 a {
    color: #fff;
}

#featured-services1 h4 a:hover {
    color: #2260d1;
}

#featured-services1 p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
}

/*--------------------------------*/
#featured-services {
    padding: 0;
    position: relative;
    z-index: 9;
    margin: -90px 0 60px;
}

#featured-services .box {
    padding: 175px 0px 20px;
    background: #FFF;
    border-radius: 10px 10px 50px 0;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    background-image: url(../img/bgn-boxes-01.jpg);
    background-position: center top;
    background-size: cover;
}
#featured-services .box img{
    margin:0 5px 0 0;
}
#featured-services .boxtwo{
    background-image: url(../img/bgn-boxes-02.jpg);
}
#featured-services .boxthree{
    background-image: url(../img/bgn-boxes-03.jpg);
}
#featured-services i {
    color: #777777;
    font-size: 60px;
    display: inline-block;
    line-height: 1;
    float: left;
    width: 70px;
    height: 65px;
}

#featured-services h4 {
    font-weight: 500;
    margin: 0 0 7px 0;
}

#featured-services h4 a {
    background: #fff;
    font-weight: 600;
    color: #000;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 0 10px 0 0;
}

#featured-services h4 a:hover {
    color: #bd262e;
}

#featured-services h3 {
    font-size: 28px;
    line-height: 40px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}
#featured-services p{
    margin: 0 auto 10px;
    padding: 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}
#featured-services a{
    font-size:14px;
}
#featured-services a img{
    margin: -2px 0 0 !important;
    width:15px;
}
/* About Us Section
--------------------------------*/

#about_us{
    padding: 0;
    position: relative;
    background-image: url(../img/bgn-industries.png);
    background-position: center top;
    background-size: contain;
    background: #F7F8FC;
}
.bg-white{
    background:#FFF;
}
#gallery_home{
    padding:60px 0 30px !important;
}
.about_home{
    padding: 60px 0 !important;
}
#about_us p{
    font-size: 18px;
    text-align: left;
}
#service{
    background: url("../img//intro-carousel/2.jpg");
    background-size: 100%;
    padding: 0;
    position: relative;
}
#quote_serction{
    padding: 100px 0;
}
#quote_serction h3{
    color: #000;
    font-weight: 600;
    margin-bottom: 50px;
}
#about {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

#service .container {
    position: relative;
    z-index: 10;
}

#service .service-col {
    background: #fff;
    border-radius: 50px 0 50px 0;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    text-align: center;
    padding: 40px 15px 20px;
    min-height: 297px;
}
#service .service-col .img {
    position: relative;
    background: #444242;
}
#service .service-col h2{
    font-weight: 500;
    font-size: 20px;
    margin: 25px 0 10px;
}
#service .service-col h2 a{
    color: #000 !important;
}
#service .service-col:hover h2 a{
    color: #007da4 !important;
}
.text-center p{
    text-align:center;
}
.about-col h2{
    background: #f9f9f9;
    padding: 0 10px 10px;
}
.about-col h2 a{
    color: #333;
    font-size: 18px;
}
.about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin: 0 0 10px;
    padding: 0 20px;
    min-height: 130px;
}
/* Services Section
--------------------------------*/
#services {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0;
}

#services .box {
    margin-bottom: 30px;
}

#services .icon {
    float: left;
}

#services .icon i {
    color: #2260d1;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
}

#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#services .title a {
    color: #111;
}

#services .box:hover .title a {
    color: #2260d1;
}

#services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#high-servives {
    background: url("../img/page.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: 78% 32%;
}

#high-servives h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#high-servives p {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

#high-servives .cta-btn {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#high-servives .cta-btn:hover {
    background: #2260d1;
    border: 2px solid #2260d1;
}
#high-servives .s-left{
    padding-left: 10%;
    padding-top: 100px;
    padding-bottom: 100px;
    background: url("../img/get-quote.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
#high-servives .s-right{
    /* padding-left: 5%; */
    /* padding-right: 5%; */
    /* padding-top: 100px; */
    /* padding-bottom: 100px; */
    /* background: url("../img/page.jpg"); */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}
#high-servives .s-right h6{
    font-weight: 500;
    font-size: 38px;
    color: #fff;
}
#high-servives .s-right h1{
    font-weight: 600;
    font-size: 38px;
    color: #fff;
}
#high-servives h2{
    color:#eb4343
}
.trx_addons_list_dot{
    font-size: 18px;
    font-weight: 300;
}
.trx_addons_list_dot li{
    list-style: disc;
    color: #333;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}
.trx_addons_list_dot li:after{
    border-left:1px solid red;
}

.services_about {
    background: url("../img/page.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    display: none;
}
.services_about p, .services_about h4 a, .services_about h2 span{
    color:#FFF !important;
}
.services_about li{
    color:#fff;
}
/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: linear-gradient(rgba(23, 22, 22, 0.1), rgba(0, 0, 0, 1)), url(../img/happy-family.jpg) fixed center center;
    background-size: cover;
    padding: 100px 0;
}

#call-to-action h3 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    margin-top: 20px;
}

#call-to-action p {
    color: #fff;
    font-weight: 200;
    font-size: 22px;
}

#call-to-action .cta-btn {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: #18d26e;
    border: 2px solid #18d26e;
}

/* Call To Action Section
--------------------------------*/
#skills {
    padding: 60px 0;
}

#skills .progress {
    height: 35px;
    margin-bottom: 10px;
}

#skills .progress .skill {
    font-family: 'Lato', sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase;
}

#skills .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
}

#skills .progress-bar {
    width: 1px;
    text-align: left;
    transition: .9s;
}

/* Facts Section
--------------------------------*/
#facts {
    background-image: url(../img/bgn-industries.png);
    background-position: center top;
    background-size: contain;
}
#facts span{
    position: absolute;
    left: 0;
    right: 0;
    top: 238px;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 26px;
    line-height: 66px;
    text-align: center;
    background-color: #e5749e;
    border-radius: 50%;
    border: 4px solid;
}

#facts::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: #00000061; */
    z-index: 9;
}
#facts h5, #facts p{
    color: #fff;
}
#facts .container {
    position: relative;
    z-index: 10;
}
#facts .counters{
    margin-top:20px;
}
#facts .counters_box{
    background: #fff;
    padding-bottom: 25px;
    box-shadow: 0px 3px 6px #eee;
    padding: 0px;
    margin-bottom: 30px;
}
.service_cbox{
    padding:10px 20px 20px;
}
#facts .counters_box h5{
    color: #333;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: inherit;
    margin: 0px 0 5px;
}
#facts .counters_box img{
    margin: 0 0 10px;
    max-width: 100%;
}
#facts .counters p {
    color: #333;
    margin: 0 auto;
    font-size: 14px;
}
#facts .counters a {
    color: #1f54a6;
    font-size: 13px;
    border-radius: 20px;
    margin: 10px 0;
}
#facts .counters a img{
    width: 15px;
    margin: -2px 3px 0 0;
}
#facts .facts-img {
    text-align: center;
    padding-top: 30px;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
    padding: 60px 0;
}

#testimonials .section-header {
    margin-bottom: 40px;
}

#testimonials .testimonial-item {
    text-align: center;
}
#testimonials .testimonial-item .testiimg{
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius:50%;
    display: none;
}
#testimonials .testimonial-item .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    margin: 10px 0 5px 0;
    color: #333;
    font-size: 19px;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    /* font-style: italic; */
    margin: 0 auto 15px auto;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.section-white .testimonial-item p, .section-white .testimonial-item h3, .section-white .section-header h3{
    color:#333 !important;
}


#testimonials .owl-nav, #testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

#testimonials .owl-dot.active {
    background-color: #5a5d5d;
}
.cal_sec_left{
    background: #5b5d5d;
    padding: 30px 20px;
    text-align:center;
}
.cal_sec_left h4{
    color:#FFF;
    font-size:18px;
    line-height:26px;
}
.cal_sec_left h2{
    color:#FFF;
    font-size:26px;
    font-weight:600;
}
.cal_sec_left p{
    color:#FFF;
}
/* Portfolio Section
--------------------------------*/
#portfolio {
    padding: 60px 0;
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
    background: #2260d1;
    color: #fff;
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

#portfolio .portfolio-wrap {
    /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
    transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
    /* box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16); */
    /* border: 1px solid #ddd !important; */
}

#portfolio .portfolio-item {
    position: relative;
    /* height: 360px; */
    overflow: hidden;
}

#portfolio .portfolio-item figure {
    overflow: hidden;
    height: 198px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

#portfolio .portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
    background: #2260d1;
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
    color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
    color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #2260d1;
}

#portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

/* Clients Section
--------------------------------*/
#clients {
    padding: 60px 0;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

#clients .owl-nav, #clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

#clients .owl-dot.active {
    background-color: #2260d1;
}

/* Testimonials Section
--------------------------------*/
.img-resposive{
    max-width:100%;
}
/* Testimonials Section
--------------------------------*/
#testimonials {
    background: #F7F8FC;
    padding:80px 0
}
#testimonials .col-md-6 h5{
    font-size: 36px;
    font-weight: 600;
    color: #007da4;
}
#testimonials .col-md-6 h6{
    margin: 0px 0 5px;
    color: #007da4;
    padding-top: 10px;
    font-weight: 600;
    font-size: 20px;
    clear: both;
}
#testimonials .col-md-6 h6 img{width: 70px;height: 70px;float: left;line-height: 56px;margin: 5px 15px 15px 0;text-align: center;padding: 10px;color: #333;background: #007da4;border-radius: 20px 0;:;}
#testimonials .col-md-6 p{
    text-align: left;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}


#testimonials .section-header {
    margin-bottom: 40px;
    margin-top: 70px;
}

#testimonials .testimonial-item {
    text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    margin: 10px 0 5px 0;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-size: 16px;
    font-style: italic;
    margin: 0 auto 15px auto;
    line-height: 23px;
}.cal_sec_left{
     background: url(../img/contact.jpg);
     padding: 30px 20px;
     text-align:center;
     background-size: cover;
     margin-bottom: 30px;
 }
.cal_sec_left h4{
    color:#FFF;
    font-size:18px;
    line-height:26px;
}
.cal_sec_left h1{
    color:#FFF;
    font-size:26px;
    font-weight:600;
}
.cal_sec_left p{
    color:#FFF;
}
.cal_sec_left .btn-primary{
    background: #007da4;
    color:#fff;
    margin-top:10px;
}
.heading-2{
    font-size: 38px;
    font-weight: 800;
    line-height: 50px;
    color: #007da4;
    font-family: TCCEB !important;
}
.heading-2 span{
    color: #6c6c6c;
    font-family: TCCEB;
}
.about_home h5{
    color: #007da4;
    font-weight: 600;
}
/* Team Section
--------------------------------*/
#team {
    background: #fff;
    padding: 60px 0;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
}

#team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

#team .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
}

#team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
}

#team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

#team .member .social {
    margin-top: 15px;
}

#team .member .social a {
    transition: none;
    color: #fff;
}

#team .member .social a:hover {
    color: #2260d1;
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
    padding: 60px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #007da4;
}

#contact .contact-info address, #contact .contact-info p {
    margin-bottom: 0;
    color: #000;
    text-align: center;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #23343c;
}

#contact .contact-info a {
    color: #000;
}

#contact .contact-info a:hover {
    color: #2260d1;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email #contact .contact-hours {
    margin-bottom: 20px;
}

#contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

#contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #696868;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #2260d1;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #2260d1;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    height: 46px;
    margin-bottom: 10px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
    background-color: #2260d1;
}

#contact .php-email-form button[type="submit"] {
    background: #2260d1;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
    background: #13a456;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #333;
    padding: 0 0 10px 0;
    color: #eee;
    font-size: 14px;
}

#footer .footer-top {
    background: #007da4;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}
#footer .footer-top .footer-info img{
    width:100%;
    max-width: 250px;
    margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border-left: 4px solid #007da4;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
    color: #eee;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #007da4;
    color: #eee;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #2260d1;
    color: #fff;
}
.footer-partner img{
    width: 130px;
    float: left;
    margin: 3px 0;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}

#footer .footer-top h4::before {
    right: 0;
    background: #fff;
}

#footer .footer-top h4::after {
    background: #064d64;
    width: 60px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer ul.collapse{
    padding-left:20px !important;
    padding-top:10px !important;
}
#footer ul.collapse li a{
    color:#b0b0b1 !important;
}
#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
}
#footer .footer-top .footer-links ul a i{
    float: right;
    margin: 5px 0 0;
}

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #ffffff2b;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
    color: #2260d1;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
    color: #FFF;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
    background: #2260d1;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #13a456;
}

#footer .copyright {
    text-align: center;
    padding-top: 10px;
    font-size: 18px;
    color: #080808;
    font-weight: 600;
    padding: 20px;
}

#footer .credits {
    text-align: center;
    font-size: 16px;
    color: #ddd;
}





.r-box{
    background:#292734
}
.r-box .col-sm-4{
    text-align:center;
    padding: 83px 30px;
    border-right: 1px solid #3f3d4c;
    border-bottom: 1px solid #3f3d4c;
}
.r-box img{
    width: 60px;
}
.r-box h4{
    color:white;
    font-weight: 200;
    font-size: 16px;
    margin: 15px 0 0;
}
/* ----------------------------- */
.img-auto-width{
    width:100%;
}
.margin-0 {
    margin: 0 !important;
}
.margin-bottom-0 {
    margin-bottom: 0 !important;
}
.margin-bottom-50 {
    margin-bottom: 50px !important;
}
.margin-top-50 {
    margin-top: 50px !important;
}
.margin-top-80 {
    margin-top: 80px !important;
}
.margin-top-15 {
    margin-top: 15px !important;
}
.margin-top-10 {
    margin-top: 10px !important;
}
.margin-top-25 {
    margin-top: 25px !important;
}
.margin-bottom-15 {
    margin-bottom: 15px !important;
}
.margin-bottom-5 {
    margin-bottom: 5px !important;
}
.margin-left-15 {
    margin-left: 15px !important;
}
.margin-right-15 {
    margin-right: 15px !important;
}
.margin-right-0 {
    margin-right: 0 !important;
}
.margin-right-5 {
    margin-right: 5px !important;
}
.padding-0 {
    padding: 0 !important;
}
.padding-top-0 {
    padding-top: 0 !important;
}
.padding-10 {
    padding: 10px !important;
}
.padding-top-15 {
    padding-top: 15px !important;
}
.padding-bottom-0 {
    padding-bottom: 0px !important;
}
.padding-bottom-15 {
    padding-bottom: 15px !important;
}
.padding-left-15 {
    padding-left: 15px !important;
}
.padding-right-15 {
    padding-right: 15px !important;
}
.padding-left-0 {
    padding-left: 0 !important;
}
.padding-right-0 {
    padding-right: 0 !important;
}
.padding-top-50 {
    padding-top: 50px !important;
}
.white-color {
    color: #FFF !important;
}
.black-color {
    color: #333 !important;
}
.full-width {
    width: 100% !important;
    float: none;
}
.scroll {
    overflow-y: hidden;
    overflow-x: hidden;
}
.scroll:hover {
    overflow-y: scroll;
    overflow-x: hidden;
}
.scroll::-webkit-scrollbar {
    width: 3px;
}
.scroll::-moz-scrollbar {
    width: 3px;
}
.scroll::-o-scrollbar {
    width: 3px;
}
.scroll::-webkit-scrollbar-track {
    background: #fff;
}
.scroll::-moz-scrollbar-track {
    background: #fff;
}
.scroll::-o-scrollbar-track {
    background: #fff;
}
.scroll::-webkit-scrollbar-thumb {
    background: #ddd;
}
.scroll::-moz-scrollbar-thumb {
    background: #ddd;
}
.scroll::-o-scrollbar-thumb {
    background: #ddd;
}
.modal-content{
    background: url(../img/work-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.modal-body{
    background: #00000087;
    padding: 0px;
}
.modal-body .col-sm-5{
    padding: 50px 20px 50px 50px;
}
.modal-body strong{
    color:#FFF;
}
.modal-body .col-sm-5 p, .modal-body .col-sm-5 h5{
    color:#FFF;
}
.modal-body .col-sm-7{
    padding: 50px;
    background:#fff;
}
.social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.social-links a:hover {
    background: #2260d1;
    color: #fff;
}
.modal-content label {
    font-size: 14px;
    margin-right: 10px;
}
.bbb-logo img{
    float: right;
    width: 180px;
}
ul li{
    list-style: none;
}
#page {
    background: url(../img/page.jpg) center top no-repeat fixed;
    background-size: 100%;
    padding: 180px 0 40px 0;
    position: relative;
}
.page{
    padding:60px 0 0;
}
.safety-page{
    padding:60px 0;
}
.service-details{
    padding:0 0 30px !important;
    background:#FFF !important;
}
.intercom-pg{
    background: url(../img/intro-carousel/intercom.jpg) center top no-repeat fixed !important;
}
.alarm-pg{
    background: url(../img/intro-carousel/alarm.jpg) center top no-repeat fixed !important;
}
.access-c-pg{
    background: url(../img/intro-carousel/access-c.jpg) center top no-repeat fixed !important;
}
.page h2{
    font-size: 22px;
}
#footer .credits a, #footer .copyright strong{
    text-align: center;
    font-size: 18px;
}
.page .col-sm-9 p img{
    float: right;
    padding: 0 0 15px 15px;
    max-width: 420px;
}
.smart-nav{
    display:block;
}
.smart-nav h5{
    background: #3c74c7;
    padding: 10px 15px;
    color: #FFF;
    margin: 0;
    font-size: 17px;
}
.smart-nav ul{
    display:block;
    padding: 0;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-bottom: 0;
}
.smart-nav ul li{
    display:block;
    line-height: 30px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    padding: 8px 15px;
    text-transform: capitalize;
    color: #151d21;
}
.smart-nav ul li a{
    color:#000;
}
.smart-nav ul li .fa{
    color: #23343c;
    font-size: 14px;
    margin-right:5px;
}
.gallery-bg{
    background:#efefef;
}
.galleryBox{
    width: 100%;
    padding: 0px;
    border:1px solid #ddd;
    margin: 10px 0;
    position: relative;
    max-height: 230px;
    overflow: hidden;
}
.gallery-overlay{
    width: 100%;
    height: 100%;
    background-color: #035ca1;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    display: table-cell;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.galleryBox:hover .gallery-overlay{
    opacity: 0.7;
}
.galleryBox img{
    width: 100%;
    min-height: 168px;
}
.galleryBox i{
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    font-size: 30px;
    color: #333;
}
.list-text{
    padding:0;
}
.list-text li {
    list-style: none;
    line-height: 34px;
    background: url(../img/list_ico.png);
    background-repeat: no-repeat;
    background-position: 0 11px;
    padding-left: 25px;
}
.page-content{
    padding: 60px 0 !important;
}
.page-content h2{
    font-size: 24px;
    color: #333;
    margin: 15px 0 10px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.page-content h2:after{
    content: "";
    width: 70px;
    height: 3px;
    background-color: #007da4;
    position: absolute;
    left: 0px;
    bottom: -2px;
}

.page-content h4 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #fff;
}
/*featured-services*/
.featured-services .box {
    padding: 30px 20px;
    min-height: 145px;
    background: #FFF;
    box-shadow: 0px 4px 10px #eee;
}
.services_about .box{
    background:transparent;
    box-shadow:none;
}
.featured-services .box img{
    width: 65px;
    float:left;
    margin: 10px 10px 30px 0;
}

.featured-services h4 {
    font-weight: 700;
    margin: 0 0 5px 0;
    font-size: 20px;
    text-transform: capitalize;
}

.featured-services h4 a {
    color:#007da4;
    font-family: 'TCCEB';
}

.featured-services h4 a:hover {
    color:#007da4;
}
.featured-services p {
    font-size: 14px !important;
    line-height: 19px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
    font-family: arial;
}

@media (min-width: 1024px) {
    #header #logo {
        padding-left: 0;
    }
    #intro .carousel-control-prev, #intro .carousel-control-next {
        width: 5%;
    }
    #intro p {
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .nav-menu > li:last-child{
        display:none
    }
    .galleryBox img {
        min-height: 140px;
    }
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
        color: #000;
    }
}

/* Nav Meu Container */

@media (max-width: 768px) {
    #header.header-scrolled {
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    #header #logo h1 {
        font-size: 28px;
    }
    #header #logo img {
        width: 200px;
    }
    .galleryBox img {
        min-height: 100px;
    }
    #intro h2 {
        font-size: 28px;
    }
    #nav-menu-container {
        display: none;
    }
    .hidden-xs{
        /* display:none; */
    }
    #mobile-nav-toggle {
        display: inline;
        margin: 60px 0 0 15px;
    }
    #intro .carousel-content {
        position: relative;
        left: inherit;
    }

    #intro h2 {
        font-size: 18px;
    }
    #featured-services h4 {
    }
    #intro, #intro .carousel-item, #intro .carousel-container  {
        max-height:450px;
    }
    #intro .carousel-container {
        margin-top: 70px;
    }
    #header #logo {
        float: none;
    }
    #header #logo h1 {
        text-align: center;
    }
}
@media (min-width: 768px) {
    #contact .contact-address, #contact .contact-phone, #contact .contact-email, #contact .contact-hours {
        padding: 20px 0;
    }
    #contact .contact-phone #contact .contact-email {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}
@media (max-width: 480px) {
	#intro p span{
		font-size: 18px;
		line-height: 16px !important;
		font-weight: 400;
	}
	 .contact-mtab{
			display:block !important;
			text-align: center;
			background: #fbfbfb;
			padding: 10px 0;
			margin-top: 70px;
		}
	  .contact-mtab .btn{
		color:#FFF;
		padding: 11px 15px !important;
		border-radius: 2px;
		background: #007da4;
		border-color: #007da4;
		}
    #testimonials .margin-top-50 {
        margin-top: 0 !important;
    }
    #mobile-nav-toggle {
        display: inline;
        margin: 15px 0 0 15px;
    }
    #featured-services h4, #featured-services p{
        /* text-align: center; */
        /* margin: 10px 0 0; */
        /* font-size: 20px; */
    }
    #featured-services .box {
        margin-bottom: 30px;
    }
    #featured-services {
        margin: -30px 0 60px;
    }
    #featured-services .box img {
    }

    #intro, #intro .carousel-item, #intro .carousel-container  {
        max-height: 400px;
        margin-top: 0;
    }
    #intro .carousel-container {
        margin-top: 30px;
        left: 16px;
    }
    #intro .btn-get-started{
        padding:10px !important;
    }
    #intro h2, #intro h2 span{
        font-size: 30px;
        margin: 0;
        line-height: 30px;
		display: table;
    }
    #intro h2 span{
        margin-top:10px;
        display:block;
    }
    #intro h3, #intro p{
        margin: 10px 0;
    }
    #page {
        padding: 80px 0 20px 0;
    }
    .header-scrolled .top-bar-container {
        display: table;
    }
    .header-scrolled .menu-header {
        padding: 7px 0;
    }
    .top-bar-container{
        display: none;
        padding: 5px 0;
        background: #007da4;
        width: 100%;
        margin: 0;
        position: relative;
    }
    .top-bar-right{
        float:right;
        margin: 0;
        text-align: right;
        max-width: 240px;
        padding: 0;
    }
    .top-bar-right .num span{
        background: #007da4;
        color: #FFF;
        padding: 7px 13px;
        border-radius: 20px;
    }
    .top-bar-right li{
        display:inline;
        list-style-type:none;
    }
    .top-bar-right span{
        display: inline-block;
        padding: 0;
        color: #fff;
        font-size:14px;
    }
    .top-bar-right a{
        color: #fff;
    }
    .social-top{
        float:left;
        padding: 0;
        margin: 8px 0 0;
        position: absolute;
        z-index: 9999999;
    }
    .social-top li{
        display:inline;
        list-style-type:none;
        text-align: center;
    }
    .social-top li a{
        display: inline-block;
        padding: 3px;
        color: #fff;
        border: 1px solid;
        border-radius: 30px;
        height: 35px;
        width: 35px;
        line-height: 28px;
        margin: 0 5px 0 0;
        background: #007da4;
    }
    .social-top li a:hover{
        color: #007da4;
    }
}
.space{
    display:inline-block;
}
.category_block{
    cursor:pointer;
    width:100%;
    position:relative;
    border-right: solid;
    border-color: #888888;
    border-width: 7px;
    text-align: right;
    padding: 1em;
    font-size: 2em;
    font-weight: bold;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
.category_block:hover{
    border-color: #4ddbff;
}
.category_block:active {
    border-color: blue;
}
.active_category{
    border-color: blue;
}
/*product block */
.product_collection{
    display:inline-block;
    padding-top:2em;
    padding-right:0;
}
.product_block{
    display: inline-block;
    margin-right: 3em;
    margin-top: 3em;
    height: 7em;
    width: 15%;
    position: relative;
}
.product_block span {
    max-width: 80%;
    position:absolute;
    right:0;
    bottom:0;
    background-color: white;
    padding: 0;
}
/* footer */
footer{
    float: left;
    background-color: #333;
    width: 100%;
    height: 20em;
    padding-top: 2em;
    padding-left: 5em;
    padding-right: 5em;
}
footer h1{
    color: white;
    display: inline-block;
    margin-bottom: 10px;
}
footer span{
    color: white;
}
.footer_title{
    border-bottom: 1px solid white;
}
.footer_title h1{
    font-weight: bold;
}
.footer_title span{
    position: absolute;
    bottom:10px;
    right:0;
    font-weight: bold;
}
.footer_nav{
    float:left;
    height:10em;
}
.footer_nav ul{
    list-style: none;
    padding-left: 0;
}
.footer_nav li{
    margin: 1em;
}
.footer_nav a{
    color: white;
    text-decoration: none;
}
.footer_nav a:hover{
    color:#4ddbff;
}

.main_image img {
    height:350px;
}

.thumbnails img {
    height: 130px;
}
.selected {
    border: 5px solid gray;
    border-radius: 5px;
}
/* Style specified for smart phone*/
@media(max-width: 425px) {
    #logo_img{
        margin:0 0 0 1em;
    }
    #header_nav{
        display:none;
    }
    #menu_icon{
        display: inline-block;
        margin-top: 1.5em;
        margin-right: 1em;
    }
    #tel_num_container{
        top:5em;
    }
    #tel_num{
        font-size:1.3em;
    }
    #myCarousel{
        display: none;
    }
    .banner {
        height: 100px;
    }
    .banner span{
        font-size:1.5em;
    }
    .tiles{
        width: 95%;
        margin: auto;
        height: 450px;
        margin-bottom: 2em;
        padding: 1em;
    }
    .tiles .btn{
        width:50%;
    }
    #home_tiles img{
        height:40%;
    }
    .footer_title span{
        display: none;
    }
    .footer_nav{
        font-size:0.7em;
        height:7em;
    }
    .category_collection{
        width:30%;
    }
    .product_collection{
        width:50%;
        padding-left:0;
    }
    .product_block{
        width:40%;
        margin-right:10%;
    }
    .category_block{
        font-size:1.5em;
        padding:0.5em;
    }
    #product_detail{
        left:10%;
        width:80%;
    }
    #product_image {
        width: 90%;
        height: 70%;
    }
    .page_slogan{
        margin:0 !important;
    }
    img.card-img-top{
        width:100%;
        height:150px;
    }
    div.card{
        display:inline-block;
        margin-left:11%;
        margin-bottom: 20px;
        padding: 0;
        width:33%;
        vertical-align: top;
    }
    .main_image img{
        width: 70% !important;
        margin-left: 15%;
        margin-top: 5%;
        height:200px;
    }
    .thumbnails img{
        width:55px;
        height:55px;
        padding:0;
    }
    .blank_gap{
        margin:0 !important;
    }
}
/* Style specified for tablet device*/
@media(min-width:426px) and (max-width: 1023px){
    #logo_img{
        margin:0 0 0 1em;
    }
    #myCarousel{
        height:250px;
    }
    #myCarousel img{
        height:250px;
    }
    .carousel-caption{
        top:10%;
    }
    .carousel-caption h1{
        font-size: 2.3em;
    }
    .carousel-caption p{
        font-size: 0.9em;
    }
    .tiles{
        margin: auto;
        height: 300px;
        margin-bottom: 2em;
        padding: 1em;
        width:70%;
    }
    #home_tiles .tiles img{
        position:absolute;
        left:8%;
        top:20%;
        height:50%;
        width:40%;
    }
    .tile_intro{
        position:absolute;
        right:8%;
        top:10%;
        width:40%;
        margin-left:2em;
    }
    .tile_intro>.title{
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .tile_intro>.tile_content{
        text-align: left;
    }
    .tiles .btn{
        width:30%;
        left: 25%;
        bottom:8%;
    }
    #home_tiles img{
        height:40%;
    }
    .footer_title span{
        display: none;
    }
    .footer_nav{
        padding:5px;
    }
    .category_collection{
        width:25%;
    }
    .product_collection{
        width:60%;
    }
    #product_detail{
        left:25%;
        width:50%;
    }
    #product_image{
        width:90%;
        height:70%;
    }
    .page_slogan{
        margin:1em 0 !important;
    }
    .page_slogan p{
        font-size: 1em;
    }
    .banner{
        height:160px;
    }
    img.card-img-top{
        width:100px;
        height:130px;
    }
    .main_image{
        width:41.6667%;
    }
    .main_image img{
        height:60%;
        margin-top:20%;
        margin-left:10%;
    }

}
@media(min-width:500px) and (max-width:1024px){
    .tiles{
        max-width:none;
        margin-left:15%;
    }
    .tiles .btn{
        left:35%;
    }
}
@media(min-width:426px)and(max-width:991px){
    .main_image>img{
        width:50% !important;
    }

}
@media(min-width:426px) and (max-width: 768px) {
    #logo_img {
        margin: 0 0 0 1em;
        width: 15%;
    }

    #myCarousel {
        height: 250px;
    }

    #myCarousel img {
        height: 250px;
    }

    .carousel-caption {
        top: 10%;
    }

    .carousel-caption h1 {
        font-size: 2.3em;
    }

    .carousel-caption p {
        font-size: 0.9em;
    }

    .tiles {
        width: 90%;
        margin: auto;
        height: 300px;
        margin-bottom: 2em;
        padding: 1em;
    }

    .tiles .btn {
        width: 50%;
        left: 25%;
    }

    #home_tiles img {
        height: 40%;
    }

    .footer_title span {
        display: none;
    }

    .banner span {
        font-size: 2em;
    }

    .page_slogan p{
        font-size: 1em;
    }
    .card{
        display: inline-block;
        width:25%;
        margin-left:16%;
        margin-right:0;
        vertical-align: middle;
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .main_image{
        width:100%;
    }
    .main_image img{
        width:50% !important;
        margin-top: 5%;
        margin-left:25%;
    }
    .thumbnails img{
        height: 70px;
    }
    .blank_gap{
        margin:0 !important;
    }
}

.text-title{
    text-align:left;
}
.main-text p{
    line-height: 2;
    font-size:1.5em;
    padding:0;
    text-align:left;
}
.main-text .text-title{
    font-size: 2em;
    font-weight: bold;
    color: #4169e1;
    padding:0;
}
.map{
    width:100%;
}

.address_info, .contact_info {
    padding:0;
    margin: 1em 1em;
}


.address_info {
    border-bottom: solid;
    border-width: 1px;
    border-color: darkgrey;
}

.address_info h4, .contact_info h4 {
    font-weight: bold;
    margin-top: 0;
}

#contact_info p {
    margin-bottom:0;
    padding:0.2em 0.2em;
    text-align: left;
}
#contact_info .contact_title{
    font-size:1.2em;
    font-weight: bold;
    text-align: center;
}
#contact_info .contact_subtitle{
    font-size:1.2em;
}
#contact_info .contact_detail{
    color: grey;
}

.blank_gap{
    margin: 2em 0;
}

.page_slogan{
    text-align: center;
    margin: 2em 0;
    font-weight: bold;
    font-size: 1.5em;
}

.door_info p{
    line-height: 1.5;
    font-size: 1em;

}

.door_info a{
    line-height: 5;
    padding: 0.5em;
    background-color: lightskyblue;
    color: white;
}

.parse_line{
    border-bottom: solid;
    border-color: grey;
    border-width: 1px;
    padding-bottom: 3em;
    margin-bottom: 3em;
}

.door_display img{

}

.main_image img{
    width: 100%;
}

.doortable{
    overflow-x:scroll;
}
.card{
    margin-bottom:40px;
}
.card-title{
    font-size:1.4em;
}
.card-img-top{
    width:160px;
    height:200px;
}
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.showSelectedPage{
    background-color:lightblue;
    font-weight: bold;
}
