@font-face {
    font-family: 'GillSansBold';
    src: url('../fonts/GillSansStd-Bold.otf') format('opentype'),
        url('../fonts/GillSansStd-Bold.woff') format('woff');
}

@font-face {
    font-family: 'GillSansSTD';
    src: url('../fonts/GillSansStd.otf') format("opentype"),
        url('../fonts/GillSansStd.woff') format("woff"),
        url('../fonts/GillSansStd.ttf') format("ttf");
}

body {
    font-size: 18px;
    font-family: "GillSansSTD";
}

h1 {
    font-family: "GillSansBold";
    font-weight: bold;
    margin: 20px 0;
}

h2 {
    margin: 15px 0;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

p {
    text-align-last: center;
    margin-bottom: 15px;
}

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

.parallax {
    /* Set a specific height */
    height: 400px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-layer {
    /*TODO:*/
}

#home {
}

.parallax-home {
    background: url(".././img/home.jpg");
}

.parallax-solutions {
    background: url(".././img/solutions.jpg");
}

.parallax-people {
    background: url(".././img/people.jpg");
}

.parallax-contact {
    background: url(".././img/contact.jpg");
}

.people-bio-container {
    display: flex;
}

.people-img {
    background: no-repeat top;
    background-size: contain;
    display: inline-block;
    width: 20%;
}

.people-img img {
    width: 100%;
}

.people-info {
    width: 80%;
    padding-left: 15px;
}

/*
.people-img-greg {
    background-image: url(".././img/people/Greg.jpg");
}

.people-img-chris {
    background-image: url(".././img/people/Chris.jpg");
}

.people-img-arjan {
    background-image: url(".././img/people/Arjan.jpg");
}

.people-img-david {
    background-image: url(".././img/people/David.jpg");
}

.people-img-markus {
    background-image: url(".././img/people/Markus.jpg");
}*/

.people-container-items {
    width: 100%;
    overflow: auto;
    display: inline-block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    width: 100%;
    padding: 5px;
    z-index: 1;
    display: flex;
}

.header-shadow {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2);
}

.header-content {
    height: 119px;
    display: inline-block;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-left: 17px;
}

.header-section-content {
    max-width: 944px !important;
    margin: auto;
    display: flex;
    width: 942px;
}

.ss-navigation {
    align-self: baseline;
    margin: 0;
    padding: 0;
}

.ss-navigation > li {
    position: relative;
    display: inline-block;
}

.ss-navigation > li:first-child > a {
    margin: 5px 10px 5px 0px;
}

.ss-navigation > li > a {
    position: relative;
    display: block;
    margin: 5px 10px;
    text-decoration: none;
    color: #404040;
}

.site-logo img {
    width: auto;
    height: 100px;
    margin-top: 10px;
}

.site-name {
    background: url("../img/name.svg") center left no-repeat;
    background-size: contain;
    height: 75px;
    width: 360px;
}

.nav-items {
    /*TODO:*/
}

.nav-container {
    float: left;
}

.ss-navigation li a.active {
    border-bottom: solid 3px #83C341;
    text-decoration: none;
    /*line-height: 18px;*/
    padding-bottom: 1px;
}

/* Sections */
.section-title {
    text-align: center;
}

.section-content {
    width: 720px;
    overflow: hidden;
    margin: auto auto 15px;
    padding: 10px;
    text-align: justify;
}

.section-container {
    /*TODO:*/
}

/* Animation */

.ss-animation-container {
    width: 100%;
    color: white;
    text-align: center;
}

.ss-animation {
}

@keyframes ufo-up-down {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-25px)
    }
    75% {
        transform: translateY(25px)
    }
    100% {
        transform: translateY(0)
    }
}

.ufo-big {
    animation: ufo-up-down 5s linear infinite;
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform-origin: 85% 47%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform-origin: 85% 47%;
    }
}

@-moz-keyframes spin1 {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin1 {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes spin1 {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
    }
}

.windows-small {
    display: block;
    -webkit-animation: spin1 2s infinite linear;
    -moz-animation: spin1 2s infinite linear;
    -o-animation: spin1 2s infinite linear;
    -ms-animation: spin1 2s infinite linear;
    animation: spin1 2s infinite linear;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    width: 256px;
    height: 256px;
}

.parallax__layer--base {
    -webkit-transform: translateZ(-1px);
    transform: translateZ(-1px);
}

.parallax__layer--back {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.col-6 {
    width: 50%;
}

.left {
    padding-right: 15px;
}

.right {
    padding-left: 15px;
}

/* Contact */

.contact-info {
    text-align: center;
    width: 30%;
}

.contact-map {
    width: 70%;
    height: 250px;
    z-index: 0;
}

.contact-span {
    display: block;
}

.google-map {
    height: 100%;
    padding-bottom: 20px;
}

.contact-h2 {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0px;
}

.contact-wrapper {
    display: flex;
}

.real-address {
    margin: 10px 0px;
}

.web-address {
    margin-top: 50px;
}

.street-number {
    color: orange;
}

footer {
    display: flex;
    background-color: #E0E0E0;
    line-height: 50px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
}

.col-6-footer {
    height: 50px;
    width: 50%;
    float: left;
}

.footer-left {
    padding-left: 15px;
    float: left;
    text-align: left;
}

.footer-right {
    padding-right: 15px;
    float: right;
    text-align: right;
}

.first-page-section {
    padding-top: 129px;
}

.hamburger {
    display: none;
}

@media (max-width: 993px) {

    .section-content {
        width: 100%;
        padding: 30px;
    }

    .col-6 {
        width: 100% !important;
    }

    .contact-info, .contact-map {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .people-img {
        display: none;
    }

    .people-info {
        width: 100%;
        padding: 0;
        padding-left: 0 !important;
    }

    .col-6 {
        padding: 0;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .column-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .parallax {
        width: 100%;
        background-position: center 37.76px;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 228px;
        background-position-y: top;
    }

    .paraxify {
        background-attachment: initial !important;
        background-position: unset !important;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }

    .nav-slide-in {
        margin-top: -1px;
        box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2)
    }

    .slide-in-cover {
        width: 100%;
        position: fixed;
        z-index: 1;
        height: 80px;
        top: 0;
        left: 0;
        background: white;
    }

    .slide-in-over-class {
        position: relative;
        z-index: 2;
    }

    .first-page-section {
        padding-top: 70px;
    }

    .nav-items {
        width: 20%;
        height: 100%;
    }

    .ss-navigation-items {
        margin: 0;
    }

    .site-name {
        height: 100%;
        width: 60%;
        max-width: 280px;
    }

    .site-logo {
        width: auto;
        background-position-y: top;
        height: 100%;
        margin: 0px 9px;
    }

    .site-logo img {
        height: 60px;
        margin-top: 5px;
    }

    .ss-navigation > li {
    }

    .ss-navigation {
        display: flex;
    }

    .header-section-content {
        width: 100%;
        height: 70px;
    }

    .header-content {
        width: 100%;
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        height: 100%;
        padding: 0;
    }

    .ss-navigation > li > a {

    }

    footer {
        flex-direction: column;
        line-height: 30px;
    }

    .footer-left {
        margin-top: 4px;
    }

    .col-6-footer {
        text-align: center;
        width: 100%;
        height: 30px;
    }

    .hamburger {
        display: block;
        width: 100%;
        height: 100%;
        cursor: pointer;
        margin-top: 15px;
    }

    .hamburger img {
        height: 40px;
        margin: 5px;
        margin-top: 15px;
    }

    .responsive {
        width: 100%;
        position: fixed;
        top: -500px;
        left: 0;
        background: white;
        flex-direction: column;
        z-index: -1;
    }

    .responsive li {
        width: 100%;
        height: 50px;
        line-height: 50px;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
    }

    .responsive li a.active {
        border-bottom: none;
        background: #83C341;
        color: white;
        margin: 0;
        padding: 0;
    }

    .hamburger-button {
        width: 100%;
        height: 100%;
        text-align: center;
        /* vertical-align: middle; */
        display: block;
    }

    .footer-right {
        padding: 0;
    }

    .footer-left {
        padding: 0;
    }

    .clock {
        font-size: 16px !important;
    }
}

@media (max-width: 321px) {
    .hamburger img {
        height: 60%;
        margin: 30% 0;
    }
}

/* Clock */

.clock {
    font-size: 20px;
    text-align: left;
    height: 30px;
    width: 136px;
    line-height: 30px;
    position: absolute;
    color: black;
}

.clock-display-div {
    display: inline-block;
}

.column-wrapper {
    display: flex;
}

.phone-display {
    background: deepskyblue;
}

.paraxify {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices */
    .paraxify {
        background-attachment: scroll;

        transform: translateZ(0);
        will-change: transform;

        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}

.nav-slide-in {
    animation: nav-slide-in 0.5s forwards;
}

@keyframes nav-slide-in {
    from {
        top: -500px;
    }
    to {
        top: 80px;
    }
}

.nav-slide-out {
    animation: nav-slide-out 0.5s forwards;
}

@keyframes nav-slide-out {
    from {
        top: 80px;
    }
    to {
        top: -500px;
    }
}

* {
    margin: 0;
    padding: 0;
}

/* Icon 1 */

#nav-icon4 {
    width: 45px;
    height: 30px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
    top: 3px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 32px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 29px;
    left: 8px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .ss-animation{
        display: none;
    }

    .clock{
        display: none;
    }

    .ss-animation-container{
        width: 100%;
        height: 400px;
        background: url("../img/animation.gif") no-repeat center;
        background-size: 100%;
    }

}