.at-benefits__article {
    position: relative;
    margin-bottom: 1em;
    text-align: center;
}

.at-benefits__imageContainer {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: #62ecbc center center no-repeat;
    background-size: 55px 55px;
    transition: background ease-in-out .25s;
}

.at-benefits__articleTitle {
    transition: color ease-in-out .25s;
}

.at-benefits__text {
    font-size: .8em;
    text-align: center;
}

.at-benefits__url {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.at-benefits__article--withUrl:hover .at-benefits__imageContainer {
    background-color: rgba(98, 236, 188, .5);
    transition: background ease-in-out .25s;
}

.at-benefits__article--withUrl:hover .at-benefits__articleTitle {
    color: #ff3550;
    transition: color ease-in-out .25s;
}

@media (min-width: 600px) {
    .at-benefits__sectionsContainer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .at-benefits__article {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33% - 1.3em);
        flex: 0 1 calc(33% - 1.3em);
        width: calc(33% - 1.3em);
    }
}