/* You can add global styles to this file, and also import other style files */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
/* @import 'css/_cover.css';
@import 'css/_buttons.css'; */

body {
    font-family: 'Open Sans', sans-serif;
}


.navbar-nav {

    li {
        padding-left: 16px;

        a:hover,
        a:active {
            color: #ecb802;
            text-decoration: underline;
        }
    }

    .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
        transition: none;
    }
  
    .active {
        color: #ecb802!important;
        text-decoration: underline;
    }
}

img {
    max-width: 100%;
}

#intro {
	background-color: #ecb802;
	padding: 30px 0 50px 0;
}

#boxes {
	padding: 50px 0;
}

.productBox {
	padding: 0 8px;

    h3,
    p {
        padding: 16px 8px 0px;
    }
}

.productBox .btn-default {
	margin: 10px 0 20px;
}

.productBox img {
	opacity: 0.4;
	filter: alpha(opacity=40); /* For IE8 and earlier */
	-webkit-transition: all 0.3s ease; /* Safari and Chrome */
	-moz-transition: all 0.3s ease; /* Firefox */
	-o-transition: all 0.3s ease; /* IE 9 */
	-ms-transition: all 0.3s ease; /* Opera */
	transition: all 0.3s ease;
}

.productBox:hover {
	background-color: #ecb802;
	color: #fff;
}

.productBox:hover img {
	opacity: 1;
	filter: alpha(opacity=100); /* For IE8 and earlier */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.jumbotron {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    margin-bottom: 0;
    height: 400px
}

.jumbotron .container,.jumbotron .row,.jumbotron::before {
    position: absolute;
    top: 150;
    right: 0;
    bottom: 0;
    left: 0
}

@media (min-width: 768px) {
    .jumbotron {
        background-attachment:fixed;
        height: 80vh
    }

    .jumbotron .container,.jumbotron .row,.jumbotron::before {
        top: 0
    }
}

.jumbotron::before {
    background-color: #ecb802;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .25
}

.jumbotron h1,.jumbotron h2 {
    z-index: 5;
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 5px #000
}

.jumbotron .btn {
    z-index: 5;
    color: #fff;
    position: relative
}

.btn-orange {
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ecb802!important;
    border-radius: 16px!important;
    padding: 8px 16px!important;
    background-color: #fff
}

.btn-orange:active,.btn-orange:focus,.btn-orange:hover {
    background-color: #fff;
    color: #ecb802
}

h1 {
    font-weight: 700;
    text-transform: uppercase
}

.contact-bar {
    display: inherit;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #ecb802;
    position: fixed;
    top: 106px;
    left: 0;
    right: 0;
    z-index: 2000;

    ul {
        margin-bottom: 0;

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }
    }
}

#content {
    padding-top: 32px;
    padding-bottom: 32px;
}

#footer {
    background-color: #545454;
    padding-top: 32px;
    padding-bottom: 32px;
    color: #f8f9fa;

    ul li {
        list-style: none;

        a {
            color: #f8f9fa;
            text-decoration: none;
        }
        a:hover {
            color: #ecb802;
            text-decoration: underline;
        }
    }
}