.Header__homeNavbarFixed .Header__searchSubCont {
  background-color: #1B232A !important
}

.Header__titleSearchBox {
  padding-top: 1.9rem;
}

.Header__logo {
  max-width: none;
}

.Header__titleDescription {
  padding-bottom: 1.2rem;
}

.Header__searchalt {
  padding-bottom: 0rem;
}

h1.Header__welcomeTitle {
   display: none !important;
}

h2.Header__welcomeTitle {
  font-size: 1.7rem;
}

div.Header__welcomeDescription {
	font-size: 14pt !important;
}

.Button__tagPrimary {
	background-color: #CC092F !important;
  	box-shadow: none !important;
}

.Button__tagSecondary {
	background-color: #E0E0E0 !important;
  	box-shadow: none !important;
}

.Header__containerLink:hover {
  color: #CC092F !important;
}

.Button__neutral {
	border: 1px solid #1B232A !important;
}

.Button__neutral:hover {
	background-color: #1B232A !important;
}

#zsiq_float .zsiq_flt_rel {
	background-color: #CC092F !important;
}

.container {
      margin: 0 auto;
      width: 80%;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
	  font-family: Montserrat, Verdana, Arial, sans-serif;
  }
  .box {
    flex: 1; /* make boxes evenly share the space */
    background-color: rgb(240,240,240);
    border: 1px solid #999;
	border-radius: 0.8rem;
    box-sizing: border-box;
	text-align: center;
	min-height: 120px;
	min-width: 150px;
	padding: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow */
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  
.box:hover {
  background-color: #E31937;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

	.box h2 {
      font-size: 1.25em;
      margin-top: 0px;
	}

	.box p {
      font-size: smaller;
}
  
	.box a {
	  text-decoration: none;
	  color: inherit; /* inherits the box's text color */
	}

  
  
	@media (max-width: 768px) {
      .container {
        width: 95%;
        justify-content: center;
      }

      .box {
        flex: 0 0 45%;
        margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .box {
        flex: 0 0 100%;
      }
    }
	
	
    /* Full-width band */
    .band {
      width: 100%;
      background-color:  #152128;
      color: white;
      padding: 20px 10px;
      box-sizing: border-box;
	  font-family: Montserrat, Verdana, Arial, sans-serif;
    }

    .band-columns {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 65%;
      margin: 0 auto;
      gap: 20px;
    }

    .column {
      flex: 1;
      min-width: 100px;
    }

    @media (max-width: 768px) {
      .column {
        flex: 0 0 100%;
      }
    }
