@charset "UTF-8";
/* CSS Document */
body {
	margin: 0;
	font-family: 'Crimson Text', serif;
	color: #333;
}
a {
	text-decoration: none;
	color: #FFB22D;
	transition: 0.5s ease;
}
a:hover {
	color: #666;
}
h1 {
	font-size: 24px;
	margin: 0;
	padding: 0;
}
.centred {
	text-align: center;
	padding-top: 10px;
}
.centred a {
	padding: 0 10px;
}
.wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
}
.inner {
	
	max-width: 900px;
	width: 90%;
	padding: 0 5%;
	margin: 20px auto 0 auto;
}

.divider {
	clear: both;
	border-bottom: 1px solid #ccc;
	height: 20px;
}

/*MENU*/
#logo {
	width: 100%;
	max-width: 700px;
	margin: 20px auto 0 auto;
}
#logo img {
	width: 100%;
	height: auto;
}
#menu {
	display: flex;
	justify-content: center;
	font-size: 20px;	
	margin-bottom: 20px;
}
.menuItem {
	padding: 0 10px;
}

.menuItem a {
	text-decoration: none;
	transition: 0.5s ease;
}
.menuItem a:hover {
	color: #666;
}
.selected {
	color: #666;
}
/*END MENU*/

.imageHolder {
	float: left;
	width: 50%;
	margin-right: 3%;
	margin-bottom: 20px;
}
.imageHolder img {
	width: 100%;
	height: auto;
}
.aboutInfo {
	width: 47%;
	float: right;
	margin-bottom: 20px;
}

.gallery img {
	width: 100%;
	height: auto;
}

.icon {
	padding: 10px;
}
.icon img {
	transition: 0.5s ease;
	width: 40px;
	height: 40px;
}
.icon img:hover {
	opacity: 0.5;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
.holder {
	clear: both;
	width: 200px;
	margin: 20px auto;
	display: flex;
	justify-content: space-around;
}

/*CREDITS*/
.creditsHolder {
	margin: 10px 0;
	box-sizing: border-box;
	width: 100%;
	clear: both;
	display: inline-block;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;	
}
.creditRow {
	display: flex;
	justify-content: space-between;
	width: 100%;
	clear: both;
}
.firstRow {
	font-weight: 600;
	background-color: #eee;
}
.creditCol {
	box-sizing: border-box;
	width: 25%;
	padding: 10px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;	
}

.creditCol p {
	margin: 0;
	padding: 0;
}

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

.imageHolder {
	margin-right: 0;
	float: none;
	width: 100%;
}
.aboutInfo {
	width: 100%;
	float: none;
}

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

input[type=text] {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    width: 80%;
}
