html, body {
  width: 100vw;
  margin: 0 !important;
  padding: 0 !important;

}

.apply-here-btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 137px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  background: white;
  color: var(--bs-cozy-copper); 
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.apply-here-btn:hover {
  background-color: #e0f4f2;
}

.apply-here-btn.visible {
  opacity: 1;
  pointer-events: auto;
}



.btn-apply:hover {
  background-color: var(--bs-cozy-copper);
}

rect.clickbtn {
  stroke:#fff;
  fill:#fff;
  fill-opacity:0;
  stroke-opacity:0;
}

@media only screen and (max-width: 768px) {
  /* Styles here apply ONLY on mobile (and small tablets) */

  #hackerhouse-img-desktop {
    display: none !important;
  }

  #hackerhouse-img-mobile {
    display: block !important;
  }
}

#hackerhouse-img-mobile {
  display: none;
}

