.dienstItem{
    color: var(--themeBlue) !important;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: all .15s ease-in-out;
    gap: 15px;
    aspect-ratio: 1;
    /* width: 100%; */
    /* height: 30dvw; */
    flex: 1;
}
.dienstItem:hover{
    background-color: var(--themeBlueLight);
}
.dienstItem:hover .imageHolder{
    transform: rotateZ(5deg);
}
.dienstItem:hover .imageHolder svg{
    transform: translateX(0px);
}

.dienstItem *{
    color: var(--themeBlue);
}
.dienstItem .imageHolder{
    width: 56px;
    flex: none;
    aspect-ratio: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dienstItem .imageHolder img{
    width: auto;
    width: fit-content;
    block-size: fit-content;
    min-width: auto;
    min-height: auto;
    max-width: 100%;
    max-height: 100%;
}
.dienstItem .content{
    display:flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    width: 100%;
    height: auto;
    justify-content: space-between;
}
.dienstItem .content h3{
    font-weight: 500;
    margin: 0.5rem 0 0;
    font-size: 25px;
}
.dienstItem .content p{
    font-size: 17px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
    color: var(--themeDark);
}

.dienstenHolderSection{
	height:var(--dienstenHeight);
}

.dienstenHolder{
	height: max-content;
	display: flex;
	gap: 1.5rem;
	flex-direction: row;
	justify-content: space-between;
	margin-top: -2rem;
	z-index: 1;
	position: relative;
}
@media screen and (max-width:769px){
	.dienstenHolder {
	    height: max-content;
	    padding: 0;
	    flex-direction: column;
	    margin-top: -0.7em;
	}
	.dienstenHolder .dienstItem{
		flex-direction: column;
		width: 100%;
		border-bottom:1px solid rgba(255,255,255,0.2);
		border-left:none !important;
		border-top:none !important;
		aspect-ratio: auto;
	}
	.dienstenHolder .dienstItem p{
		/* display:none; */
	}
	.dienstenHolder .dienstItem .content{
		/* text-align:center; */
	}
	.dienstItem .content h3{
		word-break:break-word;
		font-size:15px;
	}
	
	.dienstenHolder .dienstItem:nth-of-type(even){
	}
	
	.dienstenHolder .dienstItem:nth-last-child(1),
	.dienstenHolder .dienstItem:nth-last-child(2){
	}
}