.pager {
    display: none;
}

.views-entity-embed>div:first-child {
    margin-left: -10em;
    margin-right: -10em;
}

.views-entity-embed div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-content: center;
}

.cluster-container {
    flex: 0 0 230px;
    padding-left: 1em;
    padding-right: 1em;
    margin: .8em;
    background-color: white;
    min-width: 257px;
    min-height: 193px;
    max-height: 193px;
    overflow: hidden;
    position: relative;
    will-change: transform;
    border-radius: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.cluster-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #163683;
    opacity: .4;
    transition: .4s ease;
    z-index: -1;
}

.cluster-container:hover::before {
    opacity: 0.6;
}

.cluster-container h3 {
    display: block;
    width: 100%;
    font-size: 1.125em;
    transition-duration: .4s;
    color: #fff;
}

.cluster-container h3 a {
    color: #fff;
    pointer-events: none;
}

.cluster-container h3 a:hover {
    color: #fff;
    text-decoration: none;
}

.cluster-container:hover {
    cursor: pointer;
    transition-duration: .4s;
    box-shadow: 10px 10px 5px -5px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 5px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 5px -5px rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
}

.typography ul li:before {
    content: none;
}

.program-titles {
    font-size: 0;
}

.views-field.views-field-field-cluster-image {
    display: none;
}

.views-field.views-field-field-cluster-icon {
    width: 20%;
    position: absolute;
    left: 12px;
    bottom: 12px;
}

@media only screen and (max-width:1199px) {
    .views-entity-embed>div:first-child {
        margin-left: unset;
        margin-right: unset;
    }
}