.access.container {
    position: relative;
}

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

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

.access_link:after{
    background: #F5F5F5;
    border-radius: 10px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: all 0.4s ease;
    top: 0;
    width: 100%;
    z-index: -1;
}

.access_link:hover:after{
    background: #E31F26;
}

.access_item {
    border-radius: 10px;
    height: 100%;
    padding: 18px 13px 18px 13px;
}

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

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

.access_hover {
    display: none;
}

.access_link:hover .access_hover{
    display: block;
}

.access_link:hover .access_icon{
    display: none;
}

.access_title {
    color: #000;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    transition: all 0.4s ease;
}

.access_link:hover .access_title{
    color: #fff;
}

img.access_hover {
    filter: brightness(200);
}


@media(min-width:768px){

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

    .access_info img {
        margin: 0 10px 0 0;
    }
}

@media(min-width:992px){
    .access_info img {
        margin: 0 15px 0 0;
    }
}



@media (min-width: 1200px){

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


}
