html,body {
	padding: 0 !important;
	margin: 0 !important;
	overflow-x:hidden !important;
    max-width:100% !important;
}

#scrollToTopBtn {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  color: #016A74;
  border: 1px solid #016A74;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}

#scrollToTopBtn.show {
  display: flex;
  opacity: 1;
}


@keyframes pulse {
 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.bounce-on-load {
animation: pulse 1s;
  animation-delay: 1s; /* Adjust the delay as per your preference */
}



@media only screen and (max-width: 800px) {
 html,body {
	overflow-x:hidden !important;
    
}
}