
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #000;
	font-family: "Gellix", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

@media all and (max-width: 767px) {
	body,
	button,
	input,
	select,
	optgroup,
	textarea {
		line-height: 1.375;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Gellix", sans-serif;
	font-weight: 400;
}

h1 {
	font-size: 112px;
	font-size: 7rem;
	line-height: 1.25;
	font-weight: 500;
}

@media all and (max-width: 1023px) {
	h1 {
		font-size: 90px;
		font-size: 5.625rem;
	}
}

@media all and (max-width: 767px) {
	h1 {
		font-size: 60px;
		font-size: 3.75rem;
	}
}

h2 {
	font-size: 72px;
	font-size: 4.5rem;
	line-height: 1.33;
	font-weight: 500;
}

@media all and (max-width: 767px) {
	h2 {
		font-size: 32px;
		font-size: 2rem;
	}
}

h3 {
	font-size: 40px;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 400;
}

@media all and (max-width: 767px) {
	h3 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.33;
	}
}

h4 {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.4;
	font-weight: 400;
}

@media all and (max-width: 767px) {
	h4 {
		line-height: 1.33;
	}
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

strong, b {
	font-weight: 600;
}

/* Elements
--------------------------------------------- */
html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}

body.nav-opened {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.margin-fix > *:first-child {
	margin-top: 0 !important;
}

.margin-fix > *:last-child {
	margin-bottom: 0 !important;
}

.pull-wide {
	margin: -34px;
}

@media all and (max-width: 1599px) {
	.pull-wide {
		margin: -34px;
	}
}

@media all and (max-width: 1023px) {
	.pull-wide {
		margin: -24px;
	}
}

@media all and (max-width: 480px) {
	.pull-wide {
		margin: -15px;
	}
}

.container {
	display: block;
	width: 100%;
	max-width: 1188px;
	padding: 0 34px;
	margin: 0 auto;
}

@media all and (max-width: 1599px) {
	.container {
		padding: 0 34px;
	}
}

@media all and (max-width: 1023px) {
	.container {
		padding: 0 24px;
	}
}

@media all and (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
}

.container--no-padding {
	padding: 0;
}

.container--full {
	max-width: none;
}

.container--medium {
	max-width: 1300px;
}

@media all and (max-width: 1599px) {
	.container--medium {
		max-width: 1170px;
	}
}

.container--inset-x-large {
	max-width: 1186px;
}

.container--inset-wide {
	max-width: 1268px;
}

.container--small {
	max-width: 1050px;
}

@media all and (max-width: 1599px) {
	.container--small {
		max-width: 960px;
	}
}

.container--inset-large {
	max-width: 1015px;
}

.container--inset {
	max-width: 980px;
}

.container--tiny {
	max-width: 750px;
}

.container--flex {
	display: flex;
}

@media print {
	.container {
		padding: 0;
	}
}

.loading-dots {
	background: #000;
}

.loading-dots--dark {
	background: #FFF;
}

.ajax-preloader {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
	position: relative;
	left: -9999px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #FFF;
	color: #FFF;
	box-shadow: 9999px 0 0 -5px #FFF;
	animation: dotPulse 1.5s infinite linear;
	animation-delay: .25s;
}

.dot-pulse--dark {
	background-color: #000;
	color: #000;
	box-shadow: 9999px 0 0 -5px #000;
	animation: dotPulseDark 1.5s infinite linear;
	animation-delay: .25s;
}

.dot-pulse::before,
.dot-pulse::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #FFF;
	color: #FFF;
}

.dot-pulse--dark::before,
.dot-pulse--dark::after {
	background-color: #000;
	color: #000;
}

.dot-pulse::before {
	box-shadow: 9984px 0 0 -5px #FFF;
	animation: dotPulseBefore 1.5s infinite linear;
	animation-delay: 0s;
}

.dot-pulse--dark::before {
	box-shadow: 9984px 0 0 -5px #000;
	animation: dotPulseBeforeDark 1.5s infinite linear;
	animation-delay: 0s;
}

.dot-pulse::after {
	box-shadow: 10014px 0 0 -5px #FFF;
	animation: dotPulseAfter 1.5s infinite linear;
	animation-delay: .5s;
}

.dot-pulse--dark::after {
	box-shadow: 10014px 0 0 -5px #000;
	animation: dotPulseAfterDark 1.5s infinite linear;
	animation-delay: .5s;
}

@keyframes dotPulseBefore {
	0% {
		box-shadow: 9984px 0 0 -5px #FFF;
	}
	30% {
		box-shadow: 9984px 0 0 2px #FFF;
	}
	60%,
	100% {
		box-shadow: 9984px 0 0 -5px #FFF;
	}
}

@keyframes dotPulseBeforeDark {
	0% {
		box-shadow: 9984px 0 0 -5px #000;
	}
	30% {
		box-shadow: 9984px 0 0 2px #000;
	}
	60%,
	100% {
		box-shadow: 9984px 0 0 -5px #000;
	}
}

@keyframes dotPulse {
	0% {
		box-shadow: 9999px 0 0 -5px #FFF;
	}
	30% {
		box-shadow: 9999px 0 0 2px #FFF;
	}
	60%,
	100% {
		box-shadow: 9999px 0 0 -5px #FFF;
	}
}

@keyframes dotPulseDark {
	0% {
		box-shadow: 9999px 0 0 -5px #000;
	}
	30% {
		box-shadow: 9999px 0 0 2px #000;
	}
	60%,
	100% {
		box-shadow: 9999px 0 0 -5px #000;
	}
}

@keyframes dotPulseAfter {
	0% {
		box-shadow: 10014px 0 0 -5px #FFF;
	}
	30% {
		box-shadow: 10014px 0 0 2px #FFF;
	}
	60%,
	100% {
		box-shadow: 10014px 0 0 -5px #FFF;
	}
}

@keyframes dotPulseAfterDark {
	0% {
		box-shadow: 10014px 0 0 -5px #000;
	}
	30% {
		box-shadow: 10014px 0 0 2px #000;
	}
	60%,
	100% {
		box-shadow: 10014px 0 0 -5px #000;
	}
}

/**
   * ==============================================
   * Dot Flashing
   * ==============================================
   */
.dot-flashing {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #FFF;
	color: #FFF;
	animation: dotFlashing 1s infinite linear alternate;
	animation-delay: .5s;
}

.dot-flashing--dark {
	background-color: #000;
	color: #000;
}

.dot-flashing::before,
.dot-flashing::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
}

.dot-flashing::before {
	left: -15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #FFF;
	color: #FFF;
	animation: dotFlashing 1s infinite alternate;
	animation-delay: 0s;
}

.dot-flashing--dark::before {
	background-color: #000;
	color: #000;
}

.dot-flashing::after {
	left: 15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #FFF;
	color: #FFF;
	animation: dotFlashing 1s infinite alternate;
	animation-delay: 1s;
}

.dot-flashing::after--dark {
	background-color: #000;
	color: #000;
}

.dot-flashing--dark::after {
	background-color: #000;
	color: #000;
}

@keyframes dotFlashing {
	0% {
		opacity: 0.2;
	}
	50% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}

/**
   * ==============================================
   * Spotlight
   * ==============================================
   */
.spotlight > div {
	width: 18px;
	height: 18px;
	background-color: #FFF;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spotlight--dark > div {
	background-color: #000;
}

.spotlight .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spotlight .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		opacity: 0.2;
	}
	40% {
		opacity: 1;
	}
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #000;
}

.pretty-links a {
	position: relative;
	display: inline-flex;
	padding: 0 0 .25em;
	margin-bottom: -.25em;
	text-decoration: none;
	color: #000;
	line-height: 1.2;
	font-weight: 600;
	cursor: pointer;
	transition: .2s ease;
}

.pretty-links a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	content: '';
	background: #000;
	transition: .2s ease;
}

.pretty-links a:hover {
	color: #505050;
}

.pretty-links a:hover:after {
	background: #505050;
}

.pretty-links a--dark {
	color: #FFF;
}

.pretty-links a--dark:after {
	background: #FFF;
}

.pretty-links a--dark:hover {
	color: #C4C4C4;
}

.pretty-links a--dark:hover:after {
	background: #C4C4C4;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

.button {
	-webkit-appearance: none;
	background: none;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 600;
	cursor: pointer;
	transition: .2s ease;
	display: inline-flex;
	width: auto;
	border-radius: 0;
}

.button__primary {
	align-items: center;
	text-align: center;
	height: 56px;
	background: #000;
	color: #FFF;
	padding: 0 40px;
	border: 1px solid #000;
}

.button__primary:hover {
	background: #FFF;
	border-color: #000;
	color: #000;
}

.button__primary--dark {
	background: #FFF;
	color: #000;
	border: 1px solid #FFF;
}

.button__primary--dark:hover {
	background: #000;
	border-color: #FFF;
	color: #FFF;
}

.button__secondary {
	border: none;
	position: relative;
	display: inline-flex;
	padding: 0 0 5px;
	font-size: 16px;
	font-size: 1rem;
	color: #000;
	line-height: 1.2;
	font-weight: 600;
	cursor: pointer;
	transition: .2s ease;
}

.button__secondary:after {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	content: '';
	background: #000;
	transition: .2s ease;
}

.button__secondary--hide-after:after {
	display: none;
}

.button__secondary:hover {
	color: #505050;
}

.button__secondary:hover:after {
	background: #505050;
}

.button__secondary--dark {
	color: #FFF;
}

.button__secondary--dark:after {
	background: #FFF;
}

.button__secondary--dark:hover {
	color: #C4C4C4;
}

.button__secondary--dark:hover:after {
	background: #C4C4C4;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #000;
	border: 1px solid #ccc;
	border-radius: 0px;
	padding: 16px 24px;
	outline: none;
	height: 56px;
	font-weight: 500;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #000;
	border-color: #000;
	border-width: 2px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="range"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #C4C4C4;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="range"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
input[type="month"]:-moz-placeholder,
input[type="week"]:-moz-placeholder,
input[type="time"]:-moz-placeholder,
input[type="datetime"]:-moz-placeholder,
input[type="datetime-local"]:-moz-placeholder,
input[type="color"]:-moz-placeholder,
textarea:-moz-placeholder {
	color: #C4C4C4;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="range"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
textarea::-moz-placeholder {
	color: #C4C4C4;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="range"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #C4C4C4;
}

input[type="text"].input-error,
input[type="email"].input-error,
input[type="url"].input-error,
input[type="password"].input-error,
input[type="search"].input-error,
input[type="number"].input-error,
input[type="tel"].input-error,
input[type="range"].input-error,
input[type="date"].input-error,
input[type="month"].input-error,
input[type="week"].input-error,
input[type="time"].input-error,
input[type="datetime"].input-error,
input[type="datetime-local"].input-error,
input[type="color"].input-error,
textarea.input-error {
	border-color: #FF4D12;
	color: #FF4D12;
	border-width: 2px;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="url"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="number"]:disabled,
input[type="tel"]:disabled,
input[type="range"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled {
	border-color: #F2F0ED;
	color: rgba(196, 196, 196, 0.5);
	background: white;
	height: 56px;
}

.select-wrapper {
	position: relative;
	height: 56px;
	border: 1px solid #ccc;
	display: inline-block;
	cursor: pointer;
	margin: 0;
	top: -4px;
}

.select-wrapper:after {
	content: '\e913';
	font-family: "B1";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 16px;
	height: 45%;
	transform: translateY(-50%);
	z-index: 1;
}

.select-wrapper select {
	-webkit-appearance: none;
	border: none;
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
	background: transparent;
	padding: 12px 40px 12px 20px;
	outline: none;
	height: 100%;
	width: 100%;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Structure
--------------------------------------------- */
.site-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: white;
	height: 105px;
	background: white;
	transition: .2s ease;
	z-index: 99;
}

@media all and (max-width: 767px) {
	.site-header {
		height: 80px;
	}
}

@media all and (max-width: 480px) {
	.site-header {
		height: 60px;
	}
}

.site-header--scrolling {
	background: #F9FAFB;
}

.site-header--shrink {
	height: 64px;
}

@media all and (max-width: 767px) {
	.site-header--shrink {
		height: 80px;
	}
}

@media all and (max-width: 480px) {
	.site-header--shrink {
		height: 60px;
	}
}

.site-header--nav-active {
	background: #000;
	color: white;
	height: 100%;
	transition: .5s ease;
}

.site-header--nav-active .site-header__branding path {
	fill: white;
}

.site-header--nav-active .site-header__hamburger-button-bar-top,
.site-header--nav-active .site-header__hamburger-button-bar-bot {
	background: white;
}

.site-header--nav-active .site-header__navigation {
	transform: translateY(80px);
	transition-delay: .2s;
	opacity: 1;
	visibility: visible;
}

.site-header--hidden {
	transform: translateY(-100%);
}

.site-header .container {
	height: 100%;
}

.site-header__cols {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media all and (max-width: 767px) {
	.site-header__cols {
		height: 80px;
		flex-wrap: wrap;
	}
}

@media all and (max-width: 480px) {
	.site-header__cols {
		height: 60px;
	}
}

.site-header__branding {
	width: 48px;
	flex-grow: 0;
	flex-shrink: 0;
	transition: .2s ease;
}

@media all and (max-width: 480px) {
	.site-header__branding {
		width: 36px;
	}
}

.site-header--shrink .site-header__branding {
	width: 80px;
}

@media all and (max-width: 767px) {
	.site-header--shrink .site-header__branding {
		width: 36px;
	}
}

.site-header__branding a, .site-header__branding img, .site-header__branding svg {
	display: block;
	width: 100%;
	height: auto;
}

.site-header__branding path {
	fill: #000;
	transition: .3s ease;
}

.site-header__navigation {
	flex-basis: calc(50% - 15px);
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 767px) {
	.site-header__navigation {
		flex-basis: auto;
		order: 3;
		width: 100%;
		transform: translateY(40px);
		transition: .3s ease;
		opacity: 0;
		visibility: hidden;
	}
}

.site-header__navigation .menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: space-between;
}

@media all and (max-width: 767px) {
	.site-header__navigation .menu {
		flex-direction: column;
	}
}

.site-header__navigation .menu-item {
	margin-right: 24px;
}

@media all and (max-width: 1023px) {
	.site-header__navigation .menu-item {
		margin-right: 64px;
	}
}

@media all and (max-width: 767px) {
	.site-header__navigation .menu-item {
		margin: 0;
		border-bottom: 1px solid rgba(196, 196, 196, 0.2);
	}
}

.site-header__navigation .menu-item:last-of-type {
	margin-right: 0;
}

.site-header__navigation .menu-item a {
	text-decoration: none;
	padding: 10px 0;
	position: relative;
}

@media all and (max-width: 767px) {
	.site-header__navigation .menu-item a {
		padding: 24px 0;
		display: block;
		width: 100%;
		font-size: 32px;
		font-size: 2rem;
		font-weight: 500;
		color: white;
	}
}

.site-header__navigation .menu-item a:after {
	content: '';
	background: #000;
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 100%;
	transition: .2s ease;
}

@media all and (max-width: 767px) {
	.site-header__navigation .menu-item a:after {
		display: none;
	}
}

.site-header__navigation .menu-item a:hover:after {
	margin-left: 0;
	width: 100%;
	transition: width .2s ease;
}

.site-header__hamburger {
	height: 100%;
	align-items: stretch;
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 0;
	display: none;
}

@media all and (max-width: 767px) {
	.site-header__hamburger {
		display: flex;
	}
}

.site-header__hamburger-button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0 24px;
	margin-right: -24px;
	outline: none;
	cursor: pointer;
}

@media all and (max-width: 480px) {
	.site-header__hamburger-button {
		padding: 0 15px;
		margin-right: -15px;
	}
}

.site-header__hamburger-button--active .site-header__hamburger-button-bar-top {
	transform: rotate(-45deg);
	bottom: 8.5px;
	top: 5px;
}

.site-header__hamburger-button--active .site-header__hamburger-button-bar-bot {
	transform: rotate(45deg);
	top: 5px;
}

.site-header__hamburger-button-symbol {
	position: relative;
	height: 11px;
	width: 24px;
}

.site-header__hamburger-button-bar-top, .site-header__hamburger-button-bar-bot {
	top: 0;
	display: block;
	height: 3px;
	width: 100%;
	background: #000;
	position: absolute;
	left: 0;
	transform: rotate(0deg);
	transition: .3s ease;
}

.site-header__hamburger-button-bar-bot {
	top: auto;
	bottom: 0;
}

.site-footer {
	background: #F9FAFB;
	padding: 64px 0 100px;
}

@media all and (max-width: 767px) {
	.site-footer {
		padding: 30px 0 42px;
	}
}

@media all and (max-width: 767px) {
	.site-footer--desktop {
		display: none;
	}
}

.site-footer--mobile {
	display: none;
}

@media all and (max-width: 767px) {
	.site-footer--mobile {
		display: block;
	}
}

.site-footer--mobile .site-footer__social,
.site-footer--mobile .site-footer__legal {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 100px;
}

@media all and (max-width: 767px) {
	.site-footer--mobile .site-footer__social,
	.site-footer--mobile .site-footer__legal {
		margin: 0;
		padding: 20px 0;
		flex-grow: initial;
		flex-shrink: initial;
	}
}

.site-footer--mobile .site-footer__social .menu,
.site-footer--mobile .site-footer__legal .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-end;
}

@media all and (max-width: 767px) {
	.site-footer--mobile .site-footer__social .menu,
	.site-footer--mobile .site-footer__legal .menu {
		width: 100%;
		flex-wrap: wrap;
	}
}

.site-footer--mobile .site-footer__social .menu-item,
.site-footer--mobile .site-footer__legal .menu-item {
	margin-right: 54px;
}

@media all and (max-width: 767px) {
	.site-footer--mobile .site-footer__social .menu-item,
	.site-footer--mobile .site-footer__legal .menu-item {
		flex-basis: 100%;
		margin: 10px 0;
	}
}

.site-footer--mobile .site-footer__social .menu-item:last-of-type,
.site-footer--mobile .site-footer__legal .menu-item:last-of-type {
	margin-right: 0;
}

.site-footer--mobile .site-footer__social .menu-item a,
.site-footer--mobile .site-footer__legal .menu-item a {
	text-decoration: none;
	padding: 7px 0;
	position: relative;
}

.site-footer--mobile .site-footer__social .menu-item a:after,
.site-footer--mobile .site-footer__legal .menu-item a:after {
	content: '';
	background: #000;
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 100%;
	transition: .2s ease;
}

.site-footer--mobile .site-footer__social .menu-item a:hover:after,
.site-footer--mobile .site-footer__legal .menu-item a:hover:after {
	margin-left: 0;
	width: 100%;
	transition: width .2s ease;
}

.site-footer--mobile .site-footer__navigations {
	display: flex;
	justify-content: flex-start;
}

@media all and (max-width: 767px) {
	.site-footer--mobile .site-footer__social {
		flex-basis: 60%;
	}
}

@media all and (max-width: 767px) {
	.site-footer--mobile .site-footer__legal {
		flex-basis: 40%;
	}
}

.site-footer__top, .site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media all and (max-width: 767px) {
	.site-footer__top, .site-footer__bottom {
		flex-wrap: wrap;
	}
}

.site-footer__top {
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
}

@media all and (max-width: 767px) {
	.site-footer__top {
		padding-bottom: 0;
		border: none;
	}
}

.site-footer__bottom {
	padding-top: 24px;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
}

@media all and (max-width: 767px) {
	.site-footer__bottom {
		padding-top: 0;
	}
}

.site-footer__branding {
	flex-basis: 48px;
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 767px) {
	.site-footer__branding {
		flex-basis: 100%;
		margin-top: 48px;
	}
}

.site-footer__branding a, .site-footer__branding img {
	display: block;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	.site-footer__branding a, .site-footer__branding img {
		width: 48px;
	}
}

@media all and (max-width: 480px) {
	.site-footer__branding a, .site-footer__branding img {
		width: 36px;
	}
}

.site-footer__navigation {
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 767px) {
	.site-footer__navigation {
		flex-basis: 100%;
	}
}

.site-footer__navigation .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

@media all and (max-width: 767px) {
	.site-footer__navigation .menu {
		width: 100%;
		flex-direction: column;
	}
}

.site-footer__navigation .menu-item {
	margin-right: 64px;
}

@media all and (max-width: 767px) {
	.site-footer__navigation .menu-item {
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
}

.site-footer__navigation .menu-item:last-of-type {
	margin-right: 0;
}

.site-footer__navigation .menu-item a {
	text-decoration: none;
	padding: 10px 0;
	position: relative;
}

@media all and (max-width: 767px) {
	.site-footer__navigation .menu-item a {
		padding: 15px 0;
		display: block;
		width: 100%;
	}
}

.site-footer__navigation .menu-item a:after {
	content: '';
	background: #000;
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 100%;
	transition: .2s ease;
}

.site-footer__navigation .menu-item a:hover:after {
	margin-left: 0;
	width: 100%;
	transition: width .2s ease;
}

.site-footer__social {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 100px;
}

@media all and (max-width: 767px) {
	.site-footer__social {
		margin: 0;
		padding: 20px 0;
	}
}

.site-footer__social .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-end;
}

@media all and (max-width: 767px) {
	.site-footer__social .menu {
		width: 100%;
		flex-wrap: wrap;
	}
}

.site-footer__social .menu-item {
	margin-right: 54px;
}

@media all and (max-width: 767px) {
	.site-footer__social .menu-item {
		flex-basis: 100%;
		margin: 10px 0;
	}
}

.site-footer__social .menu-item:last-of-type {
	margin-right: 0;
}

.site-footer__social .menu-item a {
	text-decoration: none;
	padding: 7px 0;
	position: relative;
}

.site-footer__social .menu-item a:after {
	content: '';
	background: #000;
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 100%;
	transition: .2s ease;
}

.site-footer__social .menu-item a:hover:after {
	margin-left: 0;
	width: 100%;
	transition: width .2s ease;
}

.site-footer__copyright {
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 767px) {
	.site-footer__copyright {
		flex-basis: 100%;
		order: 2;
		padding-top: 30px;
	}
}

.site-footer__legal {
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 767px) {
	.site-footer__legal {
		flex-basis: 100%;
		padding: 20px 0;
		flex-basis: 50%;
		flex-grow: initial;
		flex-shrink: initial;
	}
}

.site-footer__legal .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

@media all and (max-width: 767px) {
	.site-footer__legal .menu {
		width: 100%;
		flex-wrap: wrap;
	}
}

.site-footer__legal .menu-item {
	margin-right: 54px;
}

@media all and (max-width: 767px) {
	.site-footer__legal .menu-item {
		flex-basis: 100%;
		margin: 10px 0;
	}
}

.site-footer__legal .menu-item:last-of-type {
	margin-right: 0;
}

.site-footer__legal .menu-item a {
	text-decoration: none;
	padding: 7px 0;
	position: relative;
}

.site-footer__legal .menu-item a:after {
	content: '';
	background: #000;
	height: 1px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 100%;
	transition: .2s ease;
}

.site-footer__legal .menu-item a:hover:after {
	margin-left: 0;
	width: 100%;
	transition: width .2s ease;
}

/* Posts and pages
--------------------------------------------- */
/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Templates
--------------------------------------------------------------*/
.home-hero {
	padding-top: 136px;
	margin-bottom: 128px;
}

.home-hero .container {
	position: relative;
}

.home-hero__animation {
	position: absolute;
	left: 0;
	top: 0;
	bottom: unset;
	right: unset;
	height: auto;
	width: 100%;
	z-index: 0;
}

@media all and (max-width: 480px) {
	.home-hero__animation {
		height: auto;
		width: 100%;
	}
}

@media all and (max-width: 480px) {
	.home-hero {
		padding-top: 90px;
	}
}

.home-hero__heading {
	opacity: 0;
	position: relative;
	margin: 0;
	height: 480px;
	max-width: 1000px;
	z-index: 1;
}

@media all and (max-width: 1023px) {
	.home-hero__heading {
		height: auto;
	}
}

.home-hero__heading span {
	display: inline-block;
	white-space: nowrap;
}

.home-video {
	opacity: 0;
	margin: 208px 0 128px 0;
}

.home-video img {
	display: block;
}

.home-video__desktop {
	padding-bottom: 56.25%;
	position: relative;
}

@media all and (max-width: 767px) {
	.home-video__desktop {
		display: none;
	}
}

.home-video__mobile {
	padding-bottom: 125.067%;
	position: relative;
	display: none;
}

@media all and (max-width: 767px) {
	.home-video__mobile {
		display: block;
	}
}

.home-video iframe,
.home-video object,
.home-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.home-paragraph {
	margin: 256px 0;
}

@media all and (max-width: 767px) {
	.home-paragraph {
		margin: 130px 0;
	}
}

.home-paragraph__content {
	max-width: 920px;
}

.home-stats {
	margin: 256px 0;
}

.home-stats .container {
	position: relative;
	overflow: hidden;
}

.home-stats__animation-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 1120px;
	height: 1568px;
}

@media (max-width: 1000px) {
	.home-stats__animation-container {
		left: -20%;
	}
}

@media all and (max-width: 480px) {
	.home-stats__animation-container {
		width: 100%;
		height: auto;
		left: 0;
	}
}

@media all and (max-width: 767px) {
	.home-stats {
		margin: 160px 0 80px;
	}
}

.home-stats__header {
	border-top: 3px solid #000;
	padding-top: 32px;
}

.home-stats__heading {
	margin: 0;
}

.home-stats__block {
	display: flex;
	position: relative;
	margin: 0;
}

.home-stats__block:nth-of-type(1) {
	margin-top: 128px;
}

.home-stats__block:nth-of-type(2) {
	margin-top: 456px;
}

.home-stats__block:nth-of-type(3) {
	margin: 256px 0 0;
}

.home-stats__block:nth-of-type(2n + 1) {
	justify-content: flex-end;
}

.home-stats__block-content {
	flex-basis: calc(50% - 64px);
}

@media all and (max-width: 767px) {
	.home-stats__block-content {
		flex-basis: auto;
	}
}

.home-stats__block-bar {
	display: block;
	width: 32px;
	height: 8px;
	background: #000;
	margin-bottom: 32px;
}

.home-stats__block-bar--blue {
	background: #0F4FE3;
}

.home-stats__block-bar--orange {
	background: #F79938;
}

.home-stats__block-bar--aqua {
	background: #0ABAB5;
}

.home-stats__block-label {
	display: block;
	font-size: 20px;
	font-size: 1.25rem;
	position: relative;
	z-index: 1;
	margin-bottom: -10px;
}

@media all and (max-width: 767px) {
	.home-stats__block-label {
		white-space: nowrap;
	}
}

.home-stats__block-number {
	display: flex;
	font-weight: 500;
	font-size: 112px;
	font-size: 7rem;
	line-height: 1.25;
}

@media all and (max-width: 1023px) {
	.home-stats__block-number {
		font-size: 90px;
		font-size: 5.625rem;
	}
}

@media all and (max-width: 767px) {
	.home-stats__block-number {
		font-size: 60px;
		font-size: 3.75rem;
	}
}

.home-subs {
	margin: 256px 0;
}

@media all and (max-width: 767px) {
	.home-subs {
		margin: 65px 0;
		background: #F9FAFB;
	}
}

.home-subs__header {
	border-top: 3px solid #000;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

@media all and (max-width: 767px) {
	.home-subs__header {
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
	}
}

.home-subs__actions {
	margin-bottom: 13px;
}

@media all and (max-width: 767px) {
	.home-subs__actions {
		margin-top: 28px;
		margin-bottom: 11px;
	}
}

.home-subs__heading {
	margin: 0;
}

.home-subs__blocks {
	margin: 128px 0 0;
	background: #F9FAFB;
	padding: 128px 96px;
}

@media all and (max-width: 1023px) {
	.home-subs__blocks {
		padding: 75px 30px;
	}
}

@media all and (max-width: 767px) {
	.home-subs__blocks {
		background: none;
		margin: 75px 0;
		padding: 0 0 85px;
	}
}

.home-subs__block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 128px 0;
}

@media all and (max-width: 1023px) {
	.home-subs__block {
		margin: 75px 0;
	}
}

@media all and (max-width: 767px) {
	.home-subs__block {
		flex-wrap: wrap;
		flex-direction: column;
	}
}

.home-subs__block:nth-of-type(2n + 2) {
	flex-direction: row-reverse;
}

@media all and (max-width: 767px) {
	.home-subs__block:nth-of-type(2n + 2) {
		flex-direction: column;
	}
}

.home-subs__block-image {
	flex-basis: calc(50% - 16px);
	flex-shrink: 0;
	align-self: flex-start;
}

@media all and (max-width: 767px) {
	.home-subs__block-image {
		flex-basis: 100%;
		margin: 0 0 30px;
	}
}

.home-subs__block-image img {
	display: block;
}

.home-subs__block-content {
	flex-basis: calc(50% - 112px);
	flex-shrink: 1;
	flex-grow: 0;
}

@media all and (max-width: 1023px) {
	.home-subs__block-content {
		flex-basis: calc(50% - 60px);
	}
}

.home-subs__block-heading {
	margin: 0 0 40px;
}

@media all and (max-width: 767px) {
	.home-subs__block-heading {
		margin: 0 0 30px;
	}
}

.home-cta {
	margin: 256px 0 0;
}

@media all and (max-width: 767px) {
	.home-cta {
		margin-top: 0;
		padding-top: 0;
	}
}

.home-cta .container.container--anim-parent {
	min-height: 395px;
	position: relative;
}

@media all and (max-width: 767px) {
	.home-cta .container.container--anim-parent {
		min-height: 331px;
	}
}

.home-cta__animation-container {
	position: absolute;
	top: -90px;
	left: 0;
	width: 1120px;
	height: 486px;
}

@media all and (max-width: 767px) {
	.home-cta__animation-container {
		top: -80px;
	}
}

@media all and (max-width: 1119px) {
	.home-cta__animation-container {
		width: 100%;
	}
}

@media all and (max-width: 767px) {
	.home-cta {
		margin: 65px 0 0;
	}
}

.home-cta__heading {
	margin: 0;
	max-width: 756px;
}

.home-cta__actions {
	margin: 0;
	padding-top: 128px;
}

@media all and (max-width: 767px) {
	.home-cta__actions {
		margin: 75px 0 0;
		padding-top: 0;
	}
}

.about-hero {
	padding-top: 136px;
	margin-bottom: 128px;
}

@media all and (max-width: 480px) {
	.about-hero {
		padding-top: 90px;
	}
}

.about-hero .container {
	position: relative;
	display: flex;
	overflow: hidden;
}

.about-hero__heading {
	opacity: 0;
	max-width: 928px;
	height: 344px;
	margin: 0;
}

@media all and (max-width: 1023px) {
	.about-hero__heading {
		height: auto;
	}
}

@media all and (max-width: 767px) {
	.about-hero__accent-image {
		display: none;
	}
}

.about-half-width-content {
	margin: 0 64px;
	background-color: #F2F0ED;
}

@media all and (max-width: 767px) {
	.about-half-width-content {
		margin: 0;
	}
}

.about-half-width-content h3 {
	margin: 0 0 64px 0;
}

@media all and (max-width: 1023px) {
	.about-half-width-content h3 {
		font-size: 2rem;
		font-weight: 500;
		margin: 0 35px 30px 0;
	}
}

.about-half-width-content__flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media all and (max-width: 1023px) {
	.about-half-width-content__flex {
		flex-wrap: wrap;
	}
}

.about-half-width-content__animation {
	flex-basis: 49%;
	flex-grow: 1;
	height: 689px;
	margin-top: -560px;
}

@media all and (max-width: 1023px) {
	.about-half-width-content__animation {
		flex-basis: 100%;
		margin-top: -40px;
	}
}

@media all and (max-width: 767px) {
	.about-half-width-content__animation {
		margin-top: -40px;
		max-height: 315px;
		margin-left: -170px;
		margin-bottom: 75px;
	}
}

.about-half-width-content__inner {
	flex-basis: 51%;
	flex-grow: 0;
	margin-left: 62px;
}

@media all and (max-width: 1023px) {
	.about-half-width-content__inner {
		flex-basis: 100%;
		margin-left: 0;
	}
}

.about-half-width-content__right-half {
	opacity: 0;
	padding: 128px 0;
}

@media all and (max-width: 767px) {
	.about-half-width-content__right-half {
		padding: 0 0 150px 0;
	}
}

.about-half-width-content-short {
	margin: 256px 0;
}

@media all and (max-width: 767px) {
	.about-half-width-content-short {
		margin: 150px 0;
	}
}

.about-half-width-content-short__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.about-half-width-content-short__left-image {
	flex-basis: 256px;
	flex-grow: 0;
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__left-image.desktop {
		display: none;
	}
}

.about-half-width-content-short__left-image.mobile {
	flex-basis: 97px;
}

.about-half-width-content-short__right-half {
	flex-basis: 447px;
	flex-grow: 0;
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__right-half {
		flex-basis: 100%;
	}
}

.about-half-width-content-short__right-half h3 {
	margin: 0 0 32px 0;
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__right-half h3 {
		margin: 72px 0 32px 0;
		font-size: 1.5rem;
	}
}

.about-half-width-content-short__right-half-content {
	line-height: 1.78;
}

.about-half-width-content-short__bottom-image {
	margin-right: 96px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	margin-top: -50px;
}

@media all and (min-width: 768px) {
	.about-half-width-content-short__bottom-image {
		margin-right: 0;
	}
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__bottom-image.desktop {
		display: none;
	}
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__bottom-image.mobile {
		margin-right: 0;
		margin-top: 80px;
		margin-left: 52px;
		display: block;
		flex-basis: 97px;
		flex-grow: 1;
	}
}

.about-half-width-content-short__bottom-image-image {
	flex-basis: 447px;
	flex-grow: 0;
}

.about-half-width-content-short__images-mobile {
	display: none;
}

@media all and (max-width: 767px) {
	.about-half-width-content-short__images-mobile {
		display: flex;
	}
}

.about-quote {
	overflow: hidden;
	margin: 0 64px;
	min-height: 1360px;
	padding: 90px 0 140px;
	background-color: #F2F0ED;
}

@media all and (max-width: 1023px) {
	.about-quote {
		min-height: 1100px;
		padding: 90px 0;
	}
}

@media all and (max-width: 767px) {
	.about-quote {
		margin: 0;
		min-height: 630px;
		padding: 75px 0 92px 0;
	}
}

.about-quote h3 {
	font-size: 20px;
	margin: 0;
}

.about-quote__inner-top {
	margin-bottom: 127px;
}

@media all and (max-width: 767px) {
	.about-quote__inner-top {
		margin-bottom: 32px;
	}
}

.about-quote__inner-quote {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.about-quote__inner-content {
	flex-basis: 736px;
	flex-grow: 0;
}

.about-quote__inner-quote-text {
	font-size: 40px;
	line-height: 1.4;
}

@media all and (max-width: 767px) {
	.about-quote__inner-quote-text {
		font-size: 1.5rem;
		max-width: 340px;
	}
}

.about-quote__inner-attributor {
	margin: 164px 0 0 130px;
	position: relative;
	padding-left: 60px;
}

@media all and (max-width: 1023px) {
	.about-quote__inner-attributor {
		margin-left: 0;
	}
}

@media all and (max-width: 767px) {
	.about-quote__inner-attributor {
		margin: 58px 0 0 0;
		padding-left: 0;
	}
}

.about-quote__inner-attributor:before {
	position: absolute;
	content: "";
	left: 0;
	top: 4px;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background-color: #000;
}

@media all and (max-width: 767px) {
	.about-quote__inner-attributor:before {
		display: none;
	}
}

.about-quote .container--inset-x-large {
	position: relative;
}

.about-quote__animation-container {
	position: absolute;
	top: 416px;
	right: 0;
	width: 1114px;
	height: 710px;
}

@media all and (max-width: 1023px) {
	.about-quote__animation-container {
		width: 100%;
		height: auto;
		top: 480px;
		right: unset;
		margin: 0 auto;
	}
}

@media all and (max-width: 1023px) and (max-width: 767px) {
	.about-quote__animation-container {
		top: 250px;
	}
}

.about-alternating-content {
	margin: 256px 0 0;
}

@media all and (max-width: 1023px) {
	.about-alternating-content {
		margin-bottom: 300px;
	}
}

@media all and (max-width: 767px) {
	.about-alternating-content {
		margin: 80px 0 130px 0;
	}
}

.about-alternating-content .container {
	position: relative;
}

.about-alternating-content__animation-container {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	max-width: 1118px;
	z-index: -1;
	opacity: 1;
}

@media all and (max-width: 767px) {
	.about-alternating-content__animation-container {
		height: 100%;
		width: auto;
	}
}

.about-alternating-content__header {
	border-top: 3px solid #000;
	padding-top: 24px;
}

.about-alternating-content__heading {
	margin: 0;
}

.about-alternating-content__border {
	border-top: 3px solid #000;
}

.about-alternating-content h3 {
	margin: 0;
	margin-bottom: 286px;
}

@media all and (max-width: 767px) {
	.about-alternating-content h3 {
		font-size: 1.5em;
		margin-bottom: 85px;
	}
}

.about-alternating-content__inner {
	display: flex;
	flex-direction: column;
}

@media all and (max-width: 767px) {
	.about-alternating-content__inner {
		margin-bottom: 0;
	}
}

.about-alternating-content__inner-group {
	max-width: 282px;
}

@media all and (max-width: 1023px) {
	.about-alternating-content__inner-group:nth-child(1) {
		margin-top: -230px;
	}
}

@media all and (max-width: 767px) {
	.about-alternating-content__inner-group:nth-child(1) {
		margin-top: 0;
	}
}

.about-alternating-content__inner-group:nth-child(2) {
	margin-top: 280px;
}

@media all and (max-width: 1023px) {
	.about-alternating-content__inner-group:nth-child(2) {
		margin-top: 245px;
		margin-right: 0;
	}
}

@media all and (max-width: 767px) {
	.about-alternating-content__inner-group:nth-child(2) {
		margin-top: 240px;
	}
}

.about-alternating-content__inner-group:nth-child(3) {
	margin-top: 386px;
}

@media all and (max-width: 767px) {
	.about-alternating-content__inner-group:nth-child(3) {
		margin-top: 235px;
	}
}

.about-alternating-content__inner-group:nth-child(4) {
	margin: 560px 0;
}

@media all and (max-width: 1023px) {
	.about-alternating-content__inner-group:nth-child(4) {
		margin: 200px 0 0;
	}
}

@media all and (max-width: 767px) {
	.about-alternating-content__inner-group:nth-child(4) {
		margin: 0;
		margin-top: 370px;
		margin-bottom: 345px;
	}
}

.about-alternating-content__inner-group:nth-of-type(2n) {
	align-self: flex-end;
}

.about-alternating-content__inner-group-bar {
	display: block;
	width: 32px;
	height: 8px;
	background: #0F4FE3;
	margin-bottom: 16px;
}

.about-alternating-content__inner-group-bar--blue {
	background: #0F4FE3;
}

.about-alternating-content__inner-group-bar--orange {
	background: #F79938;
}

.about-alternating-content__inner-group-bar--red {
	background: #FF4D12;
}

.about-alternating-content__inner-group-bar--aqua {
	background: #0ABAB5;
}

.about-alternating-content__inner-group h4 {
	font-size: 20px;
	line-height: 1.4;
	margin: 0 0 16px 0;
}

.about-alternating-content__inner-group:nth-of-type(2):before {
	background-color: #F79938;
}

.about-alternating-content__inner-group:nth-of-type(3):before {
	background-color: #FF4D12;
}

.about-alternating-content__inner-group:nth-of-type(4):before {
	background-color: #0ABAB5;
}

.legal-header {
	align-items: flex-start;
	margin-bottom: 128px;
	height: 144px;
	margin-top: 144px;
}

@media all and (max-width: 1023px) {
	.legal-header {
		margin-bottom: 29px;
		height: 148px;
	}
}

.legal-header,
.legal-content {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.legal-header__main {
	border-bottom: 3px solid #000;
	height: 100%;
}

.legal-header__main h1 {
	font-size: 40px;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 400;
	margin: 0;
	color: #161616;
}

.legal-header__aside {
	border-bottom: 1px solid #000;
	padding-bottom: 60px;
	height: 100%;
}

.legal-header__aside h5 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 600;
	margin: 25px 0 0 0;
	color: #242424;
}

.legal-content {
	align-items: flex-start;
	margin-bottom: 60px;
	height: 100%;
}

.legal-header__aside,
.legal-content__aside {
	display: flex;
	flex-basis: 23%;
	flex-direction: column;
}

@media all and (max-width: 1023px) {
	.legal-header__aside,
	.legal-content__aside {
		display: none;
	}
}

.legal-header__main,
.legal-content__main {
	display: flex;
	flex-basis: 74%;
	flex-direction: column;
}

@media all and (max-width: 1023px) {
	.legal-header__main,
	.legal-content__main {
		flex-basis: 100%;
		overflow: hidden;
	}
}

@media all and (max-width: 1023px) {
	.legal-content__main {
		padding-top: 5px;
	}
}

.legal-content__main h1,
.legal-content__main h2,
.legal-content__main h3,
.legal-content__main h4,
.legal-content__main h5,
.legal-content__main h6,
.legal-content__main p {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	color: #242424;
}

.legal-content__main h1 b,
.legal-content__main h1 strong,
.legal-content__main h2 b,
.legal-content__main h2 strong,
.legal-content__main h3 b,
.legal-content__main h3 strong,
.legal-content__main h4 b,
.legal-content__main h4 strong,
.legal-content__main h5 b,
.legal-content__main h5 strong,
.legal-content__main h6 b,
.legal-content__main h6 strong,
.legal-content__main p b,
.legal-content__main p strong {
	font-weight: 500;
}

.legal-content__main h1,
.legal-content__main h2,
.legal-content__main h3,
.legal-content__main h4,
.legal-content__main h5,
.legal-content__main h6 {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 500;
}

.legal-content__main p {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
}

.legal-content__main .wp-block-table.is-style-stripes {
	border-bottom: 0;
}

.legal-content__main .wp-block-table.is-style-stripes table {
	margin-bottom: 0;
}

@media all and (max-width: 767px) {
	.legal-content__main .wp-block-table.is-style-stripes table tr:first-of-type {
		border: none;
	}
	.legal-content__main .wp-block-table.is-style-stripes table td:last-child:after {
		display: none;
	}
}

.legal-content__main .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #F2F0ED;
}

.legal-content__main .wp-block-table.cols-25-25-50 td:nth-of-type(1),
.legal-content__main .wp-block-table.cols-25-25-50 td:nth-of-type(2) {
	width: 25%;
}

.legal-content__main .wp-block-table table {
	border-collapse: collapse;
	font-size: 1rem;
}

.legal-content__main .wp-block-table table th,
.legal-content__main .wp-block-table table td {
	padding: 12px;
}

.legal-content__main .wp-block-table table th {
	font-weight: 600;
	color: #000;
}

@media all and (max-width: 767px) {
	.legal-content__main .wp-block-table table thead {
		display: none;
	}
	.legal-content__main .wp-block-table table tr {
		display: block;
		position: relative;
		padding: 12px 0;
	}
	.legal-content__main .wp-block-table table tr:first-of-type {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}
	.legal-content__main .wp-block-table table td {
		display: block;
		width: 100% !important;
		padding: 2px 12px;
	}
	.legal-content__main .wp-block-table table td:before {
		content: attr(data-label);
		display: block;
		font-weight: 600;
		color: #505050;
	}
	.legal-content__main .wp-block-table table td:last-child:after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
}

.legal-content__aside {
	height: 100%;
}

.legal-content__navigation {
	margin-top: 8px;
	height: 100%;
}

.legal-content__navigation-li {
	display: block;
	margin-bottom: 40px;
	padding-left: 40px;
}

.legal-content__navigation-li--active {
	position: relative;
}

.legal-content__navigation-li--active:after {
	content: '\e90f';
	font-family: "B1";
	position: absolute;
	top: 3px;
	left: -2px;
	height: 100%;
	width: 100%;
	font-size: 13px;
}

.legal-content__navigation-link {
	text-decoration: none;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
}

.legal-content__navigation-link--active {
	font-weight: 600;
}

.legal-content__navigation-mobile {
	display: none;
}

@media all and (max-width: 1023px) {
	.legal-content__navigation-mobile {
		display: block;
	}
}

#ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings {
	color: #FFF !important;
	border: 1px solid #000 !important;
	background-color: #000 !important;
	transition: 0.2s ease-in !important;
	border-radius: 0 !important;
}

#ot-sdk-btn.ot-sdk-show-settings:hover, #ot-sdk-btn.optanon-show-settings:hover {
	color: #000 !important;
	background-color: #FFF !important;
}

#onetrust-pc-sdk button {
	font-weight: 500;
}

#ot-sdk-cookie-policy {
	margin-top: -20px;
}

#ot-sdk-cookie-policy .ot-sdk-container {
	padding: 0 !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy h3,
#ot-sdk-cookie-policy .ot-sdk-cookie-policy h4 {
	font-size: 20px;
	font-size: 1.25rem !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	margin-bottom: 34px !important;
	margin-top: 40px !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy p,
#ot-sdk-cookie-policy .ot-sdk-cookie-policy #cookie-policy-description,
#ot-sdk-cookie-policy .ot-sdk-cookie-policy .ot-table-header,
#ot-sdk-cookie-policy .ot-sdk-cookie-policy table td {
	font-size: 16px;
	font-size: 1rem !important;
	font-weight: 400 !important;
	margin-bottom: 1.5em !important;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy .ot-table-header {
	font-weight: 600 !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table {
	border: none !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table thead th {
	background-color: white;
	border: none !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table tbody tr:nth-child(odd) {
	background-color: #F2F0ED;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table td {
	border: none !important;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table td a {
	text-decoration: none;
	display: inline-flex;
	line-height: 1.2;
	font-weight: 600;
	padding: 0 0 .25em;
	margin-bottom: -.25em;
	position: relative;
	background-color: transparent;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table td a:hover {
	color: #505050;
	background-color: transparent;
}

#ot-sdk-cookie-policy .ot-sdk-cookie-policy table td a:hover:after {
	background: #505050;
}

.press-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-basis: 100%;
	flex-direction: row;
	margin-top: 144px;
	height: 502px;
}

@media all and (max-width: 1023px) {
	.press-heading {
		height: auto;
	}
}

.press-heading__headers {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	flex-basis: 51%;
}

@media all and (max-width: 1023px) {
	.press-heading__headers {
		flex-basis: 100%;
	}
}

@media all and (max-width: 1023px) {
	.press-heading__header-main {
		height: 220px;
	}
}

.press-heading__header-main h1 {
	margin: 0;
	color: #161616;
}

@media all and (max-width: 1023px) {
	.press-heading__header-main h1 {
		font-size: 63px;
		font-size: 3.9375rem;
		line-height: 1.13;
	}
}

.press-heading__header-content {
	display: none;
}

@media all and (max-width: 1023px) {
	.press-heading__header-content {
		display: flex;
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 1.5;
		font-weight: 500;
	}
}

.press-heading__header-content a {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 500;
}

.press-heading__header-secondary {
	margin-bottom: -65px;
}

@media all and (max-width: 1023px) {
	.press-heading__header-secondary {
		margin-bottom: 0;
		margin-top: 85px;
	}
}

.press-heading__header-secondary h3 {
	margin: 0;
	color: #242424;
}

@media all and (max-width: 1023px) {
	.press-heading__header-secondary h3 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.33;
	}
}

.press-heading__content {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	flex-basis: 49%;
	background-image: url("ui/press-b-small.svg");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
	height: 100%;
}

.press-heading__content p {
	font-size: 20px;
	font-size: 1.25rem;
	width: 68%;
	margin-bottom: 107px;
	color: #161616;
}

@media all and (max-width: 1023px) {
	.press-heading__content {
		display: none;
	}
}

.press__filters-wrap {
	flex-shrink: 0;
}

@media all and (max-width: 1023px) {
	.press__filters-wrap {
		max-width: 100%;
	}
}

.press__filters-row {
	height: 120px;
	padding: 0 60px;
	background: #F9FAFB;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media all and (max-width: 1023px) {
	.press__filters-row {
		justify-content: space-between;
		padding: 45px 15px;
		flex-wrap: wrap;
		align-items: center;
		height: auto;
	}
}

.press__filters-search {
	flex-basis: auto;
	margin: 0;
	position: relative;
}

@media all and (max-width: 767px) {
	.press__filters-search {
		width: 240px;
	}
}

@media all and (max-width: 1023px) {
	.press__filters-search {
		flex-basis: 100%;
		margin: 0;
		padding-bottom: 24px;
	}
}

.press__filters-search input[type="text"] {
	display: block;
	width: 290px;
	background: #FFF;
	border: 1px solid #ccc;
	padding: 12px 15px;
	height: 56px;
	transition: .2s ease;
	padding: 0 70px 0 20px;
	outline: none;
	font-weight: 400;
	color: #000;
}

@media all and (max-width: 1023px) {
	.press__filters-search input[type="text"] {
		width: 100%;
	}
}

.press__filters-search input[type="text"]:hover, .press__filters-search input[type="text"]:focus {
	border-color: #000;
}

.press__filters-search input[type="text"]::placeholder {
	color: #000;
	opacity: 0.5;
}

.press__filters-search-clear {
	background: none;
	border: none;
	padding: 2px;
	font-size: 12px;
	font-size: 0.75rem;
	color: #000;
	font-weight: 700;
	cursor: pointer;
	outline: none;
	position: absolute;
	top: 50%;
	right: 48px;
	transform: translateY(-50%);
	z-index: 10;
}

.press__filters-search-submit {
	border: none;
	background: none;
	color: #000;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 20px;
	border-radius: 24px;
	outline: none;
}

@media all and (max-width: 1023px) {
	.press__filters-search-submit {
		top: -9px;
	}
}

.press__filters-group {
	flex-basis: auto;
	margin: 0 0 0 35px;
	position: relative;
}

@media all and (max-width: 1023px) {
	.press__filters-group {
		flex-basis: 45%;
		margin: 0;
	}
}

.press__filters-group:focus {
	outline: none;
}

@media all and (max-width: 767px) {
	.press__filters-group[data-name="post_label[]"] {
		padding-bottom: 24px;
	}
}

.press__filters-button {
	background: #FFF;
	border: 1px solid #ccc;
	height: 56px;
	-webkit-appearance: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	color: #000;
	cursor: pointer;
	transition: .2s ease;
	width: 200px;
	user-select: none;
}

@media all and (max-width: 1023px) {
	.press__filters-button {
		width: 100%;
	}
}

.press__filters-button:hover {
	border-color: #000;
}

.press__filters-button-label {
	opacity: 0.5;
}

.press__filters-button i {
	font-weight: 500;
}

.press__filters-button-clear {
	background: none;
	border: none;
	padding: 2px;
	font-size: 12px;
	font-size: 0.75rem;
	color: #000;
	font-weight: 700;
	cursor: pointer;
	outline: none;
}

.press__filters-drop {
	position: absolute;
	top: 100%;
	margin-top: 6px;
	left: 0;
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #FFF;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 0s;
}

.press__filters-group.open .press__filters-drop {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: .3s ease;
}

.press__filters-drop-list {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 280px;
	overflow-y: auto;
}

.press__filters-drop-row input[type="checkbox"] {
	display: none;
}

.press__filters-drop-row input[type="checkbox"]:checked + .press__filters-drop-item .press__filters-drop-item-label {
	font-weight: 500;
	color: #000;
}

.press__filters-drop-row input[type="checkbox"]:checked + .press__filters-drop-item .press__filters-drop-item-check {
	background: #000;
	border-color: #000;
}

.press__filters-drop-item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px;
	cursor: pointer;
	transition: .2s ease;
}

.press__filters-drop-item:hover {
	background: rgba(0, 0, 0, 0.1);
	color: #000;
}

.press__filters-drop-item-label {
	flex-basis: auto;
	flex-grow: 1;
	flex-shrink: 1;
	line-height: 1.2;
}

.press__filters-drop-item-check {
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-right: 12px;
	border: 1px solid #ccc;
	background: #FFF;
	border-radius: 3px;
	position: relative;
}

.press__filters-drop-item-check:after {
	content: '\e91c';
	font-family: 'B1';
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	font-size: 0.75rem;
}

.press__filters-drop-submit {
	font-size: 16px;
	font-size: 1rem;
	height: 56px;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.press__filters-drop-submit-wrap {
	border-top: 1px solid #ccc;
	padding: 10px;
}

.press entry {
	display: block;
	padding-bottom: 80px;
	margin-bottom: 60px;
	border-bottom: 1px solid #C4C4C4;
}

@media all and (max-width: 1023px) {
	.press entry {
		padding-bottom: 30px;
		margin-bottom: 70px;
	}
}

.press-entry-item {
	display: block;
	text-decoration: none;
}

.press-entry-item__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

@media all and (max-width: 1023px) {
	.press-entry-item__content {
		flex-direction: column;
	}
}

.press-entry-item__content h6 {
	margin: 0;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.4;
	display: flex;
	justify-content: flex-start;
	flex-basis: 74%;
}

@media all and (max-width: 1599px) {
	.press-entry-item__content h6 {
		flex-basis: 80%;
	}
}

@media all and (max-width: 1023px) {
	.press-entry-item__content h6 {
		flex-basis: 100%;
		font-weight: 500;
		line-height: 1.5;
	}
}

.press-entry-item__content span {
	display: flex;
	align-items: flex-start;
	flex-basis: 26%;
	color: #242424;
}

@media all and (max-width: 1599px) {
	.press-entry-item__content span {
		flex-basis: 20%;
	}
}

@media all and (max-width: 1023px) {
	.press-entry-item__content span {
		flex-basis: 100%;
		margin-bottom: 70px;
		line-height: 1.37;
	}
}

.press__grid {
	margin-top: 129px;
}

@media all and (max-width: 1023px) {
	.press__grid {
		margin-top: 75px;
	}
}

.press__grid-wrap {
	position: relative;
}

.press__grid-wrap .ajax-preloader {
	background: #F9FAFB;
}

.press__grid-wrap .load-more {
	margin-top: 3px;
}

.press-load-more {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: white;
	display: none;
	z-index: 1;
}

.press__load-more {
	margin-bottom: 256px;
}

@media all and (max-width: 1023px) {
	.press__load-more {
		margin-bottom: 130px;
	}
}

.single-news .press-header {
	align-items: flex-start;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding-bottom: 60px;
	margin-top: 200px;
}

@media all and (max-width: 767px) {
	.single-news .press-header {
		height: auto;
		margin-top: 151px;
		padding-bottom: 70px;
	}
}

.single-news .press-header,
.single-news .press-content,
.single-news .press-share {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

@media all and (max-width: 767px) {
	.single-news .press-header,
	.single-news .press-content,
	.single-news .press-share {
		flex-direction: column;
	}
}

.single-news .press-header__main h1 {
	font-size: 40px;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 400;
	margin: 0;
}

@media all and (max-width: 1200px) {
	.single-news .press-header__main h1 {
		font-size: 32px;
		font-size: 2rem;
		line-height: 1.31;
		font-weight: 500;
	}
}

@media all and (max-width: 1023px) {
	.single-news .press-header__main h1 {
		margin-top: 70px;
	}
}

@media all and (max-width: 1023px) {
	.single-news .press-header__main {
		padding-bottom: 0;
	}
}

.single-news .press-header__aside h5 {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.37;
	font-weight: 400;
	color: #242424;
	margin: 0;
}

@media all and (max-width: 1023px) {
	.single-news .press-header__aside h5 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.33;
	}
}

.single-news .press-content {
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 0;
	border-bottom: 3px solid #000;
	padding-bottom: 148px;
	padding-top: 77px;
}

@media all and (max-width: 1023px) {
	.single-news .press-content {
		padding-bottom: 135px;
	}
}

.single-news .press-content .has-drop-cap:not(:focus):first-letter {
	float: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: inherit;
}

.single-news .press-header__aside,
.single-news .press-content__aside {
	display: flex;
	flex-basis: 23%;
	flex-direction: column;
}

@media all and (max-width: 1599px) {
	.single-news .press-header__aside,
	.single-news .press-content__aside {
		flex-basis: 17%;
	}
}

@media all and (max-width: 1023px) {
	.single-news .press-header__aside,
	.single-news .press-content__aside {
		flex-basis: 100%;
	}
}

.single-news .press-header__main,
.single-news .press-content__main {
	display: flex;
	flex-basis: 74%;
	flex-direction: column;
}

@media all and (max-width: 1599px) {
	.single-news .press-header__main,
	.single-news .press-content__main {
		flex-basis: 80%;
	}
}

@media all and (max-width: 1023px) {
	.single-news .press-header__main,
	.single-news .press-content__main {
		flex-basis: 100%;
	}
}

.single-news .press-content__main {
	padding-right: 188px;
}

@media all and (max-width: 1023px) {
	.single-news .press-content__main {
		margin-top: 42px;
		padding-right: 0;
	}
}

.single-news .press-content__main .press-featured-image + p {
	text-align: left;
}

.single-news .press-content__main .press-featured-image + p em {
	font-style: normal;
}

.single-news .press-content__main h4 strong {
	font-weight: 400;
}

.single-news .press-content__main p {
	margin-bottom: 1.38em;
}

.single-news .press-content__main p[style="font-size:10px"],
.single-news .press-content__main .has-small-font-size {
	font-size: 12px !important;
	color: #161616;
	font-weight: 500;
}

.single-news .press-content__main p[style="font-size:10px"] strong:first-of-type,
.single-news .press-content__main .has-small-font-size strong:first-of-type {
	font-size: 16px !important;
	display: block;
	margin-top: 25px;
	font-weight: 600;
}

.single-news .press-content__main p[style="font-size:10px"] a,
.single-news .press-content__main .has-small-font-size a {
	font-size: 12px !important;
}

.single-news .press-content__main p[style="font-size:10px"] a:after,
.single-news .press-content__main .has-small-font-size a:after {
	bottom: 1px;
}

.single-news .press-content__main > p {
	margin-top: 1px;
}

.single-news .press-content__main > .press-featured-image {
	margin-top: 5px;
}

.single-news .press-content__aside span {
	color: #242424;
	line-height: 1.6;
}

.single-news .press-excerpt {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.4;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
}

.single-news .press-excerpt p {
	margin-top: 0;
}

.single-news .press-featured-image {
	margin-bottom: 60px;
}

@media all and (max-width: 767px) {
	.single-news .press-featured-image {
		margin-bottom: 50px;
	}
}

.single-news .press-excerpt + .press-featured-image {
	margin-top: 60px;
	margin-bottom: 60px;
}

@media all and (max-width: 767px) {
	.single-news .press-excerpt + .press-featured-image {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

.single-news .press-share {
	margin-top: 35px;
}

.single-news .press-share .social-share-buttons {
	display: flex;
	flex-direction: row;
	list-style: none;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 29px 0;
	padding: 20px 0;
}

@media all and (max-width: 767px) {
	.single-news .press-share .social-share-buttons {
		flex-wrap: wrap;
		padding-top: 30px;
		justify-content: space-between;
		margin-bottom: 25px;
	}
}

.single-news .press-share .social-share-buttons li {
	margin-right: 34px;
}

.single-news .press-share .social-share-buttons li.share {
	color: #242424;
}

@media all and (max-width: 767px) {
	.single-news .press-share .social-share-buttons li.share {
		flex-basis: 100%;
		flex-grow: 1;
		margin-bottom: 24px;
	}
}

.single-news .press-share .social-share-buttons li a {
	text-decoration: none;
}

.single-news .press-share .social-share-buttons li a:after {
	display: none;
}

.single-news .press-share .social-share-buttons li i {
	display: block;
	font-size: 20px;
	font-size: 1.25rem;
	text-align: center;
}

@media all and (max-width: 767px) {
	.single-news .press-share .social-share-buttons li i {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

.single-news .press-share .social-share-buttons li i:before {
	color: #242424;
}

.single-news .press-related-news h3 {
	color: #242424;
	margin: 5px 0 0 0;
}

@media all and (max-width: 767px) {
	.single-news .press-related-news h3 {
		margin-top: 23px;
	}
}

.single-news .press__filters-wrap {
	display: none;
}

@media all and (max-width: 767px) {
	.single-news__grid {
		margin-top: 100px;
	}
}

.portfolio-hero {
	padding-top: 136px;
	margin-bottom: 128px;
}

.portfolio-hero .container {
	position: relative;
}

@media all and (max-width: 480px) {
	.portfolio-hero {
		padding-top: 90px;
	}
}

.portfolio-hero__heading {
	position: relative;
	margin: 0;
	width: max-content;
	max-width: 1000px;
	z-index: 1;
	height: 344px;
}

@media all and (max-width: 767px) {
	.portfolio-hero__heading {
		height: 220px;
		width: 100%;
	}
}

.portfolio-hero__heading:after {
	content: '';
	background-image: url(ui/portfolio-line.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 268px;
	height: 256px;
	position: absolute;
	left: 100%;
	top: 0;
}

@media all and (max-width: 767px) {
	.portfolio-hero__heading:after {
		height: 165px;
		width: 173px;
		left: auto;
		top: -20px;
		right: 24px;
	}
}

.portfolio-hero__intro {
	display: flex;
	font-size: 20px;
	font-size: 1.25rem;
}

.portfolio-hero__intro-text {
	flex-basis: 544px;
	flex-shrink: 1;
	margin-left: auto;
}

.portfolio-nav {
	position: sticky;
	top: 64px;
	transition: .2s ease;
	margin-bottom: 200px;
	z-index: 98;
}

@media all and (max-width: 767px) {
	.portfolio-nav {
		top: 80px;
		margin-bottom: 50px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media all and (max-width: 480px) {
	.portfolio-nav {
		top: 60px;
	}
}

.portfolio-nav--push {
	transform: translateY(-64px);
}

.portfolio-nav--sticky {
	background: #F9FAFB;
}

.portfolio-nav--sticky .portfolio-nav__list {
	position: relative;
}

.portfolio-nav--sticky .portfolio-nav__list:before {
	content: '';
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
}

@media all and (max-width: 767px) {
	.portfolio-nav--sticky .portfolio-nav__list:before {
		display: none;
	}
}

.portfolio-nav__list {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media all and (max-width: 767px) {
	.portfolio-nav__list {
		display: inline-flex;
	}
}

.portfolio-nav__list-item {
	flex-basis: auto;
	flex-grow: 1;
	text-align: center;
}

.portfolio-nav__list-item.active a {
	font-weight: 600;
}

.portfolio-nav__list-item.active a:after {
	opacity: 1;
}

.portfolio-nav__list-item a {
	display: inline-block;
	padding: 10px 3px;
	text-decoration: none;
	position: relative;
	line-height: 1.125;
}

@media all and (max-width: 767px) {
	.portfolio-nav__list-item a {
		padding: 16px;
	}
}

.portfolio-nav__list-item a:after {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	opacity: 0;
	transition: .2s ease;
}

.portfolio-nav__list-item a:hover {
	font-weight: 600;
}

.portfolio-nav__list-item a:hover:after {
	opacity: 1;
}

.portfolio-list {
	margin: 0 0 100px;
}

.portfolio-list__block {
	margin: 48px 0;
}

.portfolio-list__block:before {
	content: "";
	display: block;
	height: 100px;
	margin: -100px 0 0;
}

.portfolio-list__block:first-of-type {
	margin-top: 0;
}

.portfolio-list__block:last-of-type {
	margin-bottom: 0;
}

.portfolio-list__block-heading {
	width: calc(50% - 15px);
	border-bottom: 3px solid;
	margin: 0 0 10px;
	line-height: 1;
	padding: 48px 0;
}

@media all and (max-width: 767px) {
	.portfolio-list__block-heading {
		font-size: 60px;
		font-size: 3.75rem;
		padding: 0;
		line-height: 1.25;
		width: 100%;
	}
}

.portfolio-list__block-heading--blue {
	border-color: #0F4FE3;
}

.portfolio-list__block-heading--orange {
	border-color: #F79938;
}

.portfolio-list__block-heading--aqua {
	border-color: #0ABAB5;
}

.portfolio-list__block-heading--red {
	border-color: #FF4D12;
}

.portfolio-list__block:nth-of-type(4n+1) .portfolio-list__block-heading {
	border-color: #0F4FE3;
}

.portfolio-list__block:nth-of-type(4n+2) .portfolio-list__block-heading {
	border-color: #F79938;
}

.portfolio-list__block:nth-of-type(4n+3) .portfolio-list__block-heading {
	border-color: #0ABAB5;
}

.portfolio-list__block:nth-of-type(4n+4) .portfolio-list__block-heading {
	border-color: #FF4D12;
}

.portfolio-list__block-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 30px;
	position: relative;
	z-index: 1;
}

@media all and (max-width: 767px) {
	.portfolio-list__block-list {
		grid-gap: 0 15px;
	}
}

.portfolio-list__block-list-item {
	border-bottom: 1px solid #C4C4C4;
	padding: 20px 0;
	cursor: pointer;
	font-size: 20px;
	font-size: 1.25rem;
}

@media all and (max-width: 767px) {
	.portfolio-list__block-list-item {
		font-size: 16px;
		font-size: 1rem;
		padding: 16px 0;
	}
}

.portfolio-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: .4s ease;
}

.portfolio-modal--open {
	transition: 0s;
	visibility: visible;
	opacity: 1;
}

.portfolio-modal--open .portfolio-modal__panel {
	transform: translateX(0);
}

.portfolio-modal__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	max-width: 980px;
	height: 100%;
	background: #000;
	color: white;
	transform: translateX(100%);
	transition: .4s ease;
}

@media all and (max-width: 767px) {
	.portfolio-modal__panel {
		width: 100%;
	}
}

.portfolio-modal__slider {
	height: 100%;
}

.portfolio-modal__slider .slick-track, .portfolio-modal__slider .slick-list {
	height: 100%;
}

.portfolio-modal__close {
	transition: .2s ease;
	position: absolute;
	right: 130px;
	top: 176px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid rgba(196, 196, 196, 0.3);
	border-radius: 50%;
	color: white;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.portfolio-modal__close:hover {
	border: 2px solid rgba(255, 255, 255, 0.3);
	background-color: #FFF;
	color: #000;
}

@media all and (max-width: 1023px) {
	.portfolio-modal__close {
		top: 100px;
		right: 80px;
	}
}

@media all and (max-width: 767px) {
	.portfolio-modal__close {
		top: 30px;
		right: 24px;
	}
}

@media all and (max-width: 480px) {
	.portfolio-modal__close {
		top: 30px;
		right: 15px;
	}
}

.portfolio-modal__item {
	padding: 176px 130px 24px 160px;
	height: 100%;
	overflow: auto;
}

@media all and (max-width: 1023px) {
	.portfolio-modal__item {
		padding: 100px 80px 24px;
	}
}

@media all and (max-width: 767px) {
	.portfolio-modal__item {
		padding: 30px 24px 24px;
	}
}

@media all and (max-width: 480px) {
	.portfolio-modal__item {
		padding: 30px 15px;
	}
}

.portfolio-modal__item a {
	color: inherit;
}

.portfolio-modal__item-column {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.portfolio-modal__item-main {
	margin-right: 96px;
	margin-bottom: 48px;
	max-width: 500px;
}

.portfolio-modal__item-title {
	margin: 0 0 40px;
	padding: 0 0 24px;
	position: relative;
}

.portfolio-modal__item-title:after {
	content: '';
	display: block;
	width: 32px;
	height: 0;
	border-bottom: 3px solid;
	position: absolute;
	top: 100%;
	left: 0;
}

.portfolio-modal__item-title--blue:after {
	border-color: #0F4FE3;
}

.portfolio-modal__item-title--orange:after {
	border-color: #F79938;
}

.portfolio-modal__item-title--aqua:after {
	border-color: #0ABAB5;
}

.portfolio-modal__item-title--red:after {
	border-color: #FF4D12;
}

.portfolio-modal__item-links {
	margin: 48px 0 0;
}

.portfolio-modal__item-links a {
	color: inherit;
	display: inline-block;
	text-decoration: none;
	position: relative;
}

.portfolio-modal__item-links a:after {
	content: '';
	display: block;
	width: 100%;
	border-bottom: 1px solid white;
	position: absolute;
	top: 100%;
}

.portfolio-modal__item-nav {
	margin-top: auto;
	border-top: 1px solid rgba(196, 196, 196, 0.2);
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.portfolio-modal__item-nav-button {
	display: flex;
	align-items: center;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0;
}

.portfolio-modal__item-nav-button:hover i {
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #000;
	background-color: #FFF;
}

@media all and (max-width: 767px) {
	.portfolio-modal__item-nav-button {
		flex-basis: 50%;
		flex-wrap: wrap;
		justify-content: center;
		align-content: flex-start;
	}
}

.portfolio-modal__item-nav-button--next {
	margin-left: auto;
}

@media all and (max-width: 767px) {
	.portfolio-modal__item-nav-button--next {
		flex-wrap: wrap-reverse;
	}
}

.portfolio-modal__item-nav-button-text {
	margin: 0 24px;
	font-size: 20px;
	font-size: 1.25rem;
}

@media all and (max-width: 1200px) {
	.portfolio-modal__item-nav-button-text {
		margin: 0 10px;
		font-size: 16px;
		font-size: 1rem;
	}
}

@media all and (max-width: 767px) {
	.portfolio-modal__item-nav-button-text {
		flex-basis: 100%;
	}
}

.portfolio-modal__item-nav-button i {
	flex-shrink: 0;
	transition: .2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid rgba(196, 196, 196, 0.3);
	border-radius: 50%;
	color: white;
	font-size: 28px;
}

@media all and (max-width: 767px) {
	.portfolio-modal__item-nav-button i {
		margin-bottom: 20px;
	}
}

.portfolio-modal__item-nav-button.disabled {
	cursor: unset;
}

.portfolio-modal__item-nav-button.disabled i {
	opacity: 0.2;
	border: none;
	background: none;
	color: #fff;
}

.portfolio-modal__item-nav-button.disabled i:before {
	color: #fff;
}

.portfolio-modal__item-nav-button.disabled i:after {
	display: none;
}

.portfolio-modal__item-nav-button.disabled:hover {
	background: none;
	border: none;
}

.portfolio-modal__item-nav-button.disabled:hover i {
	opacity: 0.2;
	background: none;
}

.portfolio-modal__item-nav-button.disabled:hover i:before {
	color: #fff;
}

.team {
	margin-bottom: 264px;
}

@media all and (max-width: 480px) {
	.team {
		margin-bottom: 130px;
	}
}

.team-hero {
	padding-top: 136px;
	margin-bottom: 128px;
}

@media all and (max-width: 480px) {
	.team-hero {
		padding-top: 90px;
		margin-bottom: 0;
	}
}

.team-hero__heading {
	max-width: 928px;
	height: 344px;
	margin: 0;
}

@media all and (max-width: 1023px) {
	.team-hero__heading {
		height: 220px;
	}
}

.team__grid-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: -16px;
}

@media all and (max-width: 1023px) {
	.team__grid-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media all and (max-width: 767px) {
	.team__grid-row {
		grid-template-columns: repeat(2, 1fr);
		margin: -7px;
	}
}

.team__grid-member {
	grid-column: span 1;
	margin: 16px 16px 256px 16px;
	cursor: pointer;
}

@media all and (max-width: 1023px) {
	.team__grid-member {
		margin: 16px 16px 150px 16px;
	}
}

@media all and (max-width: 767px) {
	.team__grid-member {
		margin: 7px 7px 75px 7px;
	}
}

.team__grid-member:nth-of-type(6n + 1) {
	grid-column: 2 / span 1;
}

@media all and (max-width: 1023px) {
	.team__grid-member:nth-of-type(6n + 1) {
		grid-column: span 1;
	}
}

.team__grid-member:nth-of-type(6n + 6) {
	grid-column: 3 / span 1;
}

@media all and (max-width: 1023px) {
	.team__grid-member:nth-of-type(6n + 6) {
		grid-column: span 1;
	}
}

.team__grid-headshot {
	position: relative;
	overflow: hidden;
}

.team__grid-headshot-block {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform: translateY(-100%);
}

.team__grid-headshot img {
	opacity: 0;
	display: block;
	height: 352px;
	width: 100%;
	object-fit: cover;
}

@media all and (max-width: 480px) {
	.team__grid-headshot img {
		height: 229px;
	}
}

@media all and (min-width: 768px) {
	.team__grid-member:nth-of-type(3n + 1) .team__grid-headshot-block, .team__grid-member:nth-of-type(3n + 3) .team__grid-headshot-block {
		background: black;
		bottom: initial;
		top: 0;
		transform: translateY(100%);
	}
}

@media all and (max-width: 480px) {
	.team__grid-member:nth-child(odd) .team__grid-headshot-block {
		background: black;
		bottom: initial;
		top: 0;
		transform: translateY(100%);
	}
}

.team__grid-title {
	font-size: 20px;
	margin: 24px 0;
	line-height: 1.4;
}

@media all and (max-width: 480px) {
	.team__grid-title {
		font-size: 16px;
		margin: 11px 0 16px 0;
	}
}

.team__grid-separator {
	height: 3px;
	width: 32px;
	background-color: #000;
}

.team__grid-separator-white {
	background-color: #FFF;
	margin-bottom: 16px;
}

.team__grid-job {
	font-size: 12px;
	line-height: 1.33;
	margin: 24px 0 0 0;
	text-transform: uppercase;
	font-weight: 500;
}

@media all and (max-width: 480px) {
	.team__grid-job {
		margin: 16px 0 0 0;
	}
}

.team__careers h2 {
	max-width: 936px;
	margin: 0 0 128px 0;
}

@media all and (max-width: 480px) {
	.team__careers h2 {
		margin: 0 0 75px 0;
	}
}

.team__lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease;
}

.team__lightbox--open {
	transition: 0s;
	visibility: visible;
	opacity: 1;
}

.team__lightbox--open .team__lightbox-outer-panel {
	transform: translateX(0);
}

.team__lightbox-panel-close {
	transition: .2s ease;
	position: absolute;
	right: 130px;
	top: 176px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid rgba(196, 196, 196, 0.3);
	border-radius: 50%;
	color: white;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.team__lightbox-panel-close:hover {
	border: 2px solid rgba(255, 255, 255, 0.3);
	background-color: #FFF;
	color: #000;
}

.team__lightbox-panel-close .b1i-close {
	pointer-events: none;
}

@media all and (max-width: 1023px) {
	.team__lightbox-panel-close {
		top: 48px;
		right: 48px;
	}
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-close {
		top: 30px;
		right: 24px;
	}
}

@media all and (max-width: 480px) {
	.team__lightbox-panel-close {
		top: 30px;
		right: 15px;
	}
}

.team__lightbox-outer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	max-width: 980px;
	height: 100%;
	background: #000;
	color: white;
	transform: translateX(100%);
	transition: 0.4s ease;
}

@media all and (max-width: 767px) {
	.team__lightbox-outer-panel {
		width: 100%;
	}
}

.team__lightbox-slider {
	height: 100%;
}

.team__lightbox-slider .slick-track,
.team__lightbox-slider .slick-list {
	height: 100%;
}

.team__lightbox-panel {
	height: 100%;
	outline: none !important;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	max-width: 1154px;
	padding: 176px 130px 24px 96px;
	position: relative;
	color: #fff;
}

.team__lightbox-panel-flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.team__lightbox-panel-bio a:not([class^="button"]) {
	color: #fff;
	font-weight: 400;
	text-decoration: underline;
	padding: 0;
}

.team__lightbox-panel-social {
	margin-top: 16px;
}

.team__lightbox-panel-social i {
	color: #fff;
	font-size: 15px;
	margin-right: 8px;
}

@media all and (max-width: 1023px) {
	.team__lightbox-panel {
		padding: 48px;
		flex-wrap: wrap;
	}
}

@media all and (max-width: 767px) {
	.team__lightbox-panel {
		width: 100%;
		padding: 50px 15px;
		justify-content: space-between;
	}
}

.team__lightbox-panel-cols {
	display: flex;
	align-items: flex-start;
	padding-bottom: 40px;
	position: relative;
	margin-bottom: 20px;
	padding-right: 56px;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-cols {
		flex-direction: column;
		margin-bottom: 40px;
		padding-right: 0;
	}
}

.team__lightbox-panel-cols-photo {
	flex-basis: 275px;
	margin-right: 72px;
	flex-grow: 0;
	flex-shrink: 0;
}

@media all and (max-width: 1023px) {
	.team__lightbox-panel-cols-photo {
		margin-right: 40px;
	}
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-cols-photo {
		width: 160px;
		flex-basis: auto;
		margin-bottom: 36px;
	}
}

.team__lightbox-panel-cols-info {
	flex-basis: auto;
	flex-grow: 1;
	flex-shrink: 1;
	margin-right: 33px;
}

@media all and (max-width: 1023px) {
	.team__lightbox-panel-cols-info {
		margin-right: 56px;
	}
}

.team__lightbox-panel-image img {
	height: 352px;
	width: 100%;
	object-fit: cover;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-image img {
		height: 229px;
	}
}

.team__lightbox-panel-title {
	font-size: 20px;
	margin: 14px 0;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-title {
		font-size: 16px;
	}
}

.team__lightbox-panel-position {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.team__lightbox-panel-nav {
	border-top: 1px solid rgba(196, 196, 196, 0.4);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 20px 30px 20px;
	margin-top: auto;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-nav {
		padding: 45px 0;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		margin-bottom: 24px;
	}
}

.team__lightbox-panel-button {
	font-size: 20px;
	cursor: pointer;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button {
		font-size: 16px;
		display: flex;
		margin: 0 20px;
		flex-basis: 50%;
		flex-grow: 0;
		position: absolute;
	}
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button--prev {
		flex-direction: column;
		text-align: center;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		max-width: 1154px;
		position: relative;
		left: unset;
		bottom: unset;
	}
}

.team__lightbox-panel-button--prev i {
	margin-right: 62px;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button--prev i {
		margin-right: 0;
	}
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button--next {
		flex-direction: column-reverse;
		text-align: center;
		position: relative;
		right: unset;
		bottom: unset;
	}
}

.team__lightbox-panel-button--next i {
	margin-left: 62px;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button--next i {
		margin-left: 0;
	}
}

.team__lightbox-panel-button i {
	font-size: 24px;
	position: relative;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button i {
		font-size: 21px;
		margin-bottom: 44px;
		text-align: center;
	}
}

.team__lightbox-panel-button i:before {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.team__lightbox-panel-button i:after {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	height: 64px;
	width: 64px;
	border: 1px solid rgba(196, 196, 196, 0.2);
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

@media all and (max-width: 767px) {
	.team__lightbox-panel-button i:after {
		height: 56px;
		width: 56px;
	}
}

.team__lightbox-panel-button:hover i:before {
	color: #000;
}

.team__lightbox-panel-button:hover i:after {
	background-color: #fff;
}

.team__lightbox-panel-button.disabled {
	cursor: unset;
}

.team__lightbox-panel-button.disabled i {
	opacity: 0.2;
}

.team__lightbox-panel-button.disabled i:after {
	display: none;
}

.team__lightbox-panel-button.disabled:hover i {
	opacity: 0.2;
}

.team__lightbox-panel-button.disabled:hover i:before {
	color: #fff;
}

.error {
	margin-top: 212px;
	margin-bottom: 183px;
}

@media all and (max-width: 767px) {
	.error {
		margin-top: 70px;
		margin-bottom: 253px;
	}
}

.error-hero {
	margin-bottom: 60px;
}

@media all and (max-width: 767px) {
	.error-hero {
		margin-bottom: 42px;
	}
}

.error-hero__inner {
	border-top: 3px solid #000;
}

@media all and (max-width: 767px) {
	.error-hero__inner {
		border-top: none;
		border-bottom: 3px solid #000;
	}
}

.error-hero__heading {
	font-size: 40px;
	font-weight: 400;
	margin: 0;
	height: 64px;
	line-height: 1.4;
}

@media all and (max-width: 767px) {
	.error-hero__heading {
		font-size: 32px;
		height: 60px;
	}
}

.error-main__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media all and (max-width: 767px) {
	.error-main__flex {
		flex-wrap: wrap;
	}
}

.error-main__separator {
	width: 32px;
	height: 3px;
	background-color: #000;
	display: inline-block;
	margin: 107px 0 46px 0;
}

@media all and (max-width: 767px) {
	.error-main__separator {
		margin: 47px 0 35px 0;
	}
}

.error-main__image {
	flex-basis: 512px;
	flex-grow: 0;
	margin-top: 80px;
}

@media all and (max-width: 767px) {
	.error-main__image {
		flex-basis: 100%;
		margin-top: 0;
	}
}

@media all and (max-width: 767px) {
	.error-main__image img {
		max-width: 197px;
	}
}

.error-main__content {
	flex-basis: 512px;
	flex-grow: 1;
	text-align: right;
	max-width: 364px;
}

@media all and (max-width: 767px) {
	.error-main__content {
		flex-basis: 100%;
		margin-top: -40px;
	}
}

.error-main__content h2 {
	margin: 0;
	font-size: 112px;
	line-height: 1.25;
}

@media all and (max-width: 767px) {
	.error-main__content h2 {
		font-size: 32px;
		line-height: 1.32;
	}
}

.error-main .button {
	margin: 48px 0 29px 0;
	display: inline-block;
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	text-decoration: none;
	padding: 10px 33px;
	font-size: 16px;
	line-height: 2;
	min-width: 256px;
	font-weight: 500;
	text-align: center;
	transition: border, color, background-color 0.2s ease;
}

.error-main .button:hover {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
}

.error-main .pretty-link {
	display: inline-block;
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.375;
	text-decoration: none;
	position: relative;
	padding: 0 0 5px;
	transition: color 0.2s ease;
}

.error-main .pretty-link:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: #000;
	height: 1px;
	width: 100%;
	transition: background-color 0.2s ease;
}

.error-main .pretty-link:hover {
	color: #505050;
}

.error-main .pretty-link:hover:after {
	background-color: #505050;
}

.contact-hero {
	padding-top: 136px;
}

@media all and (max-width: 480px) {
	.contact-hero {
		padding-top: 90px;
	}
}

.contact-hero .container {
	position: relative;
	display: flex;
}

.contact-hero__heading {
	max-width: 928px;
	height: 344px;
	margin: 0;
}

@media all and (max-width: 1023px) {
	.contact-hero__heading {
		height: 147px;
	}
}

.contact-intro {
	padding-bottom: 128px;
}

@media all and (max-width: 767px) {
	.contact-intro {
		padding-bottom: 60px;
		margin-top: -14px;
	}
}

.contact-intro__flex {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.contact-intro__content {
	flex-basis: 544px;
	flex-grow: 0;
	font-size: 20px;
}

.contact-form .bs-callout.hidden {
	display: none;
}

.contact-form .container {
	background-color: #F9FAFB;
}

.contact-form__flex {
	padding: 0 40px 128px 46px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media all and (max-width: 640px) {
	.contact-form__flex {
		padding: 73px 0 61px;
	}
}

.contact-form__curve {
	flex-basis: 460px;
	flex-grow: auto;
}

@media all and (max-width: 767px) {
	.contact-form__curve {
		display: none;
	}
}

.contact-form__curve img {
	margin-top: -109px;
}

.contact-form__form {
	flex-basis: 544px;
	flex-grow: auto;
	padding-top: 128px;
}

@media all and (max-width: 767px) {
	.contact-form__form {
		padding-top: 0;
	}
}

.contact-form__form .gform_confirmation_wrapper {
	margin-bottom: 116px;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper {
		margin-bottom: 50px;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message {
	padding: 130px 100px 127px 75px;
	border-left: 1px solid rgba(0, 0, 0, 0.3);
	position: relative;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message {
		padding: 130px 25px 130px 25px;
		border-left: none;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body h3 {
	font-size: 40px;
	line-height: 1.4;
	margin: 0 0 25px 0;
	position: relative;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body h3 {
		font-size: 24px;
		margin-bottom: 21px;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body .confirmation__separator {
	height: 3px;
	width: 32px;
	background-color: #0ABAB5;
	margin-bottom: 41px;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body .confirmation__separator {
		margin-bottom: 44px;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body p {
	line-height: 1.37;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body p {
		margin-bottom: 77px;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body .gform_button {
	bottom: -78px;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body .gform_button {
		bottom: -60px;
		width: 100% !important;
	}
}

.contact-form__form .gform_confirmation_wrapper .gform_confirmation_message .confirmation__body .gform_button:hover {
	background: #000 !important;
	border-color: #FFF !important;
	color: #FFF !important;
}

.contact-form__form .gform_wrapper {
	margin: 0;
}

.contact-form__form .gform_wrapper .validation_error {
	display: none;
}

.contact-form__form .gform_wrapper form .gform_body {
	margin-right: -16px;
}

@media all and (max-width: 640px) {
	.contact-form__form .gform_wrapper form .gform_body {
		margin-right: 0;
	}
}

.contact-form__form .gform_wrapper form .gform_body .gfield_label {
	display: none;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_wrapper form .gform_body .ginput_container {
		margin-top: 0;
	}
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield {
	position: relative;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield {
		margin-top: 0;
		margin-bottom: 30px;
	}
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield .validation_message {
	padding: 5px 0;
	position: absolute;
	left: 0;
	bottom: -15px;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield:not(.gf_left_half) {
	padding-right: 0;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea {
	border: 1px solid #C4C4C4;
	padding: 16px 24px;
	color: #000;
	font-weight: 400;
	background-clip: padding-box;
	border-radius: 0;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:focus,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:active {
	outline: none;
	border: 2px solid #000000;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-moz-placeholder,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea::-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder,
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea {
	height: 104px;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select {
	height: 56px;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("./ui/chevron.png");
	background-size: 12px;
	background-position: 95% center;
	background-repeat: no-repeat;
	background-color: white;
	border: 1px solid #C4C4C4;
	padding: 16px 24px;
	color: rgba(0, 0, 0, 0.3);
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select:focus {
	color: black !important;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield ::placeholder {
	color: #000000;
	opacity: 0.5;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield a:not([class^="button"]) {
	font-size: 1em;
	padding-bottom: 0;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield a:not([class^="button"]):after {
	display: none;
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield.gfield_error {
	background: none;
	margin-bottom: 0 !important;
	border-top: none;
	border-bottom: none;
	padding-bottom: 10px;
	padding-top: 0;
	max-width: calc(50% - 9px) !important;
}

@media all and (max-width: 640px) {
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield.gfield_error {
		max-width: 100% !important;
	}
}

.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: none !important;
}

.contact-form__form .gform_wrapper form .gform_footer {
	padding: 0;
	margin: 48px 0 0 0;
}

@media all and (max-width: 767px) {
	.contact-form__form .gform_wrapper form .gform_footer {
		margin-top: 60px;
	}
}

.contact-form__form .gform_wrapper form .gform_footer .gform_button {
	margin: 0;
	float: right;
	appearance: none;
	-webkit-appearance: none;
	background-color: #000;
	color: #fff;
	padding: 12px 33px;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	border: 1px solid transparent;
	border-radius: 0;
	min-width: 256px;
	text-transform: none;
	text-align: center;
}

@media all and (max-width: 640px) {
	.contact-form__form .gform_wrapper form .gform_footer .gform_button {
		display: block;
	}
}

.contact-form__form .gform_wrapper form .gform_footer .gform_button:hover {
	background: #FFF;
	border-color: #000;
	color: #000;
}

.contact-offices {
	margin-top: 258px;
	margin-bottom: 132px;
}

@media all and (max-width: 767px) {
	.contact-offices {
		margin-top: 84px;
		margin-bottom: 78px;
	}
}

.contact-offices__inner {
	border-top: 3px solid #000;
}

.contact-offices__inner h3 {
	margin: 22px 0 130px 0;
}

@media all and (max-width: 767px) {
	.contact-offices__inner h3 {
		margin: 25px 0 75px 0;
	}
}

.contact-offices__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: -10px;
}

@media all and (max-width: 480px) {
	.contact-offices__flex {
		flex-wrap: wrap;
		margin: 0;
	}
}

.contact-offices__single-office {
	flex-basis: calc(33.33% - 20px);
	margin: 10px;
}

@media all and (max-width: 480px) {
	.contact-offices__single-office {
		flex-basis: 100%;
		margin: 0 0 75px 0;
	}
}

.contact-offices__single-office p {
	line-height: 1.5;
	margin: 10px 0 0;
}

.contact-press {
	margin-bottom: 256px;
}

@media all and (max-width: 767px) {
	.contact-press {
		margin-bottom: 140px;
	}
}

.contact-press__inner {
	border-top: 3px solid #000;
}

.contact-press__inner h3 {
	margin: 22px 0 128px 0;
}

@media all and (max-width: 767px) {
	.contact-press__inner h3 {
		margin-top: 24px;
	}
}

.contact-press__inner .button {
	position: relative;
	display: inline-flex;
	padding: 0 0 5px;
	text-decoration: none;
	font-size: 16px;
	color: #000;
	line-height: 1.2;
	font-weight: 600;
	cursor: pointer;
	transition: .2s ease;
}

.contact-press__inner .button:hover {
	color: #505050;
}

.contact-press__inner .button:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	content: '';
	background: #000;
	transition: .2s ease;
}

main .gform_confirmation_wrapper {
	position: relative;
}

main .gform_confirmation_wrapper a:not([class^="button"]) {
	min-width: 256px;
	padding: 12px 33px;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	background: none;
	border: 1px solid #C4C4C4 !important;
	color: #131313 !important;
	float: right;
	display: block;
	text-align: center;
	position: absolute;
	bottom: -60px;
	right: -35px;
	text-decoration: none;
}

@media all and (max-width: 767px) {
	main .gform_confirmation_wrapper a:not([class^="button"]) {
		bottom: -145px;
		right: 50%;
		width: calc(100% + 50px);
		transform: translateX(50%);
	}
}

main .gform_confirmation_wrapper a:not([class^="button"]):after {
	display: none;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Breakpoints (for JS)
--------------------------------------------- */
body:after {
	position: absolute;
	left: -1337px;
	visibility: hidden;
	user-select: none;
	pointer-events: none;
	opacity: 0;
	font-size: 0;
	z-index: -1;
}

/* my css */
/* h1.home-hero__heading {opacity: 1;visibility: inherit;} */
section.home-video_top {padding-top: 80px;max-height: 668px;}
.site-header__branding {width: 80px;}
.home-cta {margin-top: 0;}

/* my css */

@media all and (min-width: 1600px) {
	body:after {
		content: "desktop";
	}
}

@media all and (max-width: 1599px) {
	body:after {
		content: "desktop";
	}
}

@media all and (max-width: 1023px) {
	body:after {
		content: "tablet";
	}
}

@media all and (max-width: 767px) {
	body:after {content: "mobile";}
	section.home-video_top {padding-top: 0; max-height: 360px;}
	.home-video__mobile {display: block;padding-bottom: 0;}
}



@media all{
	.contact-form__form a{background-color:transparent;}
	.contact-form__form input,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}
	.contact-form__form input{overflow:visible;}
	.contact-form__form select{text-transform:none;}
	.contact-form__form [type="submit"]{-webkit-appearance:button;}
	.contact-form__form [type="submit"]::-moz-focus-inner{border-style:none;padding:0;}
	.contact-form__form [type="submit"]:-moz-focusring{outline:1px dotted ButtonText;}
	.contact-form__form textarea{overflow:auto;}
	.contact-form__form *,*::before,*::after{box-sizing:inherit;}
	.contact-form__form input,select,textarea{color:#000;font-family:"Gellix", sans-serif;font-size:1rem;line-height:1.5;-webkit-font-smoothing:antialiased;}
	@media all and (max-width: 767px){
	.contact-form__form input,select,textarea{line-height:1.375;}
	}
	.contact-form__form p{margin-bottom:1.5em;}
	.contact-form__form ul{margin:0 0 1.5em 3em;}
	.contact-form__form ul{list-style:disc;}
	.contact-form__form iframe{max-width:100%;}
	.contact-form__form a{color:#000;}
	.contact-form__form input[type="submit"]{border:1px solid;border-color:#ccc #ccc #bbb;border-radius:3px;background:#e6e6e6;color:rgba(0, 0, 0, 0.8);line-height:1;padding:0.6em 1em 0.4em;}
	.contact-form__form input[type="submit"]:hover{border-color:#ccc #bbb #aaa;}
	.contact-form__form input[type="submit"]:active,input[type="submit"]:focus{border-color:#aaa #bbb #bbb;}
	.contact-form__form .button{-webkit-appearance:none;background:none;font-size:16px;font-size:1rem;line-height:1.2;font-weight:600;cursor:pointer;transition:.2s ease;display:inline-flex;width:auto;border-radius:0;}
	.contact-form__form input[type="text"],textarea{color:#000;border:1px solid #ccc;border-radius:0px;padding:16px 24px;outline:none;height:56px;font-weight:500;}
	.contact-form__form input[type="text"]:focus,textarea:focus{color:#000;border-color:#000;border-width:2px;}
	.contact-form__form input[type="text"]::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#C4C4C4;}
	.contact-form__form input[type="text"]:-moz-placeholder,textarea:-moz-placeholder{color:#C4C4C4;}
	.contact-form__form input[type="text"]::-moz-placeholder,textarea::-moz-placeholder{color:#C4C4C4;}
	.contact-form__form input[type="text"]:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#C4C4C4;}
	.contact-form__form input[type="text"]:disabled{border-color:#F2F0ED;color:rgba(196, 196, 196, 0.5);background:white;height:56px;}
	.contact-form__form textarea{width:100%;}
	.contact-form__form .gform_wrapper form .gform_body{margin-right:-16px;}
	@media all and (max-width: 640px){
	.contact-form__form .gform_wrapper form .gform_body{margin-right:0;}
	}
	.contact-form__form .gform_wrapper form .gform_body .gfield_label{display:none;}
	@media all and (max-width: 767px){
	.contact-form__form .gform_wrapper form .gform_body .ginput_container{margin-top:0;}
	}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield{position:relative;}
	@media all and (max-width: 767px){
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield{margin-top:0;margin-bottom:30px;}
	}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield:not(.gf_left_half){padding-right:0;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea{border:1px solid #C4C4C4;padding:16px 24px;color:#000;font-weight:400;background-clip:padding-box;border-radius:0;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:focus,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:active{outline:none;border:2px solid #000000;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder{color:rgba(0, 0, 0, 0.5);}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-moz-placeholder,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:-moz-placeholder{color:rgba(0, 0, 0, 0.5);}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea::-moz-placeholder{color:rgba(0, 0, 0, 0.5);}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder,.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea:-ms-input-placeholder{color:rgba(0, 0, 0, 0.5);}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield textarea{height:104px;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select{height:56px;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select{appearance:none;-webkit-appearance:none;background-image:url("https://b1.com/wp-content/themes/b1-2021/ui/chevron.png");background-size:12px;background-position:95% center;background-repeat:no-repeat;background-color:white;border:1px solid #C4C4C4;padding:16px 24px;color:rgba(0, 0, 0, 0.3);}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield select:focus{color:black!important;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield ::placeholder{color:#000000;opacity:0.5;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield a:not([class^="button"]){font-size:1em;padding-bottom:0;}
	.contact-form__form .gform_wrapper form .gform_body .gform_fields .gfield a:not([class^="button"]):after{display:none;}
	.contact-form__form .gform_wrapper form .gform_footer{padding:0;margin:48px 0 0 0;}
	@media all and (max-width: 767px){
	.contact-form__form .gform_wrapper form .gform_footer{margin-top:60px;}
	}
	.contact-form__form .gform_wrapper form .gform_footer .gform_button{margin:0;float:right;appearance:none;-webkit-appearance:none;background-color:#000;color:#fff;padding:12px 33px;font-size:16px;line-height:2;font-weight:500;border:1px solid transparent;border-radius:0;min-width:256px;text-transform:none;text-align:center;}
	@media all and (max-width: 640px){
	.contact-form__form .gform_wrapper form .gform_footer .gform_button{display:block;}
	}
	.contact-form__form .gform_wrapper form .gform_footer .gform_button:hover{background:#FFF;border-color:#000;color:#000;}
	}
	
	@media all{
	.contact-form__form .gform_legacy_markup_wrapper form{text-align:left;max-width:100%;margin:0 auto;}
	.contact-form__form .gform_legacy_markup_wrapper *,.gform_legacy_markup_wrapper :after,.gform_legacy_markup_wrapper :before{box-sizing:border-box!important;}
	.contact-form__form .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){font-size:inherit;font-family:inherit;padding:5px 4px;letter-spacing:normal;}
	.contact-form__form .gform_legacy_markup_wrapper textarea{font-size:inherit;font-family:inherit;letter-spacing:normal;padding:6px 8px;line-height:1.5;resize:none;}
	.contact-form__form .gform_legacy_markup_wrapper select{line-height:1.5;}
	.contact-form__form .gform_legacy_markup_wrapper ul.gform_fields{margin:0!important;list-style-type:none;display:block;}
	.contact-form__form .gform_legacy_markup_wrapper ul{text-indent:0;}
	.contact-form__form .gform_legacy_markup_wrapper form li,.gform_legacy_markup_wrapper li{margin-left:0!important;list-style-type:none!important;list-style-image:none!important;list-style:none!important;overflow:visible;}
	.contact-form__form .gform_legacy_markup_wrapper ul li.gfield{clear:both;}
	.contact-form__form .gform_legacy_markup_wrapper ul li:after,.gform_legacy_markup_wrapper ul li:before,.gform_legacy_markup_wrapper ul.gform_fields{padding:0;margin:0;overflow:visible;}
	.contact-form__form .gform_legacy_markup_wrapper select{font-size:inherit;font-family:inherit;letter-spacing:normal;}
	.contact-form__form .gform_legacy_markup_wrapper select option{padding:2px;display:block;}
	.contact-form__form .gform_legacy_markup_wrapper label.gfield_label{font-weight:700;font-size:inherit;}
	.contact-form__form .gform_legacy_markup_wrapper .top_label .gfield_label{display:-moz-inline-stack;display:inline-block;line-height:1.3;clear:both;}
	body .gform_legacy_markup_wrapper .top_label div.ginput_container{margin-top:8px;}
	.contact-form__form .gform_legacy_markup_wrapper input.large,.gform_legacy_markup_wrapper select.large{width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper textarea.small{height:80px;width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .gfield_description{font-size:.813em;line-height:inherit;clear:both;font-family:inherit;letter-spacing:normal;}
	.contact-form__form .gform_legacy_markup_wrapper .gfield_description{padding:0 16px 0 0;}
	.contact-form__form .gform_legacy_markup_wrapper .field_description_below .gfield_description{padding-top:16px;}
	.contact-form__form .gform_legacy_markup_wrapper .gfield_description{width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .gfield_required{color:#790000;margin-left:4px;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_footer{padding:16px 0 10px 0;margin:16px 0 0 0;clear:both;width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_footer input.button,.gform_legacy_markup_wrapper .gform_footer input[type=submit]{font-size:1em;width:100%;margin:0 0 16px 0;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_hidden,.gform_legacy_markup_wrapper input.gform_hidden,.gform_legacy_markup_wrapper input[type=hidden]{display:none!important;max-height:1px!important;overflow:hidden;}
	.contact-form__form .gform_legacy_markup_wrapper li.gfield_html{max-width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .gfield_html.gfield_no_follows_desc{margin-top:10px;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_validation_container,.gform_validation_container,body .gform_legacy_markup_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,body .gform_legacy_markup_wrapper li.gform_validation_container,body .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gform_validation_container{display:none!important;position:absolute!important;left:-9000px;}
	body .gform_legacy_markup_wrapper ul li.gfield{margin-top:16px;padding-top:0;}
	body .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html{line-height:inherit;}
	@media only screen and (max-width:641px){
	.contact-form__form .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]){line-height:2;min-height:2rem;}
	.contact-form__form .gform_legacy_markup_wrapper textarea{line-height:1.5;}
	}
	@media only screen and (min-width:641px){
	.contact-form__form .gform_legacy_markup_wrapper .gform_body{width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .top_label input.large,.gform_legacy_markup_wrapper .top_label select.large{width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper textarea.small{height:80px;width:100%;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_footer input.button,.gform_legacy_markup_wrapper .gform_footer input[type=submit]{display:-moz-inline-stack;display:inline-block;}
	.contact-form__form .gform_legacy_markup_wrapper .gform_footer input.button,.gform_legacy_markup_wrapper .gform_footer input[type=submit]{font-size:1em;width:auto;margin:0 16px 0 0;}
	.contact-form__form .gform_legacy_markup_wrapper ul.gform_fields li.gfield{padding-right:16px;}
	}
	}
	/*! CSS Used from: https://b1.com/wp-content/plugins/gravityforms/legacy/css/readyclass.min.css?ver=2.5.14 ; media=all */
	@media all{
	@media only screen and (min-width:641px){
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_left_half,.gform_wrapper .top_label li.gfield.gf_right_half{display:-moz-inline-stack;display:inline-block;vertical-align:top;width:50%;padding-right:16px;float:none;}
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container),.gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container){width:100%!important;margin:8px 0 0 0;padding-left:0;padding-right:0;}
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_left_half:before{content:"";display:block;clear:both;}
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_right_half:after{content:"";display:table;clear:both;}
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) input.large,.gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.large{width:100%;}
	.contact-form__form .gform_wrapper .top_label li.gfield.gf_left_half+li.gfield,.gform_wrapper .top_label li.gfield.gf_right_half+li.gfield{clear:both;}
	}
	}
	/*! CSS Used from: https://b1.com/wp-content/plugins/gravityforms/legacy/css/browsers.min.css?ver=2.5.14 ; media=all */
	@media all{
	.contact-form__form .gform_legacy_markup_wrapper.gf_browser_chrome select{padding:2px 0 2px 3px;}
	.contact-form__form .gform_legacy_markup_wrapper.gf_browser_chrome ul li:after,.gform_legacy_markup_wrapper.gf_browser_chrome ul li:before{content:none;}
	.contact-form__form .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield select{margin-left:1px;}
	}
	

	.site-header__branding svg {margin-left: -9px;}
	.site-header__branding a, .site-header__branding img, .site-header__branding svg{max-width: 120px;}
	.elementor-widget:not(:last-child) {margin-bottom: 0 !important;}
	section.home-subs {margin-top: 0;}
	select#select_type {width: 100%;height: 56px;}
		.home-hero h1.home-hero__heading {
			opacity: 1;
			visibility: inherit;
		}