@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
}

html{
	scroll-behavior: smooth;	
}

/* ======= ROOT =======*/

:root{
	--blurple: #7289DA;
	--darker: #5b6ba3;

	/* DISCORD ROLES*/
	--admin: #e54757;
	--mod: #6b9bff;
	--jr-mod: #3398b6;
}

.admin{
	color: var(--admin);
}

.description .mod{
	color: var(--mod);
}

.description .jr-mod{
	color: var(--jr-mod);
}

/* ======= BEGIN LOADER =======*/

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #18191a;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 1.5s infinite ease-in;
}




/* ======= HEADER + NAV =======*/

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 40px 100px;
	z-index: 10000;
	transition: 0.4s;
}

/* BEGIN TOGGLE */

header #toggle{
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

header #toggle:before{
	content: '';
	position: absolute;
	top: 7px;
	width: 100%;
	height: 2px;
	background: #fff;
}

header #toggle:after{
	content: '';
	position: absolute;
	bottom: 10px;
	width: 100%;
	height: 2px;
	background: #fff;
}

/* END TOGGLE */




/*header .logo{
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.4s;
}*/

header .logo img{
	width: 50px;
	position: relative;
	height: 50px;
	transition: 0.3s;
}
header .logo img:hover{
	transform: scale(1.025);
}


.banner.active header #toggle:before{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.banner.active header #toggle:after{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.banner{
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	background: url(images/bg/8.jpg);
	background-attachment: fixed;
	background-size: cover;
	transition: 0.8s;
	z-index: 8;
}



.banner.active{
	transform: translateX(-400px);
}

#navigation{
	position: fixed;
	top: 0;
	right: -200px;
	width: 400px;
	height: 100vh;
	z-index: 1;
	place-items: center;
	transition: 0.8s;
	display: grid;
	background: #121212;
}

#navigation ul li a.colored{
	color: var(--darker);
}

#navigation.active{
	right: 0;
}

#navigation ul{
	position: relative;
	display: flex;
	flex-direction: column;
}

#navigation ul li{
	list-style: none;
}

#navigation ul li a{
	color: #fff;
	font-weight: 600;
	font-size: 2em;
	display: inline-block;
	text-transform: uppercase;
	transition: 0.2s;
}

#navigation ul li a:hover{
	color: var(--blurple);
}


/* ======= MEMBERS =======*/

.team{
	text-align: center;
}

.team h1{
	font-size: 35px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	border-bottom: 4px solid #fff;
	color: #fff;
	padding-bottom: 10px;
}



.inner{
	max-width: 1200px;
	margin: auto;
	padding: 40px;
	color: #333;
	overflow: hidden;
}

.member{
	float: left;
	margin-top: 20px;
	overflow: hidden;
	width: calc(100% / 3);
	padding: 40px 0;
	transition: 0.5s;
}

.member:hover{
	background-color: rgb(0,0,0,0.2);
	border-radius: 8px;
}

.member img{
	width: 145px;
	height: 145px;
	border-radius: 50%;
	transition: 0.5s;
}

.member img:hover{
	transform: scale(1.025);
}

.name{
	margin: 12px 0;
	font-weight: 700;
	color: #fff;
	font-size: 19px;
	transition: 0.4s;
}

.name:hover{
	color: #f26b6b;

}

.description{
	font-size: 15px;
	font-weight: 700;
	opacity: .7;
	color: #fff;
}

.description i{
	color: #FAA61A;

}

.socials{
	margin-top: 12px;
}

.socials a{
	margin: 0 4px;
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	transition: 0.3s;
}
.socials a:hover{
	transform: translateY(-2px);
}

.socials a i{

	color: #fff;
	line-height: 30px;
}


/* ======= FOOTER =======*/

.footer{
	width: 100%;
	position: relative;
	bottom: 0;
	background: #111;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	z-index: 9;
	color: #fff;
	padding: 30px;
}


.footer h2{
    color: #fff;
    font-weight: 700;
    font-size: 35px;
}


.footerLinks a{
	text-decoration: none;
	margin: 20px;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	opacity: .5;
	color: #fff;
	transition: 0.5s;
}

.footerLinks .colored{
	color: var(--darker);
	font-weight: 650;
	opacity: 1;
}

.footerLinks a:hover{
	transform: translateY(-2px);
}

.copyright{
	opacity: .4;
	font-size: 13px;
	font-weight: 520;
}

.copyright span{
	font-weight: 800;
	color: var(--blurple);
}

/* ======= KEYFRAMES =======*/

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

/* ======= RESPONSIVE =======*/

@media screen and (max-width: 600px)
{
	.member{
		width: 100%;
	}
}

