body{
    background-color: #333;
    font-family: 'Lato', "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif;
    margin: 0;
    color: rgba(0,0,0,0.87);

    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

nav#global{
    position: fixed;
    z-index: 40;
    top: 0;
    width: 100%;
    height: 82px;
    color: #FFF;
    font-size: 16px;
    font-weight: normal;

    border-bottom: 1px solid rgba(255,255,255,0);

    -webkit-transition: background 0.6s, height 0.6s;
    -moz-transition: background 0.6s, height 0.6s;
    -ms-transition: background 0.6s, height 0.6s;
    -o-transition: background 0.6s, height 0.6s;
    transition: background 0.6s, height 0.6s;

    will-change: height, background;
}

nav#global div.content, #service div.content{
    margin: auto;
    max-width: 980px;
    min-width: 860px;
}

nav#global div.content img{
    height: 24px;
}

nav#global.scroll{
    border-bottom: 1px solid #e8e8e8;
    height: 43px;
    background: #FFF;
}



nav#global div.content a.navigationItem{
    text-decoration: none !important;
    color: #FFF;
    padding: 30px 12px;
    position: relative;
    line-height: 22px;
    display: block;
    float: left;

    cursor: pointer;

    -webkit-transition: padding 0.6s, color 0.6s;
    -moz-transition: padding 0.6s, color 0.6s;
    -ms-transition: padding 0.6s, color 0.6s;
    -o-transition: padding 0.6s, color 0.6s;
    transition: padding 0.6s, color 0.6s;
}

nav#global.active {
    background: #FFF;
    padding-bottom: 6px;

    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

nav#global.active div.content div.navigationLinks a.navigationItem {
    display: block !important;
    float: none;
    color: #000;
    padding: 15px !important;

    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

nav#global.scroll.active {
    height: 82px;
    border-bottom: 1px solid #FFF;
}

nav#global.active div.content div.navigationLinks {
    float: none;
    background-color: #FFF;
    position: fixed;
    margin-top: 5px;
    left: 0;
    width: 100%;
    top: 84px;
    height: calc(100% - 89px);
}

div.navigationLinks{
    float: left;
}

nav#global.scroll div.content a.navigationItem{
    color: #333;
    padding: 10px 12px 11px 12px;
}

nav#global.scroll a.navigationItem:first-child {
    padding: 10px 12px 5px 12px !important;
}
nav#global.scroll div.navigationLinks a.navigationItem:first-child {
    padding: 10px 12px 11px 12px !important;
}

nav#global.scroll.active a.navigationItem:first-child {
    padding: 30px 12px;
}

div#menuIcon {
    width: 84px;
    height: 84px;
    background: transparent url('../image/menu_a.png') no-repeat center;
    background-size: 32px;

    display: none;

    position: absolute;
    left: calc(50% - 42px);

    background-position: 50% 24px;

    -webkit-transition: background-position 0.6s;
    -moz-transition: background-position 0.6s;
    -ms-transition: background-position 0.6s;
    -o-transition: background-position 0.6s;
    transition: background-position 0.6s;
}

a#contactIcon {
    float: right;
    position: absolute;

    width: 84px;
    background: transparent url('../image/contact.png') no-repeat center;
    background-position: 50% 24px;
    background-size: 32px;

    display: none;

    right: -15px;
    top: 0;

    -webkit-transition: background-position 0.6s, bottom 0.6s;
    -moz-transition: background-position 0.6s, bottom 0.6s;
    -ms-transition: background-position 0.6s, bottom 0.6s;
    -o-transition: background-position 0.6s, bottom 0.6s;
    transition: background-position 0.6s, bottom 0.6s;
}

nav#global div.content div#menuIcon img, a#contactIcon img{
    opacity: 0;
    width: 32px !important;
    height: 32px !important;
    margin-top: 24px;
    -webkit-transition: opacity 0.6s, margin-top 0.6s;
    -moz-transition: opacity 0.6s, margin-top 0.6s;
    -ms-transition: opacity 0.6s, margin-top 0.6s;
    -o-transition: opacity 0.6s, margin-top 0.6s;
    transition: opacity 0.6s, margin-top 0.6s;
}

nav#global.scroll div.content div#menuIcon img,
nav#global.scroll div.content a#contactIcon img{
    margin-top: 5px;
    opacity: 1;
}

nav#global.active div.content div#menuIcon img,
nav#global.active div.content a#contactIcon img{
    opacity: 1;

}

nav#global.scroll div.content div#menuIcon{
    background-position: 50% 5px;
}

nav#global.scroll div.content a#contactIcon {
    top: 0px;
    background-position: 50% 5px;
}

a.button:hover, input.button:hover {
    background-color: #2E7D32;
}

a.button:active, input.button:active {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.4);
}

a.button, input.button{
    background-color: #4CAF50;
    color: #FFF;
    position: relative;
    padding: 5px 10px;
    display: inline-block;
    min-width: 150px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    outline: 0;
    margin:  0;
    border-radius: 3px;
    box-sizing: border-box;
    text-align: center;
    line-height: 36px;
    min-height: 36px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 0;

    text-decoration: none;

    transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);
}

input, textarea{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

a.button:link, a.button:visited, a.button:hover, a.button:active{
    color: #FFF !important;
    text-decoration: none !important;
}

a:link, a:visited, a:hover, a:active{
    color: #4CAF50;
}

#slider{
    position: fixed;
    z-index: 5;
    display: inline-block;
    height: 100%;
    max-height: 1080px;
    background-position: 50% 34%;
    background-size: 1920px;
    width: 100%;
    overflow: hidden;
}

#slider img{
    max-width: 100%;
    margin: auto;
}

#service{
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    height: 166px;
    background: rgba(0,0,0,0.8);
    z-index: 7;
}

#service a.serviceItem{
    text-decoration: none !important;
    color: #FFF;
    display: block;
    padding-top: 80px;
    margin-top: 34px;
    min-width: 72px;
    text-align: center;
    float: left;
    margin-right: 15px;
    background: transparent no-repeat top center;
    background-size: 64px;
    background-position-y: 10px;

    cursor: pointer;

    -webkit-transition: background-size 0.4s, background-position-y 0.4s;
    -moz-transition: background-size 0.4s, background-position-y 0.4s;
    -ms-transition: background-size 0.4s, background-position-y 0.4s;
    -o-transition: background-size 0.4s, background-position-y 0.4s;
    transition: background-size 0.4s, background-position-y 0.4s;
}

#service a.serviceItem:hover{
    background-size: 72px;
    background-position-y: 4px;
}

div.contactOverlay{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 7;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e91e63+0,673ab7+100&0.33+0,0.33+100 */
    background: -moz-linear-gradient(-45deg, rgba(233,30,99,0.33) 0%, rgba(103,58,183,0.33) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(233,30,99,0.33) 0%,rgba(103,58,183,0.33) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(233,30,99,0.33) 0%,rgba(103,58,183,0.33) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54e91e63', endColorstr='#54673ab7',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#projectPlaceholder{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: calc(200% + 166px);
}

#projects{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
    top: 0;
}

div.projectBig{
    background: url('../image/kekse.jpg') no-repeat center;
    float: left;
    width: calc(60% - 4px);
    height: 100%;
    background-size: 150%;
    border-right: 4px solid #FFF;

    -webkit-transition: background-size 0.6s;
    -moz-transition: background-size 0.6s;
    -ms-transition: background-size 0.6s;
    -o-transition: background-size 0.6s;
    transition: background-size 0.6s;

    position: relative;
}

div.projectBig:hover{
    background-size: 175%;
}

div.projectBigOverlay{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5722+0,ffc107+100&0.25+0,0.25+100 */
    background: -moz-linear-gradient(-45deg, rgba(255,87,34,0.25) 0%, rgba(255,193,7,0.25) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255,87,34,0.25) 0%,rgba(255,193,7,0.25) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255,87,34,0.25) 0%,rgba(255,193,7,0.25) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40ff5722', endColorstr='#40ffc107',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    position: absolute;
    width: 100%;
    height: 100%;


}

div.projectEastsiteOverlay{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f51b5+0,f44336+100&0.25+0,0.25+100 */
    background: -moz-linear-gradient(-45deg, rgba(63,81,181,0.25) 0%, rgba(244,67,54,0.25) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(63,81,181,0.25) 0%,rgba(244,67,54,0.25) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(63,81,181,0.25) 0%,rgba(244,67,54,0.25) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#403f51b5', endColorstr='#40f44336',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    position: absolute;
    width: 100%;
    height: 100%;
}

div.projectVergessenOverlay{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f51b5+0,f44336+100&0.25+0,0.25+100 */
    background: -moz-linear-gradient(-45deg, rgba(63,81,181,0.25) 0%, rgba(244,67,54,0.25) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(63,81,181,0.25) 0%,rgba(244,67,54,0.25) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(63,81,181,0.25) 0%,rgba(244,67,54,0.25) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#403f51b5', endColorstr='#40f44336',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    position: absolute;
    width: 100%;
    height: 100%;
}



div.projectSideContainer{
    float: left;
    width: 40%;
    height: 100%;
}

div.projectSide{
    background: url('../image/vergessen.jpg') no-repeat 25% 15%;
    background-size: 125%;
    height: calc(50% - 2px);
    border-top: 2px solid #FFF;
    position: relative;

    -webkit-transition: background-size 0.6s;
    -moz-transition: background-size 0.6s;
    -ms-transition: background-size 0.6s;
    -o-transition: background-size 0.6s;
    transition: background-size 0.6s;
}

div.projectSide:first-child{
    height: calc(50% - 2px);
    border-top: none !important;
    border-bottom: 2px solid #FFF;
    background: url('../image/eastsite.jpg') no-repeat center;
    background-size: 125%;

}

div.projectSide:hover{
    background-size: 150% !important;
}

h1{
    font-size: 48px;
    color: #FFF;
    font-weight: normal;
    margin: 0;
}

*.textBottom{
    position: absolute;
    bottom: 10px;
    left: 10px;
}


hr{
    outline: none;
    border: 1px solid rgb(238, 238, 238);
}



.fab{
    border-radius: 50%;
    margin:0;
    padding: 20px;
}

.material{
    position:relative;
    color:white;
    margin: 20px auto;
    height:400px;
    width:500px;
    background:#f45673;

}

.ripple{
    overflow:hidden;
}

.ripple-effect{
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: white;


    animation: ripple-animation 2.1s;
}

.clear{
    clear: both;
}

.center{
    text-align: center !important;
}

.light{
    color: rgba(0,0,0,0.5);
}

cite{
    display: block;
    padding-left: 15px;
}

abbr[title], acronym[title] {
    border-bottom: 1px dotted;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif;
}

#relativeLayout{
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

@keyframes ripple-animation {
    from {
        transform: scale(1);
        opacity: 0.2;
    }
    to {
        transform: scale(100);
        opacity: 0;
    }
}

@media screen and (max-width: 640px) {
    nav#global div.content div#menuIcon, nav#global div.content a#contactIcon{
        display: inline-block !important;
    }

    nav#global div.content{
        text-align: center;
        min-width: 154px;
    }

    nav#global div.content div.navigationLinks a.navigationItem{
        display: none !important;
    }
}


@media screen and (min-height: 1080px){
    #relativeLayout{
        top: 1080px !important;
    }
}

@media screen and (min-width: 1920px){
    #relativeLayout{
        max-width: 1920px !important;
    }

    #slider{
        max-width: 1920px !important;
    }

    nav#global div.content{
        width: 980px;
        margin-left: 470px;
    }
}#contact {
    z-index: 600;
    right: 0;
    position: fixed;
    top: calc(50% - 45px);

    background-color: #4CAF50;
    color: #FFF;
    padding: 5px 0;
    min-width: 100px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    outline: 0;
    margin: 0;
    border-radius: 3px 0 0 3px;
    box-sizing: border-box;
    text-align: center;
    min-height: 36px;
    font-weight: 400;

    font-size: 14px;
    cursor: pointer;

    transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);
}

#contact a span{
    display: block;
}

#contact img{
    display: block;
    height: 48px;
    margin: auto;
}

#contact:hover {
    background-color: #2E7D32;
}

#contact a{
    color: #FFF !important;
}

#contact:active {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.4);
}

#contactSliderWrapper{
    position: fixed;
    top: calc(50% - 90px);
    right: 0;
    width: 0;
    height: 180px;
    z-index: 650;

    border-radius: 3px 0 0 3px;

    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;

    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

    overflow: hidden;
}


#contactSliderWrapper.show{
    width: 500px;
    box-shadow: 0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12);
}

#contactSliderWrapper.show #contactSlider{
    transform: translateX(0);
}

#contactSlider{
    position: absolute;
    background-color: #FFF;
    border-left: 15px solid #4CAF50;
    padding: 15px;
    width: 465px;
    height: calc(100% - 30px);
    right: 0;

    border-radius: 3px 0 0 3px;

    -webkit-transform: translate3d(0,0,0) translateX(100%);
    -moz-transform: translate3d(0,0,0) translateX(100%);
    -ms-transform: translate3d(0,0,0) translateX(100%);
    -o-transform: translate3d(0,0,0) translateX(100%);
    transform: translate3d(0,0,0) translateX(100%);


    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -ms-transition: -ms-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
}

#contactSlider h4{
    font-weight: 400;
    color: #000;
    font-size: 19px;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

#contactSlider h4 b{
    color: #4CAF50;
}

.contactItem:first-child{
    width: calc(50% - 11px);
    border-right: 1px solid #ddd;
}

.contactItem {
    display: block;
    text-decoration: none !important;
    color: #000 !important;
    float: left;
    width: calc(50% - 10px);
    margin: 5px;
    font-size: 12px;
    line-height: 17px;
}

.contactItem h3{
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 6px;
}

.contactItem img {
    width: 49px;
    margin: auto;
    display: block;
}

input.contactInput, textarea.contactInput {
    width: calc(100% - 32px);
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    border: 1px solid rgb(238, 238, 238);
    margin-bottom: 23px;
    outline: none !important;
}

textarea.contactInput {
    resize: none;
    min-height: 138px;
}

#contactSliderWrapperClose {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 10;
    width: 24px;
}

@media screen and (max-width: 509px) {
    div.contactItem img {
        width: 32px;
    }
    #contactSlider h4{
        font-size: 14px;
    }

    div.contactItem h3{
        font-size: 14px;
    }

    #contactSliderWrapper.show{
        width: 100%;
    }

    #contactSlider{
        width: calc(100% - 35px);
    }
}

@media screen and (max-width: 640px) {


    #contact{
        display: none;
    }
}
#heroHeader{
    position: absolute;
    font-size: 2vw;
    bottom: 0px;
    padding: 0 0 116px 0;
    width: 960px;
    max-width: 960px;
    left: calc(50% - 480px);
    z-index: 7;
    color: #FFF;
    text-align: center;

    will-change: bottom;
}

#heroHeader h1{
    color: #4CAF50;
    margin: 0 0 5px 0;
    font-size: 5vw;
    line-height: 57px;
    font-weight: bold;
}



div.heroOverlday{
    background: -moz-linear-gradient(-45deg, rgba(27,94,32,1) 0%, rgba(136,14,79,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(27,94,32,1) 0%,rgba(136,14,79,1) 100%);
    background: linear-gradient(135deg, rgba(27,94,32,1) 0%,rgba(136,14,79,1) 100%);
    opacity: 0.7;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#801b5e20', endColorstr='#80880e4f',GradientType=1 );
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 1080px;
}

#heroHeader a{
    margin: 17px auto 0 auto;

}

#heroHeader h2{
    margin: 0;
    font-size: 2vw;
    font-weight: 400;
    font-family: 'Lato', "Myriad Set Pro","Helvetica Neue","Helvetica","Arial",sans-serif;
}

@media screen and (min-width: 1601px) {
    #heroHeader h1{
        font-size: 4vw;
    }
}

@media screen and (min-width: 1921px) {
    #heroHeader h1{
        font-size: 80px;
    }

    #heroHeader h2{
        font-size: 36px !important;

    }
}

@media screen and (max-width: 959px) {
    #heroHeader{
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    #heroHeader h2{
        font-size: 4vw;
    }
}

@media screen and (max-width: 670px) {
    #heroHeader h1{
        font-size: 28px;
        line-height: 29px;
    }

    #heroHeader{
        font-size: 18px;
    }
}

@media screen and (max-width: 360px) {
    #heroHeader h2{
        font-size: 6vw;
    }
}

@media screen and (max-height: 420px) {
    #heroHeader{
        padding: 0 0 40px 0;
    }
}

@media screen and (max-height: 320px) {
    #heroHeader{
        padding: 0 0 10px 0;
    }
}

@media screen and (min-height: 1080px) {
    #heroHeader{
        bottom: 0;
    }
}


#services{
    position: relative;
    height: auto;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
}
div.calloutWrapper{
    display: block;
    width: 100%;
    height: 460px;
}

div.calloutWrapper:nth-child(even) div.callout{
    float: right !important;
}

div.callout{
    background: #FFF no-repeat center;

    background-size: cover;
    width: calc(50% - 150px);
    float: left;
    padding: 50px 75px;
    height: 360px;
}

div.callout h2{
    font-size: 30px;
    font-weight: 400;
    line-height: 1.9;
    margin: 0;
}

div.callout p{
    line-height: 2;
    margin: 15px 0 20px 0;
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width: 959px) {
    div.calloutWrapper{
        height: auto;
    }

    div.callout{
        height: auto;
        min-height: 260px;
        padding: 25px 75px;
        width: calc(100% - 150px);
    }
}

@media screen and (max-width: 850px) {
    div.calloutWrapper{
        height: auto;
    }

    div.callout:nth-child(odd){
        min-height: 260px;
    }

    div.callout{
        height: auto;
        padding: 10px 10px;
        width: calc(100% - 20px);
    }

    div.callout h2{
        font-size: 18px;
    }

    div.callout p{
        font-size: 14px;
    }
}
#showcaseContent{
    background: transparent url("../image/showcaseHero2.png") no-repeat center fixed;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 8;
    left: 0;
    top: 0;
}

#factContainer{
    width: 960px;
    position: absolute;
    left: calc(50% - 480px);
    bottom: 0;
    margin-bottom: 150px;
    text-align: center;
}

#factContainer h3{
    font-weight: 400;
    margin: 0 0 0 0;
    font-size: 45px;
}

#factContainer header{
    color: #FFF;
    padding: 0 10px;
    line-height: 1.5;
    font-size: 32px;
}

#factContainer header h2{
    text-shadow: 1px 1px 1px #000;
    margin: 0 0 32px;
}

#factContainer header img{
    margin-top: 32px;
    width: 48px;
}

div#factWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div.fact{
    border-radius: 3px;
    color: #FFF;
    text-shadow: 1px 1px 1px #000;
    width: calc(33.33% - 30px);
    font-size: 18px;
    float: left;
}

@media screen and (max-width: 959px) {
    #showcaseContent{
        position: relative;
    }

    #factContainer h2{
        font-size: 36px;
    }

    #factContainer{
        width: 100%;
        left: 0;
        top: 0;
        height: 831px;
        margin-bottom: 0;
    }

    div.fact{
        width: 33%;
    }
}

@media screen and (max-width: 850px) {
    #showcaseContent {
        top: 0;
    }
}

@media screen and (max-width: 670px) {
    #showcaseContent {
        height: auto;
    }


    #factContainer {
        width: 100%;
        top: 0;
        left: 0;
        height: auto;
        position: relative;
        margin-bottom: 0;
    }

    div.fact{
        width: calc(50% - 30px);
        padding: 0;
        margin-bottom: 35px;
    }


    #factContainer header{
        font-size: 18px;
    }
}

@media screen and (min-height: 1080px){
    #showcaseContent{
        max-height: 1080px !important;
        background: transparent url('../image/showcaseHero2.png') center;
    }
}

@media screen and (min-width: 1920px){
    #showcase{
        max-width: 1920px !important;
    }
}#collaboration{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 11;
}

#collaborationOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(139,195,74);
    background: -moz-linear-gradient(-45deg, rgba(139,195,74,1) 0%, #009688 100%);
    background: -webkit-linear-gradient(-45deg, rgba(139,195,74,1) 0%,#009688 100%);
    background: linear-gradient(135deg, rgba(139,195,74,1) 0%,#009688 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8bc34a', endColorstr='#009688',GradientType=1 );
    opacity: 0.7;
}

#collaborationContent h1{
    font-size: 86px;
}

#collaborationContent{
    text-align: center;
    color: #FFF;
    position: absolute;
    padding: 0 30px 150px 30px;
    bottom: 0;
    width: calc(100% - 60px);
    font-size: 30px;
    line-height: 1.2;
}

#collaborationContent a{
    margin-top: 15px;
    text-shadow: none;
}


@media screen and (max-width: 380px) {
    #collaborationContent h1{
        font-size: 18px !important;
        line-height: 29px;
    }

    #collaborationContent{
        font-size: 14px !important;
    }
}



@media screen and (max-width: 760px) {
    #collaborationContent h1{
        font-size: 28px;
        line-height: 29px;
    }

    #collaborationContent{
        font-size: 18px;
    }
}



@media screen and (min-height: 1080px){
    #collaboration{
        max-height: 1080px !important;
    }
}
footer{
    background: #263238;
    color: #FFF;
    position: relative;
    width: 100%;
    height: 315px;
    margin-bottom: 0;
    font-size: 14px;
    z-index: 11;
    top: 0;

    text-align: justify;
    word-spacing: 0.2em;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

#footerWrapper{
    background: #263238;
}

footer.inline {
    position: absolute;
    bottom: 0;
    left: 0;
    top: unset;
}

footer div.footerContent{

    float: left;
    width: calc(33.33% - 30px);
    margin: 15px;
    display: block;
}

footer div.footerContent.fullWidth{
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

footer div.footerContent:nth-child(2) {
    width: calc(66.66% - 30px);
    height: 285px;
}

footer div.footerContent h3{
    font-size: 24px;
    margin: 0 0 3px;
}

@media screen and (max-width: 670px) {
    footer div.footerContent{
        width: calc(100% - 30px) !important;
    }

}

@media screen and (min-height: 1080px){

    footer.inline{
        top: unset !important;
    }
}*.fadeLeft{
    -webkit-animation-name: fadeLeft; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    -moz-animation-name: fadeLeft; /* Chrome, Safari, Opera */
    -moz-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    animation-name: fadeLeft;
    animation-duration: 1.5s;

    will-change: transform;
    -moz-will-change: -moz-transform;
    -webkit-will-change: -webkit-transform;
}

@-webkit-keyframes fadeLeft {
    from {-webkit-transform: translateX(-50px); opacity: 0.2}
    to {-webkit-transform: translateX(0px); opacity: 1}
}

@-moz-keyframes fadeLeft {
    from {-moz-transform: translateX(-50px); opacity: 0.2}
    to {-moz-transform: translateX(0px); opacity: 1}
}

/* Standard syntax */
@keyframes fadeLeft {
    from {transform: translateX(-50px); opacity: 0.2}
    to {transform: translateX(0px); opacity: 1}
}



*.fadeRight{
    -webkit-animation-name: fadeRight; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    -moz-animation-name: fadeRight; /* Chrome, Safari, Opera */
    -moz-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    animation-name: fadeRight;
    animation-duration: 1.5s;

    will-change: transform;
    -moz-will-change: -moz-transform;
    -webkit-will-change: -webkit-transform;
}

@-webkit-keyframes fadeRight {
    from {-webkit-transform: translateX(50px); opacity: 0.2}
    to {-webkit-transform: translateX(0px); opacity: 1}
}

@-moz-keyframes fadeRight {
    from {-moz-transform: translateX(50px); opacity: 0.2}
    to {-moz-transform: translateX(0px); opacity: 1}
}

/* Standard syntax */
@keyframes fadeRight {
    from {transform: translateX(50px); opacity: 0.2}
    to {transform: translateX(0px); opacity: 1}
}



*.fadeBottom{
    -webkit-animation-name: fadeBottom; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    -moz-animation-name: fadeBottom; /* Chrome, Safari, Opera */
    -moz-animation-duration: 1.5s; /* Chrome, Safari, Opera */
    animation-name: fadeBottom;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeBottom {
    from {-webkit-transform: translateY(50px); opacity: 0.2}
    to {-webkit-transform: translateY(0); opacity: 1}
}

@-moz-keyframes fadeBottom {
    from {-moz-transform: translateY(50px); opacity: 0.2}
    to {-moz-transform: translateY(0); opacity: 1}
}

/* Standard syntax */
@keyframes fadeBottom {
    from {transform: translateY(50px); opacity: 0.2}
    to {transform: translateY(0); opacity: 1}
}
.singlePageHeader {
    width: 100%;
    max-width: 1920px;
    background-position: center;
    height: 50%;
    position: fixed;
}

.singlePageHeader div{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.67);
}
.singlePageHeader h1{
    position: absolute;
    text-transform: uppercase;
    font-weight: 800;
    top: calc(50% - 24px);
    text-align: center;
    width: 100%;
}

a.breadcrumb-item {
    padding: 0 15px;
    text-decoration: none;
    color: #FFF;
}

span.breadcrumb {
    display: block;
    margin-top: -29px;
    font-size: 24px;
    opacity: 0.86;
}

.singlePageContainer{
    background-color: #FFF;
    width: calc(100% - 90px);
    max-width: 1830px;
    padding: 70px 45px 375px 45px;
    top: 50%;
    left: 0;
    position: absolute;

    text-align: justify;
    word-spacing: 0.2em;
    letter-spacing: 0.03em;
    line-height: 1.5;
    overflow: hidden;
}

.singlePageContainer p:first-child{
    margin-top: 0 !important;
}

.singlePageContainer h3{
    margin: 0 0 0px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: left;
    font-weight: 800;
}

.singlePageContainer figure{
    padding: 0;
    margin: 0;
}

.singlePageContainer figcaption{
    text-align: center;
    color: rgba(0,0,0,.56);
}

.singlePageContentSide div:first-of-type{
    margin-top: -35px !important;
}

.singlePageContainer h4{
    margin: 0 0 0px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: left;
    font-weight: 800;
}

.singlePageContentMain a{
    text-decoration: none !important;
}

.singlePageContentSide div {
    border: 0px solid #CCC;
    border-width: 0 0 1px;
}

.singlePageContentSide div:first-of-type {
    border-width: 1px 0;
}

.singlePageContentSide a {
    display: block;
    padding: 5px 0;
    text-align: left;
    margin-bottom: 15px;
}

.singlePageContainer span{
    display: block;
    padding: 5px 0;
}

.singlePageContainer li{
    padding-bottom: 12px;
}

div.singlePageContainer div.singlePageContentMain h3:first-of-type, div.singlePageContainer .singlePageContentSide h3:first-of-type {
    line-height: 1;
    margin-bottom: 11px;
}

.singlePageContentMain{
    width: calc(44% - 30px);
    padding: 0 15px;

    float: left;
}


.singlePageContentSide{
    width: calc(50% - 30px);
    padding: 0 15px;
    float: left;
}

.singlePageContentSide img{
    width: 100%;
    display: block;
    margin-bottom: 50px;
}

.inline-row-wrapper{
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
}

.inline-row{
    color: #000 !important;
    float: left;
    width: calc(25% - 20px);
    padding: 10px;
    margin-bottom: 45px;
    overflow: hidden;
    text-align: justify;
    text-decoration: none;
    cursor: pointer;
}

.inline-row:hover .inline-row-image, .singlePageContainer .inline-row:hover h4.inline-row-title{
    opacity: 0.86 !important;
}

.page-image{
    max-width: 100%;
}



.inline-row-image{
    width: 75px;
    margin: auto;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.inline-row-image.full{
    width: 100%;
}

.singlePageContainer h4.inline-row-title{
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.7;
    opacity: 0.5 !important;
    margin: 0 0 15px !important;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

@media screen and (max-width: 959px) {
    .singlePageContainer {
        width: calc(100% - 20px);
        padding: 20px 10px 375px 10px;
    }

    .singlePageContentMain{
        margin-bottom: 25px;
    }

    .inline-row{
        width: calc(50% - 20px);
    }

    .singlePageContentMain, .singlePageContentSide{
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 550px) {
    .singlePageContainer p,  .singlePageContainer cite{
        margin: 0 0 10px;
    }


    .inline-row{
        width: calc(100% - 20px);
    }

    .singlePageContainer h3 {
        font-size: 16px;
        margin: 0 0 0px;
    }

    .singlePageHeader h1 {
        font-size: 32px;
    }

    span.breadcrumb {
        display: block;
        margin-top: -19px;
        font-size: 16px;
        opacity: 0.86;
    }
}

