.programs-page {
    padding: 50px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}
.programs-page .banner > div > div > div {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.programs-page .banner > div > div > div:last-of-type {
    justify-content: flex-end;
}
.programs-page .banner > div:first-of-type {
    padding: 0 20px 30px;
}
.programs-page .banner .heading {
    font-size: 35px;
    font-weight: 700;
    color: #03498d;
}
.programs-page .banner .description {
    margin-top: 20px;
    font-size: 15px;
}
.programs-page .banner img {
    width: 250px;
}
.programs-page .category-banner .category {
    display: none;
    min-height: 400px;
    align-items: center;
    background-color: #2699fb;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
}
.programs-page .category-banner .category > div:first-of-type {
    height: 100%;
    padding: 0;
    height: 400px;
    background-size: cover;
    background-position: center;
}
.programs-page .category-banner .category .heading {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    padding-left: 20px;
	padding-right: 20px;
}
.programs-page .category-banner .category .description {
    font-size: 15px;
    color: #fff;
    margin-top: 20px;
    padding-left: 20px;
	padding-right: 20px;
}
.programs-page .programs-filter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0 0 10px 0;
}
.programs-page .programs-filter ul li {
    position: relative;
    height: 50px;
    width: 250px;
    text-align: center;
    margin-bottom: 10px;
}
.programs-page .programs-filter ul label,
.programs-page .programs-filter ul input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.programs-page .programs-filter ul input[type="radio"] {
    opacity: 0.01;
    z-index: 100;
}
.programs-page .programs-filter ul input[type="radio"]:checked+label,
.programs-page .programs-filter .checked+label {
    background: #f55e1d;
    color: #fff;
    font-weight: 600;
}
.programs-page .programs-filter ul label {
    padding: 13px;
    background-color: #e9ebf0;
    border-radius: 8px;
    margin: 0 10px;
    cursor: pointer;
    z-index: 90;
}
.programs-page .programs-list .no-posts-found {
    display: none;
    text-align: center;
    margin: 100px 0 50px;
}
.programs-page .programs-list .program {
    padding: 20px;
}
.programs-page .programs-list .program a {
    text-decoration: none;
    color: #000;
}
.programs-page .programs-list .program .program-content {
    background-color: #ffffff;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.programs-page .programs-list .program .program-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.programs-page .programs-list .program .program-heading {
    font-weight: 700;
    font-size: 20px;
    margin: 25px 40px 20px;
    color: #0e5192;
}
.programs-page .programs-list .program .program-description {
    font-size: 15px;
    margin: 0 40px 30px;
}
@media (max-width: 768px) {
    .programs-page .banner {
        height: 100%;
        margin-bottom: 20px;
    }
}