@charset "UTF-8";

/* 

blackmonkey.design
Inhaber Alexander Vogl
www.blackmonkey.design
Werbung aus dem Dickicht.

*/

/* Infos: 

Dunkelgrau:     #474646;
Hellgrau:       #f2f1f0;
Rot:            #e10714;

/* @font-face */

@font-face {
  font-family: 'AvenirLTPro-Book';
  font-weight: 400;
  src: url('fonts/AvenirLTPro-Book.eot'); 
  src: url('fonts/AvenirLTPro-Book.eot?#iefix') format('embedded-opentype'),
       url('fonts/AvenirLTPro-Book.woff') format('woff'),
       url('fonts/AvenirLTPro-Book.ttf')  format('truetype'),
       url('fonts/AvenirLTPro-Book.svg#svgFontName') format('svg');
}

/* Allgemeine Bedingungen */

html {
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0 auto;
	background: #f2f1f0;
	color: #474646;
	font-family: 'AvenirLTPro-Book', Helvetica;
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: grayscale;
	hyphens: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.body_bg {
    display: none;
}

.body_bg_hide {
    display: none;
}

.body_wrapper {
    position: relative;
    z-index: 10;
}

.lock-scroll {
    overflow: hidden;
}

::selection {
    background: #e10714;
    color: #ffffff;
}

::-moz-selection {
    background: #e10714;
    color: #ffffff;
}

img {
	width: 100%;
	width: auto; /* IE8 */
    vertical-align: bottom;
}

a {
    color: #e10714;
    transition: all 250ms ease;
    text-decoration: none; 
}

a:focus, a:hover, a:active {
    color: #bc081a;
    transition: all 250ms ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

h1 {
    font-size: 250%;
}

h2 {
    font-size: 180%;
}

h3 {
    font-size: 160%;
}

h4 {
    font-size: 210%;
}

h5 {
    font-size: 200%;
}

h6 {
    font-size: 190%;
}

p {
	font-size: 100%;
    margin-top: 0px;
}

.align_center {
    text-align: center;
}

.margin_top_bottom {
    margin-top: 110px;
    margin-bottom: 0px;
}

li {
    list-style-type: none;
}

ul {
    padding: 0;
    margin-left: 15px;
}

.clearer {
    clear: both;
}

button {
    border: 0px;
    letter-spacing: 4px;
    background: #e10714;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 0px 45px;
    line-height: 45px;
    margin-top: 10px;
    transition: background 300ms ease-out;
    cursor: pointer;
}

button:hover {
    background: #b70b1c;
    transition: background 300ms ease-out;
}

button:active, button:focus {
    border: 0;
    outline: 0;
}

/* Header Mobile */

header {
    position: fixed;
    top: 0;
    z-index: 20000;
}

.header_mobile {
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    position: fixed;
    z-index: 10000;
}

.header_mobile button {
    font-size: 0.7em;
    width: 50%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.mobile_logo {
    width: 130px;
    height: 50px;
    background: url(img/logo.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100%;
    float: right;
    margin-right: 20px;
    margin-top: 12px;
}

.checkbox {
	height: 0px; 
	width: 0px;
    display: block;
}

input[type=checkbox] {
	display: none;
}

label {
	position: fixed; 
	width: 70px; 
    height: 27px;
    top: 24px;
    left: 24px;
	color: #FFF;
    background: url("img/menu_opener.svg");
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 25001;
	cursor: pointer;
    display: inline-block;
}

#menu {
    position: fixed;
	width: 100vw;
    height: 100vh;
    top: 70px;
    background: #000;
    background: #f2f1f0;
	visibility: hidden;
    transition: visibility 0s linear 400ms;
    opacity: 0;
	color: #FFF; 
	z-index: 24000;
    overflow: hidden;
    animation: menu-notchecked 350ms ease;
}

@keyframes menu-notchecked {
    0% {
        opacity: 1;
    }
    
    90% {
        opacity: 0;
    }
    
    100% {
    }
}

input[type=checkbox]:checked ~ #menu {
	visibility: visible; 
    transition: visibility 0s;
    width: 100vw;
    height: 100vh;
	opacity: 1;
    z-index: 25001;
    border-radius: 0px;
    animation: menu-checked 750ms cubic-bezier(.07,1.06,1,1);
}

@keyframes menu-checked {
    0% {
        transform: translate(0, 100%);
    }
    
    100% {
        transform: translate(0);
    }
}

input[type=checkbox]:checked ~ label {
    background: transparent;
}

label:before { 
	content: ""; 
	width: 70px; 
	height: 27px;  
    background: transparent;
	background-repeat: no-repeat; 
	z-index: 25001;
	display: block;
}

input[type=checkbox]:checked ~ label:before {
	background: url("img/menu_closer.svg");
	background-repeat: no-repeat;  
	z-index: 25000;
    opacity: 1;
    animation: closer 1000ms ease;
}

@keyframes closer {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}


#menu a {
    color: #979797;
    font-size: 140%;
}

#menu a:hover {
    color: #e10714;
}

#menu ul {
    padding: 30px 0px;
    margin: 0;
}

#menu li {
    padding-top: 15px;
    padding-bottom: 15px;
}

#menu nav {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
}

/* Header Desk */

.header_desk {
    display: none;
}

footer {
    width: 100%;
    background: #dfdede;
}

.credit {
    padding: 30px 20px 30px 20px;
    
}

.credit a, .credit {
    color: #979797;
    font-size: 90%;
}

/* Content */

#content_wrapper {
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 20px;
    min-height: 1200px;
    max-width: 1280px;
    padding: 0 20px;
    animation: content-wrapper 1200ms ease-out;
}

@keyframes content-wrapper {
    0% {
        transform: translate(0);
        opacity: 0;
    }
    
    10% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    
    20% {
        opacity: 0;
    }
    
    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.row_1 {
    padding-top: 50px;
}

.row_1_left {
    width: 100%;
    height: 270px;
    background: #e8e8e8;
    float: none;
    overflow: hidden;
}

.row_1_left img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.row_1_right {
    width: 100%;
    float: none;
}

.header_sitestart {
    padding: 25px 25px 19px 60px;
    background: #474646;
    font-size: 1.4em;
    color: #ffffff;
    margin-right: 40px;
    margin-left: -40px;
    margin-top: -15px;
    position: relative;
    z-index: 20;
}

.text_inner_row_1_right {
    padding: 0 20px;
}

.header_sitestart_h1 {
    font-size: 100%;
}

/* Row 2 */

.row_2 {
    margin-top: 100px;
}

.row_2 h2 {
    margin-bottom: 10px;
}

.headline_margin_bottom {
    margin-bottom: 50px;
}

.dreier_boxes {
    width: 100%;
    min-height: 200px;
    float: none;
    margin-bottom: 10px;
    background: #dfdede;
    transition: background 400ms ease-out;
}

a .dreier_boxes  {
    color: #474646;
}

.dreier_boxes:hover {
    background: #e8e8e8;
    transition: background 400ms ease-out;
}

.dreier_boxes_middle {
    margin-left: 0%;
    margin-right: 0%;
}

.dreier_boxes_padding {
    padding: 50px 20px 30px 20px;
}

.dreier_boxes img {
    text-align: center;
    width: 50px;
    margin-bottom: 30px;
}

.dreier_boxes_long {
    width: 100%;
    min-height: 200px;
    float: none;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #dfdede;
    transition: background 400ms ease-out;
}

a .dreier_boxes_long  {
    color: #474646;
}

.dreier_boxes_long:hover {
    background: #e8e8e8;
    transition: background 400ms ease-out;
}

.dreier_boxes_padding {
    padding: 50px 20px 30px 20px;
}

.dreier_boxes_long img {
    text-align: center;
    width: 50px;
    margin-bottom: 30px;
}

/* Row 3 */

.row_3 {
    margin-top: 40px;
}

.box_50 {
    width: 100%;
    background: #ffffff;
    float: none;
}

.box_50_padding {
    padding: 30px;
}

.box_50 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.box_50 h2 {
    margin-top: 0px;
}
 
/* Portfolio 3er */

.dreier_boxes_port {
    width: 100%;
    min-height: 200px;
    float: none;
    color: #474646;
    transform: scale(1);
    margin-bottom: 20px;
    transition: transform 440ms ease-out;
    position: relative;
    z-index: 0;
    outline: 5000px solid rgba(242, 241, 240, 0);
}

.dreier_boxes_port:last-of-type {
    margin-bottom: 0px;
}

.dreier_boxes_port_left {
    transform-origin: left center;
}

.dreier_boxes_port_center {
    transform-origin: center;
}

.dreier_boxes_port_right {
    transform-origin: right center;
}

.dreier_boxes_port:hover {
    position: relative;
}

.dreier_boxes_middle_port {
    margin-left: 0%;
    margin-right: 0%;
}

.dreier_boxes_port img {
    text-align: center;
    width: 100%;
}

.row_portfolio_inner {
    margin-top: 20px !important;
}

@media (min-width: 400px) {
    
    .mobile_logo {
        float: inherit;
        margin: 0 auto;
        margin-top: 12px;
        transition: all 300ms ease;
    }
}

@media (min-width: 768px) {
 
    .row_1 {
        padding-top: 50px;
    }
    
    .row_1_left {
        width: 60%;
        height: 365px;
        background: #e8e8e8;
        float: left;
        overflow: hidden;
    }
    
    .row_1_left img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .row_1_right {
        width: 40%;
        float: left;
    }
    
    .header_sitestart {
        background: #474646;
        font-size: 1.4em;
        color: #ffffff;
        margin-right: 40px;
        margin-left: -40px;
        margin-top: 15px;
    }
    
    .text_inner_row_1_right {
        padding: 0 40px 0 20px;
    }
    
    .header_sitestart_h1 {
        font-size: 100%;
    }
    
    /* Row 2 */
    
    
    .row_2 h2 {
        margin-bottom: 10px;
    }
    
    .headline_margin_bottom {
        margin-bottom: 50px;
    }
    
    .dreier_boxes {
        width: 32%;
        min-height: 200px;
        float: left;
        background: #dfdede;
        transition: background 400ms ease-out;
    }
    
    a .dreier_boxes  {
        color: #474646;
    }
    
    .dreier_boxes:hover {
        background: #e8e8e8;
        transition: background 400ms ease-out;
    }
    
    .dreier_boxes_middle {
        margin-left: 2%;
        margin-right: 2%;
    }
    
    .dreier_boxes_padding {
        padding: 50px 20px 30px 20px;
    }
    
    .dreier_boxes img {
        text-align: center;
        width: 50px;
        margin-bottom: 30px;
    }
    
    /* Row 3 */
    
    .row_3 {
        margin-top: 110px;
    }
    
    .box_50 {
        width: 50%;
        height: 500px;
        background: #ffffff;
        float: left;
        position: relative;
    }
    
    .box_50_padding {
        padding: 50px;
    }
    
    .box_50 img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .box_50 h2 {
        margin-top: 30px;
    }
    
    .box_50_inhalt {
        top: 50%;
        position: absolute;
        transform: translate(0, -50%);
        right: 40px;
        left: 80px;
    }
    
    /* Leistungen */
    
    .float_right {
        float: right;
    }
    
    .float_left {
        float: left;
    }
    
    /* Portfolio 3er */
    
    .dreier_boxes_port {
        width: 32%;
        min-height: 200px;
        float: left;
        color: #474646;
        margin-bottom: 0px;
        transform: scale(1);
        transition: transform 440ms ease-out;
        position: relative;
        z-index: 0;
        outline: 5000px solid rgba(242, 241, 240, 0);
    }
    
    .dreier_boxes_port_left {
        transform-origin: left center;
    }
    
    .dreier_boxes_port_center {
        transform-origin: center;
    }
    
    .dreier_boxes_port_right {
        transform-origin: right center;
    }
    
    .dreier_boxes_port:hover {
        transform: scale(1.3);
        transition: transform 400ms ease-out 40ms;
        position: relative;
        outline: 5000px solid rgba(242, 241, 240, 0.5);
        z-index: 40000;
    }
    
    .dreier_boxes_middle_port {
        margin-left: 2%;
        margin-right: 2%;
    }
    
    .dreier_boxes_port img {
        text-align: center;
        width: 100%;
    }
    
    .row_portfolio_inner {
        margin-top: 20px !important;
    }
   
    
}

@media (min-width: 1150px) {
    
    .body_bg {
        display: block;
        width: 750px;
        max-width: 60%;
        height: 360px;
        background: url("img/bg_desk.svg");
        background-size: 100%;
        background-position: top right;
        background-repeat: no-repeat;
        position: absolute;
        z-index: 0;
        right: 0;
        top: 0;
        opacity: 0;
        animation: body-bg-hide 3s ease;
    }

    @keyframes body-bg-hide {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }
    
    /* Header mobile */
    
    .checkbox {
        display: none;
    }
    
    .header_mobile {
        display: none;
    }
    
    /* Header */

    .logo {
        width: 130px;
        height: 50px;
        background: url(img/logo.svg);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 100%;
        float: left;
        padding-left: 70px;
        padding-bottom: 30px;
        transition: all 300ms ease;
    }

    .header_desk {
        width: 100%;
        display: block;
        position: fixed;
        background: rgba(242, 241, 240, 0);
    }
    
    .header_desk_next {
        background: rgba(242, 241, 240, 1);
    }
    
    .padding_header_desk {
        padding: 50px 80px 10px 80px;
        transition: all 300ms ease;
    }
    
    .nav_desk {
        width: calc(100% - 200px);
        float: right;
        text-align: right;
        list-style-type: none;
    }
    
    .nav_desk ul {
        margin: 0;
        padding: 0;
        padding-top: 17px;
        display: inline-block;
    }
    
    .nav_desk ul a li {
        position: relative;
        display: inline-block;
    }
    
    .nav_desk ul a li::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background: transparent;
        bottom: -3px;
    }
    
    .nav_desk ul a li:hover::before {
        background: #e10714;
        animation: li-hover-before 250ms ease;
    }
    
    @keyframes li-hover-before {
        0% {
            width: 0px;
        }
        
        100% {
            width: 30px;
        }
    }
    
    .nav_desk ul a #aktiv-link::before {
        background: #cecdcd;
        animation: none !important;
    }
    
    .nav_desk ul a {
        color: #474646;
        margin-left: 60px;
        letter-spacing: 2px;
    }
    
    .nav_desk ul a:first-of-type {
        margin-left: 0px;
    }
    
    .header_desk_scroll {
        background: rgba(255, 255, 255, 1);
        animation: header-desk-scroll 500ms ease;
    }
    
    @keyframes header-desk-scroll {
        0% {
            background: rgba(242, 241, 240, 1);
        }
        
        100% {
            background: rgba(255, 255, 255, 1);
        }
    }
    
    .header_desk_scroll .padding_header_desk {
        padding: 10px 80px 6px 80px;
        animation: padding-header-desk 500ms ease;
    }
    
    @keyframes padding-header-desk {
        0% {
            padding: 50px 80px 10px 80px;
        }
        
        100% {
            padding: 10px 80px 6px 80px;
        }
    }
    
    .header_desk_scroll .padding_header_desk .logo {
        padding: 0px;
        animation: logo-mobile 500ms ease;
    }
    
    @keyframes logo-mobile {
        0% {
            padding-left: 70px;
            padding-bottom: 30px;
        }
        
        100% {
            padding: 0px;
        }
    }
    
    /* Footer */
    
    .credit {
        padding: 15px 40px 15px 40px;
    }
    
    /* Content */
    
    #content_wrapper {
        margin-top: 140px;
        padding-bottom: 150px;
    }
    
    .row_1 {
        padding-top: 50px;
    }
    
    .row_1_left {
        width: 60%;
        height: 450px;
        background: #e8e8e8;
        float: left;
        overflow: hidden;
    }
    
    .row_1_left img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .row_1_right {
        width: 40%;
        float: left;
    }
    
    .header_sitestart {
        padding: 35px 50px 30px 80px;
        background: #474646;
        font-size: 2.4em;
        color: #ffffff;
        margin-right: 40px;
        margin-left: -40px;
        margin-top: 50px;
    }
    
    .text_inner_row_1_right {
        padding: 0 120px 0 40px;
    }
    
    .header_sitestart_h1 {
        font-size: 100%;
    }
    
    /* Row 2 */
    
    .row_2 {
        margin-top: 110px;
    }
    
    /* Row 3 */
    
    .box_50_padding {
        padding: 80px;
    }
    
    /* Box 33 */
    
    .box_33 {
        width: 3
    }
    
}

@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (   min--moz-device-pixel-ratio: 1.5),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 1.5),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
    
}