.help.container {
    position: relative;
}

.help_item {
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    /* background: #fff; */
    /* box-shadow: 0px 0px 8px #00000029; */
    height: 100%;
    padding: 13px 13px 13px 13px;
}

.help_info {
    align-items: center;
    /* margin: 0 0 20px 0; */
    text-align: center;
}

.help_info img {
    display: block;
    margin: 0 auto 7px auto;
    width: 35px;
}

.help_title {
    color: #000;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.help_link{
    border-radius: 10px;
    color: #000;
    display: block;
    /* font-size: 14px;
    font-weight: 400;
    line-height: 18px; */
    position: relative;
    text-decoration: none;
    transition: all 0.4s ease;
}

.help_link:hover{
    text-decoration: none;
}

.help_link:after{
    background: #F5F5F5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.4s ease;
    top: 0;
    width: 100%;
    z-index: -1;
}



@media (min-width: 1200px){

    .help_item {
        border: none;
        border-radius: 25px;
        padding: 20px 13px 20px 13px;
    }

    .help_info {
        display: flex;
        text-align: left;
    }

    .help_info img {
        margin-right: 10px;
        width: 50px;
    }

    .help_link:hover:after{
        opacity: 1;
    }
}
