:root {
	--green: #2ecc71;
	--pink: #E056FD;
	--pink-hover: #d527f9;
	--default-transition: all 0.25s ease;
}
html {
	font-family: Helvetica, Arial, sans-serif;
}
body {
	background-color: #000;
    min-height: 100vh;
    margin: 0;
}

/* General */
.flex {
	display: flex;
}
.align-center {
	align-items: center;
}
.wrap {
	flex-wrap: wrap;
}
.justify-center {
    justify-content: center;
}
.space-between {
	justify-content: space-between;
}
::-webkit-scrollbar {
	width: 14px;
	background-color: #292e38;
}
::-webkit-scrollbar-thumb {
	background-color: hsla(0,0%,100%,.1);
}
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-track-piece {
	background-clip: padding-box;
	border: 3px solid transparent;
	border-radius: 15px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
}
.fa-twitter {
    color: #00acee!important;
    text-decoration: none;
}
.fa-youtube {
    color: #FF0000!important;
    text-decoration: none;
}
.fa-instagram {
    color: #E1306C!important;
    text-decoration: none;
}
.fa-discord {
	color: #738adb!important;
	text-decoration: none;
}
.fa-github {
    color: #fff!important;
    text-decoration: none;
}
.fa-twitch {
    color: #6441a5!important;
    text-decoration: none;
}
.fa-envelope {
	color: #bdc3c7!important;
	text-decoration: none;
}
.fa-wallet {
	color: #e67e22!important;
	text-decoration: none;
}
.fa-telegram {
	color: #0088CC!important;
	text-decoration: none;
}
.fa-file-contract {
	color: #fff!important;
	text-decoration: none;
}
.fa-check {
	color: var(--pink)!important;
}
.fa-check.white {
	color: #fff!important;
}
.fa-plus {
	margin-right: 10px;
	color: var(--text-color)!important;
	transition: var(--default-transition);
	-webkit-transition: var(--default-transition);
}
.fa-youtube:hover, .fa-instagram:hover, .fa-github:hover, .fa-twitch:hover, .fa-twitter:hover, .fa-discord:hover, .fa-telegram:hover, .fa-file-contract:hover {
    filter: brightness(85%);
}
/* Modal Popup Styles */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	border-radius: 10px;
}
.modal-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 1500px) {
	.modal-container {
		width: 80%;
	}
}
/* Modal Content/Box */
.modal-content {
	background-color: #18181C;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 2px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
	border-radius: 10px;
}
.close {
	color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
	transition: var(--default-transition);
	-webkit-transition: var(--default-transition);
}
.close:hover, .close:focus {
	color: #DA7E2F;
	text-decoration: none;
	cursor: pointer;
}
/* Modal Header */
.modal-header {
	width: 100%;
    position: absolute;
    background-color: #18181C;
    color: white;
    border-radius: 10px;
}
.modal-header h2 {
	position: absolute;
    left: 20px;
}
/* Modal Body */
.modal-body {
	padding: 0px 50px;
	border-radius: 10px;
	background-color: #18181C;
	margin-top: 70px;
}
.modal-body p {
	color: #9296B1;
	font-size: 18px;
}
/* Modal Footer */
.modal-footer {
	width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    background-color: #18181C;
    color: white;
    border-radius: 10px;
}
/* Modal Content */
.modal-content {
	position: relative;
	margin: auto;
	padding: 0;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	animation-name: animatetop;
	animation-duration: 0.4s;
}
@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 100px;
		opacity: 1;
	}
}

.accordion {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 650px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: var(--default-transition);
    -webkit-transition: var(--default-transition);
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px 0 hsl(0deg 0% 0% / 20%);
}
.accordion div:last-child {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 15px;
}
.accordion.active, .accordion:hover {
    color: var(--pink)!important;
}
.accordion:hover > i, .active > i {
    color: #fff;
}
.accordion.active {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.panel {
    padding: 0 18px;
    background-color: #000;
    overflow: hidden;
    transition: all 0.2s ease-out;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    visibility: hidden;
    opacity: 0;
    max-height: 0;
}
.panel a {
	color: var(--pink);
	text-decoration: none;
}
.panel a:hover {
	color: var(--pink-hover)!important;
	border-bottom: 2px solid var(--pink-hover);
}
.visible {
    visibility: visible;
    opacity: 1;
    max-height: 100%;
}
@media screen and (max-width: 700px) {
    .accordion {
        width: 100%;
    }
}
footer {
	border-top: 1px solid #4E4E58;
	padding-left: 275px;
	padding-right: 277px;
	max-width: 100%;
	min-height: 253px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;

	color: #fff;
}
footer .socials a {
	margin-right: 11px;
}
footer .socials a:last-child {
	margin-right: 0px;
}
footer .socials img {
	width: 44px;
	height: 44px;
}
footer .links {
	display: flex;
    width: 300px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -25px;
}
footer .links .flex {
	gap: 52px;
	flex-shrink: 0;
}
footer .links img {
	margin-bottom: 42px;
}
footer .links a {
	text-decoration: none;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	color: #757A81;
	transition: var(--default-transition);
	-webkit-transition: var(--default-transition);
}
footer .links a:hover {
	color: #fff;
}
footer .links a:last-child {
	margin-right: 0px;
}
footer .nav-footer-image {
	width: 100%;
    display: flex;
    justify-content: center;
}
.blue-glow {
	position: absolute;
	top: 25%;
	left: 0;
	transform: translateY(-25%);
}
.pink-glow {
	position: absolute;
	bottom: 0;
	right: 0;
}
@media screen and (max-width: 1500px) {
	footer {
		padding-left: 10px;
		padding-right: 10px;
		flex-wrap: wrap;
	}
	footer .links {
		order: 1;
	}
	footer .contact-rhythm {
		order: 2;
	}
	footer .contact-ryan {
		order: 3;
	}
	footer .links {
		width: 100%!important;
	}
}
@media screen and (max-width: 600px) {
	footer {
		width: 100%;
		box-sizing: border-box;
	}
	footer div {
		width: 100%;
	}
	footer .links img {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	footer .links {
		margin: auto;
		margin-bottom: 30px;
	}
	footer .links .flex {
		gap: 10px;
		flex-shrink: 1;
		flex-wrap: wrap;
		justify-content: center;
	}
}