@media (min-width: 992px) {
    .section--hero .hero-content {
        max-width: 500px;
        margin: 24px 0;
    }
}

.hero .hero-content {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    margin: 24px;
    box-shadow: 0 2px 20px rgb(0 0 0 / 21%);
    z-index: 1;
}

.hero .hero-content h3 {
    color: #9FCA3B;
}

.hero .lead {
    color: black;
    font-size: 14px;
    margin-top: 16px;
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 2rem;
    }
}

.section--events-news .column-highlight .card-title {
    font-size: 1rem!important;
}

.section--events-news .column-highlight .card-img {
    height: 200px;
}


/**
 *
 * news and events
 *
 */

.section-header-events {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header-events .section-title {
    display: grid;
    grid-template-columns: auto 1fr;
    display: flex;
    flex: 1;
    position: relative;
}

.section-header-events .section-title:after {
    content: "";
    align-self: center;
    width: 100%;
    flex: 1 1 100%;
    height: 1px;
    margin: 0 20px;
    background: currentColor;
}

a {
    color: #016484;
    text-decoration: none;
    background-color: transparent;
}

.card .card-title {
    font-weight: bold;
    position: relative;
    margin-bottom: 24px;
    color: var(--color);
}

.card .card-title:after {
    content: "";
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 20%;
    height: 2px;
    transition: all 0.3s;
    background-color: #9FCA3B;
}

.badge-primary-event {
    color: #fff;
    background-color: #1ab4bb;
    padding: 0.75em 1em;
    margin: 18px 0px 10px 0px;
}

.date {
    display: flex;
    margin-bottom: 16px;
}

.material-icons {
    font-size: 18px!important;
}

.date .material-icons {
    margin-right: 8px;
}

.news {
    border-bottom: 1px solid #ccc;
}


/**
 *
 * blockquote section
 *
 */

.section--blockquotes {
    display: flex;
    flex-direction: column;
}

.blockquotes-wrapper {
    background-color: #1ab4bb;
    padding: 80px 0;
    color: white;
}

.blockquotes-wrapper blockquote {
    margin-bottom: 0;
    font-size: 1.875rem;
    position: relative;
}

@media (max-width: 1200px) {
    .blockquotes-wrapper blockquote {
        font-size: calc(1.3125rem + 0.75vw);
    }
}


/* .blockquotes-wrapper blockquote:before {
    font-family: "Material Icons";
    content: "format_quote";
    transform: rotateZ(-180deg);
    display: inline-block;
    font-size: 10.375rem;
    position: absolute;
    top: 0;
    line-height: 1px;
    opacity: 0.3;
    left: 0;
} */

@media (max-width: 1200px) {
    .blockquotes-wrapper blockquote:before {
        font-size: calc(2.1625rem + 10.95vw);
    }
}

.card--variant {
    overflow: hidden;
}

.card--variant .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 769px) {
    .card--variant .card-img {
        position: absolute;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.single-strategy {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.single-strategy-inner {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.section--programs .card-title {
    font-size: 1.25rem;
}


/**
 *
 * card
 *
 */

.card {
    --color: var(--gray-dark);
    border-radius: var(--radiius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transition-duration: 1000ms !important;
}

.card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3) !important;
}

.card-body {
    padding: 32px;
}

.card.card--hovered:hover .card-title:after {
    width: 100%;
}

.card .card-title {
    font-weight: bold;
    position: relative;
    margin-bottom: 24px;
    color: var(--color);
}

.card .card-text {
    color: var(--color);
}

.card .icon .material-icons {
    font-size: 50px;
    color: var(--primary);
}

.section--members {
    padding: 0px 0px 80px 0px;
}

.section--members .card {
    margin: 16px 0px;
    height: unset;
    --color: var(--gray-dark);
    --radius: 16px;
    border: none;
    border-radius: var(--radius) var(--radius) 16px 16px;
    overflow: hidden;
}

.section--members .card-body .card-title,
.section--members .card-body p {
    text-align: center;
}

.section--members .card-body {
    padding: 24px;
}

.section--members .card .card-title:after {
    content: "";
    position: unset;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    transition: unset;
    background-color: unset;
}