/* mainPageImage class helps better position one of the main images on index.html */
.mainPageImage {
    padding: 0 !important;
}

/* stops cropping on main image on index.html */
.img-container img {
    overflow: visible !important;
    top: 0 !important;
    height: 100% !important;
}

.video {
    /*padding-bottom: 20px;*/
    margin-bottom: 60px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    width: 100%;
}
.videoTitle {
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}

.video figure {
    padding-bottom: 25px;
}
.video figure a {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 0;
}

/* Video thumbs rollover effects */

.video img {
    width: 100%;
    opacity: 1;
}

.video img:hover, .video img:active, .video img:focus {
    opacity: 0.75;
}

/* Media Queries - This is the responsive grid. */
/* ------------- small devices ------------------ */
@media only screen and (min-width: 576px) {


}

/* ------------- medium devices ------------------ */
@media only screen and (min-width: 768px) {
    .videoTitle {
        font-size: 1.4em;
    }
}

/* ------------- large devices ------------------ */
@media only screen and (min-width: 992px) {
    .videoTitle {
        font-size: 1.5em;
    }
}

/* ------------- extra large devices ------------------ */
@media only screen and (min-width: 1200px) {


}








