/*
selected color: #34495e
rgba: 52, 73, 94
wet asphalt
*/


/**********************************************************/
/* General setup                                          */
/**********************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #fff;
    color: #555;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}


/**********************************************************/
/* Common elements                                        */
/**********************************************************/
.row {
    max-width: 1140px;
    margin: 0 auto;
}

.row-flex {
    display: flex;
    flex-direction: row;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

.right {
    text-align: right;
}

a:link,
a:active {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    color: #eee;
    transition: border-bottom 0.5s, color 0.5s;
}

a:hover,
a:visited {
    border-bottom: 2px solid #fff;
    color: #fff;
}

/**********************************************************/
/* Navigation                                             */
/**********************************************************/
.nav-main {
    float: right;
    list-style: none;
}

.nav-main li {
    display: inline-block;
    margin-left: 40px;
    letter-spacing: 7px;
}

.nav-main li a:link,
.nav-main li a:visited,
.nav-footer li a:link,
.nav-footer li a:visited {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    transition: border-top 0.5s, border-bottom 0.5s, color 0.5s;
}

.nav-main li a:hover,
.nav-main li a:active,
.nav-footer li a:hover,
.nav-footer li a:active {
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    color: #fff;
}

.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 29, 36, 1);
    
    z-index: 9999;
}

.nav-sticky, .nav-main {
    padding-top: 18px;
    padding-bottom: 18px;
}

.logo {
    height: 70px;
    width: auto;
    float: left;
}

.nav-mobile-icon {
    float: right;
    padding-top: 20px;
    font-size: 200%;
    color: #fff;
    cursor: pointer;
    display: none;
}

/**********************************************************/
/* Welcome area                                           */
/**********************************************************/
header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(pics/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.welcome-box {
    position: absolute;
    top: 45%;
    left: 25%;
}

/**********************************************************/
/* H*                                                     */
/**********************************************************/
h1, h2, h3 {
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 300%;
    word-spacing: 3px;
    letter-spacing: 1px;
}

h2 {
    font-size: 120%;
    word-spacing: 2px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #eee;
}

h3 {
    font-size: 100%;
    letter-spacing: 2px;
    padding-bottom: 10px;
}

h4 {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

hr {
    width: 300px;
    max-width: 100%;
    height: 5px;
    border: 3px solid #34495e;
    margin-bottom: 20px;
}

/**********************************************************/
/* Buttons                                                */
/**********************************************************/
.btn:link,
.btn:visited {
    display: inline-block;
    font-weight: 300;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 8px;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
    border: 1px;
}

.btn:hover,
.btn:active {
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
    margin-right: 15px;
}

.btn-full:link,
.btn-full:visited,
input[type=submit]{
    background-color: #3c40c6;
    border: 1px solid #3c40c6;
    color: #eee;
    margin-right: 20px;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

.btn-full:hover,
.btn-full:active,
input[type=submit]:hover {
    border: 1px solid #34495e;
    background-color: #fff;
    color: #000;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #3c40c6;
    background-color: rgba(0, 0, 0, 0.2);
    color: #eee;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
}

/**********************************************************/
/* Sections                                               */
/**********************************************************/
.section-firma {
    z-index: 50;
    margin-bottom: 30px;
}

.text-default {
    color: #000;
    text-align: justify;
}

.h100 {
    height: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.v {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.section-klienci {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(pics/opinie.jpg);
    background-size: cover;
    color: #eee;
    background-attachment: fixed;
}

blockquote {
    color: #eee;
    font-size: 90%;
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}

cite {
    font-size: 70%;
    margin-top: 5px;
    display: block;
    font-style: normal;
    padding: 2%;
}

.thin {
    display: none;
}

.image {
    display: block;
}
/**********************************************************/
/* Contact                                                */
/**********************************************************/
.form-contact {
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
textarea {
    width: 60%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 120px;
}

.form-message-sent {
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

.success {
    background-color: #27ae60;
}

.error {
    background-color: #e74c3c;
}

/**********************************************************/
/* Footer                                                 */
/**********************************************************/
footer {
    background-color: rgba(20, 29, 36, 1);
    padding: 50px;
    font-size: 80%;
}

footer p {
    color: #eee;
    text-align: center;
    margin-top: 20px;
}

.nav-footer {
    list-style: none;
    float: left;
}

.links-footer {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.nav-footer li,
.links-footer li {
    display: inline-block;
    margin-right: 20px;
}

.nav-footer li:last-child,
.links-footer li:last-child {
    margin-right: 0;
}

.links-footer a:link,
.links-footer a:visited {
    border: 0;
    color: #eee;
    font-size: 140%;
    transition: color 0.5s, transform 0.5s;
}

.link-facebook:hover {
    color: #3b5998;
    transform: scale(1.5);
}

.link-email:hover {
    color: #dd4b39;
    transform: scale(1.5);
}

.link-phone:hover {
    color: #51efa4;
    transform: scale(1.5);
}
