.client-case-box {
    min-height: 600px;
    background-size: cover;
    position: relative;
    background-position: center top;
    max-width: 420px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 0px rgb(0 0 0 / 25%);
    margin-top: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s, background-size 0.3s;
    background-size: auto 600px;
}

.client-case-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    padding: 35px;
    align-items: flex-end;
    transition: padding 0.3s;
}

.client-case-content h4 {
    font-size: 2.25em;
    margin-bottom: 10px;
}

.client-case-desc {
    display: flex;
    gap: 10px;
    align-items: anchor-center;
    font-size: 1.2em;
}

.client-case-arrow {
    position: absolute;
    top: 35px;
    right: 35px;
    transition: top 0.3s, right 0.3s;
}


.client-case-wrap:hover>.client-case-box {
    transform: scale(1.02);
    background-size: auto 550px;
    box-shadow: 0 0 12px rgb(0 0 0 / 25%);
}

.client-case-wrap:hover .client-case-overlay {
    padding: 25px !important;
}

.client-case-wrap:hover .client-case-arrow {
    top: 25px;
    right: 25px;
}
.btn-icon svg{
    width: 50px;
    height: 50px;
}
@media screen and (max-width:768px){
    .client-case-content h4{
        font-size:1.5em;
    }
}