/* re-defined from bootstrap */

:root {
	--bg-1: rgba(10, 12, 14, 1);
	--bg-3: rgba(34, 35, 40, 1);
	--almost-white: rgba(246, 246, 246, 1);
	--divider-border: rgba(55, 64, 74, 1);
	--gradient-v-subdued: linear-gradient(180deg, #03c5ef 0%, #03aaef 100%);
	--standout-bg: radial-gradient(
		100% 100% at 50% 0%,
		rgba(36, 45, 59, 0.9) 0%,
		rgba(28, 34, 43, 0.9) 100%
	);
	--stroke-hover: rgba(76, 88, 103, 1);
	--stroke-hover-30: rgba(76, 88, 103, 0.3);
	--text-1: rgba(191, 211, 216, 1);
	--text-2: rgba(150, 165, 169, 1);
	--primary: rgba(3, 197, 239, 1);
	--thin-fill: rgba(81, 92, 105, 0.2);
	font-size: 16px;
}

@media screen and (max-width: 950px) {
	:root {
		font-size: 14px;
	}
}

@media screen and (max-width: 600px) {
	:root {
		font-size: 12px;
	}
}

/* * {
	outline: 1px solid #f00 !important;
} */

body {
	font-family: "Source Sans Pro", sans-serif;
	background-color: #000;
	overflow-x: hidden; /* Not sure why it wants to show a horiz scrollbar, this is a hack to fix it */
}

.navbar {
	border-top-style: none;
	border-left-style: none;
	border-right-style: none;
	border-bottom-color: var(--divider-border);
	width: 100%;
	top: 0px;
	border-radius: 0px;
	margin-bottom: 0px;
}

.navbar-default {
	background: transparent;
	text-align: left;
}

.navbar-brand {
	height: 74px;
	padding: 12px 28px;
}

.navbar-brand img {
	height: 50px;
}

.modal-header {
	background-color: var(--thin-fill);
	color: var(--text-1);
	border: none;
	border-radius: 0;
}

.modal-header .close {
	color: var(--text-1);
	fill: var(--text-1);
	opacity: 1;
	text-shadow: none;
	font-weight: 400;
	font-size: 30px;
}

textarea {
	border-color: #ccc;
}

h1 {
	font-size: 28px;
	font-weight: normal;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 14px;
}

/* End bootstrap re-definition */

/* general page styles */

.page-wapper {
	background-color: #fff;
	position: relative;
}

.page-section {
	position: relative;
}

.section-content {
	position: relative;
	padding: 15px;
	max-width: 1326px;
	margin-left: auto;
	margin-right: auto;
}

.column-left {
	width: 45%;
	float: left;
}

.column-right {
	width: 50%;
	float: right;
}

.column-right:after {
	clear: both;
}

.transparent {
	opacity: 0;
}

.modal-dialog {
	background-color: var(--bg-1);
	color: var(--text-1);
	border: 1px solid rgba(55, 64, 74, 1);
	border-radius: 0;
}

.modal-content {
	background: var(--standout-bg);
	border-radius: 0;
}

.modal-body {
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-body-demo {
	background-color: transparent;
	padding-bottom: 19px;
}

.modal-body a {
	color: var(--text-1);
}

.modal-body form {
	font-size: 12px;
}

.modal-footer {
	border: none;
}

.modal-footer button {
	margin: 0 0 0 0.5rem;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	padding: 0.125rem 0.5rem;
	border-radius: 0;
}

.modal-footer button.send {
	background: var(--gradient-v-subdued);
	color: var(--bg-1);
	border: none;
}

.modal-footer button.cancel {
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(55, 64, 74, 1);
	color: var(--text-1);
}

input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font: inherit;
	background-color: rgba(0, 0, 0, 0.2);
	width: 1.15rem;
	height: 1.15rem;
	border: 1px solid rgba(55, 64, 74, 1);
	border-radius: 50%;
	display: grid;
	place-content: center;
}

input[type="radio"]:checked {
	border-color: var(--primary);
}

input[type="radio"]:focus {
	border-color: var(--primary);
	outline: none;
}

input[type="radio"]::before {
	content: "";
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 50%;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1rem 1rem var(--primary);
}

input[type="radio"]:checked::before {
	transform: scale(1);
}

form input:focus {
	outline: 1px solid var(--primary);
}

form .form-group,
form .rather-call {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 1rem 0 0;
}

form .text-label {
	margin: 0;
	float: left;
	width: 7rem;
	text-align: right;
	padding-right: 1rem;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.9375rem;
	color: var(--text-2);
}

form .text-label span {
	font-size: 0.625rem;
	line-height: 0.75rem;
}

form .radio-label {
	margin: 0;
	padding: 0 0.875rem 0 0.375rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.125rem;
	color: var(--text-1);
}

form .text-input {
	width: 25rem;
	height: 1.75rem;
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(55, 64, 74, 1);
	color: var(--text-2);
	border-radius: 0;
}

form fieldset {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 1rem 0 0;
}

form .legend {
	margin: 0;
	float: left;
	width: 7rem;
	text-align: right;
	padding-right: 1rem;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.9375rem;
	color: var(--text-2);
	border: none;
}

.rather-call .label {
	display: block;
	float: left;
	width: 7rem;
	text-align: right;
	padding-right: 1rem;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.9375rem;
	color: var(--text-2);
}

.rather-call .content {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.125rem;
	color: var(--text-2);
	font-weight: 600;
}

.centered-element {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.scrollable {
	overflow-x: hidden;
	overflow-y: auto;
}

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

h1 {
	color: #585858;
	font-size: 28px;
}

sup {
	font-size: 9px;
}

h1 sup {
	font-size: 12px;
	top: -10px;
}

.section-sizzle {
	background: var(--standout-bg);

	color: #fff;
}

.sizzle-wrapper {
	background-image: url("../img/sizzle-background.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.sizzle-wrapper > .section-content {
	display: grid;
	grid-template-columns: 75% 25%;
	max-width: 1920px;
	padding: 1.25rem 1.25rem 1.25rem 5rem;
}

.sizzle-wrapper .video-container {
	background-color: var(--bg-1);
}

.sizzle-wrapper .video-container video {
	width: 100%;
	padding: 2.5rem 1.25rem 6.25rem;
}

.sizzle-wrapper .highlight-list {
	justify-self: center;
	align-self: center;
	font-weight: 400;
	font-size: 2rem;
	line-height: 2.75rem;
	padding: 0 2.5rem;
}

.sizzle-wrapper .highlight-list li {
	padding: 2rem 0;
}

@media screen and (max-width: 1023px) {
	.sizzle-wrapper > .section-content {
		padding: 1.25rem;
	}

	.sizzle-wrapper .video-container {
		grid-column-start: 1;
		grid-column-end: 3;
	}

	.sizzle-wrapper .highlight-list {
		grid-column-start: 1;
		grid-column-end: 3;
		padding: 2rem 0;
	}

	.sizzle-wrapper .highlight-list li {
		padding: 0.5rem;
	}
}

.section-gray {
	background-color: var(--bg-3);
	padding-top: 3.75rem;
	padding-bottom: 5.625rem;
}

.section-infographics {
	background: var(--standout-bg);
	padding: 0;
}

.section-infographics .section-content {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 9.375rem;
}

.infographics-heading {
	display: grid;
	grid-template-columns: 16% 68% 16%;
}

.infographics-heading p {
	grid-column-start: 2;
	grid-column-end: 3;
	font-weight: 400;
	font-size: 2rem;
	line-height: 2.75rem;
	color: var(--almost-white);
	text-align: center;
	padding: 2.5rem 0;
}

.infographics-content {
	display: grid;
	grid-template-columns: 22.53% 35.74% 19.2% 21.23%;
	grid-gap: 0.5rem;
	justify-content: center;
	align-content: top;
	padding-bottom: 7rem;
}

.infographic-image img {
	max-width: 100%;
	width: 100%;
}

.infographic-content {
	background-color: var(--stroke-hover);
	color: var(--text-1);
}

.infographic-content p {
	margin: 0;
	padding: 1rem 1.5rem;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5625rem;
	text-align: center;
}

#infographic-image-1 {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row: 1;
}

#infographic-content-1 {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row: 2;
}

#infographic-image-2 {
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row: 1;
}

#infographic-content-2 {
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row: 2;
}

#infographic-image-3 {
	grid-column-start: 3;
	grid-column-end: 4;
	grid-row: 1;
}

#infographic-content-3 {
	grid-column-start: 3;
	grid-column-end: 4;
	grid-row: 2;
}

#infographic-image-4 {
	grid-column-start: 4;
	grid-column-end: 5;
	grid-row: 1;
}

#infographic-content-4 {
	grid-column-start: 4;
	grid-column-end: 5;
	grid-row: 2;
}

@media screen and (max-width: 1023px) {
	.section-infographics .section-content {
		padding: 0 2rem;
	}
}

@media screen and (max-width: 600px) {
	.infographics-content {
		grid-template-columns: 10% 80% 10%;
		padding-bottom: 4rem;
	}

	#infographic-image-1 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 1;
	}

	#infographic-content-1 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 2;
	}

	#infographic-image-2 {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row: 3;
	}

	#infographic-content-2 {
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row: 4;
	}

	#infographic-image-3 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 5;
	}

	#infographic-content-3 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 6;
	}

	#infographic-image-4 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 7;
	}

	#infographic-content-4 {
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row: 8;
	}
}

/* Navigation styles */

.brand-normal {
	display: inline;
}

.brand-mobile {
	display: none;
}

.pagenav {
	position: fixed;
	right: 20px;
	top: calc(50% - 50px);
}

/* page footer styles */

.page-foot {
	background: var(--standout-bg);
	padding: 1.25rem;
	color: var(--text-1);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.page-foot .row {
	max-width: 800px;
}

.fine-print .row,
.page-foot .row {
	margin-left: auto;
	margin-right: auto;
}

.fine-print .row {
	max-width: 960px;
}

.page-foot h2 {
	font-weight: normal;
	padding-top: 10px;
	color: var(--text-1);
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5625rem;
}

.page-foot a {
	text-decoration: none;
	display: block;
	color: var(--primary);
}

.page-foot .external-link {
	color: #d17008;
}

.page-foot .social-links {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
}

.page-foot a:hover,
.fine-print a:hover {
	color: #fff;
}

.fine-print {
	background-color: var(--bg-1);
	padding: 0.625rem 0.625rem 1.375rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 1);
}

.fine-print a {
	color: var(--primary);
	text-decoration: none;
}

.powered-by {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 600px) {
	.powered-by {
		max-width: 250px;
	}

	.powered-by img {
		max-width: 100%;
	}
}

.tl-logo-footer {
	display: inline-block !important;
	vertical-align: middle;
}

.copyright {
	grid-area: column-1;
	align-self: left;
	text-align: left;
	justify-content: center;
}

.patent {
	grid-area: column-2;
	align-self: center;
	text-align: center;
	justify-content: center;
}

.fine-links {
	grid-area: column-3;
	align-self: right;
	text-align: right;
	justify-content: center;
}

/* STYLES FOR SECTIONS */

/* Welcome Section (watch find connect) */

.page-section-first-bg {
	position: absolute;
	width: 100%;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #000000;
	overflow: hidden;
}

.page-section-first-bg > video {
	max-width: 1920px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.page-section-first {
	height: 500px;
}

.link-demo {
	cursor: pointer;
	position: relative;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.75rem;
	background: var(--gradient-v-subdued);
	color: var(--bg-1);
	padding: 0.7rem 3.125rem;
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.link-demo:hover,
.link-demo:focus {
	opacity: 1;
	color: var(--bg-1);
	text-decoration: none;
}

.welcome {
	color: var(--almost-white);
	margin: 3.75rem 0 0 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.welcome-message-top {
	font-weight: 400;
	font-size: 2.1875rem;
	line-height: 2.75rem;
}

.welcome-message-bottom {
	font-weight: 600;
	font-size: 3.75rem;
	line-height: 5.375rem;
}

#welcome_frame4 {
	opacity: 1;
}

.welcome-animation span {
	font-size: 60px;
	color: #585858;
}

.welcome-logo {
	display: inline;
}
.welcome-logo-mobile {
	display: none;
}

.image-ensemble {
	height: 580px;
	position: relative;
	margin-left: 0px;
	margin-right: 0px;
	opacity: 1;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}

.image-ensemble > img {
	display: block;
	position: absolute;
	bottom: -200px;
}

#image-desktop {
	left: 10%;
}

#image-laptop {
	right: 0;
}

#image-ipad {
	left: 0;
}

#image-iphone {
	right: 20px;
}

.image-ensemble-mobile {
	text-align: center;
	display: none;
	margin-left: -30px;
}

#animation2 .icon {
	vertical-align: middle;
}

#animation2 .icon-play {
	margin-left: -5px;
}

#animation2 h2 {
	font-size: 24px;
}

.ensemble-collapsed {
	opacity: 0;
}

/* How It Works */

/* We set up this section so it has no padding at the top, and its headline      */
/* is absolutely positioned, so there is no gap between section 2 and the "stem" */
/* leading down from section 2 to the right side of the architecture graphic.    */

#howitworks {
	padding-top: 0px;
}

#howitworks .section-content {
	padding-top: 0px;
}

#howitworks .section-head {
	position: absolute;
	left: 25px;
	top: 15px;
}

#architectureAnimation {
	overflow: visible;
	height: 380px;
	width: 960px;
	visibility: hidden; /* hide it at first while it gets set up for animation */
}

#architectureAnimation > img {
	display: block;
	position: absolute;
}

#architecture-uv-base {
	left: 210px;
	top: 115px;
}

#architecture-sources {
	left: 0px;
	top: 100px;
}

#architecture-audience {
	left: 500px;
	top: 100px;
}

#stem {
	width: 150px;
	height: 100px;
	position: absolute;
	top: 0px;
	left: 600px;
}

#architecture-uv-server {
	left: 210px;
	top: 115px;
}

#architecture-uv-cloud {
	left: 210px;
	top: 115px;
}

.architecture-text {
	font-size: 14px;
	text-align: left;
	height: 30px;
	position: absolute;
	bottom: 15px;
}

#architecture-text1 {
	left: 0px;
	width: 180px;
}

#architecture-text2 {
	left: 210px;
	width: 300px;
}

#architecture-text1::after,
#architecture-text2::after {
	display: block;
	position: absolute;
	right: -12px;
	top: 3px;
	content: " ";
	width: 18px;
	height: 30px;
	background-image: url("../img/architecture/arrow.png");
}

#architecture-text3 {
	left: 560px;
	width: 345px;
}

.architecture-mobile {
	margin-top: 80px;
	display: none;
}

/* More than just streaming */

#morethanstreaming h1 {
	padding-left: 15px;
}

.icons-drawer {
	text-align: center;
	font-size: 36px;
	line-height: 36px;
	cursor: default;
}

.icon-holder {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.icons-drawer .icon {
	position: absolute;
	left: 0px;
	top: 0px;
	text-align: center;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	overflow: hidden;
	padding-top: 7px;
	color: #026baa;
}

.icons-drawer .icon.active {
	display: none;
	color: #fff;
	background-color: #026baa;
}

.icon-play {
	padding-left: 6px;
}

.icon-tag {
	padding-top: 9px !important;
	padding-right: 5px;
}

.icon-chat {
	padding-top: 11px !important;
}

.icon-metrics {
	font-size: 32px !important;
}

.features-display {
	text-align: center;
	position: relative;
	margin-bottom: 10px;
	width: 100%;
	height: 520px;
	margin-left: auto;
	margin-right: auto;
}

.features-display-image {
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	border: 0.625rem solid var(--stroke-hover);
}

.caption {
	color: var(--text-1);
	background-color: var(--stroke-hover-30);
	position: absolute;
	bottom: 0px;
	padding: 10px;
	margin: 20px 5px;
	border-radius: 5px;
	text-align: center;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5625rem;
	width: calc(100% - 10px);
}

.caption-content {
	opacity: 0;
}

.caption > a {
	color: #fff;
}

.features-module {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 715px;
	height: 405px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#defaultModule {
	display: block;
	padding-top: 180px;
}

/* Products Page */

.app-buttons > img {
	display: inline-block;
	margin-bottom: 5px;
}

.products-section h2 {
	line-height: 30px;
	margin: 0px;
}

.products-section .col-sm-4 {
	margin-top: 10px;
	padding-bottom: 30px;
	padding-left: 25px;
	padding-right: 35px;
}

.product-categories-text {
	min-height: 170px;
}

/* Tech Specs Page */

.tech-content {
	font-size: 12px;
}

.tech-content h3 {
	font-weight: bold;
	margin: 0px;
	margin-bottom: 2px;
	padding-left: 50px;
}

.tech-content > div > p {
	padding-left: 60px;
}

.tech-content > div {
	padding-bottom: 15px;
	position: relative;
	clear: both;
}

.tech-content a {
	color: #b3deff;
}

.tech-content a:hover {
	color: #ffffff;
	text-decoration: none;
}

.tech-icon {
	font-size: 22px;
	padding-top: 7px;
	text-align: center;
	height: 40px;
	width: 40px;
	border-style: solid;
	border-width: 2px;
	border-color: #fff;
	border-radius: 20px;
	position: absolute;
	left: 0px;
	top: 0px;
}

.tech-icon > .icon-camera,
.tech-icon > .icon-lock,
.tech-icon > .icon-play {
	margin-top: -2px;
}

.tech-icon > .icon-data,
.tech-icon > .icon-gear {
	margin-top: -1px;
}

.tech-icon > .icon-cloud {
	margin-top: -3px;
}

.tech-heading {
	font-weight: bold;
	font-style: italic;
	font-size: 12px;
}

.tech-column-left,
.tech-column-right,
.tech-column-a,
.tech-column-b,
.tech-column-c {
	float: left;
	width: calc(50% - 35px);
	padding-bottom: 5px;
}

.tech-column-a,
.tech-column-b,
.tech-column-c {
	width: calc(33% - 26px);
}

.tech-column-left,
.tech-column-a {
	margin-left: 60px;
}

.tech-column-right,
.tech-column-b,
.tech-column-c {
	margin-left: 10px;
}

#techIllustration {
	margin-top: 0px;
	width: 350px;
	height: 488px;
}

.tech-line {
	position: absolute;
	top: 95px;
	right: -12px;
	width: 100px;
	height: 1px;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: #fff;
}

.tech-line-left {
	border-left-style: dashed;
	border-left-width: 1px;
	border-left-color: #fff;
}

.tech-bracket {
	position: absolute;
	top: 95px;
	right: 0px;
	width: 40px;
	height: 30px;
	border-top-style: dashed;
	border-top-width: 1px;
	border-top-color: #fff;
	border-right-style: dashed;
	border-right-width: 1px;
	border-right-color: #fff;
}

/* Industries Page */

.industry-icon > i {
	font-size: 130px;
	color: #026baa;
	margin-right: 15px;
}

.industry-icon,
.industry-content {
	position: relative;
	text-align: left;
	float: left;
}

.industry-content {
	width: calc(100% - 170px);
	padding-bottom: 20px;
}

.industries-section h1 {
	margin-top: 5px;
}

.clear-all {
	clear: both;
}

/* Request a Quote */

.quote-form {
	margin-top: 20px;
	max-width: 550px;
}

.fine-print-footer {
	display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 13px;
	grid-template-areas: "column-1 column-2 column-3";
}

/* Media Queries */

@media screen and (max-width: 950px) {
	.brand-normal {
		display: none;
	}
	.brand-mobile {
		display: inline;
	}

	#architecture {
		width: 260px;
	}

	#architectureAnimation {
		display: none;
	}
	.architecture-mobile {
		display: block;
	}

	#architecture-text1 {
		width: 260px;
		top: 0px;
		left: 0px;
		bottom: auto;
	}

	#architecture-text2 {
		width: 190px;
		left: 63px;
		top: 510px;
		bottom: auto;
	}

	#architecture-text3 {
		width: 260px;
		left: 0px;
		top: 810px;
		bottom: auto;
	}

	#architecture-text1::after,
	#architecture-text2::after {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.welcome-animation span {
		font-size: 30px;
	}
	h1 {
		font-size: 24px;
	}
	.welcome-logo {
		display: none;
	}
	.welcome-logo-mobile {
		display: inline;
	}
	.image-ensemble {
		display: none;
	}
	.image-ensemble-mobile {
		display: block;
	}

	.pagenav {
		top: auto;
		bottom: 25px;
		right: 8px;
	}

	.navdot {
		border-radius: 9px;
		height: 18px;
		width: 18px;
		margin-bottom: 16px;
	}

	.product-categories-text {
		min-height: 10px;
	}

	.industry-icon > i {
		font-size: 100px;
	}

	.industries-section h1 {
		font-size: 20px;
	}

	.industry-content {
		width: calc(100% - 150px);
	}

	.copyright,
	.fine-links {
		text-align: center;
		float: none;
	}

	.fine-print-footer {
		display: block;
	}
	
}

/* Various background images for screen sizes */

@media screen and (max-width: 1800px) {
	.page-section-first-bg {
		background-image: url("../img/no-video-bg.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media screen and (max-width: 1200px) {
	.page-section-first-bg {
		background-image: url("../img/no-video-bg.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

@media screen and (max-width: 800px) {
	.page-section-first-bg {
		background-image: url("../img/no-video-bg.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* Various "more than just streaming" images for screen sizes */

@media screen and (max-width: 800px) {
	.features-display {
		text-align: center;
		position: relative;
		margin-bottom: 10px;
		height: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 500px) {
	.features-display {
		text-align: center;
		position: relative;
		margin-bottom: 10px;
		height: 320px;
		margin-top: -20px;
		margin-left: auto;
		margin-right: auto;
	}
}
