* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    line-height: 1.7em;
    color: #7f8c8d;
    font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: #34495e;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

/*
 * -- FONTS --
 */
@font-face {
    font-family: "futura-pt";
    src: url("../fonts/futura-pt-normal-800.woff") format('woff');
}

@font-face {
    font-family: "PxGrotesk-Light";
    src: url("../fonts/PxGrotesk-Light.woff") format('woff');
}

@font-face {
    font-family: "PxGrotesk-Regular";
    src: url("../fonts/PxGrotesk-Regular.woff") format('woff');
}

@font-face {
    font-family: "Trampoline";
    src: url("../fonts/Trampoline.woff") format('woff');
}

@font-face {
    font-family: "KGArrows";
    src: url("../fonts/KGArrows.woff") format('woff');
}


.content-box {
    padding: 4em;
}


.project-item-box {
    padding: 4em;
    position: relative;
    /*padding: 0em;*/
}




/*
 * -- LAYOUT STYLES --
 * These are some useful classes which I will need
 */
.l-box {
    padding: 1em;
}

.l-box-lrg {
    padding: 2em;
    /*border-bottom: 1px solid rgba(0,0,0,0.1);*/
}

.is-center {
    text-align: center;
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
.pure-form label {
    margin: 1em 0 0;
    font-weight: bold;
    font-size: 100%;
}

.pure-form input[type] {
    border: 2px solid #ddd;
    box-shadow: none;
    font-size: 100%;
    width: 100%;
    margin-bottom: 1em;
}

/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */
.pure-button {
    background-color: #1f8dd6;
    color: white;
    padding: 0.5em 2em;
    border-radius: 5px;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}

/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */

.home-menu {
    padding: 0.5em;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

.home-menu.pure-menu-open {
    background: #2d3e50;
}

.pure-menu.pure-menu-open.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}

/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */

.splash-container {
/*    background: #1f8dd6;*/
    /*background: url('http://localhost:5000img/office_4.jpeg') no-repeat center center;*/
    z-index: -1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 88%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.splash {
    /* absolute center .splash within .splash-container */
    width: 90%;
    height: 50%;
    margin: auto;
    margin-left: 10%;
    margin-top: 10%;
    position: absolute;
    /*top: 100px; left: 0; bottom: 0; right: 0;*/
    text-align: center;
    text-transform: uppercase;
    z-index: 1000;
}

/* This is the main heading that appears on the blue section */
.splash-head {
    font-weight: bold;
    font-weight: 100;
    color: white;
    line-height: 0.85em;
    border: none;
    border-radius: 5px;
    text-align: left;
    padding: 0px;
    margin: 0px;
}

/* This is the subheading that appears on the blue section */
.splash-subhead {
    margin-top: 3%;
    margin-right: 50%;
    color: white;
    letter-spacing: 0.05em;
    opacity: 1.0; /*orig 0.8*/
    text-transform: none;
    font-family: 'HelveticaNeue-UltraLight', 'Helvetica Neue Ultra Light';
    font-size: 22px;
    text-align: left;
}

/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    top: 87%;
    width: 100%;
    min-height: 12%;
    z-index: 2;
    background: white;

}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
.content-head-ribbon {
    color: white;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    /*color: #1f8dd6;*/
    color: #ff5519;
    font-family: "PxGrotesk-Regular", sans-serif;
}

.content-subhead i {
    margin-right: 7px;
}

/* This is the class used for the dark-background areas. */
.ribbon {
    background: #2d3e50;
    color: #aaa;
}

/* This is the class used for the footer */
.footer {
    background: #252525;
    color: #FFFFFF;
    font-family: "PxGrotesk-Regular", "Arial", sans-serif;
    font-size: 15px;
    line-height: 1.4em;
}

/*
 * -- NAPTICS STYLES --
  */

/* IPHONE Portrait */
/* 320px - 479px */

@media (min-width: 20em) {
    /* = 320px in this setup (16px, 100%) */
    /* 320px - 479px */

	.content-box {
	    padding: 0em;
	}

    /*.project-item-box {*/
        /*padding: 0em;*/
    /*}*/

    #splash-head-set01 {
        font-size: 30px;
    }

    #splash-head-set02 {
        font-size: 36px;
    }

    #splash-head-set03 {
        font-size: 36px;
    }

    #splash-head-set04 {
        font-size: 36px;
    }

    #splash-head-set05 {
        font-size: 36px;
    }

    #splash-head-set06 {
        font-size: 36px;
    }

    #splash-set01 {
        margin-left: 30%;
    }

    #splash-set02 {
        margin-top: 40%;
        margin-left: 10%;
    }

    #splash-set03 {
        margin-top: 60%;
        margin-left: 10%;
    }

    #splash-set04 {
        margin-top: 40%;
        margin-left: 10%;
    }

    #splash-set05 {
        margin-top: 50%;
        margin-left: 10%;
    }

    #splash-set06 {
        margin-top: 50%;
    }







    /* LABELS */
    #label-fabian-set01 {
        top: 9999px;
        left: 9999px;
    }


    #label-jonas-set01 {
        top: 250px;
        left: 20%;
    }



    #label-fabian-set02 {
        top: 15%;
        left: 25%;
    }


    #label-jonas-set03 {
        top: 5%;
        left: 5%;
    }

    #label-fabian-set04 {
        top: 15%;
        left: 10%;
    }



    #label-jonas-set05 {
        top: 25%;
        left: 6%;
    }

    #label-fabian-set06 {
        top: 25%;
        left: 5%;
    }

    #label-jonas-set06 {
        top: 999%;
        left: 999%;
    }

    /* FOOTER */
    #footer_item_one {
        padding: 1em;
    }

    #footer_item_two {
        padding: 1em;
    }

    .footer_item_inner_one {
        margin: 0 auto;
        width: 80%;
    }

    .footer_item_inner_two {
        margin: 0 auto;
        width: 80%;
    }

}

/* IPHONE 3.5inch LANDSCAPE */
/* 480px - 567px */

@media (min-width: 30em) {
    /*  = 480px in this setup (16px, 100%) */
	.content-box {
	    padding: 4em;
	}
    /*.project-item-box {*/
        /*padding: 4em;*/
    /*}*/

    #splash-head-set01 {
        font-size: 36px;
    }

    #splash-head-set02 {
        font-size: 40px;
    }

    #splash-head-set03 {
    }

    #splash-head-set04 {
        font-size: 40px;
    }

    #splash-head-set05 {
        font-size: 40px;
    }

    #splash-head-set06 {
    }

    #splash-set02 {
        margin-top: 10%;
        margin-left: 10%;
    }

    #splash-set03 {
        margin-top: 10%;
        margin-left: 10%;
    }

    #splash-set04 {
        margin-top: 10%;
        margin-left: 10%;
    }

    #splash-set05 {
        margin-top: 10%;
        margin-left: 10%;
    }

    #splash-set06 {
        margin-top: 10%;
        margin-left: 10%;
    }

        /* LABELS */
    #label-fabian-set01 {
        top: 30px;
        left: 47%;
    }
    #label-jonas-set01 {
        top: 40px;
        left: 75px;
    }
    #label-fabian-set02 {
        top: 20%;
        left: 50%;
    }



    #label-jonas-set03 {
        top: 15%;
        left: 45%;
    }

    #label-fabian-set04 {
        top: 10%;
        left: 45%;
    }



    #label-jonas-set05 {
        top: 20%;
        left: 50%;
    }

    #label-fabian-set06 {
        top: 20%;
        left: 50%;
    }

    #label-jonas-set06 {
        top: 15%;
        left: 25%;
    }


    .footer_item_inner_one {
        margin: 0 auto;
        width: 50%;
    }

    .footer_item_inner_two {
        margin: 0 auto;
        width: 50%;

    }
}

/* TABLET LANDSCAPE */
/* 768px - 1023px */

@media (min-width: 48em) {

    #splash-head-set01 {
        font-size: 72px;
    }

    #splash-head-set02 {
        font-size: 82px;
    }

    #splash-head-set03 {
        font-size: 82px;
    }

    #splash-head-set04 {
        font-size: 82px;
    }

    #splash-head-set05 {
        font-size: 82px;
    }

    #splash-head-set06 {
        font-size: 82px;
    }

    #splash-set02 {
        margin-top: 30%;
    }

    #splash-set03 {
        margin-top: 50%;
    }

    #splash-set04 {
        margin-top: 40%;
    }

    #splash-set05 {
        margin-top: 40%;
    }

    #splash-set06 {
        margin-top: 40%;
    }

    /* LABELS */
    #label-fabian-set01 {
        top: 9999px;
        left: 9999%;
    }
    #label-jonas-set01 {
        top: 65%;
        left: 75px;
        font-size: 100px;
    }
    #label-fabian-set02 {
        top: 17%;
        left: 35%;
        font-size: 100px;
    }



    #label-jonas-set03 {
        top: 25%;
        left: 10%;
        font-size: 100px;
    }

    #label-fabian-set04 {
        top: 10%;
        left: 25%;
        font-size: 100px;
    }



    #label-jonas-set05 {
        top: 20%;
        left: 20%;
        font-size: 100px;
    }

    #label-fabian-set06 {
        top: 20%;
        left: 15%;
        font-size: 100px;
    }

    #label-jonas-set06 {
        top: 999%;
        left: 999%;
    }



    .footer_item_inner_one {
        margin: 0 auto;
        width: 55%;
    }

    .footer_item_inner_two {
        margin: 0 auto;
        width: 50%;

    }
}

/* -- TABLET (AND UP) MEDIA QUERIES -- */
/* 1024 - 2048px */

@media (min-width: 64em) {
    /* = 768px in this setup (16px, 100%) */
    .splash-head {
        /*font-size: 7vw;*/
    }

    #splash-head-set01 {
        font-size: 7vw;
    }

    #splash-head-set02 {
        font-size: 7vw;
    }

    #splash-head-set03 {
        font-size: 7vw;
    }

    #splash-head-set04 {
        font-size: 7vw;
    }

    #splash-head-set05 {
        font-size: 7vw;
    }

    #splash-head-set06 {
        font-size: 7vw;
    }

    #splash-set01 {
        margin-left: 20%;
    }

    #splash-set02 {
        margin-top: 10%;

    }

    #splash-set03 {
        margin-left: 5%;
        margin-top: 20%;
    }

    #splash-set04 {
        margin-top: 10%;
    }

    #splash-set05 {
        margin-top: 10%;
    }

    #splash-set06 {
        margin-top: 10%;
    }



    /* LABELS */
    #label-fabian-set01 {
        top: 15%;
        left: 50%;
        font-size: 100px;
    }
    #label-jonas-set01 {
        top: 10%;
        left: 10%;
        font-size: 100px;
    }
    #label-fabian-set02 {
        top: 15%;
        left: 55%;
    }


    #label-jonas-set03 {
        top: 25%;
        left: 45%;
    }

    #label-fabian-set04 {
        top: 15%;
        left: 55%;
    }


    #label-fabian-set05 {
        top: 200px;
        left: 800px;
    }

    #label-jonas-set05 {
        top: 25%;
        left: 50%;
    }

    #label-fabian-set06 {
        top: 25%;
        left: 50%;
    }

    #label-jonas-set06 {
        top: 15%;
        left: 30%;
        font-size: 100px;
    }













    body {
        font-size: 16px;
    }

    /* We want to give the content area some more padding */
    .content {
        padding: 1em;
    }

    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
    }

    .home-menu ul {
        float: right;
    }

    /* We increase the height of the splash-container */
    /*    .splash-container {
            height: 500px;
        }*/
    /* We decrease the width of the .splash, since we have more width
    to work with */
    .splash {
        width: 90%;
        height: 50%;
    }

    /* We remove the border-separator assigned to .l-box-lrg */
    .l-box-lrg {
        border: none;
    }

    #content_box_one {
        padding-right: 6em;
    }

    #content_box_two {
        padding-left: 6em;
    }

    #footer_item_one {
        padding: 4em;
    }

    #footer_item_two {
        padding: 4em;
    }

    .footer_item_inner_one {
        padding-left: 20%;
        margin: 0 auto;
        margin-right: 10px;
        width: 100%;
    }

    .footer_item_inner_two {
        padding-left: 50%;
        margin: 0 auto;
        margin-left: 10px;
        width: 100%;
    }
}

/* -- FIX FOR SET03 -- */
@media (min-width: 87.5em) {
    /* = 1400px in this setup (16px, 100%) */
    #splash-set03 {
        margin-left: 5%;
        margin-top: 10%;
    }
    #label-jonas-set03 {
        top: 25%;
        left: 45%;
    }

}

#splash-container-set01.splash-container {
    background: url('../img/main/main_01.jpg') no-repeat center left;
    background-size: cover;
}

#splash-container-set02.splash-container {
    background: url('../img/main/main_02.jpg') no-repeat center right;
    background-size: cover;
}

#splash-container-set03.splash-container {
    background: url('../img/main/main_03.jpg') no-repeat center right;
    background-size: cover;
}

#splash-container-set04.splash-container {
    background: url('../img/main/main_04.jpg') no-repeat center right;
    background-size: cover;
}

#splash-container-set05.splash-container {
    background: url('../img/main/main_05.jpg') no-repeat center right;
    background-size: cover;
}

#splash-container-set06.splash-container {
    background: url('../img/main/main_06.jpg') no-repeat center right;
    background-size: cover;
}



/* REFERENZEN */


.ref-iphone-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.event-table {
    font-size: 12px;
    border: none;
}

th {
    font-size: 12px !important;
}

td a {
    border: none !important;
    color: #6FBEF3;
    text-decoration: none;
}

.referenzen-title {
    text-transform: none;
}

#close-icon {
    color: #7f8c8d;
}

.close-icon-container {
    text-align: right;
    font-size: 1em;
}

.projekt-title {
    width: 100%;
    height: 50%;
    color: #ffffff;
    font-family: "PxGrotesk-Light", sans-serif !important;
    line-height: 50%;
    vertical-align: middle;
    padding-top: 20%;
}

.projekt-content {
    width: 100%;
    height: 50%;
    margin-top: 10px;
    font-family: "PxGrotesk-Light", sans-serif !important;
    color: #ffffff;
    /*font-size: 14px;*/
}

p.content-block a {
    text-decoration: none;
    color: #000000;
}

.content-refs {
    background-color: #f8f8f8;
}


#referenzen {
    /*display: none;*/
    background-color: #f8f8f8;
}



.projekt-title {
    font-size: 1em;
    color: #ffffff;
    text-transform:uppercase;
}



.project-content-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



.project-content-overlay {
    z-index: 20;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.project-content-overlay:hover {
    opacity: 0.85;
    background-color: #000000;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}








/* FOOTER & CONTACT */
.contact_item_title {
    color: #00ff00;
    line-height: 1.75em;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: normal;
}

.contact_item_address {
    font-size: 15px;
    line-height: 1.4em;
}

.content {
    padding: 3em;
}



/* FORM STUFF */
#form_box {
    padding: 5em;
    color: #00ff00;
}

#form_box_label {
    color: #00ff00;
}

#naptics-menu-heading {
    /*text-align: center;*/
    color: #00ff00;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    font-size: 0px;
    /*padding: 100px;*/
}

#naptics-menu {
    /*display: none;*/
}

.splash {

}

#block_one {
    color: #ff5519;
    /*color: #a5fafa;*/
    /*color: #e60c29;*/
    /*color: #f5e664;*/
    /*color: #ed0082;*/
    /*color: #009cf3;*/

    /*font-size: 10vw;*/
    /*margin-bottom: 7%;*/
    line-height: 2em;
}

#block_two {
    /*color: #a5fafa;*/
}

#block_three {
    /*color: #a5fafa;*/
}

#block_four {
    /*color: #a5fafa;*/
}

.splash-container {
    font-family: "futura-pt", sans-serif;
}

.overlay {
    width: 100%;
    height: 100%;
    background-image: url('../img/overlay-pattern.png');
    opacity: 0.5;
}

.content-block {
    /*font-family: "PxGrotesk-Regular", sans-serif;*/
    font-family: "PxGrotesk-Light", sans-serif;
    font-size: 14px;
    line-height: 1.75em;
    /*color: #00ff00;*/
    /*font-family: "PxGrotesk-Regular", "Arial", sans-serif;*/
}

#arrow {
    font-family: KGArrows;
}

.label {
    color: #ffffff;
    font-family: Trampoline;
    font-size: 60px;
    /*z-index: 100;*/
    position: absolute;
}



