/* main.css */
/* Master page */
html {
    height: 100%;
}
body {
    margin: 0px;
    padding: 0px;
    font-family: CenturyGothic;
    font-size: 14px;
    color: #000000;
    line-height: 17px;
}
html, body {
    height: 100%;
}
.logo {
    float: left;
}
.topContainer {
    width: 1120px;
    padding: 40px;
    text-align: left;
}
.menuContainer {
    height: 30px;
    margin-top: 32px;
    float: right;
}
.pageContainer {
    width: 1120px;
    padding: 40px;
    padding-bottom: 0px;
    text-align: justify;
}
.narrowContent {
    width: 800px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
.narrowContent.small {
    width: 450px;
}
.menuIcon {
    background: url('../images/elements/menu.svg') center center;
    width: 60px;
    height: 60px; 
    float: right;
    cursor: pointer;
    display: none;
}
.footerContainer .footerContent {
    width: 1120px;
    padding: 40px;
    color: #8d8d8d;
    text-align: left;
    font-size: 10px;
}

/* Elements */
h1 {
    color: #000000;
    margin: 0px;
    padding: 0px;
    line-height: 18px;
    font-size: 24px;
    font-weight: normal;
    font-family: CenturyGothic;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 2px;
}
h2 {
    color: #000000;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-weight: normal;
    font-family: CenturyGothic;
    text-align: left;
    letter-spacing: 2px;
}
table {
    border: 0px;
    border-spacing: 0px;
}
input, textarea, select {
    width: 250px;
    font-size: 10px;
    padding: 6px;
    background: none;
    border: 1px solid #000000;
    font-family: CenturyGothic;
}
textarea {
    font-family: CenturyGothic;
}
a {
    font-family: CenturyGothic;
    color: #ababab;
    border: 0px;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a img {
    border: 0px;
}

/* Default elements */
.mandatoryStar {
    color: #ff6565;
    margin-left: 3px;
}
.errorDiv {
    font-size: 11px;
    color: #ff6565;
    line-height: 10px;
    text-transform: uppercase;
    margin-top: 5px;
}
.errorInput {
    background: #ffdfdf;
}
.formRow {
    clear: both;
    position: relative;
}
.formText {
    width: 130px;
    float: left;
    text-align: right;
    vertical-align: top;
    font-size: 14px;
    padding-right: 20px;
    line-height: 24px;
    text-transform: uppercase;
}
.formInput {
    float: left;
    padding-bottom: 5px;
}
.buttonDiv {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}
.buttonDiv.form {
    margin-left: 150px;
}
.noticeContainer {
	height: 25px;
}
.noElements {
    text-align: center;
}

/* fonts.css */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome.eot?v=4.3.0');
    src: url('../fonts/fontawesome.eot?#iefix&v=4.3.0') format('embedded-opentype'), 
         url('../fonts/fontawesome.woff2?v=4.3.0') format('woff2'), 
         url('../fonts/fontawesome.woff?v=4.3.0') format('woff'), 
         url('../fonts/fontawesome.ttf?v=4.3.0') format('truetype'), 
         url('../fonts/fontawesome.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('../fonts/century.woff2') format('woff2'),
         url('../fonts/century.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* menu.css */
ul.mainNav {
    margin: 0px;
    padding: 0px;
    cursor: default;
    list-style: none;
    width: 800px;
}
ul.mainNav li {
    margin: 0px;
    padding: 0px;
    padding-left: 30px;
    float: right;
    background: none;
}
ul.mainNav li a {
    margin: 0px;
    padding: 0px;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
    padding-bottom: 3px;
    letter-spacing: 2px;
}
ul.mainNav li a:hover, 
ul.mainNav li a.selected {
    border-bottom: 1px solid #000000;
}

ul.mobileNav {
    display: none;
    margin: 0px;
    padding: 0px;
    padding-top: 32px;
    cursor: default;
    list-style: none;
    width: 100%;
    clear: both;
}
ul.mobileNav li {
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid #ababab;
}
ul.mobileNav li:nth-last-child(1) {
    border-bottom: 0px;
}
ul.mobileNav li a {
    margin: 0px;
    padding: 0px;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 34px;
    padding-bottom: 3px;
    letter-spacing: 2px;
}

/* buttons.css */
/* General */
.button {
    width: 125px;
    border: 0px;
    cursor: pointer;
    color: #ffffff;
    background: #000000;
    text-align: center;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -html-border-radius: 0px;
    -webkit-border-radius: 0px;
    appearance: none;
    -moz-appearance: none;
    -html-appearance: none;
    -webkit-appearance: none;
}

/* notice.css */
.topNotice {
    height: 25px;
}
.noticeOK {
    font-size: 10px;
    text-align: center;
    color: #2ea41b;
    line-height: 25px;
}
.noticeError {
    font-size: 10px;
    text-align: center;
    color: #ff6565;
    line-height: 25px;
}

/* pager.css */
.pager {
    margin-top: 20px;
    margin-bottom: 15px;
    height: 40px;
}
.pager a, .pager span {
    background: #f6f6f6;
    font-size: 12px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 40px;
    float: left;
}
.pager a:hover, .pager span {
    color: #ffffff;
    background: #00914e;
    text-decoration: none;
}

/* blocks.css */
/* SLIDER BLOCK */
.sliderBlock {
    width: 1120px;
    height: 560px;
    display: none;
}
.sliderBlock .sliderImage {
    width: 1120px;
    height: 560px;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
}

/* CATEGORY BLOCK */
.categoryBlock {
    height: 52px;
    margin-top: -52px;
    text-align: left;
}
.categoryBlock ul {
    padding: 0px;
    margin: 0px;
    cursor: default;
    list-style-type: none;
    text-align: center;
}
.categoryBlock ul li {
    margin: 0px;
    padding: 0px;
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
}
.categoryBlock ul li a {
    margin: 0px;
    padding: 0px;
    padding-bottom: 3px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}
.categoryBlock ul li a:hover, 
.categoryBlock ul li a.selected {
    border-bottom: 1px solid #000000;
}

/* user.css */
.recoveryDiv {
    margin-left: 150px;
    margin-bottom: 5px;
    text-align: left;
}
.recoveryDiv a {
    font-size: 11px;
}

/* project.css */
.projectDiv {
	float: left;
	width: 276px;
	height: 210px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.projectDiv.noMargin {
    margin-right: 0px;
}
.projectDiv .projectTitle {
    background: url("../images/elements/project/hover.png") top left;
    color: #ffffff;
    font-weight: normal;
    font-size: 12px;
    padding-left: 10px;
    position: relative;
    text-transform: uppercase;
    height: 20px;
    margin-top: -20px;
    line-height: 20px;
    display: none;
    z-index: 10;
}
.projectDiv img {
    width: 276px;
    margin: 0px;
    padding: 0px;
}
.projectDiv a {
    text-decoration: none;
}

.projectClose {
    background: url("../images/elements/close.png") no-repeat 0px 0px;
    display: block;
    float: right;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.projectPhotos {
    color: #a7a7a7;
}

/* press.css */
.pressImage {
	float: left;
	width: 276px;
	height: 210px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.pressImage.noMargin {
    margin-right: 0px;
}
.pressImage img {
    margin: 0px;
    padding: 0px;
}
.pressImage a {
    text-decoration: none;
}

/* contact.css */
.contactLeft {
    float: left;
    width: 450px;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 18px;
}
.contactRight {
    float: right;
    width: 650px;
    font-size: 14px;
    letter-spacing: 2px;
}

.contactIcons {
    line-height: 40px;
    font-size: 20px;
    margin-top: 10px;
}
.contactIcons a {
    font-family: FontAwesome;
    color: #ffffff;
    background: #000000;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
}
.contactIcons a:hover {
    text-decoration: none;
}
.contactIcons .instagramIcon:before {
    content: "\f16d";
}
.contactIcons .facebookIcon:before {
    content: "\f09a";
}
.contactIcons .googleIcon:before {
    content: "\f0d5";
}
.contactIcons .linkedIcon:before {
    content: "\f0e1";
}
.contactIcons .twitterIcon:before {
    content: "\f099";
}

.contactForm {
    border: 1px solid #000000;
}
.contactForm input,
.contactForm textarea {
    border: 0px;
    margin: 0px;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 39px;
    font-size: 13px;
    text-align: left;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -html-border-radius: 0px;
    -webkit-border-radius: 0px;
    appearance: none;
    -moz-appearance: none;
    -html-appearance: none;
    -webkit-appearance: none;
}
.contactForm #contactName {
    width: 283px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    float: left;
}
.contactForm #contactPhone {
    width: 284px;
    border-bottom: 1px solid #000000;
    float: left;
}
.contactForm #contactEmail {
    width: 608px;
    border-bottom: 1px solid #000000;
    float: left;
}
.contactForm #contactMessage {
    width: 608px;
    height: 199px;
    border-bottom: 1px solid #000000;
    float: left;
}
.contactForm #contactSubmit {
    background: url('../images/elements/contact/button.gif') left center;
    line-height: 38px;
    width: 110px;
    cursor: pointer;
}

/* responsive.css */
@media only screen and (max-width: 780px) {
    /* MAIN */
    html {
        height: 100%;
        min-width: 100%;
        text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -html-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
    }
    .logo {
        width: 200px;
    }
    .topContainer {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 0px;
        text-align: center;
    }
    .menuContainer {
        width: 100%;
        height: auto;
        margin: 0px;
        float: none;
    }
    .pageContainer {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .menuIcon {
        display: block;
    }
    .footerContainer .footerContent {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
    }

    /* MENU */
    ul.mainNav {
        display: none
    }

    /* BLOCKS */
    .sliderBlock {
        width: 100%;
    }
    .sliderBlock .sliderImage {
        background-size: cover;
        width: 90%;
    }
    .categoryBlock {
        display: none;
    }
    
    /* PROJECT */
    .projectDiv {
        float: none;
        margin: 0px !important;
        margin-bottom: 5% !important;
        width: 100%;
        height: auto;
        display: inline-block;
    }
    .projectDiv .projectTitle {
        display: block;
        height: 40px;
        margin-top: -40px;
        line-height: 40px;
        font-size: 14px;
    }
    .projectDiv img {
        width: 100%;
    }

    /* PRESS */
    .pressImage {
        width: 24%;
        margin-right: 1%;
        margin-bototm: 1%;
        height: auto;
    }
    .pressImage img {
        width: 100%;
    }

    /* ABOUT */
    .aboutImage {
        width: 100%;
    }
    
    /* CONTACT */
    .contactLeft,
    .contactRight {
        float: none;
        width: 100%;
    }
    .contactRight {
        margin-top: 40px;
    }
    .contactForm input,
    .contactForm textarea {
        width: 90% !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .contactForm #contactSubmit {
        width: 110px !important;
    }
}

