/* GLOBAL FONT */
body {
  font-family: 'DM Sans', sans-serif;
	
}

/* GENERAL VISIBILITY CLASSES */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
    margin-top: 1rem;
  }
}

.fullwidth-shortcode-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: white;
}



.shortcode-wrapper {
  width: 86%;
  margin: 0 auto;
}

.shortcode-wrapper-team {
  width: 70%;
  margin: 0 auto;
}

.team-title {
  text-align: center;
  padding: 3rem 1rem;
  
}

.team-title h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #0F3F66;
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 980px) {
  .site-logo {
    max-width: 160px;
  }
	
	.shortcode-wrapper {
  width: 95%;
  margin: 0 auto;
}
	
	.shortcode-wrapper-team {
  width: 95%;
  margin: 0 auto;
}
}

h3 {
	color:#03213E;
}

h4 {
	color:#0089C4 !important;
}


/* HEADER BASE */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 10000;
  transition: top 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}



.site-branding {
  justify-self: start;
}

.site-nav {
  justify-self: center;
}

.donate-button {
  justify-self: end;
}


/* CONTAINER */
.header-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
	 grid-template-columns: 1fr auto 1fr;
	 display: grid;
  flex-wrap: wrap;
	z-index: 10000;
}




/* LOGO */
.site-logo {
  max-width: 220px;
  height: auto;
  transition: max-height 0.3s ease;
  display: block;
}

.header-scrolled .site-logo {
  max-width: 160px;
}

/* LOGO MOBILE SIZING */
.site-logo {
  max-width: 220px;
  height: auto;
  transition: max-width 0.3s ease;
}

@media (max-width: 980px) {
  .site-logo {
    max-width: 160px;
  }
	
	.shortcode-wrapper {
  width: 95%;
  margin: 0 auto;
}
}

/* NAVIGATION */
.site-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MENU */
.main-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.main-menu li {
  position: relative;
  list-style-type: none;
}

.main-menu li a {
  text-decoration: none !important;
  color: #0F3F66;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.main-menu li a:hover {
  color: #8BC2D9;
}

.main-menu li a:visited,
.main-menu li a:active,
.main-menu li a.current-menu-item {
  color: #0F3F66;
}

/* SUBMENUS */
.main-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding: .3rem .5rem;
  margin-top: 0px;
  left: 0;
  background: #0088cc;
  border-radius: 0px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 100px;
}

.main-menu li:hover > ul.sub-menu {
  display: block;
}

.main-menu li ul.sub-menu li a {
  color: white;
  text-transform: none;
  font-weight: normal;
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
}

.main-menu li ul.sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-menu li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

/* DONATE BUTTON (Shared) */
.btn-donate {
  background-color: #F47E52;
  color: white;
  padding: 0.6rem 2.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-donate:hover {
  background-color: #0F3F66;
}


/* DESKTOP ONLY */
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#menu-toggle {
display:none;	
}

/* MOBILE STYLES */
@media (max-width: 980px) {
  /* SHOW BUTTON ☰ */
  #menu-toggle {
    display: block;
    background: none;
    padding: 0.2rem 0.6rem;
    font-size: 3rem;
    cursor: pointer;
    color: #0F3F66;
    border: none;
  }

  /* HIDE MENU */
  .desktop-menu {
    display: none;
  }  

  /* MENU MOBILE */
  #mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 9990;
	  margin-top:90px;
    padding: 100px 2rem 6rem;
    overflow-y: auto;
	  
  }
	
	#mobile-menu a {
		text-decoration: none;
		color:#0F3F66;
		line-height: 2rem;
	}

  #mobile-menu.open {
    display: flex;
  }
	
	#mobile-menu .sub-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
	
}
	
	#mobile-menu .sub-menu a {
  color: lightcoral;
	
}

	#mobile-menu .menu-item-has-children > a::after {
  content: "▾"; 
  font-size: 0.8rem;
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

#mobile-menu .menu-item-has-children.expanded > a::after {
  content: "▴"; 
}

	
#mobile-menu .menu-item-open > .sub-menu {
  display: flex;
}


  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }
	
	

  .main-menu li {
    margin-bottom: 1rem;
	  
  }
	


  .main-menu li ul.sub-menu {
    position: relative;
    background: none;
    box-shadow: none;
    padding-left: 1.5rem;
	 
	  
  }

  .main-menu li ul.sub-menu li a {
    color: #003057;
    font-size: 1rem;
	 
	  
  }
}

/* DESKTOP OVERRIDES */
@media (min-width: 981px) {
  #mobile-menu,
  .mobile-only {
    display: none !important;
  }
}


/* FOOTER*/

.site-footer {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

.footer-partners {
  text-align: center;
  padding: 3rem 1rem;
  
}

.footer-partners h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #0F3F66;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.partners-logos {
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}


.footer-newsletter {
  background-color: #0F3F66;
  padding: 4rem 1rem;
  text-align: center;
}

.footer-newsletter h2 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-form input,
.newsletter-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.75rem;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form .forminator-button {
  background-color: #F58458;
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.newsletter-form .forminator-button:hover {
  background-color: #dd7144;
}


.footer-bottom {
  background-color: #02213e;
  color: #fff;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
	align-items: center;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-right {
  text-align: right;
  align-items: flex-end;
}

.footer-col.footer-right a:hover {
  color: #F47E52;
}

.footer-right .social-icons {
  margin-top: 10px;
}

.footer-right .social-icons a img {
  width: 50px;
  margin-right: 10px;
  transition: filter 0.3s ease;
}

.footer-right .social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(610%) hue-rotate(327deg) brightness(102%) contrast(94%);

}

.footer-left .footer-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 980px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    order: -1;
	  text-align:center;
  }

  .footer-col {
    width: 100%;
  }
	
	.footer-left .footer-logo {
  width: 70%;
  max-width: 400px;
  height: auto;
}
}

.footer-bottom_dhm {
  text-align: center;
  color: white;
  font-size: 0.875rem;
  padding: 1rem 0;
  background-color: #02121E;
}


/* HOME */

.hero-home {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-hero-header {
  position: relative;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 40, 0.3); 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

.hero-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 15%;
}

.hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
  margin: 0;
	max-width: 500px;
	text-align: right;
}

@media (max-width: 980px) {
	
	.hero-home {
 
  background-attachment: scroll;
    background-position: center;
		background-size: cover; 
		
    height: 50vh;
  
}
	
	.hero-content {
  
  justify-content: flex;
  padding: 0 7%;
}
	
	.hero-content h1 {
  
  font-size: clamp(3rem, 5vw, 5rem);
  
	width:100%;
		
		text-align: center;
}
	
}

/* 1ST SECTIONS */

.our-story {
  position: relative;
  background-color: #3e9a87;
  font-family: 'DM Sans', sans-serif;
  color: white;
  overflow: hidden;
  margin-bottom: 0;
}

.program {
  position: relative;
  background-color: #3e9a87;
  font-family: 'DM Sans', sans-serif;
  color: white;
  overflow: hidden;
  margin-bottom: 0;
	border-top:solid white 5px;
	overflow: hidden;
}

.reserve {
  position: relative;
  background-color: #0089C4;
  font-family: 'DM Sans', sans-serif;
  color: white;
  overflow: hidden;
  margin-bottom: 0;
}

/* WAVE */

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.wave-top img {
  width: 100%;
  display: block;
  margin: 0;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.wave-top img {
  width: 100%;
  display: block;
  margin: 0;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  
}

.wave-bottom img {
  width: 100%;
  display: block;
  margin: 0;
}



/* STORY */

.story-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-height: 500px;
  z-index: 1;
}

.story-text {
  width: 55%;
  padding: 9rem 7% 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
	
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: none;
}

.story-text p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.story-image {
  width: 45%;
  background-image: url('http://riverfrontfoundation.org/wp-content/uploads/2025/06/parks-foundation-01.jpg');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  min-height: 300px;
}

.reserve-image {
  width: 45%;
  background-image: url('http://riverfrontfoundation.org/wp-content/uploads/2025/06/0228-Kittner_20180715_8_8133-scaled.jpg');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  min-height: 300px;
}

.program-image {
  width: 45%;
  background-image: url('http://riverfrontfoundation.org/wp-content/uploads/2025/06/0411_Kittner_20170825_5_3247-scaled.jpg');
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  min-height: 300px;
}

@media (max-width: 980px) {
  .story-inner {
    flex-direction: column-reverse;
  }

  
  .story-image {
    width: 100%;
	  height: 50vw;
	  min-height: 250px;
  }
	
	
  .reserve-image {
    width: 100%;
	  height: 50vw;
	  min-height: 250px;
  }
	 .program-image {
    width: 100%;
	  height: 50vw;
	  min-height: 250px;
		 border-top:solid 5px white;
  }
	
	.story-text {
    width: 100%;
	  padding:11rem;
  }

  .story-text {
    padding: 0 15rem 0 2rem;
	  
  }
	
	.story-text p {
  font-size: 1rem;
  line-height: 1.6;
		
}

  
}

/* SUPPORT */

.foundation-support_dhm {
  background-color: #0d1d2d;
  color: #ffffff;
  margin: 0;
  padding: 0;
	border-top:white solid 5px;
	border-bottom:white solid 5px;
}

.support-inner_dhm {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.support-img_dhm,
.support-text_dhm {
  flex: 1 1 50%;
  box-sizing: border-box;
	
}

#our-mission .support-text_dhm {
  flex: 1 1 55%;
  box-sizing: border-box;
	
}

#our-mission .support-img_dhm {
  flex: 1 1 45%;
  box-sizing: border-box;
	
}

.support-img_dhm {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.support-img_dhm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-text_dhm {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-text_dhm h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
	padding:0 5%;
}

.support-text_dhm p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
	margin-bottom: 1.5rem;
	padding:0 5%;
}


@media (max-width: 980px) {
  .support-inner_dhm {
    flex-direction: column;
  }

  .support-text_dhm,
  .support-img_dhm {
    flex: 1 1 100%;
    padding: .7rem;
  }

  .support-text_dhm {
    order: 1;
  }

  .support-img_dhm {
    order: 2;
  }
	
	.support-text_dhm p {
		font-size:1.2rem;
	}
	
	.support-text_dhm h2 {
		margin-top:40px;
		 text-align: center;
	}
	
	
}

/* DONATE */

.foundation-donate_dhm {
  
  background: #0089C4;
  color: white;
}

.donate-inner_dhm {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.donate-text_dhm,
.donate-button_dhm {
  flex: 1 1 50%;
  padding: 4rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.donate-text_dhm h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.donate-text_dhm p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.donate-button_dhm {
  background: #F47D4A;
  align-items: center;
  justify-content: center;
}

.donate-button_dhm a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.donate-button_dhm a:hover {
  transform: scale(1.05);
}

.donate-button_dhm img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* MOBILE */
@media (max-width: 980px) {
  .donate-inner_dhm {
    flex-direction: column;
  }

  .donate-text_dhm,
  .donate-button_dhm {
    flex: 1 1 100%;
    padding: 4rem;
  }
	
	
}

@media (max-width: 980px) {
  .donate-text_dhm {
    order: 2;
  }
  .donate-button_dhm {
    order: 1;
  }
}

/* GALLERY */


.modula-gallery_dhm {
  background-color: #94C9E0;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
	border-top:solid white 5px;
}

.modula-gallery-inner_dhm {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}

/* PROGRAMS */


.program-fulltext {
  width: 100%;
  padding: 45px 20px; 
  background: none; 
}

.program-fulltext__inner {
  max-width: 70%;
  margin: 0 auto;
  font-size: 1.1rem; 
  line-height: 1.6;
}

@media (max-width: 980px) {
	
	.program-fulltext__inner {
  max-width: 95%;
 
}
  
}

/* EVENTS */

.eventprime-page {
  padding: 45px 20px;
}

.eventprime-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* CARDS */

.card-section_dhm {
  padding: 60px 20px 40px;
  margin-top: -150px;
  position: relative;
  z-index: 10;
}

.cards-container_dhm {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
}

.card_dhm {
  text-decoration: none;
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  transition: all 0.3s ease;
  background: white;
  color: #000;
  box-shadow: 5px 3px 10px rgba(0,0,0,0.2);
}

.card_dhm:hover {
  background-color: #009CDE;
  color: white;
  transform: scale(1.03);
  border-color: #009CDE;
}

.card_dhm:active {
  background-color: #F47E52;
  border-color: #F47E52;
  color: white;
}

.card-inner_dhm {
  padding: 20px 0;
  text-align: center;
}

.card-inner_dhm img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  margin: 15px 0 10px;
}

.card-inner_dhm h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
	padding: 0 20px;
}

.card-inner_dhm p {
  font-size: 1rem;
  margin-top: 12px;
	padding: 0 20px;
	text-align: left;
}

.arrow_dhm {
  margin-left: 8px;
  transition: margin-left 0.2s ease;
  display: inline-block;
}

.card_dhm:hover .arrow_dhm {
  margin-left: 12px;
}

@media (max-width: 900px) {
  .cards-container_dhm {
    flex-direction: column;
    align-items: center;
  }

  .card_dhm {
    max-width: 90%;
  }

  .card-inner_dhm img {
    height: 180px;
  }
}

/* MISC */

.hours_dhm::before {
  content: '⏰';
	padding-right:15px;
}

.location_dhm::before {
  content: '📌 ';
	padding-right:15px;
}


#team h2 {
	display: inline-block;
  background-color: #F47E52;
  color: white;
  padding: 0.5em 1em;
	border-radius: 0 20px 0 0;
	position: relative;
  font-size: 1.5rem;
	padding-left: 4rem;
}

#team h2::before {
  content: "";
  background-image: url('http://riverfrontfoundation.org/wp-content/uploads/2025/07/bench.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: .01rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}

.footer-partners h2 {
	display: inline-block;
  background-color: #3E9B83;
  color: white;
  padding: 0.5em 1em;
	border-radius: 0 20px 0 0;
	position: relative;
	padding-left: 4.3rem;
  font-size: 1.5rem;
}

.footer-partners h2::before {
  content: "";
  background-image: url('http://riverfrontfoundation.org/wp-content/uploads/2025/07/tree.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: .01rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.4rem;
  height: 4.4rem;
}

/* PARKS */

.park-hours-bar_dhm {
  background-color: #3E9B83;
	height: 100px;
  color: white;
  padding: 0.5rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.park-info_dhm {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.separator_dhm {
  font-weight: 200;
}


@media (max-width: 980px) {
  .tab-columns_dhm {
    flex-direction: column;
  }
}

#park-tabs {
	background-color: #f7f7f7;
}

/*.overview-wrapper_dhm {
  display: flex;
  flex-wrap: wrap;
  min-height: 90vh;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-text_dhm {
  flex: 1 1 60%;
}

.overview-map_dhm {
  flex: 1 1 40%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .overview-wrapper_dhm {
    flex-direction: column;
  }

  .overview-map_dhm,
  .overview-text_dhm {
    flex: 1 1 100%;
  }
}*/

.tab-menu_dhm {
  background: white;
  padding: 1rem 0;
  border-bottom: 2px solid #eee;
  text-align: center;
}

.tab-list_dhm {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 2rem;
	font-size:1.2rem;
  cursor: pointer;
}

.tab-content_dhm {
  display: none;
	font-size: 1.1rem; 
  line-height: 1.6;
}

.tab-content_dhm.active {
  display: block;
}


.tab-item_dhm.active {
  color: #3E9B83;
  border-bottom: 3px solid #3E9B83;
}


.tab-inner_dhm {
  width: 60%;
  margin: 0 auto;
  padding: 40px 20px;
}




.tab-columns_dhm {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
	max-width:100%;
  margin: 0 auto;
}

.tab-left_dhm {
  padding: 40px 30px 0 15%;
  color: #333;
	flex: 0 1 50%;
	font-size: 1.1rem; 
  line-height: 1.6;
	margin:40px 0;
}

.tab-right_dhm {
  flex: 1 1 47%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.placeholder-map_dhm {
  width: 100%;
  height: 100%;
  min-height: 900px;
  flex-grow: 1;
}

.placeholder-map_dhm iframe {
  width: 100%;
  height: 100%;
  border: 0;
	min-height: 900px;
  
}

#park-map {
  width: 100%;
  height: 1080px;
  min-height: 400px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .tab-columns_dhm {
    flex-direction: column;
	  max-width:95%;
  }

  .tab-left_dhm,
  .tab-right_dhm {
    flex: 1 1 100%;
  }
	.tab-inner_dhm {
  width: 96%;
  margin: 0 auto;
  padding: 40px 20px;
}
	
	#park-map {
  width: 100%;
  height: 400px;
  min-height: 300px;
}
	
}





.gmnoprint,
.gm-style-cc {
  display: none !important;
}

a[href^="https://maps.google.com"],
a[href^="https://www.google.com/maps"] {
  display: none !important;
}


