.icon-text-block {
    position: relative;
    justify-content: center;
    padding-bottom: 50px;
    border-radius: 30px;
}

.icon-text-block .flex33{
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #050608;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;;
    border: 2px solid #ecc791;
    color: #ecc791;
}
@media screen and (min-width: 1000px){
        .icon-text-block .flex33{
        max-width: 32%;
    }
}
.icon-text-block .flex33:hover{
    color: #050608;
    background-color: #ecc791;
}

.icon-text-block .flex33:nth-child(2n) {
    border: 2px solid #ecc791;
}
.icon-text-block .flex33 .icon-container{
    height: 50px;
    width: 50px;
    fill: #ecc791;
    transition: background-color 0.3s ease, color 0.3s ease;;
}
.icon-text-block .flex33:nth-child(2n)  .icon-container{
    fill: #050608;
}
.icon-text-block .flex33:nth-child(2n):hover  .icon-container{
    fill: #ecc791;
}
.icon-text-block .flex33:hover .icon-container{
    fill: #050608;
    transition: background-color 0.3s ease, color 0.3s ease;;
}
.icon-text-block .flex33:hover{
    background-color: #ecc791;
    color: #050608;
    transition: background-color 0.3s ease, color 0.3s ease;;
}
.icon-text-block .flex33:hover img{
    filter: invert(100%) brightness(200%) contrast(100%);
}
.icon-text-block .flex33 img{
    width: 60px;
    box-shadow: none;
    filter: invert(25%) sepia(50%) saturate(1000%) hue-rotate(180deg); /* Filter für Farbe */
}
.icon-text-block .flex33 h2{
    text-align: left;
    width: 100%;
    font-size: 35px;
}
.icon-text-block .flex33 p{
    margin: 0;
}
.icon-text-block-wrapper.flex .flex33:nth-child(2n) {
    background-color: #ecc791;
    color: #050608;
    border: 2px solid #ecc791;
}
.icon-text-block-wrapper.flex .flex33:nth-child(2n):hover {
    background-color:#050608;
    color: #ecc791;
}
.icon-text-block-wrapper.flex .flex33:nth-child(2n) img{
    filter: invert(100%) brightness(200%) contrast(100%);
}
.wp-block .icon-text-block-wrapper .flex33 {
    width: 30%; /* 3 nebeneinander */
    display: inline-block;
    margin-bottom: 30px;
}