.scrollCompAbsolute {
    position: absolute;
    left:50%;
    right: 50%;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.verticalText {
    color: var(--creativeYellow);
    transform: rotate(-90deg);
    width: 100%;

}

.scrollComp {
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

/*----------------Animation-----------------*/

@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(140px);
	}
}

svg #wheel {
	animation: scroll ease 1.5s infinite;
}

@media screen and (max-width: 720px) {
    .scrollCompAbsolute {
        bottom: 5rem;
    } 
}