* {
	box-sizing: border-box;
}

html{ font-size: 100%; height: 100%; width: 100%; overflow-x: hidden; margin: 0px;  padding: 0px; touch-action: manipulation; }

body{ font-size: 16px; font-family: 'Open Sans', sans-serif; width: 100%; height: 100%; margin: 0; font-weight: 400;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; word-wrap: break-word; overflow-x: hidden; 
	color: #333; }

h1, h2, h3, h4, h5, h6, p, a, ul, span, li, img, inpot, button{ margin: 0; padding: 0; }

h1,h2,h3,h4,h5,h6{ line-height: 1.5; font-weight: inherit; }

h1,h2,h3{ font-family: 'Poppins', sans-serif; }

p{ line-height: 1.6; font-size: 1.05em; font-weight: 400; color: #555; }

h1{ font-size: 3.5em; line-height: 1; }
h2{ font-size: 3em; line-height: 1.1; }
h3{ font-size: 2.5em; }
h4{ font-size: 1.5em; }
h5{ font-size: 1.2em; }
h6{ font-size: .9em; letter-spacing: 1px; }

b{ font-weight: 500; }

.page-container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

h1 {
	letter-spacing: -0.1rem;
	font-size: 3rem;
	margin-bottom: 10px;
}

h2 {
	font-size: 1.8rem;
	color: #808080;
	letter-spacing: -0.06rem;
	margin-bottom: 20px;
}

p.description {
	margin-bottom: 20px;
}

.primary-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

a.contact-button {
	display: inline-block;
    border: 1px solid #f9d95e;
    border-radius: 3px;
    color: #524a2a;
    padding: 10px 30px;
    margin-top: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    background-color: #ffe9a7;
    font-weight: 600;
    margin-right: 5px;
}

a.fb-button {
	background-color: #4267b2;
	border: 1px solid #4267b2;
	border-radius: 3px;
	color: #FFF;
	padding: 10px 30px;
	margin-top: 15px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.schedule-container .event a.learn-more {
	display: inline-block;
	border: 1px solid #262626;
	border-radius: 3px;
	color: #262626;
	padding: 8px 20px;
	margin-top: 15px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s;
}

.page-container .left-section {
	position: fixed;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	padding: 100px;
	overflow: scroll;
}

.page-container .right-section {
	position: fixed;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.schedule-container {
	margin-top: 40px;
	margin-bottom: 40px;
}

.schedule-container .event {
	border-bottom: 1px solid #DDD;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.schedule-container .event .event-title {
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: -0.02rem;
	margin-bottom: 6px;
}

.schedule-container .event .event-date {
	font-weight: 600;
	color: #555;
	margin-bottom: 6px;
}

.schedule-container .event .event-location {
	margin-bottom: 6px;
}

.schedule-container .event a.learn-more {
	display: inline-block;
	border: 1px solid #262626;
	border-radius: 3px;
	color: #262626;
	padding: 8px 20px;
	margin-top: 15px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s;
}

.schedule-container .event a.learn-more:hover {
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}

@media only screen and (max-width: 1179px) {

	.page-container .left-section {
		padding: 40px;
	}

	h1 {
		letter-spacing: -0.1rem;
		font-size: 2.4rem;
		margin-bottom: 10px;
	}

	h2 {
		font-size: 1.2rem;
		color: #808080;
		letter-spacing: -0.06rem;
		margin-bottom: 20px;
	}

	p.description {
		font-size: 0.9rem;
	}

	a.contact-button,
	a.fb-button {
		width: 100%;
		text-align: center;
		margin-bottom: 0px;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 768px) {

	.page-container {
		flex-direction: column-reverse;
	}

	.page-container .left-section,
	.page-container .right-section {
		position: static;
		width: 100%;
	}

	.page-container .right-section {
		height: 300px;
		background-position: center 25%;
	}

}