.containerShoping {
    position: relative;
    height: 70px;
    width: 70px;

}

.centerImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
}

.centerImage img {
    width: 100%;
}

.orbit {
    position: absolute;
    animation: orbit 5s linear infinite;
    height: 70px;
    width: 100%;
}

.orbit img {
    width: 100%;
}

/* Animation for rotation */
@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* Menu page Catagory All Button */

.menuBorderBox {
    position: relative;
    padding: 10px;
    display: inline-block;
    /* box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4); */
    /* color: #999; */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* font: 700 30px consolas; */
    overflow: hidden;
}

.menuBorderBox img {
    position: relative;
    z-index: 1; 
    display: block;
    margin: 0 auto; 
    max-width: 40%; 
    height: auto; 
}

.menuBorderBox span {
    position: absolute;
    background: linear-gradient(to right, #171618, #3bff3b);
}

.menuBorderBox span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.menuBorderBox span:nth-child(2) {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #171618, #3bff3b);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.menuBorderBox span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #171618, #3bff3b);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.menuBorderBox span:nth-child(4) {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, #171618, #3bff3b);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* .menuAll{
    position: relative;
    height: 70px;
    width: 70px;
    margin: 0 10px;
}
.menuAllImg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
}
.menuAllImg img{
    width: 100%;
}
.menuBorderBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70px;
    width: 70px;
    border: 2px solid #000;
    border-radius: 50%;
    animation: orbit 5s linear infinite;
} */