/*
----------------------------------------
Author: ZeroCrazy
Website: http://codetech.es
Discord: zerocrazy
----------------------------------------
*/

@font-face {
	font-family: 'Sitka Small';
	src: url('../fonts/sitka-small.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Sitka Small Bold';
	src: url('../fonts/sitka-small-bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #0f1536;
	color: #fff;
}

ul li,
p {
	font-family: 'Sitka Small', sans-serif;
	font-weight: normal;
	color: #8e90be;
}

ul li {
	display: block;
	margin-bottom: 20px;
	padding-left: 50px;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px 24px;
}

ul {
	max-width: 70%;
	margin: 0 auto;
	font-size: 16px;
	padding: 0px;
}

ul li.ico-y {
	background: url('../images/icons/y.png') 2% 50% no-repeat;
}

ul li.ico-g {
	background: url('../images/icons/g.png') 2% 50% no-repeat;
}

ul li.ico-p {
	background: url('../images/icons/p.png') 2% 50% no-repeat;
}

ul li.ico-b {
	background: url('../images/icons/b.png') 2% 50% no-repeat;
}

.mb-50 {
	margin-bottom: 50px;
}

ul li.ico-y {
	background-size: 20px 20px;
}

ul li.ico-g {
	background-size: 22px 22px;
}

ul li.ico-p {
	background-size: 18px 18px;
}

ul li.ico-b {
	background-size: 24px 24px;
}

p.light {
	color: #dcddeb;
	margin: 1px;
	font-size: 18px;
}

.d-flex {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

section p.light:last-of-type::after {
	background: url('../images/divisor.png') center center;
	content: '';
	display: block;
	margin-top: 10px;
	width: 50%;
	height: 18px;
	margin-bottom: 20px;
	background-size: cover;
	background-repeat: no-repeat;
}

h1 {
	font-family: 'Sitka Small Bold', sans-serif;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

h1::after {
	background: url('../images/divider.png') center center;
	content: '';
	display: block;
	margin-top: 10px;
	width: 50%;
	height: 24px;
	background-size: cover;
	background-repeat: no-repeat;
}

.top-bg {
	width: 100%;
	height: 100vh;
	background-image: url('../images/top-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

section {
	max-width: 70%;
	margin: 0 auto;
	padding: 60px 0;
	text-align: center;
}

.flush {
	background: url('../images/flush.png') center center;
	background-size: cover !important;
}

.btn {
	text-decoration: none;
	color: #fff;
	font-family: 'Sitka Small', sans-serif;
	padding: 15px 30px;
	width: 229px;
	border: 1px solid #8590cd;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: -moz-linear-gradient(90deg, #14182c -25%, #1f2646 125%);
	background: -o-linear-gradient(90deg, #14182c -25%, #1f2646 125%);
	background: -webkit-linear-gradient(90deg, #14182c -25%, #1f2646 125%);
	background: -webkit-gradient(linear, left bottom, left top, color-stop(-25%, #14182c), color-stop(125%, #1f2646));
	background: -webkit-linear-gradient(bottom, #14182c -25%, #1f2646 125%);
	background: -moz-linear-gradient(bottom, #14182c -25%, #1f2646 125%);
	background: -o-linear-gradient(bottom, #14182c -25%, #1f2646 125%);
	background: linear-gradient(0deg, #14182c -25%, #1f2646 125%);
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-shadow: inset 0 0 17.82px 0.18px #202647;
	-moz-box-shadow: inset 0 0 17.82px 0.18px #202647;
	box-shadow: inset 0 0 17.82px 0.18px #202647;
	transition: 1s all;
}

.btn:hover,
.joindiscord:hover,
.icons-left a:hover {
	filter: brightness(1.5);
}

.joindiscord {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 276px;
	height: 80px;
	background: url('../images/join_discord.png') no-repeat center;
	background-size: contain;
	transition: 1s all;
}

.icons-left {
	position: fixed;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 9999;
}

.icons-left a {
	display: block;
	width: 61px;
	height: 59px;
	transition: 1s all;
}

.icons-left .discord {
	background: url('../images/icons/discord.png');
}

.icons-left .tiktok {
	background: url('../images/icons/tiktok.png');
}

.icons-left .instagram {
	background: url('../images/icons/instagram.png');
}

@media (max-width: 768px) {
	section {
		max-width: 90%;
		padding: 30px 0;
	}

	ul {
		max-width: 100%;
	}

	ul li {
		padding: 0px;
	}

	ul li.ico-y,
	ul li.ico-g,
	ul li.ico-b,
	ul li.ico-p {
		background: none;
	}
}