@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700);

@import "modules.css";

@import "company.css";
@import "products.css";
@import "catalogs.css";
@import "budget.css";
@import "contacts.css";

/* styling here */
.spacer150 {height: 150px;}
.spacer120 {height: 120px;}
.spacer90 {height: 90px;}
.spacer60 {height: 60px;}
.spacer30 {height: 30px;}
.spacer15 {height: 15px;}

.block150 {display: inline-block; width: 150px;}
.block120 {display: inline-block; width: 120px;}
.block90 {display: inline-block; width: 90px;}
.block60 {display: inline-block; width: 60px;}
.block30 {display: inline-block; width: 30px;}
.block15 {display: inline-block; width: 15px;}

.taleft {text-align: left;}
.tacenter {text-align: center;}
.taright {text-align: right;}
.tajustify {text-align: justify;}

body {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 12pt;
}

img {
    max-width: 100%;
}

button {
    -webkit-transition: all 200ms ease 0s; /* Safari */
    transition: all 200ms ease 0s;
}

input {
    font-weight: 300;
}

a {
    color: #000;

    -webkit-transition: all 200ms ease 0s; /* Safari */
    transition: all 200ms ease 0s;
}

a:hover, a:focus {
    color: #000;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

h1 {
    text-transform: uppercase;
    font-size: 40pt;
}

header .navbar-default .navbar-brand {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 90px;
}

header .navbar-brand > img {
    max-height: 75%;
    margin-top: 5%;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;

    -webkit-transition: all 200ms ease 0s; /* Safari */
    transition: all 200ms ease 0s;
}

header.down {
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

header .navbar {
    margin-bottom: 0;
}

header .navbar-default {
    background-color: transparent;
    border: none;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}

header .navbar-default .navbar-nav > li > a {
    color: inherit;
    padding-top: 35px;
    padding-bottom: 5px;
    padding-left: 12px;
    padding-right: 12px;
}

header .navbar-default .navbar-nav > li.btn-rounded {
    margin-top: 30px;
}

header .navbar-default .navbar-nav > li > a:hover,
header .navbar-default .navbar-nav > li > a:focus {
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

header .navbar-default .navbar-nav > .active > a,
header .navbar-default .navbar-nav > .active > a:focus,
header .navbar-default .navbar-nav > .active > a:hover {
    background-color: inherit;
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

header.down .navbar-default .navbar-nav > .active > a,
header.down .navbar-default .navbar-nav > .active > a:focus,
header.down .navbar-default .navbar-nav > .active > a:hover {
    background-color: inherit;
    color: #AAA;
    text-shadow: none;
}

header .navbar-default .navbar-nav > .open > a,
header .navbar-default .navbar-nav > .open > a:focus,
header .navbar-default .navbar-nav > .open > a:hover {
    background-color: inherit;
    color: #fff;
}

header .dropdown-menu {
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0;
}

header .dropdown-menu > li > a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

header .dropdown-menu > li:last-child > a {
    border-bottom: none;
}

header .dropdown-menu > li > a:hover,
header .dropdown-menu > li > a:focus {
    background-color: transparent;
    color: rgba(255,255,255,0.5);
}

/* FOOTER */
footer {
    background-color: #000;
    color: #fff;
    font-weight: 100;
}

footer img {
	max-width: 80%;
	margin: auto;

}

footer form.newsletter {}
footer form.newsletter input {
    border: 2px solid #fff;
    border-radius: 50px 0 0 50px;
    background-color: transparent;
    width: calc(60% - 2px);
    display: inline-block;
    vertical-align: top;
    font-size: 11pt;
    height: auto;
    color: #fff;
    text-align: center;
}
footer form.newsletter button {
    border: 2px solid #fff;
    border-radius: 0 50px 50px 0;
    width: calc(40% - 2px);
    display: inline-block;
    vertical-align: top;
    font-size: 11pt;
}

footer form.newsletter button:hover,
footer form.newsletter button:focus {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}

footer a {
    color: #fff;
}

footer a:focus,
footer a:hover {
    color: #fff;
}

/* common css */
.page-title {
    background-color: #fff;
    background-size: cover;
    background-position: center;
}

.btn-rounded {
    border: 1px solid #000;
    border-radius: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
}

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-sized {
    min-width: 150px;
    font-size: 14pt;
    text-transform: uppercase;
    padding-left: 45px;
    padding-right: 45px;
}

.btn-rounded:hover,
.btn-rounded:focus {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    border-color: #fff;
    background-color: #fff;
    color: #000;
}

.btn-rounded a {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

a.sup {
    font-weight: 700;
    text-transform: uppercase;
}

.colorGrey {
    color: lightgrey;
}

.display-none {
    display: none;
}

label {
    font-weight: 300;
    text-transform: uppercase;
}

input.forForm {
    border-radius: 50px;
    border: 1px solid #000;
    height: auto;
    font-size: 14pt;
    color: inherit;
}

textarea.forForm {
    border-radius: 15px;
    border: 1px solid #000;
    resize: none;
    font-size: 14pt;
    color: inherit;
    font-weight: 300;
}

button.forForm {
    background-color: #000;
    color: #fff;
}

button.forForm:hover,
button.forForm:focus {
    background-color: transparent;
    color: #000;
}

@media (max-width: 1199px) {
    header {
        background-color: rgba(255, 255, 255, 0.90);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    }

    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav > li {
        float: none;
    }
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
