.page-header h1{
	display: none  !important;
}

.affix .logo img{
  width: 70% !important;
}


.btn-ring .elementor-button-icon {
  position: relative;
  z-index: 1;
}

.btn-ring .elementor-button-icon a::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 10px solid #fff;
  animation: ringLoop 3s ease-out infinite;
}

.btn-ring .elementor-image-box-img a::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 10px solid #fff;
  animation: ringLoop 3s ease-out infinite;
}

@keyframes ringLoop {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  70% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}