/*
	Read Me
	
	* Mobile First
		Read about mobile first & different responsive design methods: http://goo.gl/Zf0i7R
	
	*	Uses rem units with px fallback
		Read about rems: http://goo.gl/RRSXLH & http://goo.gl/XRtlMf & http://caniuse.com/#feat=rem
		
	Colors:
		
		"Black": #252528 (headings, links)
		Dark gray: #5d5d62 (text)
		Light gray: #ecf0f1 (background)
		Gray: #bdc3c7 (borders)
		
		Light red: #ff7365 (buttons, nav link hover/active)
		Darker red: #f35847 (button hovers)
		Pale red: #fd9297
		Bright Cyan: #00ffff
		Dark cyan: #9dd4d2
		Light blue: #97d8e8 (for dark cyan background hovers)
	
*/

/*
	CSS Reset, customized
	normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css
*/
img,legend{border:0}legend,td,th{padding:0}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:400}dfn{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}object{width:100%}

/* Fonts */

@font-face {
	font-family: 'Unibody 8 Pro';
	font-style: normal;
	font-weight: 400;
	src: local(''),
	url('../fonts/Unibody8Pro-Regular.otf') format('opentype');
}

@font-face {
	font-family: 'Unibody 8 Pro';
	font-style: italic;
	font-weight: 400;
	src: local(''),
	url('../fonts/Unibody8Pro-RegularItalic.otf') format('opentype');
}

@font-face {
	font-family: 'Unibody 8 Pro';
	font-style: bold;
	font-weight: 800;
	src: local(''),
	url('../fonts/Unibody8Pro-Bold.otf') format('opentype');
}



/*
	General
*/

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 62.5% = 10px which makes for easier rem-to-pixel conversions
	ex: 1.4rem = 14px */
html {
	font-size: 62.5%;
}

body {
	font-family: degular, sans-serif;
	font-size: 21px;
	line-height: 1.33;
	color: #ffffff;
	background-color: #161112;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;

	/* Improves appearance of @font-faces */
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
	/* Removes extra space for descenders below non-display: block images
		http://stackoverflow.com/questions/7774814/remove-white-space-below-image */
	vertical-align: bottom;
}

/* Email address images */
.email-address {
	vertical-align: middle;
	height: 16px;
}

/*
	Links
*/

a {
	color: #77EDC6;
	text-decoration: underline;
}

a,
a:hover,
a:focus {
	-webkit-transition: color .17s ease-in-out;
	-moz-transition: color .17s ease-in-out;
	-ms-transition: color .17s ease-in-out;
	-o-transition: color .17s ease-in-out;
	transition: color .17s ease-in-out;
}

/*
	Typography
*/

/* Reset heading elements; don't use them as style selectors */
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	line-height: 1.17;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

.heading-1,
.heading-2 {
	font-size: 40px;
}

@media(min-width: 1000px) {
	.heading-1,
	.heading-2 {
		font-size: 48px;
	}
}

.heading-1 {
	margin-bottom: 30px;
}

.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading h6 {
	font-family: Arial Black, sans-serif;
}

p {
	margin-bottom: 1rem;
}

.sub-heading {
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
	margin-top: 28px;
	margin-bottom: 10px;
}

.callout-heading {
	font-size: 3rem;
	font-weight: normal;
	color: #252528;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.column-heading {
	font-family: Muli, Open Sans, Helvetica, Arial, sans-serif;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #252528;
	margin-bottom: 10px;
}

.tag-heading {
	font-family: Muli, Open Sans, Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-color: #9dd4d2;
	margin-bottom: 20px;
	color: #252528;
	display: table;
	padding: 5px 10px;
}

.large-quote {
	position: relative;
}

.large-quote:after {
	content: '\201C';
	display: block;
	position: absolute;
	top: 4px;
	left: -18px;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-style: italic;
	color: #77EDC6;
	font-size: 24px;
}

@media(min-width: 1000px) {
	.large-quote:after {
		font-size: 50px;
		top: -5px;
		left: -35px;
	}
}


.pixel-block-line {
	display: block;
	width: 132px;
	height: 10px;
	background-image: url('/assets/images/pixel-block-line.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 150px;
	margin: 15px 0 30px 0;
}

.s__center .pixel-block-line {
	margin: 15px auto 30px auto;
}

@media(min-width: 1000px) {
	.hide-desktop {
		display: none;
	}
}

@media(max-width: 999px) {
	.hide-mobile {
		display: none;
	}
}


/*
    Buttons
*/

.button {
	/* Reset */
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-font-smoothing: antialiased;
	border: none;
	text-shadow: none;
	margin: 0;

	/* Basic style */
	text-align: center;
	color: #fff;
	font-size: 2rem;
	background-color: #02C689;
	border-radius: 50px;
	padding: 20px 10px;
	display: inline-block;
}

.button:hover,
.button:focus {
	background-color: #02C689;
}

a.button,
a.button:hover,
a.button:focus {
	color: #fff;
	text-decoration: none;
}

.button:hover,
.button:focus,
.button {
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-ms-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.button.button-primary {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
	padding: 15px 30px;
	background-color: #02C689;
	font-weight: 600;
	font-size: 24px;
	text-shadow: 0px 1px 5px #36616495;
	z-index: 3;
}

.button.button-primary:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 50px;
	z-index: 2;
	box-shadow: -3px 0px 0px #CB401C80;
}

.button.button-primary:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0px;
	height: 100%;
	width: 100%;
	box-shadow: 3px 0px 0px #77EDC6;
	border-radius: 50px;
	z-index: 0;
}

.button-text {
	position: relative;
	z-index: 2;
}

/*
    Button Sizes
*/

/*.button__medium {}*/

/*
    Button Colors

.button__gray {}*/


/*
	Reusable helper classes

	Prefixes:
	* .s__ for style
	* .t__ for typography
	* .l__ for layout

*/

.s__margin-bottom { margin-bottom: 30px; }
.s__margin-top { margin-top: 30px; }
.s__margin-left { margin-left: 30px; }
.s__margin-right { margin-right: 30px; }

.s__margin-none { margin: 0; }
.s__margin-bottom-none { margin-bottom: 0; }
.s__margin-top-none { margin-top: 0; }
.s__margin-left-none { margin-left: 0; }
.s__margin-right-none { margin-right: 0; }

.s__padding-bottom { padding-bottom: 30px; }
.s__padding-top { padding-top: 30px; }
.s__padding-left { padding-left: 20px; }
.s__padding-right { padding-right: 20px; }

.s__padding-none { padding: 0; }
.s__padding-bottom-none { padding-bottom: 0; }
.s__padding-top-none { padding-top: 0; }
.s__padding-left-none { padding-left: 0; }
.s__padding-right-none { padding-right: 0; }

.s__left { text-align: left; }
.s__center { text-align: center; }
.s__right { text-align: right; }

.t__light { font-weight: lighter; }
.t__normal { font-weight: normal; }
.t__bold { 	font-weight: 800; }
.t__italic {  font-weight: 400; font-style: italic; }

.t__small { font-size: 1.6rem; }
.t__uppercase { text-transform: uppercase; }

.t__color-white { color: #fff; }

.l__align-top { vertical-align: top; }
.l__align-middle { vertical-align: middle; }
.l__align-bottom { vertical-align: bottom; }

.l__relative { position: relative; }

.link__external {
	position: relative;
	display: inline-block;
}

.link__external:after {
	position: absolute;
	top: -11px;
	content: '\2197';
	display: inline-block;
	font-family: monospace;
	font-size: 24px;
	text-decoration: none;
}

@media(min-width: 1000px) {
	.link__external:after {
		top: -13px;
		font-size: 30px;
	}
}


/*
	Lists
*/

.list__reset {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list__basic {
	margin: 30px 0 30px 20px;
	padding: 0;
}

.list__basic li {
	margin-bottom: 10px;
	line-height: 1.5;
}

.list__basic li:last-of-type {
	margin-bottom: 0;
}


/*
	Tables
*/

.table {
	display: table;
}

.table th,
.table td {
	border: 1px solid #ffffff;
	padding: 5px;
}

.table thead {
	font-weight: 700;
}


/*
	Notifications
*/

.notification {
	border: 1px solid #04477A;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}

.notification-top {
	margin-bottom: 40px;
}

.notification-top__link {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: #04477A26 no-repeat padding-box;
	text-decoration: none;
	padding: 8px 12px;
	transition: all .25s;
}

.notification-top__link:hover,
.notification-top__link:focus {
	background: #04477A40 no-repeat padding-box;
	box-shadow: 0 0 20px rgb(39 102 174 / 50%);
	text-decoration: underline;
	transition: all .25s;
}

@media(min-width: 400px) {
	.notification-top__link {
		padding: 12px 20px;
	}
}

.notification-top__link--text {
	position: relative;
	top: 1px;
}

.notification-top__link--text:after {
	content: '>';
	position: absolute;
	top: -1px;
	right: -20px;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 16px;
	color: #77EDC6;
}

.notification-cta {
	position: relative;
	background-color: #161112;
	width: 100%;
	max-width: 794px;
	margin: 40px auto;
}

.notification-cta__link--heading {
	display: block;
	color: #77DBF2;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 5px;
}

.notification-cta__link {
	display: block;
	padding: 24px 72px 20px 20px;
	color: #ffffff;
	font-weight: 800;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
	transition: all .25s;
}

.notification-cta__link:hover,
.notification-cta__link:focus {
	background: #04477A40 no-repeat padding-box;
	box-shadow: 0 0 20px rgb(39 102 174 / 50%);
	transition: all .25s;
}

.notification-cta__link:after {
	content: '>';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 35px;
	color: #77DBF2;
}

@media (min-width: 700px) {
	.notification-cta__link--heading {
		font-size: 18px;
	}

	.notification-cta__link {
		padding: 39px 72px 39px 108px;
		font-size: 28px;
	}

	.notification-cta__link:before {
		content: '';
		position: absolute;
		background-image: url('/assets/images/anti-abuse-cover-outline.svg');
		background-repeat: no-repeat;
		top: 24px;
		left: 28px;
		height: 100%;
		width: 60px;
	}
}


	/*
        Badges
    */

.badge {
	display: inline-block;
	background: #04477A;
	border-radius: 5px;
	padding: 3px 7px 1px;
	margin-right: 10px;
	color: #77DBF2;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
}


/*
	Layout
*/

.container,
.container-lg {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.container p {
	margin-bottom: 30px;
}

.container p:last-of-type,
.container p:only-of-type {
	margin-bottom: 0;
}

@media (min-width: 1000px) {
	.container {
		max-width: 1000px;
	}
	.container-lg {
		max-width: 1200px;
	}
}

.main-content {
	background-color: #161112;
	padding: 30px 20px;
	flex-grow: 1;
}

@media(min-width: 1040px) {
	.main-content {
		padding: 50px 0;
	}
}

@media(min-width: 1000px) {
	.columns {
		display: flex;
	}

	.break {
		flex-basis: 100%;
		height: 0;
	}
}

.keep-together {
	white-space: nowrap;
}


/*
	Header
*/

.site-header {
	background-color: #161112;
	padding: 24px 20px;
	border-bottom: 1px solid #04477A;
	flex: 0 1 auto;
}

@media(min-width: 700px) {
	.site-header {
		padding: 24px 30px;
	}
}

@media(min-width: 1060px) {
	.site-header {
		padding: 40px 0;
	}
}

.home-page .site-header {
	border-bottom: 0;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	width: 85px;
	line-height: 0;
}

@media(min-width: 1000px) {
	.header-logo {
		width: 140px;
	}
}

.header-logo .site-logo {
	height: auto;
}


/*
	Nav
*/

.nav-toggle-button {
	font-family: degular, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1;
	letter-spacing: .6px;
}

.mobile-nav__open {
	background-color: transparent;
	border: 0;
	color: #77EDC6;
	padding: 0;
	display: inline-block;
	text-transform: uppercase;
	margin-right: 8px;
	height: 18px;
}

.mobile-nav__open:focus {
	outline: none;
}

.mobile-nav__open img {
	height: 18px;
}

.wf-loading .mobile-nav__open span span {
	font-size: 18px;
	line-height: .75;
}

.mobile-nav__close {
	position: absolute;
	top: 0;
	height: 35px;
	background-color: transparent;
	color: #FFFFFF;
	border: 0;
	margin-right: 5px;
	z-index: 35;
	display: flex;
	align-items: center;
	fill: #A3ACBE;
	left: auto;
	right: 10px;
	width: auto;
	margin-top: 20px;
}

.mobile-nav__close:focus {
	outline: none;
}

@media(min-width: 1000px) {
	.mobile-nav__close {
		top: 26px;
		right: 0;
		margin-right: 0;
	}
}

.nav-close-button-text {
	display: inline-block;
	margin-right: 5px;
	color: #FFFFFF;
	text-transform: uppercase;
	text-decoration: underline;
}

.mobile-nav__close svg {
	width: 17px;
	height: 17px;
	fill: #FFFFFF;
}

#nav-expand-button.mobile-nav__close.expand {
	display: none;
}

.nav {
	position: fixed;
	top: 0;
	right: 0;
	min-width: 350px;
	width: 100%;
	height: 100%;
	z-index: 30;
	-webkit-transform: translateX(800px);
	-ms-transform: translateX(800px);
	transform: translateX(800px);
	transition: transform 0.5s ease-in-out;
}

.nav-menu-background {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #04477A;
	box-shadow: 0px 0px 40px #111F2F;
}

@media(min-width: 700px) {
	.nav-menu-background {
		width: 200%;
		left: 50%;
	}
}

.nav.expand {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	transition: transform 0.5s ease-in-out;
}

@media(min-width: 701px) {
	.nav {
		-webkit-transform: translateX(1200px);
		-ms-transform: translateX(1200px);
		transform: translateX(1200px);
	}
}

@media(min-width: 1101px) {
	.nav {
		-webkit-transform: translateX(1800px);
		-ms-transform: translateX(1800px);
		transform: translateX(1800px);
	}
}

@media(min-width: 1701px) {
	.nav {
		-webkit-transform: translateX(2800px);
		-ms-transform: translateX(2800px);
		transform: translateX(2800px);
	}
}

.nav-menu-container {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

@media(min-width: 1000px) {
	.nav-menu-container {
		left: 0;
	}

	.nav-menu-contents {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
}

.expand .nav-menu-container {
	z-index: 20;
}

.nav-menu {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 100px 22px 0 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s;
	list-style: none;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 30;
}

@media(min-width: 501px) {
	.nav-menu {
		width: 50%;
		left: 50%;
	}
}

@media(min-width: 1000px) {
	.nav-menu {
		left: 50%;
		width: 50%;
		padding: 100px 10px 0 0;
	}
}

.expand .nav-menu {
	opacity: 1;
	transition: opacity .5s;
}


.nav-menu a,
.nav-menu .btn {
	display: block;
	width: 100%;
	color: #FFFFFF;
	font-size: 28px;
	font-weight: 600;
	padding: 6px 0;
	text-align: left;
	text-decoration: none;
}

.nav-menu a.link__external {
	padding: 6px 30px 0 0;
}

.nav-menu .link__external:after {
	top: 11px;
	right: 0;
	font-size: 24px;
	font-family: degular, sans-serif;
}

.nav-menu__item {
	margin: 12px 0;
}

.nav-menu__link:hover,
.nav-menu__link:focus {
	color: #77EDC6;
	text-decoration: underline;
}

.nav-modal__container {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(22, 17, 18, .75);
	padding-right: 10px;
	padding-left: 10px;
	z-index: -1;
	transition: .15s;
}

@media (min-width: 720px) {
	.nav-modal__container {
		padding-right: 0;
		padding-left: 0;
	}
}

.nav-modal__container.visible {
	animation: navVisible .25s;
	z-index: 25;
}

.nav-modal__container.invisible {
	animation: navInvisible .25s;
	z-index: -1;
}


/*
	Footer
*/

.site-footer {
	position: relative;
	color: #ffffff;
	background-color: #161112;
	box-shadow: 0px 10px 20px #111F2F80;
	padding: 0 20px;
	z-index: 10;
}

@media(min-width: 1330px) {
	.site-footer {
		padding: 0 100px;
	}
}

@media(max-width: 1329px) {
	.site-footer {
		text-align: center;
	}
}

.site-footer .columns {
	display: block;
}

@media(min-width: 1330px) {
	.site-footer .columns {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

@media(max-width: 1329px) {
	.footer-logo {
		padding-top: 40px;
		border-top: 1px solid #04477A;
		width: 100%;
	}
}

.footer-logo,
.footer-copyright,
.footer-nav {
	display: block;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-style: italic;
	vertical-align: top;
}

.footer-logo,
.footer-copyright {
	font-size: 16px;
}

.footer-logo a,
.footer-copyright a {
  width: 140px;
  height: auto;
}

@media(min-width: 1330px) {
	.footer-logo a,
	.footer-copyright a {
		display: block;
	}
}

@media(min-width: 1330px) {
	.footer-nav,
	.footer-copyright {
		width: 40%;
	}
}

@media(max-width: 1329px) {
	.footer__nav-menu {
		margin-top: 48px;
	}
}

@media(min-width: 1330px) {
	.footer__nav-menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
}

.footer-nav .nav-link {
	color: #ffffff;
}

.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus {
	color: #77EDC6;
	text-decoration: underline;
}

.site-footer__upper {
	padding: 40px 0 46px;
	border-bottom: 1px solid #04477A;
}

@media(max-width: 1329px) {
	.site-footer__upper {
		padding: 10px 0 46px 0;
	}
}

.site-footer__upper .footer-nav {
	font-size: 16px;
}

.site-footer__upper .footer-nav a {
	text-decoration: none;
}

.site-footer__lower {
	padding: 40px 0 46px;
}

@media(min-width: 1330px) {
	.site-footer__lower {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 36px 0;
	}

}

.site-footer__lower .footer-nav {
	font-size: 13px;
}

@media(max-width: 1329px) {
	.site-footer__lower .footer-nav {
		font-size: 13px;
	}

	.footer-nav .footer-nav-item:not(:last-of-type) {
		margin-bottom: 36px;
	}

	.site-footer__lower .link__external:after {
		top: -8px;
	}
}

@media only screen and (min-width: 1330px) {
	.footer-nav .footer-nav-item {
		flex: 1 0 auto;
		margin-bottom: 0;
		margin-left: 40px;
		text-align: right;
	}

	.site-footer__lower .link__external {
		padding-right: 20px;
	}
}

.site-footer__out {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 33px;
	font-weight: bold;
	padding: 35px 0;
	background-color: #04477A;
	color: #77EDC6;
	text-align: center;
}

@media only screen and (max-width: 400px) {

	.footer-logo-copyright,
	.footer-nav {
		display: block;
		text-align: center;
		width: 100%;
	}

	.footer-logo-copyright a {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-nav {
		margin-top: 60px;
	}
}


/*
	Social Media
*/

.social-media {
	display: block;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 35;
	padding: 0 15px;
	background-color: rgba(4,71,122,.5);
	box-shadow: 0px 0px 10px #111F2F80;
	border-radius: 10px 0px 0px 0px;
}

.social-media__list {
	text-align: center;
}

.social-media__list--link {
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
}

.social-media__list--link img {
	height: 30px;
	width: 30px;
}

@media(max-width: 600px) {
	.social-media {
		padding: 0 10px 10px;
	}

	.social-media__list--link {
		display: block;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.social-media__list--link img {
		height: 24px;
		width: 24px;
	}
}

@media(max-width: 400px) {
	.social-media__list--link {
		display: block;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.social-media__list--link img {
		height: 18px;
		width: 18px;
	}
}

.social-media__list--link img {
	max-width: 100%;
}


/* Page with Sidebar */

.page-with-sidebar .content {
	font-size: 18px;
}

.page-with-sidebar .content p {
	line-height: 1.33;
	margin-bottom: 12px;
}

@media(min-width: 1000px) {
	.page-with-sidebar .columns > div {
		flex: 1 1 auto;
	}

	.page-with-sidebar .content {
		width: 75%;
	}

	.page-with-sidebar .sidebar {
		width: 25%;
		margin-left: 50px;
	}
}

@media(max-width: 999px) {
	.page-with-sidebar .sidebar {
		margin-top: 40px;
		padding-top: 28px;
		border-top: 1px solid #04477A;
	}
}


/* Sidebar Menu */

.sidebar-menu {
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}

.sidebar-menu__heading {
	font-family: degular, sans-serif;
	font-size: 21px;
	letter-spacing: 1.1px;
	color: #A7A9AC;
	margin-bottom: 12px;
}

.sidebar-menu__item {
	position: relative;
	padding-left: 20px;
	font-size: 18px;
	margin-bottom: 10px;
}

.sidebar-menu__item:before {
	content: '>';
	position: absolute;
	top: 3px;
	left: 0;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 16px;
	color: #77EDC6;
}

.sidebar-menu__item .badge {
	margin-left: 5px;
}

.sidebar-menu__link {
	color: #A7A9AC;
}

.sidebar-menu__link:hover,
.sidebar-menu__link:focus,
.sidebar-menu__link.active {
	color: #FFFFFF;
}

@media(min-width: 1000px) {
	.sidebar-menu__heading {
		font-size: 24px;
	}
}


/* Homepage */

.section__we-are-xyz {
	position: relative;
	background-color: #04477A;
	background-image: url('/assets/images/paint-spatter_thin.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 0 10px;
	overflow-x: clip;
}

.section__we-are-xyz:after {
	content: '';
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	max-width: 1700px;
	width: 100%;
	height: 390px;
	background-image: url('/assets/images/globe-landscape.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 130px;
	padding-bottom: 50px;
}

@media(min-width: 700px) {
	.section__we-are-xyz {
		background-image: linear-gradient(180deg, #161112 100px, transparent 100px), url('/assets/images/paint-spatter_thin.png');
	}
}

@media(min-width: 1060px) {
	.section__we-are-xyz {
		padding: 0;
	}
}

@media(max-width: 1059px) {
	.section__we-are-xyz {
		padding: 0 30px;
	}
}

@media(max-width: 999px) {
	.section__we-are-xyz:after {
		height: 144px;
	}
}

@media(max-width: 699px) {
	.section__we-are-xyz {
		padding: 0 10px;
	}

	.section__we-are-xyz:before {
		content: '';
		background-color: #161112;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		height: 36px;
		width: 100%;
	}

	.section__we-are-xyz .pixel-block-line {
		display: none;
	}
}

.section__we-are-xyz a {
	color: #ffffff;
}

.section__we-are-xyz--content {
	background-color: #161112;
	border: 1px solid #059ECE;
	border-radius: 10px;
	box-shadow: 0px 10px 40px #111F2F;
	padding: 20px 20px 30px;
}

@media(min-width: 700px) and (max-width: 1099px) {
	.section__we-are-xyz--content {
		padding: 50px 175px 50px 50px;
	}
}

@media(min-width: 1100px) {
	.section__we-are-xyz--content {
		padding: 50px 100px;
	}
}

.section__we-are-xyz--heading {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 16px;
}

@media(min-width: 700px) {
	.section__we-are-xyz--heading {
		font-size: 60px;
	}
}

.wf-loading .section__we-are-xyz--heading {
	font-size: 55px;
	letter-spacing: -6px;
	font-family: Arial Black, sans-serif;
	line-height: 1.4;
	position: relative;
	top: -8px;
	margin-bottom: 17px;
}

.section__we-are-xyz--content p {
	font-size: 18px;
	margin-bottom: 1rem;
}

@media(min-width: 700px) {
	.section__we-are-xyz--content p {
		font-size: 21px;
	}
}

.wf-loading .section__we-are-xyz--content p {
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 1px;
}

.section__xyz-stats {
	position: relative;
	padding-top: 50px;
	padding-bottom: 23px;
	text-align: center;
	font-size: 24px;
	z-index: 20;
}

@media(min-width: 1000px) {
	.section__xyz-stats {
		padding-bottom: 56px;
		font-size: 28px;
	}

	.section__xyz-stats p {
		line-height: 1.55;
	}
}

.wf-loading .section__xyz-stats p {
	font-size: 25px;
	letter-spacing: 1px;
	line-height: 1.4;
}

@media (min-width: 1000px) {
	.xyz-stats__line {
		display: block;
	}
}

@media (max-width: 999px) {
	.xyz-stats__line--mobile {
		display: block;
		margin-bottom: 6px;
	}

	.xyz-stats__line--mobile:nth-of-type(3) {
		margin-bottom: 24px;
	}

	.xyz-stat {
		font-size: 34px;
	}

	.section__xyz-stats p:last-child {
		max-width: 285px;
		margin: 0 auto;
	}
}

.xyz-stat {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-style: italic;
	text-shadow: -2px 3px 0px #732011;
}

.section__xyz-stats__xyz-logo {
	max-width: 300px;
	filter: drop-shadow(0px 0px 50px #1B477ABF);
}

@media (min-width: 1000px) {
	.section__xyz-stats__xyz-logo {
		max-width: 500px;
	}
}

.section__we-are-xyz--logo-globe {
	position: relative;
	padding-top: 60px;
	z-index: 5;
}


.section__xyz-started-it-all {
	position: relative;
	background-color: #161112;
	box-shadow: 0px 10px 20px #111F2F80;
	z-index: 15;
}

.section__xyz-started-it-all--content {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 1000px) {
	.section__xyz-started-it-all--content {
		padding-top: 65px;
		padding-bottom: 65px;
	}
}

@media(min-width: 1000px) and (max-width: 1240px) {
	.section__xyz-started-it-all--content {
		padding-right: 20px;
		padding-left: 20px;
	}
}

.section__xyz-started-it-all--block:first-child {
	display: flex;
	flex-direction: column;
}

.section__xyz-started-it-all--block:first-child .section__xyz-started-it-all--heading2 {
	order: 1;
}

.section__xyz-started-it-all--block:first-child .section__xyz-started-it-all--text {
	order: 2;
}

.section__xyz-started-it-all--block:first-child .section__xyz-started-it-all--daniel {
	order: 3;
}

@media(max-width: 540px) {
	.section__xyz-started-it-all--content p,
	.section__xyz-started-it-all--content h2,
	.section__xyz-started-it-all--content h3 {
		margin-right: 20px;
		margin-left: 20px;
	}
}

@media (min-width: 1000px) {
	.section__xyz-started-it-all--block:first-child {
		display: block;
		margin-right: 30px;
		min-width: 55%;
	}
}

@media (min-width: 1100px) {
	.section__xyz-started-it-all--block:first-child {
		margin-right: 50px;
	}
}

.section__xyz-started-it-all--block:last-child {
	color: #77EDC6;
}

@media (min-width: 1000px) {
	.section__xyz-started-it-all--block:last-child {
		max-width: 680px;
	}
}

.section__xyz-started-it-all--heading1 {
	margin-bottom: 24px;
	font-weight: 800;
}

.wf-loading .section__xyz-started-it-all--heading1 {
	font-size: 42px;
	letter-spacing: -4px;
	font-family: Arial Black, sans-serif;
	line-height: 1.4;
	position: relative;
	top: -5px;
	margin-bottom: 24px;
}

.section__xyz-started-it-all--heading2 {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	font-style: italic;
	color: #77EDC6;
	margin-bottom: 16px;
}

@media(min-width: 1000px) {
	.section__xyz-started-it-all--heading2 {
		font-size: 50px;
		color: #D1D3D4;
		line-height: 1.33;
		margin-bottom: 40px;
	}
}

.section__xyz-started-it-all--citations h4 {
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	color: #D1D3D4;
	margin-bottom: 8px;
}

.section__xyz-started-it-all--citations > div {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 13px;
	font-style: italic;
}

.section__xyz-started-it-all--citation a,
.section__xyz-started-it-all--citations a {
	color: #D4FFEE;
}

.section__xyz-started-it-all--daniel {
	height: 284px;
	overflow: hidden;
	margin: 12px 0 24px 0;
}

@media(min-width: 1000px) {
	.section__xyz-started-it-all--daniel {
		float: right;
		width: 284px;
		border-radius: 50%;
		margin: 0 0 0 15px;
		border: 2px solid #059ECE;
	}
}

@media(max-width: 999px) {
	.section__xyz-started-it-all--daniel {
		height: 0;
		padding-bottom: 62%;
	}

	.section__xyz-started-it-all--daniel img {
		position: relative;
		top: -16vw;
	}
}

.section__xyz-started-it-all--xyz-logo {
	width: 90px;
	height: 100%;
	margin-right: 20px;
}

@media(min-width: 380px) {
	.section__xyz-started-it-all--xyz-logo {
		width: 100px;
	}
}

@media(min-width: 1000px) {
	.section__xyz-started-it-all--xyz-logo {
		width: 125px;
	}
}

.section__xyz-started-it-all .columns {
	justify-content: space-between;
	align-items: center;
}

@media(max-width: 1280px) {
	.section__xyz-started-it-all--block h3,
	.section__xyz-started-it-all--block p,
	.section__xyz-started-it-all--signoff {
		margin-right: 30px;
		margin-left: 30px;
	}
}

@media(max-width: 699px) {
	.section__xyz-started-it-all--block h3,
	.section__xyz-started-it-all--block p,
	.section__xyz-started-it-all--signoff {
		margin-right: 20px;
		margin-left: 20px;
	}
}

.section__xyz-started-it-all--signoff {
	display: flex;
	justify-content: space-between;
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	color: #ffffff;
	text-align: right;
	margin-top: 24px;
}

.section__xyz-started-it-all--citation {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	font-style: italic;
	color: #ffffff;
	margin-top: 8px;
}

@media(max-width: 999px) {
	.section__xyz-started-it-all--signoff {
		font-size: 24px;
	}

	.section__xyz-started-it-all--citation {
		font-size: 13px;
		line-height: 18px;
	}
}



.section__our-domains {
	position: relative;
	padding: 50px 20px 35px;
	background: #04477A linear-gradient(180deg, #16111200 0%, #161112 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 10px 20px #111F2F80;
	z-index: 10;
}

.section__our-domains:before {
	content: '';
	display: block;
	position: absolute;
	top: -100px;
	right: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background-image: url('/assets/images/drips-multicolor.svg');
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	z-index: -1;
}

@media(min-width: 1000px) {
	.section__our-domains {
		padding: 175px 30px 60px;
	}

	.section__our-domains:before {
		top: 0;
		height: 250px;
	}
}

.section__our-domains--heading1 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 21px;
	text-shadow: 0px 0px 5px #1B477A;
	text-align: center;
}

@media(min-width: 1000px) {
	.section__our-domains--heading1 {
		font-size: 62px;
		margin-bottom: 42px;
	}
}

.section__our-domains--heading2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

@media(min-width: 1000px) {
	.section__our-domains--heading2 {
		font-size: 28px;
		width: 195px;
		text-align: right;
		margin-right: 30px;
	}
}

.section__our-domains--intro {
	margin: 0 auto 20px auto;
	font-size: 18px;
	max-width: 800px;
}

@media(min-width: 1000px) {
	.section__our-domains--intro {
		margin: 0 auto 60px auto;
		font-size: 28px;
		text-align: center;
	}
}

.our-domains__group {
	margin-bottom: 20px;
}

@media(min-width: 1000px) {
	.our-domains__group {
		display: flex;
		margin-bottom: 50px;
	}
}

.our-domains__list {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	border-top: 2px solid #0E65AD;
	width: 100%;
	padding-top: 14px;
}

@media(min-width: 1000px) {
	.our-domains__list {
		padding-top: 0;
		padding-left: 30px;
		border-top: 0;
	}

	.our-domains__list:before {
		content: '';
		position: absolute;
		border-left: 2px solid #0E65AD;
		top: 0;
		left: 0;
		height: calc(100% - 25px);
	}
}

.our-domains__list--item {
	margin-right: 10px;
	margin-bottom: 10px;
}

@media(min-width: 1000px) {
	.our-domains__list--item {
		margin-right: 25px;
		margin-bottom: 25px;
	}
}

.our-domains__list--link {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 16px;
	background-color: #0E65AD;
	border-radius: 5px;
	height: 55px;
	transition: all .17s ease-in-out;
}

@media(min-width: 1000px) {
	.our-domains__list--link {
		height: 100px;
		border-radius: 10px;
	}
}

.our-domains__list--link:hover,
.our-domains__list--link:focus {
	box-shadow: 0 0 20px rgb(14 101 173 / 50%);
	transform: scale(1.01) translateY(-5px);
	filter: brightness(1.05);
	transition: all .17s ease-in-out;
}

.our-domains__list--link img {
	max-height: 100%;
}

.section__our-domains--contact {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 13px;
	font-style: italic;
	text-align: center;
	line-height: 1.7;
}

@media(min-width: 1000px) {
	.section__our-domains--contact {
		font-size: 15px;
	}
}

/*
	"Our Domains"
*/
.our-domains__list {
	text-align: center;
}

@media only screen and (max-width: 999px) {
	.our-domains__group:first-of-type {
		display: flex;
		flex-wrap: wrap;
	}

	.our-domains__group:first-of-type .our-domains__list--item {
		order: 1;
	}
}

.our-domains__list li {
	display: inline-block;
	vertical-align: middle;
}

.our-domains__list img {
	max-width: 200px;
	max-height: 45px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img {
		max-width: 250px;
		max-height: 60px;
	}
}


/* TLD-specific styles */

.our-domains__list--item img.xyz-logo {
	width: 75px;
	height: 33px;
}

@media (min-width: 1000px) {
	.our-domains__list--item img.xyz-logo {
		width: 150px;
		height: auto;
	}
}

.our-domains__list--xyz {
	text-align: left;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.65;
	max-width: 530px;
	margin-bottom: 25px;
}

@media only screen and (max-width: 999px) {
	.our-domains__list--xyz {
		font-size: 13px;
		order: 0;
		padding-left: 0 !important;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
}

.our-domains__list img.college-logo {
	max-height: 24px;
}

@media (min-width: 1000px) {
	.our-domains__list--item img.college-logo {
		max-height: 43px;
	}
}

.our-domains__list img.ceo-logo {
	max-height: 25px;
}

@media (min-width: 1000px) {
	.our-domains__list--item img.ceo-logo {
		max-height: 40px;
	}
}

.our-domains__list img.rent-logo {
	max-height: 20px;
}

@media (min-width: 1000px) {
	.our-domains__list--item img.rent-logo {
		max-height: 34px;
	}
}

@media (max-width: 999px) {
	.rent-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

@media (min-width: 500px) {
	.break.break-auto {
		flex-basis: 100%;
	}
}

@media (max-width: 999px) {
	.our-domains__list img.cars-logo,
	.our-domains__list img.car-logo,
	.our-domains__list img.auto-logo {
		max-height: 28px;
	}
}

.our-domains__list img.protection-logo {
	max-height: 30px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.protection-logo {
		max-height: 34px;
	}
}

@media (max-width: 999px) {
	.protection-li .our-domains__list--link {
		padding: 20px 8px;
	}
}

.our-domains__list img.security-logo {
	max-height: 25px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.security-logo {
		max-height: 34px;
	}
}

@media (max-width: 999px) {
	.security-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

.our-domains__list img.storage-logo {
	max-height: 36px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.storage-logo {
		max-height: 46px;
	}
}

@media (max-width: 999px) {
	.storage-li .our-domains__list--link {
		padding: 20px 7px;
	}
}

.our-domains__list img.theatre-logo {
	max-height: 18px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.theatre-logo {
		max-height: 29px;
	}
}

.our-domains__list img.baby-logo {
	max-height: 24px;
}

.baby-li .our-domains__list--link {
	padding: 20px 10px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.baby-logo {
		max-height: 39px;
	}
}

.our-domains__list img.monster-logo {
	max-height: 30px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.monster-logo {
		max-height: 58px;
	}
}

.our-domains__list img.beauty-logo {
	max-height: 22px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.beauty-logo {
		max-height: 36px;
	}
}

.our-domains__list img.hair-logo {
	max-height: 23px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.hair-logo {
		max-height: 36px;
	}
}

.our-domains__list img.makeup-logo {
	max-height: 18px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.makeup-logo {
		max-height: 29px;
	}
}

.our-domains__list img.skin-logo {
	max-height: 19px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.skin-logo {
		max-height: 31px;
	}
}

.our-domains__list img.quest-logo {
	max-height: 20px;
}

@media (min-width: 1000px) {
	.our-domains__list img.quest-logo {
		max-height: 37px;
	}
}

.our-domains__list img.autos-logo {
	max-height: 36px;
}

.our-domains__list img.boats-logo {
	max-height: 36px;
}

.our-domains__list img.homes-logo {
	max-height: 17px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.homes-logo {
		max-height: 33px;
	}
}

.our-domains__list img.yachts-logo {
	max-height: 41px;
}

@media only screen and (min-width: 1000px) {
	.yachts-li {
		padding-top: 6px;
	}
}

@media (max-width: 999px) {
	.our-domains__list img.autos-logo,
	.our-domains__list img.boats-logo {
		max-height: 20px;
	}

	.our-domains__list img.motorcycles-logo,
	.our-domains__list img.yachts-logo {
		max-height: 23px;
	}
}

.our-domains__list img.audio-logo {
	max-height: 15px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.audio-logo {
		max-height: 24px;
	}
}

@media only screen and (max-width: 999px) {
	.our-domains__list img.christmas-logo {
		max-height: 15px;
	}
}

.our-domains__list img.diet-logo {
	max-height: 17px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.diet-logo {
		max-height: 31px;
	}
}

.diet-li .our-domains__list--link {
	padding: 20px 10px;
}

.our-domains__list img.flowers-logo {
	max-height: 26px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.flowers-logo {
		max-height: 47px;
	}
}

@media (max-width: 999px) {
	.flowers-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

.our-domains__list img.game-logo {
	max-height: 18px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.game-logo {
		max-height: 31px;
	}
}

.our-domains__list img.guitars-logo {
	max-height: 31px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.guitars-logo {
		max-height: 56px;
	}
}

.our-domains__list img.hosting-logo {
	max-height: 20px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.hosting-logo {
		max-height: 35px;
	}
}

@media (max-width: 999px) {
	.hosting-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

.our-domains__list img.mom-logo {
	max-height: 17px;
}

@media (max-width: 999px) {
	.mom-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

@media (min-width: 1000px) {
	.our-domains__list--item img.mom-logo {
		max-height: 27px;
	}
}

.our-domains__list img.pics-logo {
	max-height: 32px;
}

@media (min-width: 1000px) {
	.our-domains__list img.pics-logo {
		max-height: 57px;
	}
}

.our-domains__list img.lol-logo {
	max-height: 18px;
}

@media (max-width: 999px) {
	.lol-li .our-domains__list--link {
		padding: 20px 10px;
	}
}

@media (min-width: 1000px) {
	.our-domains__list--item img.lol-logo {
		max-height: 33px;
	}
}

.our-domains__list img.tickets-logo {
	max-height: 18px;
}

@media only screen and (min-width: 1000px) {
	.our-domains__list img.tickets-logo {
		max-height: 31px;
	}
}

.our-domains__list img.lat-logo {
	max-height: 33px;
}

@media (min-width: 1000px) {
	.our-domains__list--item img.lat-logo {
		max-height: 60px;
	}
}


.section__around-the-web {
	position: relative;
	padding: 100px 0 50px 0;
	background-color: #04477A;
	border-bottom: 1px solid #0E65AD;
	overflow: hidden;
	clear: both;
	z-index: 5;
}

@media(min-width: 1000px) and (max-width: 1240px) {
	.section__around-the-web {
		padding: 100px 30px 50px;
	}
}

@media(max-width: 999px) {
	.section__around-the-web {
		display: flex;
		flex-direction: column;
		padding: 40px 0 15px 0;
	}

	.section__around-the-web .pixel-block-line {
		display: none;
	}
}

.section__around-the-web:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background-image: url('/assets/images/globe-small-side.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
}

@media(min-width: 1000px) {
	.section__around-the-web:before {
		background-position: left center;
	}
}

.section__around-the-web:after {
	content: '';
	position: absolute;
	background: linear-gradient(to right,  rgba(4,71,122,0) 80%,rgba(4,71,122,1) 100%);
	width: 100%;
	display: block;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none
}

.section__around-the-web .container-lg {
	pointer-events: none;
}

.section__around-the-web--lead {
	width: 250px;
}

@media(max-width: 999px) {
	.section__around-the-web--lead {
		width: 100%;
		order: 1;
	}
}

.section__around-the-web--list {
	float: right;
	max-width: 100vw;
	width: 70%;
	margin-top: 0;
	padding-left: 40px;
}

@media(min-width: 1100px) {
	.section__around-the-web--list {
		width: 72%;
	}
}

@media(min-width: 1300px) {
	.section__around-the-web--list {
		width: 70%;
	}
}

@media(min-width: 1400px) {
	.section__around-the-web--list {
		width: 68%;
	}
}

@media(min-width: 1600px) {
	.section__around-the-web--list {
		width: 66%;
	}
}

@media(min-width: 1820px) {
	.section__around-the-web--list {
		width: 64%;
	}
}

@media(max-width: 999px) {
	.section__around-the-web--list {
		float: none;
		width: 100%;
		max-width: 85%;
		margin: 0 auto;
		order: 2;
	}
}

.section__around-the-web--list section {
	padding-right: .25%;
}

@media(min-width: 1000px) {
	.section__around-the-web--list section {
		padding-right: .75%;
	}
}

.section__around-the-web--list .slick-dots {
	position: relative;
	left: -5.75%;
}

@media(max-width: 700px) {
	.section__around-the-web--list .slick-dots {
		bottom: auto;
	}
}

.section__around-the-web--heading1 {
	font-weight: 800;
	line-height: 1;
	padding-bottom: 24px;
}

@media(min-width: 1000px) {
	.section__around-the-web--heading1 {
		padding-bottom: 0;
	}
}

.section__around-the-web--heading2,
.section__around-the-web--heading3 {
	font-weight: 400;
}

.section__around-the-web--heading2 {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 12px;
}

@media(min-width: 1000px) {
	.section__around-the-web--heading2 {
		font-size: 24px;
	}
}

.section__around-the-web--heading3 {
	font-size: 16px;
	color: #D1D3D4;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.section__around-the-web--link {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 13px;
	font-style: italic;
}

.section__around-the-web p {
	font-size: 16px;
	line-height: 1.3;
}

/* Around the Web slider */

.section__around-the-web--list .slick-arrow {
	position: absolute;
	top: 80px;
	border: 0;
	background-color: #161112;
	width: 45px;
	height: 45px;
	box-shadow: 0px 10px 20px #111F2F80;
	border-radius: 50%;
	text-align: left;
	z-index: 1000;
}

.section__around-the-web--list .slick-prev {
	left: -7.5%;
}

.section__around-the-web--list .slick-next {
	right: -7.5%;
}

@media(min-width: 1000px) {
	.section__around-the-web--list .slick-arrow {
		top: 28px;
	}

	.section__around-the-web--list .slick-prev {
		left: -20px;
	}

	.section__around-the-web--list .slick-next {
		right: 0;
	}
}

@media(min-width: 1240px) {
	.section__around-the-web--list .slick-next {
		right: 20px;
	}
}

.section__around-the-web--list .slick-prev:before,
.section__around-the-web--list .slick-next:before {
	position: relative;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-weight: 400;
	font-size: 21px;
	color: #77EDC6;
	border-radius: 50%;
}

.section__around-the-web--list .slick-prev:before {
	content: '<';
	left: 12px;
}

.section__around-the-web--list .slick-next:before {
	content: '>';
	right: -15px;
}

.section__around-the-web--list .slick-dots li {
	margin: 0;
	padding-right: 22px !important;
}

.section__around-the-web--list .slick-dots li button:before {
	color: #0E65AD;
	opacity: 1;
	width: 14px;
	height: 7px;
	font-size: 12px;
	line-height: .5;
	border-radius: 50%;
}

.section__around-the-web--list .slick-dots li.slick-active button:before {
	color: #02C689;
	box-shadow: 0px 0px 10px #77EDC680;
	font-size: 14px;
}



.homepage__lower {
	position: relative;
	background-color: #04477A;
	z-index: 2;
	max-width: 100%;
	overflow: hidden;
}

.homepage__lower:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

@media(min-width: 1000px) {
	.homepage__lower:before {
		background-image: url('/assets/images/paint-spatter_larger.png');
	}
}


.section__why-xyz {
	position: relative;
	padding: 25px 0;
}

@media(min-width: 1000px) {
	.section__why-xyz {
		padding: 75px 30px;
	}
}

@media(max-width: 999px) {
	.section__why-xyz {
		max-width: 600px;
		margin: 0 auto;
	}
}

.section__why-xyz:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 525px;
	background-size: contain;
	background-position: right top;
	background-repeat: no-repeat;
}

@media(min-width: 1000px) {
	.section__why-xyz:before {
		background-image: url('/assets/images/paint-spatter_small.png');
	}
}

.section__why-xyz div {
	flex: 1 1 auto;
}

.section__why-xyz .columns {
	position: relative;
	z-index: 5;
}

@media(min-width: 1000px) {
	.section__why-xyz--reasons {
		border-radius: 5px;
		width: 55%;
		padding: 50px;
		background-color: #0E65AD;
		margin: 0;
	}
}

@media(max-width: 999px) {
	.section__why-xyz--reasons {
		padding: 10px 0;
		margin: 0 20px;
		font-size: 18px;
	}

	.section__why-xyz--reasons .pixel-block-line {
		display: none;
	}
}

.section__why-xyz--intro {
	font-size: 21px;
}

@media(min-width: 1000px) {
	.section__why-xyz--intro {
		font-size: 24px;
	}

	.section__why-xyz--content {
		padding-right: 100px;
	}
}

.section__why-xyz--heading1 {
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
}

@media(min-width: 1000px) {
	.section__why-xyz--heading1 {
		text-align: left;
		margin-bottom: initial;
	}
}

.section__why-xyz--heading2 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}

.section__why-xyz--items {
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	padding: 0;
	margin: 30px 0;
	text-align: center;
	color: #77DBF2;
	font-weight: 600;
	line-height: 1;
}

.section__why-xyz--item {
	font-size: 14px;
}

@media(min-width: 350px) {
	.section__why-xyz--item {
		font-size: 15px;
		margin-right: 20px;
		margin-left: 20px;
	}
}

@media(min-width: 400px) {
	.section__why-xyz--item {
		font-size: 16px;
	}
}

@media(min-width: 600px) {
	.section__why-xyz--item {
		font-size: 18px;
	}
}

.section__why-xyz--icon {
	display: block;
	height: 50px;
	margin: 0 auto 15px auto;
}

@media(min-width: 350px) {
	.section__why-xyz--icon {
		height: 50px;
	}
}

@media(min-width: 600px) {
	.section__why-xyz--icon {
		height: auto;
	}
}

.section__why-xyz--link {
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 18px;
	font-style: italic;
}

.section__why-xyz--link.link__external:after {
	content: '>';
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
}


.section__why-xyz--quotes-list-item {
	position: relative;
	background-color: #161112;
	border: 1px solid #059ECE;
	border-radius: 10px;
	box-shadow: 0px 10px 40px #111F2F;
	padding: 20px 20px 20px 25px;
	margin-bottom: 24px;
}

@media(min-width: 1000px) {
	.section__why-xyz--quotes-list-item {
		width: calc(100% + 100px);
		padding: 50px 35px 30px 50px;
		margin-bottom: 40px;
	}
}

@media(max-width: 999px) {
	.section__why-xyz--quotes-list-item:first-of-type {
		padding: 50px 20px 20px 25px;
	}
}

.section__why-xyz--quotes-list-item:nth-of-type(1)::before {
	content: '';
	display: block;
	position: absolute;
	top: -70px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 160px;
	height: 100px;
	background-image: url('/assets/images/x0-xyz-computer.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media(max-width: 540px) {
	.section__xyz-started-it-all--block p,
	.section__xyz-started-it-all--block h2 {
		margin-right: 20px;
		margin-left: 20px;
	}
}

.section__xyz-started-it-all--block p,
.section__why-xyz--quotes-list-item p {
	position: relative;
	font-size: 18px;
}

@media(min-width: 1000px) {
	.section__xyz-started-it-all--block p,
	.section__why-xyz--quotes-list-item p {
		font-size: 21px;
	}
}

@media(min-width: 1000px) {
	.section__xyz-started-it-all--block:first-child p {
		max-width: 465px;
	}

	.section__xyz-started-it-all--block:first-child p:last-of-type {
		width: 405px;
	}
}

@media(max-width: 999px) {
	.section__xyz-started-it-all--block:last-child .columns {
		padding: 0 20px;
	}
}

.section__why-xyz--quotes {
	position: relative;
	margin-top: 80px;
}

@media(min-width: 1000px) {
	.section__why-xyz--quotes {
		width: 40%;
		top: 255px;
		left: -85px;
		margin-top: 0;
	}
}

.section__why-xyz--quotes-list {
	padding: 0 10px;
}

@media(min-width: 1000px) {
	.section__why-xyz--quotes-list {
		padding: 0 10px 0 0;
	}
}

.section__why-xyz--quotes-citation {
	display: block;
	margin-top: 10px;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 13px;
	font-style: italic;
	text-align: right;
}

@media(min-width: 1000px) {
	.section__why-xyz--quotes-citation {
		font-size: 15px;
	}
}

@media(max-width: 999px) {
	.citation-break {
		display: block;
		line-height: 2;
	}
}


.homepage__lower--group {
	position: relative;
}

.homepage__lower--group:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(180deg, rgba(22, 17, 18, 0) 0%, rgba(22, 17, 18, 1) 100%) 0% 0% no-repeat padding-box;
}

.section__join-the-movement {
	position: relative;
	padding: 30px 20px;
	z-index: 5;
}

@media(min-width: 1000px) {
	.section__join-the-movement {
		padding: 50px 30px;
	}
}

@media(max-width: 999px) {
	.section__join-the-movement {
		max-width: 400px;
		margin: 0 auto;
	}
}

.section__join-the-movement--heading1 {
	font-weight: 800;
	margin-bottom: 85px;
}

@media(min-width: 1000px) {
	.section__join-the-movement--heading1 {
		margin-bottom: 105px;
	}
}

.section__join-the-movement--heading2 {
	font-weight: 500;
	font-size: 28px;
	margin-bottom: 10px;
}

@media(min-width: 1000px) {
	.section__join-the-movement--heading2 {
		font-size: 36px;
		margin-bottom: 24px;
		/*min-height: 87px;*/
	}
}

.section__join-the-movement--list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
	padding: 0;
	list-style: none;
}

@media(max-width: 999px) {
	.section__join-the-movement--list {
		margin-bottom: 36px;
		justify-content: center;
	}
}

@media(min-width: 1000px) {
	.section__join-the-movement--list {
		margin-right: -11px;
		margin-left: -11px;
	}
}

.section__join-the-movement--list-item {
	position: relative;
	padding: 0;
	flex: 1 1 100%;
	z-index: 5;
}

@media(min-width: 1000px) {
	.section__join-the-movement--list-item {
		flex: 0 1 33.333333%;
	}
}

.section__join-the-movement--list-item:not(:last-of-type) {
	padding: 0;
}

@media(min-width: 1000px) {
	.section__join-the-movement--list-item:not(:last-of-type) {
		padding: 0 11px 25px;
	}
}

@media(max-width: 999px) {
	.section__join-the-movement--list-item {
		font-size: 18px;
		padding: 40px 50px 32px;
	}

	.section__join-the-movement--list-item:last-of-type {
		margin-bottom: 0;
	}

	.section__join-the-movement--list-item .button.button-primary {
		margin-bottom: 0;
		font-size: 21px;
		padding: 15px 30px;
	}

	.section__join-the-movement--list-item .pixel-block-line {
		display: none;
	}

	.section__join-the-movement--list > li:nth-of-type(1) {
		order: 1;
		margin-bottom: 75px;
	}

	.section__join-the-movement--list > li:nth-of-type(2) {
		order: 2;
		margin-bottom: 30px;
	}

	.section__join-the-movement--list > li:nth-of-type(3) {
		order: 4;
	}

	.section__join-the-movement--list > li:nth-of-type(4) {
		order: 3;
		margin-bottom: 75px;
	}
}

.section__join-the-movement--list-item p {
	margin-bottom: 22px;
}

@media(max-width: 999px) {
	.section__join-the-movement--list-item p {
		max-width: 250px;
		margin: 0 auto 22px auto;
	}
}

.section__join-the-movement--content {
	background-color: #161112;
	border: 1px solid #059ECE;
	border-radius: 10px;
	padding: 60px 25px 42px;
	box-shadow: 0px 10px 40px #111F2F;
	font-size: 21px;
	text-align: center;
}

@media(min-width: 1000px) {
	.section__join-the-movement--content {
		display: flex;
		flex-direction: column;
		justify-content: stretch;
		align-items: center;
		padding: 60px 25px 42px;
		height: 100%;
	}

	.section__join-the-movement--content > * {
		flex: 1;
	}
}

.section__join-the-movement--content > a,
.section__join-the-movement--content > .pixel-block-line {
	flex: none;
}

.section__join-the-movement--content .button.button-primary {
	line-height: 1;
}

@media(max-width: 480px) {
	.section__join-the-movement--content .button.button-primary {
		width: 100%;
	}
}

@media(min-width: 1000px) {
	.section__join-the-movement--content .button.button-primary {
		height: 65px;
		padding-top: 0;
		padding-bottom: 0;
		display: flex;
		align-items: center;
	}
}

.section__join-the-movement--content .link__external {
	padding-right: 13px;
}

.section__join-the-movement--content .link__external:after {
	top: -7px;
	font-size: 28px;
	margin-left: 1px;
}

@media(min-width: 1000px) {
	.section__join-the-movement--content .link__external:after {
		font-size: 30px;
	}
}

.s__center .section__join-the-movement--content .pixel-block-line {
	margin: 15px auto 0 auto;
}

.section__join-the-movement--social {
	position: relative;
	max-width: 566px;
	margin: 0 auto;
	background-color: #161112;
	border: 1px solid #059ECE;
	border-radius: 10px;
	box-shadow: 0px 10px 40px #111F2F;
	padding: 25px;
	color: #D1D3D4;
	font-family: degular, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
	flex: 1 1 100%;
}

@media(min-width: 1000px) {
	.section__join-the-movement--social {
		padding: 40px 53px;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 28px;
	}
}

.section__join-the-movement--social-list {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

@media(max-width: 999px) {
	.section__join-the-movement--social-list {
		margin-top: 15px;
	}
}

.section__join-the-movement--social-list-item {
	position: relative;
}

@media(min-width: 1000px) {
	.section__join-the-movement--social-list-item {
		flex: 1 1 auto;
	}
}

.section__join-the-movement--social-list-link {
	position: relative;
	max-height: 100%;
	border: 2px solid #02C689;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	padding: 0 13px;
	display: flex;
	align-items: center;
}

.section__join-the-movement--social-list-icon {
	pointer-events: none;
}

.section__join-the-movement--social-list-link img {
	max-width: 100%;
	max-height: 100%;
}

/*
.section__join-the-movement--cta-text {
	font-weight: 800;
	font-size: 21px;
	margin-bottom: 10px;
}

@media(max-width: 999px) {
	.section__join-the-movement--cta,
	.section__join-the-movement--cta p {
		font-size: 18px;
	}
}

.section__join-the-movement--cta-link {
	color: #D4FFEE;
}
*/


.section__locations {
	position: relative;
}

.section__locations:before {
	content: '';
	position: absolute;
	display: block;
	top: -12px;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #04477A;
	background-image: url('/assets/images/paint-spatter_left-sparse.png');
	background-size: 45%;
	background-position: left top;
	background-repeat: no-repeat;
}

.section__locations .container-lg {
	position: relative;
	border-top: 1px solid #04477A;
	padding: 40px 0 10px 0;
	z-index: 5;
}

@media(min-width: 1000px) {
	.section__locations .container-lg {
		padding: 75px 20px 25px;
	}
}

.section__locations--heading1 {
	font-weight: 800;
	margin-bottom: 24px;
}

.section__locations--heading2 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

@media(min-width: 1000px) {
	.section__locations--heading2 {
		font-size: 36px;
	}
}

.section__locations--heading3 {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #D1D3D4;
	text-transform: uppercase;
	text-align: center;
	max-width: 200px;
	margin: 36px auto 4px auto;
	width: 100%;
}

@media(min-width: 1000px) {
	.section__locations--heading3 {
		margin: 21px auto 4px auto;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		height: 40px;
	}
}

.section__locations .columns {
	gap: 22px;
}

.section__locations--list-item {
	flex: 1 1 33.333333%;
	text-align: center;
}

.section__locations--map {
	height: 168px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	margin-top: 0;
}

@media (max-width: 999px) {
	.section__locations--list-item .pixel-block-line,
	.section__locations--map {
		display: none;
	}
}

.section__locations--list-item p {
	font-size: 21px;
}

@media (max-width: 999px) {
	.section__locations--list-item p {
		font-size: 18px;
	}
}

.section__locations--list-item p span {
	font-weight: 600;
}


/*
	Contact Page
*/

.contact-page .columns > div {
	flex: 1 1 auto;
}

@media(min-width: 1000px) {
	.contact-info-wrapper {
		padding-right: 50px;
		max-width: 320px;
	}
}

.contact-info-upper {
	padding-bottom: 30px;
	border-bottom: 1px solid #04477A;
	margin-bottom: 30px;
}

@media(max-width: 999px) {
	.contact-info-lower {
		padding-bottom: 20px;
		border-bottom: 1px solid #04477A;
	}
}

.contact-info-lower .site-logo {
	margin-bottom: 24px;
}

@media(max-width: 999px) {
	.contact-info-lower .site-logo {
		display: none;
	}
}

.contact-info-lower p {
	font-size: 18px;
	margin-bottom: 15px;
}

.contact__heading2 {
	font-weight: 400;
	font-size: 21px;
	margin-bottom: 18px;
	letter-spacing: 1.1px;
}

@media(min-width: 1000px) {
	.contact__heading2 {
		font-weight: 600;
		font-size: 28px;
	}
}

.contact__heading3 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1.1px;
}

@media(min-width: 1000px) {
	.contact__heading3 {
		font-size: 36px;
	}
}

.contact-form {
	max-width: 500px;
}

@media(max-width: 999px) {
	.contact-form {
		padding-top: 30px;
	}
}

.contact-form__disclaimer {
	color: #A7A9AC;
	font-size: 16px;
}

.contact-form__disclaimer a {
	color: #FFFFFF;
}


/*
	Anti-Abuse Pages
*/

.anti-abuse-nav {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

a.anti-abuse-link__quarterly {
	aspect-ratio: 1 / 1;
	max-width: 250px;
	width: 100%;
	background-color: #04477A;
	padding: 20px;
	color: #ffffff;
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 30px;
	text-decoration: none;
	font-weight: 700;
}

.anti-abuse-link__quarterly--text {
	text-align: center;
	font-size: 30px;
}

.anti-abuse-quarterly-reports {
	display: flex;
	flex-wrap: wrap;
}

.anti-abuse-page .sidebar-menu__heading:first-of-type {
	color: #77EDC6;
}

.anti-abuse-page .sidebar-menu__heading--year {
	display: block;
	font-weight: 600;
	color: #77EDC6;
	position: relative;
	font-size: 18px;
	margin-bottom: 10px;
	background: none;
	padding: 0;
	border: 0;
	outline: none;
}

.anti-abuse-page .sidebar-menu__heading--year:after {
	content: '>';
	position: absolute;
	top: 0;
	right: -20px;
	font-family: 'Unibody 8 Pro', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #77EDC6;
	transform: rotate(0deg);
	transition: all .25s ease-in-out;
}

.anti-abuse-page .expand .sidebar-menu__heading--year:after {
	transform: rotate(90deg);
	transition: all .25s ease-in-out;
}

.quarterlies:not(:last-of-type) .sidebar-menu {
	margin: 0 0 0 0;
}

.quarterlies:last-of-type {
	margin: 0 0 30px 0;
}

.quarterly-year ul {
	display: none;
	overflow: hidden;
}

.quarterly-list.expand {
	display: block;
}

.sidebar-menu.quarterly-list {
	margin: 0 0 15px 0;
}

.sidebar-menu.quarterly-list:last-of-type {
	margin: 0 0 30px 0;
}

/* Download PDF */

.anti-abuse-download-link {
    margin-bottom: 1em !important;
}

.icon--pdf {
    width: 1em;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

a .icon--pdf {
    text-decoration: none;
    margin-right: .5em;
}

/*
	Media Queries
*/


@media only screen and (min-width: 600px) {
	.list__basic {
		margin: 30px 50px;
	}
}

@media only screen and (max-width: 800px) {
	
	/* Smooth padding transition (Optional)*/
	.container,
	.content-block,
	.site-footer {
		-webkit-transition: padding .25s ease-in-out;
		-moz-transition: padding .25s ease-in-out;
		-ms-transition: padding .25s ease-in-out;
		-o-transition: padding .25s ease-in-out;
		transition: padding .25s ease-in-out;
	}
}


/*
	Simple print styles
*/

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	
	a,
	a:visited {
		text-decoration: underline;
	}
	
	a[href]:after {
		content: " (" attr(href) ")";
	}
	
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}
}