
#step_choose_type .unsharpimage {
    position: relative;
    max-width: 700px;
    width: 100%;
    min-height: 100%; 
    background-color: black;
    background-image: url('/images/bg-Light Gray.png');
    background-position: center;
    background-size: cover;
}

#step_choose_type .content {
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
    min-height: 100%; 
}


#step_choose_type .category_container{
    display: grid;
    grid-template-rows: 1fr repeat(3, 150px) 1fr;
    grid-template-columns: 1fr 20px;
}


#step_choose_type .category_container .category{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-size: cover;
    grid-column-start: 1;
    color: white;
    padding: 10px;
    padding-right: 30px;
}

#step_choose_type .category_container h3{
    font-size: 1.6em;
}


#step_choose_type .category_container .category:nth-child(2){
    background-image: url("/images/zahnrad.jpg");
    border-radius: 0 60px 0 0;
}

#step_choose_type .category_container .category:nth-child(3){
    background-image: url("/images/zahnrad2.jpg");
}


#step_choose_type .category_container .category:last-child{
    background-image: url("/images/zahnrad3.jpg");
    background-color: green;
    border-radius: 0 0 60px 0;
}