/* index (landing) page */
/*-- common fonts and colour -----------------------------------*/
@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/Avenir_Next.ttf");
}
:root {
  --bluegreenlight: rgb(162, 201, 213);
  --bluegreen2: rgb(130, 185, 195);
  --bluegreen3: rgb(74, 144, 150);
  --bluegreen4: rgb(96, 161, 175);
  --bluegreendark: rgb(1, 90, 120);
  --browntan: rgb(221, 225, 224);
  --brown2: rgb(215, 201, 175);
  --browndark: rgb(176, 143, 108);
}
/*--------------------------------------------------------------*/
body {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
	border: none;
}
#logoImage {
  display: block;
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0.1));
}
/*--------------------------------------------------------------*/
.map-section {
  width: 100%;
  height: auto;
  background: white;
  padding: 0px 0px;
  text-align: center;
  position: relative;
}
#mapImage {
  display: block;
  width: 100%;
  position: center;
  margin-left: auto;
  margin-right: auto;
}
.maplocationCircle {
  fill: transparent;
}
.maplocationCircle:hover {
  fill: var(--bluegreenlight);
  opacity: 0.4;
  stroke:  var(--bluegreendark);
  stroke-width: 4;
}
.maplocationCircle:visited {
  fill: transparent;
}
.map-nav-bar {					   /* create a 4x3 list of icons on right side of map*/
  width: 45%;					     /* enough for 3 icons */
  height: auto;
  position: absolute;
  z-index: 1;
  top: 3%;
  right: 1%;
  overflow-x: hidden;
  background-color: transparent;
}
.map-nav-bar a {
  float: left; 					   /* Float links side by side */
  text-align: center;			 /* Center-align text */
  width: 15%; 					   /* Equal width (3 icons with 33% width each + margin = 100%) */
  overflow: hidden;
  margin: 4% 4%; 				   /* Some top and bottom padding */
  text-decoration: none;
  transition: all 0.3s ease; 	/* Add transition for hover effects */
  border: 1px solid rgb(1, 90, 120);	/* specify border here for hover colour to fit border - 4px matches line width */
  border-radius: 0.625rem; /*10px*/
}
.map-nav-bar a:hover, a:focus {
  background-color: var(--bluegreen2);
  outline: none;          /* remove default border outline for focus */
}
.map-nav-icon {
  vertical-align: middle;
  width: 100%;
}
/*--------------------------------------------------------------*/
@media screen and (max-width: 50em) {
  .map-nav-bar {
    right: 1%;
  }
  .map-nav-bar a {
    border-radius: 0.3125rem; /*5px*/
  }
}
/*--------------------------------------------------------------*/