@charset "UTF-8";
.intro {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.8;
    padding: 2em 2em;
    border-radius: .25em;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    text-wrap-style: balance;
}
.intro:after, .intro:before {
    content: '';
    position: absolute;
    width: 90%;
    height: 0.25em;
    background-color: #FFC629;
    bottom: 1.25em;
    transform: skewX(-30deg);
    justify-content: center;
    flex-flow: column;
}

.intro:before {
    bottom:initial;
    top: 1.25em;
}

@media (min-width: 768px) {
    .intro {
        line-height: 2;
        padding: 2em 5em;
    }
}


.cards {
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    list-style: none;
    justify-content: center;
    margin: 0;
}

.cards > *{
    flex:1 1 300px;
    max-width:250px;
    background-color:#F5F5F5;
    padding:1em;
    border-radius: 0.5em;
    text-align: center;
    display: flex;
    flex-flow: column;
    font-size: 1em;
    text-wrap-style: balance;
}
.cards > * > svg {
    display: block;
    margin-inline: auto;
    font-size: 3em;
    margin-bottom: 0.3em;
    color: #00A7E1;
}
.cards > * > strong{
    color: #12284C;
    font-weight: 900;
    font-size: 1.3em;
    text-transform: uppercase;
    margin-bottom: 1em;
    line-height: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    text-wrap-style: balance;
}

.cards > * > strong:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 0.45em;
    background-color: #FFC629;
    bottom: -0.8em;
    transform: skewX(-30deg);
    transition: all .2s;
}

.cards ul{
    margin-top: 1em;
}

.cards ul li {
    text-align: initial;
    font-size: 1em;
    line-height: 1.2;
}

span.hilite {
    color: #00A7E1;
    font-size: 2em;
    font-weight: 300;
}

.listy{
    list-style-type: none;
    margin-left: 1em;
    padding-left: 2em;
    text-indent: -1.8em;
}

.listy strong {
    font-weight: 600;
    font-size: 1.2em;
    display: inline;
}

.slim .listy{
    margin: 0 0 .75em 1em;
}

.listy > li{
    break-inside: avoid;
    line-height: 1.25;
    margin-bottom: 0.75em;
}


.listy > li:before {
  content: '';
  display: inline-block;
  width:.7em;
  height:.5em;
  margin-right:.8em;
  background-color: #00A7E1;
  transform: skewX(-30deg);
}

.slim .listy > li::before{
    margin-right: 1.3em;
}

.listy ul {
    text-indent: 0em;
}