/* Grundlayout der Blöcke */

.infoblock,
.eventblock,
.linkblock {
    background-color: #f7f5f5;
    margin: 15px 0 40px;
    padding: 25px 0 25px 75px;
    font-size: 14px;
    display: block;
    position: relative;
    border-top: 0px solid rgba(128,128,128,.1);
    border-bottom: 0px solid rgba(128,128,128,.1);
    font-family: 'Montserrat',"Helvetica Neue",Helvetica,sans-serif;
    color: #101010;
}


/* Titel */

.blocktitel {
    color: red;
    font-style: italic;
    margin: 0 0 10px;
}


/* Icon-Grundformat */

.infoblock:before,
.eventblock:before,
.linkblock:before {
    font-family: "FontAwesome";
    display: block;
    font-size: 35px;
    position: absolute;
    left: 20px;
    top: 8px;
    color: red;
}


/* Icons */

.infoblock:before {
    content: "\f129";
}

.eventblock:before {
    content: "\f133";
}

.linkblock:before {
    content: "\f02e";
}