@import url('./archive-profielen.css');

.agenda-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.agenda-list-item {
    padding: 18px 20px;
    background-color: var(--white-color);
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.agenda-list-item a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.agenda-list-item:not(:last-of-type){
    margin-bottom: 5px;
}

.agenda-date {
    color: var(--grey-color);
    font-size: 12px;
}

#home-agenda {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

#home-agenda .agenda-list {
    margin: 15px 0 30px 0;
}

#hero-stream {
    width: 100%;
    position: relative;
}

#hero-stream:after {
    content: '';
    display: block;
    padding-bottom: 56%;
}

#hero-stream iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
}

#hero-stream-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

#hero-stream-content p {
    line-height: 1.5em;
}

#hero-stream-content p:last-of-type {
    margin-bottom: 0;
}

#home-profiles {
    display: flex;
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    #home-profiles .col:nth-child(n+3) .profile{
        display: none;
    }
}

.slides-wrapper .button {
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
}
@media only screen and (max-width: 800px) {
    .slides-wrapper .button {
        top: calc(100% + 50px);
    }
    .slides-nav {
        right: auto;
        left: 0;
    }
}

.home #hero .blocks {
    margin-top: 70px;
}

#home-profiles-title {
    margin-bottom: -70px;
}