 .righticon {
    position: absolute;
    right: 10px;
    top: 0;
    width: 100px;
    max-width: 100px;
}
.righticon img{
    width: 100%;
    height:auto;
    animation: moveTopBottom 2s ease-in-out infinite;
}
.lefticon {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 100px;
    max-width: 100px;
}
.lefticon img{
    width: 100%;
    height:auto;
    animation: moveTopBottom 2s ease-in-out infinite;
}

.breadcrumb-area{
    
    .lefticon, .righticon{
        max-width: 75px;
    }
}
   @keyframes moveTopBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); /* Adjust the value for the range of movement */
    }
    100% {
        transform: translateY(0);
    }
}