.practices-link {
    width: 80%;
    font-size: 21px;
    color: #252A37;
    font-family: "RobotoCondensed-Bold";
    font-weight: 700;
    font-style: normal;
    padding: 10px 14px;
    text-align: start;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
    background-color: #fff;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.practices-link-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: "RobotoCondensed-Bold";
    font-weight: 700;
    font-style: normal;
    color: #252A37;
    font-size: 18px;
}

.practices-link:hover {
    color: #252A37;
}

.height-max-content {
    height: max-content;
}

.practice-image {
    overflow: hidden;
}

.practice-box {
    position: relative;
}

.practice-box img {
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

.practice-box:hover img {
    transform: scale(1.02);
}

.practice-box:hover .practices-link {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1559px) {
    .practices-link {
        font-size: 19px;
    }


}

@media (max-width: 1024px) {
    .practices-link {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .practices-link {
        height: 65px;
    }

    .practices-link-text {
        font-size: 16px;
    }
}