section h1 {
	text-shadow: 2px 2px 1px rgba(35, 86, 164, 0.5);
}
li {
	text-align: left;
}
.banner {
	width: 100vw;
    position: absolute;
    background-size: cover;
    left: 0;
    top: 70px;
    z-index: -1;
    color: #fff;
    height: 25vw;
    display: block;
    background-position: center;
}
.banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(255,255,255,0), white);
}
.title {
	text-align: center;
	color: #fff;
}
.title h1:before {
	display: none;
}
article {
	display: grid;
	grid-template-columns: 65% calc(35% - 40px);
	grid-gap: 0px 40px;
	padding: 90px;
}
article > div:not(:last-of-type) {
	margin-bottom: 40px;
}
.image {
	grid-area: 1 / 1 / span 1 / span 2;
}
.description {
	grid-area: 2 / 1 / span 1 / span 2;
	text-align: center;
}
.featuring {
	grid-area: 3 / 1 / span 1 / span 2;
	text-align: center;

}
.pieces {
	display: flex;
  	flex-direction: row;
  	justify-content: space-evenly;
}
.piece {
	text-align: center;
	margin-bottom: 20px;
}
.composer {
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	font-size: 0.9em;

}
.location {
	padding-right: 40px;
	text-align: center;
}
.location p {
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-size: 0.9em;
}
.map {
	border: none;
	width: 100%;
	height: 400px;
}
.conditions {
	grid-area: 5 / 1 / span 1 / span 2;
}
.conditions p {
	font-size: 0.7em;
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	text-align: center;
}
.tickets {
	text-align: center;
}
.tickets table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #2256a4;
	text-align: left;
	font-family: 'Raleway', sans-serif;
	font-size: 0.85em;
}
.tickets table:first-of-type {
	margin-bottom: 20px;
}
.tickets th {
	background-color: rgba(34, 86, 164, 0.5);
}
.tickets tr:nth-child(even) {
    background-color: #eaeaea;
}
.tickets tr:nth-child(odd) {
    background-color: #fff;
}
.tickets tr > td:nth-of-type(2),
.tickets tr > th:nth-of-type(2) {
	text-align: right;
}
.tickets td, .tickets th {
	padding: 10px;
	line-height: 100%;
}
button {
	box-shadow: none;
	border-radius: 5px;
	padding: 15px 30px;
	background: #2256a4;
	color: #fff;
	font-weight: bold;
	border: none;
	display: inline-block;
	cursor: pointer;
	font-size: 12px;
	margin-top: 30px;
	font-family: 'Raleway', sans-serif;
}
.playlist {
	grid-area: 6 / 1 / span 1 / span 2;
}
.playlist iframe {
	border: none;
	width: 100%;
	height: 400px;
}
@media only screen and (max-width: 950px) {
	.banner {
	    height: 55vh;
	}
	article {
	    padding: 0;
	    font-size: 1em;
	    line-height: 1.5;
	    grid-template-columns: 100%;
	}
	article p:not(:last-of-type) {
	    margin-bottom: 5px;
	}
	.playlist iframe {
	    height: 250px;
	}
	.image {
	    grid-area: 1 / 1 / span 1 / span 1;
	}
	.description {
	    grid-area: 2 / 1 / span 1 / span 1;
	}
	.location {
	    grid-area: 3 / 1 / span 1 / span 1;
	    padding-right: 0;
	}
	.map {
		height: 200px;
		margin-top: 15px;
	}
	.tickets {
	    grid-area: 4 / 1 / span 1 / span 1;
	}
	.conditions {
	    grid-area: 5 / 1 / span 1 / span 1;
	}
	.playlist {
	    grid-area: 6 / 1 / span 1 / span 1;
	}
	.featuring {
		display: none;
	}
	section h1 {
		margin-bottom: 50px;
	}
}