@charset "utf-8";
/* CSS Document */
#nprogress {
	pointer-events: none
}

#nprogress .bar {
	background: #29d;
	position: fixed;
	z-index: 1031;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px
}

#nprogress .peg {
	display: block;
	position: absolute;
	right: 0;
	width: 100px;
	height: 100%;
	box-shadow: 0 0 10px #29d, 0 0 5px #29d;
	opacity: 1;
	transform: rotate(3deg) translateY(-4px)
}

#nprogress .spinner {
	display: block;
	position: fixed;
	z-index: 1031;
	top: 15px;
	right: 15px
}

#nprogress .spinner-icon {
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	border-color: #29d transparent transparent #29d;
	border-style: solid;
	border-width: 2px;
	border-radius: 50%;
	animation: nprogress-spinner .4s linear infinite
}

.nprogress-custom-parent {
	overflow: hidden;
	position: relative
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
	position: absolute
}

@keyframes nprogress-spinner {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}

.animation {
	transform: translateZ(0);
	will-change: transform
}

.animation.fade-in {
	animation-name: fadein;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0
}

@keyframes fadein {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.animation.fade-out {
	animation: fadeOut .5s;
	animation-fill-mode: forwards
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.animation.blur-out {
	animation: blurOut .5s;
	animation-fill-mode: forwards
}

@keyframes blurOut {
	0% {
		filter: blur(.75rem)
	}

	to {
		filter: blur(0)
	}
}

.animation.grow-in {
	animation: scaleIn .5s;
	animation-fill-mode: forwards
}

@keyframes scaleIn {
	0% {
		transform: scale(.9);
		opacity: .5
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.animation.slide-in {
	animation: slideIn .5s;
	animation-fill-mode: forwards
}

@keyframes slideIn {
	0% {
		transform: translateX(-.5rem);
		opacity: .1
	}

	to {
		transform: translateX(0);
		opacity: 1
	}
}

.animation.slide-up {
	animation: slideUp .5s;
	animation-fill-mode: forwards
}

@keyframes slideUp {
	0% {
		transform: translateY(.5rem);
		opacity: .1
	}

	to {
		transform: translateY(0);
		opacity: 1
	}
}

.animation.slide-down {
	animation: slideDown .3s;
	animation-fill-mode: forwards
}

@keyframes slideDown {
	0% {
		transform: translateY(-.5rem);
		opacity: .1
	}

	to {
		transform: translateY(0);
		opacity: 1
	}
}

.animation.zoom-in {
	animation: zoomIn 10s;
	animation-fill-mode: forwards
}

@keyframes zoomIn {
	0% {
		transform: scale(1)
	}

	to {
		transform: scale(1.2)
	}
}

.animation.delay {
	animation-delay: .5s
}

:root {
	--primary: #e91e63;
	--primary-light: #ff6090;
	--primary-dark: #b0003a;
	--primary-accent: #ff4081;
	--primary-highlight: #fcecf1;
	--primary-highlight-dark: #ffc8d7;
	--background: #f9f7f4;
	--background-dark: #f9f2e8;
	--background-grey: #f9f9f9;
	--background-highlight: #f9ebd5;
	--border: #eae4df;
	--border-dark: #d2c9bd;
	--text: #2d000d;
	--text-light: #3b3133;
	--white: #fff;
	--black: #000;
	--grey-lighter: #fbfbfb;
	--grey-light: #eee;
	--grey-darker: #666;
	--grey-darkest: #2c2c2c;
	--positive: #077334;
	--positive-light: #c8e6c9;
	--negative: #c0392b;
	--negative-light: #ffcdd2;
	--danger-light: #e57373;
	--twitter-blue: #1da1f2;
	--font-primary: "Nunito", sans-serif !important;
	--font-secondary: "Nunito", sans-serif;
	--font-weight-regular: 400;
	--font-weight-medium: 600;
	--font-weight-bold: 700;
	--font-weight-extra-bold: 800;
	--font-size-h1: 3.2rem;
	--font-size-h1-line-height: 3.4rem;
	--font-size-h2: 2.5rem;
	--font-size-h2-line-height: 2.8rem;
	--font-size-h3: 1.875rem;
	--font-size-h3-line-height: 2rem;
	--font-size-h4: 1.3125rem;
	--font-size-h4-line-height: 1.5rem;
	--font-size-body: 1.125rem;
	--font-size-para: 1rem;
	--font-size-small: 0.9rem;
	--font-size-tag: 0.75rem;
	--font-size-info: 0.6rem;
}


*,
:after,
:before {
	box-sizing: inherit
}

body.overflow-hidden {
	overflow: hidden
}

table>tbody>tr>td,
table>tbody>tr>th,
table>thead>tr>th {
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--border);
	padding: .5rem 1rem .5rem 0;
	margin: 0;
	font-size: 1rem
}

table>tbody>tr:last-child>td {
	border-bottom: none
}

table>thead>tr>th {
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: var(--font-weight-bold)
}

table.condensed>tbody>tr>td {
	padding: .3rem .15rem
}

table>tbody>tr>td>.tag {
	font-size: var(--font-size-tag);
	display: inline-block;
	padding: .05rem .4rem;
	border-radius: .25rem
}

table>tbody>tr>td>.tag.tag-yes {
	background-color: var(--positive-light)
}

table>tbody>tr>td>.tag.tag-no {
	background-color: var(--grey)
}

table>tbody>tr>td>.tag.tag-bad {
	background-color: var(--danger-light)
}

table>tbody>tr.deleted>td {
	color: grey !important
}

table>tbody>tr>td:first-child>a {
	color: var(--text);
	font-weight: var(--font-weight-medium);
	transition: color .2s
}

table>tbody>tr>td>a:hover {
	color: var(--primary-dark)
}

.spacing {
	height: 1.5rem
}

.spacing.outlined {
	height: 1px;
	border-top: 1px solid var(--border);
	margin-top: 1.5rem;
	margin-bottom: 1.5rem
}

.font-sans-serif {
	font-family: sans-serif !important
}

#__next {
	display: flex;
	flex-direction: row;
	flex: 1 1
}

.deal {
	background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
	background-size: 400% 400%;
	animation: animatedgradient 3s ease infinite alternate;
	transition: all .2s
}

.discounted {
	background: linear-gradient(90deg, #5073b8, #1098ad, #07b39b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: var(--font-weight-extra-bold)
}

#nprogress {
	z-index: 9999
}

#nprogress .bar {
	background: var(--primary) !important;
	height: 3px
}

[data-reach-slider-input] [data-reach-slider-range] {
	background-color: var(--primary)
}

[data-reach-slider-input] [data-reach-slider-handle] {
	background-color: var(--white);
	border: 2px solid var(--primary);
	height: 1.2rem;
	width: 1.2rem;
	border-radius: .6rem;
	outline: none
}

[data-reach-slider-input] [data-reach-slider-track] {
	background-color: hsla(0, 0%, 100%, .2);
	cursor: pointer
}

[data-reach-slider-input] [data-reach-slider-marker] {
	background-color: var(--primary-light)
}

.codex-editor__redactor {
	padding-bottom: 1rem !important
}

.image-tool__caption {
	display: none
}

.Toastify__toast-container {
	z-index: 10
}

.Toastify__toast-container--bottom-right {
	bottom: 4rem;
	right: 1rem
}

.Toastify__toast {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	cursor: pointer;
	background-color: var(--primary-highlight);
	color: var(--text);
	border: 1px solid var(--primary-light);
	font-family: var(--font-primary);
	font-size: .9rem;
	padding: 1rem 1.5rem;
	border-radius: .25rem;
	z-index: 10;
	min-height: auto;
	align-items: center
}

.Toastify__toast svg {
	fill: var(--primary)
}

.Toastify__toast-body {
	padding: 0;
	margin: 0;
	color: var(--text)
}

.web-share-fade header {
	color: var(--black);
	font-family: var(--font-primary)
}

@keyframes animatedgradient {
	0% {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}

	to {
		background-position: 0 50%
	}
}

@media (max-width:1023px) {
	html {
		font-size: 15px
	}

	.editorjs-content figure img {
		width: 100%
	}

	table>tbody>tr>td,
	table>tbody>tr>th,
	table>thead>tr>th {
		white-space: nowrap
	}
}

.style_button___8d0M {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	border: 1px solid transparent;
	background-color: var(--primary);
	color: var(--text);
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	transition-property: background-color, border, color;
	transition-duration: .2s
}

.style_button___8d0M .style_spacing__c5b9F {
	width: .25rem;
	height: 1rem
}

.style_button___8d0M .style_loading__NPPDU {
	margin-left: .25rem
}

.style_button___8d0M svg {
	fill: var(--text)
}

.style_button___8d0M.style_large__84rWD {
	font-size: var(--font-size-body);
	padding: .75rem 2rem;
	border-radius: 1.6rem
}

.style_button___8d0M.style_large__84rWD svg {
	width: var(--font-size-body);
	height: var(--font-size-body)
}

.style_button___8d0M.style_medium__PjwQG {
	font-size: var(--font-size-para);
	padding: .5rem 1.25rem;
	border-radius: 1.4rem
}

.style_button___8d0M.style_medium__PjwQG svg {
	width: var(--font-size-para);
	height: var(--font-size-para)
}

.style_button___8d0M.style_small__Jyd8_ {
	font-size: var(--font-size-small);
	padding: .25rem .75rem;
	border-radius: 1rem
}

.style_button___8d0M.style_small__Jyd8_ svg {
	width: var(--font-size-small);
	height: var(--font-size-small)
}

.style_button___8d0M.style_default__8UJG6 {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_default__8UJG6 svg {
	fill: var(--white)
}

.style_button___8d0M:hover {
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white)
}

.style_button___8d0M:active {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M:disabled {
	box-shadow: none !important;
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white);
	cursor: not-allowed
}

.style_button___8d0M.style_white__sJIZ2 {
	color: var(--text-light);
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_white__sJIZ2 svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_white__sJIZ2:hover {
	background-color: var(--primary-highlight)
}

.style_button___8d0M.style_white__sJIZ2:active {
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M.style_white__sJIZ2:disabled {
	box-shadow: none !important;
	color: var(--text);
	background-color: var(--primary-highlight);
	cursor: not-allowed
}

.style_button___8d0M.style_outlined__toWXL {
	background-color: transparent;
	border: 1px solid var(--text-light);
	color: var(--text-light);
	font-size: .8rem
}

.style_button___8d0M.style_outlined__toWXL svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_outlined__toWXL:hover {
	border: 1px solid var(--primary);
	color: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:hover svg {
	fill: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:active {
	border: 1px solid var(--text);
	color: var(--text)
}

.style_button___8d0M.style_outlined__toWXL:active svg {
	fill: var(--text)
}

.style_body__acLZB {
	display: flex;
	flex: 1 1;
	flex-shrink: 0;
	flex-direction: column;
	position: relative
}

.style_main__sw8sM {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	flex-shrink: 0;
	flex-basis: auto
}

.style_wrapper__iiBNU {
	display: flex;
	flex-direction: row;
	width: 1024px;
	padding: 0.1rem 2rem
}

@media(max-width:1023px) {
	.style_wrapper__iiBNU {
		width: 100% !important;
		padding: 1rem 1.5rem
	}
}

.style_header__CtJ_g {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1
}

.style_header__CtJ_g .style_left__kc1DO {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1;
	position: relative
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: var(--font-weight-extra-bold);
	font-family: var(--font-secondary);
	padding: 0;
	font-size: 1.6rem;
	color: var(--primary)
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
	width: 2rem;
	height: 2rem;
	fill: var(--primary);
	transition: all .2s
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW:hover svg {
	transform: rotate(-45deg)
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
	background-color: var(--black);
	color: var(--white);
	font-size: var(--font-size-para);
	font-weight: var(--font-weight-bold);
	padding: .35rem .75rem;
	margin-left: .75rem;
	border-radius: 1rem
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d:hover {
	transform: scale(1.05);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
	height: 2.2rem;
	margin-left: .5rem
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
	height: 100%
}

.style_header__CtJ_g .style_right__J_BHc,
.style_header__CtJ_g .style_right__J_BHc a {
	display: flex;
	flex-direction: row;
	align-items: center
}

.style_header__CtJ_g .style_right__J_BHc a {
	font-size: 1rem;
	margin-right: .5rem;
	cursor: pointer;
	font-weight: var(--font-weight-medium);
	color: var(--text);
	justify-content: center;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	position: relative
}

.style_header__CtJ_g .style_right__J_BHc a svg {
	fill: var(--text);
	margin-left: .25rem
}

.style_header__CtJ_g .style_right__J_BHc a .style_new__aw1kW {
	position: absolute;
	right: .2rem;
	top: .2rem;
	background-color: #ff1744;
	width: .4rem;
	height: .4rem;
	border-radius: 50%
}

.style_header__CtJ_g .style_right__J_BHc a:last-child {
	margin-right: 0
}

.style_header__CtJ_g .style_right__J_BHc a.style_active__x0ngW,
.style_header__CtJ_g .style_right__J_BHc a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 {
	color: var(--primary)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 svg {
	fill: var(--primary)
}

.style_header__CtJ_g.style_background__L_N3y {
	background-color: var(--background-dark)
}

@media(max-width:1023px) {
	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
		font-size: 1.2rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
		width: 1.75rem;
		height: 1.75rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
		font-size: var(--font-size-tag);
		font-weight: var(--font-weight-bold);
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
		height: 1.6rem;
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
		height: 100%
	}

	.style_header__CtJ_g .style_right__J_BHc a {
		margin-right: .5rem
	}

	.style_header__CtJ_g .style_right__J_BHc .style_mobileHidden__0THQX {
		display: none
	}
}

.style_footer__YyPws {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-regular);
	background-color: var(--background-dark)
}

.style_footer__YyPws .style_wrapper__xby_f {
	flex-direction: row;
	padding-top: 3rem;
	padding-bottom: 3rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding-right: 1rem;
	align-items: flex-start
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf svg {
	fill: var(--primary);
	width: 4rem;
	height: 4rem;
	transition: all .2s
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf:hover svg {
	transform: rotate(-45deg)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_caption__NNH6T {
	max-width: 12rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_copyright__rifkY {
	margin-top: .75rem;
	color: var(--text-light)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY {
	display: flex;
	flex-direction: row;
	margin-top: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a {
	display: flex;
	flex-direction: row;
	margin-right: .5rem;
	align-items: center
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a img {
	width: 1.25rem;
	margin-right: .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a:last-child {
	margin-right: 0
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_heading__WdxjE {
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-body);
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: .5rem;
	font-size: var(--font-size-small);
	cursor: pointer
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a .style_online__ukuQD {
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background-color: #239b56;
	margin-left: .35rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a span {
	background-color: var(--positive-light);
	border-radius: .2rem;
	color: var(--positive);
	font-size: .7rem;
	line-height: .7rem;
	margin-left: .25rem;
	padding: 0 .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a:hover {
	color: var(--primary-dark)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
	padding-right: 0
}

@media(max-width:1023px) {
	.style_footer__YyPws .style_wrapper__xby_f {
		flex-direction: column
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
		padding-right: 0;
		margin-bottom: 2rem
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
		margin-bottom: 0
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
		font-size: var(--font-size-para)
	}
}

.style_player__CxBee {
	position: relative
}

.style_player__CxBee img {
	width: 100%
}

.style_player__CxBee button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: transparent;
	outline: none;
	border: none;
	cursor: pointer
}

.style_player__CxBee button svg {
	fill: var(--primary);
	width: 6rem;
	height: 6rem;
	filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .25));
	transition: all .2s
}

.style_player__CxBee button:hover svg {
	transform: scale(1.1)
}

.style_player__CxBee button.style_small__7qMWU svg {
	width: 3.5rem;
	height: 3.5rem;
	fill: var(--white)
}

.style_player__CxBee video {
	width: 100%
}

@media(max-width:1023px) {
	.style_player__CxBee button svg {
		width: 4rem;
		height: 4rem
	}
}

.style_testimonials__jz516 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	background-color: var(--background-dark)
}

.style_testimonials__jz516 .style_wrapper__QssZj {
	flex-direction: column;
	padding-top: 7rem;
	padding-bottom: 7rem
}

.style_testimonials__jz516 .style_wrapper__QssZj h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem
}

.style_testimonials__jz516 .style_wrapper__QssZj h3 span {
	color: var(--primary)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 1.5rem;
	grid-row-gap: 1.5rem;
	margin-top: 1.5rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding: 1rem 1.5rem;
	border-radius: .5rem;
	background-color: var(--white);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	margin-right: .75rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO p {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h5);
	font-weight: var(--font-weight-medium)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO .style_role__S98m3 {
	font-size: var(--font-size-small);
	color: var(--text-light);
	font-weight: var(--font-weight-regular);
	margin-top: .1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 {
	display: flex;
	flex-direction: column;
	margin-top: 1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 h5 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h5);
	font-weight: var(--font-weight-bold)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 p {
	color: var(--text-light);
	margin-top: .5rem;
	font-size: var(--font-size-small)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: var(--font-weight-medium)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE a {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: .25rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE a img {
	width: 1rem;
	height: 1rem;
	margin-left: .1rem
}

@media(max-width:1023px) {
	.style_testimonials__jz516 .style_wrapper__QssZj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i {
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_bottomCta__eZkql {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_bottomCta__eZkql .style_wrapper__CyD56 {
	padding-top: 5rem;
	padding-bottom: 5rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding: 5rem 2rem;
	background-color: var(--primary);
	border-radius: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 span {
	color: var(--primary-dark)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe p {
	margin-top: .8rem;
	color: var(--white);
	text-align: center
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1;
	margin-top: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 {
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-body);
	text-align: center;
	color: var(--grey)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a {
	color: var(--black);
	cursor: pointer;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	background-color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI p {
	font-size: var(--font-size-small);
	margin-top: 1rem;
	color: var(--white);
	opacity: .7
}

@media(max-width:1023px) {
	.style_bottomCta__eZkql .style_wrapper__CyD56 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
		padding: 2rem 1.5rem
	}
}

.style_customers__dXDyA {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_customers__dXDyA .style_wrapper__4YDqr {
	flex-direction: column;
	padding-top: 8rem;
	padding-bottom: 8rem
}

.style_customers__dXDyA .style_wrapper__4YDqr h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto
}

.style_customers__dXDyA .style_wrapper__4YDqr h3 span {
	color: var(--primary)
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
	margin-top: 6rem
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	align-items: center
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u img {
	height: 2rem;
	filter: grayscale(1);
	opacity: .8;
	transition: all .2s
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k:hover .style_item__6Sv5u img {
	filter: none;
	opacity: 1
}

.style_customers__dXDyA .style_wrapper__4YDqr.style_compact___TjM0 {
	padding-top: 5rem
}

.style_customers__dXDyA.style_small__P7UJS .style_wrapper__4YDqr {
	max-width: 640px
}

.style_customers__dXDyA.style_small__P7UJS .style_wrapper__4YDqr .style_list__4WE_k img {
	height: 1.5rem
}

@media(max-width:1023px) {
	.style_customers__dXDyA .style_wrapper__4YDqr {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k {
		grid-template-columns: repeat(2, 1fr)
	}

	.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u img {
		height: 1.5rem
	}
}

.style_ratings__KH9jM {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_ratings__KH9jM .style_wrapper__ZXTZw {
	flex-direction: column;
	padding-top: 2rem;
	padding-bottom: 8rem
}

.style_ratings__KH9jM .style_wrapper__ZXTZw h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h3);
	line-height: var(--font-size-h3-line-height);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto
}

.style_ratings__KH9jM .style_wrapper__ZXTZw h3 span {
	color: var(--primary)
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 2rem
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a {
	display: flex;
	flex-direction: column;
	margin-right: 1rem;
	align-items: center;
	font-size: var(--font-size-para);
	color: var(--text)
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a img {
	width: 3rem;
	margin-bottom: .5rem;
	opacity: .85;
	transition: opacity .2s
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a:last-child {
	margin-right: 0
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a:hover img {
	opacity: 1
}

@media(max-width:1023px) {
	.style_ratings__KH9jM .style_wrapper__ZXTZw {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 {
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_hero__tXrr2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_hero__tXrr2 .style_wrapper__5STRj {
	flex-direction: column;
	align-items: center;
	padding-top: 7rem;
	padding-bottom: 7rem
}

.style_hero__tXrr2 .style_wrapper__5STRj h1 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h1);
	line-height: var(--font-size-h1-line-height);
	font-weight: var(--font-weight-extra-bold);
	text-align: center;
	max-width: 35rem
}

.style_hero__tXrr2 .style_wrapper__5STRj h1 span {
	color: var(--primary)
}

.style_hero__tXrr2 .style_wrapper__5STRj h2 {
	font-family: var(--font-primary);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-regular);
	margin-top: 1.5rem;
	color: var(--text-light);
	text-align: center
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_cta__S3Ykm {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-items: flex-start;
	margin-top: 2rem
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_cta__S3Ykm p {
	color: var(--text-light);
	font-weight: var(--font-weight-regular);
	font-size: var(--font-size-tag);
	margin-top: .35rem;
	opacity: .7;
	margin-left: .5rem
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_gradient__EbuDr {
	height: 35rem;
	width: 35rem;
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 153, 0, .2) 0, hsla(0, 0%, 100%, 0) 100%);
	top: 0;
	z-index: -1
}

.style_product__GskXy {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_product__GskXy .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 2rem;
	padding-bottom: 6rem
}

.style_product__GskXy .style_wrapper__5STRj img,
.style_product__GskXy .style_wrapper__5STRj video {
	box-shadow: 0 20px 35px 11px rgba(0, 0, 0, .1), 0 10px 15px -3px rgba(0, 0, 0, .1);
	border-radius: 1rem
}

.style_features__aKe6n {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_features__aKe6n .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 1rem;
	padding-bottom: 8rem;
	z-index: 1
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV {
	display: flex;
	flex-direction: column;
	align-items: center
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h3 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	margin-bottom: 2rem;
	max-width: 45rem;
	text-align: center
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h3 span {
	color: var(--primary)
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h4 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h3);
	line-height: var(--font-size-h3);
	font-weight: var(--font-weight-bold);
	margin-bottom: 2rem;
	max-width: 45rem;
	text-align: center
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h4 span {
	color: var(--primary)
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV p {
	font-size: var(--font-size-body);
	color: var(--text-light);
	margin-top: .5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM {
	display: flex;
	flex-direction: column;
	margin-top: 5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	flex: 1 1
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD {
	display: flex;
	flex-direction: column;
	max-width: 30rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD h4 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h3);
	font-weight: var(--font-weight-bold)
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD h5 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h4);
	font-weight: var(--font-weight-bold)
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD p {
	font-size: var(--font-size-body);
	color: var(--text-light);
	margin-top: .5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr img {
	width: 100%;
	max-width: 28rem;
	margin-left: 3rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
	flex-direction: row-reverse
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I img {
	margin-left: 0;
	margin-right: 3rem
}

.style_videos___WCFd {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	background-color: var(--primary)
}

.style_videos___WCFd .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 6rem;
	padding-bottom: 6rem;
	z-index: 1
}

.style_videos___WCFd .style_wrapper__5STRj .style_heading__yJKKV {
	display: flex;
	flex-direction: column;
	align-items: center
}

.style_videos___WCFd .style_wrapper__5STRj .style_heading__yJKKV h3 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	margin-bottom: 2rem;
	max-width: 45rem;
	text-align: center;
	color: var(--white)
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	margin-top: 3rem
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1;
	background-color: #2c2c2c;
	border-radius: .5rem;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr h4 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h4);
	font-weight: var(--font-weight-medium);
	max-width: 45rem;
	text-align: center;
	color: var(--white);
	padding: 1rem
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr img,
.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr video {
	width: 100%;
	border-radius: .25rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.style_videos___WCFd .style_wrapper__5STRj .style_cta__S3Ykm {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem
}

@media(max-width:1023px) {
	.style_hero__tXrr2 .style_wrapper__5STRj {
		padding-top: 3rem;
		padding-bottom: 2rem
	}

	.style_hero__tXrr2 .style_wrapper__5STRj .style_gradient__EbuDr {
		height: 100vw;
		width: 100vw
	}

	.style_product__GskXy .style_wrapper__5STRj {
		padding-top: 2rem;
		padding-bottom: 3rem
	}

	.style_product__GskXy .style_wrapper__5STRj img,
	.style_product__GskXy .style_wrapper__5STRj video {
		width: 100%;
		max-height: 20rem;
		border-radius: .25rem
	}

	.style_features__aKe6n .style_wrapper__5STRj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM {
		margin-top: 0
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr,
	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
		flex-direction: column-reverse;
		margin-bottom: 3rem
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr img,
	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I img {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 2rem;
		width: 100%
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
		flex-direction: column-reverse
	}

	.style_videos___WCFd .style_wrapper__5STRj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt {
		margin-top: 2rem;
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_button___8d0M {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	border: 1px solid transparent;
	background-color: var(--primary);
	color: var(--text);
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	transition-property: background-color, border, color;
	transition-duration: .2s
}

.style_button___8d0M .style_spacing__c5b9F {
	width: .25rem;
	height: 1rem
}

.style_button___8d0M .style_loading__NPPDU {
	margin-left: .25rem
}

.style_button___8d0M svg {
	fill: var(--text)
}

.style_button___8d0M.style_large__84rWD {
	font-size: var(--font-size-body);
	padding: .75rem 2rem;
	border-radius: 1.6rem
}

.style_button___8d0M.style_large__84rWD svg {
	width: var(--font-size-body);
	height: var(--font-size-body)
}

.style_button___8d0M.style_medium__PjwQG {
	font-size: var(--font-size-para);
	padding: .5rem 1.25rem;
	border-radius: 1.4rem
}

.style_button___8d0M.style_medium__PjwQG svg {
	width: var(--font-size-para);
	height: var(--font-size-para)
}

.style_button___8d0M.style_small__Jyd8_ {
	font-size: var(--font-size-small);
	padding: .25rem .75rem;
	border-radius: 1rem
}

.style_button___8d0M.style_small__Jyd8_ svg {
	width: var(--font-size-small);
	height: var(--font-size-small)
}

.style_button___8d0M.style_default__8UJG6 {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_default__8UJG6 svg {
	fill: var(--white)
}

.style_button___8d0M:hover {
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white)
}

.style_button___8d0M:active {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M:disabled {
	box-shadow: none !important;
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white);
	cursor: not-allowed
}

.style_button___8d0M.style_white__sJIZ2 {
	color: var(--text-light);
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_white__sJIZ2 svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_white__sJIZ2:hover {
	background-color: var(--primary-highlight)
}

.style_button___8d0M.style_white__sJIZ2:active {
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M.style_white__sJIZ2:disabled {
	box-shadow: none !important;
	color: var(--text);
	background-color: var(--primary-highlight);
	cursor: not-allowed
}

.style_button___8d0M.style_outlined__toWXL {
	background-color: transparent;
	border: 1px solid var(--text-light);
	color: var(--text-light);
	font-size: .8rem
}

.style_button___8d0M.style_outlined__toWXL svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_outlined__toWXL:hover {
	border: 1px solid var(--primary);
	color: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:hover svg {
	fill: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:active {
	border: 1px solid var(--text);
	color: var(--text)
}

.style_button___8d0M.style_outlined__toWXL:active svg {
	fill: var(--text)
}

.style_body__acLZB {
	display: flex;
	flex: 1 1;
	flex-shrink: 0;
	flex-direction: column;
	position: relative
}

.style_main__sw8sM {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	flex-shrink: 0;
	flex-basis: auto
}

.style_wrapper__iiBNU {
	display: flex;
	flex-direction: row;
	width: 1024px;
	padding: 1.5rem 2rem
}

@media(max-width:1023px) {
	.style_wrapper__iiBNU {
		width: 100% !important;
		padding: 1rem 1.5rem
	}
}

.style_header__CtJ_g {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1
}

.style_header__CtJ_g .style_left__kc1DO {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1;
	position: relative
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: var(--font-weight-extra-bold);
	font-family: var(--font-secondary);
	padding: 0;
	font-size: 1.6rem;
	color: var(--primary)
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
	width: 2rem;
	height: 2rem;
	fill: var(--primary);
	transition: all .2s
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW:hover svg {
	transform: rotate(-45deg)
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
	background-color: var(--black);
	color: var(--white);
	font-size: var(--font-size-para);
	font-weight: var(--font-weight-bold);
	padding: .35rem .75rem;
	margin-left: .75rem;
	border-radius: 1rem
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d:hover {
	transform: scale(1.05);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
	height: 2.2rem;
	margin-left: .5rem
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
	height: 100%
}

.style_header__CtJ_g .style_right__J_BHc,
.style_header__CtJ_g .style_right__J_BHc a {
	display: flex;
	flex-direction: row;
	align-items: center
}

.style_header__CtJ_g .style_right__J_BHc a {
	font-size: 1rem;
	margin-right: .5rem;
	cursor: pointer;
	font-weight: var(--font-weight-medium);
	color: var(--text);
	justify-content: center;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	position: relative
}

.style_header__CtJ_g .style_right__J_BHc a svg {
	fill: var(--text);
	margin-left: .25rem
}

.style_header__CtJ_g .style_right__J_BHc a .style_new__aw1kW {
	position: absolute;
	right: .2rem;
	top: .2rem;
	background-color: #ff1744;
	width: .4rem;
	height: .4rem;
	border-radius: 50%
}

.style_header__CtJ_g .style_right__J_BHc a:last-child {
	margin-right: 0
}

.style_header__CtJ_g .style_right__J_BHc a.style_active__x0ngW,
.style_header__CtJ_g .style_right__J_BHc a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 {
	color: var(--primary)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 svg {
	fill: var(--primary)
}

.style_header__CtJ_g.style_background__L_N3y {
	background-color: var(--background-dark)
}

@media(max-width:1023px) {
	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
		font-size: 1.2rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
		width: 1.75rem;
		height: 1.75rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
		font-size: var(--font-size-tag);
		font-weight: var(--font-weight-bold);
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
		height: 1.6rem;
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
		height: 100%
	}

	.style_header__CtJ_g .style_right__J_BHc a {
		margin-right: .5rem
	}

	.style_header__CtJ_g .style_right__J_BHc .style_mobileHidden__0THQX {
		display: none
	}
}

.style_footer__YyPws {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-regular);
	background-color: var(--background-dark)
}

.style_footer__YyPws .style_wrapper__xby_f {
	flex-direction: row;
	padding-top: 3rem;
	padding-bottom: 3rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding-right: 1rem;
	align-items: flex-start
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf svg {
	fill: var(--primary);
	width: 4rem;
	height: 4rem;
	transition: all .2s
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf:hover svg {
	transform: rotate(-45deg)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_caption__NNH6T {
	max-width: 12rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_copyright__rifkY {
	margin-top: .75rem;
	color: var(--text-light)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY {
	display: flex;
	flex-direction: row;
	margin-top: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a {
	display: flex;
	flex-direction: row;
	margin-right: .5rem;
	align-items: center
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a img {
	width: 1.25rem;
	margin-right: .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a:last-child {
	margin-right: 0
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_heading__WdxjE {
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-body);
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: .5rem;
	font-size: var(--font-size-small);
	cursor: pointer
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a .style_online__ukuQD {
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background-color: #239b56;
	margin-left: .35rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a span {
	background-color: var(--positive-light);
	border-radius: .2rem;
	color: var(--positive);
	font-size: .7rem;
	line-height: .7rem;
	margin-left: .25rem;
	padding: 0 .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a:hover {
	color: var(--primary-dark)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
	padding-right: 0
}

@media(max-width:1023px) {
	.style_footer__YyPws .style_wrapper__xby_f {
		flex-direction: column
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
		padding-right: 0;
		margin-bottom: 2rem
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
		margin-bottom: 0
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
		font-size: var(--font-size-para)
	}
}

.style_player__CxBee {
	position: relative
}

.style_player__CxBee img {
	width: 100%
}

.style_player__CxBee button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: transparent;
	outline: none;
	border: none;
	cursor: pointer
}

.style_player__CxBee button svg {
	fill: var(--primary);
	width: 6rem;
	height: 6rem;
	filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .25));
	transition: all .2s
}

.style_player__CxBee button:hover svg {
	transform: scale(1.1)
}

.style_player__CxBee button.style_small__7qMWU svg {
	width: 3.5rem;
	height: 3.5rem;
	fill: var(--white)
}

.style_player__CxBee video {
	width: 100%
}

@media(max-width:1023px) {
	.style_player__CxBee button svg {
		width: 4rem;
		height: 4rem
	}
}

.style_testimonials__jz516 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	background-color: var(--background-dark)
}

.style_testimonials__jz516 .style_wrapper__QssZj {
	flex-direction: column;
	padding-top: 7rem;
	padding-bottom: 7rem
}

.style_testimonials__jz516 .style_wrapper__QssZj h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem
}

.style_testimonials__jz516 .style_wrapper__QssZj h3 span {
	color: var(--primary)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 1.5rem;
	grid-row-gap: 1.5rem;
	margin-top: 1.5rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding: 1rem 1.5rem;
	border-radius: .5rem;
	background-color: var(--white);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	margin-right: .75rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO p {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h5);
	font-weight: var(--font-weight-medium)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_heading__LhocO .style_role__S98m3 {
	font-size: var(--font-size-small);
	color: var(--text-light);
	font-weight: var(--font-weight-regular);
	margin-top: .1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 {
	display: flex;
	flex-direction: column;
	margin-top: 1rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 h5 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h5);
	font-weight: var(--font-weight-bold)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 p {
	color: var(--text-light);
	margin-top: .5rem;
	font-size: var(--font-size-small)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: var(--font-weight-medium)
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE a {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: .25rem
}

.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i .style_item__JEKNc .style_body__xuzV8 .style_via__mcFnE a img {
	width: 1rem;
	height: 1rem;
	margin-left: .1rem
}

@media(max-width:1023px) {
	.style_testimonials__jz516 .style_wrapper__QssZj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_testimonials__jz516 .style_wrapper__QssZj .style_list__y3W_i {
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_bottomCta__eZkql {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_bottomCta__eZkql .style_wrapper__CyD56 {
	padding-top: 5rem;
	padding-bottom: 5rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding: 5rem 2rem;
	background-color: var(--primary);
	border-radius: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 span {
	color: var(--primary-dark)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe p {
	margin-top: .8rem;
	color: var(--white);
	text-align: center
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1;
	margin-top: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 {
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-body);
	text-align: center;
	color: var(--grey)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a {
	color: var(--black);
	cursor: pointer;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	background-color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI p {
	font-size: var(--font-size-small);
	margin-top: 1rem;
	color: var(--white);
	opacity: .7
}

@media(max-width:1023px) {
	.style_bottomCta__eZkql .style_wrapper__CyD56 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
		padding: 2rem 1.5rem
	}
}

.style_customers__dXDyA {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_customers__dXDyA .style_wrapper__4YDqr {
	flex-direction: column;
	padding-top: 8rem;
	padding-bottom: 8rem
}

.style_customers__dXDyA .style_wrapper__4YDqr h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto
}

.style_customers__dXDyA .style_wrapper__4YDqr h3 span {
	color: var(--primary)
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
	margin-top: 6rem
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	align-items: center
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u img {
	height: 2rem;
	filter: grayscale(1);
	opacity: .8;
	transition: all .2s
}

.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k:hover .style_item__6Sv5u img {
	filter: none;
	opacity: 1
}

.style_customers__dXDyA .style_wrapper__4YDqr.style_compact___TjM0 {
	padding-top: 5rem
}

.style_customers__dXDyA.style_small__P7UJS .style_wrapper__4YDqr {
	max-width: 640px
}

.style_customers__dXDyA.style_small__P7UJS .style_wrapper__4YDqr .style_list__4WE_k img {
	height: 1.5rem
}

@media(max-width:1023px) {
	.style_customers__dXDyA .style_wrapper__4YDqr {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k {
		grid-template-columns: repeat(2, 1fr)
	}

	.style_customers__dXDyA .style_wrapper__4YDqr .style_list__4WE_k .style_item__6Sv5u img {
		height: 1.5rem
	}
}

.style_ratings__KH9jM {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_ratings__KH9jM .style_wrapper__ZXTZw {
	flex-direction: column;
	padding-top: 2rem;
	padding-bottom: 8rem
}

.style_ratings__KH9jM .style_wrapper__ZXTZw h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h3);
	line-height: var(--font-size-h3-line-height);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto
}

.style_ratings__KH9jM .style_wrapper__ZXTZw h3 span {
	color: var(--primary)
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 2rem
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a {
	display: flex;
	flex-direction: column;
	margin-right: 1rem;
	align-items: center;
	font-size: var(--font-size-para);
	color: var(--text)
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a img {
	width: 3rem;
	margin-bottom: .5rem;
	opacity: .85;
	transition: opacity .2s
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a:last-child {
	margin-right: 0
}

.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 a:hover img {
	opacity: 1
}

@media(max-width:1023px) {
	.style_ratings__KH9jM .style_wrapper__ZXTZw {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_ratings__KH9jM .style_wrapper__ZXTZw .style_list__i3kq2 {
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_hero__tXrr2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_hero__tXrr2 .style_wrapper__5STRj {
	flex-direction: column;
	align-items: center;
	padding-top: 7rem;
	padding-bottom: 7rem
}

.style_hero__tXrr2 .style_wrapper__5STRj h1 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h1);
	line-height: var(--font-size-h1-line-height);
	font-weight: var(--font-weight-extra-bold);
	text-align: center;
	max-width: 35rem
}

.style_hero__tXrr2 .style_wrapper__5STRj h1 span {
	color: var(--primary)
}

.style_hero__tXrr2 .style_wrapper__5STRj h2 {
	font-family: var(--font-primary);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-regular);
	margin-top: 1.5rem;
	color: var(--text-light);
	text-align: center
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_cta__S3Ykm {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-items: flex-start;
	margin-top: 2rem
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_cta__S3Ykm p {
	color: var(--text-light);
	font-weight: var(--font-weight-regular);
	font-size: var(--font-size-tag);
	margin-top: .35rem;
	opacity: .7;
	margin-left: .5rem
}

.style_hero__tXrr2 .style_wrapper__5STRj .style_gradient__EbuDr {
	height: 35rem;
	width: 35rem;
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 153, 0, .2) 0, hsla(0, 0%, 100%, 0) 100%);
	top: 0;
	z-index: -1
}

.style_product__GskXy {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_product__GskXy .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 2rem;
	padding-bottom: 6rem
}

.style_product__GskXy .style_wrapper__5STRj img,
.style_product__GskXy .style_wrapper__5STRj video {
	box-shadow: 0 20px 35px 11px rgba(0, 0, 0, .1), 0 10px 15px -3px rgba(0, 0, 0, .1);
	border-radius: 1rem
}

.style_features__aKe6n {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0
}

.style_features__aKe6n .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 8rem;
	padding-bottom: 8rem;
	z-index: 1
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV {
	display: flex;
	flex-direction: column;
	align-items: center
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h3 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	margin-bottom: 2rem;
	max-width: 45rem;
	text-align: center
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV h3 span {
	color: var(--primary)
}

.style_features__aKe6n .style_wrapper__5STRj .style_heading__yJKKV p {
	font-size: var(--font-size-body);
	color: var(--text-light);
	margin-top: .5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM {
	display: flex;
	flex-direction: column;
	margin-top: 5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	flex: 1 1
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD {
	display: flex;
	flex-direction: column;
	max-width: 30rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD h4 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h3);
	font-weight: var(--font-weight-bold)
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr .style_info__qKhAD p {
	font-size: var(--font-size-body);
	color: var(--text-light);
	margin-top: .5rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr img {
	width: 100%;
	max-width: 28rem;
	margin-left: 3rem
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
	flex-direction: row-reverse
}

.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I img {
	margin-left: 0;
	margin-right: 3rem
}

.style_videos___WCFd {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	background-color: var(--primary)
}

.style_videos___WCFd .style_wrapper__5STRj {
	flex-direction: column;
	padding-top: 6rem;
	padding-bottom: 6rem;
	z-index: 1
}

.style_videos___WCFd .style_wrapper__5STRj .style_heading__yJKKV {
	display: flex;
	flex-direction: column;
	align-items: center
}

.style_videos___WCFd .style_wrapper__5STRj .style_heading__yJKKV h3 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	margin-bottom: 2rem;
	max-width: 45rem;
	text-align: center;
	color: var(--white)
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	margin-top: 3rem
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1;
	background-color: #2c2c2c;
	border-radius: .5rem;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr h4 {
	font-family: var(--font-primary);
	font-size: var(--font-size-h4);
	font-weight: var(--font-weight-medium);
	max-width: 45rem;
	text-align: center;
	color: var(--white);
	padding: 1rem
}

.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr img,
.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt .style_item__iGfKr video {
	width: 100%;
	border-radius: .25rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.style_videos___WCFd .style_wrapper__5STRj .style_cta__S3Ykm {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem
}

@media(max-width:1023px) {
	.style_hero__tXrr2 .style_wrapper__5STRj {
		padding-top: 3rem;
		padding-bottom: 2rem
	}

	.style_hero__tXrr2 .style_wrapper__5STRj .style_gradient__EbuDr {
		height: 100vw;
		width: 100vw
	}

	.style_product__GskXy .style_wrapper__5STRj {
		padding-top: 2rem;
		padding-bottom: 3rem
	}

	.style_product__GskXy .style_wrapper__5STRj img,
	.style_product__GskXy .style_wrapper__5STRj video {
		width: 100%;
		max-height: 20rem;
		border-radius: .25rem
	}

	.style_features__aKe6n .style_wrapper__5STRj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM {
		margin-top: 0
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr,
	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
		flex-direction: column-reverse;
		margin-bottom: 3rem
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr img,
	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I img {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 2rem;
		width: 100%
	}

	.style_features__aKe6n .style_wrapper__5STRj .style_content__AiFdM .style_item__iGfKr.style_reverse__KJH8I {
		flex-direction: column-reverse
	}

	.style_videos___WCFd .style_wrapper__5STRj {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.style_videos___WCFd .style_wrapper__5STRj .style_list__BFQkt {
		margin-top: 2rem;
		grid-template-columns: repeat(1, 1fr)
	}
}

.style_body__acLZB {
	display: flex;
	flex: 1 1;
	flex-shrink: 0;
	flex-direction: column;
	position: relative
}

.style_main__sw8sM {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	flex-shrink: 0;
	flex-basis: auto
}

.style_wrapper__iiBNU {
	display: flex;
	flex-direction: row;
	width: 1024px;
	padding: 1.5rem 2rem
}

@media(max-width:1023px) {
	.style_wrapper__iiBNU {
		width: 100% !important;
		padding: 1rem 1.5rem
	}
}

.style_header__CtJ_g {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1
}

.style_header__CtJ_g .style_left__kc1DO {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1;
	position: relative
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: var(--font-weight-extra-bold);
	font-family: var(--font-secondary);
	padding: 0;
	font-size: 1.6rem;
	color: var(--primary)
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
	width: 2rem;
	height: 2rem;
	fill: var(--primary);
	transition: all .2s
}

.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW:hover svg {
	transform: rotate(-45deg)
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
	background-color: var(--black);
	color: var(--white);
	font-size: var(--font-size-para);
	font-weight: var(--font-weight-bold);
	padding: .35rem .75rem;
	margin-left: .75rem;
	border-radius: 1rem
}

.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d:hover {
	transform: scale(1.05);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
	height: 2.2rem;
	margin-left: .5rem
}

.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
	height: 100%
}

.style_header__CtJ_g .style_right__J_BHc,
.style_header__CtJ_g .style_right__J_BHc a {
	display: flex;
	flex-direction: row;
	align-items: center
}

.style_header__CtJ_g .style_right__J_BHc a {
	font-size: 1rem;
	margin-right: .5rem;
	cursor: pointer;
	font-weight: var(--font-weight-medium);
	color: var(--text);
	justify-content: center;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	position: relative
}

.style_header__CtJ_g .style_right__J_BHc a svg {
	fill: var(--text);
	margin-left: .25rem
}

.style_header__CtJ_g .style_right__J_BHc a .style_new__aw1kW {
	position: absolute;
	right: .2rem;
	top: .2rem;
	background-color: #ff1744;
	width: .4rem;
	height: .4rem;
	border-radius: 50%
}

.style_header__CtJ_g .style_right__J_BHc a:last-child {
	margin-right: 0
}

.style_header__CtJ_g .style_right__J_BHc a.style_active__x0ngW,
.style_header__CtJ_g .style_right__J_BHc a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 {
	color: var(--primary)
}

.style_header__CtJ_g .style_right__J_BHc a.style_cta__BDKg7 svg {
	fill: var(--primary)
}

.style_header__CtJ_g.style_background__L_N3y {
	background-color: var(--background-dark)
}

@media(max-width:1023px) {
	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW {
		font-size: 1.2rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_brand__uOXbW svg {
		width: 1.75rem;
		height: 1.75rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_deal__6sX3d {
		font-size: var(--font-size-tag);
		font-weight: var(--font-weight-bold);
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh {
		height: 1.6rem;
		margin-left: .5rem
	}

	.style_header__CtJ_g .style_left__kc1DO .style_producthunt__HW7jh img {
		height: 100%
	}

	.style_header__CtJ_g .style_right__J_BHc a {
		margin-right: .5rem
	}

	.style_header__CtJ_g .style_right__J_BHc .style_mobileHidden__0THQX {
		display: none
	}
}

.style_footer__YyPws {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-regular);
	background-color: var(--background-dark)
}

.style_footer__YyPws .style_wrapper__xby_f {
	flex-direction: row;
	padding-top: 3rem;
	padding-bottom: 3rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding-right: 1rem;
	align-items: flex-start
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf svg {
	fill: var(--primary);
	width: 4rem;
	height: 4rem;
	transition: all .2s
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_logo__5JILf:hover svg {
	transform: rotate(-45deg)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_caption__NNH6T {
	max-width: 12rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_brand__4ILxY .style_copyright__rifkY {
	margin-top: .75rem;
	color: var(--text-light)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY {
	display: flex;
	flex-direction: row;
	margin-top: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a {
	display: flex;
	flex-direction: row;
	margin-right: .5rem;
	align-items: center
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a img {
	width: 1.25rem;
	margin-right: .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_ratings__7BNUY a:last-child {
	margin-right: 0
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ .style_heading__WdxjE {
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-body);
	margin-bottom: 1rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: .5rem;
	font-size: var(--font-size-small);
	cursor: pointer
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a .style_online__ukuQD {
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background-color: #239b56;
	margin-left: .35rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a span {
	background-color: var(--positive-light);
	border-radius: .2rem;
	color: var(--positive);
	font-size: .7rem;
	line-height: .7rem;
	margin-left: .25rem;
	padding: 0 .2rem
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a:hover {
	color: var(--primary-dark)
}

.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
	padding-right: 0
}

@media(max-width:1023px) {
	.style_footer__YyPws .style_wrapper__xby_f {
		flex-direction: column
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ {
		padding-right: 0;
		margin-bottom: 2rem
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ:last-child {
		margin-bottom: 0
	}

	.style_footer__YyPws .style_wrapper__xby_f .style_column__zzAJQ a {
		font-size: var(--font-size-para)
	}
}

.style_scrollToTop__I2SNt {
	position: fixed;
	border: none;
	outline: none;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	cursor: pointer;
	background-color: var(--grey-light);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: .7;
	transition: opacity .2s;
	right: 2.1rem;
	bottom: 6rem
}

.style_scrollToTop__I2SNt svg {
	fill: var(--grey-dark);
	height: 1.5rem;
	width: 1.5rem
}

.style_scrollToTop__I2SNt:hover {
	opacity: 1
}

@media(max-width:1023px) {
	.style_scrollToTop__I2SNt {
		right: 1.65rem
	}
}

.style_button___8d0M {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	border: 1px solid transparent;
	background-color: var(--primary);
	color: var(--text);
	font-family: var(--font-primary);
	font-weight: var(--font-weight-bold);
	transition-property: background-color, border, color;
	transition-duration: .2s
}

.style_button___8d0M .style_spacing__c5b9F {
	width: .25rem;
	height: 1rem
}

.style_button___8d0M .style_loading__NPPDU {
	margin-left: .25rem
}

.style_button___8d0M svg {
	fill: var(--text)
}

.style_button___8d0M.style_large__84rWD {
	font-size: var(--font-size-body);
	padding: .75rem 2rem;
	border-radius: 1.6rem
}

.style_button___8d0M.style_large__84rWD svg {
	width: var(--font-size-body);
	height: var(--font-size-body)
}

.style_button___8d0M.style_medium__PjwQG {
	font-size: var(--font-size-para);
	padding: .5rem 1.25rem;
	border-radius: 1.4rem
}

.style_button___8d0M.style_medium__PjwQG svg {
	width: var(--font-size-para);
	height: var(--font-size-para)
}

.style_button___8d0M.style_small__Jyd8_ {
	font-size: var(--font-size-small);
	padding: .25rem .75rem;
	border-radius: 1rem
}

.style_button___8d0M.style_small__Jyd8_ svg {
	width: var(--font-size-small);
	height: var(--font-size-small)
}

.style_button___8d0M.style_default__8UJG6 {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_default__8UJG6 svg {
	fill: var(--white)
}

.style_button___8d0M:hover {
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white)
}

.style_button___8d0M:active {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M:disabled {
	box-shadow: none !important;
	background-color: var(--primary-light);
	border: 1px solid var(--primary-light);
	color: var(--white);
	cursor: not-allowed
}

.style_button___8d0M.style_white__sJIZ2 {
	color: var(--text-light);
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.style_button___8d0M.style_white__sJIZ2 svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_white__sJIZ2:hover {
	background-color: var(--primary-highlight)
}

.style_button___8d0M.style_white__sJIZ2:active {
	background-color: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
}

.style_button___8d0M.style_white__sJIZ2:disabled {
	box-shadow: none !important;
	color: var(--text);
	background-color: var(--primary-highlight);
	cursor: not-allowed
}

.style_button___8d0M.style_outlined__toWXL {
	background-color: transparent;
	border: 1px solid var(--text-light);
	color: var(--text-light);
	font-size: .8rem
}

.style_button___8d0M.style_outlined__toWXL svg {
	fill: var(--text-light)
}

.style_button___8d0M.style_outlined__toWXL:hover {
	border: 1px solid var(--primary);
	color: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:hover svg {
	fill: var(--primary)
}

.style_button___8d0M.style_outlined__toWXL:active {
	border: 1px solid var(--text);
	color: var(--text)
}

.style_button___8d0M.style_outlined__toWXL:active svg {
	fill: var(--text)
}

.style_bottomCta__eZkql {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.style_bottomCta__eZkql .style_wrapper__CyD56 {
	padding-top: 5rem;
	padding-bottom: 5rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	padding: 5rem 2rem;
	background-color: var(--primary);
	border-radius: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2);
	font-weight: var(--font-weight-bold);
	text-align: center;
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe h3 span {
	color: var(--primary-dark)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe p {
	margin-top: .8rem;
	color: var(--white);
	text-align: center
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1;
	margin-top: 2rem
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 {
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-body);
	text-align: center;
	color: var(--grey)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a {
	color: var(--black);
	cursor: pointer;
	padding: .25rem .5rem;
	border-radius: .25rem;
	transition: background-color .2s;
	background-color: var(--white)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI h4 a:hover {
	background-color: rgba(0, 0, 0, .05)
}

.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe .style_content__NYlQI p {
	font-size: var(--font-size-small);
	margin-top: 1rem;
	color: var(--white);
	opacity: .7
}

@media(max-width:1023px) {
	.style_bottomCta__eZkql .style_wrapper__CyD56 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.style_bottomCta__eZkql .style_wrapper__CyD56 .style_primary__1tsYe {
		padding: 2rem 1.5rem
	}
}

.style_heading__wQuuM {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--background-dark)
}

.style_heading__wQuuM .style_wrapper__bjgpc {
	flex-direction: column;
	padding-top: 3rem;
	padding-bottom: 3rem
}

.style_heading__wQuuM .style_wrapper__bjgpc h1 {
	font-family: var(--font-secondary);
	font-size: var(--font-size-h2);
	line-height: var(--font-size-h2-line-height)
}

.style_heading__wQuuM .style_wrapper__bjgpc p {
	color: var(--grey-dark);
	font-family: var(--font-primary);
	font-size: var(--font-size-small);
	margin-top: .75rem
}

.style_detail__3Czqt {
	display: flex;
	align-items: center;
	margin: 2rem 0
}

.style_detail__3Czqt,
.style_detail__3Czqt .style_wrapper__bjgpc {
	flex-direction: column
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg {
	display: flex;
	flex-direction: row;
	align-items: flex-start
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	word-break: break-word
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h1 {
	font-size: var(--font-size-h2) !important;
	line-height: var(--font-size-h2-line-height)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h2 {
	font-size: var(--font-size-h3) !important;
	line-height: var(--font-size-h3-line-height);
	padding-bottom: 1rem;
	padding-top: var(--font-size-h1)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h3 {
	font-size: var(--font-size-h4) !important;
	line-height: var(--font-size-h4-line-height);
	padding-bottom: .75rem;
	padding-top: 1rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h4 {
	font-size: var(--font-size-body) !important;
	padding-bottom: .5rem;
	padding-top: var(--font-size-body)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h5,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h6 {
	font-size: var(--font-size-para) !important
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h1:first-child,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h2:first-child,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h3:first-child {
	padding-top: 0
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h1 a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h2 a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h3 a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h4 a {
	font-size: var(--font-size-body);
	line-height: var(--font-size-body);
	display: none
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h1:hover a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h2:hover a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h3:hover a,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 h4:hover a {
	display: inline
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 p {
	font-family: var(--font-primary) !important;
	font-size: var(--font-size-body);
	margin-bottom: .5rem !important;
	min-height: 1rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 p a {
	color: var(--primary-dark) !important
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 p a:hover {
	text-decoration: underline
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ol,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ul {
	margin-left: 1.5rem !important;
	margin-bottom: .5rem !important;
	margin-top: .25rem !important;
	padding: 0 !important;
	list-style: decimal !important
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ol li,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ul li {
	margin-bottom: .5rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ul li {
	list-style: disc
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 ol li {
	list-style: decimal
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 hr {
	border: none;
	padding: 1rem 0
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 hr:before {
	display: inline-block;
	content: "***";
	font-size: 30px;
	line-height: 65px;
	letter-spacing: .2em
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 iframe,
.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 img {
	border: 1px solid var(--grey);
	border-radius: .25rem;
	width: 100%
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 blockquote {
	margin: .5rem 0;
	padding-left: 1rem;
	border-left: 2px solid var(--border)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 1rem 0
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section article {
	display: flex;
	flex-direction: column;
	flex: 1 1;
	margin-left: 2rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section article:first-child {
	margin-left: 0
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ {
	display: flex;
	flex-direction: column;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 16rem;
	margin-right: 2rem;
	padding: 1rem;
	font-size: var(--font-size-small);
	background-color: var(--background-dark);
	border-radius: .25rem;
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ a {
	transition: color .2s
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ a span {
	display: flex;
	flex: 1 1
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ a svg {
	margin-top: .2rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ a:hover {
	color: var(--primary-dark)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol {
	padding-left: 0;
	margin: 0
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol li {
	font-weight: var(--font-weight-medium);
	padding-top: .75rem;
	list-style: none;
	display: flex;
	flex-direction: column
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol li a {
	display: flex;
	flex-direction: row;
	justify-content: space-between
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol li a svg {
	fill: var(--text)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol li ol {
	margin: 0;
	padding-left: 1rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ ol li ol li {
	font-weight: var(--font-weight-regular);
	padding-top: .5rem;
	list-style: none
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr {
	display: flex;
	flex-direction: row;
	margin-top: 3rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o {
	display: flex;
	flex: 1 1
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o a {
	display: flex;
	flex: 1 1;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid var(--border);
	border-radius: .25rem;
	cursor: pointer;
	transition: border-color .2s
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o a p {
	font-size: var(--font-size-para);
	font-weight: var(--font-weight-regular)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o a h5 {
	color: var(--text);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-medium);
	font-family: var(--font-secondary);
	margin-top: .25rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o a:hover {
	border: 1px solid var(--primary)
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o.style_previous__6N8zC {
	justify-content: flex-start;
	margin-right: 1rem
}

.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o.style_next__kaKWI a {
	align-items: flex-end
}

@media(max-width:1023px) {
	.style_heading__wQuuM .style_wrapper__bjgpc {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem
	}

	.style_detail__3Czqt {
		margin: 1rem 0
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg,
	.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section {
		flex-direction: column
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section article {
		margin-left: 0;
		margin-top: 1rem
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_blocks__JGfs0 section article:first-child {
		margin-top: 0
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_content__my5Eg .style_tableOfContent__Khef_ {
		position: static;
		margin-right: 0;
		width: 100%;
		margin-bottom: 2rem;
		font-size: var(--font-size-para);
		max-height: 50vh
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr {
		display: flex;
		flex-direction: column;
		margin-top: 3rem
	}

	.style_detail__3Czqt .style_wrapper__bjgpc .style_continue__SVoIr .style_item__o_H6o.style_previous__6N8zC {
		margin-right: 0;
		margin-bottom: 1rem
	}
}



