/* our works sections */

.portfolio-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
}

.portfolio-card .portfolio-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 24px;
}

.portfolio-card h4 {
    min-height: 58px;
    margin-bottom: 12px;
}

.portfolio-card p {
    min-height: 78px;
    margin-bottom: 18px;
}

.portfolio-card small {
    display: block;
    min-height: 42px;
}

.case-study-action {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 22px;
}

.case-study-flow {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}

.case-study-flow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F34C00;
    opacity: .25;
}

.case-study-flow span:nth-child(1) {
    animation: flow .9s infinite;
}

.case-study-flow span:nth-child(2) {
    animation: flow .9s .2s infinite;
}

.case-study-flow span:nth-child(3) {
    animation: flow .9s .4s infinite;
}

.case-study-flow i {
    color: #F34C00;
    margin-left: 4px;
    transition: .3s;
}

.portfolio-card:hover .case-study-flow i {
    transform: translateX(8px);
}

@keyframes flow {
    0%,100% {
        opacity: .2;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}