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;
}

.sponsors {
  padding-top: 84px;
  padding-bottom: 92px;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
}

.sponsors-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 58px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.15;
}

.sponsors-title span {
  font-family: var(--hand);
  font-size: 1.15em;
  font-weight: 500;
}

.sponsors-title em {
  font-weight: 300;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.sponsor {
  min-width: 0;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease, transform .2s ease;
}

.sponsor:hover {
  opacity: .72;
  transform: translateY(-2px);
}

.sponsor:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 8px;
}

.sponsor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-tech-europe img {
  max-width: 244px;
}

.sponsor-homizy img {
  max-width: 174px;
}

.sponsor-ford img {
  max-width: 240px;
}

@media only screen and (max-width: 768px) {
  .sponsors {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .sponsors-title {
    margin-bottom: 48px;
    font-size: 28px;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sponsor {
    height: 104px;
  }

  .sponsor-tech-europe img {
    max-width: 210px;
  }

  .sponsor-homizy img {
    max-width: 150px;
  }

  .sponsor-ford img {
    max-width: 210px;
  }
}
