/* latin-ext */
@font-face {
    font-family: 'IBM Plex Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/IBMPlexSans-Regular.woff") format('woff');
   }
  
  /* latin-ext */
  @font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/fonts/IBMPlexSans-Light.woff") format('woff');
  }
  
  /* latin-ext */
  @font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/IBMPlexSans-Regular.woff") format('woff');
  }
  
  /* latin-ext */
  @font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/fonts/IBMPlexSans-SemiBold.woff") format('woff');
  }
  
  /* latin-ext */
  @font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('IBM Plex Sans'), local('IBM-Plex-Sans'),
    url("/fonts/IBMPlexSans-Bold.woff") format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
* { 
    margin: 0;
    padding: 0;
    width: auto;
    box-sizing: border-box;
}

html, body{
min-height: 100%;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 100%;
color: #242426;
background-color: #F5F1EC;
}

a{
text-decoration: none;
color: #242426;
}

/* Content Width */
.contentSpacing{
    padding-bottom: 60px;
}

.contentMedium{
    width: auto;
    max-width: 990px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contentSlider{
    width: auto;
    max-width: 990px;
    margin: auto;
    height: auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.contentLargeWhite{
    width: auto;
    margin: auto;
    padding: 60px 20px 90px;
    background-color: #fff;
    margin-bottom: 90px;
}

/* Button */
.primeryBttn {
    font-size: 0.95em;
    font-weight: 400;
    border-radius: 20px;
    padding: 8px 20px 10px;
    cursor: pointer;
    text-decoration: none;
}

.btnWhite{
    color: #fff;
    border: 1px solid #fff;
    background-color: none;
    transition: 0.3s;
}

.btnWhite:hover {
    color: #242426;
    background-color: #bbcc66;
    border-color: #bbcc66;
    transform: scale(0.97);
}

.btnBlack{
    color: #fff;
    background-color: #242426;
    border: 2px solid #242426;
    transition: 0.3s;
}

.btnBlack:hover {
    color: #242426;
    background-color: #fff;
    border-color: #242426;
    transform: scale(0.95);
}

/* Typography */

.centerTypo {
    text-align: center;
}

.whiteTypo {
    color: #fff;
}

h1 {
font-weight: 300;
font-size: 38px;
line-height: 50px;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
    }

.h2Big {
    font-weight: 300;
    font-size: 38px;
line-height: 50px;
    padding-bottom: 20px;
}

h3 {
font-weight: 600;
font-size: 24px;
line-height: 32px;
padding-bottom: 4px;
}

.paragraphL{
font-weight: 300;
font-size: 19px;
line-height: 28px;
padding-bottom: 12px;
}

.paragraphM{
font-weight: 300;
font-size: 17px;
line-height: 24px;
padding-bottom: 12px;
}

.paragraphS{
font-weight: 300;
font-size: 14px;
line-height: 24px;
padding-bottom: 12px;
}


/* HEADER */

.headerWrapper{
    width: auto;
    max-width: 990px;
    margin: auto;
    padding: 20px;
    height: 80px;
    color: #3f4f3c;
    margin-bottom: 40px;
}

.headerTag{
    float: left;
    font-size: 19px;
}

.headerTag span{
    font-weight: 700;
}

.headerNavi{
    font-size: 15px;    
    float: right;
    display: none; /* ONLY FOR THE MOMENT */
}

.headerNavi a{
    margin-left: 20px;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

  .headerNavi a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #242426;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .headerNavi a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .headerNavi a span{
    font-weight: 700;
  }

    /* Stage */
.stageWrapperImg{
margin: auto;
max-width: 170px;
margin-bottom: 20px;
}

.stageWrapperImg img{
    width: 100%;
}

 /* INFOBOX */
.infoboxWrapper{
    display: flex;
    width: 100%;
    height: 350px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin: 30px 0;
    }

    .infoboxContent{
        background-color: #242426;
        border-bottom-right-radius: 30px;
        padding: 24px;
        width: 33.33%;
        position: relative;
    }

    .infoboxContent a{
        position: absolute;
        bottom: 0;
        margin-bottom: 28px;
    } 
    
    .infoboxImg{
        border-bottom-left-radius: 30px;
        width: 66.66%;
    }

/* infoboxSlider */
.bgGreen{
background-color: #bbcc66;
}

.bgYellow{
    background-color: #E2C14F;
    }

 .bgOrange{
     background-color: #DE7853;
 }

 .bgBlack{
    background-color: #2b2b47;
    color: white;
    }

.slideritems{
    width: 100%;
    height: auto;
    padding: 0 10px;
}

.infoboxSWrapper{
    width: 100%;
    height: auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    
    }

    .infoboxSContent{
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 24px;
        width: 100%;
        position: relative;
    }

    .infoboxSmall {
        height: 200px;
    }

    .infoboxMedium {
        height: 250px;
    }

    .infoboxSContent a{
        position: absolute;
        bottom: 0;
        margin-bottom: 20px;
    } 
    
    .infoboxSImg{
        width: 100%;
        height: 300px;
    }

    .skillContentLarge h2{
padding-bottom: 50px;
    }

.skillIcon{
    width: 30px;
    text-align: center;
    margin: auto;
}

    .infoboxSContentWrapper svg{
width: 100%;
height: 35px;
padding-bottom: 5px;
margin: auto;
text-align: center;
    }

    /* IMGAES */

    .imageAbout{
        background-image: url("/img/portrait-pauly.jpg");
        background-size: cover;
    }

    .imageP01{
        background-image: url("/img/projekt01.png");
        background-size: cover;
    }

    .imageP02{
        background-image: url("/img/projekt02.png");
        background-size: cover;
    }

    .imageP03{
        background-image: url("/img/projekt03.png");
        background-size: cover;
    }

    .imageP04{
        background-image: url("/img/projekt04.png");
        background-size: cover;
    }

    .imageP05{
        background-image: url("/img/projekt05.png");
        background-size: cover;
    }

    .imageP06{
        background-image: url("/img/projekt06.png");
        background-size: cover;
    }

    .imageP07{
        background-image: url("/img/projekt07.png");
        background-size: cover;
    }

    .imageP08{
        background-image: url("/img/projekt08.png");
        background-size: cover;
    }

    .imageP09{
        background-image: url("/img/projekt09.png");
        background-size: cover;
    }

    .imageL02{
        background-image: url("/img/projekt10.png");
        background-size: cover;
    }

    .oneS{
        background-image: url("/img/prototyp-01-desktop.png");
        background-size: cover;
    }


    .infoboxImgOne{
        background-image: url("/img/prototyp-01-desktop.png");
        background-size: cover;
    }


/* FOOTER */

footer{
    background-color: #fff;
}

.footerContent{
    max-width: 990px;
    margin: auto;
    padding: 70px 20px 20px;
    display: flex;
}

.footerContactIcon{
    padding: 30px 0;
}

.footerContactIcon img{
width: 45px;
padding-right: 12px;
cursor: pointer;
transition: 0.6s;
}

.footerContactIcon img:hover{
    transform: scale(0.96) rotate(5deg);
    }

.footerContact{
width: 70%;
}

.footerImg{
    width: 30%;
}

.footerImg img{
    width: 250px;
    float: right;
    position: relative;
}

.footerImp{
    color: #3f4f3c;
}

.footerImp:hover{
text-decoration: underline;
}

/* Slider Arrows */

.arrowLeftWrapper{
position: absolute;
width: calc(100% - 40px);
top: 40%;
}

.arrowLeftWrapper img{
    width: 40px;
    cursor: pointer;
    transition: 0.6s;
    opacity: 0.85;
    }
    
.arrowLeftWrapper img:hover{
     transform: scale(0.92);
     opacity: 1;
 }

.arrowRight{
    float: right;
    margin-right: -8px;
}

.arrowLeft{
    margin-left: -8px;
}


/* RESPONSIV */

@media screen and (max-width: 890px) {
    .infoboxWrapper{
        max-width: max-content;
        display: inline-table;
        height: 450px;
        }
        
          .infoboxImg{
            width: 100%;
            height: 320px;
            border-bottom-left-radius: 0px;
        }

        .infoboxContentWrapper{
           height: 250px;
        }


        .infoboxContent{
            width: 100%;
            border-bottom-right-radius: 30px;
            border-bottom-left-radius: 30px;
        }

   /* Footer Content */

    .footerContent{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        padding: 50px 20px 20px;
    }
    
    .footerContact{
        order: 2;
        text-align: center;
        width: 100%;
    }
    
    .footerImg{
        order: 1;
        text-align: center;
        padding-bottom: 20px;
        width: 100%;
    }

    .footerImg img{
        float: none;
    }

    .headerNavi{
        display: none;
    }

	 .infoboxMedium {
        height: 270px;
    }

}