.bounce-btn {
  animation: bounce 1s infinite;
	width: 15%;
	height: auto;
	border: none;
	position: absolute;
	top: 32%;
	left: 20%;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}




@media all and (max-width: 1000px) {
	
	.bounce-btn {
	width: 20%; 
	top:100px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

	}

@media all and (max-width: 767px) {
	
	.bounce-btn {
	width: 20%;
	top:30px;

}

	}

@media all and (max-width: 500px) {
	
	.bounce-btn {
	width: 29%;
	top:50px;

}

	}











.bounce-btn2 {
    animation: bounce 1s infinite;
    width: 45%;
    height: auto;
    border: none;
    position: absolute;
    top: 28%;
    right: 18%;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}


@media all and (max-width: 1000px) {
	
	.bounce-btn2 {
	width: 55%;
		top:300px;
		  right: 0;
  left: 0;
  margin: 0 auto;

}




	
	@media all and (max-width: 767px) {
	
	.bounce-btn2 {
	width: 60%;
		top:180px;

}

	}

@media all and (max-width: 500px) {
	
	.bounce-btn2 {
	width: 80%;
		top:190px;

}

	}


