/************************|
|* Scalable and Modular *|
|* Architecture for CSS *|
|* https://smacss.com/  *|
|************************/

/* ==========================================================================
   Base Rules
   ========================================================================== */

* {
	box-sizing: border-box;
	position: relative;
}
html,
body {
	width: 100%;
	height: 100%;
}
body {
	font-family: 'SharpSans', sans-serif;
	background-color: #e5e5e5;
	color: #000;
}
a {
	outline: none;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	color: inherit;
}
sup {
	top: -1em;
	font-size: 0.5em;
	line-height: 0;
}
b,
strong {
	font-weight: 700;
}
i,
em {
	font-style: italic;
}

/* Fonts */

@font-face {
	font-family: 'SharpSans';
	src: url('../fonts/SharpSansDisplayNo1-Medium.woff2') format('woff2'),
		 url('../fonts/SharpSansDisplayNo1-Medium.woff') format('woff'),
		 url('../fonts/SharpSansDisplayNo1-Medium.otf') format('opentype'),
		 url('../fonts/SharpSansDisplayNo1-Medium.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'SharpSans';
	src: url('../fonts/SharpSansDisplayNo1-Semibold.woff2') format('woff2'),
		 url('../fonts/SharpSansDisplayNo1-Semibold.woff') format('woff'),
		 url('../fonts/SharpSansDisplayNo1-Semibold.otf') format('opentype'),
		 url('../fonts/SharpSansDisplayNo1-Semibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'SharpSans';
	src: url('../fonts/SharpSansDisplayNo1-Bold.woff2') format('woff2'),
		 url('../fonts/SharpSansDisplayNo1-Bold.woff') format('woff'),
		 url('../fonts/SharpSansDisplayNo1-Bold.otf') format('opentype'),
		 url('../fonts/SharpSansDisplayNo1-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'SharpSans';
	src: url('../fonts/SharpSansDisplayNo1-Extrabold.woff2') format('woff2'),
		 url('../fonts/SharpSansDisplayNo1-Extrabold.woff') format('woff'),
		 url('../fonts/SharpSansDisplayNo1-Extrabold.otf') format('opentype'),
		 url('../fonts/SharpSansDisplayNo1-Extrabold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

/* ==========================================================================
   Layout Rules
   ========================================================================== */

.nav-open,
.modal-open {
	overflow-y: hidden;
}
.nav-overlay {
	opacity: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.95);
	z-index: 0;
	transition: opacity 0.3s;
}

/* Containers */

.container-main,
.container-content,
.container-sidebar,
.container-body {
	width: 100%;
}
.container-main {
	overflow: hidden;
}
.container-content {
	display: flex;
	flex-direction: column;
	padding-top: 0;
	transition: padding-top 0.3s;
}
.container-main {
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 30px;
	background-color: #fff;
	transition: padding 0.3s;
}
.container-sidebar {
	order: 1;
}
.container-nav {
	display: none;
}
.container-feed {
	margin: 0 20px;
}
.container-body {
	width: 100%;
}
.container-post {
	padding: 0 20px;
}

/* Navigation
   ========================================================================== */

.nav-list {
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	color: #717171;
}
.nav-item {
	margin-bottom: 20px;
}
.nav-item:last-child {
	margin-bottom: 0;
}
.nav-subitem {
	display: block;
	font-size: 0.625em;
}
.nav-link {
	transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
	color: #ed1c24;
}

/* Header Nav */

.container-header .nav-list {
	display: none;
}
.container-header .nav-item:nth-child(5) {
	display: block;
}

/* Sidebar Nav */

.container-sidebar .nav-list {
	display: none;
	margin-bottom: 45px;
	padding: 10px;
}

/* Sub Nav */

.subnav-list {
	display: none;
	font-size: 0.875rem;
}
.subnav-item {
	margin-right: 35px;
	padding: 4px 0 0 10px;
	border-left: 2px solid #ed1c24;
	text-transform: uppercase;
}
.subnav-item:last-child {
	margin-right: 0;
}
.subnav-link {
	padding-bottom: 2px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	color: #ed1c24;
	transition: border-bottom-color 0.3s, color 0.3s;
}
.subnav-link:hover,
.subnav-link.active,
.mfp-wrap + .nav-overlay + .press-room .subnav-item:last-child .subnav-link {
	border-bottom-color: #ed1c24;
	color: #717171;
}
.subnav-icon {
	padding-left: 4px;
	transition: transform 0.3s, padding 0.3s;
}
.subnav-link:hover .subnav-icon,
.subnav-link.active .subnav-icon,
.mfp-wrap + .nav-overlay + .press-room .subnav-item:last-child .subnav-icon {
	padding-left: 0;
	padding-right: 4px;
	transform: rotate(180deg);
}

/* Mobile Nav */

.nav-open .nav-overlay {
	opacity: 1;
	z-index: 1;
}
.nav-open .container-sidebar {
	position: static;
}
.nav-open .nav-list {
	display: block;
	position: fixed;
	top: 30vh;
	right: 0;
	left: 0;
	width: calc(100% - 40px);
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

/* Header
   ========================================================================== */

.container-header {
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1160px;
	padding: 12px;
	background-color: #fff;
	z-index: 1;
}
.header-border {
	margin: 0;
	border: 0;
	transition: margin 0.3s, border 0.3s;
}

/* Header Menu */

.header-menu {
	width: 35px;
	cursor: pointer;
	z-index: 1;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Header Logo */

.header-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.logo-link {
	display: inline-block;
}
.logo-img {
	display: block;
	width: 100%;
}

/* Header Search */

.header-search {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	transition: top 0.3s, background-color 0.3s, transform 0.3s;
}
.search-input {
	display: none;
	flex: 1;
	width: 100%;
	margin: 0 0 0 20px;
	padding: 0;
	border: 0;
	font-size: 2rem;
	background-color: #fff;
	outline: none;
	transition: background-color 0.3s;
}
.search-icon {
	width: 39px;
	height: 33px;
	margin-left: 20px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.search-flash {
	background-color: #eee;
}

.search-mobile {
	position: absolute;
	left: 0;
	transform: none;
	padding: 12px;
	background-color: #fff;
}
.search-mobile .search-input {
	margin: 0;
}

/* Content
   ========================================================================== */

.post-item {
	letter-spacing: 1px;
	background-size: cover;
	background-position: center;
}
.post-title,
.post-date,
.post-excerpt {
	color: #000;
}
.post-title,
.post-date,
.post-more {
	text-transform: uppercase;
}
.post-title {
	font-family: 'SharpSans';
	font-weight: 800;
}
.post-date {
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
	font-size: 0.875rem;
	border-bottom: 1px solid #ed1c24;
}
.post-more {
	text-align: center;
	display: block;
	width: 100%;
	max-width: 120px;
	margin: 0 auto;
	padding-top: 8px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
	font-size: 0.75rem;
	background-color: transparent;
	border: 2px solid #000;
	color: #000;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* Sticky Post */

.post-sticky {
	padding-top: 100%;
}
.post-sticky .post-link {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.post-sticky .post-tease {
	position: absolute;
	right: 0;
	bottom: 12px;
	left: 0;
	width: calc(100% - 24px);
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	background-color: rgba(255,255,255,0.85);
	transition: width 0.3s;
}
.post-sticky .post-title {
	margin-bottom: 10px;
	font-size: 1.125rem;
	line-height: 1.375rem;
}
.post-sticky:hover .post-more,
.post-listing:hover .post-more {
	background-color: #ed1c24;
	border-color: #ed1c24;
	color: #fff;
}

/* Post List */

.post-list,
.post-search {
	display: flex;
	flex-wrap: wrap;
}
.post-listing {
	width: 100%;
	overflow: hidden;
}

.post-listing .post-link {
	display: block;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 100%;
}
.post-listing .post-tease {
	position: absolute;
	width: calc(100% - 24px);
	right: 0;
	bottom: 12px;
	left: 0;
	margin: 0 auto;
	padding: 20px 15px 15px;
	text-align: center;
	opacity: 1;
	background-color: rgba(255,255,255,0.85);
	transition: padding 0.3s, background-color 0.3s, opacity 0.3s;
}
.post-listing .post-title {
	margin-bottom: 25px;
	font-size: 1.25rem;
	line-height: 1.5rem;
	transition: opacity 0.3s;
}
.post-listing .post-excerpt {
	display: none;
	margin-bottom: 30px;
	font-size: 0.875rem;
	line-height: 1.25rem;
	transition: opacity 0.3s;
}
.post-listing .post-more {
	clear: both;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: opacity 0.3s, background-color 0.3s;
}

/* Single Post */

.post-single .post-image {
	width: 100%;
}
.post-single .post-title {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 2rem;
	line-height: 2.25rem;
	text-overflow: clip;
}
.post-single .post-date {
	font-size: 1rem;
	border-bottom: 1px solid #ff575d;
}
.post-single .post-more {
	max-width: none;
	margin-top: 20px;
	margin-bottom: 40px;
	padding: 0;
	font-size: 1.25rem;
	background-color: transparent;
	border: 0;
	color: #ed1c24;
}

.post-body {
	font-size: 1rem;
	line-height: 1.875rem;
}
.post-body p,
.post-body li {
	font-family: 'Open Sans';
}
.post-body p,
.post-body ul,
.post-body ol,
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6,
.post-body .gallery {
	margin-bottom: 20px;
}
.post-body b,
.post-body strong {
	font-weight: 700;
}
.post-body i,
.post-body em {
	font-style: italic;
}
.post-body ul,
.post-body ol {
	margin-left: 38px;
}
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
	font-weight: 700;
}
.post-body ul {
	list-style-type: disc;
}
.post-body ol {
	list-style-type: decimal;
}
.post-body li {
	margin-bottom: 20px;
}
.post-body li:last-child {
	margin-bottom: 0;
}
.post-body a {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	color: #ed1c24;
	transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}
.post-body a:hover {
	border-bottom-color: #ed1c24;
	color: inherit;
}
.post-body img {
	max-width: 100%;
	height: inherit;
}
.post-body .alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
.post-body .alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
.post-body .aligncenter {
	display: block;
	margin: 0 auto;
}
.post-body .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	text-align: center;
}
.post-body .wp-caption-text {
	font-size: 1rem;
	line-height: 1.25rem;
	color: #717171;
}
.post-video {
	height: 0;
	padding-top: 25px;
	padding-bottom: 56.25%;
}
.post-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mejs-inner,
.mejs-layers {
	position: static;
}

/* Press Center
   ========================================================================== */

.press-header,
.press-img {
	margin-bottom: 30px;
}
.press-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	font-weight: 600;
}
.press-img {
	width: 100%;
}
.press-headline {
	margin: 40px auto 0;
	font-size: 2.875rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #717171;
}
.press-link {
	color: #717171;
	transition: color 0.3s;
}
.press-link:hover {
	color: #ed1c24;
}
.press-dropdown {
	background: url(../img/icon-select.png) no-repeat right center;
	background-size: contain;
	height: 35px;
	width: 240px;
	overflow: hidden;
}
.press-select {
	width: 260px;
	height: 35px;
	padding: 2px 5px;
	background: transparent;
	border: 1px solid #717171;
	font-family: 'Open Sans';
	font-size: 1.25rem;
	text-transform: uppercase;
	color: #b7b7b7;
	cursor: pointer;
}

.press-room .container-footer {
	border-top: 0;
}

.press-subheader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.press-bread {
	margin: 0 auto 20px;
	letter-spacing: 1px;
	font-size: 1.125rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #717171;
}

/* Press Releases */

.press-room .post-excerpt,
.press-room .post-more {
	font-family: 'Open Sans';
}

.press-item {
	width: 100%;
	margin-bottom: 30px;
	padding: 15px 25px;
	background-color: #f2f2f2;
}
.press-item .post-more {
	font-size: 0.75rem;
	margin: 0 auto;
	padding: 6px;
}
.press-room .post-date {
	margin-bottom: 15px;
	padding: 0;
	font-size: 0.75rem;
	font-style: italic;
	text-transform: none;
	border: 0;
}
.press-room .post-title {
	margin-bottom: 15px;
	font-size: 1.25rem;
	line-height: 1.375rem;
}
.press-room .post-link {
	transition: color 0.3s;
}
.press-room .post-link:hover {
	color: #ed1c24;
}
.press-room .post-excerpt {
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.25rem;
}
.press-room .post-more {
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 0 0 2px;
	border: 0;
	text-align: left;
	text-transform: uppercase;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ed1c24;
	color: #ed1c24;
}
.press-room .post-more:hover {
	border-bottom-color: transparent;
}

/* Media Resources */

.press-media {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #f2f2f2;
	word-wrap: break-word;
}
.press-size {
	margin-top: 15px;
	font-family: 'Open Sans';
	font-size: 0.75rem;
	text-align: center;
}

.press-terms {
	width: calc(100% - 40px);
	max-width: 500px;
	margin: 0 auto;
	background-color: #fff;
}
.terms-title,
.terms-footer,
.download-footer {
	padding: 20px;
}
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.terms-title {
	font-size: 1.125rem;
	line-height: 1.375rem;
	font-weight: 700;
	text-transform: uppercase;
}
.terms-conditions,
.terms-footer label {
	font-family: 'Open Sans';
	font-size: 0.875rem;
	line-height: 1.125rem;
}
.terms-conditions {
	max-height: 300px;
	padding: 0 20px;
	overflow-y: scroll;
	overflow-x: hidden;
}
.terms-conditions p {
	margin-bottom: 20px;
}
.terms-conditions p:last-child {
	margin: 0;
}
.terms-accept,
.terms-checkbox {
	cursor: pointer;
}
.terms-accept {
	display: block;
	padding-left: 30px;
}
.terms-checkbox {
	position: absolute;
	top: 28px;
	z-index: 1;
}
.download-footer {
	display: none;
}
.download-footer .mfp-close {
	position: static;
	width: auto;
	height: auto;
	opacity: 1;
	font-family: 'SharpSans';
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 600;
	color: #fff;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* Media Resources */

.press-media .post-title {
	margin-bottom: 5px;
}
.press-media .post-excerpt {
	margin-bottom: 30px;
}
.press-media .post-image {
	padding-top: 56.25%;
}

/* Executive Bios */

.space-grid {
	padding: 0 20px;
}
.space-grid .no-posts {
	margin: 20px 0 0;
}
.press-bio,
.press-media {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.press-bio {
	margin-bottom: 50px;
}
.press-bio .post-image,
.press-media .post-image {
	display: block;
	margin-bottom: 30px;
	background-position: center top;
	background-size: cover;
}
.press-bio .post-title,
.press-media .post-title {
	text-transform: none;
}
.press-bio .post-title {
	margin-bottom: 2px;
}
.press-bio .post-excerpt {
	margin-bottom: 40px;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.press-bio .post-image {
	padding-top: 100%;
	transition: opacity 0.3s;
}
.press-bio .post-image:hover {
	opacity: 0.95;
}
.press-included {
	margin-bottom: 10px;
	font-weight: 700;
	color: #ed1c24;
}
.included-list {
	margin-bottom: 40px;
	margin-left: 10px;
}
.included-item::before {
	content: '–';
	position: absolute;
	left: -10px;
}
.press-room .job-title {
	margin-bottom: 12px;
	font-family: 'Open Sans';
	font-size: 0.875rem;
	font-weight: 600;
}

.post-bio .post-image {
	display: block;
	margin: 0 auto 40px;
	width: calc(100% - 40px);
	max-width: 400px;
}
.post-bio .post-title {
	margin-bottom: 10px;
	letter-spacing: 1px;
	font-size: 1.875rem;
	font-weight: 700;
	text-transform: none;
}
.post-bio .job-title {
	font-size: 1rem;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.press-back {
	margin: 20px 0;
	padding-bottom: 2px;
	font-weight: 600;
	border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
	color: #ed1c24;
	transition: border-bottom-color 0.3s, color 0.3s;
}
.press-arrow {
	margin-right: 10px;
	transform: rotate(180deg);
	transition: transform 0.3s, margin 0.3s;
}
.press-back:hover {
	border-bottom-color: #ed1c24;
	color: #717171;
}
.press-back:hover .press-arrow {
	margin-left: 0;
	margin-right: 10px;
	transform: rotate(0deg);
}

/* Contact Us */

.contact-container {
	width: calc(100% - 40px);
	max-width: 400px;
	padding: 30px;
	margin: 0 auto;
	background-color: #fff;
}
.contact-headline,
.contact-info {
	font-family: 'Open Sans';
	text-align: center;
	color: #6d6b72;
}
.contact-headline {
	margin-bottom: 5px;
	font-size: 0.875rem;
	line-height: 1.375rem;
	font-weight: 700;
	text-transform: uppercase;
}
.contact-info {
	margin-bottom: 40px;
	font-size: 0.6875rem;
	line-height: 1.3125rem;
}
.contact-link {
	font-weight: 700;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ed1c24;
	transition: border-bottom-color 0.3s;
}
.contact-link:hover {
	border-bottom-color: transparent;
}
.contact-container label {
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1px;
	color: #717171;
}
.contact-number,
.contact-link,
.contact-required {
	color: #ed1c24;
}
.wpcf7-form-control-wrap {
	display: block;
	margin: 5px 0 20px;
}
.wpcf7-form-control {
	width: 100%;
	font-family: 'Open Sans';
	font-size: 0.875rem;
	padding: 5px;
}
.wpcf7-submit {
	margin: 0;
	outline: none;
}
div.wpcf7 .ajax-loader,
span.wpcf7-not-valid-tip {
	display: none;
}
div.wpcf7 .ajax-loader.is-active {
	display: inline-block;
	margin-top: 20px;
}
.wpcf7-not-valid,
div.wpcf7-validation-errors {
	border-color: #ed1c24;
}
div.wpcf7-validation-errors {
	border-color: #ed1c24;
	margin: 30px 0 0;
	padding: 10px;
	font-family: 'Open Sans';
	font-size: 1rem;
	line-height: 1.125rem;
}

/* Footer
   ========================================================================== */

.container-footer {
	margin: 40px 20px 0;
	padding-top: 40px;
	text-align: center;
	letter-spacing: 1px;
	border-top: 1px solid #ed1c24;
	color: #717171;
}
.footer-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
	font-size: 1.125rem;
	text-transform: uppercase;
}
.footer-item {
	margin: 0 0 40px;
}
.footer-item:first-child {
	margin-left: 0;
}
.footer-item:last-child {
	margin-right: 0;
	margin-bottom: 0;
}
.footer-link {
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.footer-link:hover {
	border-bottom-color: #717171;
}
.footer-legal {
	width: 100%;
	max-width: 700px;
	margin-right: auto;
	margin-bottom: 40px;
	margin-left: auto;
	font-size: 0.75rem;
	line-height: 1.625rem;
}
.footer-logo {
	width: 100%;
	max-width: 100px;
}

/* Social
   ========================================================================== */

.social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
.social-list .social-item:last-child {
	margin-right: 0;
}
.social-list .social-item {
	margin-right: 12px;
}
.social-list .social-item:last-child {
	margin-right: 0;
}
.social-list .social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1.25rem;
	background-color: #717171;
	border-radius: 25px;
	transition: background-color 0.3s;
	color: #fff;
}
.social-list .social-link:hover {
	background-color: #ed1c24;
}

.social-rss {
	margin: 0 20px;
	padding: 35px 0;
	border-top: 1px solid #ed1c24;
}
.social-rss .social-link {
	display: flex;
	align-items: flex-end;
	width: 145px;
	margin: 0 auto;
}
.social-rss .social-item {
	margin-right: 12px;
	padding: 6px 8px 4px;
	background-color: #ed1c24;
	border-radius: 8px;
	font-size: 1.875rem;
	color: #fff;
	transition: background-color 0.3s;
}
.social-rss .social-txt {
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: lowercase;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #ed1c24;
	color: #ed1c24;
	transition: border-bottom-color 0.3s, color 0.3s;
}
.social-rss .social-link:hover .social-item {
	background-color: #717171;
}
.social-rss .social-link:hover .social-txt {
	border-bottom-color: transparent;
	color: #717171;
}

.container-footer .social-list {
	margin-top: -20px;
}

.feed-grid {
	display: flex;
	flex-wrap: wrap;
}
.feed-headline {
	margin-bottom: 30px;
	padding-bottom: 5px;
	font-size: 1.875rem;
	font-weight: 600;
	border-bottom: 1px solid #ed1c24;
	text-transform: uppercase;
	color: #717171;
}
.feed-details,
.feed-row {
	display: flex;
	align-items: center;
}
.feed-details,
.feed-text {
	margin-bottom: 20px;
}
.feed-avatar {
	width: 100%;
	max-width: 35px;
	margin-right: 15px;
}
.feed-col:last-child {
	flex: 1;
}
.feed-icon {
	top: -4px;
}
.feed-icon:last-child {
	margin-left: auto;
}
.feed-author {
	margin-right: 6px;
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
}
.feed-date {
	margin-top: 2px;
	font-size: 1rem;
}
.feed-verified,
.feed-channel {
	display: block;
}
.feed-verified {
	max-height: 20px;
}
.feed-channel {
	max-height: 16px;
}
.feed-text {
	font-size: 1rem;
	font-family: 'Open Sans';
	line-height: 1.5rem;
}
.feed-img,
.feed-video {
	max-width: 100%;
}
.feed-interact {
	margin-right: 20px;
}
.feed-interact:last-of-type {
	margin-right: 0;
}

/* TWitter Feed */

.feed-tw .feed-item {
	width: 100%;
	max-width: 350px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	padding-right: 0;
}
.feed-tw .feed-img {
	margin-bottom: 10px;
}
.feed-tw .feed-img,
.feed-tw .feed-video {
	margin-bottom: 10px;
}

/* Instagram Feed */

.feed-ig .feed-item {
	display: table;
	width: calc((100% - 15px) * (1/2));
	height: 0;
	margin-right: 15px;
	margin-bottom: 15px;
	padding-bottom: calc((100% - 15px) * (1/2));
	overflow: hidden;
}
.feed-ig .feed-item:nth-child(2n+2) {
	margin-right: 0;
}
.feed-ig .feed-link {
	position: absolute;
	width: 100%;
	height: 100%;
}
.feed-ig .feed-img,
.feed-ig .feed-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.feed-ig .feed-img {
	transition: opacity 0.3s;
}
.feed-ig .feed-img:hover {
	opacity: 0.95;
}

/* ==========================================================================
   Module Rules
   ========================================================================== */

.u-clear {
	clear: both;
}

.btn-more,
.press-media a,
.wpdm-download-link,
.contact-container .wpcf7-submit {
	display: block;
	margin: 0 auto;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 6px;
	padding-left: 8px;
	background-color: #ed1c24;
	border-width: 4px;
	border-style: solid;
	border-color: #ed1c24;
	border-radius: 25px;
	text-align: center;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 600;
	color: #fff;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
	cursor: pointer;
}
.btn-more:not(.no-text):hover,
.press-media a:hover,
.wpdm-download-link:hover,
.contact-container .wpcf7-submit:hover {
	background-color: transparent;
	color: #ed1c24;
}

.load-more {
	margin: 20px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.load-more:not('.loading'):hover {
	border-color: #717171;
}
.no-text {
	width: 0;
	height: 0;
	margin: 0;
	border-color: rgba(0, 0, 0, 0);
	background-color: rgba(0, 0, 0, 0);
	color: rgba(0, 0, 0, 0);
	cursor: default;
}
.loading {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	background: url(../img/loading.gif) center no-repeat;
	background-size: cover;
	border-color: transparent;
}
.no-posts {
	margin: 20px 20px 0;
	font-size: 2rem;
	font-weight: 800;
}
.no-posts a {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	color: #ed1c24;
	transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}
.no-posts a:hover {
	border-bottom-color: #ed1c24;
	color: inherit;
}
.end-of-posts {
	display: none;
}

/* Magnific Popup */

/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;

	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;

	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
.mfp-close {
	font-family: 'Open Sans';
	font-weight: 700;
	font-size: 1.5rem;
	color: #717171;
	cursor: pointer;
	z-index: 1;
	transition: opacity 0.3s;
}

/* ==========================================================================
   State Rules
   ========================================================================== */

@media (min-width: 360px) {

	/* Header
	   ====================================================================== */

	.header-menu {
		width: calc(35px + (50 - 35) * (100vw - 360px) / (667 - 360));
	}
	.logo-img {
		width: calc(171px + (247 - 171) * (100vw - 360px) / (667 - 360));
	}

	/* Content - 360
	   ====================================================================== */

	.post-more {
		max-width: calc(130px + (160 - 130) * (100vw - 360px) / (667 - 360));
		padding-top: calc(8px + (10 - 8) * (100vw - 360px) / (667 - 360));
		padding-right: calc(6px + (8 - 6) * (100vw - 360px) / (667 - 360));
		padding-bottom: calc(4px + (6 - 4) * (100vw - 360px) / (667 - 360));
		padding-left: calc(6px + (8 - 6) * (100vw - 360px) / (667 - 360));
		font-size: calc(12px + (14 - 12) * (100vw - 360px) / (667 - 360));
	}

	/* Sticky Post - 360 */

	.post-sticky .post-tease {
		padding: calc(20px + (30 - 20) * (100vw - 360px) / (667 - 360));
	}
	.post-sticky .post-title {
		margin-bottom: calc(10px + (12 - 10) * (100vw - 360px) / (667 - 360));
		font-size: calc(18px + (24 - 18) * (100vw - 360px) / (667 - 360));
		line-height: calc(20px + (28 - 20) * (100vw - 360px) / (667 - 360));
	}
	.post-sticky .post-date {
		font-size: calc(14px + (16 - 14) * (100vw - 360px) / (667 - 360));
	}

	/* Post Listing - 360 */

	.post-listing .post-title {
		margin-bottom: calc(10px + (12 - 10) * (100vw - 360px) / (667 - 360));
		font-size: calc(18px + (24 - 18) * (100vw - 360px) / (667 - 360));
		line-height: calc(20px + (26 - 20) * (100vw - 360px) / (667 - 360));
	}

	/* Single Post - 360 */

	.post-single .post-title {
		margin-top: calc(20px + (30 - 20) * (100vw - 360px) / (667 - 360));
		font-size: calc(40px + (44 - 40) * (100vw - 360px) / (667 - 360));
		line-height: calc(44px + (48 - 44) * (100vw - 360px) / (667 - 360));
	}
	.post-single .post-date {
		font-size: calc(16px + (18 - 16) * (100vw - 360px) / (667 - 360));
	}

	.post-body {
		font-size: calc(16px + (18 - 16) * (100vw - 360px) / (667 - 360));
		line-height: calc(30px + (32 - 30) * (100vw - 360px) / (667 - 360));
	}
	.post-body p,
	.post-body ul,
	.post-body ol,
	.post-body h1,
	.post-body h2,
	.post-body h3,
	.post-body h4,
	.post-body h5,
	.post-body h6,
	.post-body .gallery {
		margin-bottom: calc(20px + (30 - 20) * (100vw - 360px) / (667 - 360));
	}

	/* Press Center - 360
	   ====================================================================== */

	.press-subheader {
		margin-bottom: calc(20px + (30 - 20) * (100vw - 360px) / (667 - 360));
	}

	/* Social - 360
	   ====================================================================== */

	.feed-headline {
		margin-bottom: 30px;
		padding-bottom: 5px;
		font-size: 1.875rem;
		border-bottom: 1px solid #ed1c24;
	}
	.feed-img,
	.feed-video {
		margin-bottom: 10px;
	}

	/* Module Rules - 360
	   ====================================================================== */

	.btn-more,
	.press-media a,
	.wpdm-download-link,
	.contact-container .wpcf7-submit {
		width: 100%;
		max-width: 250px;
	}
	.load-more {
		margin: 20px auto;
	}
}

@media (min-width: 667px) {

	/* Header - 667
	   ====================================================================== */

	.header-menu {
		width: 50px;
	}
	.logo-img {
		width: auto;
	}

	/* Content - 667
	   ====================================================================== */

	.post-listing .post-excerpt {
		display: block;
	}

	/* Sticky Post - 667 */

	.post-sticky {
		margin-bottom: calc(30px + (40 - 30) * (100vw - 667px) / (1024 - 667));
		padding-top: 56.25%;
	}
	.post-sticky .post-tease {
		padding: calc(30px + (35 - 30) * (100vw - 667px) / (1024 - 667));
	}
	.post-sticky .post-title {
		margin-bottom: 12px;
		font-size: calc(24px + (30 - 24) * (100vw - 667px) / (1024 - 667));
		line-height: calc(28px + (34 - 28) * (100vw - 667px) / (1024 - 667));
	}
	.post-sticky .post-date {
		font-size: 1rem;
		margin-bottom: calc(20px + (25 - 20) * (100vw - 667px) / (1024 - 667));
		padding-bottom: 5px;
	}
	.post-sticky .post-more {
		max-width: 160px;
		padding-top: 10px;
		padding-right: 8px;
		padding-bottom: 6px;
		padding-left: 8px;
		font-size: 0.875rem;
		font-weight: 600;
	}

	/* Post List - 667 */

	.post-listing {
		width: calc(50% - 10px);
		margin-bottom: 20px;
		border-top: 1px solid #ed1c24;
	}
	.post-listing:nth-child(odd) {
		margin-right: 20px;
	}
	.post-listing .post-tease {
		bottom: 0;
		width: 100%;
		height: 100%;
		padding: 20px 15px 15px;
		text-align: initial;
	}
	.post-listing .post-title {
		font-size: calc(20px + (24 - 20) * (100vw - 667px) / (1024 - 667));
		line-height: calc(24px + (28 - 24) * (100vw - 667px) / (1024 - 667));
	}
	.post-listing .post-excerpt {
		margin-bottom: 30px;
		font-size: calc(14px + (15 - 14) * (100vw - 667px) / (1024 - 667));
		line-height: calc(20px + (23 - 20) * (100vw - 667px) / (1024 - 667));
	}
	.post-listing .post-date {
		position: absolute;
		bottom: calc(10px + (15 - 10) * (100vw - 667px) / (1024 - 667));
		margin-bottom: 0;
		padding-bottom: 0;
		font-size: calc(14px + (15 - 14) * (100vw - 667px) / (1024 - 667));
		border-bottom: 0;
		color: #ff575d;
		transition: opacity 0.3s;
	}
	.post-listing .post-more {
		position: absolute;
		max-width: none;
		padding-top: calc(10px + (12 - 10) * (100vw - 667px) / (1024 - 667));
		padding-right: calc(8px + (10 - 8) * (100vw - 667px) / (1024 - 667));
		padding-bottom: calc(6px + (6 - 6) * (100vw - 667px) / (1024 - 667));
		padding-left: calc(8px + (10 - 8) * (100vw - 667px) / (1024 - 667));
		font-size: 0.875rem;
		background-color: rgba(237,28,36,0.85);
		border: 0;
		opacity: 0;
		color: #fff;
	}
	.post-listing:hover .post-more {
		background-color: transparent;
		border-color: #000;
		color: #000;
	}

	.post-listing:hover .post-tease {
		background-color: rgba(255,255,255,0);
	}
	.post-listing:hover .post-title,
	.post-listing:hover .post-excerpt,
	.post-listing:hover .post-date {
		opacity: 0;
	}
	.post-listing:hover .post-more {
		background-color: rgba(237,28,36,0.85);
		border: 0;
		color: #fff;
		opacity: 1;
	}

	/* Single Post - 667 */

	.post-single .post-title {
		margin-top: calc(30px + (40 - 30) * (100vw - 667px) / (1024 - 667));
		margin-bottom: calc(20px + (25 - 20) * (100vw - 667px) / (1024 - 667));
		font-size: calc(64px + (67 - 64) * (100vw - 667px) / (1024 - 667));
		line-height: calc(68px + (71 - 68) * (100vw - 667px) / (1024 - 667));
	}
	.post-single .post-date {
		font-size: 1.125rem;
	}

	.post-body {
		font-size: 1.125rem;
		line-height: 2rem;
	}
	.post-body p,
	.post-body ul,
	.post-body ol,
	.post-body h1,
	.post-body h2,
	.post-body h3,
	.post-body h4,
	.post-body h5,
	.post-body h6,
	.post-body .gallery {
		margin-bottom: calc(30px + (40 - 30) * (100vw - 667px) / (1024 - 667));
	}
	.post-body .gallery {
		grid-template-columns: 1fr 1fr 1fr;
	}

	/* Press Center - 667
	   ====================================================================== */

	.press-subheader {
		margin-bottom: 30px;
	}

	/* Executive Bios - 667 */

	.press-bio,
	.press-media {
		width: calc((100% * (1/2)) - 10px);
		margin-right: 20px;
	}
	.press-bio {
		margin-bottom: 50px;
	}
	.press-media {
		margin-bottom: 20px;
	}
	.press-bio:nth-child(2n+2),
	.press-media:nth-child(2n+2) {
		margin-right: 0;
	}

	.press-item .post-more {
		font-size: calc(12px + (14 - 12) * (100vw - 667px) / (1024 - 667));
	}

	/* Footer - 667
	   ====================================================================== */

	.container-footer {
		padding-top: calc(40px + (50 - 40) * (100vw - 667px) / (1024 - 667));
	}
	.footer-nav {
		flex-direction: row;
		justify-content: center;
		margin-bottom: calc(40px + (45 - 40) * (100vw - 667px) / (1024 - 667));
		font-size: 0.875rem;
	}
	.footer-item {
		margin: 0 20px;
	}
	.footer-legal {
		margin-bottom: calc(40px + (70 - 40) * (100vw - 667px) / (1024 - 667));
	}
	.footer-logo {
		max-width: calc(100px + (145 - 100) * (100vw - 667px) / (1024 - 667));
	}

	/* Social - 667
	   ====================================================================== */

	.feed-headline {
		margin-bottom: 30px;
		padding-bottom: 5px;
		font-size: 1.875rem;
		border-bottom: 1px solid #ed1c24;
	}
	.feed-img,
	.feed-video {
		margin-bottom: 10px;
	}

	/* Twitter Feed - 667 */

	.feed-tw .feed-item {
		margin-bottom: calc(45px + (50 - 45) * (100vw - 667px) / (1024 - 667));
	}
}

@media (min-width: 1024px) {

	/* Containers - 1024 */

	.container-content {
		flex-direction: row;
		justify-content: space-between;
	}
	.container-main {
		padding: 20px 20px 50px;
	}
	.container-sidebar {
		width: 30%;
		max-width: 350px;
		order: 0;
	}
	.container-nav {
		display: block;
	}
	.container-feed {
		margin: 0;
	}
	.container-body {
		width: calc(70% - (20px + (25 - 20) * (100vw - 1024px) / (1220 - 1024)));
	}
	.container-post {
		padding: 0;
	}

	/* Navigation - 1024
	   ====================================================================== */

	.nav-subitem {
		display: none;
	}

	/* Header Nav - 1024 */

	.press-room .container-header .nav-list {
		display: flex;
		justify-content: flex-end;
		top: 4px;
		margin-right: 60px;
		z-index: 1;
	}
	.container-header .nav-list {
		font-size: 1.125rem;
		font-weight: 800;
		letter-spacing: 1px;
	}
	.container-header .nav-item {
		margin-right: 30px;
		margin-bottom: 0;
	}
	.container-header .nav-item:nth-child(4) {
		margin-right: 0;
	}
	.container-header .nav-item:nth-child(5) {
		display: none;
	}

	/* Sidebar Nav - 1024 */

	.container-sidebar .nav-list {
		display: block;
		margin-bottom: 0;
		padding: 5px 10px 10px;
		font-size: calc(27px + (32 - 27) * (100vw - 1024px) / (1220 - 1024));
	}
	.container-sidebar .nav-item {
		margin-bottom: calc(15px + (20 - 15) * (100vw - 1024px) / (1220 - 1024));
	}
	.container-sidebar .nav-item:last-child {
		margin-bottom: 0;
	}

	/* Sub Nav - 1024 */

	.subnav-list {
		display: flex;
		margin-bottom: 5px;
	}

	/* Header - 1024
	   ====================================================================== */

	.container-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0 20px;
	}
	.header-border {
		margin: 0 0 40px;
		border-top: 0;
		border-right: 0;
		border-bottom: 1px solid #717171;
		border-left: 0;
		z-index: 1;
	}
	.header-menu {
		display: none;
	}
	.header-logo {
		position: relative;
		width: 30%;
		left: initial;
		transform: none;
		z-index: 1;
	}
	.header-search {
		position: static;
		transform: none;
		top: 0;
		right: 0;
		width: 70%;
	}
	.search-input {
		display: block;
	}

	/* Content - 1024
	   ====================================================================== */

	/* Sticky Post */

	.post-sticky {
		margin-bottom: calc(40px + (50 - 40) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-sticky .post-tease {
		bottom: 12px;
		padding: 35px;
	}
	.post-sticky .post-title {
		font-size: calc(30px + (38 - 30) * (100vw - 1024px) / (1220 - 1024));
		line-height: calc(34px + (42 - 34) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-sticky .post-date {
		margin-bottom: calc(25px + (35 - 25) * (100vw - 1024px) / (1220 - 1024));
		font-size: calc(16px + (20 - 16) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-sticky .post-more {
		max-width: calc(160px + (220 - 160) * (100vw - 1024px) / (1220 - 1024));
		padding-top: calc(10px + (12 - 8) * (100vw - 1024px) / (1220 - 1024));
		padding-right: calc(8px + (10 - 8) * (100vw - 1024px) / (1220 - 1024));
		padding-bottom: calc(6px + (8 - 8) * (100vw - 1024px) / (1220 - 1024));
		padding-left: calc(8px + (10 - 8) * (100vw - 1024px) / (1220 - 1024));
		font-size: calc(14px + (20 - 14) * (100vw - 1024px) / (1220 - 1024));
	}

	/* Post List - 1024 */

	.post-listing .post-tease {
		padding: 30px 15px 15px;
	}
	.post-listing .post-title {
		margin-bottom: calc(25px + (30 - 25) * (100vw - 1024px) / (1220 - 1024));
		font-size: calc(24px + (28 - 24) * (100vw - 1024px) / (1220 - 1024));
		line-height: calc(28px + (32 - 28) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-listing .post-excerpt {
		margin-bottom: 30px;
		font-size: calc(15px + (18 - 15) * (100vw - 1024px) / (1220 - 1024));
		line-height: calc(21px + (24 - 21) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-listing .post-date {
		bottom: calc(10px + (15 - 10) * (100vw - 1024px) / (1220 - 1024));
		font-size: calc(15px + (18 - 15) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-listing .post-more {
		padding-top: 12px;
		padding-right: 10px;
		padding-bottom: 8px;
		padding-left: 10px;
	}

	/* Single Post - 1024 */

	.post-single .post-image {
		margin-bottom: 40px;
	}
	.post-single .post-title {
		margin-top: 0;
		font-size: calc(67px + (80 - 67) * (100vw - 1024px) / (1220 - 1024));
		line-height: calc(71px + (84 - 71) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-single .post-date {
		font-size: calc(18px + (20 - 18) * (100vw - 1024px) / (1220 - 1024));
	}

	.post-body {
		font-size: calc(18px + (22 - 18) * (100vw - 1024px) / (1220 - 1024));
		line-height: calc(32px + (36 - 32) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-body p,
	.post-body ul,
	.post-body ol,
	.post-body h1,
	.post-body h2,
	.post-body h3,
	.post-body h4,
	.post-body h5,
	.post-body h6,
	.post-body .gallery {
		margin-bottom: calc(40px + (45 - 40) * (100vw - 1024px) / (1220 - 1024));
	}
	.post-body .gallery {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	/* Press Center - 1024
	   ====================================================================== */

	.press-img {
		width: calc(100% + 40px);
		margin-right: -20px;
		margin-left: -20px;
	}
	.press-subheader {
		flex-direction: row;
	}
	.press-headline,
	.press-bread {
		margin: 0;
	}
	.press-headline {
		font-size: 2.875rem;
	}

	.press-room .header-search {
		width: 100%;
		position: absolute;
		top: 12px;
	}
	.press-room .search-input {
		display: none;
		margin: 0;
	}
	.press-room .container-body {
		width: 100%;
	}
	.press-room .container-footer {
		border-top: 1px solid #ed1c24;
	}

	.press-item .post-more {
		font-size: 0.875rem;
	}

	.search-press {
		position: absolute;
		left: 0;
		transform: none;
		padding: 12px 0;
		background-color: #fff;
	}
	.search-press .search-input {
		margin: 0;
	}

	/* Executive Bios - 1024 */

	.space-grid {
		padding: 0;
	}
	.press-bio,
	.press-media {
		width: calc((100% * (1/3)) - 15px);
	}
	.press-bio,
	.press-media,
	.press-bio:nth-child(2n+2),
	.press-media:nth-child(2n+2) {
		margin-right: 20px;
	}
	.press-media,
	.press-media:nth-child(2n+2) {
		margin-bottom: 20px;
	}
	.press-bio,
	.press-bio:nth-child(2n+2) {
		margin-bottom: 50px;
	}
	.press-bio:nth-child(3n+3),
	.press-media:nth-child(3n+3) {
		margin-right: 0;
	}
	.press-back {
		margin: -20px 0 20px;
	}
	.post-bio {
		flex-direction: row;
	}
	.post-bio .post-image,
	.post-bio .container-post {
		float: left;
	}
	.post-bio .post-image {
		width: calc(30% - 20px);
		margin: 0 20px 0 0;
	}
	.post-bio .container-post {
		width: 70%;
	}
	.post-bio .job-title {
		padding-bottom: 15px;
		border-bottom: 1px solid #ed1c24;
	}

	/* Footer - 1024
	   ====================================================================== */

	.container-footer {
		margin: 40px auto 0;
		padding-top: 50px;
		padding-right: 20px;
		padding-left: 20px;
	}
	.footer-nav {
		margin-bottom: calc(45px + (55 - 45) * (100vw - 1024px) / (1220 - 1024));
		font-size: calc(14px + (18 - 14) * (100vw - 1024px) / (1220 - 1024));
	}
	.footer-item {
		margin: 0 30px;
	}
	.footer-legal {
		margin-bottom: calc(60px + (70 - 60) * (100vw - 1024px) / (1220 - 1024));
	}
	.footer-logo {
		max-width: 145px;
	}

	/* Social - 1024
	   ====================================================================== */

	.social-list {
		margin-top: 0;
		margin-bottom: calc(20px + (25 - 20) * (100vw - 1024px) / (1220 - 1024));
		padding: 30px 10px 10px;
	}
	.social-list .social-link {
		width: calc(40px + (50 - 40) * (100vw - 1024px) / (1220 - 1024));
		height: calc(40px + (50 - 40) * (100vw - 1024px) / (1220 - 1024));
	}

	.social-rss {
		padding: 35px 10px 10px;
	}
	.social-rss,
	.social-rss .social-link {
		margin: 0;
	}

	.container-sidebar .social-list {
		justify-content: flex-start;
	}

	.feed-headline {
		margin-bottom: 30px;
		padding-bottom: 5px;
		font-size: 1.875rem;
		border-bottom: 1px solid #ed1c24;
	}
	.feed-img,
	.feed-video {
		margin-bottom: 10px;
	}

	/* Twitter Feed - 1024 */

	.feed-tw .feed-item {
		margin-bottom: 50px;
		padding-right: calc(0px + (20 - 0) * (100vw - 1024px) / (1220 - 1024));
	}

	/* Instagram Feed - 1024 */

	.feed-ig .feed-item {
		width: calc((100% - 60px) * (1/4));
		padding-bottom: calc((100% - 60px) * (1/4));
	}
	.feed-ig .feed-item,
	.feed-ig .feed-item:nth-child(2n+2) {
		margin-right: 20px;
		margin-bottom: 20px;
	}
	.feed-ig .feed-item:nth-child(4n+4) {
		margin-right: 0;
	}

	/* Module Rules - 1024
	   ====================================================================== */

	.load-more {
		margin: 20px auto 40px;
	}
	.loading {
		margin: 20px auto;
	}
	.no-posts {
		margin: 0;
	}
}

@media (min-width: 1220px) {

	/* Containers - 1220 */

	.container-body {
		width: calc(70% - 10px);
	}

	/* Navigation - 1220
	   ====================================================================== */

	/* Sidebar Nav - 1220 */

	.container-sidebar .nav-list {
		font-size: 2rem;
	}
	.container-sidebar .nav-item {
		margin-bottom: 20px;
	}

	/* Content - 1220
	   ====================================================================== */

	/* Sticky Post - 1220 */

	.post-sticky {
		margin-bottom: 50px;
	}
	.post-sticky .post-title {
		margin-bottom: 12px;
		font-size: 2.375rem;
		line-height: 2.625rem;
	}
	.post-sticky .post-date {
		margin-bottom: 35px;
		padding-bottom: 5px;
		font-size: 1.25rem;
	}
	.post-sticky .post-more {
		max-width: 220px;
		padding-top: 12px;
		padding-right: 10px;
		padding-bottom: 8px;
		padding-left: 10px;
		font-size: 1.25rem;
	}

	/* Post List - 1220 */

	.post-listing .post-title {
		margin-bottom: 30px;
		font-size: 1.75rem;
		line-height: 2rem;
	}
	.post-listing .post-excerpt {
		margin-bottom: 30px;
		font-size: 1.125rem;
		line-height: 1.5rem;
	}
	.post-listing .post-date {
		bottom: 15px;
		font-size: 1.125rem;
	}

	/* Single Post - 1220 */

	.post-single .post-title {
		margin-bottom: 20px;
		font-size: 5rem;
		line-height: 5.25rem;
	}
	.post-single .post-date {
		margin-bottom: 30px;
		font-size: 1.25rem;
	}
	.post-single .post-more {
		margin-top: 60px;
		margin-bottom: 40px;
		font-size: 1.25rem;
	}

	.post-body {
		font-size: 1.375rem;
		line-height: 2.25rem;
	}
	.post-body p,
	.post-body ul,
	.post-body ol,
	.post-body h1,
	.post-body h2,
	.post-body h3,
	.post-body h4,
	.post-body h5,
	.post-body h6,
	.post-body .gallery {
		margin-bottom: 45px;
	}

	/* Press Center - 1220
	   ====================================================================== */

	/* Footer - 1220
	   ====================================================================== */

	.footer-nav {
		flex-direction: row;
		justify-content: center;
		margin-bottom: 55px;
		font-size: 1.125rem;
	}
	.footer-item {
		margin: 0 30px;
	}
	.footer-legal {
		margin-bottom: 70px;
	}

	/* Social - 1220
	   ====================================================================== */

	.social-list {
		margin-bottom: 25px;
	}
	.social-list .social-link {
		width: 50px;
		height: 50px;
	}

	.feed-headline {
		margin-bottom: 30px;
		padding-bottom: 5px;
		font-size: 1.875rem;
		border-bottom: 1px solid #ed1c24;
	}

	/* Twitter Feed - 1220 */

	.feed-tw .feed-item {
		padding-right: 20px;
	}
}