.card {
    transition: 0.5s;
}

.card .lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent, #6b7280, #6b7280, #6b7280, transparent);
    animation: animate 4s linear infinite;
    animation-play-state: paused;
}

.card:hover .lines::before {
    animation-play-state: running;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.card .lines::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #3b0764;
}

.card .icnBx {
    transform: translateX(-50%);
    transition: 0.5s;
}

.card:hover .icnBx {
    top: 25px;
    width: 250px;
    height: 250px;
}

.card .icnBx::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: linear-gradient(transparent, #6b7280, #6b7280, #6b7280, transparent);
    animation: animate2 6s linear infinite;
    animation-play-state: paused;
}

.card:hover .icnBx::before {
    animation-play-state: running;
}

@keyframes animate2 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.card .icnBx::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #3b0764;
}

.icnBx i {
    position: absolute;
    z-index: 1;
    /* filter: invert(1); */
    opacity: 0.5;
    transition: 0.5s;
}

.card:hover .icnBx i {
    opacity: 1;
}

.dtls {
    transition: 0.5s;
    transform: translateY(120px);
}

.card:hover .dtls {
    transform: translateY(160px);
}

.dtls h2 {
    line-height: 0 !important;
}

.dtls p {
    opacity: 0;
    transition: 0.5s;
}

.card:hover .dtls p {
    opacity: 1;
}

.navExp {
    position: relative;
    height: 1px;
    z-index: 3;
    font-size: 0;
    top: -100px;
    left: 75%;
}

.navExp::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 35px;
    width: 25%;
    height: 1px;
    background: #6b7280;
}

.tegak {
    transform: rotate(90deg);
    transform-origin: top left;
    position: relative;
    top: -55px;
    left: 15px;
}

.owl-dots {
    display: none !important;
}

.percentage {
    transition: width 2s ease;
}