/* ------------
Setup (font, color)
------------ */
:root {
	font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Arial,sans-serif;
    color-scheme: light dark;
    --bg-color: #000;
    --text-color: #fff;
    --odd-color: #edf2f7;
    --bar-color: rgba(33,38,43,0.94);
    --body-color: rgba(33,38,43,0.8);
    
    --shadow: 0px 0px 8px rgba(33,38,43,0.2);
    --backdrop: rgba(33,38,43,0.8);
    
    --blue: #0a84ff;
    --green: #30d158;
    --indigo: #5e5ce6;
    --orange: #ff9f0a;
    --pink: #ff375f;
    --purple: #bf5af2;
    --red: #ff453a;
    --teal: #64d2ff;
    --yellow: #ffd60a;
    
    --gray: #8e8e93;
    --gray2: #636366;
    --gray3: #48484a;
    --gray4: #3a3a3c;
    --gray5: #2c2c2e;
    --gray6: #1c1c1e;
}

@media screen and (prefers-color-scheme: light) {
	:root {
		--bg-color: #fff;
		--text-color: #000;
		--odd-color: #21262b;
		--bar-color: rgba(237,242,247,0.94);
		--body-color: rgba(237,242,247,0.8);
		
		--shadow: 0px 0px 8px rgba(33,38,43,0.2);
		--backdrop: rgba(237,242,247,0.8);
		
		--blue: #007aff;
	    --green: #34c759;
	    --indigo: #5856d6;
	    --orange: #ff9500;
	    --pink: #ff2d55;
	    --purple: #af52de;
	    --red: #ff3b30;
	    --teal: #5ac8fa;
	    --yellow: #ffcc00;
	    
	    --gray: #8e8e93;
	    --gray2: #aeaeb2;
	    --gray3: #c7c7cc;
	    --gray4: #d1d1d6;
	    --gray5: #e5e5ea;
	    --gray6: #f2f2f7;
	}
}

.container {
	padding-left: 8px;
	padding-right: 8px;
}

.container-fluid {
	padding-left: 0;
	padding-right: 0;
}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{
	padding-right: 8px;
	padding-left: 8px
}

/* ------------
General
------------ */
html {
	margin: 0;
	padding: 0;
	height: calc(100% + env(safe-area-inset-top));
}

body {
	margin: 0;
	color: var(--text-color);
	font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Arial,sans-serif;
	font-weight: 400;
	height: 100%;
	background-color: var(--bg-color);
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.bg-image {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -2;
}

#ios-bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	margin: auto;
	background-attachment: scroll;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
}

.bg-video {
	position: fixed;
	z-index: -100;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin-top: calc();
}

.translucent {
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
}

.rounded {
	border-radius: 13px !important;
	overflow: hidden;
	box-shadow: var(--shadow);
}

svg {
	fill: currentColor;
	vertical-align: bottom;
}

/* ------------
Colors (text, background & border)
------------ */
.bar { background-color: var(--bar-color) !important; }
.text-odd { color: var(--odd-color) !important; }

.text-blue { color: var(--blue) !important; }
.text-green { color: var(--green) !important; }
.text-indigo { color: var(--indigo) !important; }
.text-orange { color: var(--orange) !important; }
.text-pink { color: var(--pink) !important; }
.text-purple { color: var(--purple) !important; }
.text-red { color: var(--red) !important; }
.text-teal { color: var(--teal) !important; }
.text-yellow { color: var(--yellow) !important; }

.text-gray { color: var(--gray) !important; }
.text-gray2 { color: var(--gray2) !important; }
.text-gray3 { color: var(--gray3) !important; }
.text-gray4 { color: var(--gray4) !important; }
.text-gray5 { color: var(--gray5) !important; }
.text-gray6 { color: var(--gray6) !important; }

.bg-blue { background-color: var(--blue) !important; }
.bg-green { background-color: var(--green) !important; }
.bg-indigo { background-color: var(--indigo) !important; }
.bg-orange { background-color: var(--orange) !important; }
.bg-pink { background-color: var(--pink) !important; }
.bg-purple { background-color: var(--purple) !important; }
.bg-red { background-color: var(--red) !important; }
.bg-teal { background-color: var(--teal) !important; }
.bg-yellow { background-color: var(--yellow) !important; }

.bg-gray { background-color: var(--gray) !important; }
.bg-gray2 { background-color: var(--gray2) !important; }
.bg-gray3 { background-color: var(--gray3) !important; }
.bg-gray4 { background-color: var(--gray4) !important; }
.bg-gray5 { background-color: var(--gray5) !important; }
.bg-gray6 { background-color: var(--gray6) !important; }

.border-blue { border-color: var(--blue) !important; }
.border-green { border-color: var(--green) !important; }
.border-indigo { border-color: var(--indigo) !important; }
.border-orange { border-color: var(--orange) !important; }
.border-pink { border-color: var(--pink) !important; }
.border-purple { border-color: var(--purple) !important; }
.border-red { border-color: var(--red) !important; }
.border-teal { border-color: var(--teal) !important; }
.border-yellow { border-color: var(--yellow) !important; }

.border-gray { border-color: var(--gray) !important; }
.border-gray2 { border-color: var(--gray2) !important; }
.border-gray3 { border-color: var(--gray3) !important; }
.border-gray4 { border-color: var(--gray4) !important; }
.border-gray5 { border-color: var(--gray5) !important; }
.border-gray6 { border-color: var(--gray6) !important; }

/* ------------
Text
------------ */
h1, h2, h3, h4, h5, h6 {
	color: var(--odd-color);
}

/* Headline: 17pt */
h1 {
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.25rem;
}

/* Large Title: 34pt */
h1.large-title {
	font-size: 2.125rem;
	font-weight: 400;
}

/* Title 1: 28pt */
h2 {
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 2rem;
}

/* Title 2: 22pt */
h3 {
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 1.75rem;
}

/* Title 3: 20pt */
h4 {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.75rem;
}

/* Callout: 16pt */
h5 {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
}

/* Subhead: 15pt */
h6 {
	font-size:.9375rem;
	font-weight: 400;
	line-height: 1.25rem;
}

/* Body: 15pt */
p {
	font-size: .9375rem;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.25rem;
}

/* Footnote: 13pt */
p .footnote {
	font-size: .8125rem;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.25rem;
}

a, a:link, a:visited, a:hover, a:active {
	color: var(--blue);
	text-decoration: none;
	outline-style: none;
}

.text-shadow { text-shadow: var(--shadow); }

/* ------------
Border width
------------ */
.border-sm { border-width: 0.5px !important; }
.border-lg { border-width: 2px !important; }


/* ------------
Modal
------------ */
.modal-body {
	background-color: var(--body-color);
}

.modal-backdrop {
  background-color: var(--backdrop);
}

@supports ((-webkit-backdrop-filter: saturate(180%) blur(20px)) or (backdrop-filter: saturate(180%) blur(20px))) {
	.modal-backdrop {
		background-color: transparent;
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px);
	}
}

.modal-backdrop.show {
	opacity: 1;
}

.modal-header {
	height: 44px;
	align-items: center;
}

/* ------------
Forms
------------ */
.form-control, .form-control:focus {
	color: currentColor;
	background-color: transparent;
}

input {
	background: transparent;
	color: var(--blue);
	border: 0 none;
}

.form-title {
	font-weight: 300;
	font-size: 17px;
	padding: 0;
	margin: 0;
}

@media screen and (min-width: 1200px) {
	.form-title {
		font-size: 14px;
	}
}

.form-link {
	font-weight: 300;
	font-size: 17px;
	padding: 0;
}

@media screen and (min-width: 1200px) {
	.form-link {
		font-size: 14px;
	}
}

.form-label {
	display: flex;
	align-items: center;
	padding-right: .75rem;
}

@media screen and (min-width: 1200px) {
	.form-label {
		font-size: 13px;
	}
}

.form-text {
	margin: 0;
}

@media screen and (min-width: 1200px) {
	.form-text {
		font-size: 13px;
	}
}

.form-message {
	min-height: 150px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.form-message {
		min-height: 50px;
	}
}

@media screen and (min-width: 768px) {
	.form-message {
		min-height: 300px;
	}
}

@media screen and (min-width: 1200px) {
	.form-message {
		font-size: 12px;
	}
}

/* ------------
Header
------------ */
header {
	margin: 0;
	right: 0;
	left: 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding-top: env(safe-area-inset-top);
	padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* ------------
Navigation
------------ */
nav {
	max-width: 1200px;
	margin-left: auto !important;
	margin-right: auto !important;
}

nav a, nav a:link, nav a:visited, nav a:hover, nav a:active{
	color: var(--odd-color);
}

.navbar {
	height: 44px;
	padding: 0 16px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.navbar {
		height: 32px;
	}
}

.navbar-brand {
	font-weight: 500;
	font-size: 17px;
}

@media screen and (min-width: 1200px) {
	.navbar-brand {
		text-transform: uppercase;
		letter-spacing: 3px;
	}
}

@media screen and (min-width: 1200px) {
	.navbar-brand {
		font-size: 14px;
	}
}

.nav-link {
	font-weight: 300;
	font-size: 17px;
	opacity: .65;
	padding: 0;
}

.nav-link:hover {
	opacity: 1;
}

@media screen and (min-width: 1200px) {
	.nav-link {
		font-size: 14px;
	}
}

.nav-link.active {
	opacity: 1;
}

.nav-back {
	display: inline-block;
	height: 24px;
	margin-top: 10px;
	margin-bottom: 10px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.nav-back {
		margin-top: 4px;
		margin-bottom: 4px;
	}
}

.inline-icon {
	margin-left: .3em;
}

/* ------------
Tab Bar (Mobile Only)
------------ */
#tab-bar {
	position: fixed;
	bottom: 0;
	z-index: 1000;
	padding-bottom: env(safe-area-inset-bottom);
}

#tab-nav {
	position: relative;
	height: 49px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	#tab-nav {
		height: 32px;
	}
}

.nav-text-container {
	padding-top: 2px;
}

@media screen and (min-width: 576px) {
	.nav-text-container {
		padding-top: 19.5px;
		padding-left: calc(50% + 2px);
	}
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.nav-text-container {
		padding-top: 11px;
		padding-left: calc(50% + 2px);
	}
}

.nav-text {
	font-size: 10px;
	position: relative;
	line-height: 1;
	margin: 0;
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: bottom;
	opacity: .65;
	text-align: center;
}

@media screen and (min-width: 576px) {
	.nav-text {
		text-align: left;
	}
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.nav-text {
		text-align: left;
	}
}

.active .nav-text {
	opacity: 1;
}

.nav-space {
	width: 24px;
}

.tab-icon-container {
	padding-top: 5px;
}

@media screen and (min-width: 576px) {
	.tab-icon-container {
		padding-top: 11px;
		float: left;
		padding-left: calc(50% - 33px);
	}
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.tab-icon-container {
		padding-top: 6px;
		float: left;
		padding-left: calc(50% - 25px);
	}
}

.tab-icon {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	display: block;
	margin: auto;
	position: relative;
	vertical-align: middle;
	opacity: .65;
	height: 28px;
	width: 31px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

@media screen and (min-width: 576px) {
	.tab-icon {
		margin-right: 0px;
	}
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.tab-icon {
		height: 20px;
		width: 23px;
	}
}

.active .tab-icon {
	opacity: 1;
}

.nav-icon-container {
	padding: 0;
}

.nav-icon {
	display: inline-block;
	height: 28px;
	width: 28px;
}

.nav-icon, .nav-icon:link, .nav-icon:visited, .nav-icon:hover, .nav-icon:active {
	color: var(--odd-color);
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.nav-icon {
		height: 22px;
		width: 22px;
	}
}

.back-icon {	
	margin-left: -15px;
	margin-right: -5px;
	margin-top: 8px;
	margin-bottom: 8px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.back-icon {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}

.mail-icon {
	margin-right: -10px;
	margin-top: 8px;
	margin-bottom: 8px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.mail-icon {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}

.locked-icon {
	position: absolute;
	right: 8px;
	bottom: 8px;
}

/* ------------
Main
------------ */
main {
	display: flex;
	flex-direction: column;
	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
}

.parallax-container {
	-webkit-perspective: 5px;
	perspective: 5px;
	perspective-origin: 50% 50%;
}

.parallax-container.vh-50 {
	perspective-origin: 50% 25%;
}

/* ------------
Posts
------------ */
section {
	position: relative;
	left: 0;
	right: 0;
	flex: 1 0 auto;
	background-size: cover;
	background-color: var(--bg-color);
	align-items: center;
	justify-content: center;
}

section:first-child {
	padding-top: 44px;
	background-color: transparent;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	section:first-child {
		padding-top: 32px;
	}
}

.vid-header {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-color: transparent !important;
}

@media screen and (min-aspect-ratio: 8/9) {
	.vid-header {
		height: auto;
	}
}

@media screen and (max-aspect-ratio: 8/9) {
	.vid-header {
		width: auto;
	}
}

section .row {
	margin-top: 8px;
	margin-bottom: 8px;
	padding-left: max(8px, calc(env(safe-area-inset-left) - 8px));
    padding-right: max(8px, calc(env(safe-area-inset-right) - 8px));
    max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

section .post-item {
    max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

section .row>.col, section .row>[class^=col-] {
	padding-top: 8px;
	padding-bottom: 8px;
}

.content-container {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

section.page-header {
	z-index: -1;
	flex: 0 0 auto;
}

.img-header {
	background-position: center center;
	background-size: cover;
	background-attachment: scroll;
	height: calc(100% + 88px);
	margin-top: -44px;
	margin-bottom: -44px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.img-header {
		height: calc(100% + 64px);
		margin-top: -32px;
		margin-bottom: -32px;
	}
}

@supports ((-webkit-transform: translateZ(-2px)) or (transform: translateZ(-2px))) {
	.img-header {
		-webkit-transform: translateZ(-1px) scale(1.2);
		transform: translateZ(-1px) scale(1.2);
	}
}

.page-header.vh-25 { height: 25vh;}
.page-header.vh-33 { height: 33vh;}
.page-header.vh-50 { height: 50vh;}
.page-header.vh-66 { height: 66vh;}
.page-header.vh-75 { height: 75vh;}
.page-header.full { height: 100vh;}

.page-spacer {
	background-color: var(--bg-color);
	z-index: 0;
}

.page-spacer.vh-25 { height: 25vh; }
.page-spacer.vh-33 { height: 33vh; }
.page-spacer.vh-50 { height: 50vh; }
.page-spacer.vh-66 { height: 66vh; }
.page-spacer.vh-75 { height: 75vh; }
.page-spacer.full { height: 100vh; }

.page-title {
	background-color: transparent;
	height: 0;
	z-index: 1;
	flex: 0 0 auto;
    -webkit-transform: translateY(-25vh);
     transform: translateY(-25vh);
}

@supports ((-webkit-transform: translateZ(1px)) or (transform: translateZ(1px))) {
	.page-title {
		-webkit-transform: translateY(-25vh) translateZ(1px) scale(0.8);
		transform: translateY(-25vh) translateZ(1px) scale(0.8);
	}
}

.wrapper {
	height: 0;
	z-index: 1;
	-webkit-transform: translateY(calc(-50vh - 120px));
	transform: translateY(calc(-50vh - 120px));
	background-color: transparent;
}

@supports ((-webkit-transform: translateZ(1px)) or (transform: translateZ(1px))) {
	.wrapper {
		-webkit-transform: translateY(calc(-50vh - 120px)) translateZ(1px) scale(0.8);
		transform: translateY(calc(-50vh - 120px)) translateZ(1px) scale(0.8);
	}
}

.profile-img {
	display: block;
	margin-bottom: 24px;
	height: 160px;
	width: 160px;
	box-shadow: var(--shadow);
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	.wrapper {
		-webkit-transform: translateY(calc(-50vh - 80px));
		transform: translateY(calc(-50vh - 80px));
	}
	
	@supports ((-webkit-transform: translateZ(1px)) or (transform: translateZ(1px))) {
		.wrapper {
			-webkit-transform: translateY(calc(-50vh - 80px)) translateZ(1px) scale(0.8);
			transform: translateY(calc(-50vh - 80px)) translateZ(1px) scale(0.8);
		}
	}
	
	.profile-img {
		height: 120px;
		width: 120px;
	}
}

@media screen and (min-width: 768px) {
	.wrapper {
		-webkit-transform: translateY(calc(-50vh - 160px));
		transform: translateY(calc(-50vh - 160px));
	}
	
	@supports ((-webkit-transform: translateZ(1px)) or (transform: translateZ(1px))) {
		.wrapper {
			-webkit-transform: translateY(calc(-50vh - 160px)) translateZ(1px) scale(0.8);
			transform: translateY(calc(-50vh - 160px)) translateZ(1px) scale(0.8);
		}
	}
	
	.profile-img {
		height: 200px;
		width: 200px;
	}
}

.post-item {
	padding: 0;
	margin: 0;
	position: relative;
	background-color: var(--body-color);
}

.gear-post {
	height: 100px;
}

.close-button {
	position: absolute;
	z-index: 1;
	right: 8px;
	top: 52px;
	padding: 2px;
}

.locked {
	position: absolute;
	z-index: 1;
	right: 8px;
	bottom: 8px;
}

.imgWrapper {
	width: 100%;
	height: 0;
	padding-bottom: 62.5%; /* 16:10 */
	position: relative;
}

.imgWrapper.square {
	padding-bottom: 100%; /* 1:1 */
}

.imgWrapper.video {
	padding-bottom: 56.25%; /* 16:9 */
}

.imgWrapper.photo {
	padding-bottom: 66.67%; /* 3:2 */
}

.post-img {
	width: 100%;
	height: 100%;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: absolute;
}

.post-cover {
	width: 100%;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
}

.videoWrapper {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 */
	position: relative;
}

.videoWrapper.old {
	padding-bottom: 75%; /* 4:3 */
}

video {
	background-color: black !important;
	width: 100%;
	height: auto;
	z-index: 9999;
}

.carousel-title {
	padding: 8px;
	padding-bottom: 0;
	height: 30px;
	overflow: hidden;
}

.carousel-left {
	bottom: 50%;
	left: 16px;
	position: absolute;
	opacity: 1;
}

.carousel-right {
	bottom: 50%;
	right: 16px;
	position: absolute;
	opacity: 1;
}

.post-category {
	display: block;
	padding: .5rem;
	padding-bottom: 0;
	margin: auto;
	opacity: .65;
	text-transform: uppercase;
	font-size: 0.75rem;
	line-height: 0.75rem;
}

.post-title {
	display: block;
	padding: .5rem;
	margin: auto;
}

.post-feature-title {
	display: block;
	padding: .5rem;
	padding-top: 0;
	margin: auto;
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
}

.post-subtitle {
	display: block;
	padding: .5rem;
	padding-top: 0;
	margin: auto;
}

.post-desc {
	font-weight: bold;
	padding: .5rem;
	padding-top: 0;
}

.post {
	padding: .5rem;
	padding-top: 2rem;
}

.post-url {
	padding: .5rem;
	padding-top: 2rem;
}

/* ------------
Footer
------------ */
footer {
	right: 0;
	left: 0;
	width: 100%;
	position: relative;
}

#footer {
	flex-shrink: 0;
	margin-bottom: 49px;
}

@media screen and (orientation:landscape) and (max-height: 400px) {
	#footer {
		margin-bottom: 32px;
	}
}

@media screen and (min-width: 1200px) {
	#footer {
		margin-bottom: 0;
	}
}

.footer-social .container {
	max-width: 320px;
}

.social-link {
	margin: 4px;
}

.social-icon {
	margin: 9px 6.5px;
}

.social-icon:hover {
	opacity: .65;
}

.footer-copyright {
	padding: 1em .5em;
	font-size: .8125rem;
}

@media screen and (min-width: 768px) {
	.footer-copyright {
		font-size: .625rem;
	}
}