#main {
  /* padding: 0px;
  margin: 0px; */
  width: 100%;
  max-width: 100%;
}

.main-content.col,
html body .node__content {
  padding: 0px;
  margin: 0px;
}

/* .hero-banner {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
} */


.hero-banner {
  position: relative;
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  text-align: left;
  /* center text inside */
  min-height: 100vh;
  /* full viewport height */
  background-size: cover;
  /* scale bg image */
  background-position: center;
  /* center bg image */
  background-repeat: no-repeat;
  color: #fff;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 1;
  /* content above overlay */
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  text-transform: none;
  font-weight: 300;
}



.site-footer {
  display: none;
}


.social-icons a {
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons svg {
  width: 40px;
  /* bigger */
  height: 40px;
  /* bigger */
  fill: #333;
  transition: fill 0.3s ease;
}

.social-icons a:hover {
  background: #eaeaea;
  transform: scale(1.05);
}

.social-icons a:hover svg {
  fill: #000;
}


.social-icons {
  text-align: left;
  display: inline-block;
}

.hero-content p a {
  color: #fff;
  text-decoration: none;
}

.hero-content p a:hover {
  color: #bbb;
}

.hero-content a,
.social-icons a {
  position: relative;
  top: 0px;
  left: 0px;
  display: inline-block;
  margin: 3px;
  overflow-wrap:anywhere;
}


@media (max-width: 780px) {

  .hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


}
