/* header.css */
.support-header {
  position: relative;
  height: 200px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

/* .support-header {
  border: 2px solid red;
} */


.support-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33.3333%;
  height: 100%;
  background-image:
    linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,1)),
    url('../images/banner_home_nologo.png');
  background-repeat: no-repeat, no-repeat;
  background-size: 5% 5%, cover;
  background-position: left center, left center;
  pointer-events: none;
  z-index: 0;
}

.support-header h1 {
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  z-index: 1;
}

/* .home-icon {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1;
} */
.home-icon {
  position: absolute;
  top: 1rem;       /* Adds top padding */
  left: 2rem;      /* Keeps left padding */
  display: flex;
  align-items: flex-start; /* Aligns content to top */
  z-index: 1;
}


.home-icon img,
.home-icon svg {
  height: 32px;
  width: auto;
}
