.small-card {
    font-size: 16px;
    line-height: 27px;
    display: block;
    min-height: 100%;
    color: #fff !important;
    transition: all 0.3s;
    background: var(--e-global-color-1e4a993 );
    border-radius: 5px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) !important;
    width: 100%;
    position: relative;
}
.small-card .holder {
    min-height: 292px;
    overflow: hidden;
    padding: 125px 30px 55px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.small-card .elipsis-text {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.small-card:hover {
    text-decoration: none !important;
    background: var(--e-global-color-accent ); 
}
.small-card:hover img {
    opacity: 0;
}
.small-card:hover  .text{
    top: 30px;
    opacity: 1;
}
.small-card:hover .holder> h4 {
    opacity: 0;
    top: -95px;
}
.small-card:after {
    content:'';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 24px;
    height: 24px;
    background:50% 50% url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23fff'/%3E%3Cpath d='m10.392 7.732 5.21 4.21-5.393 4.392' stroke='%23373f41' stroke-width='2.824' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
    background-size: 100% auto; 
}
.small-card img {
    height: 70px;
    width: auto;
    max-width: 50%;
    position: absolute;
    left: 30px;
    top: 30px;
    object-fit: contain;
    transition: opacity 0.3s;
}
.small-card h4 {
    margin: 0 0 8px;
    transition: all 0.3s;
    line-height: 1.429;
    top: 0;
    position: relative;
}
.small-card .text {
    position: absolute;
    left: 0;
    right: 0;
    top: 125px;
    height: calc(100% - 85px);
    padding: 0 30px;
    opacity: 0;
    overflow-y: auto;
    transition: all 0.3s;
}
.small-card .text p {
    margin: 0 ;
}
@media (max-width: 1024px) {
    .small-card .holder {
        min-height:237px;
        padding-top: 100px;
    }
    .small-card img {
        height: 60px;
    }
    .small-card:hover .holder> h4 {
        top: -70px;
    }
    .small-card .text {
        top: 100px;
        height: calc(100% - 55px);
    }
}
@media (max-width: 1200px) {
    .small-card .holder> h4 {
        top: -70px;
        display: none;
    }
    .small-card {
        background: var(--e-global-color-accent ); 
    }
    .small-card img {
        opacity: 0;
    }
    .small-card  .text{
        top: 30px;
        opacity: 1;
    }
}