@charset "UTF-8";
/* stylelint-disable selector-no-type */
/* stylelint-disable font-family-name-quotes */
@font-face {
	font-family: "Gotham";
	font-style: normal;
	font-weight: 300;
	src: local("Gotham Light"), local("Gotham-Light"),
		url(/asset/font/gotham-light.woff2) format("woff2"),
		url(/asset/font/gotham-light.woff) format("woff");
}

@font-face {
	font-family: "Gotham";
	font-style: normal;
	font-weight: 400;
	src: local("Gotham Book"), local("Gotham-Book"),
		url(/asset/font/gotham-book.woff2) format("woff2"),
		url(/asset/font/gotham-book.woff) format("woff");
}

@font-face {
	font-family: "Gotham";
	font-style: normal;
	font-weight: 500;
	src: local("Gotham Medium"), local("Gotham-Medium"),
		url(/asset/font/gotham-medium.woff2) format("woff2"),
		url(/asset/font/gotham-medium.woff) format("woff");
}

@font-face {
	font-family: "Gotham";
	font-style: normal;
	font-weight: 700;
	src: local("Gotham Bold"), local("Gotham-Bold"),
		url(/asset/font/gotham-bold.woff2) format("woff2"),
		url(/asset/font/gotham-bold.woff) format("woff");
}

@font-face {
	font-family: "Caecilia";
	font-style: normal;
	font-weight: 400;
	src: local("Caecilia LT Pro 55 Roman"), local("CaeciliaLTPro-55Roman"),
		local("PMN Caecilia Com 55 Roman"), local("CaeciliaCom-55Roman"),
		url(/asset/font/caecilia-lt-pro-55-roman.woff2) format("woff2"),
		url(/asset/font/caecilia-lt-pro-55-roman.woff) format("woff");
}

@font-face {
	font-family: "Caecilia";
	font-style: normal;
	font-weight: 700;
	src: local("Caecilia LT Pro 75 Bold"), local("CaeciliaLTPro-75Bold"),
		local("PMN Caecilia Com 75 Bold"), local("CaeciliaCom-75Bold"),
		url(/asset/font/caecilia-lt-pro-75-bold.woff2) format("woff2"),
		url(/asset/font/caecilia-lt-pro-75-bold.woff) format("woff");
}

@font-face {
	font-family: "Caecilia";
	font-style: italic;
	font-weight: 400;
	src: local("Caecilia LT Pro 56 Italic"), local("CaeciliaLTPro-56Italic"),
		local("PMN Caecilia Com 56 Italic"), local("CaeciliaCom-56Italic"),
		url(/asset/font/caecilia-lt-pro-56-italic.woff2) format("woff2"),
		url(/asset/font/caecilia-lt-pro-56-italic.woff) format("woff");
}

@font-face {
	font-family: "Caecilia";
	font-style: italic;
	font-weight: 700;
	src: local("Caecilia LT Pro 76 Bold Italic"), local("CaeciliaLTPro-76BoldItalic"),
		local("PMN Caecilia Com 76 Bold Italic"), local("CaeciliaCom-76BoldItalic"),
		url(/asset/font/caecilia-lt-pro-76-bold-italic.woff2) format("woff2"),
		url(/asset/font/caecilia-lt-pro-76-bold-italic.woff) format("woff");
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100vh;
	background: #fff;
}

html {
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	font-size: 14px;
	position: relative;
	margin: 0;
	font-family: "Caecilia", serif;
	line-height: 1.625;
	color: #6a778b;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
/* only adjust font smoothing on low-res displays */
@media (max-resolution: 1dppx), (max-resolution: 96dpi), (-webkit-max-device-pixel-ratio: 1) {
	body {
		-moz-osx-font-smoothing: grayscale;
		 -webkit-font-smoothing: antialiased;
	}

}
@media (min-width: 375px) {
	body {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	body {
		font-size: 16px;
	}

}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
/* not all images should be display block */
img.lp_image {
	display: inline;
}

a {
	color: inherit;
}
a img {
	border: 0;
}

input,
textarea,
select {
	font-family: inherit;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	color: #eee;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
	opacity: 1;
	color: #eee;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: #eee;
}

select::-ms-expand {
	display: none;
}

.q-alert {
	margin-bottom: 15px;
	min-height: 90px;
	color: #1d2737;
}
@media (min-width: 1080px) {
	.q-alert {
		min-height: 0;
		height: 90px;
	}

}
@media (max-width: 719px) {
	.q-alert {
		margin-top: 15px;
	}
	.q-alert.q-alert--hidden {
		margin-top: 0;
	}
}
.q-alert--hidden {
	opacity: 0;
	visibility: hidden;
	height: 0;
	min-height: 0;
	transition: opacity 200ms, visibility 200ms, height 200ms 200ms;
}
.q-alert__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-alert__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-alert__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-alert__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-alert__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	background: #f7fafc;
	transition: box-shadow 0.4s cubic-bezier(0, 1, 0.75, 1), -webkit-transform 0.4s cubic-bezier(0, 1, 0.75, 1);
	transition: box-shadow 0.4s cubic-bezier(0, 1, 0.75, 1), transform 0.4s cubic-bezier(0, 1, 0.75, 1);
	transition: box-shadow 0.4s cubic-bezier(0, 1, 0.75, 1), transform 0.4s cubic-bezier(0, 1, 0.75, 1), -webkit-transform 0.4s cubic-bezier(0, 1, 0.75, 1);
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-alert__inner:hover {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
		box-shadow: 0 11px 22px 0 rgba(170, 177, 188, 0.2);
	}

}
.q-alert__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 30px;
}
@media (min-width: 1080px) {
	.q-alert__content {
		margin-left: auto;
		margin-right: auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding-left: 0;
		padding-right: 0;
	}

}
@media (min-width: 1080px) and (min-width: 1080px) {
	.q-alert__content {
		width: 82.94574%;
	}

}
.q-alert__heading, .q-alert__subheading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 16px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	color: #1d2737;
}
@media (min-width: 375px) {
	.q-alert__heading, .q-alert__subheading {
		font-size: 16px;
		font-size: calc(0.00328 * 100vw + (14.77049px));
	}

}
@media (min-width: 1290px) {
	.q-alert__heading, .q-alert__subheading {
		font-size: 19px;
	}

}
.q-alert__heading {
	margin-right: 0.5em;
	font-weight: 500;
}
.q-alert__subheading {
	padding-right: 30px;
}
.q-alert__cta {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
}
@media (min-width: 375px) {
	.q-alert__cta {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-alert__cta {
		font-size: 15px;
	}

}
@media (min-width: 1080px) {
	.q-alert__cta {
		margin-left: auto;
		margin-right: 0;
	}

}
.q-alert__link {
	color: inherit;
	text-decoration: none;
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	color: #2e8be0;
	font-weight: 500;
}
.q-alert__link:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-alert__link {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-alert__link {
		font-size: 15px;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-alert__link:hover {
		color: #1a77cc;
	}

}
.q-alert__close {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 12px;
	height: 12px;
	line-height: 12px;
	color: #707d90;
	cursor: pointer;
}
.q-alert__close:focus {
	outline: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-alert__close:hover {
		color: #1d2737;
	}

}

.q-app-link {
	color: inherit;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}
.q-app-link:focus {
	outline: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-app-link:hover {
		color: #262626;
	}
	.q-app-link:hover::after {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

}
.q-app-link::after {
	content: "";
	display: inline-block;
	margin-left: 4px;
	width: 8px;
	height: 34px;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/arrow-right.svg) 100% 13px no-repeat;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;
}
@media (min-width: 480px) {
	.q-app-link::after {
		margin-left: 8px;
	}

}
.q-app-link__icon {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 35px;
	height: 25.5px;
}
.q-app-link__icon > img {
	width: auto;
	max-height: 100%;
}
@media (min-width: 480px) {
	.q-app-link__icon {
		width: 55px;
		height: 34px;
	}

}
.q-app-link__text {
	display: inline-block;
	font-family: "Gotham", sans-serif;
	font-size: 14px;
	line-height: 34px;
	font-weight: 500;
	letter-spacing: -0.025em;
	white-space: nowrap;
}
@media (min-width: 480px) {
	.q-app-link__text {
		font-size: 15px;
	}

}
.q-app-link__svg {
	height: 36px;
	width: 36px;
}

.q-blockquote {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	visibility: hidden;
	opacity: 0;
	height: 0;
	color: #f7f8fa;
	overflow: hidden;
	transition: visibility 200ms, opacity 200ms;
}
.q-square__content .q-blockquote {
	overflow: visible;
}
.q-blockquote--active {
	visibility: visible;
	opacity: 1;
	height: auto;
}
.q-blockquote--dark {
	color: #707d90;
}
.q-blockquote::after {
	display: none;
}
.q-blockquote__brand {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-bottom: 30px;
	width: 100%;
	height: 40px;
}
@media (min-width: 720px) {
	.q-blockquote__brand {
		max-height: 50px;
	}

}
.q-blockquote__brand img {
	max-height: 100%;
	width: auto;
	filter: contrast(0) brightness(2); /* color overlay image white */
}
.q-blockquote--dark .q-blockquote__brand img {
	filter: contrast(1);
}
.q-blockquote__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 22px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.78571em;
	color: #fff;
	font-weight: 500;
	line-height: 1.5;
}
@media (min-width: 375px) {
	.q-blockquote__heading {
		font-size: 22px;
		font-size: calc(0.00656 * 100vw + (19.54098px));
	}

}
@media (min-width: 1290px) {
	.q-blockquote__heading {
		font-size: 28px;
	}

}
.q-blockquote__content {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	position: relative;
	margin-bottom: 1.57895em;
	min-height: 8.94737em;
	max-width: 21.05263em;
	font-family: "Caecilia", serif;
	font-style: italic;
	font-weight: 700;
}
@media (min-width: 375px) {
	.q-blockquote__content {
		font-size: 15px;
		font-size: calc(0.00437 * 100vw + (13.36066px));
	}

}
@media (min-width: 1290px) {
	.q-blockquote__content {
		font-size: 19px;
	}

}
.q-blockquote__content::before {
	content: open-quote;
	margin-left: -0.75em;
	margin-right: 0.25em;
}
.q-blockquote__content::after {
	content: close-quote;
}
@media (min-width: 720px) {
	.q-blockquote__content--no-quotes::before, .q-blockquote__content--no-quotes::after {
		display: none;
	}

}
.q-blockquote__cite {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 13px;
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 2.66667em;
	line-height: 1;
	color: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	display: flex;
}
@media (min-width: 375px) {
	.q-blockquote__cite {
		font-size: 13px;
		font-size: calc(0.00219 * 100vw + (12.18033px));
	}

}
@media (min-width: 1290px) {
	.q-blockquote__cite {
		font-size: 15px;
	}

}
.q-blockquote__cite--dark {
	color: #1d2737;
}
@media (min-width: 480px) {
	.q-blockquote__cite {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

}
.q-blockquote__headshot {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 30px;
	margin-bottom: 15px;
	width: 64px;
	height: 64px;
	border-radius: 64px;
}
@media (min-width: 480px) {
	.q-blockquote__headshot {
		margin-bottom: 0;
	}

}
.q-blockquote__name, .q-blockquote__role {
	display: block;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
}
.q-blockquote__name {
	font-size: 17px;
	margin-bottom: 0.45em;
	font-weight: 400;
}
@media (min-width: 375px) {
	.q-blockquote__name {
		font-size: 17px;
		font-size: calc(0.00328 * 100vw + (15.77049px));
	}

}
@media (min-width: 1290px) {
	.q-blockquote__name {
		font-size: 20px;
	}

}
.q-blockquote__cta {
	margin-top: auto;
	margin-bottom: 30px;
	color: #2e8be0;
}
.q-blockquote__role {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}
@media (min-width: 375px) {
	.q-blockquote__role {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-blockquote__role {
		font-size: 15px;
	}

}

.q-bullet-list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
}
.q-bullet-list__item {
	font-size: 15px;
	padding: 0 0 20px 40px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	color: #30405b;
	letter-spacing: -0.013em;
	line-height: 1.41176;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/checkmark.svg) 0 0 no-repeat;
}
@media (min-width: 375px) {
	.q-bullet-list__item {
		font-size: 15px;
		font-size: calc(0.00219 * 100vw + (14.18033px));
	}

}
@media (min-width: 1290px) {
	.q-bullet-list__item {
		font-size: 17px;
	}

}
.q-bullet-list__item--small {
	font-size: 14px;
}
@media (min-width: 375px) {
	.q-bullet-list__item--small {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-bullet-list__item--small {
		font-size: 16px;
	}

}
.q-bullet-list--arrows .q-bullet-list__item {
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/arrow-right-bullet.svg) 0 0 no-repeat;
}
.q-bullet-list__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.70588em;
	color: #30405b;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-bullet-list__heading {
		font-size: 15px;
		font-size: calc(0.00219 * 100vw + (14.18033px));
	}

}
@media (min-width: 1290px) {
	.q-bullet-list__heading {
		font-size: 17px;
	}

}
.q-bullet-list__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
	margin-bottom: 1.5625em;
	color: #6a778b;
}
@media (min-width: 375px) {
	.q-bullet-list__copy {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-bullet-list__copy {
		font-size: 16px;
	}

}
.q-bullet-list__item:last-child .q-bullet-list__copy {
	margin-bottom: 0;
}
.q-bullet-list__link {
	color: #2e8be0;
	text-decoration: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-bullet-list__link:hover {
		text-decoration: underline;
	}

}

.q-button {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: nowrap row;
	flex-flow: nowrap row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	padding: 0 25px;
	min-width: 9.33333em;
	font-family: "Gotham", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 44px;
	letter-spacing: -0.015em;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	background: #ed2e26;
	transition: background 200ms, color 200ms;
}
.q-button:focus {
	outline: none;
}
@media (min-width: 720px) {
	.q-button {
		font-size: 15px;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-button:hover {
		background: #e3241c;
		outline: none;
	}

}
.q-button:focus {
	background: #e3241c;
	outline: none;
}
.q-button:active {
	background: #d91a12;
}
.q-button:disabled {
	cursor: default;
	background: #bbb;
}
.q-button--block {
	display: block;
}
.q-button--dark {
	background-color: #1d2737;
}
.q-button--blue {
	background-color: #2C75BE;
}
.q-button--blue-curious {
	background-color: #2e8be0;
}
.q-button--blue-picton {
	background-color: #2face1;
}
.q-button--blue-catalina {
	background-color: #043471;
}
.q-button--blue-mariner {
	background-color: #2c75be;
}
.q-button--green {
	background-color: #68cc61;
}
.q-button--red {
	background-color: #ed2e26;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-button--blue:hover,{
		background: #2162A3;
		outline: none;
	}
	.q-button--blue-curious:hover {
		background: #1F619E;
		outline: none;
	}
	.q-button--blue-picton:hover {
		background: #20799C;
		outline: none;
	}
	.q-button--blue-catalina:hover {
		background: #042550;
		outline: none;
	}
	.q-button--blue-mariner:hover {
		background: #205185;
		outline: none;
	}
	.q-button--green:hover {
		background: #4A9043;
		outline: none;
	}
	.q-button--red:hover {
		background: #A51F1A;
		outline: none;
	}
}
.q-button--secondary {
	background-color: #6ca3cf;
}
.q-button--outline {
	line-height: 42px;
	color: #6ca3cf;
	background: #fff;
	border: 1px solid #6ca3cf;
}
.q-button--outline:focus {
	color: #588fbb;
	background: #fff;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-button--outline:hover {
		color: #588fbb;
		background: #fff;
	}

}

.q-carousel-button {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	left: auto;
	right: auto;
	height: 44px;
	width: 44px;
	cursor: pointer;
	background: #f7fafc;
	border: 1px solid #6ca3cf;
}
.q-carousel-button:focus {
	outline: none;
}
.q-carousel-button:hover {
	background: #fff;
}
.q-carousel-button--prev {
	border-radius: 3px 0 0 3px;
	border-right: 0;
}
.q-carousel-button--next {
	border-radius: 0 3px 3px 0;
}
.q-carousel-button--disabled {
	opacity: 0.6;
	cursor: auto;
	pointer-events: none;
}
.q-carousel-button__icon {
	display: block;
	margin: 0 auto;
	width: 8px;
	height: 12px;
	stroke-width: 2;
	fill: none;
	stroke: #6ca3cf;
}

.q-container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-container-inner {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-container-inner {
		width: 82.94574%;
	}

}

.q-content-hero--red {
	color: #ed2e26;
}

.q-content-hero--blue {
	color: #2e8be0;
}

.q-content-hero__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 45px;
}
@media (min-width: 375px) {
	.q-content-hero__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-content-hero__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-content-hero__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
@media (min-width: 720px) {
	.q-content-hero__container {
		padding-top: 6.99301%;
	}

}
@media (min-width: 1430px) {
	.q-content-hero__container {
		padding-top: 100px;
	}

}

.q-content-hero__inner {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-content-hero__inner {
		width: 82.94574%;
	}

}

.q-content-hero__hgroup {
	margin-bottom: 45px;
}
@media (min-width: 960px) {
	.q-content-hero__hgroup {
		margin-bottom: 10.85271%;
	}

}

.q-content-hero__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 34px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	will-change: opacity, transform;
	opacity: 0;
	margin-bottom: 0.34091em;
	max-width: 19.09091em;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-content-hero__heading {
		font-size: 34px;
		font-size: calc(0.01093 * 100vw + (29.90164px));
	}

}
@media (min-width: 1290px) {
	.q-content-hero__heading {
		font-size: 44px;
	}

}

.q-content-hero__subheading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 22px;
	font-family: "Gotham", sans-serif;
	font-weight: 300;
	letter-spacing: -0.015em;
	line-height: 1.16667;
	color: #6a778b;
	will-change: opacity, transform;
	opacity: 0;
	max-width: 19.44444em;
	min-height: 2.33333em;
}
@media (min-width: 375px) {
	.q-content-hero__subheading {
		font-size: 22px;
		font-size: calc(0.0153 * 100vw + (16.2623px));
	}

}
@media (min-width: 1290px) {
	.q-content-hero__subheading {
		font-size: 36px;
	}

}
.q-content-hero__subheading p {
	margin: 0;
}

.q-content-hero__box-wrap {
	will-change: opacity, transform;
	opacity: 0;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	position: relative;
	z-index: 1;
	margin-left: auto;
	margin-right: auto;
	width: 360px;
	max-width: 100%;
}
@media (min-width: 720px) {
	.q-content-hero__box-wrap {
		width: 40.31008%;
		min-width: 420px;
	}

}
@media (min-width: 960px) {
	.q-content-hero__box-wrap {
		margin-right: 8.52713%;
	}

}
@media (min-width: 960px) {
	.q-content-hero__box-wrap-inner {
		margin-top: -21.15385%;
	}

}

.q-content-hero__link {
	will-change: opacity, transform;
	opacity: 0;
	font-size: 14px;
	margin-top: 2em;
}
@media (min-width: 375px) {
	.q-content-hero__link {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-content-hero__link {
		font-size: 15px;
	}

}
@media (min-width: 960px) {
	.q-content-hero__link {
		margin-bottom: -2em;
	}

}

.q-content-hero__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-bottom: 10.07752%;
}
@media (min-width: 960px) {
	.q-content-hero__content {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		background: #f7fafc;
	}

}
.q-content-hero__content--no-padding {
	padding-bottom: 0;
	margin-bottom: 10.07752%;
	background: transparent;
}
@media (min-width: 1080px) {
	.q-content-hero__content--no-padding {
		background: #f7fafc;
	}

}
.q-content-hero__content-inner {
	will-change: opacity, transform;
	opacity: 0;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.q-content-hero__list {
	will-change: opacity, transform;
	opacity: 0;
}

.q-copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
}
@media (min-width: 375px) {
	.q-copy {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-copy {
		font-size: 16px;
	}

}

.q-default-hero {
	position: relative;
	z-index: 1;
}
.q-default-hero--red {
	color: #ed2e26;
}
.q-default-hero--curious-blue,
.q-content-hero--curious-blue {
	color: #2e8be0;
}
.q-default-hero--picton-blue {
	color: #2face1;
}
.q-default-hero--mariner-blue {
	color: #2c75be;
}
.q-default-hero--green {
	color: #68cc61;
}
.q-default-hero--catalina-blue {
	color: #043471;
}
.q-default-hero__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 45px;
}
@media (min-width: 375px) {
	.q-default-hero__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-default-hero__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-default-hero__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
@media (min-width: 720px) {
	.q-default-hero__container {
		padding-top: 6.99301%;
	}

}
@media (min-width: 1430px) {
	.q-default-hero__container {
		padding-top: 100px;
	}

}
.q-default-hero__content {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}
@media (min-width: 1080px) {
	.q-default-hero__content {
		width: 82.94574%;
	}

}
.q-default-hero__splash {
	position: relative;
	padding-bottom: 8.52713%;
}
@media (min-width: 480px) {
	.q-default-hero__splash {
		min-height: 480px;
	}

}
.q-default-hero--square-baseline .q-default-hero__splash {
	padding-bottom: 0;
	margin-top: 7.75194%;
	padding-top: 8.52713%;
}
.q-default-hero__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 34px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	will-change: opacity, transform;
	opacity: 0;
	margin-bottom: 0.34091em;
	max-width: 19.09091em;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-default-hero__heading {
		font-size: 34px;
		font-size: calc(0.01093 * 100vw + (29.90164px));
	}

}
@media (min-width: 1290px) {
	.q-default-hero__heading {
		font-size: 44px;
	}

}
.q-default-hero__subheading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 22px;
	font-family: "Gotham", sans-serif;
	font-weight: 300;
	letter-spacing: -0.015em;
	line-height: 1.16667;
	color: #6a778b;
	will-change: opacity, transform;
	opacity: 0;
	margin-bottom: 0.83333em;
	max-width: 21.11111em;
	min-height: 2.33333em;
}
@media (min-width: 375px) {
	.q-default-hero__subheading {
		font-size: 22px;
		font-size: calc(0.0153 * 100vw + (16.2623px));
	}

}
@media (min-width: 1290px) {
	.q-default-hero__subheading {
		font-size: 36px;
	}

}
.q-default-hero__link {
	will-change: opacity, transform;
	opacity: 0;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}
@media (min-width: 1080px) {
	.q-default-hero__link {
		margin-bottom: -1em;
	}

}
.q-default-hero__image {
	will-change: opacity, transform;
	opacity: 0;
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	min-height: 390px;
	max-height: 100%;
	background-color: #f7fafc;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left top;
}
.q-default-hero__image::before {
	content: "";
	display: block;
	padding-bottom: 39.53488%;
}
@media (min-width: 480px) {
	.q-default-hero__image {
		display: block;
	}

}
.q-default-hero--square-baseline .q-default-hero__image {
	top: 0;
	bottom: auto;
}
.q-default-hero__box-wrap {
	will-change: opacity, transform;
	opacity: 0;
	position: relative;
	z-index: 1;
	margin-left: auto;
	margin-right: 8.52713%;
	width: 360px;
	max-width: 100%;
}
@media (min-width: 720px) {
	.q-default-hero__box-wrap {
		width: 40.31008%;
		min-width: 420px;
	}

}
.q-default-hero--no-animation .q-default-hero__heading,
.q-default-hero--no-animation .q-default-hero__subheading,
.q-default-hero--no-animation .q-default-hero__image,
.q-default-hero--no-animation .q-default-hero__box-wrap {
	opacity: 1;
}

.q-footer {
	background: #1d2737;
	border-bottom: 6px solid #ed2e26;
	/* not sure if this bit will be part of final design */
	/* mobile contact links */
}
.q-footer__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-footer__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-footer__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-footer__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
@media (min-width: 720px) {
	.q-footer__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

}
.q-footer__row {
	padding-top: 70px;
	padding-bottom: 70px;
}
@media (min-width: 720px) {
	.q-footer__row {
		padding-top: 4.1958%;
		padding-bottom: 4.1958%;
	}

}
@media (min-width: 1430px) {
	.q-footer__row {
		padding-top: 60px;
		padding-bottom: 60px;
	}

}
@media (min-width: 720px) {
	.q-footer__row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
		max-width: 100%;
	}

}
.q-footer__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
}
.q-footer__list-item {
	padding: 0 0 12px;
}
.q-footer__column {
	margin-top: 45px;
}
@media (min-width: 720px) {
	.q-footer__column {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
		-ms-flex-item-align: start;
		align-self: flex-start;
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-width: 25%;
		column-width: 25%;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}

}
@media (min-width: 1080px) {
	.q-footer__column {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 50%;
	}

}
@media (min-width: 1280px) {
	.q-footer__column {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 50%;
		-webkit-column-count: 3;
		column-count: 3;
		-webkit-column-width: 16.66667%;
		column-width: 16.66667%;
	}

}
.q-footer__column--desktop {
	display: none;
}
@media (min-width: 720px) {
	.q-footer__column--desktop {
		display: block;
	}

}
.q-footer__column--mobile {
	display: block;
}
@media (min-width: 720px) {
	.q-footer__column--mobile {
		display: none;
	}

}
@media (min-width: 720px) {
	.q-footer__column--wide {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
	}

}
@media (min-width: 1080px) {
	.q-footer__column--wide {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 33.33333%;
		padding-right: 30px;
		margin-left: 8.33333%;
	}

}
.q-footer__column--nav {
	display: none;
}
@media (min-width: 720px) {
	.q-footer__column--nav {
		display: block;
	}

}
.q-footer__heading {
	font-size: 20px;
	color: #fff;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.01em;
}
@media (min-width: 375px) {
	.q-footer__heading {
		font-size: 20px;
		font-size: calc(0.01093 * 100vw + (15.90164px));
	}

}
@media (min-width: 1290px) {
	.q-footer__heading {
		font-size: 30px;
	}

}
.q-footer__subheading {
	color: inherit;
	text-decoration: none;
	margin-top: 0;
	margin-bottom: 15px;
	color: #fff;
	font-family: "Gotham", sans-serif;
	font-size: 17px;
	letter-spacing: -0.012em;
	font-weight: normal;
}
.q-footer__subheading:focus {
	outline: none;
}
.q-footer__copy {
	font-size: 15px;
	max-width: 28.88889em;
	color: #6a778b;
	font-family: "Caecilia", serif;
}
@media (min-width: 375px) {
	.q-footer__copy {
		font-size: 15px;
		font-size: calc(0.00328 * 100vw + (13.77049px));
	}

}
@media (min-width: 1290px) {
	.q-footer__copy {
		font-size: 18px;
	}

}
.q-footer__search {
	margin: 30px 0;
}
.q-footer__group {
	padding: 0 0 40px;
	line-height: 1.4;
	-webkit-column-break-inside: avoid;
	break-inside: avoid-column;
}
.q-footer__link {
	color: inherit;
	text-decoration: none;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #6a778b;
}
.q-footer__link:focus {
	outline: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-footer__link:hover {
		color: #fff;
	}

}
.q-footer__service {
	margin: 45px 0 30px;
}
.q-footer__service-list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
}
.q-footer__service-item {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 5px 0;
	line-height: 1.4;
}
.q-footer__service-item::after {
	content: "—";
	display: inline-block;
	padding: 0 4px 0 6px;
}
.q-footer__service-item:last-of-type::after {
	display: none;
}
.q-footer__copyright {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 12px;
	display: block;
	padding: 30px 0 0;
	text-align: center;
}
@media (min-width: 375px) {
	.q-footer__copyright {
		font-size: 12px;
		font-size: calc(0.00219 * 100vw + (11.18033px));
	}

}
@media (min-width: 1290px) {
	.q-footer__copyright {
		font-size: 14px;
	}

}
@media (min-width: 720px) {
	.q-footer__copyright {
		padding-top: 60px;
		padding-left: 15px;
		text-align: left;
	}

}
@media (min-width: 1080px) {
	.q-footer__copyright {
		margin-left: 8.33333%;
	}

}
.q-footer-mobile {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
}
@media (min-width: 720px) {
	.q-footer-mobile {
		display: none;
	}

}
.q-footer-mobile__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	margin-bottom: 30px;
}
.q-footer-mobile__item {
	margin-bottom: 5px;
}
/*
 * override LivePerson styles
 */
#lp-chat-link-footer > div {
	margin: 0 auto !important;
	width: 100% !important;
}
#lp-chat-link-footer > div > div {
	text-align: center !important;
	position: static !important;
	line-height: 44px !important;
}

.q-header {
	position: relative;
	z-index: 200;
	line-height: 80px;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
}
.q-header__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
@media (min-width: 375px) {
	.q-header__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-header__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-header__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-header__hamburger {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: absolute;
	margin: 0 -20px;
	padding: 0 20px;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
}
.q-header__hamburger:focus {
	outline: none;
}
@media (min-width: 720px) {
	.q-header__hamburger {
		display: none;
	}

}
.q-header__logo {
	display: block;
	-ms-flex: none;
	-webkit-box-flex: 0;
	flex: none;
	height: 35px;
	margin: 17.5px auto 0;
	opacity: 1;
	overflow: hidden;
	text-decoration: none;
	text-indent: 100%;
	transition: opacity 200ms;
	width: 111px;
}
.q-header__logo:focus {
	outline: none;
}
@media screen and (min-width: 720px) {
	.q-header__logo {
		margin: -5px 0 0;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-header__logo:hover {
		opacity: 0.7;
	}

}
.q-header__navigation {
	display: none;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	margin: 0 auto;
	text-align: center;
}
@media (min-width: 720px) {
	.q-header__navigation {
		display: block;
	}

}
.q-header__actions {
	display: none;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-left: auto;
	margin-right: 0;
	position: relative;
	z-index: 2;
}
@media (min-width: 720px) {
	.q-header__actions {
		display: block;
	}

}

.q-heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 26px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
}
@media (min-width: 375px) {
	.q-heading {
		font-size: 26px;
		font-size: calc(0.0153 * 100vw + (20.2623px));
	}

}
@media (min-width: 1290px) {
	.q-heading {
		font-size: 40px;
	}

}

.q-heading-plus-cta {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 1.5625em;
}
@media (min-width: 375px) {
	.q-heading-plus-cta {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-heading-plus-cta {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-heading-plus-cta {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-heading-plus-cta__inner {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-heading-plus-cta__inner {
		width: 82.94574%;
	}

}
@media (min-width: 720px) {
	.q-heading-plus-cta__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

}
.q-heading-plus-cta__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 26px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 15px;
}
@media (min-width: 375px) {
	.q-heading-plus-cta__heading {
		font-size: 26px;
		font-size: calc(0.0153 * 100vw + (20.2623px));
	}

}
@media (min-width: 1290px) {
	.q-heading-plus-cta__heading {
		font-size: 40px;
	}

}
@media (min-width: 720px) {
	.q-heading-plus-cta__heading {
		margin-bottom: 0;
		padding-right: 15px;
	}

}
.q-heading-plus-cta__cta {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 0;
}
@media (min-width: 720px) {
	.q-heading-plus-cta__cta {
		margin-left: auto;
		margin-right: 0;
	}

}

.q-icon-plus-content {
	width: 100%;
}
.q-icon-plus-content--icon-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.q-icon-plus-content__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 1.25em;
	margin-right: 1.875em;
	height: 60px;
	width: 3.125em;
}
.q-icon-plus-content--icon-left .q-icon-plus-content__icon {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.q-icon-plus-content__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 20px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.57692em;
}
@media (min-width: 375px) {
	.q-icon-plus-content__heading {
		font-size: 20px;
		font-size: calc(0.00656 * 100vw + (17.54098px));
	}

}
@media (min-width: 1290px) {
	.q-icon-plus-content__heading {
		font-size: 26px;
	}

}
.q-icon-plus-content__heading--small {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.88235em;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-icon-plus-content__heading--small {
		font-size: 15px;
		font-size: calc(0.00219 * 100vw + (14.18033px));
	}

}
@media (min-width: 1290px) {
	.q-icon-plus-content__heading--small {
		font-size: 17px;
	}

}
.q-icon-plus-content__image {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}
.q-icon-plus-content__content {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.q-icon-plus-content__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
}
.q-icon-plus-content__copy p {
	margin: 0;
}
@media (min-width: 375px) {
	.q-icon-plus-content__copy {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-icon-plus-content__copy {
		font-size: 16px;
	}

}

.q-laptop {
	position: relative;
	width: 1072px;
	max-width: 100%;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/laptop-1x.png) 0 0 no-repeat;
	background-size: 100%;
	background-repeat: no-repeat;
}
.q-laptop--will-animate {
	will-change: opacity, transform;
	opacity: 0;
}
.q-laptop--centered {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-laptop--fixed-width {
		max-width: none;
	}

}
@media (min-width: 1430px) {
	.q-laptop {
		max-width: none;
	}

}
.q-laptop::before {
	content: "";
	display: block;
	padding-top: 78.73134%;
}
.q-laptop__screen {
	position: absolute;
	top: 4.73934%;
	left: 12.12687%;
	bottom: 34.36019%;
	right: 11.84701%;
	background: #f7fafc;
	overflow: hidden;
}
.q-laptop__image {
	min-width: 100%;
}

.q-link {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	line-height: 16px;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	color: #2e8be0;
}
.q-link:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-link {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-link {
		font-size: 15px;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-link:hover {
		color: #1a77cc;
	}
	.q-link:hover::after {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

}
.q-link::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	width: 8px;
	height: 30px;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/link-arrow.svg) 100% 11px no-repeat;
	transition: color 200ms, -webkit-transform 200ms;
	transition: transform 200ms, color 200ms;
	transition: transform 200ms, color 200ms, -webkit-transform 200ms;
}
.q-link--multiline::after {
	background-position: 100% 95%;
}
.q-link--white {
	color: #fff;
}
.q-link--white::after {
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/arrow-right-white.svg);
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-link--white:hover {
		color: #fff;
	}

}
.q-link--gray {
	color: #6a778b;
}
.q-link--gray::after {
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/arrow-right-gray.svg);
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-link--gray:hover {
		color: #566377;
	}

}

.q-more-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-height: calc(100vh - 60px);
	overflow-y: auto;
	padding-top: 60px;
}
.q-more-nav__group {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	position: relative;
	padding: 0 15px;
	width: 20%;
}
.q-more-nav__group--apps {
	width: 40%;
}
.q-more-nav__group--bordered::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(155,155,155, 0.75);
}
@media (min-width: 960px) {
	.q-more-nav__group {
		padding: 0 30px;
	}

}
.q-more-nav-apps__container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.q-apps-nav__column {
	flex: 1;
}
.q-apps-nav__column:first-child {
	margin-right: 15px;
}
@media (min-width: 960px) {
	.q-apps-nav__column:first-child {
		margin-right: 30px;
	}
}
.q-more-nav__heading,
.q-search-link--heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	margin-bottom: 15px;
	min-height: 2.4em;
	font-family: "Gotham", sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #6ca3cf;
}
.q-more-nav__heading--separator {
	margin-top: 10px;
}
@media (min-width: 1080px) {
	.q-more-nav__heading {
		letter-spacing: 0.125em;
	}

}
.q-more-nav__subheading {
	margin: 0 0 2.07692em;
	line-height: 1.53846;
	color: #6CA3CF;
	font-weight: 500;
	font-size: 12px;
	vertical-align: top;
	font-family: "Gotham", sans-serif;
}
.q-more-nav__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	padding-bottom: 18px;
	font-size: 12px;
	line-height: 1.3;
}
.q-apps-nav__column .q-more-nav__list {
	padding-bottom: 0;
}
@media (min-width: 960px) {
	.q-more-nav__list,
	.q-more-nav__subheading,
	.q-search-links a,
	#lp-chat-link-resources div {
		font-size: 13px !important;
	}

}
.q-more-nav__list-item {
	padding-bottom: 2.07692em;
}
.q-more-nav__link,
.q-search-links a,
#lp-chat-link-resources div {
	text-decoration: none !important;
	display: inline-block !important;
	vertical-align: top !important;
	color: #30405b;
	line-height: 1.53846 !important;
	top: 0 !important;
	left: 0 !important;
}
.q-more-nav__link:focus {
	outline: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-more-nav__link:hover,
	.q-search-links a:hover,
	#lp-chat-link-resources div:hover {
		color: #6a778b;
	}

}
@media (min-width: 960px) {
	.q-more-nav__link {
		margin-bottom: 0;
	}

}
.q-more-nav__link--beta:after,
.q-navigation-mobile__link--beta:after {
	color: #6A778B;
	content: "(Beta)";
	font-size: smaller;
	margin-left: 1ex;
	text-transform: uppercase;
}

#lp-chat-link-nav div {
	font-family: "Gotham", sans-serif !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	position: static !important;
	width: auto !important;
	height: auto !important;
}
.q-nav-actions {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
@media (min-width: 375px) {
	.q-nav-actions {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-nav-actions {
		font-size: 15px;
	}

}
.q-nav-actions__item {
	position: relative;
	margin-right: 15px;
}
@media (min-width: 1080px) {
	.q-nav-actions__item {
		margin-right: 30px;
	}

}
.q-nav-actions__item:last-child {
	margin-right: 0;
}
.q-nav-actions__link {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.q-nav-actions__link:focus {
	outline: none;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-nav-actions__link:hover {
		color: #262626;
	}

}
.q-nav-actions__link--menu:hover + .q-sub-nav {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	transition-delay: 50ms;
	transform: translate3d(-50%, 0, 0);
}

.q-navigation {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #627281;
}
@media (min-width: 375px) {
	.q-navigation {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
		min-height: 80px;
	}

}
@media (min-width: 1290px) {
	.q-navigation {
		font-size: 15px;
	}
}
.q-navigation__item {
	position: relative;
}
.q-navigation__item--parent {
	position: static;
}
.q-navigation__link {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 0 15px;
	cursor: pointer;
}
.q-navigation__link:focus {
	outline: none;
}
@media (min-width: 1080px) {
	.q-navigation__link {
		padding: 0 30px;
	}

}
.q-navigation__link--active, .q-navigation__link:hover {
	color: #262626;
}
.q-navigation__link--menu:hover + * {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	transition-delay: 50ms;
	transform: translate3d(-50%, 0, 0);
}
.q-navigation__link--menu-more + * {
	visibility: hidden;
}
.q-navigation__link--menu-more:hover + * {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	transition-delay: 50ms;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition-delay: 50ms;
}
.q-navigation__link--menu-more::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	width: 9px;
	height: 6px;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/chevron.svg) 0 50% no-repeat;
	background-size: contain;
}
.q-navigation-mobile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.q-navigation-mobile__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 80px;
	flex: 0 0 80px;
	height: 80px;
	line-height: 80px;
}
.q-navigation-mobile__button {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 70px;
	height: 30px;
	text-indent: 100%;
	white-space: nowrap;
	cursor: pointer;
	background: center url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/close.svg) no-repeat;
	overflow: hidden;
}
.q-navigation-mobile__button:focus {
	outline: none;
}
.q-navigation-mobile__button--back {
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/back.svg);
}
.q-navigation-mobile__title {
	font-family: "Gotham", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #4a4a4a;
}
.q-navigation-mobile__panel {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	overflow: scroll;
	max-height: 100%;
}
.q-navigation-mobile__panel--first {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.q-navigation-mobile__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	padding: 15px 30px 30px 70px;
	overflow: auto;
}
.q-navigation-mobile__item {
	display: block;
	margin: 0 0 20px;
	font-family: "Gotham", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #4a4a4a;
	cursor: pointer;
}
.q-navigation-mobile__appheading {
	margin: 0;
	font-size: inherit;
	font-weight: 500;
	font-family: inherit;
	color: #6CA3CF;
}
.q-navigation-mobile__item--seperator {
	border-bottom: 1px solid rgba(155,155,155,0.35);
	padding-bottom: 20px;
}
.q-navigation-mobile__link {
	text-decoration: none;
}
.q-navigation-mobile__link:focus {
	outline: none;
}
.q-navigation-mobile__link--has-children::after {
	content: "";
	display: inline-block;
	margin-left: 10px;
	width: 8px;
	height: 12px;
	background: left center url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/chevron-nav.svg) no-repeat;
}

.q-numbers {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.q-numbers--linear {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
@media (min-width: 720px) {
	.q-numbers--linear {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}

}
.q-numbers__item {
	margin-bottom: 1.875em;
}
.q-numbers--will-animate .q-numbers__item {
	will-change: opacity, transform;
	opacity: 0;
}
.q-numbers--linear .q-numbers__item {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
@media (min-width: 720px) {
	.q-numbers--linear .q-numbers__item {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 25%;
		margin-bottom: 0;
	}

}
.q-numbers__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	display: block;
	color: #30405b;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-numbers__heading {
		font-size: 15px;
		font-size: calc(0.00219 * 100vw + (14.18033px));
	}

}
@media (min-width: 1290px) {
	.q-numbers__heading {
		font-size: 17px;
	}

}
.q-numbers__value {
	font-size: 30px;
	display: block;
	color: #9bc0e1;
	font-family: "Gotham", sans-serif;
	font-weight: 300;
	line-height: 1.25;
	letter-spacing: -0.03em;
}
@media (min-width: 375px) {
	.q-numbers__value {
		font-size: 30px;
		font-size: calc(0.01311 * 100vw + (25.08197px));
	}

}
@media (min-width: 1290px) {
	.q-numbers__value {
		font-size: 42px;
	}

}

.q-play-button {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	color: currentColor;
	cursor: pointer;
}
.q-play-button:focus {
	outline: none;
}
.q-play-button:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-play-button {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-play-button {
		font-size: 15px;
	}

}
.q-play-button::before {
	content: "";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 12px;
	width: 24px;
	height: 24px;
	border-radius: 24px;
	background: currentColor;
}
.q-play-button::after {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	z-index: 1;
	margin-top: auto;
	margin-bottom: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
}
.q-play-button__text {
	color: #627281;
	transition: color 200ms;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-play-button__text:hover {
		color: #4c5864;
	}

}
.q-play-button__text--light {
	color: #fff;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-play-button__text--light:hover {
		color: #e6e6e6;
	}

}

.q-quote-box--has-image {
	padding-top: 60px;
	padding-bottom: 60px;
	padding-top: 0;
}
@media (min-width: 720px) {
	.q-quote-box--has-image {
		padding-top: 8.39161%;
		padding-bottom: 8.39161%;
	}

}
@media (min-width: 1430px) {
	.q-quote-box--has-image {
		padding-top: 120px;
		padding-bottom: 120px;
	}

}

.q-quote-box__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 26px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.75em;
	max-width: 19em;
}
@media (min-width: 375px) {
	.q-quote-box__heading {
		font-size: 26px;
		font-size: calc(0.0153 * 100vw + (20.2623px));
	}

}
@media (min-width: 1290px) {
	.q-quote-box__heading {
		font-size: 40px;
	}

}

.q-quote-box__row {
	position: relative;
}

@media (min-width: 720px) {
	.q-quote-box--has-image .q-quote-box__row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}

}

@media (min-width: 720px) {
	.q-quote-box--has-image .q-quote-box__content, .q-quote-box__image {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 50%;
	}

}

.q-quote-box__content {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	max-width: 550px;
}
@media (min-width: 720px) {
	.q-quote-box__content {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		margin-bottom: 0;
	}

}
.q-quote-box__content::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 55px;
	left: -60px;
	width: 103px;
	height: 80px;
	background: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/bloc.svg) 0 0 no-repeat;
	background-size: cover;
}
@media (min-width: 720px) {
	.q-quote-box__content::before {
		width: 206px;
		height: 161px;
	}

}

@media (min-width: 720px) {
	.q-quote-box--has-image .q-quote-box__content {
		padding-left: 90px;
	}

}

.q-quote-box__image {
	position: relative;
	z-index: 0;
}

.q-quote-box__img {
	margin: 0 auto 60px;
}
@media (min-width: 720px) {
	.q-quote-box__img {
		margin: 0;
	}

}

.q-quote-box__counter {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 18px;
	display: block;
	position: relative;
	z-index: 1;
	padding: 1.2em 0 calc(1.2em + 30px);
	width: 9.09091%;
	min-width: 70px;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.0332em;
	text-align: center;
	color: #44536b;
	cursor: pointer;
	border: 1px solid #f6fafd;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 11px 22px 0 rgba(170, 177, 188, 0.2);
}
.q-quote-box__counter:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-quote-box__counter {
		font-size: 18px;
		font-size: calc(0.00765 * 100vw + (15.13115px));
	}

}
@media (min-width: 1290px) {
	.q-quote-box__counter {
		font-size: 25px;
	}

}
@media (min-width: 720px) {
	.q-quote-box__counter {
		position: absolute;
		bottom: -30px;
		left: 43.92523%;
	}

}
.q-quote-box__counter::before {
	content: "/";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 30px;
	margin: auto;
	height: 2ex;
}
.q-quote-box__counter::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
	height: 30px;
	text-align: center;
	color: #fff;
	background-color: #ed2e26;
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/chevron-down-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 13px 8px;
}
.q-quote-box__counter span {
	display: inline-block;
	width: 1em;
}

.q-related-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
@media (min-width: 720px) {
	.q-related-content {
		padding-top: 8.39161%;
		padding-bottom: 8.39161%;
	}

}
@media (min-width: 1430px) {
	.q-related-content {
		padding-top: 120px;
		padding-bottom: 120px;
	}

}
.q-related-content--narrow {
	padding-top: 0;
}
@media (min-width: 720px), (min-width: 1080px) {
	.q-related-content--narrow {
		padding-top: 0;
	}

}
.q-related-content__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-related-content__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-related-content__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-related-content__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-related-content__container-inner {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-related-content__container-inner {
		width: 82.94574%;
	}

}
.q-related-content__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 26px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.75em;
	max-width: 19em;
}
@media (min-width: 375px) {
	.q-related-content__heading {
		font-size: 26px;
		font-size: calc(0.0153 * 100vw + (20.2623px));
	}

}
@media (min-width: 1290px) {
	.q-related-content__heading {
		font-size: 40px;
	}

}
.q-related-content__text {
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 34px;
	line-height: 1.83333;
}
@media (min-width: 375px) {
	.q-related-content__text {
		font-size: 16px;
		font-size: calc(0.00219 * 100vw + (15.18033px));
	}

}
@media (min-width: 1290px) {
	.q-related-content__text {
		font-size: 18px;
	}

}
@media (min-width: 720px) {
	.q-related-content__row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}

}
@media (min-width: 720px) {
	.q-related-content__row--reverse {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.q-related-content__row--reverse .q-related-content__textblock {
		margin-left: 16.66667%;
	}

}
@media (min-width: 720px) {
	.q-related-content__content, .q-related-content__image {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		padding-left: 15px;
		padding-right: 15px;
		width: 50%;
	}

}
.q-related-content__content {
	margin-bottom: 30px;
}
@media (min-width: 720px) {
	.q-related-content__content {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		margin-bottom: 0;
	}

}
.q-related-content__textblock {
	max-width: 27.5em;
}
.q-related-content__img {
	margin: 0 auto 60px;
}
@media (min-width: 720px) {
	.q-related-content__img {
		margin: 0;
	}

}

.q-resource-label {
	color: inherit;
	text-decoration: none;
	font-size: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	line-height: 1.2;
	color: #9bc0e1;
	transition: color 200ms;
}
.q-resource-label:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-resource-label {
		font-size: 15px;
		font-size: calc(0.00219 * 100vw + (14.18033px));
	}

}
@media (min-width: 1290px) {
	.q-resource-label {
		font-size: 17px;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-resource-label:hover {
		color: #2e8be0;
	}

}
.q-resource-label--category {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.q-resource-label__text {
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	color: #30405b;
}
.q-resource-label--category .q-resource-label__text {
	color: inherit;
	text-transform: uppercase;
	font-size: 12px;
}
.q-resource-label__detail {
	font-size: 14px;
	display: block;
	margin-top: 0.3125em;
	font-family: "Caecilia", serif;
	color: #6a778b;
}
@media (min-width: 375px) {
	.q-resource-label__detail {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-resource-label__detail {
		font-size: 16px;
	}

}
.q-resource-label__icon {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 1.17647em;
	margin-top: 3px;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	background-color: currentColor;
}

.q-search-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 330px;
	height: 43px;
	line-height: 43px;
}
.q-search-form__input {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	padding: 0 12px;
	font-family: "Caecilia", serif;
	font-style: italic;
	font-size: 15px;
	color: #fff;
	background: transparent;
	border: 1px solid #6ca3cf;
	border-radius: 2px 0 0 2px;
	border-width: 1px 0 1px 1px;
}
.q-search-form__input:focus {
	outline: none;
}
.q-search-form__button {
	width: 80px;
	min-width: 0;
	color: #fff;
	background: #ed2e26;
	border: 1px solid #ed2e26;
	border-radius: 0 2px 2px 0;
}

.q-segment {
	padding-top: 60px;
	padding-bottom: 60px;
}
@media (min-width: 720px) {
	.q-segment {
		padding-top: 8.39161%;
		padding-bottom: 8.39161%;
	}

}
@media (min-width: 1430px) {
	.q-segment {
		padding-top: 120px;
		padding-bottom: 120px;
	}

}
.q-segment__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-segment__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-segment__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-segment__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-segment__content {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1080px) {
	.q-segment__content {
		width: 82.94574%;
	}

}

.q-select {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: relative;
	z-index: 2;
	padding: 0 30px;
	margin-bottom: 12px;
	width: 100%;
	height: 52px;
	color: inherit;
	border: 0;
	background-color: transparent;
	border: 1px solid #627281;
	border-radius: 2px;
	padding-right: 45px;
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/form/select-arrows.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) 50%;
	background-size: 8px 20px;
	margin-bottom: 0;
}
.q-select:focus {
	outline: none;
}
.q-select::-webkit-input-placeholder {
	color: inherit;
}
.q-select:-moz-placeholder {
	color: inherit;
}
.q-select::-moz-placeholder {
	color: inherit;
}
.q-select:-ms-input-placeholder {
	color: inherit;
}
.form__sent .q-select:invalid {
	box-shadow: 0 0 0 1px #f00;
}
.q-select:active, .q-select:focus {
	border: 1px solid #627281;
	outline: none;
}
.q-select:active::-webkit-input-placeholder, .q-select:focus::-webkit-input-placeholder {
	color: transparent;
}
.q-select:active:-moz-placeholder, .q-select:focus:-moz-placeholder {
	color: transparent;
}
.q-select:active::-moz-placeholder, .q-select:focus::-moz-placeholder {
	color: transparent;
}
.q-select:active:-ms-input-placeholder, .q-select:focus:-ms-input-placeholder {
	color: transparent;
}
.q-select:required {
	box-shadow: none;
}
.q-select:invalid {
	box-shadow: none;
}
.q-select--light {
	color: #1d2737;
	border-color: #9bc0e1;
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/chevron-selectbox.svg);
	background-size: 12px 8px;
}
.q-select--light:focus {
	border-color: #87accd;
}

.q-square {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	position: relative;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	line-height: 1.78947;
	background-color: currentColor;
}
@media (min-width: 1080px) {
	.q-square::before {
		content: "";
		display: block;
		padding-bottom: 100%;
	}

}
.q-square__inner {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background-color: currentColor;
}
@media (min-width: 1080px) {
	.q-square__inner {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
	}

}
.q-square--justified .q-square__inner {
	bottom: 0;
	margin: auto;
}
.q-square__content {
	padding: 9.61538% 7.69231%;
	background-color: currentColor;
}
@media (min-width: 1080px) {
	.q-square__content {
		padding: 11.53846%;
	}

}
@media (min-width: 1430px) {
	.q-square__content {
		padding: 11.53846% 15.38462%;
		min-height: 400px;
	}

}
.q-square__content--v-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.q-square__content--fit {
	padding-bottom: 30px;
}
@media (min-width: 1080px) {
	.q-square__content--wide {
		padding: 11.53846%;
	}

}
@media (min-width: 1430px) {
	.q-square__content--wide {
		padding: 11.53846% 11.53846% 11.53846% 15.38462%;
	}

}
.q-square--justified .q-square__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
@media (min-width: 1080px) {
	.q-square--justified .q-square__content {
		min-height: 100%;
	}

}
.q-square__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 26px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.73529em;
	line-height: 1.28571;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.013em;
}
@media (min-width: 375px) {
	.q-square__heading {
		font-size: 26px;
		font-size: calc(0.00874 * 100vw + (22.72131px));
	}

}
@media (min-width: 1290px) {
	.q-square__heading {
		font-size: 34px;
	}

}
.q-square__heading--small {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 20px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.89286em;
	line-height: 1.5;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.013em;
}
@media (min-width: 375px) {
	.q-square__heading--small {
		font-size: 20px;
		font-size: calc(0.00874 * 100vw + (16.72131px));
	}

}
@media (min-width: 1290px) {
	.q-square__heading--small {
		font-size: 28px;
	}

}
.q-square__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	font-size: 14px;
	padding-left: 30px;
	line-height: 1.3125em;
	color: #fff;
	list-style: disc outside;
}
@media (min-width: 375px) {
	.q-square__list {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-square__list {
		font-size: 16px;
	}

}
.q-square__list-item {
	margin-bottom: 0.4375em;
}
.q-square__list-item:last-child {
	margin-bottom: 0;
}
.q-square__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	line-height: 1.88889;
	color: #fff;
}
@media (min-width: 375px) {
	.q-square__copy {
		font-size: 15px;
		font-size: calc(0.00328 * 100vw + (13.77049px));
	}

}
@media (min-width: 1290px) {
	.q-square__copy {
		font-size: 18px;
	}

}
.q-square__cta {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	position: relative;
	z-index: 1;
	margin-top: auto;
	margin-bottom: 0;
	padding: 8.65385% 15px 8.65385% 8.65385%;
	line-height: 1.46667em;
	color: #fff;
	background-color: rgba(74, 74, 74, 0.1);
	transition: background-color 200ms;
}
.q-square__cta:focus {
	outline: none;
}
@media (min-width: 375px) {
	.q-square__cta {
		font-size: 14px;
		font-size: calc(0.00109 * 100vw + (13.59016px));
	}

}
@media (min-width: 1290px) {
	.q-square__cta {
		font-size: 15px;
	}

}
@media (min-width: 1080px) {
	.q-square__cta {
		padding-left: 11.53846%;
		text-align: center;
	}

}
@media (min-width: 1430px) {
	.q-square__cta {
		padding-left: 15.38462%;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-square__cta:hover {
		background-color: rgba(74, 74, 74, 0.2);
	}

}
.q-square__cta-link {
	color: inherit;
	text-decoration: none;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin-right: 1em;
}
.q-square__cta-link:focus {
	outline: none;
}
.q-square__cta-arrow {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}

.q-social-list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.q-social-list--centered {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.q-social-list__item {
	color: inherit;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin: 10px 7px 0 0;
}
.q-social-list__item:focus {
	outline: none;
}
.q-social-list__icon path {
	fill: #fff;
}
.q-social-list__icon ellipse {
	stroke: #6ca3cf;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-social-list__icon:hover ellipse {
		stroke: #fff;
	}

}
.q-social-list--dark .q-social-list__icon path {
	fill: #627281;
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-social-list--dark .q-social-list__icon:hover ellipse {
		stroke: #627281;
	}

}

.q-sub-nav {
	position: absolute;
	top: 80%;
	left: 50%;
	z-index: 110;
	opacity: 0;
	margin: 0 auto;
	padding-top: 15px;
	width: 480px;
	text-align: left;
	pointer-events: none;
	-webkit-transform: translate3d(-50%, -8px, 0);
	transform: translate3d(-50%, -8px, 0);
	transition: opacity 0.3s cubic-bezier(0, 1, 0.75, 1), visibility 0.3s, -webkit-transform 0.3s cubic-bezier(0, 1, 0.75, 1);
	transition: transform 0.3s cubic-bezier(0, 1, 0.75, 1), opacity 0.3s cubic-bezier(0, 1, 0.75, 1), visibility 0.3s;
	transition: transform 0.3s cubic-bezier(0, 1, 0.75, 1), opacity 0.3s cubic-bezier(0, 1, 0.75, 1), visibility 0.3s, -webkit-transform 0.3s cubic-bezier(0, 1, 0.75, 1);
	transition-delay: 150ms;
	will-change: opacity, transform;
}
.q-sub-nav {
	max-height: calc(100vh - 60px);
	overflow-y: hidden;
}
.q-sub-nav:hover {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	transition-delay: 50ms;
	transform: translate3d(-50%, 0, 0);
}
.q-sub-nav--login {
	left: -100%;
	width: 300px;
}
.q-sub-nav--more {
	left: 0;
	right: 0;
	width: 1290px;
	max-width: 100vw;
	max-width: calc(100vw - 50px);
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
}
.q-sub-nav--more:hover {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	transition-delay: 50ms;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
@media (min-width: 1080px) {
	.q-sub-nav--more {
		max-width: calc(100vw - 140px);
	}

}
.q-sub-nav__inner {
	position: relative;
	padding: 35px;
	background: #fff;
	border: 1px solid #f6f6f6;
	box-shadow: 0 5px 24px 0 rgba(181, 181, 181, 0.32);
}
.q-sub-nav__inner::after, .q-sub-nav__inner::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 0;
	width: 0;
	pointer-events: none;
	border: solid transparent;
}
.q-sub-nav__inner::after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 9px;
}
.q-sub-nav__inner::before {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #f6f6f6;
	border-width: 10px;
}
.q-sub-nav--login .q-sub-nav__inner::before, .q-sub-nav--login .q-sub-nav__inner::after {
	left: calc(50% - 8px);
}
.q-sub-nav--more .q-sub-nav__inner {
	padding: 0 0 30px 5px;
}
.q-sub-nav--more .q-sub-nav__inner::before, .q-sub-nav--more .q-sub-nav__inner::after {
	left: calc(50% - 37px);
	right: auto;
	margin: 0;
	-webkit-transform: translateX(75px);
	transform: translateX(75px);
}
@media (min-width: 1080px) {
	.q-sub-nav--more .q-sub-nav__inner::before, .q-sub-nav--more .q-sub-nav__inner::after {
		-webkit-transform: translateX(95px);
		transform: translateX(95px);
	}

}
.q-sub-nav__action {
	margin-top: 20px;
}

.q-sub-nav-list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	line-height: 3.46154;
}
@media (min-width: 720px) {
	.q-sub-nav-list {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}

}
@media (min-width: 1080px) {
	.q-sub-nav-list {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 45px;
		column-gap: 45px;
	}

}
.q-sub-nav-list__link {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
	font-size: 12px;
	color: #30405b;
	letter-spacing: 0.011em;
}
.q-sub-nav-list__link:focus {
	outline: none;
}
@media (min-width: 960px) {
	.q-sub-nav-list__link {
		font-size: 13px;
	}

}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-sub-nav-list__link:hover {
		color: #6a778b;
	}

}

.q-svg-dashboard {
	display: block;
	width: 815px;
	max-width: 100%;
	height: auto;
}
.q-svg-dashboard__item {
	opacity: 1;
}
.q-svg-dashboard--will-animate .q-svg-dashboard__item {
	opacity: 0;
}
.q-svg-dashboard__saq-overlay {
	will-change: opacity, transform;
	opacity: 0;
	position: absolute;
	top: 38.91051%;
	left: 56.44172%;
	z-index: 1;
	width: 7.85276%;
	background-color: #68cc61;
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/saq-menu.svg);
	background-size: 48.4375%;
	background-position: 45% 50%;
	background-repeat: no-repeat;
	border-radius: 2px;
	box-shadow: 0 17px 22px 0 rgba(41, 62, 89, 0.23);
}
.q-svg-dashboard__saq-overlay::before {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.q-svg-dashboard__saq-overlay::after {
	content: "";
	position: absolute;
	top: 0;
	right: 7.8125%;
	bottom: 0;
	z-index: 1;
	margin: auto;
	width: 31.25%;
	height: 31.25%;
	background: transparent url(https://d1uyme8f6ss6qi.cloudfront.net/image/icon/grab-cursor.png) 0 0 no-repeat;
	background-size: contain;
}

/* stylelint-disable string-quotes */
/**
* Swiper 3.4.2
* Most modern mobile touch slider and framework with hardware accelerated transitions
*
* http://www.idangero.us/swiper/
*
* Copyright 2017, Vladimir Kharlampidi
* The iDangero.us
* http://www.idangero.us/
*
* Licensed under MIT
*
* Released on: March 10, 2017
*/
.swiper-container {
	position: relative;
	z-index: 1;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
	margin: 0 auto;
	transition-timing-function: ease-out;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 100%;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1000;
	opacity: 0;
	pointer-events: none;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	z-index: 10;
	margin-top: -22px;
	width: 27px;
	height: 44px;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.6;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
	position: absolute;
	z-index: 10;
	text-align: center;
	transition: 300ms;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	opacity: 0.2;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #000;
}
.swiper-pagination-bullet:focus {
	outline: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
	background: #fff;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	display: block;
	margin: 5px 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
	position: absolute;
	background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progress .swiper-pagination-progressbar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #007aff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
	width: 100%;
	height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progress {
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
}

.swiper-pagination-progress.swiper-pagination-white {
	background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
	background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
	background: #000;
}

/* 3D Container */
.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
	overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
	z-index: 1;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
	visibility: hidden;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
	visibility: visible;
	pointer-events: auto;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	opacity: 0.6;
	width: 100%;
	height: 100%;
	background: #000;
	-webkit-filter: blur(50px);
	filter: blur(50px);
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-zoom-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
}
.swiper-zoom-container > svg, .swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
	position: relative;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	-ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	position: relative;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	margin-left: -21px;
	margin-top: -21px;
	width: 42px;
	height: 42px;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white::after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@media (min-width: 960px) {
	.q-tabs {
		margin: 0 auto;
		padding-left: 15px;
		padding-right: 15px;
	}

}
@media (min-width: 960px) and (min-width: 375px) {
	.q-tabs {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 960px) and (min-width: 720px) {
	.q-tabs {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 960px) and (min-width: 1080px) {
	.q-tabs {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}

.q-tabs__list {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	position: relative;
	line-height: 1.2;
	background: #f7fafc;
	border-top: 1px solid #edeef0;
}
.q-tabs__list::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	height: 1px;
	background: #edeef0;
}

.q-tabs__item {
	position: relative;
	z-index: 1;
	width: 33.33333%;
	max-width: 430px;
}

.q-tabs__link {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 5px;
	height: 80px;
	width: 100%;
	cursor: pointer;
	background: #f7fafc;
	border: 1px solid #edeef0;
	border-width: 0 1px 1px 0;
	transition: background 500ms;
}
.q-tabs__link:focus {
	outline: none;
}
.q-tabs__link:hover {
	background: #fff;
}
@media (min-width: 960px) {
	.q-tabs__link {
		height: 160px;
		line-height: 160px;
	}

}
.q-tabs__link--active {
	background: #fff;
	border-color: #fff;
}
.q-tabs__link--active::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #edeef0;
}
.q-tabs__link--active img {
	opacity: 1;
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.q-tabs__icon {
	display: none;
	margin-right: 20px;
}
@media (min-width: 1080px) {
	.q-tabs__icon {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		display: inline-block;
	}

}

.q-tabs__img {
	opacity: 0.7;
	width: auto;
	max-height: 48px;
}
.q-tabs__img--filter {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.q-tabs__text {
	font-size: 13px;
	color: #30405b;
	font-family: "Gotham", sans-serif;
	font-weight: 500;
	letter-spacing: -0.013em;
}
@media (min-width: 375px) {
	.q-tabs__text {
		font-size: 13px;
		font-size: calc(0.00437 * 100vw + (11.36066px));
	}

}
@media (min-width: 1290px) {
	.q-tabs__text {
		font-size: 17px;
	}

}

.q-tabs__container {
	margin-top: -161px;
}
.q-tabs__panel {
	display: none;
	padding-top: 161px;
}
.q-tabs__panel--active {
	display: block;
}

.q-trial {
	text-align: center;
	background: #f7fafc;
}
.q-trial__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 375px) {
	.q-trial__container {
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 720px) {
	.q-trial__container {
		padding-left: 50px;
		padding-right: 50px;
	}

}
@media (min-width: 1080px) {
	.q-trial__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}

}
.q-trial__content {
	padding-top: 70px;
	padding-bottom: 70px;
	margin: 0 auto;
	max-width: 40em;
}
@media (min-width: 720px) {
	.q-trial__content {
		padding-top: 8.74126%;
		padding-bottom: 8.74126%;
	}

}
@media (min-width: 1430px) {
	.q-trial__content {
		padding-top: 125px;
		padding-bottom: 125px;
	}

}
.q-trial__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 24px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 30px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	color: #262626;
	letter-spacing: -0.013em;
	line-height: 1.2;
}
@media (min-width: 375px) {
	.q-trial__heading {
		font-size: 24px;
		font-size: calc(0.01749 * 100vw + (17.44262px));
	}

}
@media (min-width: 1290px) {
	.q-trial__heading {
		font-size: 40px;
	}

}
.q-trial__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
	font-size: 16px;
	margin-bottom: 30px;
	font-family: "Caecilia", serif;
	color: #6a778b;
}
@media (min-width: 375px) {
	.q-trial__copy {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-trial__copy {
		font-size: 16px;
	}

}
@media (min-width: 375px) {
	.q-trial__copy {
		font-size: 16px;
		font-size: calc(0.00328 * 100vw + (14.77049px));
	}

}
@media (min-width: 1290px) {
	.q-trial__copy {
		font-size: 19px;
	}

}
.q-trial__textblock {
	display: inline-block;
}
@media (min-width: 720px) {
	.q-trial__textblock {
		display: block;
	}

}
.q-trial__link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid #44536b;
}
.q-trial__link:focus {
	outline: none;
}
.q-trial__tel {
	color: inherit;
	text-decoration: none;
}
.q-trial__tel:focus {
	outline: none;
}
@media (max-width: 719px) {
	.community-footer .q-trial__textblock br {
		display: none;
	}
}

.q-video-link {
	color: inherit;
	text-decoration: none;
	display: block;
	position: relative;
	cursor: pointer;
}
.q-video-link:focus {
	outline: none;
}
.q-video-link::before, .q-video-link::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.q-video-link::before {
	height: 46px;
	width: 46px;
	background: #ed2e26;
}
.q-video-link::after {
	z-index: 3;
	border-top: 5px solid transparent;
	border-left: 8px solid #fff;
	border-bottom: 5px solid transparent;
	-webkit-transform: translate3d(20px, 18px, 0);
	transform: translate3d(20px, 18px, 0);
}
@media (pointer: fine), (-moz-touch-enabled: 0) {
	.q-video-link:hover::before {
		background: #d91a12;
	}

}
.q-video-link--large::before {
	height: 68px;
	width: 68px;
}
.q-video-link--large::after {
	border-top: 6px solid transparent;
	border-left: 10px solid #fff;
	border-bottom: 6px solid transparent;
	-webkit-transform: translate3d(30px, 28px, 0);
	transform: translate3d(30px, 28px, 0);
}

.q-form {
	color: inherit;
	font-family: "Gotham", sans-serif;
}
.q-form__fieldset {
	padding: 0;
	margin: 30px 0 0;
	font-weight: 400;
	border: 0;
}
.q-form__inline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.q-form__inline > * {
	margin-right: 5px;
	margin-left: 5px;
}
.q-form__inline > *:first-child {
	margin-left: 0;
}
.q-form__inline > *:last-child {
	margin-right: 0;
}
.q-form__legend {
	display: block;
	padding: 0;
	margin-bottom: 24px;
	min-width: 0;
	font-weight: 400;
}
.q-form__field,
input[type=text].mktoField,
input[type=email].mktoFieldWrap {
	display: block;
	position: relative;
}
@media (min-width: 720px) {
	.q-form__column {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}

}
.q-form__label,
.mktoForm label {
	font-size: 11px;
	display: block;
	position: relative;
	color: inherit;
}
.mktoForm label[for="qualysAccount"] {
	margin: 0;
	width: 100%;
	display: inline-block;
}
.mktoRadioList.qualysAccount {
	white-space: nowrap;
	width: 144px;
	display: inline-block;
	margin-left: 0;
	margin-top: 1em;
}
@media (min-width: 480px) {
	.mktoForm label[for="qualysAccount"] {
		width: 140px;
	}
}
@media (min-width: 1400px) {
	.mktoForm label[for="qualysAccount"] {
		width: 200px;
	}
}
@media (min-width: 375px) {
	.q-form__label,
	.mktoForm label {
		font-size: 11px;
		font-size: calc(0.00109 * 100vw + (10.59016px));
	}

}
@media (min-width: 1290px) {
	.q-form__label,
	.mktoForm label {
		font-size: 12px;
	}

}
.q-form__label.hidden,
.mktoForm label {
	display: none;
}
.mktoForm option {
	background-color: #222e41;
	color: #fff;
}
.mktoForm .qmktoRadioListLabel,
.mktoForm .qmktoCheckboxListLabel {
	display: block;
	font-size: inherit;
	margin: 1em 0px 1.5em;
	font-weight: 400;
}
.mktoForm .mktoRadioList label,
.mktoForm .mktoCheckboxList label {
	display: block;
	font-size: inherit;
	font-weight: 400;
}
.qualysAccount .mktoRadioList label {
	display: inline-block;
	margin-left: 1.3em;
}
@media (min-width: 480px) {
	.qualysAccount .mktoRadioList {
		float: right;
		margin-top: 0;
	}
}
.mktoRadioList.qualysAccount label:first-child {
	margin-left: 0
}
.mktoForm .mktoCheckboxList.formServiceAgreementAccepted label {
	font-size: 0.8em;
}
.mktoRadioList b {
	font-weight: 400;
}
.mktoFormCol {
	margin-bottom: 12px;
}
.q-form__input,
input[type=text].mktoField,
input[type=email].mktoField,
input[type=tel].mktoField,
textarea.mktoField {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: relative;
	z-index: 2;
	padding: 0 30px;
	width: 100%;
	height: 52px;
	color: inherit;
	border: 0;
	background-color: transparent;
	border: 1px solid #627281;
	border-radius: 2px;
}
.q-form__input:focus,
input[type=text].mktoField:focus,
input[type=email].mktoField:focus,
input[type=tel].mktoField:focus,
textarea.mktoField:focus {
	outline: none;
}
.q-form__input::-webkit-input-placeholder,
input[type=text].mktoField::-webkit-input-placeholder,
input[type=email].mktoField::-webkit-input-placeholder,
input[type=tel].mktoField::-webkit-input-placeholder,
textarea.mktoField::-webkit-input-placeholder {
	color: inherit;
}
.q-form__input:-moz-placeholder,
input[type=text].mktoField:-moz-placeholder,
input[type=email].mktoField:-moz-placeholder,
input[type=tel].mktoField:-moz-placeholder,
textarea.mktoField:-moz-placeholder {
	color: inherit;
}
.q-form__input::-moz-placeholder,
input[type=text].mktoField::-moz-placeholder,
input[type=email].mktoField::-moz-placeholder,
input[type=tel].mktoField::-moz-placeholder,
textarea.mktoField::-moz-placeholder {
	color: inherit;
}
.q-form__input:-ms-input-placeholder,
input[type=text].mktoField:-ms-input-placeholder,
input[type=email].mktoField:-ms-input-placeholder,
input[type=tel].mktoField:-ms-input-placeholder,
textarea.mktoField:-ms-input-placeholder {
	color: inherit;
}
.form__sent .q-form__input:invalid,
input[type=text].mktoField:invalid,
input[type=email].mktoField:invalid,
input[type=tel].mktoField:invalid,
textarea.mktoField:invalid {
	box-shadow: 0 0 0 1px #f00;
}
.q-form__input:active,
input[type=text].mktoField:active,
input[type=email].mktoField:active,
input[type=tel].mktoField:active,
textarea.mktoField:active,
.q-form__input:focus,
input[type=text].mktoField:focus,
input[type=email].mktoField:focus,
input[type=tel].mktoField:focus,
textarea.mktoField:focus {
	border: 1px solid #627281;
	outline: none;
}
.q-form__input:active::-webkit-input-placeholder,
input[type=text].mktoField:active::-webkit-input-placeholder,
input[type=email].mktoField:active::-webkit-input-placeholder,
input[type=tel].mktoField:active::-webkit-input-placeholder,
textarea.mktoField:active::-webkit-input-placeholder,
.q-form__input:focus::-webkit-input-placeholder,
input[type=text].mktoField:focus::-webkit-input-placeholder,
input[type=email].mktoField:focus::-webkit-input-placeholder,
input[type=tel].mktoField:focus::-webkit-input-placeholder,
textarea.mktoField:focus::-webkit-input-placeholder {
	color: transparent;
}
.q-form__input:active:-moz-placeholder,
input[type=text].mktoField:active:-moz-placeholder,
input[type=email].mktoField:active:-moz-placeholder,
input[type=tel].mktoField:active:-moz-placeholder,
textarea.mktoField:active:-moz-placeholder,
.q-form__input:focus:-moz-placeholder,
input[type=text].mktoField:focus:-moz-placeholder,
input[type=email].mktoField:focus:-moz-placeholder,
input[type=tel].mktoField:focus:-moz-placeholder,
textarea.mktoField:focus:-moz-placeholder {
	color: transparent;
}
.q-form__input:active::-moz-placeholder,
input[type=text].mktoField:active::-moz-placeholder,
input[type=email].mktoField:active::-moz-placeholder,
input[type=tel].mktoField:active::-moz-placeholder,
textarea.mktoField:active::-moz-placeholder,
.q-form__input:focus::-moz-placeholder,
input[type=text].mktoField:focus::-moz-placeholder,
input[type=email].mktoField:focus::-moz-placeholder,
input[type=tel].mktoField:focus::-moz-placeholder,
textarea.mktoField:focus::-moz-placeholder {
	color: transparent;
}
.q-form__input:active:-ms-input-placeholder,
input[type=text].mktoField:active:-ms-input-placeholder,
input[type=email].mktoField:active:-ms-input-placeholder,
input[type=tel].mktoField:active:-ms-input-placeholder,
textarea.mktoField:active:-ms-input-placeholder,
.q-form__input:focus:-ms-input-placeholder,
input[type=text].mktoField:focus:-ms-input-placeholder,
input[type=email].mktoField:focus:-ms-input-placeholder,
input[type=tel].mktoField:focus:-ms-input-placeholder,
textarea.mktoField:focus:-ms-input-placeholder {
	color: transparent;
}
.q-form__input:required,
input[type=text].mktoField:required,
input[type=email].mktoField:required,
input[type=tel].mktoField:required,
textarea.mktoField:required {
	box-shadow: none;
}
.q-form__input:invalid,
input[type=text].mktoField:invalid,
input[type=email].mktoField:invalid,
input[type=tel].mktoField:invalid,
textarea.mktoField:invalid {
	box-shadow: none;
}
.q-form__select,
select.mktoField {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: relative;
	z-index: 2;
	padding: 0 30px;
	margin-bottom: 12px;
	width: 100%;
	height: 52px;
	color: inherit;
	border: 0;
	background-color: transparent;
	border: 1px solid #627281;
	border-radius: 2px;
	padding-right: 45px;
	background-image: url(https://d1uyme8f6ss6qi.cloudfront.net/image/form/select-arrows.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) 50%;
	background-size: 8px 20px;
}
.q-form__select:focus,
select.mktoField:focus {
	outline: none;
}
.q-form__select::-webkit-input-placeholder,
select.mktoField::-webkit-input-placeholder {
	color: inherit;
}
.q-form__select:-moz-placeholder,
select.mktoField:-moz-placeholder {
	color: inherit;
}
.q-form__select::-moz-placeholder,
select.mktoField::-moz-placeholder {
	color: inherit;
}
.q-form__select:-ms-input-placeholder,
select.mktoField:-ms-input-placeholder {
	color: inherit;
}
.form__sent .q-form__select:invalid,
select.mktoField:invalid {
	box-shadow: 0 0 0 1px #f00;
}
.q-form__select:active,
select.mktoField:active,
.q-form__select:focus,
select.mktoField:focus {
	border: 1px solid #627281;
	outline: none;
}
.q-form__select:active::-webkit-input-placeholder,
select.mktoField:active::-webkit-input-placeholder,
.q-form__select:focus::-webkit-input-placeholder,
select.mktoField:focus::-webkit-input-placeholder {
	color: transparent;
}
.q-form__select:active:-moz-placeholder,
select.mktoField:active:-moz-placeholder,
.q-form__select:focus:-moz-placeholder,
select.mktoField:focus:-moz-placeholder {
	color: transparent;
}
.q-form__select:active::-moz-placeholder,
select.mktoField:active::-moz-placeholder,
.q-form__select:focus::-moz-placeholder,
select.mktoField:focus::-moz-placeholder {
	color: transparent;
}
.q-form__select:active:-ms-input-placeholder,
select.mktoField:active:-ms-input-placeholder,
.q-form__select:focus:-ms-input-placeholder,
select.mktoField:focus:-ms-input-placeholder {
	color: transparent;
}
.q-form__select:required,
select.mktoField:required {
	box-shadow: none;
}
.q-form__select:invalid,
select.mktoField:invalid {
	box-shadow: none;
}
.q-form__button-group,
.mktoButtonRow .mktoButtonWrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 30px -30px 0;
}
@media (min-width: 720px) {
	.q-form__button-group,
	.mktoButtonRow .mktoButtonWrap {
		margin: 30px -50px 0;
	}

}
@media (min-width: 1280px) {
	.q-form__button-group,
	.mktoButtonRow .mktoButtonWrap {
		margin: 30px -80px 0;
	}

}
.q-form__button,
.mktoButton {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-right: 2px;
	width: 100%;
	height: 120px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	cursor: pointer;
	background: #1d2737;
}
.q-form__button:focus,
.mktoButton:focus {
	outline: none;
}
.q-form__button + .q-form__button,
.mktoButton + .mktoButton {
	margin-left: 2px;
}
.q-form__button:last-child,
.mktoButton:last-child {
	margin-right: 0;
}
.q-form__error {
	display: none;
	color: #ed2e26;
}

#form1 {
	display: block;
}

#form2 {
	display: none;
}

#form3 {
	display: none;
}

.q-radio {
	position: relative;
	margin-bottom: 30px;
	color: inherit;
	border-color: inherit;
}
.q-radio__field {
	position: relative;
	padding-left: 30px;
	margin-bottom: 18px;
	-webkit-column-break-inside: avoid;
	break-inside: avoid-column;
}
.q-radio__label {
	color: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-color: inherit;
}
.q-radio__main-label {
	display: block;
	padding-left: 10px;
}
.q-radio__label-description {
	display: block;
	padding-left: 10px;
	font-family: "Caecilia", serif;
}
.q-radio__input {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}
.q-radio__input:focus {
	outline: none;
}
.q-radio__view {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #627281;
	border-radius: 50%;
}
.q-radio__input:checked + .q-radio__view::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	text-align: center;
	border-radius: 50%;
	background-color: #627281;
}

.q-checkbox {
	position: relative;
	margin-bottom: 30px;
	color: inherit;
	border-color: inherit;
}
.q-checkbox__field {
	position: relative;
	padding-left: 30px;
	margin-bottom: 18px;
}
.q-checkbox__label {
	color: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-color: inherit;
}
.q-checkbox__main-label {
	display: block;
	font-size: 15px;
}
.q-checkbox__label-description {
	display: block;
	font-family: "Caecilia", serif;
}
.q-checkbox__input {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}
.q-checkbox__input:focus {
	outline: none;
}
.q-checkbox__view {
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #627281;
	border-radius: 2px;
}
.q-checkbox__input:checked + .q-checkbox__view::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	text-align: center;
	border-radius: 2px;
	background-color: #627281;
}

.q-modal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	width: 100%;
}
.q-modal__content {
	position: relative;
	z-index: 1;
	padding: 0 30px 30px;
	width: 700px;
	max-width: 100%;
	max-height: 100vh;
	background: #fff;
	overflow: auto;
}
.q-modal__content--is-video {
	padding: 0;
	width: 800px;
	max-width: 100%;
	max-height: 80vh;
	overflow: hidden;
}
.q-modal__content--is-video > div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.q-modal__content--is-video::after {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.q-modal__content--is-video iframe {
	display: block;
	width: 100%;
	height: 100%;
}
.q-modal__close {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 0;
	margin-left: auto;
	margin-top: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.q-modal__close:focus {
	outline: none;
}
.q-modal__close-icon {
	width: 16px;
	height: 16px;
	fill: #d8d8d8;
}
.q-modal__content--is-video .q-modal__close {
	position: relative;
	z-index: 1;
	margin-right: 20px;
}
.q-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: rgba(0, 0, 0, 0.5);
}
.q-modal__hgroup {
	margin-bottom: 1.875em;
	padding-right: 60px;
}
.q-modal__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 20px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
}
@media (min-width: 375px) {
	.q-modal__heading {
		font-size: 20px;
		font-size: calc(0.00656 * 100vw + (17.54098px));
	}

}
@media (min-width: 1290px) {
	.q-modal__heading {
		font-size: 26px;
	}

}
.q-modal__subheading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	font-weight: 500;
}
@media (min-width: 375px) {
	.q-modal__subheading {
		font-size: 15px;
		font-size: calc(0.00328 * 100vw + (13.77049px));
	}

}
@media (min-width: 1290px) {
	.q-modal__subheading {
		font-size: 18px;
	}

}
.q-modal__heading + .q-modal__subheading {
	margin-top: 0.55556em;
}
.q-modal__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 14px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
}
@media (min-width: 375px) {
	.q-modal__copy {
		font-size: 14px;
		font-size: calc(0.00219 * 100vw + (13.18033px));
	}

}
@media (min-width: 1290px) {
	.q-modal__copy {
		font-size: 16px;
	}

}
.q-modal__copy > * {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	margin-bottom: 1.5em;
}

.q-alternate-hero {
	padding-top: 60px;
}

.q-alternate-hero__container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 375px) {
	.q-alternate-hero__container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (min-width: 720px) {
	.q-alternate-hero__container {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 1080px) {
	.q-alternate-hero__container {
		padding-left: 70px;
		padding-right: 70px;
		max-width: 1430px;
	}
}

@media (min-width: 720px) {
	.q-alternate-hero__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.q-alternate-hero__content {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-bottom: 45px;
}

@media (min-width: 720px) {
	.q-alternate-hero__content {
		margin-top: 2.32558%;
		margin-bottom: 0;
		width: 46.75969%;
	}
}

@media (min-width: 1080px) {
	.q-alternate-hero__content {
		margin-left: 8.52713%;
		width: 38.75969%;
	}
}

.q-alternate-hero__heading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 34px;
	font-family: "Gotham", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #262626;
	margin-bottom: 0.45455em;
	font-weight: 500;
}

@media (min-width: 375px) {
	.q-alternate-hero__heading {
		font-size: 34px;
		font-size: calc(0.01093 * 100vw + (29.90164px));
	}
}

@media (min-width: 1290px) {
	.q-alternate-hero__heading {
		font-size: 44px;
	}
}

.q-alternate-hero__subheading {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 22px;
	font-family: "Gotham", sans-serif;
	font-weight: 200;
	letter-spacing: -0.015em;
	line-height: 1.16667;
	color: #6a778b;
	margin-bottom: 1.25em;
}

@media (min-width: 375px) {
	.q-alternate-hero__subheading {
		font-size: 22px;
		font-size: calc(0.0153 * 100vw + (16.2623px));
	}
}

@media (min-width: 1290px) {
	.q-alternate-hero__subheading {
		font-size: 36px;
	}
}

.q-alternate-hero__copy {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	font-size: 15px;
	letter-spacing: 0.015em;
	line-height: 1.625;
	font-family: "Caecilia", serif;
	margin-bottom: 2.77778em;
}

@media (min-width: 375px) {
	.q-alternate-hero__copy {
		font-size: 15px;
		font-size: calc(0.00328 * 100vw + (13.77049px));
	}
}

@media (min-width: 1290px) {
	.q-alternate-hero__copy {
		font-size: 18px;
	}
}

.q-alternate-hero__cta {
	margin-bottom: 3.75em;
	color: #ed2e26;
}

@media (min-width: 720px) {
	.q-alternate-hero__image-wrap {
		margin-left: auto;
		margin-right: 0;
		width: 48.83721%;
	}
}

@media (min-width: 720px) {
	.q-alternate-hero__image {
		margin-bottom: -23.80952%;
	}
}

.q-alternate-hero__heading,
.q-alternate-hero__subheading,
.q-alternate-hero__copy,
.q-alternate-hero__cta,
.q-alternate-hero__image-wrap {
	will-change: opacity, transform;
	opacity: 0;
}

.q-default-hero__form {
	-ms-flex-item-align: end;
		align-self: flex-end;
	padding: 30px 30px 0;
	width: 100%;
	font-family: "Gotham", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	background: #222e41; }
	@media (min-width: 720px) {
	  .q-default-hero__form {
		padding: 50px 50px 0; } }
	@media (min-width: 1280px) {
	  .q-default-hero__form {
		padding: 50px 80px 0; } }

.mktoForm input[type="checkbox"],
.mktoForm input[type="radio"] {
	position: absolute;
	left: -9999px;
}
.requestedaTrial label:before {
	content: none;
	display: none;
}
.mktoForm input[type="checkbox"]:before,
.mktoForm input[type="radio"]:before,
.mktoRadioList label:before,
.mktoCheckboxList label:before {
	background: transparent;
	border: 1px solid #627281;
	content: "\00a0";
	display: inline-block;
	font: 18px/1 sans-serif;
	height: 18px;
	margin: 0 .5em 0 0;
	padding: 0;
	vertical-align: top;
	width: 18px;
	border-radius: 10px;
}
.mktoForm input[type="checkbox"]:before,
.mktoCheckboxList label:before {
	border-radius: 2px;
}
.mktoForm input[type="checkbox"]:checked,
.mktoForm input[type="radio"]:checked,
.mktoRadioList label.checked:before,
.mktoCheckboxList label.checked:before {
	color: #fff;
	content: url("https://d1uyme8f6ss6qi.cloudfront.net/image/icon/circle.svg");
	text-align: center;
	text-indent: 0;
}
.mktoForm input[type="checkbox"]:checked,
.mktoCheckboxList label.checked:before {
	content: url("https://d1uyme8f6ss6qi.cloudfront.net/image/icon/rounded-square.svg");
}
.qualysAccount .mktoFieldWrap {
	margin-top: 1em;
}
.formTrialPackageType .mktoRadioList label {
	display: inline-block;
	margin-bottom: 1em;
	width: 100%;
	font-family: "Caecilia", serif;
	text-transform: none;
}
.mktoRadioList {
	margin-bottom: 1em;
}
.mktoFormRow.qualysAccount .mktoClear,
.mktoFormRow.qualysAccount .mktoGutter {
	display: none;
}
[for="formTrialPackageType"] {
	margin-bottom: 0.5em;
}
.requestedaTrial .mktoLogicalField label {
	display: block;
	font-size: 11pt;
}
.mktoForm input[name="requestedaTrial"] {
	display: inline-block;
}
.mktoForm input[name="requestedaTrial"]:before {
	content: none;
	display: none;
}
.mktoForm input[name="requestedaTrial"]:checked {
	content: none;
}
.formTrialPackageType .mktoRadioList label:before {
	margin: 0.9em 0;
	display: block;
	float: left;
	margin-right: 0.5em;
	margin-left: 0;
}
.formTrialPackageType b {
	font-family: "Gotham", sans-serif;
}
.mktoErrorMsg button {
	background: none;
	border: none;
	vertical-align: middle;
	outline: none;
}
.mktoErrorMsg .close-button {
	display: inline;
	width: 20px;
	height: 20px;
}
.mktoErrorMsg {
	margin-top: 5px;
	margin-left: 30px;
	color: #ed2e26;
}
.solutionInterested label {
	display: block;
}

/** Begin Fixed Header  **/

.q-header__logo {
	position: relative;
}
.q-logo__shield {
	position: absolute;
	left: 0;
	top: 0;
	height: 35px;
	width: auto;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0s ease-out 0.5s;
	transition: all 0s ease-out 0.5s;
}
.q-header__hamburger--desktop {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-style: normal;
	vertical-align: baseline;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: absolute;
	margin: 0 -20px;
	padding: 0 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
}
.q-header__hamburger--desktop:focus {
	outline: none;
}
.q-search-mode .q-nav-actions__item--login,
.q-search-mode .q-nav-actions__item--trial,
.q-search-mode .q-nav-actions__item--form {
	display: none;
}
.q-search-mode .q-header__navigation {
	text-align: left;
	padding-left: 50px;
	position: relative;
}
.q-nav-actions__item--search-close,
.q-header--fixed .q-nav-actions__item--search {
	display: none;
}
.q-search-mode .q-nav-actions__item--search-close {
	display: block;
	position: absolute;
	right: 0;
}
.q-nav-actions__item--search-close {
	padding: 10px 0 10px 260px;
	margin-right: 0;
}
.q-nav-actions__item--search-btn {
	position: relative;
	top: 3px;
	background: none;
	border: 0;
	outline: none;
	display: inline;
}
.q-nav-actions__item--search-close:hover path,
.q-nav-actions__item--search:hover path {
	fill: #262626;
}
.q-header__navigation .q-site-search-form__field-input {
	width: 80%;
}
.q-header__navigation .q-site-search-form__field-input::placeholder {
	color: #627281;
}
.q-navigation-mobile .q-site-search-form__field-input,
.q-navigation-mobile .q-site-search-form__field-input::placeholder  {
	color: #4a4a4a;
	font-size: 16px;
	width: 80%;
}
.q-search-links-mobile a {
	text-decoration: none;
}
.q-search-links-mobile {
	height: 0;
	overflow: hidden;
}
.q-search-mobile {
	position: relative;
}
.q-search-mobile .q-nav-actions__item--search-btn {
	padding-left: 0;
}
.q-search-mobile .q-click-helper {
	height: 100%;
	position: absolute;
	z-index: 1;
	width: 100%;
}
.q-navigation-mobile.q-search-mode .q-click-helper {
	position: static;
}
.q-navigation-mobile.q-search-mode .q-search-links-mobile {
	height: 310px;
	transition: all 0.3s;
}
.q-navigation-mobile-wrapper {
	overflow: auto;
}
.q-navigation-mobile-wrapper .q-hide-search {
	left: 50%;
	position: absolute;
	z-index: 1000;
	margin-left: -27px;
	top: 20px;
	padding: 20px;
	display: none;
}
.q-navigation-mobile.q-search-mode .q-navigation-mobile-wrapper .q-hide-search {
	display: block;
}
.q-navigation-mobile.q-search-mode .q-navigation-mobile-wrapper {
	overflow: hidden;
}
.q-navigation-mobile__list {
	top: 0;
	position: relative;
	transition: all 0.3s;
}
.q-navigation-mobile.q-search-mode .q-navigation-mobile__list {
	transition: all 0.3s;
}
.q-nav-actions__item--search-btn:hover,
.q-nav-actions__item--search-close:hover {
	cursor: pointer;
}
.q-search-links-container {
	background-color: #f8fafc;
	font-size: calc(0.00109 * 100vw + (13.59016px));
	visibility: hidden;
	height: 0;
}
.q-search-links-container .q-grid__container {
	margin-top: 0;
}
.q-search-mode .q-search-links-container {
	visibility: visible;
	height: auto;
}
.q-search-links-inner-container {
	margin: 0 auto;
	padding: 1em;
}
.q-search-links-container,
.q-search-mode .q-search-links-container {
	display: none;
}
.q-search-links-container .q-search-links {
	margin-left: 190px;
}
@media (min-width: 720px) {
	.q-search-links-container,
	.q-search-mode .q-search-links-container {
		display: block;
	}
}
@media (min-width: 1080px) {
	.q-search-links-container .q-search-links {
		margin-left: 210px;
	}
}
@media (min-width: 1430px) {
	.q-search-links-inner-container {
		max-width: 1430px;
	}
}
.q-search-links {
	list-style: none;
	line-height: 2.1;
}
.q-site-search {
	position: absolute;
	left: 50px;
	opacity: 0;
	width: 0;
}
.q-navigation-mobile__list .q-site-search {
	position: static;
	opacity: 1;
	width: auto;
	border-bottom: 1px solid #4a4a4a;
	padding-bottom: 0.5em;
}
.q-search-mode .q-nav-actions__item--search {
	display: none;
}
.q-search-mode .q-site-search {
	width: auto;
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in 0.1s;
	transition-delay: 0.3s
}
.q-search-links li {
	margin-left: 120px;
	opacity: 0;
}
.q-search-mode .q-search-links li {
	margin-left: 0;
	opacity: 1;
	transition: all 0.2s ease-in 0.1s;
}
.q-search-mode .q-search-links li:nth-child(1) {
	transition-delay: 0.025s
}
.q-search-mode .q-search-links li:nth-child(2) {
	transition-delay: 0.05s
}
.q-search-mode .q-search-links li:nth-child(3) {
	transition-delay: 0.075s
}
.q-search-mode .q-search-links li:nth-child(4) {
	transition-delay: 0.1s
}
.q-search-mode .q-search-links li:nth-child(5) {
	transition-delay: 0.125s
}
.q-search-mode .q-search-links li:nth-child(6) {
	transition-delay: 0.15s
}
.q-search-mode .q-search-links li:nth-child(7) {
	transition-delay: 0.175s
}
.q-search-mode .q-search-links li:nth-child(8) {
	transition-delay: 0.2s
}
.q-search-links a,
#lp-chat-link-resources div {
	text-decoration: none;
}
.q-search-link--heading {
	margin-bottom: 0em;
}
.overlay-mask {
	background: rgba(0,0,0,0.4);
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 199;
}
.overlay-mask.show {
	display: block;
}
.q-site-search-form__field-input {
	border: none;
	font-size: 14px;
	font-size: calc(0.00109 * 100vw + (13.59016px));
	outline: none;
	font-weight: 500;
	color: #627281;
}
@media (min-width: 850px) {
	.q-nav-actions__item .q-button__scope {
		-webkit-transition: width 0.3s;
		transition: width 0.3s;
	}
}
@media (max-width: 900px) {
	.q-header--compact .q-header__navigation {
		display: none;
	}
}
@media (min-width: 720px) {
	body {
		padding-top: 80px;
	}
	.q-header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		background: #fff;
		border-bottom: 1px solid transparent;
	}
	.q-header.q-header--border {
		border-bottom: 1px solid #e4e4e4;
		transition : border 5000ms ease-out;
	}
	.q-logo__horizontal,
	.q-search-mode.q-header--compact .q-logo__horizontal {
		opacity: 1;
		visibility: visible;
		-webkit-transition: all 0.3s ease-out 0.2s;
		transition: all 0.3s ease-out 0.2s;
	}
	.q-header--compact .q-logo__horizontal {
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s ease-in 0s;
		transition: all 0.3s ease-in 0s;
	}
	.q-header--compact .q-logo__shield {
		visibility: visible;
		opacity: 1;
		-webkit-transition: all 0s ease-in 0s;
		transition: all 0s ease-in 0s;
	}
	.q-navigation__link {
		opacity: 1;
		visibility: visible;
		-webkit-transition: opacity 1s, visibility 1s;
		transition: opacity 0.7s, visibility 0.7s;
	}
	.q-header--compact .q-navigation__link {
		opacity: 0;
		visibility: hidden;
		-webkit-transition: opacity 0.3s, visibility 0.3s;
		transition: opacity 0.3s, visibility 0.3s;
	}
	.q-navigation__link {
		left: 0;
	}
	.q-search-mode .q-navigation__link {
		opacity: 0;
		visibility: hidden;
		left: -100px;
		transition: all 0.35s;
	}
	.q-navigation__link {
		opacity: 1;
		visibility: visible;
		left: 0;
		transition: all 0.35s;
	}
	.q-header__hamburger--desktop,
	.q-search-mode.q-header--compact .q-header__hamburger--desktop {
		opacity: 0;
		visibility: hidden;
		z-index: 10;
		-webkit-transform: translateX(60px);
		transform: translateX(60px);
		-webkit-transition: all 0.3s ease-out 0s;
		transition: all 0.3s ease-out 0s;
	}
	.q-header--compact .q-header__hamburger--desktop {
		display: block;
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateX(45px);
		transform: translateX(45px);
		-webkit-transition: all 0.2s ease-in 0.1s;
		transition: all 0.2s ease-in 0.1s;
	}
	.q-nav-actions__item .q-button__scope {
		width: 0;
		overflow: hidden;
		font-weight: 300;
	}
	.q-header--compact .q-nav-actions__item .q-button__scope {
		width: 134px;
		margin-left: 5px;
	}
	.q-nav-phone,
	.q-header--compact .q-nav-actions__link--menu,
	.q-nav-actions__item--chat {
		display: none;
	}
	.q-header--compact .q-nav-phone {
		display: -webkit-box;
		display: -ms-box;
		display: flex;
		text-decoration: none;
	}
	.q-header--compact .q-nav-actions__item--chat {
		display: block;
	}
	.q-nav-actions__link--search {
		font-size: 1.9em;
		transform: rotate(-45deg);
		display: inline-block;
		position: relative;
		top: 2px;
		background: none;
		border: none;
	}
	.q-nav-actions__link:hover {
		cursor: pointer;
	}
}

/** End Fixed Header  **/

/** Global Back to Top **/

.q-back-to-top {
	display: none;
	opacity: 0;
	transition: 0.4s;
	visibility: hidden;
}
@media (min-width: 1080px) {
	.q-back-to-top {
		/* reset styles */
		background: none;
		border: 0 none;
		margin: 0;
		padding: 0;
		outline: none;
		/* add style */
		align-items: center;
		bottom: 25px;
		display: flex;
		flex-flow: column nowrap;
		height: 68px;
		justify-content: flex-end;
		position: fixed;
		right: 25px;
		width: 68px;
		z-index: 99;
		cursor: pointer;;
	}
	.q-back-to-top > * {
		display: block;
		margin: 0 auto;
	}
	.q-back-top__arrow {
		background: #6CA3CF;
		border-radius: 2px;
		box-sizing: content-box;
		padding: 29px 28px;
	}
	.q-back-to-top:hover .q-back-top__arrow {
		background: #5998CA;
	}
	.q-back-to-top--show {
		opacity: 1;
		visibility: visible;
	}

}

/** End Global Back to Top **/

/** Begin LivePerson overrides **/
.LPMcontainer.LPMcontainer,
.LPMoverlay.LPMoverlay {
	font-style: inherit !important;
	font-variant-caps: inherit !important;
	font-variant-east-asian: inherit !important;
	font-variant-ligatures: inherit !important;
	font-variant-position: inherit !important;
	font-weight: inherit !important;
	height: auto;
	left: auto;
	letter-spacing: inherit !important;
	line-height: inherit !important;
	position: static;
	text-decoration: inherit !important;
	top: auto;
	vertical-align: inherit !important;
	white-space: inherit !important;
	width: auto;
	word-spacing: inherit !important;
}
.LPMlabel.LPMlabel {
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-style: inherit;
	font-variant-caps: inherit !important;
	font-variant-east-asian: inherit !important;
	font-variant-ligatures: inherit !important;
	font-variant-position: inherit !important;
	font-weight: inherit !important;
	left: auto !important;
	letter-spacing: inherit !important;
	line-height: inherit !important;
	outline: none;
	position: static !important;
	text-decoration: inherit !important;
	top: auto !important;
	transform: inherit !important;
	vertical-align: inherit !important;
	white-space: inherit !important;
	word-spacing: inherit !important;
	z-index: auto;
}
