@charset "UTF-8";

/*-- Reset --*/

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	width:100%;
	height:auto;
	display:block;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}


/*-- General --*/

html {
	background: #fff;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
}

body {
	background: #fff;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
	position: relative;
	text-rendering: optimizeLegibility;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1 {
	font: 600 60px/70px "adelle", serif;
	color: #fff;
	margin: 0 0 30px;
}

h2 {
	font: 600 38px/48px "adelle", serif;
	color: #074773;
	margin: 0 0 30px;
}

h3 {
	font: 300 31px/41px "adelle", serif;
	font-style: italic;
	color: #08273b;
	letter-spacing: -0.005em;
	margin: 0 0 30px;
}

h4 {
	font: 300 19px/23px "field-gothic", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #96c600;
	margin: 0 0 10px;
}

p {
	font: 300 20px/30px "field-gothic", sans-serif;
	letter-spacing: 0.01em;
	color: #08273b;
	margin: 0 0 30px;
}

p span {
	font: 300 20px/30px "adelle", serif;
	font-style: italic;
	opacity: 0.7;
}

p .green {
	font: 400 20px/30px "field-gothic", sans-serif;
	color: #96c600;
}

ul {
	list-style: none;
	margin: 0 0 30px;
}

ul li {
	font: 300 20px/30px "field-gothic", sans-serif;
	letter-spacing: 0.01em;
	color: #08273b;
	margin: 0 0 30px;
}

a.button {
	background: #96c600;
	border-radius: 6px;
	font: 500 17px/21px "field-gothic", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: #fff;
	padding: 20px 30px;
	display: inline-block;
	transition: all 0.2s ease;
}

a.button:hover {
	background: #074773;
}


/*-- Navigation --*/

nav {
	background: #fff;
}

nav .container {
	width: 100%;
	max-width: 1300px;
	height: 90px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav #logo {
	width: 210px;
	height: auto;
	positon: relative;
	z-index: 999;
}

nav #logo.active {
	position: fixed;
}

nav ul {
	display: flex;
	margin: 0;
	position: relative;
}

nav ul li {
	list-style: none;
	margin: 0 25px;
}

nav ul li a {
	font: 500 17px/17px "field-gothic", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #014675;
	text-decoration: none;
	position: relative;
	transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

nav ul li a:hover {
	color: #08273b;
}

nav ul li a:after {
	content: "";
	background-image:linear-gradient(to left, #fff, #96c600, #fff);
	width: 0;
	height: 2px;
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

nav ul li a:hover:after {
	width: 130%;
}

nav a.button {
	border-radius: 5px;
	font: 500 15px/19px "field-gothic", sans-serif;
	padding: 13px 20px;
}

#mobile-menu {
	width: 40px;
	height: 24px;
	position: absolute;
	top: 29px;
	right: 30px;
	cursor: pointer;
	z-index: 999;
	display: none;
}

#mobile-menu.active {
	position: fixed;
}

#mobile-menu .bar {
	background: #014675;
	width: 100%;
	height: 3px;
	margin: 0 auto 7px;
	cursor: pointer;
	position: relative;
}

#mobile-menu .bar.active:nth-child(1) {
	animation: bar1 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(2) {
	animation: bar2 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(3) {
	animation: bar3 0.1s ease forwards;
}

@keyframes bar1 { 
	to {
		background: #fff;
		transform: rotate(45deg);
		top: 10px;
	}
}

@keyframes bar2 { 
	to {
		opacity: 0;
	}
}

@keyframes bar3 { 
	to {
		background: #fff;
		transform: rotate(-45deg);
		top: -10px;
	}
}


/*-- Layout --*/

.container {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	padding: 30px;
}

.col1 {
	width: 100%;
	padding: 30px;
}

.col2 {
	width: 50%;
	padding: 30px;
}


/*-- Header --*/

header {
	background: #000;
	width: 100%;
	height: -webkit-calc(100vh - 140px);
	height: -moz-calc(100vh - 140px);
	height: calc(100vh - 140px);
	max-height: 650px;
	min-height: 500px;
	position: relative;
	overflow: hidden;
}

header img {
	object-fit: cover;
	width: 100%;
	height: -webkit-calc(100vh - 140px);
	height: -moz-calc(100vh - 140px);
	height: calc(100vh - 140px);
	max-height: 700px;
	min-height: 600px;
	opacity: 0;
	transform: scale(1);
	animation: headerimg 5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes headerimg { 
	40% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1.07);
	}
}

header h1 {
	text-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
	max-width: 950px;
	position: absolute;
	bottom: -40px;
	left: 0;
	padding: 0 60px;
	z-index: 3;
	opacity: 0;
	animation: headertext 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	animation-delay: 0.2s;
}

@keyframes headertext { 
	to {
		bottom: 20px;
		opacity: 1;
	}
}

header:after {
	content: "";
	background-image: linear-gradient(to top right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: ;
	z-index: 2;
}


/*-- Intro --*/

#intro {
	display: flex;
	flex-wrap: wrap;
}

#intro .col2:nth-child(1) {
	width: -webkit-calc(100% - 400px);
	width: -moz-calc(100% - 400px);
	width: calc(100% - 400px);
	background: #fff;
}

#intro .col2:nth-child(2) {
	width: 400px;
	background-image: linear-gradient(to top, #033e67, #014675);
	text-align: center;
}

#intro .col2:nth-child(2) h4 {
	padding: 0 0 25px;
	margin: 0 0 30px;
	position: relative;
}

#intro .col2:nth-child(2) h4:after {
	content: "";
	background-image:linear-gradient(to left, #014675, #fff, #014675);
	width: 150px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

#intro .col2:nth-child(2) ul li {
	font: 300 22px/26px "adelle", serif;
	font-style: italic;
	color: #fff;
	margin: 0 0 20px;
}

#intro .col2:nth-child(2) ul li a {
	color:#fff;
	text-decoration:none;
}


/*-- Tenets--*/

.tenets .accordion-header {
	background: #f3f5ec;
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	transition: all 0.4s ease;
}

.tenets .accordion-header:hover {
	background: #eaecdc;
}

.tenets .accordion-header h2 {
	transition: all 0.2s ease;
}

.tenets .accordion-header:hover h2 {
	color: #08273b;
}

.tenets .accordion-header .col2:nth-child(1) {
	border-top: 1px solid #c1c89e;
	width: 400px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.tenets .accordion-header .col2:nth-child(2) {
	border-top: 1px solid #c1c89e;
	border-left: 1px solid #c1c89e;
	width: -webkit-calc(100% - 400px);
	width: -moz-calc(100% - 400px);
	width: calc(100% - 400px);
	padding-top: 15px;
	padding-bottom: 15px;
}

.tenets .accordion-header .col2:nth-child(2) .container {
	padding-right: 110px;
}

.tenets .accordion-header h2 {
	margin: 0;
}

.tenets .accordion-header h3 {
	margin: 6px 0 0;
}

.tenets .accordion-header .arrow {
	background: url("../images/accordion-shape-brown.svg") center center no-repeat;
	background-size: 66px;
	width: 66px;
	height: 66px;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tenets .accordion-header .arrow:after {
	content: "";
	background: url("../images/accordion-arrow-brown.svg") center center no-repeat;
	background-size: 66px;
	width: 66px;
	height: 66px;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tenets .accordion-header:hover .arrow {
	background: url("../images/accordion-shape-blue.svg") center center no-repeat;
	background-size: 66px;
}

.tenets .accordion-header:hover .arrow:after {
	background: url("../images/accordion-arrow-blue.svg") center center no-repeat;
	background-size: 66px;
}

.tenets .accordion-header.active .arrow:after {
	transform: rotate(90deg);
}

.tenets .accordion-content {
	background-image: linear-gradient(to top, #033e67, #014675);
	display: none;
	position: relative;
}

.tenets .accordion-content .container {
	opacity: 0;
	position: relative;
	top: 100px;
}

.tenets .accordion-content .container.active {
	animation: accordioncontent 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.2s;
}

@keyframes accordioncontent { 
	to {
		opacity: 1;
		top: 0;
	}
}

.tenets .accordion-content h3 {
	text-align: center;
	color: #fff;
	position: relative;
	padding: 0 0 30px;
	margin: 0 0 40px;
}

.tenets .accordion-content h3:after {
	content: "";
	background-image:linear-gradient(to left, #014675, #fff, #014675);
	width: 150px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.tenets .accordion-content h4 {
	text-align: center;
}

.tenets .accordion-content ul li {
	color: #fff;
	padding: 0 0 0 55px;
	position: relative;
}

.tenets .accordion-content ul li span {
	width: 33px;
	height: 33px;
	border: 1px solid #eaecdc;
	border-radius: 33px;
	font-size: 19px;
	text-align: center;
	color: #96c600;
	position: absolute;
	top: -1px;
	left: 0;
}

.tenets .accordion-content .close {
	width: 40px;
	height: 40px;
	border: 1px solid #eaecdc;
	border-radius: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	opacity: 0;
	top: 100px;
	z-index:2;
}

.tenets .accordion-content .close.active {
	animation: accordionclose 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.2s;
}

@keyframes accordionclose { 
	to {
		opacity: 1;
		top: 20px;
	}
}

.tenets .accordion-content .close .bar {
	background: #fff;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	cursor: pointer;
	position: absolute;
}

.tenets .accordion-content .close .bar:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	top: 50%;
	left: 50%;
}

.tenets .accordion-content .close .bar:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
	top: 50%;
	left: 50%;
}

.tenets .photo {
	border-radius: 8px;
	max-width: 700px;
	max-height: 400px;
	height: 50vw;
	margin: 0 auto 40px;
	overflow: hidden;
	position: relative;
}

.tenets .photo img {
	max-width: 700px;
	max-height: 400px;
	height: 50vw;
	object-fit: cover;
}


/*-- Events --*/

#upcoming-events {
	background:#96c600;
	text-align:center;
}

#upcoming-events h4 {
	color:#fff;
}

#events {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

#events .col2:nth-child(1) {
	padding: 0;
	position: relative;
}

#events .col2:nth-child(1) img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: top center;
	width: 100%;
	height: 100%;
}

#events .col2:nth-child(2) {
	background: #96c600;
	background-image: linear-gradient(to top, #96c600, #9fcb00);
	text-align: center;
}

#events .col2:nth-child(2) .container {
	max-width: 600px;
}

#events .col2:nth-child(2) h2 {
	margin: 0 0 10px;
}

#events .col2:nth-child(2) h4 {
	color: #074773;
	margin: 0 0 30px;
}

#events .col2:nth-child(2) a.button {
	background: #074773;
}

#events .col2:nth-child(2) a.button:hover {
	background: #08273b;
}


#events2 {
	display: flex;
	flex-wrap: wrap;
}

#events2 .col2:nth-child(1) {
	padding: 0;
	position: relative;
}

#events2 .col2:nth-child(1) img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: top center;
	width: 100%;
	height: 100%;
}

#events2 .col2:nth-child(2) {
	background: #96c600;
	background-image: linear-gradient(to top, #96c600, #9fcb00);
	text-align: center;
}

#events2 .col2:nth-child(2) .container {
	max-width: 600px;
}

#events2 .col2:nth-child(2) h2 {
	margin: 0 0 10px;
}

#events2 .col2:nth-child(2) h4 {
	color: #074773;
	margin: 0 0 30px;
}

#events2 .col2:nth-child(2) a.button {
	background: #074773;
}

#events2 .col2:nth-child(2) a.button:hover {
	background: #08273b;
}

/* PREVIOUS EVENTS */

#previous-events {
	background-image: linear-gradient(to top, #033e67, #014675);
}

#previous-events h4 {
	text-align:center;
	margin:0 0 25px 0;
}

#previous-events .container {
	width:100%;
	max-width:100%;
	padding:60px 0 0 0;
}

#previous-events h2 {
	color:#f3f5ec;
}

#previous-events .two-columns {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	padding:30px 60px;
	border-top:1px solid #06568d;
}

#previous-events .two-columns .col:nth-child(1) {
	width:-webkit-calc(100% - 360px);
	width:-moz-calc(100% - 360px);
	width:calc(100% - 360px);
}

#previous-events .two-columns .col:nth-child(2) {
	width:360px;
}

#previous-events .two-columns .col:nth-child(2) .button {
	float:right;
}

/*-- Team --*/

#team {
	background: #fff;
}

#team h3 {
	margin: 0 0 5px;
}

#team p {
	margin: 0;
}

#team p span {
	opacity: 1;
}

#team p a {
	color: #074773;
	text-decoration: none;
}

#team .container {
	max-width: 1200px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items:center;
}

#team .photo {
	display:block;
	border-radius: 8px;
	max-width: 350px;
	height: 400px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

#team .photo img {
	max-width: 350px;
	height: 400px;
	object-fit: cover;
	object-position: top center;
}

#group-leaders {
	margin-top:40px;
}

#group-leaders h4 {
	text-align:center;
}

#group-leaders h3 {
	font-size:28px;
	line-height:30px;
}

#team .three-columns {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

#team .three-columns .col {
	width:33.333%;
	text-align:center;
	padding:0 20px;
	margin-bottom:40px;
}


/* JOIN A SMALL GROUP */

#join-a-small-group {
	background:#f3f5ec;
	border-top: 1px solid #c1c89e;
	border-bottom: 1px solid #c1c89e;
}

#join-a-small-group h4 {
	text-align:center;
	margin:0 0 25px 0;
}

#join-a-small-group .container {
	width:100%;
	max-width:100%;
	padding:60px;
}

#join-a-small-group h2 {
	color:#f3f5ec;
}

#join-a-small-group .three-columns {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

#join-a-small-group .three-columns .col {
	width:33.333%;
	text-align:center;
	padding:0 20px;
	margin-bottom:30px;
}

#join-a-small-group h3 {
	font-size:28px;
	line-height:30px;
	margin:0 0 5px 0;
}


/* GROW SPIRITUALLY */

#grow-spiritually {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

#grow-spiritually .col2:nth-child(1) {
	width:40%;
	padding: 0;
	position: relative;
	overflow:hidden;
}

#grow-spiritually .col2:nth-child(1) img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: top left;
	width: 101%;
	height: 101%;
}

#grow-spiritually .col2:nth-child(2) {
	width:60%;
	background: #96c600;
	background-image: linear-gradient(to top, #033e67, #014675);
	text-align: center;
}

#grow-spiritually .col2:nth-child(2) h2 {
	margin: 0 0 10px;
}

#grow-spiritually .col2:nth-child(2) h4 {
	margin: 0 0 30px;
}

#grow-spiritually .col2:nth-child(2) a.button {
	background: #074773;
}

#grow-spiritually .col2:nth-child(2) a.button:hover {
	background: #08273b;
}

#grow-spiritually .col2:nth-child(2) ul li {
	font:300 22px/26px "adelle", serif;
	font-style:italic;
	color:#abc0c7;
	margin:0 0 15px 0;
}

#grow-spiritually .col2:nth-child(2) ul li span {
	font-weight:600;
	font-style:normal;
	color:#fff;
}

/*-- Footer --*/

footer {
	background: #96c600;
    background-image: linear-gradient(to top, #96c600, #9fcb00);
	position: relative;
	overflow: hidden;
}

footer .container {
	max-width: 1200px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

footer h4 {
	color:#074773;
}

footer p {
	color: #08273b;
	margin: 0;
}

footer p a {
	color: #08273b;
	text-decoration: none;
}

footer .container:nth-child(2) {
	padding-top: 0;
}

footer .col1 {
	padding-top: 0;
	padding-bottom: 0;
}

p.copyright,
p.copyright span {
	font-size: 15px;
	line-height: 19px;
}

p.copyright a {
	color: #08273b;
	text-decoration: none;
}

footer img {
	width: 650px;
	height: auto;
	position: absolute;
	top: -50px;
	left: -50px;
	opacity: 0.05;
}


/*-- Fancybox --*/

.fancybox-bg {
	background: #033e67 !important;
}

.fancybox-content {
	text-align: center !important;
	padding: 0 !important;
}

.fancybox-popup {
	display: none;
	border: 0 !important;
	padding: 0 !important;
}

.fancybox-popup a.button {
	margin: 0 auto 35px;
}

.fancybox-toolbar {
	opacity: 1 !important;
	visibility: visible !important;
}

.fancybox-button--zoom,
.fancybox-button--play,
.fancybox-button--thumbs,
.fancybox-navigation,
.fancybox-button--close svg {
	display:none !important;
}

.fancybox-button--close {
	background:url("../images/close.svg") no-repeat center center !important;
	background-size:28px 28px !important;
	border:0 !important;
	width:54px !important;
	height:54px !important;
	text-indent:-999999px !important;
	position:absolute !important;
	top:0 !important;
	right:0 !important;
	cursor:pointer !important;
	z-index:10 !important;
}



/*-- Mediaqueries --*/

@media (max-width: 1450px) {
	#join-a-small-group .three-columns .col,
	#team .three-columns .col {
		width:50%;
	}
}

@media (max-width: 1300px) {

	nav .container {
		height: 80px;
	}

	nav #logo {
		width: 190px;
	}

	nav ul li {
		margin: 0 20px;
	}

	nav ul li a {
		font-size: 16px;
	}

	nav a.button {
		font-size: 14px;
	}

	.tenets .accordion-header .col2:nth-child(2) .container {
		padding-right: 80px;
	}

	.tenets .accordion-header .arrow {
		right: 30px
	}

}


@media (max-width: 1100px) {

	h1 {
		font-size: 50px;
		line-height: 60px;
	}

	#mobile-menu {
		display: block;
	}

	nav ul {
		display: none;
		background-image: linear-gradient(to top, #033e67, #014675);
		width: 100%;
		height: 100%;
		padding: 80px 10px 0 40px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}

	nav ul li {
		margin: 15px 0;
		position: relative;
	}

	nav ul li a {
		font: 300 24px/28px "adelle", serif;
		font-style: italic;
		text-transform: none;
		color: #fff !important;
	}

	nav ul li a:after {
		display: none;
	}

	nav ul li:first-child {
		padding-top: 35px;
	}

	nav ul li:first-child:before {
		content: "";
		background-image:linear-gradient(to left, #014675, #fff, #014675);
		width: 150px;
		height: 1px;
		position: absolute;
		top: 0;
		left: -15px;
	}

	nav a.button {
		display: none;
		position: fixed;
		z-index: 999;
		left: 35px;
		bottom: 35px;
	}

	nav a.button:hover {
		color: #08273b;
		background: #fff;
	}

	.col2 {
		width: 100%;
	}

	#intro .col2:nth-child(1) {
		width: 100%;

	}

	#intro .col2:nth-child(2) {
		width: 100%;
	}

	#intro .col2:nth-child(2) ul {
		columns: 2;
	}

	.tenets .accordion-header .col2:nth-child(1) {
		text-align: left;
		width: 100%;
		padding-bottom: 0;
	}

	.tenets .accordion-header .col2:nth-child(1) .container {
		padding-top: 10px;
		padding-bottom: 0;
		padding-right: 80px;
	}

	.tenets .accordion-header .col2:nth-child(2) {
		border: 0;
		width: 100%;
		padding-top: 0;
	}

	.tenets .accordion-header .col2:nth-child(2) .container {
		padding-top: 0;
		padding-bottom: 10px;
	}

	#events .col2:nth-child(1) {
		width: 100%;
		height: 50vw;
	}

	#events .col2:nth-child(1) img {
		width: 100%;
		height: 50vw;
	}

	#grow-spiritually .col2:nth-child(1) {
		display:none;
	}

	#grow-spiritually .col2:nth-child(2) {
		width:100%;
	}

	footer img {
		width: 500px;
		top: 100%;
		left: 50%;
		transform: translate(-51%, -68%);
	}

}


@media (max-width: 950px) {
	#previous-events h2 {
		text-align:center;
		margin-bottom:30px;
	}

	#previous-events .button {
		text-align:center;
	}

	#previous-events .two-columns {
		display:block;
	}

	#previous-events .two-columns .col:nth-child(1) {
		width:100%
	}

	#previous-events .two-columns .col:nth-child(2) {
		width:100%;
		text-align:center;
	}

	#previous-events .two-columns .col:nth-child(2) .button {
		float:none;
	}

	#join-a-small-group .three-columns .col,
	#team .three-columns .col {
		width:100%;
	}
}


@media (max-width: 800px) {

	h2 {
		font-size: 32px;
		line-height: 42px;
	}

	h3 {
		font-size: 24px;
		line-height: 34px;
	}

	h4 {
		font-size: 16px;
		line-height: 20px;
	}

	p {
		font-size: 18px;
		line-height: 28px;
	}

	p span {
		font-size: 17px;
		line-height: 27px;
	}

	a.button {
		font-size: 15px;
		line-height: 19px;
	}

	ul li {
		font-size: 18px;
		line-height: 28px;
	}

	p.copyright,
	p.copyright span {
		font-size: 13px;
		line-height: 17px;
	}

	#intro .col2:nth-child(2) ul li {
		font-size: 19px;
		line-height: 23px;
	}

	.tenets .accordion-content ul li {
		padding: 0 0 0 40px;
	}

	.tenets .accordion-content ul li span {
		width: 29px;
		height: 29px;
		font-size: 16px;
		border-radius: 29px;
	}

}


@media (max-width: 700px) {

	h1 {
		font-size: 35px;
		line-height: 45px;
	}

	.container {
		padding: 20px 15px;
	}

	.col1 {
		padding: 20px 15px;
	}

	.col2 {
		padding: 20px 15px;
	}

	nav #logo {
		width: 160px;
	}

	header {
		height: -webkit-calc(100vh - 250px);
		height: -moz-calc(100vh - 250px);
		height: calc(100vh - 250px);
		max-height: 500px;
		min-height: 400px;
	}

	header:after {
		background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
	}

	header img {
		height: -webkit-calc(100vh - 250px);
		height: -moz-calc(100vh - 250px);
		height: calc(100vh - 250px);
		max-height: 500px;
		min-height: 400px;
	}

	header h1 {
		padding: 0 30px;
	}

	@keyframes headertext { 
		to {
			bottom: 0;
			opacity: 1;
		}
	}

	#intro .col2:nth-child(2) ul {
		columns: 1;
	}

	.tenets .accordion-header .col2:nth-child(1) .container {
		padding-right: 65px;
	}

	.tenets .accordion-header .col2:nth-child(2) .container {
		padding-right: 65px;
	}

	.tenets .accordion-header .arrow {
		background-size: 46px;
		width: 56px;
		height: 56px;
		right: 20px;
	}

	.tenets .accordion-header .arrow:after {
		background-size: 46px;
		width: 56px;
		height: 56px;
	}

	.tenets .accordion-header:hover .arrow {
		background-size: 46px;
	}

	.tenets .accordion-header:hover .arrow:after {
		background-size: 46px;
	}

	.tenets .accordion-content .container {
		padding-top: 45px;
	}

	.tenets .accordion-content .close {
		width: 34px;
		height: 34px;
	}

	.tenets .accordion-content .close .bar {
		width: 16px;
	}

	#events .col2:nth-child(1) {
		height: 75vw;
	}

	#events .col2:nth-child(1) img {
		height: 75vw;
	}

	#team .photo {
		max-width: 300px;
		height: 343px;
	}

	#team .photo img {
		max-width: 300px;
		height: 343px;
	}

	#previous-events .container {
		padding:40px 15px;
	}

	#join-a-small-group .container {
		padding:40px 15px;
	}

}
