main .block-club {
    background-color: #FFF;
}
.club .informProduct {
    border: 1px solid #f3f3f3;
}
.club .informProducts .informProduct__img {
    position: relative;
}
.club .informProducts .informProduct__img img {
    border-radius: 15px 15px 0 0;
}
.club .informProduct .informProduct__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
}
.club .informProducts > .informProduct .informProduct__content {
    background-color: #fff;
    transition: all 0.5s ease 0s;
    width: 100%;
}
.club .informProduct:hover .informProduct__img::after {
    background-color: rgba(0, 0, 0, 0.2);
}
.club .informProduct:hover .informProduct__content {
    background-color: #f2f7fa;
}
.club .informProduct:nth-child(1) {
    margin-bottom: 0;
}
.club .informProducts .informProduct__title:hover {
    color: unset!important;
}