

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


body {
	padding: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 62.5%;
	overflow-x: hidden;
}

/* -----------------
 Navigation
------------------ */

.primary-site-navigation {
	background: black;
	display: block;
	padding: 15px;
	width: 100%;
}

.primary-site-navigation__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.primary-site-navigation__list__item {
	float: left;
}

.primary-site-navigation__list__item a {
	color: white;
	display: block;
	font-size: 1rem;
	padding: 0 15px;
	text-decoration: none;
	width: 100%;
}

.primary-site-navigation__list__item a:hover,
.primary-site-navigation__list__item a:focus {
	color: red;
	text-decoration: underline;
}

/* -----------------
 Typography
------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

.heading-1 {
	font-size: 2rem;
	text-align: center;
}

.heading-2 {
	font-size: 1.6rem;
	text-align: center;
}

.heading-3 {
	font-size: 1.2rem;
	text-align: center;
}

.main-site-intro {
	font-size: 1.2rem;
	margin: 0 auto;
	max-width: 660px;
	text-align: center;
}

.gallery-intro__text {
	font-size: 1.25rem;
	margin: 0 auto;
	max-width: 660px
}

a:visited {
	text-decoration: none;
}

/* -----------------
 Structure
------------------ */

.site-container {

}

/* -----------------
 Homepage
------------------ */

.hero {
	margin: 30px 0 60px 0;
}

/* -----------------
 Galleries
------------------ */

.gallery {
	background: black;
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	padding: 0 20px 0 0;
}

.gallery-intro {
	padding: 20px;
}

.gallery__item {
    align-items: center;
	box-sizing: border-box;
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  	flex-grow: 0;
  	padding: 20px;
  	position: relative;
	width: 33.333333%;
}

.gallery__item a {
	display: block;
	width: 100%;
}

@media (max-width: 1000px) {
	.gallery__item {
		width: 50%;
	}
}

@media (max-width: 700px) {
	.gallery__item {
		width: 100%;
	}
}

.gallery__item__heading {
	color: white;
}


.gallery__item__image {
	display: block;
	max-height: 630px;
	max-width: 100%;
}

.gallery__item__image--portrait {
	height: auto;
	margin: 0 auto;
	width: auto;
}

/* -----------------
 Footer
------------------ */

.site-footer {
	background: black;
	color: white;
	font-size: 0.825rem;
	padding: 0 20px 20px 20px;
	text-align: center;
}

.site-footer a {
	color: white
}