.xfarm_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: stretch;
    row-gap: 20px;
}

.xfarm_row  .xfarm_col {
    width: 23%;
    padding: 20px;
    border: 2px solid #62a403;
    border-radius: 20px;
    transition: 0.2s ease;
    color: #000;
}
.xfarm_row  .xfarm_col .xfarm_info i{
    color: #62a403;
    padding-right: 10px;
    transition: 0.2s ease;
}

.xfarm_distributed p {
    margin: 0;
    padding: 2px 0;
    text-align: center;
    border: 2px solid #62a403;
    border-radius: 10px;
    font-weight: 600;
    background: #62a403;
    color: #fff;
    transition: 0.2s ease;
}

.xfarm_row .xfarm_col:hover{
    background-color: #62a403;
    color: #fff;
}
.xfarm_row .xfarm_col:hover > .xfarm_distributed p{
    background-color: #fff;
    color: #62a403;
}
.xfarm_row .xfarm_col:hover > .xfarm_name h5,
.xfarm_row .xfarm_col:hover > .xfarm_info i{
    color: #fff;
}

@media screen and (max-width:991px){
    .xfarm_row {
        display: block;
    }
    .xfarm_row  .xfarm_col {
        width: 100%;
        margin: 20px 0;
    }
}