/* main page navbar */
.mainPage_navbar {
    /*background: var(--deep-blue);*/
    z-index: 100;
    overflow: visible;
	position: fixed;
	height: 34px;       
    width: 100%;
}


/* 'Home' tag in top nav bar */

.home-txt {
	top: 6px;         
    left: calc(var(--side-padding) + 40px);
	position: absolute;
	overflow: visible;
	width: 46px;
	height: 19px;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	cursor: pointer;
	color: white;
    font-size: .9em;
}

.home-txt a {
    color: white;
  }
  
  .home-txt a:hover {
    text-decoration: underline;
  }


/*Tiles*/


.wh_main_page .wh_content_area {
    margin-bottom: 100px;
}

.tile-container /* Parent to all tile elements */{
    width: auto;
    height: auto;
    padding-top: 30px;
	position: relative;
}

.wh_tiles {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
}

@media only screen and (max-width: 1180px) {
    .wh_tiles {
        grid-template-columns: auto auto;
    }
}

@media only screen and (max-width: 770px) {
    .wh_tiles {
        grid-template-columns: auto;
    }
}

.wh_tile /* Box defined as tile */{
    background: none;
    width: 335px;
    min-height: 335px;
    margin: 1em;
    padding: 0;
    cursor: pointer;
}

.wh_tile * {
    position: relative;
}

.wh_tile_text {
    background: #00646E;
    z-index: 0;
}

.wh_tile_textOnly /* Box containing tile text */{
    color: white;
    position: absolute;
    top: 1em;
    box-sizing: border-box;
	text-align: center;
	left: 1.5em;
	right: 1.5em;
	bottom: 0.5em;
}

div.wh_tile_title > span > a /* Tile title */{ 
    color: white;
}

.wh_tile_title {
    z-index: 3;
    font-size: 24px;
    text-align: start;
    line-height: 34px !important;
    margin-left: 8px;
    margin-top: 8px;
}

.wh_tile_title a{
    line-height: 34px !important;
}

.wh_tile_shortdesc /* Text description within tile */ {   
    font-size: 16px;
    color: white !important;
    text-align: left;
    z-index: 1;
    opacity: 0;
    margin: 8px;
    margin-top: 20px;
    line-height: 24px !important;
    
}

.wh_tile_arrow {
    position: absolute;
    right: 5px;
    bottom: 20px;
    scale: 0.8;
    z-index: 1;
    opacity: 1;
}


.wh_tile_image /* Box containing tile image */ {
    z-index: 2;
    padding: 0;
 
 }
 
 .wh_tile_image img{
     width:100%;
 }


.welcome_tile /* Box defined as tile */ {
    background: white;
    color: black;
	pointer-events: none;
}

.welcome_tile * {
    visibility: visible;
}

.welcome_tile_title {
    font-size: 36px;
    line-height: 28px !important;
    color: black;
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 33px !important;
}

.welcome_tile_shortdesc {
    color: black !important;
    opacity: 1 !important;
    width: 300px;
    font-size: 20px;
    line-height: 28px !important;
    text-align: left;
    margin-left: 0;

}
