.BorderIconBox {
    border: 1px solid silver;
    padding: 30px;
    padding-left: 48px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

@media (max-width: 767px) {
    .BorderIconBox {
        flex-direction: column;
        padding: 30px;
        gap: 0px;
    }
}

.BorderIconBox:nth-child(odd) {
    border-top: none;
}

.BorderIconBox:nth-child(even) {
    border-top: none;
}

.BorderIconBox:first-child {
    border-top: 1px solid silver;
}

.BorderIconBox__description {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 85%;
}

.BorderIconBox__description>* {
    margin: 0;
}

h3.BorderIconBox__title {
    font-family: 'Helvetica Now Display';
    font-size: 24px;
    font-weight: bold;
}

.BorderIconBox i {
    margin-bottom: 40px;
    display: block;
    width: 60px;
    position: relative;
}

.BorderIconBox i svg {
    width: 100%;
    height: auto;
}

.BorderIconBox .services-svg {
    position: absolute;
    bottom: 34%;
    /* transform: scale(2.3) rotateZ(150deg); */
    transform-origin: 49% 39%;
    animation: spin 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes spin {
    0% {
        transform: rotateZ(0deg) scale(2.3);
    }

    100% {
        transform: rotateZ(360deg) scale(2.3);
    }
}

a.BorderIconBox__link {
    font-size: 15px;
    position: relative;
    font-weight: bold;
    border-bottom: 1px solid;
    width: fit-content;
    text-transform: capitalize;

    & svg {
        position: absolute;
        right: -20px;
        margin-top: 1px;
        transition: 0.3s all ease-in-out;
    }

    &:hover svg {
        transform: translateX(5px) rotate(-45deg);
    }
}