/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* { box-sizing: border-box }
img { max-width: 100%; }

:root {
	--primary-color: #eb4c17;
}

/* Breakpoints: mobile first; tablet; large */
@media (min-width: 768px) {
	
}
@media (min-width: 1024px) {
	
}

html {
	background-color: #000;
	font-family: "Baloo 2", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body {
	margin: 0;
	padding: 0;
	color: #fff;
	background-color: #02171a;
}

.alt-background {
	background-color: #0B2325;
}

/* Typography: Headings
-------------------------------------------------- */
h1, .heading-h1 {
	font-size: 1.8823529412rem;
	font-weight: 800;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
}
h2, .heading-h2 {
	font-size: 1.4117647059rem;
	font-weight: 800;
	line-height: 1.17;
	letter-spacing: .009em;
	margin-top: 0.5em;
	margin-bottom: 1em;
	text-transform: uppercase;
}
h3, .heading-h3 {
	font-size: 1.2352941176rem;
	font-weight: 800;
	line-height: 1.19;
	margin-top: 1em;
	margin-bottom: 0.5em;
	text-transform: uppercase;
}
h4, .heading-h4 {
	font-size: 1.10rem;
	line-height: 1.24;
	margin-top: 1.5em;
	margin-bottom: 0.75em;
}
h5, .heading-h5 {
	font-size: 1.0rem;
	margin-top: 0;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}

@media (min-width: 768px) {
	h1, .heading-h1 {
		font-size: 2.5rem;
		line-height: 1.25;
	}
	h2, .heading-h2 {
		font-size: 2.0rem;
		line-height: 1.125;
	}
	h3, .heading-h3 {
		font-size: 1.2rem;
		line-height: 1.14;
	}
	h4, .heading-h4 {
		
	}
	h5, .heading-h5 {
		
	}
}

@media (max-width: 767px) {
	h1 span {
		display: block;
		font-size: 0.5em;
		line-height: 1.3;
		margin-bottom: 0.2em;
	}
}



/* Typography: Standardize paragraph sizing across typical elements
-------------------------------------------------- */
p,
ul,
ol {
	font-size: 1rem;
	margin-block-start: 1.0em;
	margin-block-end: 1.0em;
}

.sub-heading {
	font-size: 1.0rem;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 3px;
	margin-bottom: 1em;
}

.lead {
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.24;
	letter-spacing: .007em;
	margin-top: 1em;
	margin-bottom: 1.5em;
}

.small-print {
	display: block;
	font-size: 12px;
	line-height: 16px;
}

@media (min-width: 50em) {
	.lead {
		font-size: 1.41rem;
		line-height: 1.33;
	}
}

/* Typography: Links
-------------------------------------------------- */
a,
.link {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a.plain-link {
	text-decoration: none;
	color: inherit;
}
a.plain-link:hover {
	text-decoration: underline;
}
/* Layout
-------------------------------------------------- */
.container {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container.wide {
	max-width: 1500px;
}
.container.padded {
	padding-top: 100px;
	padding-bottom: 100px;
}

.character-width-container {
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.container {
		padding-left: 40px;
		padding-right: 40px;
	}
}
















/* Components: Buttons
-------------------------------------------------- */
.button {
	appearance: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	border-radius: 0;
	color: #fff;
	background-color: transparent;
	border: 1px solid #fff;
	height: 2.2em;
	padding: 0 2em;
	text-transform: uppercase;
}
.button:hover {
	background-color: #fff;
	color: black;
}
.button.prominent {
	background-color: var(--primary-color);
}

.button.wide {
	padding-left: 5em;
	padding-right: 5em;
}





















.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100vh;
	background-image: url('/img/background-tiger.png');
	background-size: cover;
	background-position: center;
}
.hero .container {
	text-align: center;
}
.hero .hero-img {
	display: inline-block;
	width: 90%;
	max-width: 440px;
	margin-bottom: 20px;
}




.navbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0;
}
.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar-logo {
	width: auto;
	height: 30px;
}
@media screen and (min-width: 768px) {
	.navbar-logo {
		height: 52px;
	}
}










.section {
	padding: 50px 0;
	text-align: center;
}








.grid {
	display: grid;
	gap: 20px;
}

.grid.divided .col {
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.grid.divided .col:last-child {
	border-bottom: none;
}

@media screen and (min-width: 768px) {
	.grid.x2 {
		column-gap: 120px;
		row-gap: 50px;
		grid-template-columns: 1fr 1fr;
	}
	.grid.x3 {
		gap: 100px;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.grid.x4 {
		gap: 80px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.grid .col .icon {
	max-width: 60px;
}

.grid .col .lg {
	font-size: 1.8em;
}















.testimonial-logo {
	display: inline-block;
	width: 80%;
	max-width: 220px;
	margin-bottom: 20px;
}
.testimonial-text {
	font-weight: 700;
}
.testimonial-by {
	margin-bottom: 0;
}







.screenshot {
	display: block;
	width: 680px;
	max-width: 100%;
	margin: 30px auto 0 auto;
}
@media screen and (min-width: 768px) {
	.screenshot {
		
	}
}

















.glide__bullet {
	appearance: none;
	border: none;
	width: 30px;
	height: 6px;
	border-radius: 10px;
	background: white;
	margin: 0 2px;
}
.glide__bullet--active {
	background: var(--primary-color);
}

























form {
	margin: 30px auto 0 auto;
	max-width: 800px;
	text-align: left;
}
@media screen and (min-width: 768px) {
	.input-columns {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
	}
}
.input-group {
	margin: 0 0 20px 0;
}
label {
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	margin: 0 0 2px 0;
	font-size: 16px;
}
.input {
	display: block;
	background-color: rgba(255,255,255, 0.06);
	border: 1px solid rgba(255,255,255, 0.2);
	border-radius: none;
	font-size: 16px;
	width: 100%;
	color: white;
	padding: 6px 15px;
}








.alert {
	margin: 0 0 30px 0;
	padding: 15px;
	background: rgba(255,255,255, 0.06);
	border: 1px solid rgba(255,255,255, 0.2);
}
.alert.error {
	background-color: rgb(173, 22, 22);
}
.alert.success {
	background-color: green;
}






.spacer {
	height: 100px;
}

.left-aligned {
	text-align: left;
}




























.footer-area {
	margin-top: 100px;
}





























/* Alignment
-------------------------------------------------- */
.centered { text-align: center }
.right-align { text-align: right; }
@media (min-width: 768px) {
	.centered-on-lg { text-align: center }
}


/* Spacing
-------------------------------------------------- */
hr,
.divider {
	margin: 60px 0;
	border: none;
	height: 1px;
	background-color: var(--divider-color);
}
.margin-top-none { margin-top: 0; }
.margin-top-xs { margin-top: 10px; }
.margin-top-sm { margin-top: 25px; }
.margin-top-md { margin-top: 50px; }
.margin-top-lg { margin-top: 100px; }
.margin-bottom-none { margin-bottom: 0; }
.margin-bottom-xs { margin-bottom: 10px; }
.margin-bottom-sm { margin-bottom: 25px; }
.margin-bottom-md { margin-bottom: 50px; }
.margin-bottom-lg { margin-bottom: 100px; }
.margin-bottom-xl { margin-bottom: 200px; }

.padding-top-xs { padding-top: 10px; }
.padding-top-sm { padding-top: 25px; }
.padding-top-md { padding-top: 50px; }
.padding-top-lg { padding-top: 100px; }




/* Display helpers
-------------------------------------------------- */
.block { display: block }
.hidden { display: none; }
@media (max-width: 767px) {
	.hidden-on-sm { display: none !important; }
}
@media (min-width: 768px) {
	.hidden-on-md { display: none !important; }
}
@media (min-width: 1024px) {
	.hidden-on-lg { display: none !important; }
}
