* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

#audio-walkthrough #banner {
	position: relative;
	height: 100vh;
	min-height: 300px;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	/* padding: 150px 0 0 0; */
	display: flex;
	flex-direction: column;
	padding: 0;
	justify-content: center;
}

#audio-walkthrough #banner h1:before {content: 'Welcome to the Emersons Green audio tour';}

#audio-walkthrough span.stop {
    background: white;
    padding: 5px 15px;
    color: black;
    border-radius: 25px;
    top: -30px;
    position: relative;
}

#audio-walkthrough #banner.overlay:after {
	content: '';
	width: 100%;
	height: 100%;
	background: #75af53;
	background: linear-gradient(216deg, rgb(117 175 83 / 90%) 5%, rgb(117 175 83 / 70%) 29%, rgb(46 120 114 / 95%) 95%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
}

#audio-walkthrough #banner .content {
	position: relative;
	z-index: 999;
	top: 60px;
	color: white;
	height: unset;
	margin: 0 auto;
	max-width: 1300px;
	width: 100%;
}

body#audio-walkthrough header .block {
	border-radius: 0 0 10px 10px;
}

#audio-walkthrough #logo img {
	width: 175px;
}

#audio-walkthrough .grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

#audio-walkthrough #about .content {
	grid-column: span 2;
}

#audio-walkthrough .location {
	background: #ffffff;
	padding: 10px;
	box-shadow: 0 0 1px rgb(13 102 147 / 5%), 0 1px 5px rgb(39 45 63 / 10%);
	border-radius: 8px;
}

#audio-walkthrough .location p {
	font-size: 28px;
	text-transform: capitalize;
	margin: 0;
	padding: 10px 15px;
}

#audio-walkthrough .location img {
	border-radius: 8px;
	aspect-ratio: 4/3;
	object-fit: cover;
}


#audio-walkthrough #about .grid-3 {
	display: grid;
	align-items: center;
}


#audio-walkthrough .locations {
	counter-reset: location-counter;
}


#audio-walkthrough .location::after {
	counter-increment: location-counter;
	content: counter(location-counter);
	position: absolute;
	top: 20px;
	left: 20px;
	background: white;
	color: black;
	padding: 4px 8px;
	border-radius: 50%;
	font-weight: bold;
	height: 40px;
	width: 40px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

#audio-walkthrough div#nav-container li {
	list-style: none;
	margin: 0;
}

.home section#banner:after {
	opacity: 0;
}

#audio-walkthrough .location-title a {
    display: flex;
    align-items: center;
    gap: 30px;
}

#audio-walkthrough .location-title img {
    max-width: 200px;
}

#audio-walkthrough .location-title h2 {
    margin: 0;
}


#audio-walkthrough div#nav-container a {
	border: 2px solid currentColor;
	padding: 5px 10px;
	border-radius: 12px;
	color: black;
	text-decoration: none;
}

#audio-walkthrough .location {
	position: relative;
}

#audio-walkthrough #about img {
	border-radius: 12px;
	width: 100%;
}


#audio-walkthrough .audio-wrapper {
	display: flex;
	gap: 30px;
	margin: 30px 0;
}

#audio-walkthrough .audio-wrapper button {
	border-radius: 25px;
	background: white;
	border: none;
	font-weight: 700;
	cursor: pointer;
	width: 200px;
	height: auto;
}

#audio-walkthrough #transcript>p {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

#audio-walkthrough #transcript>.visible {
	display: block;
	opacity: 1;
}

#audio-walkthrough .audio-icon.flip {
	transform: rotate(180deg);
}


#audio-walkthrough #transcript-controls button {
	background: white;
	border-radius: 50%;
	padding: 5px;
	cursor: pointer;
}

#audio-walkthrough #transcript-wrapper {
	opacity: 0;
	visibility: hidden;
}

#audio-walkthrough #transcript-wrapper.active {
	opacity: 1;
	visibility: visible;
	height: max-content;
	min-height: 300px;
}

#audio-walkthrough .identifier {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out;
	font-size: 16px;
}

#audio-walkthrough .identifier.active {
	opacity: 1;
	visibility: visible;
}

#audio-walkthrough #transcript-wrapper {
	max-width: 900px;
	background: #ffffff26;
	padding: 15px;
	border-radius: 12px;
	position: relative;
	height: 0;
}

#audio-walkthrough #transcript-controls button img {
	height: 40px;
}

#audio-walkthrough #map>div {
	border-radius: 12px;
	margin-bottom: 30px;
}

#audio-walkthrough #nav-container {
	display: flex;
	height: 100%;
	align-items: center;
}

#audio-walkthrough #nav-container ul {
	margin: 0;
}

#audio-walkthrough #close-transcript {
	position: absolute;
	right: 10px;
	bottom: 12px;
	border-radius: 50%;
	background: #ffffff;
	height: 52px;
	width: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	padding: 0;
	cursor: pointer;
}

#audio-walkthrough #close-transcript svg {
	height: 30px;
	width: 30px;
}
#audio-walkthrough address {
    font-size: 17px;
    font-style: normal;
}

#audio-walkthrough .contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#audio-walkthrough .contact {
    padding: 15px;
    background: #8080800d;
    border-radius: 12px;
}
#audio-walkthrough .contact-links a {font-size: 16px;}

#audio-walkthrough #colophon,
#audio-walkthrough #copyright {
	height: fit-content;
	text-align: center;
}

#audio-walkthrough .container.med {
	height: max-content;
}

#audio-walkthrough #banner p {
	max-width: unset;
}

div#transcript-controls {
	position: absolute;
	bottom: 12px;
}

#audio-walkthrough .audio-wrapper button {
	min-height: 50px;
	font-size: 16px;
}


#audio-walkthrough #top {
	height: 110px;
}


#audio-walkthrough .left {
	grid-column: span 2;
}

.left,
.right {
	gap: 10px;
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.right h3 {
	margin-top: 1.5rem;
	color: #f16523;
}

.poi-list {
	list-style: none;
	padding-left: 0;
}

.poi-list li {
	margin-bottom: 0.5rem;
}

section#about-the-walk>.container {
	/* display: flex; */
	/* gap: 50px; */
}

.poi-list span {
	color: #ff3d00;
	display: block;
	margin-left: 1.5rem;
	font-size: 0.6rem;
}
#audio-walkthrough a {
    color: black;
    text-decoration: underline;
}
.thanks {
	/* margin-top: 3rem; */
}

.thanks p {
	color: #006699;
}

em {
	font-style: italic;
}


section#infographic {
	position: relative;
}

a.download-map {
	position: absolute;
	top: 2%;
	left: 0.5%;
	background: #ff914d;
	color: white;
	padding: 15px 50px;
}

a.website-name {
	position: absolute;
	bottom: 2px;
	right: 11%;
	background: #577e4b;
	font-size: 17px;
	padding: 5px 30px;
}

@media only screen and (max-width: 1100px) {
	#audio-walkthrough.home #banner {
		background-repeat: no-repeat;
		background-position: center;
		height: unset;
		margin-top: 110px;
	}

}


@media only screen and (max-width: 1000px) {
	a.download-map {
		padding: 5px 20px;
	}

	a.website-name {
		font-size: 10px;
		padding: 5px 10px;
	}

	#audio-walkthrough #about .content {
		grid-column: span 3;
	}

	#audio-walkthrough #about .image {
		grid-column: span 3;
	}
}

@media only screen and (max-width: 850px) {}


@media only screen and (max-width: 750px) {
	#audio-walkthrough #transcript-wrapper.active {
		min-height: 250px;
	}

	#audio-walkthrough #logo img {
		max-width: 125px;
	}

	#audio-walkthrough #header-content {
		height: 80px;
	}

	#audio-walkthrough #top {
		height: 80px;
	}

	#audio-walkthrough #toggle {
		top: -12px;
	}

	#audio-walkthrough.home #banner {
		margin-top: 90px;
	}

}

@media only screen and (max-width: 650px) {
	a.website-name {
		font-size: 6px;
		padding: 5px 10px;
	}

	section#about-the-walk>.container .left {
		grid-column: span 3
	}

	section#about-the-walk>.container .right {
		grid-column: span 3
	}

}

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

	.audio-wrapper {
		gap: 10px !important;
	}

	.audio-wrapper>* {
		width: 50%;
	}

	#audio-walkthrough #transcript-wrapper.active {
		min-height: 250px;
	}

	#audio-walkthrough #banner .content {
		margin-top: -60px;
	}

}


@media only screen and (max-width: 450px) {
    
    #audio-walkthrough #banner{height:100vh;}
	.audio-wrapper {
		gap: 10px !important;
		flex-direction: column;
	}

	.audio-wrapper>* {
		width: 100%;

	}

	header#top {
		padding: 0;
	}

	#audio-walkthrough #banner .content {
		margin-top: -30px;
	}
}