.red.container {
    position: relative;
}

.red_link{
    border-radius: 10px;
    color: #000;
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.4s ease;
}

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

.red_link:after{
    background: #E31F26;
    border-radius: 25px;
    box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.15), 0px -8px 25px 0px #740202 inset, 0px 7px 17px 0px rgba(255, 255, 255, 0.25) inset;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: all 0.4s ease;
    top: 0;
    width: 100%;
    z-index: -1;
}

.red_link:hover:after{
    background: #000;box-shadow: none;
}

.red_item {
    border-radius: 25px;
    height: 100%;
    padding: 18px 13px 18px 13px;
}

.red_info {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.red_info img {
    margin: 0 0 15px 0;
    width: 40px;
}

.red_title {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    transition: all 0.4s ease;
}

@media(min-width:768px){

    .red_item {
        padding: 13px 13px 13px 13px;
    }

}

@media(min-width:992px){
   
}

@media (min-width: 1200px){

    .red_item {
        padding: 30px 13px 30px 13px;
    }


}