/*/////////////////////////////////////////
// BEGIN: General
/////////////////////////////////////////*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--rca-white: #fff;
	--rca-lavender: #D4A3FF;
	--rca-lavender-alt: #DAAEFF;
	--rca-purple: #A453EA;
	--rca-purple-alt: #C18AF1;
	--rca-dark: #130718;
	--rca-bg: #16131B;
}

@font-face {
	font-family: 'Exan';
	src: url('../fonts/Exan-Regular.woff2') format('woff2'),
		 url('../fonts/Exan-Regular.woff') format('woff'),
		 url('../fonts/Exan-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Space Mono', monospace;
	font-size: 24px;
	font-weight: 400;
	line-height: 35.35px;
	line-height: 1.47;
	background: url('../images/background_grid.png') repeat center bottom / cover var(--rca-bg);
	animation: fadein 1.2s;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background: var(--rca-dark);
}

body::-webkit-scrollbar-thumb {
	background: var(--rca-lavender);
}

body::-webkit-scrollbar-thumb:hover {
	background: var(--rca-purple-alt);
}

a {
	color: var(--rca-white);
	text-decoration: none;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

fieldset {
	position: relative;
	margin: 0 0 0 65px;
	padding: 0;
	border: 0;
	color: var(--rca-white);
}

h1,h2,h3,h4 {
	color: var(--rca-white);
	font-family: 'Exan', sans-serif;
	font-weight: 400;
	position: relative;
}

h2 {
	margin-bottom: 48px;
	font-size: 128px;
	line-height: 0.97;
}

h3 {
	font-size: 38px;
	line-height: 1.23;
	text-transform: uppercase;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

input,
.form-field--contenteditable {
	width: 448px;
	max-width: 100%;
	margin-bottom: 34px;
	background: none;
	border: 0;
	border-bottom: 2px solid var(--rca-purple);
	color: var(--rca-white);
	font-family: 'Space Mono', monospace;
	font-size: 28px;
	text-shadow: 0px 0px 7.68px var(--rca-purple);
	caret-color: var(--rca-lavender);
	outline: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

input[type="submit"] {
	display: block;
	width: 293px;
	height: 81px;
	margin: 0 auto;
	background: url('../images/scan-lines.png'), rgba(164, 83, 234, 1);
	background-blend-mode: multiply, normal;
	background-size: 200% 25px;
	border: 1px solid rgba(164, 83, 234, 0.4);
	box-shadow: 0px 0px 6.4px var(--rca-purple), inset 1px 1px 10px rgba(164, 83, 234, 0.23);
	color: rgba(221, 182, 255, 0.93);
	font-family: 'Exan', sans-serif;
	font-size: 39px;
	line-height: 46px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0px 0px 6.4px var(--rca-purple);
	cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-selected,
input:-internal-autofill-previewed {
	-webkit-box-shadow: none !important;
	background-color: transparent !important;
}

label {
	color: var(--rca-white);
	font-size: 28px;
	text-shadow: 0px 0px 7.68px var(--rca-purple);
}

li {
	list-style: none;
}

main {
	position: relative;
	padding-top: 120px;
}

p {
	color: var(--rca-lavender);
}


::placeholder, .placeholder {
	color: var(--rca-purple-alt);
	font-weight: 400;
	font-size: 28px;
	text-align: center;
	text-transform: lowercase;
	outline: none;
}

.placeholder {
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	pointer-events: none;
}

section {
	position: relative;
}

select,
textarea {
	background: none;
	border: 0;
	border-bottom: 2px solid var(--rca-purple);
	color: var(--rca-white);
	font-family: 'Space Mono', monospace;
	font-size: 28px;
	text-shadow: 0px 0px 7.68px var(--rca-purple);
	outline: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

select {
	width: 397px;
	max-width: 100%;
	margin-bottom: 34px;
	padding-right: 34px;
	background: url('../images/arrow_down.svg') no-repeat 98% center / 17px transparent;
}

textarea {
	caret-color: var(--rca-lavender);
	vertical-align: bottom;
}

textarea::-webkit-scrollbar {
	width: 8px
}

textarea::-webkit-scrollbar-track {
	background: transparent;
}

textarea::-webkit-scrollbar-thumb {
	background: var(--rca-lavender);
}

textarea::-webkit-scrollbar-thumb:hover {
	background: var(--rca-lavender);
}

video {
	width: 100%;
	vertical-align: bottom;
}

/* BEGIN: Layouts
-----------------------------------*/
.site-container {
	position: relative;
}

@keyframes fadein {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.section-wrapper {
	position: relative;
	width: 1450px;
	max-width: 95%;
	margin: 0 auto;
}

.section-wrapper.fullwidth {
	width: 1920px;
	max-width: 100%;
}

.flexit-container {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: flex-start;
}

/* BEGIN: Video
-----------------------------------*/
.video-container {
	position: static;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.video-container .video-wrapper {
	position: relative;
	height: 0;
	padding-bottom: 56.243%;
	/* 16:9 */
	overflow: hidden;
}

.video-container .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* BEGIN: Text
-----------------------------------*/
.eyebrow {
	color: var(--rca-lavender);
	font-family: 'Exan', sans-serif;
	font-size: 19px;
	letter-spacing: 0.05em;
}

.attribution {
	color: var(--rca-white);
	font-family: 'Poppins', Tahoma, sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.form-field--error input,
.form-field--error select,
.form-field--error textarea {
	caret-color: #EA536E;
	border-bottom: 2px solid #EA536E;
	color: #FFB9C5;
	text-shadow: 0px 0px 7.68px #EA536E;
}

.mobile, .hidden {
	display: none;
}

/*/////////////////////////////////////////
// BEGIN: Header
/////////////////////////////////////////*/
.main-header {
	position: fixed;
	width: 100%;
	height: 120px;
	background-color: rgb(19 7 24 / 75%);
	overflow: hidden;
	z-index: 9999;
	transform: translate3d(0, 0, 0.1px);
}

.main-header .background__container {
	margin: 0;
	border: 0;
	border-image: none;
}

.main-header .background__scanlines {
	opacity: 0.75;
	background-blend-mode: color-burn, normal, normal;
}

.main-header .header-wrapper {
	width: 1480px;
	max-width: 95%;
	height: 100%;
	margin: 0 auto;
	align-items: center;
	align-content: stretch;
}

.main-header .main-header__logo {
	width: 272px;
	margin-top: -13px;
}

.main-header .main-header__navigation {
	/* width: 925px; */
}

.main-header a {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-ms-transition-duration: 0s;
	transition-duration: 0s;
}

nav ul {}

nav li {
	position: relative;
	/* width: 195px; */
	width: auto;
	height: 100%;
	padding: 0 0 0 40px;
	margin: 0 50px 0 0;
}

nav li a {
	display: block;
	position: relative;
	padding: 26px 0;
	font-family: 'Exan', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
}


nav li b,
nav li span,
nav li i {
	display: block;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

nav li b {
	position: absolute;
	left: -40px;
	width: 28px;
	padding: 4px 0;
	color: var(--rca-lavender);
	font-size: 16px;
	letter-spacing: -0.02em;
	text-align: center;
}

nav li span {}

nav li i {
	position: absolute;
	bottom: -11px;
	/* width: 149px; */
    width: calc(100% - 20px);
	height: 2px;
}

nav li.active i {
	bottom: -5px;
	height: 2px;
	background: var(--rca-purple);
	box-shadow: 0px 0px 5px var(--rca-purple);
}

/*/////////////////////////////////////////
// BEGIN: General Sections
/////////////////////////////////////////*/
.section-header {
	width: 990px;
	max-width: 100%;
	margin: 0 auto 75px;
	text-align: center;
}

.section-header h2:before {
	content: '';
	display: block;
	width: 220px;
	height: 2px;
	margin: 0 auto 42px;
	background: var(--rca-purple);
	box-shadow: 0px 0px 6.4px var(--rca-purple), inset 0px 0px 0.8px rgba(255, 255, 255, 0.25);
}

.tile-container {}

.tile-container:after {
	content: '';
	width: 469px;
	max-width: 32.35%;
}

.tile-container--centered {
	text-align: center;
}

.tile-container--centered:after {
	content: '';
	width: 483px;
	max-width: 33.33%;
}

.tile-container li {
	position: relative;
	width: 469px;
	max-width: 32.35%;
	padding: 29px 37px 50px;
}

.tile-container--opinions li {
	padding: 20px 20px 67px;
}

.tile-container--centered li {
	width: 483px;
	max-width: 33.33%;
	padding-bottom: 0;
	background: none;
}

.tile-container--centered li:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: url('../images/line_vertical.png') no-repeat center right / 1px transparent;
	backdrop-filter: blur(16.5px);
}

.tile-container--centered li:last-child:after {
	background: none;
}

.tile .background__container {
	opacity: 0.7;
}

.tile-container li .image-container {
	position: relative;
	margin-bottom: 38px;
	text-align: center;
}

.tile-container--centered li .image-container {
	margin-bottom: 75px;
}

.tile-container li .image-container img {
}

.tile-container li .content-container p {
	position: relative;
	font-size: 22px;
}

/*/////////////////////////////////////////
// BEGIN: Specific Sections
/////////////////////////////////////////*/

/* BEGIN: Hero Video
-----------------------------------*/
.section-video .video-container {
	position: relative;
	background-blend-mode: color-burn, normal;
}

.section-video .video-container .button__wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.section-video .section-content {
	position: absolute;
	bottom: 9.75%;
	left: 50%;
	width: 1067px;
	max-width: 95%;
	transform: translateX(-50%);
	text-align: center;
}

.section-video .section-content p {
	color: var(--rca-white);
	font-size: 35px;
	font-weight: 400;
	line-height: 1.5;
}

/* BEGIN: How it Works
-----------------------------------*/
.section-how {
	padding: 175px 0 90px;
	background: url('../images/background_how-it-works_1600.jpg') no-repeat center center / cover var(--rca-dark);
}

.section-how h3 {
	margin-bottom: 32px;
}

.section-how h3 b {
	font-family: 'Space Mono', monospace;
}

.section-how .tile-container li {
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
}

.section-how .tile-container li .eyebrow {
	color: var(--rca-purple);
	font-size: 28px;
	z-index: 1;
}

.section-how .tile-container li .image-container img {
	mix-blend-mode: lighten;
	transform: translate3d(0, 0, 0.1px);
}

.section-how .tile-container li:nth-child(1) .image-container {
	margin: -15px auto 5px;
}

.section-how .tile-container li:nth-child(1) .image-container img {
	width: 317px;
	margin-left: 13px;
}

.section-how .tile-container li .content-container {
	position: relative;
}

/* BEGIN: Unforgiving Opinions
-----------------------------------*/
.section-opinions {
	padding: 85px 0 90px;
	background: url('../images/background_unforgiving-opinions_1600.jpg') no-repeat center center / cover var(--rca-dark);
}

.section-opinions:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(90deg, #1C0D29 4.72%, rgba(28, 13, 41, 0) 91.51%);
	background: linear-gradient(0deg, #1C0D29 4.72%, rgba(28, 13, 41, 0) 91.51%);
}

.section-opinions h3 {
	margin-bottom: 25px;
	font-size: 32px;
}

.section-opinions .content-container {
	position: relative;
}

/* BEGIN: The Awards
-----------------------------------*/
.section-awards {
	padding: 85px 0 90px;
	background: url('../images/background_the-awards_1600.jpg') no-repeat center center / cover var(--rca-dark);
	overflow: hidden;
}

.section-awards h2 {
	text-transform: uppercase;
}

.section-awards h3 {
	margin-bottom: 44px;
}

/* BEGIN: Submit to the Robots
-----------------------------------*/
.section-submit {
	padding: 85px 0 230px;
	background: url('../images/background_submit-to-the-robots_1600.png') no-repeat center center / cover #1c0d2a;
}

.section-submit--closed {
	display: none;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	padding-bottom: 0;
}

.form-container {
	position: relative;
	width: 959px;
	max-width: 100%;
	margin: 0 auto;
	padding: 95px 126px 105px 62px;
	counter-reset: field;
}

.form-container form {
	position: relative;
}

.form-container .form-field {
	display: inline-block;
	position: relative;
}

.form-container fieldset:nth-child(3) {
	margin-bottom: 70px;
}

.form-container .form-field:before {
	counter-increment: field;
	content: "0" counter(field) ": ";
	display: none;
	position: absolute;
	top: 7px;
	left: -65px;
	width: 23px;
	color: var(--rca-lavender);
	font-family: 'Exan', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	-webkit-font-smoothing: antialiased;
}

.form-container .form-field.form-field--error:after {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	right: 0;
	width: 19px;
	height: 17px;
	background: url('../images/icon_warning.png') no-repeat center center / 19px transparent;
}

.form-container .form-field--text {
	width: calc(100% - 15px);
}

.form-container .form-field--text input {
	width: 100%;
}

.form-container .form-field.ad-idea__wrapper {
	width: 100%;
	margin-bottom: 6px;
}

.form-container .form-field.ad-idea__wrapper.form-field--error:after {
	top: auto;
	bottom: 50px;
}

.form-container .ad-idea__wrapper textarea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-attachment: local;
	background-image:
		linear-gradient(to right, transparent 20px, transparent 20px),
		linear-gradient(to left, transparent 20px, transparent 20px),
		repeating-linear-gradient(transparent, transparent 60px, var(--rca-purple) 60px, var(--rca-purple) 62px, transparent 62px);
	border-bottom: 0;
	line-height: 2.3;
	text-indent: 220px;
	visibility: hidden;
}

.form-container .ad-idea__wrapper textarea::placeholder {
	padding-top: 24px;
	text-align: left;
}

.form-container .ad-idea__wrapper.form-field--error textarea {
	border-bottom: 0;
	background-image:
		linear-gradient(to right, transparent 20px, transparent 20px),
		linear-gradient(to left, transparent 20px, transparent 20px),
		repeating-linear-gradient(transparent, transparent 60px, #EA536E 60px, #EA536E 62px, transparent 62px);
}

.form-container .ad-idea__wrapper .form-field--contenteditable {
	display: inline;
	position: relative;
	width: 100%;
	line-height: 2.3;
	word-break: break-all;
}

.ad-idea__editable {
	outline: none;
}

.placeholder.placeholder--hidden {
	color: transparent;
	text-shadow: none !important;
}

.form-container .form-field--label-url {
	display: inline-block;
	margin-bottom: 27px;
}

.form-container .form-field.form-field--email,
.form-container .form-field input[type='email'] {
	width: 100%;
}

.form-container .footer-text,
.form-container .input-error {
	color: var(--rca-purple-alt);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-align: right;
	text-transform: uppercase;
}

.form-container .input-error {
	opacity: 0;
	position: absolute;
	bottom: 9px;
	right: 0;
	color: #EA536E;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.form-container .form-field--error .input-error {
	opacity: 1;
}

.form-container .ad-idea__wrapper .input-error {
	bottom: 0;
	right: 160px;
}

.ad-idea__word-count-wrapper {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.form-field--error .ad-idea__word-count-wrapper {
	color: #EA536E;
}

.ad-idea__placeholder {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

.ad-idea__placeholder .placeholder {
	display: inline-block;
	position: static;
	flex-grow: 1;
	border-bottom: 2px solid var(--rca-purple);
	transform: none;
	overflow: visible;
	line-height: normal;
	text-align: left;
    text-shadow: 0px 0px 7.68px var(--rca-purple);
	text-transform: lowercase;
	white-space: nowrap;
}

.placeholder__wrapper {
	display: inline;
	position: relative;
	width: 100%;
	margin-bottom: 34px;
	border-bottom: 0px;
	outline: none;
	font-size: 28px;
	line-height: 2.3;
	word-break: break-all;
}

.placeholder__filler {
	display: inline-block;
	width: 100%;
	border-bottom: 2px solid var(--rca-purple);
	line-height: 1.3;
}

.placeholder__filler::before {
	content: 'a';
	display: inline;
	color: transparent;
	text-shadow: none;
}

.placeholder__filler-lead {
	display: flex;
	align-items: baseline;
}

.placeholder__filler-lead label {
	margin-bottom: 0;
}

.ad-idea__edit {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.ad-idea__edit label {
	visibility: hidden;
}

.form-field--contenteditable {
	border-bottom: 2px solid transparent;
}

.form-field--error .placeholder:not(.placeholder--hidden),
.form-field--error .form-field--contenteditable {
	caret-color: #EA536E;
	color: #FFB9C5;
	text-shadow: 0px 0px 7.68px #EA536E;
}

.form-field--error .placeholder,
.form-field--error .placeholder__filler  {
	border-bottom: 2px solid #EA536E; 
}


.form-container .form-footer {
	margin-left: 65px;
}

/*/////////////////////////////////////////
// BEGIN: Footer
/////////////////////////////////////////*/
footer {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	padding: 30.5px 0;
	background-color: rgb(19 7 24 / 75%);
	border: 0;
	border-top: 1px solid #603289;
	z-index: 9999;
}

footer .background {
	opacity: 0.9;
}

footer .background__container {
	border: 0;
}

footer .background__scanlines {
	opacity: 0.6;
}

footer p,
footer a {
	color: var(--rca-white);
	font-family: 'Exan', sans-serif;
	font-size: 20px;
}

footer .footer__copyright {
	color: var(--rca-purple-alt);
	font-size: 18px;
}

footer .footer__col-right {
	width: 288px;
}

/*/////////////////////////////////////////
// BEGIN: Modal
/////////////////////////////////////////*/
.modal-container {
	opacity: 0;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	align-content: center;
	background: rgb(19 7 24 / 85%);
	z-index: 9999;
}

.modal-container.active {
	opacity: 1;
	display: flex;
}

.modal-container .modal {
	position: static;
	width: 1440px;
	height: auto;
	max-width: 95%;
	max-height: 810px;
}

.modal-container .modal__content {
	display: none;
}

.modal-container .modal__content--active {
	display: block;
}

.modal-container .button_close {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--rca-white);
	font-family: 'Space Mono', monospace;
	font-size: 60px;
	text-shadow: 0px 0px 7.68px var(--rca-purple);
	-webkit-font-smoothing: antialiased;
	line-height: 0.6124;
}

/*/////////////////////////////////////////
// BEGIN: Subscribe Success
/////////////////////////////////////////*/
.subscription__container {
	position: relative;
	width: 768px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

.subscription__container.modal__content--active {
	display: flex;
}

.subscription__content {
	position: relative;
	padding: 65px;
}

.subscription__content h2 {
	font-size: 88px;
}

/*/////////////////////////////////////////
// BEGIN: Campaign Monitor Form
/////////////////////////////////////////*/
.campaign-monitor__wrapper {
	display: none;
}

/*/////////////////////////////////////////
// BEGIN: Media Queries
/////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 961px) {

	a:hover {
		text-decoration: none;
	}

	nav li:hover b {
		width: 39px;
		background: var(--rca-lavender-alt);
		box-shadow: 0px 0px 5px var(--rca-purple);
		color: var(--rca-bg);
	}

	nav li:hover span {
		transform: translateX(20px);
	}

	nav li:hover i {
		bottom: -5px;
		height: 6px;
		background: var(--rca-lavender-alt);
		box-shadow: 0px 0px 5px var(--rca-purple);
	}

	input[type="submit"]:hover {
		border: 1px solid var(--rca-purple);
		transform: scale(1.05);
		-webkit-transition-duration: 0.4s;
		-moz-transition-duration: 0.4s;
		-o-transition-duration: 0.4s;
		-ms-transition-duration: 0.4s;
		transition-duration: 0.4s;
		color: var(--rca-lavender-alt);
	}
}

/* BEGIN: Responsive Text Size
-----------------------------------*/
@media screen and (max-width: 1480px) {

	.tile-container li .content-container p {
		font-size: 18px;
	}

	.section-video .section-content p {
		font-size: 25px;
	}

	.section-how h3 {
		font-size: 25px;
	}

	.section-how h3 br {
		display: none;
	}

	.section-how .tile-container li .eyebrow {
		top: 12px;
		font-size: 18px;
	}
}

/* BEGIN: Responsive Menu
-----------------------------------*/
@media screen and (max-width: 1280px) and (min-width: 1024px) {

	.main-header .main-header__navigation {
		/* width: 675px; */
	}

	nav li {
		/* width: 135px; */
		padding: 0 0 0 30px;
	}

	nav li:last-child {
		margin-right: 0;
	}

	nav li a {
		font-size: 18px;
	}

	nav li i {
		/* width: 110px; */
	}
}

/* BEGIN: Responsive
-----------------------------------*/
@media screen and (max-width: 1024px) {

	main {
		padding-top: 115px;
	}

	.main-header {
		height: 115px;
		background-color: var(--rca-bg);
		border-bottom: 1px solid var(--rca-purple);
		overflow: initial;
	}

	.main-header .background {
		display: none;
	}

	.main-header .main-header__logo {
		width: 198px;
		margin-top: auto;
	}

	.main-header .header-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0 26px 9px 0;
		align-items: flex-end;
	}

	.main-header .main-header__navigation {
		opacity: 0;
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		width: 100%;
		flex-basis: 100%;
		height: 0;
		overflow: hidden;
		background: var(--rca-bg);
		z-index: 9999;
		transition: opacity .1s ease-in-out, height .4s ease-in-out;
		pointer-events: none;
	}

	.main-header .main-header__navigation:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: url('../images/line_horizontal_menu.svg') center center / 100% transparent;
		backdrop-filter: blur(16.5px);
	}

	.main-header__navigation .menu>li {
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		flex-direction: row;
		flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		margin: 0;
		padding: 0 10px 0 0;
		border-bottom: 1px solid #282332;
		text-align: left;
	}

	.main-header__navigation .menu>li:before {
		content: '';
		opacity: 0;
		display: inline-block;
		width: 6px;
		height: 110px;
		margin-right: 21px;
		background: var(--rca-lavender-alt);
		border-radius: 20px;
		box-shadow: 0px 0px 6.4px var(--rca-purple), inset 0px 0px 0.8px rgba(255, 255, 255, 0.25);
	}

	.main-header__navigation .menu>li.active:before {
		opacity: 1;
	}

	.main-header__navigation .menu>li br {
		display: none;
	}

	.main-header__navigation .menu>li>a {
		width: 100%;
		font-size: 26px;
	}

	.main-header .main-header__icon {
		display: inline-block;
		position: relative;
		margin: 0;
		padding: 20px 0 26px;
		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		user-select: none;
		cursor: pointer;
		z-index: 10;
	}

	.main-header .main-header__icon .icon {
		display: block;
		position: relative;
		width: 32px;
		height: 2px;
		background: var(--rca-purple);
		border-radius: 20px;
		transition: background .2s ease-out;
		box-shadow: 0px 0px 6.4px var(--rca-purple), inset 0px 0px 0.8px rgba(255, 255, 255, 0.25);
	}

	.main-header .main-header__icon .icon:before,
	.main-header .main-header__icon .icon:after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--rca-purple);
		box-shadow: 0px 0px 6.4px var(--rca-purple), inset 0px 0px 0.8px rgba(255, 255, 255, 0.25);
		border-radius: 20px;
		transition: all .2s ease-out
	}

	.main-header .main-header__icon .icon:before {
		top: 10px;
	}

	.main-header .main-header__icon .icon:after {
		top: -10px;
	}

	.main-header .main-header__btn {
		display: none;
		z-index: 10;
	}

	.main-header .main-header__btn:checked~nav {
		opacity: 1;
		height: auto;
		overflow: visible;
		pointer-events: auto;
	}

	.main-header .main-header__btn:checked~.main-header__icon .icon {
		background: 0 0;
		box-shadow: none;
	}

	.main-header .main-header__btn:checked~.main-header__icon .icon:before {
		transform: rotate(-45deg);
	}

	.main-header .main-header__btn:checked~.main-header__icon .icon:after {
		transform: rotate(45deg);
	}

	.main-header .main-header__btn:checked~.main-header__icon .icon:before,
	.main-header .main-header__btn:checked~.main-header__icon .icon:after {
		top: 0;
		background: var(--rca-purple);
	}

	nav li b {
		position: relative;
		left: auto;
	}

	nav li i {
		display: none;
	}
}

/* BEGIN: iPad / Mobile */
@media only screen and (max-width: 992px) {

	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}

	h2 {
		margin-bottom: 62px;
		font-size: 86px;
		line-height: 0.98;
	}
	h3 {
		font-size: 24px;
	}

	/*input, textarea {
		width: 100%;
		height: 50px;
		margin-bottom: 0;
		padding: 0 10px;
		background: #0F0A18;
		border: 0.75px solid rgba(102, 49, 147, 0.75);
		box-shadow: 0px 0px 4.5px 1.5px rgba(164, 83, 234, 0.37);
		border-radius: 1px;
		font-size: 17px;
	}

	input[type="url"] {
		margin-top: 0;
	}

	input[type="submit"] {
		width: 219px;
		height: 60px;
		max-width: 100%;
		font-size: 29px;
	}

	label {
		display: block;
		margin-bottom: 14px;
		color: var(--rca-purple-alt);
		font-size: 14px;
		line-height: 17px;
		text-shadow: 0px 0px 7.68px var(--rca-purple);
		text-transform: uppercase;
	}*/
	fieldset {
		margin: 0;
	}

	input, select, textarea {
		width: 100%;
		margin-bottom: 16px;
		font-size: 21px;
	}

	input[type="submit"] {
		width: 219px;
		height: 60px;
		max-width: 100%;
		font-size: 29px;
	}

	label {
		margin-bottom: 14px;
		font-size: 21px;
		line-height: 2.3;
	}

	::placeholder {
		font-size: 13px;
	}

	p {
		font-size: 20px;
	}

	select, textarea {
		width: 100%;
	}

	.section-wrapper,
	.section-wrapper.fullwidth {
		max-width: 100%;
		padding: 0 20px;
	}

	.section-wrapper.fullwidth {
		padding: 0;
	}

	.eyebrow {
		font-size: 14px;
	}

	/* BEGIN: Sections
	-----------------------------------*/
	.section-header {
		margin: 0 auto 34px;
	}

	.section-header h2:before {
		width: 165px;
		max-width: 48%;
	}

	.section-header p {
		font-size: 20px;
		line-height: 1.5;
	}

	.tile-container li,
	.tile-container--centered li {
		width: 100%;
		max-width: 100%;
		margin-bottom: 17px;
	}

	.tile-container li:last-child,
	.tile-container--centered li:last-child {
		margin-bottom: 0;
	}

	.tile-container--centered li {
		margin-bottom: 75px;
		padding: 5px 17px 75px;
	}

	.tile-container--centered li:after {
		top: auto;
		right: 50%;
		bottom: 0;
		width: 80%;
		height: 2px;
		background: url('../images/line_horizontal_v2.svg') no-repeat bottom center / contain transparent;
		transform: translateX(50%);
	}

	.tile-container--centered li .image-container {
		margin-bottom: 41px;
	}

	.tile-container li .content-container p {
		font-size: 16px;
		line-height: 1.5;
	}

	.tile-container--centered li .content-container p {
		font-size: 16px;
		line-height: 1.5;
	}

	/* BEGIN: Hero Video
	-----------------------------------*/
	.section-video {
		padding-bottom: 60px;
		background: rgb(21,8,49);
		background: -moz-linear-gradient(180deg, rgba(21,8,49,1) 0%, #16131c 100%);
		background: -webkit-linear-gradient(180deg, rgba(21,8,49,1) 80%, #16131c 100%);
		background: linear-gradient(180deg, rgba(21,8,49,1) 80%, #16131c 100%);
	}

	.section-video .video-container {
		margin-bottom: 50px;
	}

	.section-video .video-container video {
		min-height: 305px;
	}

	.section-video .section-content {
		position: relative;
		bottom: auto;
		left: auto;
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		transform: none;
	}

	.section-video .section-content p {
		font-size: 20px;
	}

	/* BEGIN: How It Works
	-----------------------------------*/
	.section-how {
		padding: 85px 0 60px;
		background: url('../images/mobile_background_how-it-works.jpg') no-repeat top center / cover transparent;
	}

	.section-how h3 {
		margin-bottom: 22px;
	}

	.section-how .tile-container li {
		padding: 25px 27px 41px;
	}

	.section-how .tile-container li .eyebrow {
		color: var(--rca-purple);
		font-size: 21px;
	}

	/* BEGIN: Unforgiving Opinions
	-----------------------------------*/
	.section-opinions {
		padding: 85px 0 60px;
		background: url('../images/mobile_background_unforgiving-opinions.jpg') no-repeat top center / cover transparent;
	}

	.section-opinions h2 {
		font-size: 53px;
		line-height: 1;
	}

	.section-opinions .section-header h2:before {
		margin-bottom: 37px;
	}

	.section-opinions h3 {
		margin-bottom: 15px;
	}

	.section-opinions .content-container {
		padding: 0 10px;
	}

	.section-opinions .eyebrow {
		line-height: 1;
	}

	.tile-container--opinions li {
		padding: 15px 14px 55px;
	}

	.tile-container--opinions li .image-container {
		margin-bottom: 31px;
	}

	/* BEGIN: The Awards
	-----------------------------------*/
	.section-awards {
		padding: 85px 0 60px;
		background: url('../images/mobile_background_the-awards.jpg') no-repeat top center / cover transparent;
	}

	.section-awards h2 {
		font-size: 81px;
		line-height: 1;
	}

	.section-awards h3 {
		margin-bottom: 24px;
	}

	.section-awards .tile-container li:last-child {
		padding-bottom: 0;
	}

	/* BEGIN: Submit to the Robots
	-----------------------------------*/
	.section-submit {
		padding: 85px 0 216px;
		background: url('../images/mobile_background_submit-to-the-robots.jpg') no-repeat top center / cover transparent;
	}

	.section-submit .section-header {
		margin: 0 auto 64px;
	}

	.section-submit h2 {
		font-size: 56px;
		line-height: 1.1;
	}

	.form-container {
		/* padding: 33px 33px 66px 35px; */
		padding: 22px 25px 63px 26px;
	}

	.form-container .form-field.form-field--error:after {
		top: 10px;
	}
	
	.form-container .form-field--select {
		display: block;
	}
	
	.form-container .form-field--text {
		width: calc(100% - 68px);
	}

	.form-container .ad-idea__wrapper textarea {
		line-height: 2.3;
		text-indent: 158px;
	}

	.form-container .ad-idea__wrapper textarea {
		background-image:
			linear-gradient(to right, transparent 15px, transparent 15px),
			linear-gradient(to left, transparent 15px, transparent 15px),
			repeating-linear-gradient(transparent, transparent 43px, var(--rca-purple) 47px, var(--rca-purple) 43px, transparent 43px);
	}

	.form-container .ad-idea__wrapper.form-field--error textarea {
		background-image:
			linear-gradient(to right, transparent 15px, transparent 15px),
			linear-gradient(to left, transparent 15px, transparent 15px),
			repeating-linear-gradient(transparent, transparent 43px, #EA536E 47px, #EA536E 43px, transparent 43px);
	}

	.form-container .form-field.ad-idea__wrapper.form-field--error:after {
		bottom: 37px;
	}

	.placeholder__wrapper,
	.ad-idea__editable,
	.form-container .ad-idea__wrapper .form-field--contenteditable {
		font-size: 21px;
		line-height: 2.3;
	}
	
	.placeholder__filler-lead label {
		flex-shrink: 0;
	}
	
	.ad-idea__placeholder .placeholder {
		font-size: 13px;
	}

	.form-container .form-field--label-url {
		margin-bottom: 0;
	}

	.form-container .form-field.form-field--url {
		width: calc(100% - 15px);
	}

	.form-container .form-field input[type='url'] {
		width: 100%;
	}

	.form-container .footer-text,
	.form-container .input-error {
		font-size: 10.5px;
	}

	.form-container .input-error {
		bottom: -6px;
	}

	.form-container .ad-idea__wrapper .input-error {
		right: 122px;
	}

	.form-container .form-footer {
		margin-left: auto;
	}

	/*.form-container .form-field {
		margin-left: 0;
		margin-bottom: 38px;
	}

	.form-container .form-field.ad-idea__wrapper {
		margin-bottom: 38px;
	}

	.form-container .form-field textarea {
		position: relative;
		top: auto;
		height: auto;
		background: #0F0A18;
		text-indent: initial;
	}

	.form-container .form-footer {
		margin-left: 0;
	}*/

	footer {
		padding: 29px 26px 16px;
	}
	
	footer .section-wrapper {
		padding: 0;
	}

	footer .footer__col-left {
		display: flex;
		width: 100%;
		flex-wrap: nowrap;
		margin: 0 auto;
	}
	
	footer .footer__col-right img {
		width: 68%;
		margin-left: -16px;
	}
	
	footer p, footer a {
		flex-grow: 1;
		margin-bottom: 17px;
		font-size: 16px;
		line-height: 1.25;
	}

	footer .footer__copyright {
		width: 105px
		font-size: 14px;
		text-align: right;
		white-space: nowrap;
	}
	
	.subscription__content {
		padding: 65px 25px 20px;
	}

	.subscription__content h2 {
		margin-bottom: 32px;
		font-size: 46px;
	}

	.subscription__content p {
		margin-bottom: 25px;
	}
}
/* FIN */