.pbs-card {
    display: block;
    position: relative;
    background: #444;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
    height: 380px;
    box-shadow: 4px 8px 28px rgb(39 44 49 / 10%), 1px 3px 8px rgb(39 44 49 / 8%);
    margin: auto;
    overflow: hidden !important;
}

.pbs-card:hover {
    box-shadow: 0 0 1px rgba(39, 44, 49, 0.2), 0 3px 16px rgba(39, 44, 49, 0.25);
    transform: translate3D(0, -0.5px, 0);
}

.pbs-card .content-mask {
    display: inline-block;
	width: 100%;
    height: 100%;
    padding: 0.75em 0.75em 0.75em 2.5em;
    overflow: hidden;
    z-index: 5;
}

.pbs-card .horizontal {
    display: inline-block;
    position: relative;
    background: linear-gradient(to top right, rgba(19, 38, 89, 0.9) 50%, transparent 0);
    height: 100%;
    width: 20%;
    top: 2%;
    right: 0.8%;
    overflow: hidden;
}

.pbs-card:hover .content-mask {
    background: rgba(203, 14, 32, 0.9);
}

.pbs-card:hover .horizontal {
    background: linear-gradient(to top right, rgba(203, 14, 32, 0.9) 50%, transparent 0);
}

.pbs-card.card3 {
	background: url("page-bottom/cb.png");
    background-color: rgba(19, 38, 89);
    background-blend-mode: multiply;
	background-size: cover;
}

.pbs-card.card2 {
	background: url("page-bottom/ef.png");
    background-color: rgba(19, 38, 89);
    background-blend-mode: multiply;
	background-size: cover;
}

.pbs-card.card1 {
	background: url("page-bottom/ior.png");
    background-color: rgba(19, 38, 89);
    background-blend-mode: multiply;
	background-size: cover;
}

.pbs-card-category {
    display: inline-block;
    background: #CB0E20;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    min-width: 45px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(172, 28, 56, 0.1), 0 2px 6px rgba(172, 28, 56, 0.175);
    margin: 3vh 2px 2.5vh;
    padding: 6px 8px;
    cursor: pointer;
    z-index: 9;
}

.pbs-card:hover .pbs-card-category {
    background: rgba(19, 38, 89);
}

.pbs-card-category:hover {
    box-shadow: 0 0 1px rgba(10, 96, 58, 0.2), 0 3px 6px rgba(39, 44, 49, 0.25);
}

.pbs-card h1 {
    color: #ffffff;
    font-size: 2em;
    font-weight: 800;
    line-height: 1.2;
    height: 5.5rem;
    border-bottom: 2px solid rgba(204, 204, 204, 0.75);
    margin-top: 0;
    margin-bottom: 0.35em;
    padding-bottom: 5px;
    padding-top: 35px;
}

.pbs-card p {
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.4;
    width: 100%;
    margin-top: 0.3em;
    padding-left: 2px;
    z-index: 9;
}

.pbs-row {
    display: flex;
    flex-direction: row;
	justify-content: center;
}

.pbs-column {
    flex: 25%;
	margin-left: 10px;
    margin-right: 10px;
}

@media screen and (max-width: 600px) {
    .pbs-row {
        display: flex;
        flex-direction: column;
    }
}