.home .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    flex-direction: row;
}

.home .grid > div:not(:first-of-type) {
    padding-top: 4em;
}

.teaser {
    flex: 1 100%;
    padding-bottom: 0;
}

.teaser img {
    display: none;
}

.agenda {
    flex: 1 100%;
}

.events {
    width: 100%;
    margin-top: 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.event {
    position: relative;
    overflow: hidden;
    display: block;
    flex: 1 100%;
    background-image: url('../../images/pc7icon-white.png');
    background-size: 5em;
    background-position: 99% 10%;
    background-repeat: no-repeat;
    background-color: #ededed;
    padding: 1em;
    margin-bottom: 1em;

    text-decoration: none;
    color: #4173b7;

    -webkit-box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.17);
    -moz-box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.17);
    box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.17);
}

.event h3 {
    width: 80%;
    font: normal 100%/1.4 'Avenir LT Std 35 Light', sans-serif;
    line-height: 120%;
    letter-spacing: 0;
    font-size: 1.5em;
}

.event .date {
    margin-top: 1em;
}

.event .date .from:after,
.event .date .to:before {
    content: " ";
    white-space: pre;
}

.event .place {
    margin-top: 0.5em;
}

.event .place a {
    color: #8a8a8a;
    text-decoration: none;
}

.event .place .fa-map-marker-alt {
    margin-right: 0.5em;
    margin-left: 0.1em;
}

.event .ribbon {
  position: absolute;
  right: -50px;
  bottom: 10px;

  width: 200px;
  padding: 10px;
  text-align: center;
  color: #f0f0f0;

  transform: rotate(-30deg);
  background: red;

  text-transform: uppercase;
  font-weight: bold;
}

.agenda > p {
    margin-top: 0.5em;
}

.news {
    flex: 1 100%;
}

.news h2 {
    margin-bottom: 1em;
}

.posts {
    flex: 1 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.fb_post {
    flex: 1 100%;
}

.fb_post .text {
    padding: 1em 0.5em 1em 0.5em;
}

.fa-facebook {
    color: #3c5a99;
}

@media screen and (min-width: 575px) {}

@media screen and (min-width: 768px) {

    .info_group {
        flex: 1;

    }

    .agenda {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }

    .event {
        flex-shrink: 0;
        flex-grow: 1;
        flex-basis: calc(33% - 2em);
        max-width: calc(33% - 2em);
        margin-right: 2em;
    }

    .fb_post {
        flex-shrink: 1;
        flex-grow: 1;
        width: calc(50% - 3em);
        max-width: calc(50% - 3em);
        margin-right: 3em;
    }
}
@media screen and (min-width: 991px) {
    .event {
        flex-basis: calc(33% - 3em);
        max-width: calc(33% - 3em);
        margin-right: 3em;
    }
}
@media screen and (min-width: 1199px) {}
