/* Header CSS*/
.header_box{
    width: 266px;
    height: 418px;
    background-color: #17161699;
    border:  #212121 ;
    position: absolute;
    left: 7%;
    top: 90px;
    border-style: solid;
    border-width: 6px;
    display: flex;
    justify-content: center;
}
.header_box_content{
    position: absolute;
    left: 24px;
    top: 50px;
}
.header_box_logo{
    height: 26px;
}
.header_box_text{
    margin-top: 12px;
    color: white;
    font-size: 24px;
    font-family: Halbfett;
    text-transform: uppercase;
}
.header_box_text_margin{
    margin-top: 7px;
}
.experience-button{
    bottom: -23px;
    position: absolute;
}
#headers{
    display: block;
}
#mobile_headers{
    display: none;
}
@media only screen and (max-width: 991px){
    #headers{
        display: none;
    }
    #mobile_headers{
        display: block;
    }
}
@media only screen and (max-width: 450px){
    /*.header_section{*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*}*/
    .header_box_logo{
        height: 22px;
    }
    .header_box_text{
        font-size: 21px;
    }
    .header_box{
        left: unset;
    }
    .experience-button{
        font-size: 14px;
    }
    .experience-button img{
        font-size: 12px;
    }
    @media only screen and (max-width: 296px){
        .header_box{
            width: 80%;
        }
    }
}
/* About CSS*/

.about_text_parent{
    display: flex;
    justify-content: center;
    padding-top: 78px;
    position: relative;
    line-height: 1.2;
}
.about_text{
    font-size: 14px;
    font-family: Leicht;
    color:#EDEDED;
    line-height: 20px;
    padding: 0px 20px!important;
}
.about-button{
    position: absolute;
    right: 0px;
    bottom: 0px;
}

@media only screen and (max-width: 768px){
    .about_text{
        padding-bottom: 20px;
    }
    .about-button{
        position: relative;
    }
}
/* Project CSS*/
.project_item{
    height: 450px;
    background-repeat: no-repeat;
    position: relative;
    column-gap: 60px;
    cursor: pointer;
    margin-top: 30px!important;
}
.project_item_image_parent{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.project_item_img{
    height: 100%;
    width: 100%;
    background-image: url("../img/CMidtown.jpg");
    background-position: center;
    background-size: cover;
    object-fit: cover;
    transition: 0.5s all ease-in-out;
}

.blackLayer{
    width:100%;
    height:100%;
    background-color:#000;
    opacity:0.3;
}
.background_color{
    background-color:#000;
}
.project_item_img:hover .blackLayer{
    opacity:0.1;
}
.project_item_img:hover{
    transform: scale(1.1);
}
.project_item_type{
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 36px;
    text-orientation: sideways;
    color: #EDEDED;
    transform: rotateZ(270deg);
    text-transform: uppercase;
    font-size: 13px;
    font-family: Dreiviertelfett;
    transform-origin: top left;
    letter-spacing: 2px;
    text-shadow: 2px 2px #00000026;
}
.project_item_name{
    width: 100%;
    position: absolute;
    bottom: 10px;
    right: 36px;
    color: #EDEDED;
    text-transform: uppercase;
    font-size: 13px;
    font-family: Dreiviertelfett;
    transform-origin: top right;
    letter-spacing: 2px;
    text-shadow: 2px 2px #00000026;
}
.project_item_logo{
    width: auto;
    position: absolute;
    top: 17px;
    left: 36px;
}
.project_item_logo img{
    height: 30px;
    width: 200px;
    object-fit: contain;
    object-position: left;
}
@media only screen and (max-width: 768px){
    .project_item{
        height: 350px;
        padding: 0;
    }
    .project_item_type{
        font-size: 14px;
    }
}
@media only screen and (max-width: 991px){
    .project_item {
        margin-top: 30px!important;
    }
}
