.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.mastheadhome {
	height: 100vh;
	max-height: 500px;
	background-image: url('../images/home1_web.webp');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

.mastheadbh {
	height: 100vh;
	max-height: 400px;
	background-image: url('../images/bh_web.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.mastheadcp {
	height: 100vh;
	max-height: 500px;
	background-image: url('../images/cp_b.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.mastheadmh {
	height: 100vh;
	max-height: 400px;
	background-image: url('../images/memh_b.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Home Page Tiles - start */
.row.d-flex {
      align-items: stretch;
    }
.tile-container {
  margin-top: -5px;
}

.tile {
  background-color: white;
  border-radius: 10px;
  padding: 15px 35px 15px 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border-top: 4px solid #3e4cad; /* Adding top border with purple color */
   display: flex;
   flex-direction: column;
   height:100%;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.tile-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
}
.tile-logo img {
  width: 75px;
  height:auto;
  margin-bottom: 15px;
  
}

.tile-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.tile-button {
  font-size: 0.8em;	
  color: #007bff;
  font-weight: bold;
}


/* Home Page Tiles - end */  
  
@media (max-width: 450px) {
  .mastheadhome{	
     background-size: cover;
     max-height: 200px;
  }
}

