/**
* style.css
* website stylesheet
**/

/********************************
* GENERAL
********************************/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    line-height: 26px;
    color: #666;
    background: #fff;
    font-weight: bold;
}

h1, h2, h3, h4, .lead {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: .2px;
    font-weight: bold;
    margin: 0 0 20px;
}

h1 {
    font-size: 42px;
    font-weight: bold;
}

h2, h3 {
    font-size: 32px;
    font-weight: bold;
    color: #d0162d;
}

img { max-width: 100%; }

a, a:hover { transition: 0.4s ease; }
a:hover { 
    filter: brightness(0.9);
    text-decoration: none;
}

.btn {  
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    display: block;
    font-size: 22px;    
    border-radius: 0;    
    transition: .4s ease;
}

.btn-success, 
.btn-success:hover, 
.btn-success:active, 
.btn-success:focus {
    background: #2fc503;
    border-color: #2fc503;
    color: #fff;
}

.btn:hover {
    transform: scale(1.03);
}

.form-control {
    font-size: 26px;
    height: 50px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    background: #d0162d;
    font-weight: bold;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    max-height: 150px;
}

/********************************
* HEADER
********************************/

#header { padding: 0; }

.header-fone {
    font-size: 16px;
    line-height: 32px;
    font-weight: bold;
    margin-top: 30px;

}

.header-fone a { color: #666; }


/********************************
* PAGES
********************************/

#main {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.section {
    padding: 50px 0;
}

.bg-grey {
    background: #666;
    color: #FFF;
}

.banner img {
    width: 100%;
}

.clients {
    height: calc(100% + 100px);
    margin: -50px 0;
    padding: 20px 50px;
    background: #3b3b3b;
    border-left: 5px solid #d0162d;
    position: relative;
}

.clients:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3b3b3b;
    left: 100%;
    top: 0;
}

.bg-light-grey {
    color: #000;
    line-height: 32px;
    font-size: 19px;
    background: #f0f0f0;
}

.bg-light-grey ul {
    list-style: none;
    padding: 0 0 0 10px;
    line-height: 56px;
}

footer#footer {
    background: #3b3b3b;
    padding: 50px 0;
    border-top: 15px solid red;
    font-size: 22px;
}

#footer .container {
    max-width: 920px;
}

#footer h3 {
    font-size: 26px;
    display: inline-block;
    position: relative;
}

#footer h3:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #d0162d;
    position: absolute;
    bottom: -10px;
    left: 0;
}

#work {
    background: #fff url('../images/bg-process.jpg') no-repeat center left;
}

#offer {
    background: #fff url('../images/bg-coffe.jpg') no-repeat center left;
    background-size: cover;
}

/********************************
* RESPONSIVE FIXES
********************************/

@media( max-width: 990px ) {
    header#header {
        text-align: center;
    }
    
    .header-fone {
        text-align: center;
        margin: 10px 0px;
    }
    
}

@media( max-width: 767px ) {
}