html,
body {
    height: 100%;
}

body {
    font-family: "Roboto Condensed", sans-serif;
}

p {
    color: #5a646d;
    font-size: 16px;
    font-weight: 400;
}

h3 {
    color: #606365;
    text-transform: uppercase;
    font-weight: 400;
}

h4 {
    color: #606365;
    text-transform: uppercase;
    font-weight: 400;
}

/*====================================================
                        HOME
======================================================*/

#home {
    height: 100%;
}

#home-cover {
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1))), url(../img/header.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
}

#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;
    /* text-align: center; */
}

#home-heading h3 {
    color: white;
    font-size: 55px;
    font-weight: 700;
    margin: 20px 0 20px 0;
}


/*====================================================
                        PARALLAX (Generic)
======================================================*/

.bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/*====================================================
                        BUTTONS (Generic)
======================================================*/

.btn-general {
    border-width: 2px;
    border-radius: 0;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-white {
    border-color: black;
    color: #fff;
    border-radius: 20px;
    background-color: green;
}

.btn-white:hover,
.btn-white:focus {
    background-color: green;
    color: black;
}


.btn-blue {
    border-color: #141415;
    color: #fff;
    background-color: green;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: red;
    color: green;
}



.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 3px 15px;
    border-radius: 15px;
    display: none;
}


#btn-blue3 {
    border-color: #141415;
    color: #fff;
    background-color: green;
    border-radius: 20%;
    padding: 2%;

}

#btn-blue3:hover,
#btn-blue3:focus {
    background-color: white;
    color: green;
}


/*====================================================
                       ANIMATE
======================================================*/

#home-cover,
#home-heading,
#home-btn {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

#home-cover {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

#home-heading {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

#home-btn {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}


/*====================================================
                       CONTENT (Generic)
======================================================*/

.content-box {
    padding: 40px 0 40px 0;
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;

}

.content-title-white h3 {
    color: #fff;
}

.content-title-underline {
    width: 130px;
    height: 3px;
    background-color: green;
    margin: 0 auto 30px auto;
}


/*====================================================
                       SERVICES
======================================================*/

.service-item {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-item i {
    color: green;
    float: left;
    padding: 0px 10px 0px 10px;
    text-align: center;
    font-size: 28px;
}


.service-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.service-item-desc p {
    margin: 0;
    padding-left: 1px;
}

.service-item img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    border-radius: 5%;
    -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid green;
}


.long-copy2 {
    line-height: 145%;
    width: 90%;
    margin-left: 5%;

}

#services .content-box {

    padding-bottom: 0px;
}

/*====================================================
                       ABOUT
======================================================*/

#about-bg-diagonal {
    width: 60%;
    height: 700px;
    float: right;
    background-image: url(../img/bg-about.jpg);
    border-left: 200px solid #fff;
    border-top: 700px solid transparent;
}

#about-content-box {
    float: left;
    height: 700px;
}

#about-content-box-outer {
    width: 100%;
    height: 100%;
    display: table;
}

#about-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#about .content-title h3 {
    text-align: left;
}

#about .content-title-underline {
    margin: 0 0 30px 0;
}

#about-desc p {
    margin-bottom: 30px;
}


/*====================================================
                       WORK
======================================================*/

.row.no-gutters [class*=col-] {
    padding-left: 0;
    padding-right: 0;
}

.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

.img-wrapper img:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}


/*====================================================
                       TEAM
======================================================*/

.team-member {
    margin: 0 15px;
}



h4.team-member-name {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 8px;
    text-align: center;
    margin: 0 auto;
}

.team-member-designation {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 5px;
    text-align: center;
    margin: 0 auto;

}

.team-members img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 5%;
    -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid green;
}

/*====================================================
                       SOCIAL
======================================================*/

.social-list {
    padding-left: 0;
}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}

.social-icon i {
    font-size: 17px;
}

.icon-gray i {
    color: #64707b;
}

.icon-white i {
    color: darkgreen;
    font-size: 28px;
}

.social-icon i:hover {
    color: black;
}


/*====================================================
                       TESTIMONIALS
======================================================*/

#testimonials-cover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../img/diesel-specialists-turbo-solutions.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/diesel-specialists-turbo-solutions.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    background-attachment: scroll;
}



#testimonials .content-box {
    background-color: rgba(0, 0, 0, 0.2);
}


.checked {
    color: orange;
}


.testimonial img {

    width: 50px;
    height: 50px;
    padding: 5px 5px 5px 5px;
}


.testimonial blockquote {
    border: 0;
    font-family: Lato, sans-serif;
    font-style: italic;
    color: #fff;
}


.testimonial blockquote::before {
    content: "\201C";
    font-size: 60px;
    font-style: normal;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.long-copy {
    line-height: 145%;
    width: 90%;
    padding: 10px 10px 10px 100px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

/*====================================================
                       HOW IT WORKS
======================================================*/

.work-step div {
    color: black;
    display: inline-block;
    border: 2px solid #298858;
    border-radius: 50%;
    padding: 5px;
    height: 55px;
    width: 55px;
    text-align: center;
    float: left;
    font-size: 200%;
    margin-right: 30px;
}


.work-step {
    margin-bottom: 40px;
}

.work-step:last-of-type {
    margin-bottom: 80px;
}

.steps-box:first-child {
    text-align: right;
    padding-right: 5%;

}


.steps-box:last-child {
    padding-left: 5%;
    font-weight: 100;
}

/*====================================================
                       CLIENTS
======================================================*/

.client {
    padding: 40px 30px;
}

/*====================================================
                       CONTACT
======================================================*/

#map1 {
    border-radius: 5%;
    -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 2px solid green;
    margin: 0 auto;
}


footer {
    background-color: #fff;    
}

#footer-cover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/ctown.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/ctown.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    background-attachment: scroll;
}


#contact-right h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    margin-left: 30px;
}

#contact-right h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-left: 30px;
}

#contact-right p {
    
      color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-left: 30px;
    
    
}

#contact-info {

    background-repeat: no-repeat;
    background-size: contain;
}

address {
    color: #38ba38;
    margin-bottom: 30px;
}

address strong {
    font-size: 20px;
}


#phone-fax-email strong {
    letter-spacing: 1px;
    font-size: 18px;
}



*:focus {
    outline: none;
}

#map1 {
    border-radius: 5%;
    border: 1px solid green;
    margin: 0 auto;
}


/*====================================================
                       FOOTER
======================================================*/

#footer-bottom {
    background-color: #2c2727;
    padding: 30px 0;

}

#footer-copyrights p {
    margin: 0;
    color: #fff;
}

#footer-menu {
    float: left;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-menu ul li {
    display: inline-block;
}

#footer-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}

#footer-menu a:hover {
    color: green;
}

.send {
    margin-top: 20px;
    margin-left: 10px;
}


/*====================================================
                       NAVIGATION
======================================================*/

.navbar {
    padding: 20px 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.vesco-top-nav {
    background: rgba(36, 32, 32, 0.69);
    padding: 7px 0;
}

.vesco-nav-wrapper {
    padding: 0 85px;
}

.navbar-nav {
    float: right;
}

.navbar-nav > li > a {
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background: none;
    color: red;
}

.navbar-toggle {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 0;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-collapse {
    max-height: none !important;
}

.vesco-top-nav ul.navbar-nav > li.active > a {
    color: red;
}