html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-tap-highlight-color: rgba(0, 0, 0, 0);
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	background-color: #23272a;
	color: white;
	position: relative;
    overflow-x: hidden;
    font-family: sofia-pro,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
	min-height: 100%;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
	padding-right: 15px;
	width: calc(100% - 30px);
}

nav {
	height: 90px;
}

nav > div:nth-child(1) {
	float: left;
	height: 50px;
	padding-top: 20px;
}

nav > div:nth-child(2) {
	float: right;
	height: 50px;
	padding-top: 20px;
}

.navigation_logo {
	height: 50px;
}

.navigation_logo > div:nth-child(1) {
	float: left;
}

.navigation_logo > div:nth-child(1) > img {
	width: 50px;
    height: 50px;
    border-radius: 50px;
	box-shadow: rgb(70 102 207) 0px 0px 18px;
	background-color: #5e76ce;
}

.navigation_logo > div:nth-child(2) {
	float: left;
	font-size: 21px;
	color: #e0e0e0;
	line-height: 21px;
    padding-top: 13px;
	padding-left: 15px;
}

.navigation_logo > div:nth-child(2) > span {
	font-weight: 500;
	color: white;
}

@media (max-width: 450px) {
	.navigation_logo > div:nth-child(2) {
		width: 170px;
		padding-top: 2px;
		line-height: 23px;
	}
}

.primary_hamburger {
	display: none;
    height: 50px;
    width: 50px;
	cursor: pointer;
}

.primary_hamburger svg {
    width: 38px;
    height: 38px;
    padding: 6px;
}

@media (max-width: 784px) {
	.primary_navigation {
		display: none;
	}
	.primary_hamburger {
		display: block;
	}
}

@media (min-width: 785px) {
	.mobile_menu {
		display: none !important;
	}
}

.primary_navigation {
	height: 50px;
}

.primary_navigation > a > div {
	font-size: 20px;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 8px;
	color: #e0e0e0;
	transition: color 0.1s;
}

.primary_navigation > a > div:not(.primary_button):hover {
	color: white;
}

.primary_navigation > a > div.primary_button {
	color: white;
    background: #6379eb;
    margin-top: 0px;
    padding-top: 11px;
    padding-bottom: 13px;
    border-radius: 13px;
    margin-top: 2px;
    box-shadow: rgb(70 102 207) 0px 0px 18px;
    margin-left: 12px;
}

.hero_top {
	height: 80vh;
	min-height: 400px;
	max-height: 600px;
	position: relative;
}

@media (max-width: 700px) {
	.hero_top {
		max-height: 500px;
	}
}

@media (max-width: 600px) {
	.hero_top {
		max-height: 450px;
	}
}

@media (max-width: 500px) {
	.hero_top {
		min-height: 400px;
		max-height: 400px;
	}
}

.hero_content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	line-height: 1.2;
}

.hero_text {
	text-align: center;
	font-size: 77px;
	color: #e8e8e8;
}

@media (max-width: 645px) {
	.hero_text {
		font-size: 11.5vw;
	}
}

.hero_text span {
    background-image: linear-gradient(45deg, #647aeb 0%, #7c91f7 100%);
    color: transparent;
    -webkit-background-clip: text;
	text-shadow: rgb(102 138 255 / 45%) 0px 0px 15px;
}

.mobile_menu {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-color: #23272a;
}

.mobile_menu > div:nth-child(1) {
    padding: 20px 15px;
    overflow: hidden;
}

.mobile_menu > div:nth-child(1) > div {
	height: 50px;
    width: 50px;
    float: right;
	cursor: pointer;
}

.mobile_menu > div:nth-child(1) > div > svg {
    width: 38px;
    height: 38px;
    padding: 6px;
}

.mobile_menu > div:nth-child(2) {
	margin: 0 auto;
	max-width: 188px;
	width: 100%;
}

.mobile_menu > div:nth-child(2) > a {
	text-decoration: none;
}

.mobile_menu > div:nth-child(2) > a > div {
	font-size: 25px;
	padding-left: 15px;
	padding-right: 15px;
    padding-top: 11px;
    padding-bottom: 13px;
	margin-top: 2px;
	color: #e0e0e0;
	transition: color 0.1s;
	text-align: center;
	margin-bottom: 10px;
}

.mobile_menu > div:nth-child(2) > a > div:not(.primary_button):hover {
	color: white;
}

.mobile_menu > div:nth-child(2) > a > div.primary_button {
	color: white;
    background: #6379eb;
    padding-top: 11px;
    padding-bottom: 13px;
    border-radius: 13px;
    margin-top: 2px;
    box-shadow: rgb(70 102 207) 0px 0px 18px;
	margin-top: 20px;
}

.hero_content > a {
	text-decoration: none;
}

.hero_button {
    color: white;
    background: #6379eb;
    padding-top: 11px;
    padding-bottom: 13px;
    border-radius: 13px;
    box-shadow: rgb(70 102 207) 0px 0px 18px;
    font-size: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 190px;
    text-align: center;
    margin: 0 auto;
    margin-top: 32px;
}

@media (max-width: 600px) {
	.hero_button {
		font-size: 26px;
		width: 160px;
	}
}

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

.see_all_commands a {
    color: #7c91f7;
    text-decoration: none;
    font-size: 25px;
	transition: 0.2s color;
}

.see_all_commands a:hover {
	color: #90a3ff;
}

.features_row {
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 12px;
}

.feature_item {
	float: left;
	width: calc(50% - 20px);
	padding: 10px;
}

@media (max-width: 600px) {
	.feature_item {
		width: calc(100% - 20px);
		padding-bottom: 35px;
	}
}

.feature_item > div:nth-child(1) {
	width: 90px;
    height: 90px;
    background: #5a71eb;
    border-radius: 90px;
	margin: 0 auto;
}

.feature_item > div:nth-child(1) > svg {
    width: 70px;
    height: 70px;
    padding: 10px;
}

.feature_item > div:nth-child(2) {
    font-size: 28px;
    width: 100%;
    text-align: center;
    padding-top: 17px;
    padding-bottom: 14px;
}

.feature_item > div:nth-child(3) {
    font-size: 20px;
    color: #cdcdcd;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	max-width: 280px;
	line-height: 1.2;
}

.about_content_block {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 400px;
	margin-bottom: 60px;
	align-items: center;
}

.about_content_block > div {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
	position: relative;
	min-height: 400px;
}

.about_content_block.content_block_left_text > div:nth-child(1), .about_content_block.content_block_right_text > div:nth-child(2) {
	min-height: unset;
}

.about_content_block > div > svg {
	width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
    position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	user-select: none;
}

.about_content_block > div > div {
	width: 100%;
}

.content_block_text_title {
	font-size: 46px;
	line-height: 1.2;
	padding-bottom: 10px;
	font-weight: 500;
}

@media (min-width: 1021px) {
	.about_content_block > div:nth-child(2) {
		margin-left: 28px;
	}
}

@media (max-width: 1020px) {
	.about_content_block > div {
		flex: unset;
		width: 100%;
	}
	.about_content_block.content_block_left_text > div:nth-child(2), .about_content_block.content_block_right_text > div:nth-child(1) {
		width: 100%;
		min-height: unset;
		max-height: unset;
		order: -1;
		height: 100%;
		margin-bottom: 30px;
	}
	.about_content_block > div > svg {
		width: 100%;
		object-fit: unset;
		height: unset;
		max-height: unset;
		position: relative;
		transform: unset;
		max-width: 450px;
		margin: 0 auto;
		left: unset;
	}
	.content_block_text_title {
		text-align: center;
	}
}

@media (max-width: 465px) {
	.content_block_text_title {
		font-size: 9.4vw;
	}
}

.content_block_text_title span {
    background-image: linear-gradient(45deg, #7c91f7 0%, #899bf3 100%);
    color: transparent;
    -webkit-background-clip: text;
    text-shadow: rgb(102 138 255 / 45%) 0px 0px 15px;
}

.page_title {
	text-align: center;
	font-size: 40px;
	padding-top: 20px;
	padding-bottom: 15px;
}

@media (max-width: 700px) {
	.page_title {
		font-size: 32px;
	}
}

.commands_container {
	max-width: 400px;
	margin: 0 auto;
}

.command_item {
	background-color: #2e3336;
	margin-top: 16px;
	margin-bottom: 16px;
	border-radius: 7px;
	padding: 10px;
	box-shadow: 0px 2px 4px 0px #1f1f1f;
}

.command_title {
	height: 24px;
	padding-bottom: 7px;
}

.command_title > div {
	float: left;
	width: 24px;
	height: 24px;
}

.command_title > span {
	float: left;
	padding-left: 10px;
	font-size: 22px;
	line-height: 22px;
}

.command_description {
    font-family: monospace;
    font-size: 16px;
    padding-top: 8px;
}

.command_description > span {
	background: #23272a;
    border-radius: 4px;
    padding: 2px;
	line-height: 1.4;
}

.premium_tier_box {
    max-width: 350px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px #1f1f1f;
    background-color: #2e3336;
    margin-top: 30px;
	margin-bottom: 30px;
}

.premium_tier_name {
	font-size: 30px;
    color: #f6b71c;
    text-align: center;
}

.premium_tier_price {
	font-size: 36px;
    text-align: center;
    padding-top: 17px;
}

.premium_tier_price_subtitle {
    font-size: 20px;
    background: #8c6607;
    margin-top: 25px;
    margin-left: -12px;
    margin-right: -12px;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 9px;
	line-height: 1.2;
}

.premium_tier_features {
	padding-top: 20px;
	font-size: 21px;
	padding-bottom: 12px;
}

.premium_tier_features > div {
	margin-bottom: 16px;
	overflow: hidden;
}

.premium_tier_features > div > div:nth-child(1) {
	height: 25px;
	width: 25px;
	float: left;
	padding-right: 8px;
	color: #899cff;
}

.premium_tier_features > div > div:nth-child(2) {
	min-height: 25px;
	float: left;
	max-width: calc(100% - 33px);
}

.premium_tier_buy {
    color: white;
    background: #6379eb;
    padding-top: 11px;
    padding-bottom: 14px;
    border-radius: 13px;
    box-shadow: rgb(70 102 207) 0px 0px 18px;
    font-size: 24px;
    padding-left: 15px;
    padding-right: 15px;
    width: 160px;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 4px;
}

.premium_tier_box a {
	text-decoration: none;
}

.privacy_content {
	max-width: 700px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.privacy_content p, .privacy_content li {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 0.5em;
}

.privacy_content h2 {
	font-weight: 700;
	font-size: 26px;
	line-height: 1.3;
}

.privacy_content h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 1.3;
}

.privacy_content a {
    color: #7c91f7;
    transition: 0.2s color;
}

.basic_footer {
	padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
	width: calc(100% - 60px);
	text-align: right;
	font-size: 20px;
	position: -webkit-sticky;
    position: sticky;
	top: 100vh;
}

.basic_footer a {
	color: #e0e0e0;
    transition: color 0.1s;
	text-decoration: none;
	padding-left: 12px;
}

.basic_footer a:hover {
	color: white;
}