
/* HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
--------------------------------------------- */
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.section::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.section::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 16px default */
	-webkit-font-smoothing: antialiased;
}

html,
body {
	height: 100%;	
}

body {
	background-color: #f5f5f5;
	color: #222;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	line-height: 1.625;
	letter-spacing: -.02em;
	margin: 0;
	overflow-x: hidden;
}

body,
body > div {
	font-size: 1.7rem;
}

body.no-scroll {
	overflow-y: hidden;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

a {
	color: #222;
	text-decoration: underline #ccc 1px;
	text-underline-offset: 0.25em;
}

a:focus,
a:hover {
	color: #222;
	text-decoration-color: #222;
}

p {
	margin: 0 0 3rem;
	padding: 0;
}

ol,
ul,
dd {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid #ddd;
	clear: both;
	color: #ddd;
	margin: 4rem auto;
}

b,
strong,
.strong,
dt {
	font-weight: 500;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #222;
}

blockquote {
	font-style: normal;
	margin: 4rem 0;
}

blockquote p:last-child, 
blockquote ul:last-child, 
blockquote ol:last-child {
    margin-bottom: 0;
}

blockquote cite {
	display: block;
    font-size: 1.6rem;
    font-style: normal;
    margin-top: 2rem;
}

pre {
    background-color: #ddd;
    border: none;
    border-radius: 0;
    clear: both;
    display: block;
    margin: 6% 0 7%;
    overflow-x: scroll;
    overflow-y: auto;
    padding: 6%;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}


/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter", sans-serif;
	color: #222;
	font-weight: 500;
	letter-spacing: -.03em;
	line-height: 1.2;
	margin: 0 0 2rem;
}

h1, .h1 { font-size: 4rem;   }
h2, .h2 { font-size: 3.6rem; }
h3, .h3 { font-size: 3.2rem; }
h4, .h4 { font-size: 2.4rem; }
h5, .h5 { font-size: 2rem;   }
h6, .h6 { font-size: 1.6rem; }

small, 
.small { 
	font-size: 1.4rem; 
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */


/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: transparent;
	border: 1px solid #ddd;
	color: #222;
	font-size: 1.6rem;
	font-weight: 300;
	padding: 1.2rem 1.5rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #5057e6;
	outline: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #222;
	opacity: 1;
}

::placeholder {
	color: #222;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #222;
	border: 0;
	color: #f5f5f5;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;	
	padding: 1.5rem 3rem;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #5057e6;
	border-width: 0;
	color: #f5f5f5;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #f5f5f5;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #ddd;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.more-link {
	display: inline-block;
	position: relative;
	font-size: 1.6rem;
	margin-top: 1rem;
	margin-bottom: 0;
}

.more-link a {
	text-underline-offset: .5em;
}

/* Tables
--------------------------------------------- */

table {
    width: 100%;
    margin-bottom: 4rem;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1.6rem;
    text-align: left;
}

table th {
	background: #222;
	color: #f5f5f5;
}

table td {
	background: #f5f5f5;
}

table tr:nth-child(odd) td {
    background-color: #ddd;
}

th, td {
    padding: 1.2rem;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #f5f5f5;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

:focus {
	color: #222;
	outline: transparent solid 1px;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 2rem;
}

.alignright .avatar {
	margin-left: 2rem;
}

.comment .avatar {
	margin: 0 1.5rem 2rem 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 4rem;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 1rem;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.post-summary-title {
	font-size: 3.2rem;
	margin-bottom: 0;
}

.entry-title {
	font-size: 3.6rem;
	margin-bottom: 3rem;
}

.post-summary-title a,
.entry-title a,
.sidebar .widget-title a {
	color: #222;
	text-decoration: none;
}

.post-summary-title a:focus,
.post-summary-title a:hover,
.entry-title a:focus,
.entry-title a:hover {
	color: #5057e6;
}

.widget-title {
	font-size: 2rem;
	margin-bottom: 2rem;
}


/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 3rem;
}

img.alignnone,
.alignnone {
	margin-bottom: 2rem;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 2rem 2rem 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 2rem 2rem;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 3rem;
}

/* Widgets
--------------------------------------------- */

.widget {
	margin-bottom: 4rem;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 1rem;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 2rem;
	text-indent: -2rem;
}

.widget li li {
	border: 0;
	margin: 0 0 0 3rem;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}


/* Plugins
---------------------------------------------------------------------------- */


/* Structure and Layout
---------------------------------------------------------------------------- */

.wrap {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.site-inner {
	margin-top: 8rem; /* Header height */	
	padding-top: 6rem;
}

.has-page-header .site-inner {
	margin-top: 0;
}

.singular .content-area.wrap {
	max-width: 76.8rem;	
}

.archive .content-area.wrap {
	max-width: 128rem;	
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: transparent;
	position: fixed;
	min-height: 8rem;
	width: 100%;
	z-index: 9999;
	left: 0;
	top: 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex; 
	    -ms-flex-wrap:wrap; 
	        flex-wrap:wrap; 
    -webkit-box-align:center; 
	    -ms-flex-align:center; 
	        align-items:center;
}

.site-header.scroll {
	background-color: #f5f5f5;
}


.site-header .wrap {
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.site-header {
	-webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
	    -ms-transition: all 0.4s ease-in-out;
	     -o-transition: all 0.4s ease-in-out;
	        transition: all 0.4s ease-in-out;
}

/* Title Area
--------------------------------------------- */

.title-area {
	margin-right: auto;
	z-index: 1;
	width: 25%;
}

.site-title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #222;
	text-decoration: none;
}

.site-description {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* Site Navigation
---------------------------------------------------------------------------- */

.nav-menu {
	line-height: 1;
	width: 100%;
}

.nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.nav-menu a {
	color: #222;
	display: block;
	font-size: 1.6rem;
	font-weight: 300;
	outline-offset: -1px;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
	text-decoration-color: transparent;
	text-underline-offset: .5em;
}

.nav-menu a:focus,
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .sub-menu .current-menu-item > a:focus,
.nav-menu .sub-menu .current-menu-item > a:hover {
	color: #222;
	text-decoration-color: #222;
}

.nav-menu .sub-menu,
.nav-menu .sub-menu a {
	width: 100%;
}

.gnav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	position: static;
	z-index: 99;
}

.nav-menu .sub-menu a {
	background-color: #f5f5f5;
	font-size: 1.4rem;
	position: relative;
	word-wrap: break-word;
}

.nav-menu .menu-item:focus,
.nav-menu .menu-item:hover {
	position: relative;
}

.nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

/* Primary Menu
--------------------------------------------- */

.nav-primary {
	display: none;
}

/* Secondary Menu
--------------------------------------------- */

.nav-secondary {
	display: none;
	margin-left: auto;
	width: 25%;
	text-align: right;
}


/* Page Header
---------------------------------------------------------------------------- */

.page-header {
	background-color: #eee;
	padding-top: 16rem; 
	padding-bottom: 8rem;
	text-align: center;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.hentry,
.post-summary {
	margin-bottom: 6rem;
}

.post-summary {
	text-align: center;
}

/* Entry Content
--------------------------------------------- */

.entry-content p:last-child {
	margin-bottom: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 3rem;
	padding-left: 4rem;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #eee;
}

.content .sticky {
	background-color: #eee;
	padding: 3rem;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.entry-footer .entry-meta {
	border-top: 1px solid #ddd;
	padding-top: 2rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 .6rem 0 .2rem;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 6rem 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #ddd;
	color: #222;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: .4rem;
	padding: .8rem 1.2rem;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #222;
	color: #f5f5f5;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 4rem;
	font-size: 1.6rem;
}

.comment-list li {
	padding: 4rem 0 0 3rem;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 3rem;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 1.2rem;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 1rem;
}


/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {	
	font-size: 1.6rem;
	margin-bottom: 6rem;
}


/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	border-top: 1px solid #ddd;
	font-size: 1.6rem;
	padding: 6rem 0;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
}

.site-footer .wrap {
	border-top: 1px solid #ddd;	
	padding: 3rem 0;	
}

.site-footer p {
	margin-bottom: 0;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 480px) {

	table {
		table-layout: auto;
		word-break: normal;
	}

}


@media only screen and (min-width: 600px) {



}


@media only screen and (min-width: 900px) {

	/* Structure
	--------------------------------------------- */

	.wrap {
		width: calc(100% - 12rem);
	}

	/* Site Header
	--------------------------------------------- */

	.site-header {
		position: fixed;
		min-height: 12rem;		
		-webkit-transform: translateY(0%);
		    -ms-transform: translateY(0%);
		        transform: translateY(0%);		
	}

	.site-header.hide {
		-webkit-transform: translateY(-100%);
		    -ms-transform: translateY(-100%);
		        transform: translateY(-100%);
	}

	.site-header.scroll {
		min-height: 8rem;
	}

	.site-title {
		font-size: 2.8rem;
	}

	/* Site Navigation
	--------------------------------------------- */

	.nav-menu .menu-item {
		display: inline-block;
	}

	.nav-menu .menu-item:focus,
	.nav-menu .menu-item:hover {
		position: relative;
	}

	.nav-menu > .menu-item > a {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.nav-menu > .menu-item:last-child > a {
		margin-right: 0;
	}

	.nav-menu > .menu-item:first-child > a {
		margin-left: 0;
	}

	.nav-menu > .menu-highlight > a {
		background-color: #222;
		color: #f5f5f5;
		margin-left: 1.5rem;
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.nav-menu > .menu-highlight > a:focus,
	.nav-menu > .menu-highlight > a:hover {
		background-color: #5057e6;
	}

	.nav-menu .sub-menu,
	.nav-menu .sub-menu a {
		width: 18rem;
	}

	.nav-menu .sub-menu {
		border-top: 1px solid #eee;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
	}

	.nav-menu .sub-menu .sub-menu {
		margin: -4.6rem 0 0 17.9rem;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary,
	.nav-secondary {
		display: block;
	}

	/* Page Header
	--------------------------------------------- */

	.page-header {
		padding-top: 24rem; 
		padding-bottom: 12rem;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		margin-top: 12rem; /* Header Height */
		padding-top: 8rem;
		padding-bottom: 4rem;
	}

	/* Content
	--------------------------------------------- */

	/* Sidebar
	--------------------------------------------- */

	/* Author Box
	--------------------------------------------- */

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		/* margin-bottom: 8rem; */
	}

	.full-width-content .entry-content img.size-full {
		margin-left: -12rem;
		margin-right: -12rem;
		max-width: calc(100% + 24rem);
		width: auto;
	}

	/* Footer Widgets
	--------------------------------------------- */


	/* Site Footer
	--------------------------------------------- */

	.site-footer .wrap {
		padding: 4rem 0;		
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.footer-left {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.footer-links {
		margin-bottom: 0;
		margin-left: auto;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		    -ms-flex-order: 2;
		        order: 2;
	}

	.footer-links a {
		display: inline-block;
		margin-left: 2rem;		
	}

}


@media only screen and (min-width: 1200px) {



}


@media only screen and (min-width: 1500px) {



}


@media only screen and (min-width: 1800px) {



}