.example-navigation {
    text-align: center;
}

.example-navigation a {
    display: inline-block;
    margin: 5px;
    border: 2px solid #004e98;
    padding: 20px 30px;
    color: #666464;
    font-weight: bold;
}

.example-navigation .active, .example-navigation a:hover {
    background: #bcdcff;
}

.example-flow-diagram {
    margin: 0 auto 40px;
    width: 90%;
}

.example-spec-boxes {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.example-spec {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    border: 4px solid;
    width: 48%;
}

.example-spec-max {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    border: 4px solid;
    width: 98%;
}

.example-spec-blue {
    border-color:#004e98;
}

.example-spec-red {
    border-color:#aa1717;
}

.example-spec-icon {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.example-spec-circle {
    border: 3px solid white;
    border-radius: 15px;
    width: 15px;
    height: 15px;
}

.example-spec-triangle {
    position: relative;
    margin-right: 18px;
    width: 15px;
    height: 15px;
}

.example-spec-triangle:before,
.example-spec-triangle:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.example-spec-triangle:before {
    top: 0;
    border-color: transparent transparent #ffffff transparent ;
    border-width: 0 14px 21px;
}

.example-spec-triangle:after {
    top: 6px;
    left: 6px;
    border-color: transparent transparent #aa1717 transparent;
    border-width: 0 8px 12px;
}

.example-spec-title {
    margin: 0;
    padding:  10px 10px 10px 15px;
    color: #ffffff;
    font-size: 22px;
}

.example-spec-blue .example-spec-title {
    background: #004e98;
}

.example-spec-red .example-spec-title {
    background: #aa1717;
}

.example-spec-content {
    padding: 10px 25px;
}

.example-spec-list li {
    list-style-type: disc;
    margin: 8px 0 8px 15px;
}

.example-spec-subtitle {
    margin: 15px 0 5px 0;
}

.example-spec-blue .example-spec-subtitle, .example-spec-blue .example-spec-subtitle a {
    color: #004e98;
    font-size: 16px;
}

.example-spec-red .example-spec-subtitle, .example-spec-red .example-spec-subtitle a {
    color: #aa1717;
    font-size: 16px;
}

.example-spec-subtitle a:hover {
    color: #EA5504;
}

.fa-arrow-right {
    font-size: 0.85em;
}

.example-spec-content p {
    margin: 5px 0 15px 0;
}

.example-products {
    margin-bottom: 30px;
}

.example-product {
    display: inline-block;
    margin: 0 20px 20px;
    text-align: center;
}

.example-product-title {
    margin: 0 0 5px;
    color: #004e98;
}

.example-product-image {
    width: auto;
}

@media only screen and (max-width: 640px) {
    .example-spec-container {
        width: 100%;
    }
}