body {
    background-image: url("../images/contBg.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 1480px;
    background-color: #0e0d0b;
    color: #3d3d3d;
    font-family: 'Bitter', serif;
}

.fa {
    width: 20px;
    text-align: center;
    margin: 0 5px;
}


/* Navbar
 * ----------------------------- */
.navbar {
    margin-bottom: 0;
}

.navbar-default {
    background-color: #db812e;
    border: none;
    border-radius: 0;
}

.navbar-default .navbar-nav li a {
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 2px 2px rgba(0,0,0,0.3);
}

.navbar-default .navbar-nav li a:hover {
    color: #FFFFFF;
    text-shadow: none;
}

.navbar-default .navbar-nav li.active a {
    color: #FFFFFF;
    background-color: #c4762d;
}

.navbar-default .navbar-nav li.active a:hover {
    color: #FFFFFF;
    background-color: #c4762d;
}

/* Nav-pills
 * ----------------------------- */
.nav-pills li a {
    color:#db812e;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover {
    background-color: #db812e;
}

/* Header
 * ----------------------------- */
header div {
    float: left;
    display: inline-block;
}

.logo {
    position: relative;
    top: -10px;
	margin-left: -25px; 
}

.logo img {
    width: 300px;
}

.social-links {
    margin-top: 25px;
}

.social-links, .social-links a {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 3px 3px rgba(0,0,0,0.4);
}

.social-links .fa {
    width: 40px;
}

/* 
 * ----------------------------- */
.panel-body h3:first-child {
    margin: 5px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Bitter', serif;
}

.panel-body {
    font-family: 'Open-sans', sans-serif;
}

.panel-body .row img {
    margin-bottom: 10px;
    max-height: 150px;
    max-width: 150px;
}

#container .mix {
    display: none;
    margin-top: 15px;
}

/* Portfolio Item
 * ----------------------------- */

.portfolio-item {
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 3px;
}
.portfolio-item .portfolio-thumb {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    max-height: 220px;
}

.portfolio-item .portfolio-thumb img {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(2);
}

.portfolio-item .portfolio-thumb .image-overlay {
    background-color: #db812e;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.portfolio-item:hover .portfolio-thumb .image-overlay {
    opacity: 0.50;
    filter: alpha(opacity=50);
}

.portfolio-item .portfolio-thumb .portfolio-zoom, .portfolio-item .portfolio-thumb .portfolio-link {
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: #2c3e50;
    display: none;
    line-height: 45px;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    font-size: 18px;
    color: #fff;
    display: block;
    border-radius: 2px;
}

.portfolio-item .portfolio-thumb .portfolio-zoom:hover, .portfolio-item .portfolio-thumb .portfolio-link:hover {
    background-color: #db812e;
    color: #ffffff;
}

.portfolio-item .portfolio-thumb .portfolio-link {
    right: 0;
    margin-right: -45px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.portfolio-item .portfolio-thumb .portfolio-zoom {
    left: 0;
    margin-left: -45px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.portfolio-item:hover .portfolio-thumb .portfolio-zoom {
    display: block;
    left: 50%;
    margin-left: -48px;
}

.portfolio-item:hover .portfolio-thumb .portfolio-link {
    display: inline-block;
    right: 50%;
    margin-right: -48px;
}

.portfolio-item .portfolio-details {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ecf0f1;
    border-top: 0;
    overflow: hidden;
}

.portfolio-item .portfolio-details h5 {
    margin-top: 0;
    position: relative;
}
.portfolio-item .portfolio-details h5:before {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #ecf0f1;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -25px;
}

.portfolio-item .portfolio-details p {
    margin-top: 20px;
    margin-bottom: 0;
}

/* Footer
 * ----------------------------- */

footer .container {
    color: #9f9f9f;
}