.items-item {
    background-color: #fff;
    border-radius: 20px;
    flex-flow: column;
    width: 27rem;
    min-height: 26rem;
    padding: 2em;
    display: flex;
    box-shadow: 7px 7px 10px 5px rgba(0, 0, 0, .25);
}
.items-item__link:hover {
    color: #333;
}
.items-item__link {
    float: left;
    color: #333;
    flex-flow: column;
    flex: 1;
    text-decoration: none;
    display: flex;
}
.items {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: wrap;
    justify-content: center;
    display: flex;
    font-family: Arial, sans-serif;
}
.item-header {
    justify-content: space-between;
    align-items: center;
    display: flex;
    height: 10%;
}

.item-header__icon {
    width: 3.5rem;
}
.item-header__icon.icon__lime {
    color: #c3d589;
}

.item-header__icon.icon__fuchsia {
    color: #bb2674;
}
.item-header__type {
    color: rgba(95, 95, 95, .8);
    font-size: 1.6rem;
    font-weight: 400;
}
.item-content {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    margin-top: 1em;
    padding-bottom: 1em;
    display: flex;
    height: 70%;
}
.item-footer {
    flex-flow: column;
    margin-top: auto;
    display: flex;
    height: 20%;
}

.item-footer__text {
    color: rgba(95, 95, 95, .86);
    border-bottom: 3px solid #bfd281;
    margin-bottom: 1em;
    padding-bottom: .5em;
    font-size: 1.4rem;
    display: flex;
}

.item-footer__bonus {
    color: #86589e;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
}

.items-content__title {
    text-align: left;
    margin-bottom: 2em;
    font-size: 1.4rem;
    line-height: 120%;
}

.items-content__text {
    text-align: left;
    font-size: 1.2rem;
    line-height: 120%;
}


.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
.w-clearfix {
    margin: 0;
}
.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    display: table;
    padding-right: 15px;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-clearfix:after {
    clear: both;
}
.w-embed:before,
.w-embed:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-embed:after {
    clear: both;
}
.items-item__link:hover {
    color: #333;
}
@media screen and (max-width: 479px) {
    .items-item {
        border-radius: 20px;
        width: 95vw;
        min-height: auto;
    }
}