@charset "utf-8";

@font-face {
	font-family: 'Cinzel';
	src: url("../fonts/CinzelDecorative-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'Century Gothic';
	src: url("../fonts/centurygothic.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'Avenir';
	src: url("../fonts/AvenirLTProLight.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist';
  src: url("../fonts/Urbanist-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist Bold';
  src: url("../fonts/Urbanist-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-Light.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-LightItalic.otf") format("opentype");
	font-style: italic;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Carla Sans';
  src: url("../fonts/CarlaSansSemibold.ttf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}
@font-face {
  font-family: 'Heavitas';
  src: url("../fonts/Heavitas.ttf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}
@font-face {
  font-family: 'Addington';
  src: url("../fonts/AddingtonCF-Thin.otf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}

/**** Global CSS ****/
body, html {
  scroll-behavior: smooth;
	margin: 0;
	box-sizing: border-box;
	font: 300 18px/1.8 "Avenir", sans-serif;
	overflow-x: hidden;
	color: rgb(252, 244, 174);
	background: rgb(255,255,255);
}

nav {
  width: 100vw;
}

/**************** Nav-menu (DEFAULT NAV BAR) ********/
/* header {
	display: inline; 
} */

.fa.fa-caret-down {
  display: none;
}
.navbar a i.fas {
  font-size: 25px;
  color: rgb(240, 240, 225);
  transition: color 0.1s ease;
}
.navbar a i.fas:hover {
  color: yellow;
}
/*************** Dropdown menu ******/
 /* Navbar container */
.navbar {
	z-index: 102;
	display: flex;
	width: 100%;
	background-color: rgba(53,53,53,1);
	font-family: 'Century Gothic';
	/* z-index: 9; */
	height: 100px;
	position: fixed;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: background-color 0.5s ease-in-out;
}
.navbar.nav-menu-alt {
  background-color: white;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 10px 6px;
  text-decoration: none;
  font-size: 17px;
  transition: font-size 0.1s ease-in-out;
}
.navbar a.btn.secondary {
  padding: 10px 20px;
}
.logo {
	position: absolute;
	top:5px;
	left:0;
	z-index:103;
	margin-top: 25px;
	margin-bottom: 10px;
	margin-left: 50px;
	width: 130px;
	box-shadow: 1px 3px 5px rgba(30,30,30,0.8);
	transition: all 0.4s ease-in-out;
}
.logo-nav-2 {
  width:85px;
  margin-top: 10px;
}
.logo img,
.logo-nav-2 img {
	width: 100%;
	z-index: 103;
}
.shrink {
	width: 90px;
	position: fixed;
	top: 0;
	left: 0;
}
.shrink-navbar {
	height: 60px;
	background-color: rgba(35,35,35,1);
	top: 0;
}
.shrink-nav-text {
	font-size: 12px;
}
.fade-out {
  opacity: 0;
  pointer-events: none; /* Prevents interaction */
}
.small-logo {
  z-index: 104;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 130px; /* Adjust as needed */
  opacity: 0;
  margin-top: 16px;
  margin-left: 50px;
  transition: opacity 0.3s ease-in-out;
}
.show {
  opacity: 1;
  z-index: 20;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
/*  padding-left: 15%;*/
}
.nav-links .dropdown {
	display: inline;
}
.nav-links .dropdown a {
	text-decoration: none;
	/* color: rgb(179, 255, 255); */
}
/* Hide the menu toggle button on large screens */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  border-radius: 1px;
  outline: none;
  color: white;
  padding: 2px 15px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
/*  background-color: transparent;*/
  transition: all 0.3s ease-in-out;
}
/* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn,
.dropdown:active .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:active .dropdown-content {
	visibility: visible;
	background-color: white;
}
/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 650ms ease;
}
/* grey to white on hover of dropdown items */
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown-content a:active {
	background-color: white;
}
.navbar .nav-links .dropdown button:first-child {
	border-left: 2px solid grey;
}	
.navbar .dropbtn a {
  font-family: Carla Sans;
}
.cta-buttons  {
  right: 50px;
  position: absolute;
}
.navbar .cta-buttons ul:nth-child(n+2) li {
  border:1px solid rgb(246,179,0);
  border-radius: 5px;
}
.navbar .cta-buttons .search-icon li {
  border: none;
}
.menu .btn{
  background-color: rgb(1, 170, 248);
  transition: 0.2s all ease-in-out;
}
.menu .btn:hover {
  background-color: rgb(252, 182, 51);
}
.btn-slide {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    border: 2px solid #00ffcc;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .btn-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00ffcc;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-slide:hover::before {
    transform: translateX(0);
  }
  .btn-slide:hover {
    color: black;
  }
/************** Nav-menu-alt (NAT GEO STYLE) *****************/
div.nav-menu-alt .nav-links .dropdown button:first-child {
	border-left: 3px solid rgb(250, 230, 51);
}
.navbar.nav-menu-alt .dropdown:hover .dropbtn,
.navbar.nav-menu-alt .dropdown:focus-within .dropbtn,
.navbar.nav-menu-alt .dropdown:active .dropbtn {
  background-color: rgb(252, 239, 56);
}
.navbar.nav-menu-alt .dropdown:hover .dropdown-content,
.navbar.nav-menu-alt .dropdown:focus-within .dropdown-content,
.navbar.nav-menu-alt .dropdown:active .dropdown-content {
	visibility: visible;
	background-color: white;
  border-left: solid rgb(250, 236, 39);
  border-right: solid rgb(250, 236, 39);
}
div.nav-menu-alt a {
  color: rgba(20,20,20,1);
}
div.nav-menu-alt a.btn.secondary {
  background-color: transparent;
  padding: 0;
}
div.nav-menu-alt a i.fas {
  font-size: 25px;
  color: rgb(124, 124, 124);
}
div.nav-menu-alt .menu .btn {
  background-color: transparrent;
}
div.nav-menu-alt .cta-buttons ul:nth-child(n+2) li {
  border: initial;
  border-radius: iniitial;
}
div.nav-menu-alt .cta-buttons {
  height: 100%;
}
div.nav-menu-alt .btn-slide {
  background: rgb(250, 218, 39);
  border: transparent;
  transition: all 0.3s ease-in-out;
}
div.nav-menu-alt .btn-slide::before {
  background: rgb(39, 250, 134);
}
div.nav-menu-alt .btn-slide:hover {
  background: rgb(15,14,14);
  /* border: 5px solid rgb(250, 218, 39); */
}
div.nav-menu-alt .btn-slide:hover a {
  color: rgba(244,244,244,1);
}
/******************* Nav-menu-alt-2 (SOUND CON STYLE ***************/
body#nav-menu-sound-version {
	background-color: #4a9b9f;
}
#site-header {
	z-index: 10;
	background-color: rgba(255,255,255,0);
	height: 100px;
	width: 100%;
	transition: all 0.3s ease-in;
	position: absolute;
	padding: 0 25px;
  display: flex;
}
.site-title {
	float:left;
	width: 500px;
	padding: 25px 0;
}
html:not([data-scroll="0"]) .site-title {
	padding:
  15px 0;
  }
#site-header.fade-and-shrink-hdr {
	background-color: rgb(8,18,74);
	position: fixed !important;
	top: 0 !important;
	height: 80px;
}
.site-title h1 {
	letter-spacing: 2px;
	font-size: 25px;
	font-family: 'Urbanist';
  color: rgba(253,253,253,1);
}
.site-title h1.shrink-site-title-h1 {
	font-size: 20px;
}
.site-title a {
	color: #fff;
	text-decoration: none;
  transition: color 0.2s ease-in-out;
  text-shadow: 0 0 2px grey;
}
.site-title h1.shrink-site-title-h1 a {
  color: rgba(198, 233, 239, 0.9);
}
.site-title p {
	display: none;
}
.menu-item a span {
	text-transform: uppercase;
}
.menu-item {
	background-color: rgba(255,255,255,0);
	transition: all 0.3s ease-in-out;
}
.menu-item:hover,
.menu-item:focus-within,
.menu-item:active {
	background-color: rgba(251,36,30,0.7);
	border-radius: 1px;
}
.primary-nav {
	display: flex;
	font-family: 'Urbanist';
	font-size: 18.5px;
	font-weight: 200;
	line-height: 1.5;
	letter-spacing: 1.5px;
	padding: 15px 0;
	padding-left: 20px;
	text-decoration: none;
  text-shadow: 0 0 2px rgba(50,50,50,0.9);
	color: beige
}
.primary-nav ul {
	touch-action: pan-y;
	list-style-type: none;
	list-style-image: none;
	}
.primary-nav ul li {
	display: inline-block;
	padding: 15px 25px 15px 25px;
}
.primary-nav ul li a {
/*	color: #fff;*/
	display: block;
	text-decoration: none;
	color: beige;
}

#header-button {
	float: right;
	height: 56px;
	margin-right: 50px;
	margin-top: 5px;
	text-transform: uppercase;
	position: absolute;
	right: 50px;
}
#header-button .header-button {
	border-radius: 5px;
	background: rgb(246,179,0);
	padding: 9px 10px;
	background: linear-gradient(131deg, 
		rgba(246,179,0,0.9) 11%, 
		rgba(246,222,75,0.9) 25%, 
		rgba(246,222,75,0.9) 87%, 
		rgba(246,179,0,1) 100%);
	border:2px solid white;
	box-shadow: 1px -1px 14px 5px rgba(30,30,30,0.5);
	transition: all 0.3s ease-in-out;
}
#header-button .header-button:hover,
#header-button .header-button:focus-within,
#header-button .header-button:active {
	background: linear-gradient(320deg, 
	rgba(246,222,75,0.9) 11%, 
	rgba(246,222,75,0.9) 25%, 
	rgba(246,179,0,0.9) 87%, 
	rgba(190,130,0,1) 100%);
	border: 2.5px solid rgba(3,110,130,1);
}
.header-button a {
	color: #fff;
	padding: 6px 20px;
	font-family: 'Urbanist Bold';
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2.5px;
}
/* Hide the menu toggle button on large screens */
.menu-toggle {
	display: none;
	font-size: 24px;
	color: white;
	cursor: pointer;
  }
/************* CAROUSEL SLIDESHOW PAGE *************/
#cta-headline {
  position: fixed;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 2px rgba(30,30,30,0.9);
  transition: all 0.2s ease-in-out;
}      
#cta-headline h1 {
  font-size: 50px;
  font-family: 'Heavitas';
}
#cta-headline h2 {
  font-family: 'Signifier';
  font-style: italic;
  font-size: 30px;
  width: 75%;
  text-align: center;
  margin: 0 auto;
  color: rgb(80,80,80);
  background-color: rgba(187,252,246,0.8);
  padding: 20px 40px;
  border-radius: 2px;
  box-shadow: 0 0 5px 1px rgba(200,200,200,0.5);
  text-shadow: initial;
}
#cta-headline.undock-cta {
  position: sticky;
  width: 960px;
}
#slide-test {
  height: 843px;
}
.part-one-slideshow-container {
        max-width: 100vw;
        position: sticky;
        margin: auto;
        height: 843px;
        width: 100%;
      }
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 20px;
  padding: 8px 12px;
  /*  position: absolute;*/
  bottom: 8px;
  width: 100%;
  text-align: center;
  margin-top: -45px;
  display: none;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  display: none;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/************* IMPACT GRID ***************/
.overall-width {
    margin-top: 200px;
    margin-bottom: 200px;
}
.impact-grid-container {
  width: 60vw;
  max-width: 85vw;
  margin: 0 auto;
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  grid-template-rows: repeat(7, 1fr); 
  gap: 30px 20px; 
  grid-auto-flow: row;
  grid-template-areas:
    "headline-impact headline-impact headline-impact headline-impact sub-impact-1 sub-impact-1"
    "headline-impact headline-impact headline-impact headline-impact sub-impact-1 sub-impact-1"
    "headline-impact headline-impact headline-impact headline-impact sub-impact-1 sub-impact-1"
    "headline-impact headline-impact headline-impact headline-impact sub-impact-1 sub-impact-1"
    "sub-impact-2 sub-impact-2 sub-impact-3 sub-impact-3 sub-impact-4 sub-impact-4"
    "sub-impact-2 sub-impact-2 sub-impact-3 sub-impact-3 sub-impact-4 sub-impact-4"
    "sub-impact-2 sub-impact-2 sub-impact-3 sub-impact-3 sub-impact-4 sub-impact-4";
  background-color: black;
}
.impact-grid-container > * {
  border: solid 1px rgba(150,150,150,0.2);
}
.headline-impact { grid-area: headline-impact; }

.sub-impact-1 {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "sub-impact-1-img sub-impact-1-img sub-impact-1-img"
    "sub-impact-1-img sub-impact-1-img sub-impact-1-img"
    "sub-impact-1-text sub-impact-1-text sub-impact-1-text"
    "sub-impact-1-text sub-impact-1-text sub-impact-1-text";
  grid-area: sub-impact-1;
}

.sub-impact-1-img {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    ". . ."
    ". . ."
    ". . .";
  grid-area: sub-impact-1-img;
}

.sub-impact-1-text { grid-area: sub-impact-1-text; }

.sub-impact-2 {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "sub-impact-2-img sub-impact-2-img sub-impact-2-img"
    "sub-impact-2-img sub-impact-2-img sub-impact-2-img"
    "sub-impact-2-text sub-impact-2-text sub-impact-2-text";
  grid-area: sub-impact-2;
}

.sub-impact-2-img { 
  grid-area: sub-impact-2-img; 
}

.sub-impact-2-text { 
  grid-area: sub-impact-2-text; 
}

.sub-impact-3 {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "sub-impact-3-img sub-impact-3-img sub-impact-3-img"
    "sub-impact-3-img sub-impact-3-img sub-impact-3-img"
    "sub-impact-3-text sub-impact-3-text sub-impact-3-text";
  grid-area: sub-impact-3;
}

.sub-impact-3-img { 
  grid-area: sub-impact-3-img;
 }

.sub-impact-3-text {
   grid-area: sub-impact-3-text; 
  }

.sub-impact-4 {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "sub-impact-4-img sub-impact-4-img sub-impact-4-img"
    "sub-impact-4-img sub-impact-4-img sub-impact-4-img"
    "sub-impact-4-text sub-impact-4-text sub-impact-4-text";
  grid-area: sub-impact-4;
}
.sub-impact-4-img { 
  grid-area: sub-impact-4-img; 
}

.sub-impact-4-text { 
  grid-area: sub-impact-4-text; 
}
.headline-impact h3 {
  width: 100%;
  position: absolute;
  z-index: 1;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  bottom: 0;
  color: white;
  background-color: rgba(20,10,10,0.9);
  margin-bottom: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: 'Urbanist Bold';
  font-size:1rem;
}
.headline-impact h4 {
  position: absolute;
  z-index: 1;
  bottom: 20%;
  left: 1rem;
  font-family: 'Urbanist';
  color: rgba(250,250,250,1);
  transition: font-size 0.3s ease;
}
.headline-impact h4:hover {
  font-size: 1.3rem;
}
.sub-impact-text {
  z-index: 2;
  background: rgba(250,250,250,1);
  font-size: 0.8rem;
}
.sub-impact-text h3 {
  font-family: 'Urbanist Bold';
  color: rgb(100, 100, 100);
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}
.sub-impact-text h4 {
   position: absolute;
  z-index: 1;
  bottom: 30%;
  left: 1rem;
  font-family: 'Urbanist';
  color: rgba(250,250,250,1);
  transition: font-size 0.3s ease;
  font-size: 0.9rem;
  text-shadow: 0 0 2px rgb(50,50,50);
}
.sub-impact-text h4:hover {
    font-size: 1.1rem;
}
.sub-impact-1-text.sub-impact-text h4 {
  top: 39%;
}
.sub-impact-1-text div {
  text-align: center;
  margin-to: 20px;
}
.impact-grid-areas {
    width: 100%;
  min-height: 188px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: grid;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.impact-grid-areas::after {
  content: '';
  background-color: rgba(0,36,230,0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.impact-grid-image {
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-image: url("../images/golf-tournament/NRHP-Charity-Golf-Tournament-Tony-Contini-Productions-001.webp");
  background-size: cover;
  transition: transform 0.4s ease;
}
.sub-impact-images {
  background-size: contain;
  background-position: initial;
}
.sub-impact-1-img .impact-grid-image {
    background-image: url("../images/mobile-mri/mobile-mri-trailing-in-parking-lot.png");
}
.sub-impact-2-img .impact-grid-image {
    background-image: url("../images/mobile-mri/rural-health-center-inauguration.png");
}
.sub-impact-3-img .impact-grid-image {
    background-image: url("../images/golf-tournament/NRHP-charity-golf-tournament-cannon.png");
}
.sub-impact-4-img .impact-grid-image {
    background-image: url("../images/Carson-Valley-hospital.webp");
}
.impact-grid-areas:hover::after {
  opacity: 1;
}
.impact-grid-areas:hover .impact-grid-image {
  transform: scale(1.1);
}


/******************** BLOCK ITEM #3 *******************/
.block-container-3 {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 220px;
	background-color: rgba(83,83,84,1);
}
.block-container-3 {
	line-height: 0;
	column-count: 3;
	column-gap: 0;
	padding: 110px 5px 50px 5px;
}
.gallery {
    list-style: none;
    /* margin: 0;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
	/* grid-auto-flow: dense;
	height: 100vh; 
	/* max-width: 900px; */
}
.gallery > * {
	/* flex: 1 1 200px;
	position: relative; */
	/* use this to make an in-frame zoom on hover */
/*	overflow: hidden;*/
}
.gallery img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 1px solid rgb(150,150,150);
}
/* .gallery img {
	position: relative;
	object-fit: cover;
	height: 100%;
	width: 100%;
} */
 .gallery li {
	position: relative;
    break-inside: avoid;
    margin-bottom: 6px; /* matches your column-gap for consistent spacing */
}
.gallery li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0);
	/* Initially transparent */
	transition: background-color 0.5s ease;
	/* Add a smooth transition effect */
	pointer-events: none;
			/* Allow interactions with elements beneath the overlay */
}
.gallery li:hover::before {
	z-index: 101; 
	background-color: rgba(0, 0, 255, 0.25);
    transition: all 0.8s ease;
}
.gallery li:hover img {
	/* z-index: 100; */
	/* scale: 1.1; */
	border: 2px solid rgb(228, 82, 82);
    transition: all 0.8s ease;
}
/* .landscape {
	flex: 1 1 400px;
	grid-column: auto / span 2;
} */
/* .grid.mosaic {
	grid-template-columns: repeat(autofill, minmax(900px, 1fr));
	background-color: unset;
	margin-left: 100px;
} */
.gallery-info {
	list-style-type: none;
}
/******** INTERACTIVE MAPS **********/
/**** Districts Map *****/
#districts-polygon-map { 
  fill: hsl(352, 99%, 31%);
  stroke: hsl(6,100%,42%);
  stroke-width: 1;
}
#districts-polygon-map g {
  transition: .3s;
}
#districts-polygon-map g:hover { 
  fill: hsl(0, 87%, 69%);
  cursor: pointer;
}
.active, .active:hover { 
  fill:hsl(0, 87%, 69%) !important;
}		
#district-info { 
  position: absolute;
  top: 125px; right: 0;
  width: 25%;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: 1s; 
}

#district-info.show { opacity: 1; }
#district-info h1 {
  background: hsl(240, 55%, 40%);
  padding: .3rem;
  padding-left: 1rem;
  margin-top: -.5rem;
  font-weight: 400;
  font-family: 'Century Gothic';
}
#district-info p {
  margin-left: 2rem;
  margin-right: 2rem;
  font-family: 'Urbanist';
}
#district-info img {
  width: 100%;
}
/***** Nevada Hover Map *****/
/* @use postcss-preset-env {
  stage: 0;
} */

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  background-color: #32425a;
  color: #7e7e7e;
  font-family: Source Sans Pro, sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}
body#body-navbar-2 {
  background-color: rgb(15,15,13);
}

a {
  color: #ce606f;
}

p {
  margin: 0.5em 0;
}

svg {
  height: auto;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.subline {
  color: #768191;
  font-weight: normal;
}
/** Map Container **/
.map-container {
  margin-top: 110px;
}
.grid-hover-map {
  /* margin-left: auto;
  margin-right: auto;
  max-width: 740px; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100px 100px 1fr;
  gap: 10px;
  grid-template-areas: 
      "map-name"
      "map-sub-title"
      "hover-map";
  width: 100vw;
  text-align: center;
}
.map-name { 
	grid-area: map-name;
  width: 100vw;
	max-width: 100%;
  color: blanchedalmond;
  font-family: 'Signifier';
  text-align: center;
  position: absolute;
  padding-top: 20px;
  padding-bottom: 20px;
  top: 90px;
  /* transition: 0.2s all ease; */
	}
.map-sub-title {
  grid-area: map-sub-title;
  width: 100vw;
  max-width: 100%;
  font-family: 'Signifier';
  font-style: italic;
  color:hsl(0, 64%, 67%);
  position: absolute;
  top: 130px;
  padding-top:10px;
  padding-bottom:5px;
}
.hover-map { 
	grid-area: hover-map;
	max-width: 100%;
  width: 35vw;
  margin: 0 auto;
	}
.stick {
  position: fixed;
  background-color: rgba(38,56,83,100);
  margin: 0;
  width: 100vw;
  top: 50px;
  text-align: center;
  z-index: 1;
}
.stick-sub {
  position: fixed;
  background-color: rgba(38,56,78,100);
  margin: 0;
  width: 100vw;
  top: 115px;
  text-align: center;
  z-index: 2;
}
.map {
  position: relative;
}
  .map-jpg {
    width: 35vw;
    height: auto;
    display: block;
  }

.map__markers {
  list-style: none;
  margin: 0;
  padding: 0;
}

.map__marker {
  position: absolute;
}

.map__marker:after {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: pop;
  border-radius: 50%;
  border: 1px solid #da753b;
  content: "";
  height: 2em;
  left: 0;
  margin: -0.5em 0 0 -0.5em;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 2em;
}

.map__marker:hover .map__marker-info {
  display: block;
}

.map__marker > a {
  background-color: #cc4a60;
  border-radius: 50%;
  height: 1em;
  display: block;
  text-indent: -9999px;
  width: 1em;
}

.map__marker--lovelock {
  left: 30%;
  top: 26%;
}

.map__marker--winnemucca {
  left: 35%;
  top: 20%;
}

.map__marker--winnemucca:after {
  animation-delay: 3s;
}

.map__marker--battle-mountain {
  left: 51%;
  top: 19%;
}

.map__marker--battle-mountain:after {
  animation-delay: 5s;
}

.map__marker--incline-village {
  left: -1%;
  top: 39%;
}

.map__marker--gardnerville {
  left: 2%;
  top: 42%;
}

.map__marker--gardnerville:after {
  animation-delay: 3s;
}
.map__marker--yerington {
  left: 12%;
  top: 42%;
}

.map__marker--yerington:after {
  animation-delay: 3s;
}
.map__marker--fallon {
  left: 23%;
  top: 35%;
}

.map__marker--fallon:after {
  animation-delay: 5s;
}
.map__marker--hawthorne {
  left: 24%;
  top: 50%;
}

.map__marker--hawthorne:after {
  animation-delay: 5s;
}
.map__marker--ely {
  left: 81%;
  top: 41%;
}

.map__marker--ely:after {
  animation-delay: 5s;
}
.map__marker--caliente {
  left: 80%;
  top: 60%;
}

.map__marker--caliente:after {
  animation-delay: 5s;
}
.map__marker--boulder {
  left: 72%;
  top: 84%;
}
.map__marker--boulder:after {
  animation-delay: 5s;
}
.map__marker--mesquite {
  left: 86%;
  top: 73%;
}
.map__marker--mesquite:after {
  animation-delay: 5s;
}
.map__marker--pahrump {
  left: 54%;
  top: 81%;
}
.map__marker--pahrump:after {
  animation-delay: 5s;
}
.map__marker--beatty {
  left: 70%;
  top: 44%;
}
.map__marker--beatty:after {
  animation-delay: 5s;
}
.map__marker-info {
  display: none;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -2em);
  width: 20em;
  z-index: 999;
}

.map__marker-info-header {
  background-color: #ce606f;
  /* border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em; */
  color: #fff;
  padding: 0.5em 1em;
  font-family: 'Avenir';
}
.map__marker-info-header h2{
  font-family: 'Heavitas';
}

.map__marker-info-header h3{
  font-family: 'Avenir';
  color: rgba(255,247,171,1);
}

.map__marker-info-main {
  background-color: #fff;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  color: #7e7e7e;
  padding: 0.5em 1em;
  text-align: left;
}

.map__marker-info h2 {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 5px;
}

.map__marker-info-inner {
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
  font-size: 0.875em;
  position: relative;
}

.map__marker-info-inner:after {
  border-left: 0.75em solid transparent;
  border-right: 0.75em solid transparent;
  border-top: 1em solid #fff;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes bounce-in {
  0%, 20%, 40%, 60%, 80%, 100% {
    /* transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); */
    transition-timing-function: cubic-bezier(1,1,1,1);  }
  0% {
    opacity: 0;
    transform: scale3d(0.7, 0.7, 0.7);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.animate--bounce-in {
  animation-duration: 0.75s;
  animation-name: bounce-in;
}
/******* @layer Queries ************/
@layer components {
  .logo-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .map-container {
    margin: 0;
  }
  .map-title { 
	grid-area: map-title;
	max-width: 100%;
  color: blanchedalmond;
  font-family: 'Signifier';
  text-align: center;
  position: absolute;
  top: 130px;
  transition: 0.2s all ease-in-out;
	}

/********* @Media Queries ************/

/*** Min Widths: ***/
@media (min-width: 600px) {
    .block-container-3 {
        column-count: 3;
    }
}
@media (min-width: 900px) {
    .block-container-3 {
        column-count: 4;
    }
}
/**** Max Widths ****/
@media screen and (max-width: 1275px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #333;
		padding: 25px 0;
		text-align: center;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		pointer-events: none;
		min-height: 100vh;
	  }
	.nav-links.active {
		display:flex !important;
		opacity: 1;
		pointer-events: auto;
	}
  .nav-links .dropdown {
		display: block;
		text-align: center;
		padding: 10px 0;
	  }
	.dropdown-content {
		width: 100%;
	}
	
	.dropdown:hover .dropdown-content,
	.dropdown:focus-within .dropdown-content,
	.dropdown:active .dropdown-content {
		position: relative;
	}
	.dropdown-content a {
		text-align: center;
	}
  .menu-toggle {
		display: block;
		font-size: 42px;
	  	z-index: 11;
	  }
  #districts-polygon-map {
    width: 1200px;
    height: 1100px;
  }
}
@media screen and (max-width: 1150px) {
	.mobile-pic-fix {
		display: block;
	}
}
@media screen and (max-width: 1050px) {
	.small-logo {
		width: 100px;
		left: 0;
	}
		.block {
		width: 90vw;
	}
}

@media screen and (max-width: 950px) {
	nav div .logo {
		position: fixed;
		z-index: 103;
		width: 130px;
		margin: auto;
		text-align: center;
		left: 0;
		right: 0;
	}
  .logo.shrink {
    width: 90px;
  }
	.logo-container,
	.logo-alt-container{
		width: 100%;
	}
	#menu-toggle span {
		position: absolute;
		right: 50px;
		transition: color 500ms ease;
	}
	#menu-toggle span:hover {
		color:red;
	}
	.small-logo {
		left: 0;
		position: fixed;
		margin: 0 auto;
		right: 0;
		top: 25px;
	}
}
@media screen and (max-width: 800px) {
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
}
@media all and (max-width: 800px) {
  #district-info { width: 40%; }
}
@media all and (max-width: 750px) {
  #district-info { 
    width: 100%; 
    position: static; 
    background: none;
  }
#district-info.show p { 
  color: #000 !important; 
  margin-bottom: 2rem; 
  }
}
@media screen and (max-width: 650px) {
	 .block {
		width: 100vw;
	 }
	 .title-small {
		grid-area: title-small;
		text-align: center;
	 }
}
@media screen and (max-width: 600px) {
	nav div .logo {
		width: 140px;
		z-index: 103;
	}

}
@media screen and (max-width: 500px) {
	nav div .logo {
		top: 42px;
		z-index: 103;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
	}
}
@media screen and (max-width: 350px) {
	nav div .logo {
		width: 200px;
		z-index: 103;
	}
}

/********** @media queries for Nav Bar Sound *************/
@media screen and (max-width: 1560px) {
    #header-button {
      top: 60px;
    }

}
@media screen and (max-width: 1475px) {
	.primary-nav {
	font-size: 15px;
	}
}


@media screen and (max-width: 1412px) {
	.primary-nav ul li {
		padding: 25px 18px;
	  }
	.primary-nav {
		padding: 5px 0 0 0;
	}
	#header-button {
		margin-right: 0;
		right: 15px;
		top: 90px;
		left: 20px;
	}
}

@media screen and (max-width: 1300px) {
            #site-header {
		height: 170px;
		}
}

@media screen and (max-width: 1200px) {

	#primary-nav .nav-links {
		display: none;
	  }
	.menu-toggle {
		display: block;
		font-size: 42px;
	  	z-index: 11;
		position: fixed;
		right: 10px;
		top: 10px;
	  }
	#primary-nav .nav-links {
		display: none;
	  }
	  .nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #333;
		padding: 25px 0;
		text-align: center;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		pointer-events: none;
		min-height: 100vh;
	  }
	.nav-links.active {
		display:flex !important;
		opacity: 1;
		pointer-events: auto;
		padding-top: 85px;
	}
  .nav-links ul li {
		display: block;
		text-align: center;
		padding: 10px 0;
	  }
	.dropdown-content {
		width: 100%;
	}
	
	.dropdown:hover .dropdown-content,
	.dropdown:focus-within .dropdown-content,
	.dropdown:active .dropdown-content {
		position: relative;
	}
	.dropdown-content a {
		text-align: center;
	}
}

@media screen and (max-width: 860px) {
	#header-button {
		min-width: 200px;
	}
	#header-button a {
		padding: 5px;
	}
}

@media screen and (max-width: 600px) {
	.menu-toggle {
		top: 83px;
		/* color: rgba(20,20,20,1); */
	}
	.site-title h1 {
		font-size: 22px;
		text-align: center;
	}
	.site-title {
		width: 350px;
	}
	.contact-us-title {
		font-size: 25px;
	}
}

