/* Main elements */

body {
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    background-color: #333333;
}
.element-top {
    position: absolute;
    top: 0;
    height: 70%;
    width: 100%;
}
.element-bottom {
    position: absolute;
    bottom: 0;
    height: 30%;
    width: 100%;
}
.element-mobile {
    display: none;
}




/* Element-top card */


.business-card {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -195px;
    width: 600px;
    height: 390px;
    background-color: #F2F2F2;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.8);
}
.logo-koen {
    position: absolute;
    top: 40px;
    right: 0px;
    height: 130px;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
}
.card-info {
    position: absolute;
    bottom: 30px;
    left: 40px;
    width: 220px;
    display: block;
}
.card-info-row {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #999999;
    line-height: 14px;
    margin: 2px 0px 0px 0px;
    display: inline-block;
}
.card-info-name-title {
    width: 100%;
    line-height: 18px;
    margin-bottom: 2px;
}
.card-info-elements {
    width: 20px;
}
.card-info-content {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #999999;
}
.card-info-content a{
    color: #999999; 
    text-decoration: none;
}

.arrow-down {
    display: none;
}




/* Element-bottom Links */


.links {
    display: inline-block;
    position: absolute;
    bottom: 50%;
    margin-bottom: -50px;
    width: 100%;
}
.links-centert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.link {
    height: 100px;
    -webkit-filter: drop-shadow( 0px 10px 10px rgba(0,0,0,0.5) );
            filter: drop-shadow( 0px 10px 10px rgba(0,0,0,0.5) );
}
.link:hover {
    -webkit-filter: drop-shadow( 0px 0px 0px rgba(0,0,0,0.0) );
            filter: drop-shadow( 0px 0px 0px rgba(0,0,0,0.0) );
}
a:hover {
    opacity: 0.8;
}
.link-edge {
    display: inline-block;
    width: 1px;
    height: 100px;
}
.link-light {
        display: inline-block;
}
.link-dark {
        display: none;
}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}




/* Responsive part for tablet */


@media (max-width: 1024px) {
    body {
        overflow: hidden;
        -webkit-animation: fadein-bg 1s 4s both;
        animation: fadein-bg 1s 4s both;
    }
    @-webkit-keyframes fadein-bg {
        from { background-color: #333333; }
        to   { background-color: #F2F2F2; }
    }
    @keyframes fadein-bg {
        from { background-color: #333333; }
        to   { background-color: #F2F2F2; }
    }
    .element-top {
        background-color: #333333;
    }
    .element-bottom {
        background-color: #F2F2F2;
        -webkit-animation: popup-box 2s 0.5s both;
        animation: popup-box 2s 0.5s both;
    }
    @-webkit-keyframes popup-box {
        from { margin-bottom: -40%; }
        to   { margin-bottom: 0%; }
    }
    @keyframes popup-box {
        from { margin-bottom: -40%; }
        to   { margin-bottom: 0%; }
    }
    .link {
        height: 100px;
        -webkit-filter: drop-shadow( 0px 0px 0px rgba(0,0,0,0) );
                filter: drop-shadow( 0px 0px 0px rgba(0,0,0,0) );
    }
    .link-light {
        display: none;
    }
    .link-dark {
        display: inline-block;
    }
}




/* Responsive part for mobile */


@media (max-width: 720px) {
    body {
        background-color: #333333;
    }
    .element-top {
        background-color: #333333;
        height: 100%;
        position: relative;
    }
    .business-card {
        left: 50%;
        margin-left: -130px;
        width: 260px;
        height: 400px;
        z-index: 1;
    }
    .logo-koen {
        top: 24px;
        height: 80px;
    }
    .card-info {
        position: absolute;
        bottom: 20px;
        left: 25px;
        width: 215px;
    }
    .element-bottom {
        display: none;
    }
    
    .arrow-down {
        display: block;
        height: 15px;
        width: 50px;
        position: absolute;
        left: 50%;
        margin-left: -25px;
        bottom: 30px;
    }
    .arrow {
        width: 100%;
        -webkit-filter: drop-shadow( 0px 1px 0px rgba(255,255,255,0.1) );
                filter: drop-shadow( 0px 1px 0px rgba(255,255,255,0.1) );
    }

    .mobile-link {
        display: block;
        height: 100px;
        margin: 0% 30%;
        padding: 2% 0%;
    }
    .mobile-img {
        width: 100%;
        height: 100%;
    }
}




/* Animation fade-in part */


.business-card {
    -webkit-animation: fadein-card 3s .5s both;
            animation: fadein-card 3s .5s both;
}
@-webkit-keyframes fadein-card {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadein-card {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.arrow-down {
    -webkit-animation: fadein-arrow 3s 2s both;
            animation: fadein-arrow 3s 2s both;
}
@-webkit-keyframes fadein-arrow {
    from { opacity: 0; margin-bottom: 50px; }
    to   { opacity: 1; margin-bottom: 0px }
}
@keyframes fadein-arrow {
    from { opacity: 0; margin-bottom: 50px; }
    to   { opacity: 1; margin-bottom: 0px; }
}

.link {
    -webkit-animation: fadein-link 3s 2s both;
            animation: fadein-link 3s 2s both;
}
@-webkit-keyframes fadein-link {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadein-link {
    from { opacity: 0; }
    to   { opacity: 1; }
}

