.categories_conatiner {
    background-color: #ffffff;
    padding: 5px;
    height: 170px;
    box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.info_box {
    background: rgb(34, 193, 195);
    background: linear-gradient(180deg, rgba(34, 193, 195, 1) 0%, rgba(5, 130, 131, 1) 100%);
    color: #ffffff;
}

.hover {
    position: relative;
    transition-duration: 0.3s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition: all .5s ease-out;
}

.hover:hover {
    transform: translateY(-6px);
    animation-name: hover;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    border-radius: 70px 0;
    transition: all .5s ease-out;
}
.text-center{text-align:center !important;
font-size:13px;
    
}