
.riders-page-hero {
    width: 100%;
    height: 600px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    background-size: cover;
    background-position: 50% 50%;

    margin-bottom: 20px;

    position: relative;
}

.riders-page-hero .riders-page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;

    background: rgba(0,0,0,.3);

    width: 100%;
    height: 100%;
}

.riders-page-hero .riders-page-hero__title {
    color: white;
    font-family: "Raleway", Sans-serif;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2.2em;
    letter-spacing: 5px;

    z-index: 1;

    padding: 100px 0;
}

.riders-sections {
    margin-top: 60px;
}

.riders-sections-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.riders-page-blocks {
    width: 100%;
    height: auto;

    padding: 50px 0;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.rider-section-title {
    padding: 10px;
    margin: 0 10px;
    color: rgba(8, 45, 104, 1);
    font-size: 2em;
}

.rider-cont {
    width: calc(25% - 20px);
    height: 350px;

    margin: 0 10px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.rider-cont .ordinal-no {
    vertical-align: super;
    font-size: 10px;
}

.rider-cont__media {
    height: 400px;

    cursor: pointer;

    position: relative;

    overflow: hidden;
}

.rider-cont__media-bg {
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: 50% 50%;

    -webkit-transition: all .5s;

    -o-transition: all .5s;

    transition: all .5s;
}

.rider-cont__media:hover .rider-cont__media-bg {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.rider-cont__media__btn {
    position: absolute;
    width: 100px;
    height: 100px;

    top: calc(50% - 50px);
    left: calc(50% - 50px);

    pointer-events: none;
}

.rider-cont__media__btn img {
    width: 100%;
    height: 100%;
}

.rider-cont__name {
    padding: 7px 10px;
    color: white;
    background-color: rgba(8, 45, 104, 1);

    cursor: pointer;
}

.rider-cont__sub {
    font-weight: bold;
}

.rider-cont__modal-name {
    padding: 15px 0;

    margin: 0;
}

.rider-media-modal,
.rider-modal {
    display: none;
}

.rider-modal__wrapper {
    width: 50%;
    margin: 0 auto;

    height: 80vh;

    overflow-y: auto;

    padding: 30px;
    background-color: white;
}

.rider-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;

    cursor: pointer;

    width: 30px;
    height: 30px;

    background-image: url('http://www.windrushfoundation.org.uk/videos/close.svg');
}

.rider-modal__wrapper .rider-cont__picture {
    width: 100%;
    height: 450px;

    background-size: cover;
    background-position: 50% 50%;
}

.rider-modal.is-active {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    z-index: 15000;

    background: rgba(8, 45, 104, .8);

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.rider-media-modal .rider-modal-media__wrapper {
    width: 50%;
    margin: 0 auto;

    padding: 30px;
    background-color: white;
}

.rider-media-modal .rider-modal-media__wrapper video {
    width: 100%;
    height: 380px;
}

.rider-media-modal.is-active {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    z-index: 15000;

    background: rgba(8, 45, 104, .8);

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media screen and (max-width: 1200px) {

    .riders-page-blocks {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .rider-cont {
        width: 49%;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

}

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

    .riders-page-hero {
        height: 400px;
    }

    .riders-page-hero .riders-page-hero__title {
        font-size: 37px;
        line-height: 1.7em;
    }

    .riders-page-blocks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        padding: 25px 0;
    }

    .rider-cont {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .rider-modal__close {
        top: 10px;
        right: 10px;
    }

    .rider-modal__wrapper {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }

    .rider-modal.is-active {
        height: 100vh;
        padding: 15px;
        padding-top: 50px;
    }

    .rider-modal__wrapper {
        padding: 15px;
    }

    .rider-media-modal .rider-modal-media__wrapper {
        width: 95%;
    }

    .rider-media-modal .rider-modal-media__wrapper video {
        height: 40vh;
    }

}

.ta-news-wrapper {
    width: 100%;
    height: auto;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;

    margin-top: 90px;
    margin-bottom: 50px;

    position: relative;
}

.ta-news-wrapper .ta-news-list {
    width: 55%;
    margin-right: 10%;
    margin-left: 5%;
}

.ta-news-wrapper .widget-tabbed-archive {
    width: 30%;
}

.ta-news-wrapper .ta-news {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid lightgrey;
}

.ta-news-wrapper .ta-news__title {
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #6b6b6b;
}

.ta-news-wrapper .ta-news__date {
    font-family: "Poppins", Sans-serif;
    line-height: 1.3em;
    font-size: 12px;
    margin-bottom: 13px;
    color: #adadad;
    font-weight: 400;
}

.ta-news-wrapper .ta-news__read-more {
    color: #082d68;
    font-family: "Poppins", Sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    font-weight: 500;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .ta-news-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .ta-news-wrapper .ta-news-list {
        width: 100%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin: 0;
    }
    .ta-news-wrapper .widget-tabbed-archive {
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .ta-news-wrapper .ta-wrapper {
        margin-bottom: 60px;
    }
    .ta-news-wrapper .ta-tabs {
        margin-left: 0;
    }
}