.pv14 {
    position: relative;
}

.pv14 .pv14-each {
    max-width: 275px;
    margin: auto;
    display: block;
    position: relative;
}


.pv14 .pv14-each:not(.mb-none) {
    margin-bottom: 60px;
}

.pv14 .pv14-each p {
    margin-bottom: 32px;
}

.pv14 .pv14e-img {
    margin-bottom: 24px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #A04D23;
    transition: .7s;
    max-width: 220px;
    margin: auto;
}

.pv14 .pv14e-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv14 .pv14-each h4 {
    margin-bottom: 24px;
    color: #212121;
}

.pv14 .pv14-each .btn-primary {
    margin: 0;
    transition: .7s;
}

.pv14 .pv14-each:hover .pv14e-img {
    border: 4px solid #E37A45;
}

.pv14 .pv14-each:hover .btn-primary {
    border-color: #E37A45;
    background: #E37A45;
}

@media (min-width: 992px) {
    .pv14 .pv14-each {
        margin: 0;
    }

    .pv14 .pv14-each.centered {
        margin: 0 auto;
    }

    .pv14 .pv14-each .pv14e-arrow{
 position: absolute;
        left: 90%;
        top: 20%;
        width: 0%;
        max-width: fit-content;
        overflow: hidden;
        z-index: -1;
        animation: growAnimation 8s infinite linear;
        animation-delay: var(--delay);
    }
    .pv14 .pv14-each .pv14e-arrow::before {
        content: url('data:image/svg+xml,<svg width="200" height="20" viewBox="0 0 231 20" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="16" y1="9.9126" x2="216" y2="9.9126" stroke="%23a04d23" stroke-dasharray="4 4"/><path d="M230.092 9.87538L216.043 18.3208L215.754 1.93077L230.092 9.87538Z" fill="%23a04d23"/><circle cx="8.5" cy="9.9126" r="7" stroke="%23a04d23" stroke-width="3"/></svg>');
        overflow: hidden;
    }


    .pv14 .pv14-each.right {
        margin-left: auto;
    }

}


@keyframes growAnimation {
    0%{
        width: 0%;
        transform: translateX(0px)
    }

    50%{
        width: 100%;
        transform: translateX(10px);
    }

     100%{
        width: 0%;
        transform: translateX(0px)
    }
}

