        .scroll-right-icon img {
           width: 40px;
           height: 40px;
           cursor: pointer;
        }
		
		.scroll-right-icon {
           position: absolute;
           top: 20px;
           right: 10px;
           animation: bounce 1s infinite alternate;
        }

        @keyframes bounce {
           0% { transform: translateY(0); }
           100% { transform: translateY(-10px); }
        }
