h1,
h2,
h3,
h4 {
    font-family: 'Bree Serif', Georgia, serif;
}

body {
    background: linear-gradient(rgba(232, 232, 232, 0.96), rgba(232, 232, 232, 0.96)), url(../img/body-bg.jpeg) fixed center no-repeat;
    background-size: cover;
    color: #555;
    font-family: 'Signika Negative', Verdana, sans-serif;
    line-height: 1.8;
	font-size: 17px !important;
}

.jumbotron h1 {
    margin: auto;
}

.jumbotron {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/jumbotron-image.jpg) fixed center no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 100vh;
    margin: auto;
}


/*--NAVBAR--*/

.navbar {
    background: #292c2f;
    border: none;
    border-radius: 0;
    letter-spacing: 1px;
    margin-bottom: 0;
    min-height: 60px;
    z-index: 9999;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.5);
}

.navbar-collapse {
    border: none;
}

.navbar-default .navbar-nav li a {
    color: #fff;
    font: 700 15px 'Lato', 'Segeo UI', sans-serif;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 3px solid transparent;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #ff1600 !important;
    font-weight: 700;
}

.navbar-default .navbar-nav li.active a {
    background-color: inherit !important;
    color: #ff1600 !important;
    border-bottom: 3px solid #ff1600;
}

@media only screen and (max-width: 767px) {
    .navbar-default .navbar-nav li a {
        border-left: 3px solid transparent;
        border-bottom: none;
    }
    .navbar-default .navbar-nav li.active a {
        background-color: inherit !important;
        border-left: 3px solid #ff1600 !important;
        border-bottom: none;
    }
    .jumbotron {
        height: 50vh;
    }
}

.navbar-brand {
    margin-right: 20px;
    padding: 0;
    height: 60px;
}

.company-logo {
    height: 52px;
    margin: 4px;
    border: 1px solid #808080;
    border-radius: 5px;
}

.navbar-toggle {
    margin: 0 !important;
    padding: 0;
    border: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.fa-bars {
    padding: 14px 20px;
    color: #eee;
}

.top-nav-collapse {
    background-color: #fff !important;
}

#about,
#services,
#portfolio,
#gallery,
#awards,
#contact {
    padding: 100px 50px;
}

.section-title {
    margin-bottom: 3rem;
}

.white-bg {
    background-color: #FFF;
}


/*CONTACT SECTION*/

.messages {
    padding-top: 20px;
    padding-bottom: 20px;
}

#contact h1,
#contact p {
    padding-top: 20px;
    padding-bottom: 20px;
}

#email-address {
    color: #555;
    text-decoration: none;
}

#email-address:hover {
    color: #ff1600;
    text-decoration: none;
    font-weight: bold;
}


/*--CAROUSEL--*/

#myCarousel {
    padding-top: 40px;
    max-width: 60rem;
    margin: auto;
}

#myCarousel .item {
    padding: 20px;
    line-height: inherit;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
    color: #ff1600;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 0 0 10px 25px;
    color: #fff;
    text-align: left;
}

.carousel-indicators {
    position: absolute;
    bottom: 0;
    right: 2px;
    left: 0;
    width: 100%;
    z-index: 15;
    margin: 0;
    padding: 0 25px 20px 0;
    text-align: right;
}

.carousel-indicators li {
    background-color: #ff1600;
    height: 16px;
    width: 16px;
    border: 3px solid transparent;
    transition: background 1s ease;
    -webkit-transition: background 1s ease;
    -moz-transition: background 1s ease;
    -o-transition: background 1s ease;
}

.carousel-indicators li.active {
    border: 5px solid #ff1600;
    height: 18px;
    width: 18px;
}

.item p {
    line-height: 1.5em;
    font-weight: 800;
    margin: 10px 10px 70px 10px;
}

.item span {
    font-style: normal;
}


/*--SLIDEANIMATION--*/

.slideanim {
    visibility: hidden;
}

.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

.featurette-divider {
    margin: 80px 0;
    /* Space out the Bootstrap <hr> more */
}


/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */

@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
    table {
        font-size: 10px !important;
    }
    #about,
    #services,
    #portfolio,
    #gallery,
    #awards,
    #contact {
        padding: 100px 20px;
    }
    .project {
        min-height: 200px !important;
        font-size: 0.8rem;
    }
    .project h4 {
        font-size: 1.2rem;
    }
    .service-content h3 {
        text-align: center;
    }

}

@media only screen and (max-width: 992px) {
    .jumbotron {
        height: 60vh;
    }
}


/*---FOOTER---*/

.footer-distributed {
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: normal 16px sans-serif;
    padding: 45px 50px;
}

.footer-distributed .footer-left p {
    color: #8f9296;
    font-size: 14px;
    margin: 0;
}

.footer-distributed p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px;
    padding: 0;
}

.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: #555;
}

.footer-links a:hover {
    color: #ff1600;
}

.footer-distributed .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

.footer-distributed .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media screen and (max-width: 600px) {
    .footer-distributed .footer-left,
    .footer-distributed .footer-right {
        text-align: center;
    }
    .footer-distributed .footer-right {
        float: none;
        margin: 0 auto 20px;
    }
    .footer-distributed .footer-left p.footer-links {
        line-height: 1.8;
    }
    \
}

.form-control {
    font-size: 2.0vmin;
    color: #808080;
    background-color: #fff !important;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.btn-default {
    font-size: 2.5vmin;
    display: inline-block;
    height: 40px;
    line-height: 41px;
    padding: 0 15px;
    cursor: pointer;
    border: 1px solid #808080;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background-color: inherit;
    bottom: 0;
}

.btn-default.disabled:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #ff1600;
    color: #fff;
    border: 1px solid transparent;
}


/* SERVICES */

.fa-chevron-right {
    color: #ff1600;
}

#services > ul {
    padding: 10px;
    background-color: transparent;
}

#services > ul > li > a:hover {
    background-color: #ccc;
}

#services > ul > li {
    margin: 20px;
}

.service-content img {
    margin-bottom: 2em;
    margin-top: 2em;
    height: 15rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.service {
    margin-bottom: 5rem;
}

.service-content {
    margin: 1rem 5rem;
    padding: 2rem;
}

.service-content h3 {
    margin: 0 0 3rem 0;
    padding: 0;
}

/*.service1 .service-image {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/pipe.svg) no-repeat center;*/

}

.service1 .btn {
    margin-top: 2rem;
}

/*.service2 .service-image {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/oil-platform.svg) no-repeat center;
}*/

.service2 .btn {
    margin-top: 2rem;
}

/*.service3 .service-image {
    background: linear-gradient(rgba(242, 242, 242, 0.5), rgba(242, 242, 242, 0.5), rgba(242, 242, 242, 0.5)), url(../img/extraction.svg) no-repeat center;
}*/

.service3 .btn {
    margin-top: 2rem;
}

.service4 .service-image {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/worker.svg) no-repeat center;
}

.service4 .btn {
    margin-top: 2rem;
}

/* Portfolio Section */

.projects {
    margin: 0;
}


#portfolio .project {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    border-radius: 2px;
    min-height: 250px;
    display: flex;
    margin: 0 3px 6px 3px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}

.project-card {
    padding: 0;
}

.project .content {
    margin: auto;
    /*    padding: 0 2rem;*/
}

.project .content .btn {
    height: 5px;
    width: 40px;
    box-shadow: none;
    background-color: #ff1600;
    border: none;
    cursor: auto;
}


/* Gallery */

.no-padding {
    padding: 0;
    margin: 0;
}

.gallery {
    padding: 0 5px 10px 5px;
}

.gallery img {
    border-radius: 0;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.gallery:hover img {
    opacity: .5;
}


/* Modal */

.modal {
    top: 65px;
}


/*gallery lightbox*/

.ekko-lightbox .modal-dialog {
    margin: 0 auto;
    border-radius: 0;
}

.ekko-lightbox .modal-body {
    border-radius: 0;
    padding: 0;
    border: solid 2px #eee;
}

.standards {
    list-style: none;
}

.standards li {
    display: inline;
    padding: 10px;
}

a:hover {
    text-decoration: none;
}

hr {
    background: #999;
    /*    height: 1px;*/
    margin-bottom: 15px;
    width: 70%;
}
