.numberCircle {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    border: 2px solid #666;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.section-header-icon {
    width: 50%;
    text-align: right;
    margin-bottom: 12px;
}

.home-heading-icons {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: 1rem;
}

.home-quick-info {
    margin-bottom: 4rem;
    padding: 0;
}

.home-quick-info h4 {
    margin-bottom: 6px;
}

.home-quick-info h4 i {
    margin-right: .5rem;
}

.home-quick-info p {
    margin-left: 1rem;
    text-indent: 1rem;
}

.heading-block h2 {
    letter-spacing: 2px;
}

.heading-block h2 + span {
    font-size: 20px;
}

.sales-points {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    flex-flow: wrap;
    margin-bottom: 4rem;
}

.sales-points:not(:last-child) {
    padding-bottom: 4rem;
    border-bottom: 1px solid #aaa;
}

.sales-points .store {
    margin: 1rem 2rem;
    width: 250px;
}

.sales-points .store .logo-container,
.sales-points .store .logo-container > a {
    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.sales-points .store img {
    object-fit: contain;
}

.news-articles {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.news-articles .card {
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 10px;
    padding: 1rem;
    display: inline-block;
    width: 30%;
    max-width: 95vw;
    margin: 1rem;
}

.news-articles .card .card-img {
    max-width: 100%;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(0,0,0,.25);
}

.news-articles .card .card-header { 
    border-bottom: 1px solid rgba(0,0,0,.25);
    padding: .75rem 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-articles .card .card-header .icon-external-link { 
    float: right;
}

.news-articles .card .card-footer {
    color: rgba(0,0,0,.5);
}

.news-articles .card .card-footer .article-date {
    float: right;
}

@media (min-width: 576px) {
    .home-quick-info {
        padding: 0 2rem 0 2rem;
    }
    .home-quick-info p {
        margin-left: 3rem;
    }

    
}

@media (max-width: 767px) {
    .sales-points-container {
        width: 85vw !important;
    }
    .sales-points .store {
        margin: 1rem;
        width: 200px;
    }
    .news-articles .card {
        width: 100%;
    }
}