.programs .container {
    max-width: 1600px;
}
.programs .flexed {
    margin-bottom: 1.5em;
}
.program {
    flex-basis: 19%;
}
.program a {
    display: block;
    position: relative;
    background: #FFF;
    padding-bottom: 50px;
    height: 100%;
}
.program span {
    display: block;
}
.program span.program-photo {
    line-height: 0;
    overflow: hidden;
}
.program span.program-photo img {
    width: 100%;
    transition: all ease 0.3s;
}
.program span.program-title {
    padding: 15px 20px;
    font-family: 'Arvo', serif;
    font-weight: 400;
    color: var(--main-blue);
}
.program span.learn-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px 15px;
    font-size: 1.1875rem;
    color: var(--gray, #444444);
    transition: all ease 0.3s;
}
.program span.learn-more i.fas {
    font-size: 0.875rem;
}
.program a:hover span.learn-more,
.program a:focus span.learn-more {
    color: var(--main-blue);
    text-decoration: underline;
}
.by .program a:hover span.learn-more,
.by .program a:focus span.learn-more {
    color: #000;
}
.program a:hover span.program-photo img,
.program a:focus span.program-photo img {
    transform: scale(1.1);
}

.services {
    position: relative;
    box-shadow: inset 0 0 50px rgb(0 0 0 / 100%);
    overflow: hidden;
}
.services-bg {
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.services .container {
    max-width: 1200px;
    padding: 3em 4em 1.5em;
    margin-bottom: 1.5em;
    background: #FFF;
    position: relative;
    z-index: 100;
}
.services h2:after {
    content: '';
    display: block;
    margin: 1em 0;
    width: 225px;
    border-bottom: 2px solid var(--main-blue);
}
.services .columns {
    columns: 2;
    column-gap: 80px;
    margin-bottom: 1.5em;
}

.services-list .container {
    max-width: 1200px;
}
.services-list .flexed {
    align-items: flex-start;
    margin-bottom: 1.5em;
}
.services-list-text {
    flex-basis: 48%;
}
.services-list-text h2:after {
    content: '';
    display: block;
    margin: 1em 0;
    width: 225px;
    border-bottom: 2px solid var(--yellow);
}
.services-list-text ul:last-of-type,
.services-list-text p:last-of-type {
    margin-bottom: 0;
}
.services-list-text li {
    margin-bottom: 10px;
}
.services-list-photo {
    flex-basis: 40%;
    border: 8px solid #FFF;
    line-height: 0;
}
.services-list-photo img {
    width: 100%;
}

.call-to-action.row {
    text-align: center;
    padding: 6em 0 4.5em;
}
.call-to-action .container {
    max-width: 860px;
}
.call-to-action h2 {
    line-height: 45px;
    margin-bottom: 2em;
}
.call-to-action a.button {
    border: 1px solid #000;
}
.call-to-action a.button:nth-of-type(2) {
    background: var(--yellow);
    color: #000;
    margin-left: 20px;
}
.call-to-action a.button:nth-of-type(2):hover,
.call-to-action a.button:nth-of-type(2):focus {
    background: var(--light-blue);
    color: #FFF;
}
.by .call-to-action a.button:nth-of-type(2):hover,
.by .call-to-action a.button:nth-of-type(2):focus {
    background: #FFF;
    color: #000;
}

@media screen and (max-width: 1345px){
    .program {
        flex-basis: 31%;
        margin: 0 1% 1.5em;
    }
    .programs .flexed {
        justify-content: center;
    }
}
@media screen and (max-width: 1023px){
    .program {
        flex-basis: 48%;
        margin: 0 0 1.5em;
    }
    .programs .flexed {
        justify-content: space-between;
    }
    .services .container {
        margin: 0 30px 1.5em;
        padding: 3em 2em 1.5em;
    }
}
@media screen and (max-width: 900px){
    .services-list .flexed {
        display: block;
    }
    .services-list-text {
        margin-bottom: 1.5em;
    }
    .services-list-photo {
        max-width: 600px;
        margin: 0 auto 1.5em;
    }
}
@media screen and (max-width: 767px){
    .services .columns {
        columns: 1;
    }
}
@media screen and (max-width: 600px){
    .programs .flexed {
        display: block;
    }
    .program span.program-title {
        font-size: 1.25rem;
    }
    .program span.learn-more {
        font-size: 1rem;
    }
}
@media screen and (max-width: 460px){
    .call-to-action a.button,
    .call-to-action a.button:nth-of-type(2) {
        display: block;
        width: 90%;
        text-align: center;
        margin: 0 auto 1.5em;
    }
}