body {
    background: url('../images/mainbackground.png') no-repeat;
    background-size: cover;
    color: #fff;
}

[x-cloak] { display: none !important; }

.container {
    max-width: 1024px;
    margin: auto;
}

h1 {
    margin: 10px 0;
}

.grid-view {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: center;
}

.grid-view__item {
    position: relative;
    transition: transform 500ms;
    transform-origin: 50% 0;
    border: 4px solid transparent;
    border-radius: 8px;
    margin: 0 0 3.5rem 0;
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
    padding: 0 .3rem
}

.grid-view__item:hover .image-container::before {
    border: 1px solid #fff;
    border-radius: 8px;
}

.grid-view .image-container {
    position: relative
}

.grid-view .image-container::before {
    content: '';
    height: 100%;
    width: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    opacity: 1;
    border-radius: 0
}

.grid-view .image__photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2)
}

.media {
    border-bottom: 1px solid #001b8a;
}

.media .media-left {
    width: 210px;
}

.media .media-left .play-icon {
    background: rgba(51, 51, 51, 0.8) url('../images/play.svg') no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 40px 40px !important;
}

.media-body .count {
    color: #f7b500;
}

.hero {
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
    background: rgba(1, 4, 27, 0.75);
    width: 100%;
    height: 100%;
}

.fade-bkgnd {
    background-color: rgba(1, 4, 27, 0.75);
    opacity:1;
}