/*allgemein*/

.header__nav-link--telemobilkran:link{
    border-bottom: 2px solid var(--color-white);
}

.telemobilkran_heading{
    margin-top: 50px;
    margin-bottom: 50px;
}

.alle_produkte{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.produkt{
    overflow: hidden;
    background: rgb(233, 233, 233);
    color: #21201e;
    text-align: center;
    width: 400px;
    height: 700px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    margin: 2rem;
}

.produkt:hover img{
    scale: 1.1;
}

.produkt:hover {
    box-shadow: 5px 15px 25px #9b9b9b;
}

.produkt img{
    height: 210px;
    margin-bottom: 3rem;
    transition: all 0.4s;
}

.produkt a:link, .produkt a:visited{
    display: inline-block;
    text-decoration: none;
    background-color: rgb(9, 18, 66);
    padding: 1.6rem 9rem;
    margin-top: 1rem;
    border-radius: 1rem;
    transition: all 0.2s;
    color: white;
} 

.produkt a:hover{
    transform: scale(1.1);
}

.produkt-beschreibung{
    width: 30rem;
    text-align: left;
    margin: 2rem;
}

.produkttitel{
    width: 30rem;
}

.kranmiete{
    margin-bottom: 150px;
}

/*PC*/

@media only screen and (min-width: 1001px){
    .minikran_heading{
        margin-top: 90px;
        margin-bottom: 100px;
    }
}

/*Tablet je nach Anforderung*/

@media only screen and (min-width: 530px) and (max-width: 1000px){

}

/*mobile */

@media only screen and (max-width: 530px){

}