* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-img {
  background-image: url("../assets/images/hero-bg-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: auto;
  min-height: clamp(620px, calc(100vh - 80px), 820px);
}
.support-bg-img {
  background-image: url("../assets/images/support-bg-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: auto;
  min-height: 620px;
}
.contact-bg-img {
  background-image: url("../assets/images/contact-bg-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: auto;
  min-height: 0;
}
@media (max-width: 1023px) {
  .hero-img {
    height: auto;
    min-height: 0;
  }
  .support-bg-img {
    height: auto;
    min-height: 0;
  }
  .contact-bg-img {
    height: auto;
    min-height: 0;
  }
}
