.icons-cards {
    position: relative;
    z-index: 1;
}

.icons-cards--homepage {
    background: #F6F6F6;
    padding: 57px 0 100px 0;
}

.icons-cards--homepage::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 27px;
    background: #fff;
    z-index: -1;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.icons-cards--homepage::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 20px;
    background: #fff;
    z-index: -1;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.icons-cards__left {
    text-align: center;
}

.icons-cards__left i {
    font-size: 42px;
    color: #37CE2E;
    font-weight: normal;
    line-height: 1em;
    margin-bottom: -5px;
}

.icons-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 172px;
    background: #292929;
    border-radius: 16px 0 16px 0;
    margin: 0 auto;
    border: none;
    padding: 29px 16px 29px 16px;
}

.icons-card__no-link {
    pointer-events: none;
}

.icons-card__details {
    text-align: center;
    width: 100%;
}

.icons-card__img {
    padding-bottom: 22px;
    color: #37CE2E;
    font-size: 53px;
    line-height: 1em;
}

.icons-card__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.333em;
    text-transform: capitalize;
    max-height: 70px;
    overflow: hidden;
}

.icons-cards__bottom {
    padding-top: 32px;
}

.icons-cards__left h2 {
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .icons-cards--homepage {
        padding: 102px 0 126px 0;
    }
    
    .icons-cards--homepage::before {
        height: 75px;
    }
    
    .icons-cards--homepage::after {
        height: 75px;
    }
    
    .icons-cards__left {
        padding-left: 58px;
        padding-right: 58px;
    }

    .js-icons-card {
        margin: 0 -8px;
        padding-left: 58px;
        padding-right: 58px;
    }

    .icons-card-item {
        padding: 0 8px;
    }
    
    .icons-card {
        width: 100%;
        height: 172px;
    }
}

@media (min-width: 1200px) {
    .icons-cards--homepage {
        padding: 162px 0 272px 0;
    }
    
    .icons-cards--homepage::before {
        height: 127px;
    }
    
    .icons-cards--homepage::after {
        height: 136px;
    }
    
    .icons-cards__left {
        padding-left: 0;
        padding-right: 0;
    }

    .js-icons-card {
        margin: 0 -16px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .js-icons-card .fx-slide {
        display: block;
    }

    .icons-card-item {
        padding: 0 16px 32px;
        width: 33.33%;
    }

    .icons-card:hover {
        border: none;
        background: #292929;
    }
    
    .icons-card {
        height: 220px;
        padding: 0 20px 0 20px;
        position: relative;
        border: none;
    }

    .icons-card::before {
        content: '';
        position: absolute;
        top: 16px;
        left: 16px;
        opacity: 0;
        width: 0;
        height: 0;
        z-index: -1;
        border-radius: 16px 0 16px 0;
        transition: all .2s;
    }

    .icons-card:hover::before {
        height: 100%;
        background: linear-gradient(135deg,  rgba(86,224,78,1) 0%,rgba(55,206,46,1) 100%);
        width: 100%;
        opacity: 1;
    }

    .icons-cards__flex {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .icons-cards__right {
        width: 724px;
    }

    .icons-cards__left {
        width: calc(100% - 724px);
        padding-right: 32px;
        text-align: left;
    }

    .icons-card__title {
        font-size:  22px;
        max-height: 90px;
    }

    .icons-card__img {
        padding-bottom: 19px;
        font-size: 92px;
        height: 111px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icons-card__img i.icon-eyedropper,
    .icons-card__img i.icon-copper {
        font-size: 83px;
    }
    
    .icons-cards__left h2 {
        padding-bottom: 6px;
    }

    .icons-cards__left p {
        margin: 0 0 26px 0;
    }
}