/*** Default Styles ***/
body {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 15px;
    line-height: normal;
    color: #FFF;
    margin: 0;
	background: #000;
}
a, button {
    transition: all 0.2s ease-in-out 0s;
}
img {
    max-width: 100%;
    height: auto;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    background-color: #000;
	border: 1px solid #fff;
    color: #fff;
}
.btn:hover, .btn:focus {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
.btn span {
    margin-left: 8px;
}
.slick-prev, .slick-next {
    position: absolute;
    z-index: 2;
    font-size: 0;
    width: 54px;
    height: 54px;
    border: none;
    background-color: rgba(0,0,0,.60);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background-color: #000;
}
.slick-prev:before, .slick-next:before {
    color: #fff;
    font-size: 16px;
    font-family: 'sidearm_font_v2';
}
.slick-prev {
    left: 0;
}
.slick-prev:before {
    content: '\e009';
}
.slick-next {
    right: 0;
}
.slick-next:before {
    content: '\e010';
}
.slider__item {
	margin: 0 1px;
}

/*** Top Bar ***/
.top-bar {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
.top-bar__left {
    display: flex;
    align-items: center;
}
.top-bar__left h2 {
    margin: 0 0 2px 18px;
    font-size: 24px;
    font-weight: 800;
}

/*** Main Container ***/
.main-container {
    margin-top: 80px;
}
.main-container__inner {
	max-width: 1440px;
    margin: 0 auto;
	padding: 0 48px;
}

/*** Intro ***/
.memorial {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 36px 0;
}
.memorial__left {
    flex: 0 0 300px;
	aspect-ratio: 1 / 1;
    margin: 0 12px;
    padding: 12px;
    border: 1px solid #FFF;
}
.memorial__left img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.memorial__right {
	flex: 1 1 550px;
	margin: 0 12px;
}
.memorial h1 {
	font-size: 60px;
    line-height: 36px;
    margin: 0;
}
.memorial h3 {
	font-size: 27px;
	font-weight: 400;
	margin: 18px 0;
}
.memorial h4 {
	font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 18px;
}
.cta {
	flex: 1 1 450px;
	margin: 24px 12px;
	text-align: center;
}
.cta .btn {
    margin-top: 24px;
}
.cta-footnote {
	font-size: 12px;
	margin: 0 24px;
}

/*** Footer ***/
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
	max-width: 1000px;
	margin: 60px auto;
}
.footer__logo {
    flex: 0 0 36px;
    margin: 0 24px;
}
.footer:before, .footer:after {
    content: '';
    display: block;
    flex: 1 1 auto;
    height: 8px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/*** Media Queries ***/
@media(max-width: 1400px) {
	.main-container__inner {
	max-width: 1000px;
	}
	.memorial {
		flex-wrap: wrap;
	}
	.cta {
		flex: none;
		max-width: 767px;
	}
}
@media(max-width: 1023px) {
	.memorial {
		flex-direction: column;
	}
	.memorial__left {
		flex: none;
    width: 250px;
	}
	.memorial__right {
    flex: 1 1 600px;
    flex: none;
    text-align: center;
    margin: 0;
    padding: 24px 0;
    border-bottom: 1px solid #FFF;
	}
.memorial h1 {
	font-size: 48px;
}
.memorial h3 {
	margin: 12px 0;
}
.memorial h4 {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 12px;
}
.cta .btn {
    margin-top: 12px;
}
}
@media(max-width: 767px) {
    .btn {
        padding: 0 16px;
        height: 38px;
    }
    .top-bar {
        height: 67px;
        padding: 0 16px;
    }
    .top-bar__left h2 {
        margin-left: 12px;
        font-size: 16px;
    }
	.top-bar .btn {
		font-size: 14px;
	}
    .main-container {
        margin-top: 67px;
    }
	.main-container__inner {
	    padding: 0 24px;
}
    .memorial {
		flex-direction: column;
		text-align: center;
		padding-bottom: 0;
    }
	.memorial__left {
		width: 200px;
	}
.memorial__right {
    margin: 0;
}
	.memorial h1 {
    font-size: 36px;
    line-height: 24px;
}
	.memorial h3 {
    font-size: 21px;
    line-height: 21px;
	}
	.memorial h4 {
    font-size: 14px;
	}
	p {
    font-size: 15px;
    line-height: 23px;
}
	.cta {
		margin: 24px 0;
	}
    .cta .btn {
        width: 100%;
    }
	.footer {
		margin-top: 48px;
	}
}
