.events-wrapper{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.events-wrapper h2{
    min-height: 85px;
}
    @media (max-width: 549px) {
        .events-wrapper h2{
            min-height: 55px;
        }
    }

.event_block{
    width: calc(65% - 10px);
}
.event_right_section{
    width: calc(35% - 10px);
}
    @media (max-width: 799px) {
        .event_block,
        .event_right_section{
            width: calc(50% - 10px);
        }
    }
    @media (max-width: 549px) {
        .event_block,
        .event_right_section{
            width: 100%;
        }

        .event_right_section{
            margin-top: 50px;
            text-align: center;
        }
    }
.event_block .item_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.event_block .item_wrapper .event_item{
    width: calc( 33.3333% - 13px);
    margin-top: 25px;
}
    @media (min-width: 1200px) {
        .event_block .item_wrapper > div.event_item:nth-of-type(1),
        .event_block .item_wrapper > div.event_item:nth-of-type(2),
        .event_block .item_wrapper > div.event_item:nth-of-type(3){
            margin-top: 0;
        }
    }
    @media (max-width: 1199px) {
        .event_block .item_wrapper .event_item{
            width: 48%;
        }
    }
    @media (min-width: 800px) {
        .event_block .item_wrapper > div.event_item:nth-of-type(1),
        .event_block .item_wrapper > div.event_item:nth-of-type(2){
            margin-top: 0;
        }
    }
    @media (max-width: 799px) {
        .event_block .item_wrapper > div.event_item:nth-of-type(1){
            margin-top: 0;
        }
        .event_block .item_wrapper .event_item{
            width: 100%;
        }
        body.page_startseite .event_block .item_wrapper > div.event_item:nth-last-of-type(1),
        body.page_startseite .event_block .item_wrapper > div.event_item:nth-last-of-type(2),
        body.page_startseite .event_block .item_wrapper > div.event_item:nth-last-of-type(3){
            display: none;
        }
    }
    
    
.event_block .item_wrapper .event_item a{
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: normal;
    font-size: 20px;
}
.event_block .item_wrapper .event_item .img-wrapper{
    position: relative;

    height: 210px;
    border-radius: 20px;

    color: #fff;
    font-weight: bold;
    font-size: 22px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: rgba(0,0,0,0.3); */
    background-blend-mode: overlay;
}

.event_block .item_wrapper .event_item .img-wrapper span{
    position: absolute;
    bottom: 20px;
    left: 25px;
}
.event_block .item_wrapper .event_item h5 a{
    padding-top: 10px;
    line-height: 25px;
}
.event_block a.show_all_news{
    display: block;
    margin-top: 30px;
    position: relative;
    width: 32%;
    text-decoration: none;
    background: #000;
    color: #fff;
    line-height: 17px;
    padding: 20px 60px 20px 25px;
    border-radius: 30px;
}
    @media (max-width: 1199px) {
        .event_block a.show_all_news{
            width: 48%;
        }   
    }
    @media (max-width: 799px) {
        .event_block a.show_all_news{
            width: 100%;
        }   
    }
    @media (max-width: 549px) {
        .event_block a.show_all_news{
            margin-top: 20px;
        } 
    }
.event_block a.show_all_news::before,
.event_block a.show_all_news::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px; 
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
}
.event_block a.show_all_news::before{
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}
.event_block a.show_all_news::after{
    background-image: url(../../images/icons/send-icon.png);
    background-repeat: no-repeat;
    background-position: center;  
}
