/*  
==================================================
    Default values 
    
    Font family: Roboto Condensed
    
    Red           : #CC0000
    Orange        : #fc7700
    Gray          : #43484E

    Greenish Blue : #34c6d3
    Steel Gray    : #41464b
    Blue Boyoux   : #64707b
==================================================
*/

html,
body {
    height: 100%;
}

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


/* General Styles*/

h3 {
    color: #43484E;
}

p {
    color: #43484E;
    font-size: 16px;
    font-weight: 300;
}

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

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #fff;
    color: #41464b;
}

.btn-blue {
    background-color: #CC0000;
    color: #fff;
}

.btn-blue:hover {
    color: #000;
}

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

.content-box {
    /*    min-height: 700px;*/
    padding: 60px 0 60px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

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

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

.contnet-title-underline {
    width: 30px;
    height: 3px;
    background-color: #CC0000;
    margin: 0 auto 30px auto;
}

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

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

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

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

.icon-gray i:hover {
    color: #CC0000;
}

.icon-white i {
    color: #fff;
}

.icon-white i:hover {
    color: #CC0000;
}

/* Navigation */

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

.navbar a.navbar-brand {
    padding: 0 15px;
    height: 80px;
}

.nav-menu-bar {
    padding: 0 80px;
    background-color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.nav-menu-bar img {
    transform: scale(0.75,0.75);
}

.nav-menu-bar > .container-fluid > .navbar-collapse > .navbar-nav > li > a {
    color: #000;
}

.container-fluid > .navbar-collapse > .navbar-nav > li.active > a {
    color: #CC0000;
}

.container-fluid > .navbar-collapse > .navbar-nav > li > a {
    color: black;
    font-size: 14px;
}

.container-fluid > .navbar-collapse > .navbar-nav > li > a:hover {
    color: #CC0000;
}

.container-fluid > .navbar-collapse > .navbar-nav {
    border-bottom: 2px solid #fff;
}

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

.nav-menu-bar > .container-fluid > .navbar-collapse > .navbar-nav {
    border-bottom: none;
}

.navbar-nav > li > a:focus,
.nav-menu-bar > .container-fluid > .navbar-collapse > .navbar-nav > li > a:focus {
    background: none;
}

.navbar-nav > li > a:hover, 
.nav-menu-bar > .container-fluid > .navbar-collapse > .navbar-nav > li > a:hover {
    background: none;
    color: #CC0000;
}

.navbar-toggle {
    background-color: rgba(0,0,0,0);
    border: 1px solid #000;
    border-radius: 0px;
    position: relative;
    right: 55px;
    top: 10px;
}

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

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

.nav-menu-bar ul.navbar-nav > li.active > a,
.nav-menu-bar > .container-fluid > .navbar-collapse > .navbar-nav > li.active > a {
    color: #CC0000;
}

#nav-menu-items {
    float: right;
    margin-top: 25px;
}

.navbar-toggle {
    margin-top: 23px;
}

.navbar .container-fluid p.info {
    position: absolute;
    top: 8px;
    right: 115px;
    font-size: 13px;
    font-weight: 500;
}

.navbar .container-fluid p.info > i {
    color: #cc0000;
}

.navbar .container-fluid .navbar-header > a > img {
    margin-top: 10px;
} 

/* Home */

#home {
    height: 100%;
    overflow: hidden;
}

.home-pattern {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/pattern.png);
    background-repeat: repeat;
    opacity: 0.2;
}

#home-cover {
    height: 100%;
    background-image: url("../img/home-bg.JPG");
    display: flex;
    align-items: center;
    animation-delay: .1s;
    animation-duration: .5s;
}

#home-content-box {
    width: 100%;
    height: 100%;
    padding-top: 80px;
}

#home-content-box .home-item-box {
    height: 50%;
    width: 50%;
    float: left;
    display: flex;
    align-items: center;
    padding-left: 2em;
    padding-right: 2em;
}

#home-content-box .home-item-box.home-item-box-right {
    justify-content: flex-end;
}

#home-content-box .home-item-box .home-item-one {
    animation-delay: 0.6s;
}

#home-content-box .home-item-box .home-item-two {
    animation-delay: 0.8s;
}

#home-content-box .home-item-box .home-item-three {
    animation-delay: 1s;
}

#home-content-box .home-item-box .home-item-four {
    animation-delay: 1.2s;
}

#home-content-box .home-item-box img {
    height: 300px;
}

#home-title {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#home-title h3 {
    padding-top: 100px;
    color: #fff;
    font-size: 8rem;
    font-weight: 700;
    text-transform: uppercase;
    animation-delay: 2s;
    animation-duration: .5s;
}

#home-title a {
    animation-delay: 2.4s;
    animation-duration: .5s;
}

/* Services */

.service-item {
    padding: 20px 0;
    cursor: pointer;
    min-height: 190px;
}

.service-item i {
    color: #CC0000;
    float: left;
    padding: 15px;
    margin-right: 20px;
}

.service-item:hover i {
    color: #fff;
    background-color: #CC0000;
}

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

.service-item:hover h3 {
    font-weight: 700;
}

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


/* About */

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

#about-bg-diagonal > .logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation-delay: 0.5s;
    animation-duration: 4s;
}

#about-content-box {
    float: left;
    height: 700px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#about-content-box > .content-title > p > strong {
    color: #CC0000;
}

/* WORK */

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

.img-wrapper {
    overflow: hidden;
}

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

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


/* Team */

#team div.content-box {
    padding-top: 50px;
    padding-bottom: 30px;
}

.team-member {
    margin: 0 0;
}

.team-member-info {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.team-member-info > ul {
    list-style: none;
    padding-left: 10px;
}

.team-member-info > ul > li {
    color: #64707b;
    font-size: 16px;
    font-weight: 300;
}

.team-member-info > ul > li::before {
  content: "■";
  color: #CC0000;
  margin-right: 15px;
}

.team-member-info > p > strong {
    color: #CC0000;
}

.team-contact {
    margin-top: 20px;
    margin-bottom: 120px;
}

.team-contact .team-contact-item {
    display: inline;
    text-align: center;
}

/* Stats */

#stats-cover {
    background-image: url("../img/testimonials-bg.jpg");
    height: 500px;
}

#stats .content-box {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
}

/* Clients */
.client {
    padding: 40px 20px;
    height: 300px;
    display: flex;
    align-items: center;
}

#map {
    height: 500px;
    width: 100%;
    background-color: #43484E;
}

/* Contact */
footer {
    background-color: #41464b;
    padding-top: 30px;
    border-top: 5px solid rgba(0,0,0,0.1);
}

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

#contact-left h4, #contact-right h4, #contact-top h4 {
    color: #fff;
}

#contact-info {
    background-image: url(../img/contact-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#contact-left p, #contact-top p {
    color: #fff;
    margin-bottom: 30px;
}

div .contact-cell {
    padding-left: 0px;
}

address {
    color: #fff;
}

address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}

form .form-control {
    background: transparent;
    border-radius: 0;
    border-color: #fff;
    font-size: 17px;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #fff;
}

/* Footer */
#footer-bottom {
    background-color: rgba(0,0,0,0.1);
    padding: 30px 0;
    margin-top: 5px;
}

#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: #CC0000;
}

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

footer {
    padding-top: 5px;
}

.border-bottom {
    border-bottom: #b8b9b8 solid 1px;
}