@charset "UTF-8";
/* reset css */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

:root{
	--white: #FFFFFF;
	--black: #282828;
	--pureblack: #000000;
    --grey: #A3A3A3;
	--link: #1f9bde;
	--linkhover: #00d9ff;
	--navlink: #4b4b4b;
	--switch: #FBFBFE;
	--error: #c23c3c;
}

.theme-light {
    --color-primary: #FBFBFE;
    --color-secondary: #FBFBFE;
	--color-tertiary: #e3f1f8;
	--color-quaternary: #EFEFEF;
	--color-quinary: #FBFBFE;
    --color-accent: #FD6F53;
    --font-color: #000000;
    --font-color-hover: #454545;
	--navlink-color: #4b4b4b;
	--link-color: #1f9bde;
	--hamburger: #232323;
	--dropdown-color: #DFDFDF;
	--footer-color: #202020;
}

.theme-dark {
    --color-primary: #242526;
    --color-secondary: #292828;
	--color-tertiary: #202020;
	--color-quaternary: #202020;
	--color-quinary: #292828;
    --color-accent: #12CDEA;
    --font-color: #FFFFFF;
    --font-color-hover: #9C9C9C;
	--navlink-color: #FFFFFF;
	--link-color: #20729e;
	--hamburger: #CDCDCD;
	--dropdown-color:#303233;
	--footer-color: #242526;
}

@font-face {
  font-family: 'opensans';
  src:url('/assets/fonts/opensans.ttf') format('truetype'),
  url('/assets/fonts/opensans.eot') format('embedded-opentype'),
  url('/assets/fonts/opensans.svg') format('svg'),
  url('/assets/fonts/opensans.woff') format('woff');
}

@font-face {
  font-family: 'opensans-bold';
  src:url('/assets/fonts/opensans-bold.ttf') format('truetype'),
  url('/assets/fonts/opensans-bold.eot') format('embedded-opentype'),
  url('/assets/fonts/opensans-bold.svg') format('svg'),
  url('/assets/fonts/opensans-bold.woff') format('woff');
}

@font-face {
  font-family: 'minecraft-title';
  src:url('/assets/fonts/minecraft-title.ttf') format('truetype'),
  url('/assets/fonts/minecraft-title.eot') format('embedded-opentype'),
  url('/assets/fonts/minecraft-title.svg') format('svg'),
  url('/assets/fonts/minecraft-title.woff') format('woff');
}

@font-face {
  font-family: 'minecraft-text';
  src:url('/assets/fonts/minecraft-text.ttf') format('truetype'),
  url('/assets/fonts/minecraft-text.eot') format('embedded-opentype'),
  url('/assets/fonts/minecraft-text.svg') format('svg'),
  url('/assets/fonts/minecraft-text.woff') format('woff');
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/*
    flex CSS
    by Astallyne at https://github.com/astallyne
*/
.flex{
	display: flex;
}

.row{
	flex-direction: row;
}

.row-rev{
	flex-direction: row-reverse;
}

.wrap{
    flex-flow: row wrap;
}

.wrap-rev{
    flex-flow: row wrap-reverse;
}

.column{
	flex-direction: column;
}

.column-rev{
	flex-direction: column-reverse;
}

.between{
	justify-content: space-between;
}

.around{
	justify-content: space-around;
}

.start{
	justify-content: flex-start;
}

.end{
	justify-content: flex-end;
}

.center{
    justify-content: center;
}
/* flex end */

/* main CSS */
a{
	color: var(--link);
	text-decoration: none;
}

a:hover{
	color: var(--linkhover);
	text-decoration: none;
}

h1 {
	font-family: 'minecraft-title', sans-serif;
	text-shadow: 0 3px var(--pureblack), 3px 0 var(--pureblack);
	letter-spacing: 3px;
	color: var(--white);
	font-size: 4em;
	margin-bottom: 30px;
	font-weight: normal;
}

h2 {
	font-family: 'opensans-bold',sans-serif;
	font-size: 1.6em;
	color: var(--font-color);
	transition: 0.5s ease;
}

h3 {
	font-family: 'opensans-bold',sans-serif;
	font-size: 1.4em;
	color: var(--font-color);
	transition: 0.5s ease;
}

p {
	font-family: 'opensans',sans-serif;
	font-size: 1em;
	color: var(--font-color);
	transition: 0.5s ease;
}

ol {
	padding-left: 100px;
	font-family: opensans,sans-serif;
	color: var(--font-color);
	transition: 0.5s ease;
}

ol li {
	padding-bottom: 10px;
}

.paragraph {
	width: 50%;
	line-height: 1.5em;
}

.paragraph h2, .paragraph h3, .paragraph p, .columnparagraph h2, .columnparagraph p {
	padding-bottom: 15px;
}

tr {
	color: var(--font-color);
	transition: 0.5s ease;
}

.container {
    width: 80%;
    max-width: 1020px;
    margin: auto;
    display: flex;
    align-items: center;
}

.columnsection {
	width: 80%;
	padding-top: 60px;
	max-width: 1020px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	flex: 1 0 auto;
}

.columncontainer {
	width: 50%;
	box-sizing: border-box;
	padding: 0 15px;
}

.columnparagraph {
	line-height: 1.5em;
	padding-bottom: 30px;
}

.columnparagraph img {
	padding: 30px 0;
	display: block;
	margin: 0 auto;
}

.darkmodeSection {
	background-color: var(--color-secondary);
	transition: 0.5s background ease;
}

.darkmodeSectionTwo {
	background-color: var(--color-tertiary);
	transition: 0.5s background ease;
}

.darkmodeSectionThree {
	background-color: var(--color-quaternary);
	transition: 0.5s background ease;
}

.titleColor {
	color: var(--font-color) !important;
	transition: 0.5s ease;
}

.voteSection {
	background-color: var(--link-color);
	transition: 0.5s ease;
}

main .container {
	padding: 80px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.customcontainer {
	width: 80%;
	max-width: 1020px;
	margin: auto;
	padding: 80px 0;
	text-align: center;
}

#customcontainer2 {
	display: flex;
	justify-content: space-between;
}

#customcontainer2 h2 {
	color: var(--white);
	font-size: 1.4em;
	margin-bottom: 10px;
}

#customcontainer2 p {
	color: var(--white);
}

.customcontainer3 {
	width: 250px;
}

.customcontainer3 div {
	margin-top: 30px;
}

.inlineicons {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.title {
	height: calc(100% - 110px);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 1020px;
	margin: 0 auto;
	margin-top: 110px;
}

.title h2 {
	color: var(--white);
	line-height: 1.5em;
	font-size: 1.3em;
	text-shadow: 0 2px var(--pureblack), 2px 0 var(--pureblack);
	font-family: 'minecraft-text', sans-serif;
}

#headerimg {
	width: 45%;
	max-width: 550px;
	padding-bottom: 15px;
	margin-top: -120px;
}

#homeh2 {
	font-size: 1.8em;
	width: 80%;
}

#discordp {
	margin-left: 15px;
}

#discordwidget {
	margin: 0 auto;
	width: 40%;
	max-width: 380px;
	height: 400px;
}

.button-outer {
	display: inline-block;
	font-family: 'minecraft-text',sans-serif;
	font-size: 0.8em;
	padding: 15px 35px;
	background: var(--link-color);
	color: #ffffff;
	letter-spacing: 1px;
	border: none;
	border-radius: 5px;
	height: auto;
	transition: all 100ms cubic-bezier(0.55, 0.085, 0.68, 0.53), 0.5s background ease;
	cursor: pointer;
	text-shadow: 1px 1px 0px black;
}

.button-inner > span {
	display: inline-block;
	background: none;
	min-width: 10px;
	min-height: 10px;
	height: auto;
	padding: 0;
	margin: 0;
	line-height: 1;
	font-size: inherit;
	color: inherit;
}

.button-inner:before {
	content: '';
}

.button-inner:before {
	display: none;
}

.button-outer:hover {
	color: var(--pureblack);
	text-shadow: 1px 1px 0px white;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	transform: scale(1.1);
}

.button-outer:focus, .button-outer:active {
	color: var(--white);
	background: #8b8a8f;
}

.button-outer2 {
	display: inline-block;
	font-family: 'minecraft-text',sans-serif;
	font-size: 0.8em;
	padding: 15px 35px;
	background: var(--white);
	color: var(--link-color);
	letter-spacing: 1px;
	border: none;
	border-radius: 3px;
	height: auto;
	transition: all 100ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
	cursor: pointer;
}

.button-inner2 > span {
	display: inline-block;
	background: none;
	min-width: 10px;
	min-height: 10px;
	height: auto;
	padding: 0;
	margin: 0;
	line-height: 1;
	font-size: inherit;
	color: inherit;
}

.button-inner2:before {
	content: '';
}

.button-inner2:before {
	display: none;
}

.button-outer2:hover {
	background: #ffffff;
	color: var(--link-color);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	transform: scale(1.1);
}

.button-outer2:focus, .button-outer:active {
	color: var(--link-color);
	background: #ffffff;
}

#scrollupbutton.active:hover {
	opacity: 1.0;
}

#scrollupbutton.active {
	opacity: 0.5;
}

#scrollupbutton {
	opacity: 0.0;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	background-color: var(--link-color);
	position: fixed;
	right: 30px;
	bottom: 30px;
	transition: opacity 0.3s, 0.5s ease;
}

#scrollupbutton span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 8px;
	height: 8px;
	margin: -2px 0 0 -5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	box-sizing: border-box;
}

#scrollupbutton span::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 60px;
	height: 60px;
	box-shadow: 0 0 0 0 rgba(255,255,255,.1);
	border-radius: 100%;
	opacity: 0;
	box-sizing: border-box;
}

.fullpagelist {
	margin-left: 70px;
	font-family: 'opensans', sans-serif;
	margin-bottom: 30px;
	color: var(--font-color);
	transition: 0.5s ease;
}

.fullpagelist2 {
	margin-left: 70px;
	font-family: 'opensans', sans-serif;
	margin-bottom: 0px;
}

.fullpagelist3 {
	margin-top: -25px;
	margin-left: 70px;
	margin-bottom: 15px;
	font-family: 'opensans', sans-serif;
}

.fullpagelist li {
	padding-bottom: 10px;
}

.list > li {
	margin-left: 70px;
	font-family: 'opensans', sans-serif;
	color: var(--font-color);
	transition: 0.5s ease;
}

.columnparagraph > ul {
	color: var(--font-color);
	transition: 0.5s ease;
}

.sectiontitle {
	flex: 0 0 100%;
	text-align: center;
	padding-bottom: 20px;
	font-size: 2em;
}

.member {
	width: 33%;
	min-width: 250px;
	padding-bottom: 50px;
	text-align: center;
}

.member img {
	padding-bottom: 15px;
}

.member p {
	font-family: 'opensans-bold', sans-serif;
}

.rank1{
	color: #265ac9;
}

.rank2{
	color: #980399;
}

.rank3{
	color: #0c3999;
}

.rank4{
	color: #c949c9;
}

.rank5{
	color: #ffaa00;
}

/* carousel start */

#slider-wrapper, .slider-content {
    display: flex;
    margin: auto;
}

.slider-content{
    position: relative;
    box-shadow: 8px 8px 25px 0px  rgba(0,0,0,0.2);
}

.go-right:hover, .go-left:hover {
    background: rgba(155, 155, 155, 0.3);
    box-shadow: -2px 0 15px rgba(200, 200, 200 ,0.5);
    cursor: pointer;
}

.go-right , .go-left {
    display: block;
    text-align: center;
    position: absolute;
    width: 250px;
}

.go-right {
    height: 100%;
    color: white;
    right: 0;
}

.go-left {
    height: 100%;
    color: white;
    left: 0;
}

.indexslider {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    font-size: 21px;
    text-align: center;
	border-radius: 5px;
}

.slide {
	border-radius: 5px;
}

.display > span {
    animation:fadein 1.5s;
}

.display > span {
    width: 700px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* The dots/bullets/indicators */
.dots {
    text-align: center;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.dot {
    position: relative;
    cursor:pointer;
    height: 1rem;
    width: 1rem;
    border: 1px solid rgb(255,255,255);
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot:hover {
    box-shadow: -2px 0 10px 5px rgba(200, 200, 200 ,0.3);
    background-color: rgba(200, 200, 200 ,0.8);
    border: 1px solid rgb(255,255,255);
    transform: scale(1.2);
}

/* carousel end */

@media (max-width: 1150px) {
	.container {
        width: 90%;
    }

	h1{
    	font-size: 3em;
    }

    .title h2 {
    	font-size: 1em;
    }

    #homeh2 {
		font-size: 1.6em;
    }

    .title {
    	height: calc(100% - 150px);
    	margin-top: 0;
    }

    .container, .customcontainer, .columnsection {
    	width: 90%;
    }

	#headerimg {
    	width: 45%;
    }
}

@media (max-width: 1000px) {
	.fullpagelist {
    	text-align: left;
    }

	.trperks{
		padding-left: 40px;
		text-align: left;
	}
}

@media (max-width: 900px) {
	.removemobile{
		display: none;
	}
}

@media (max-width: 690px) {
	#discordwidget {
		margin: 0 auto;
		width: 60%;
		max-width: 380px;
		height:400px;
	}

	#discordp {
    	margin: 50px auto;
    }

	.title h2 {
    	font-size: 0.9em;
    }

    #homeh2 {
    	font-size: 1.4em;
    	width: 100%;
    }

	#headerimg {
    	width: 65%;
    }

    .title {
    	height: calc(100% - 110px);
    	margin-top: 100px;
    }

    .columncontainer {
    	width: 100%;
    	text-align: center;
    }

	main .container {
    	text-align: center;
    	width: 90%;
		padding: 30px 0;
    }

	.paragraph {
    	margin: 50px auto;
    	width: 80%;
    	margin: 0 auto 30px auto;
    }

	#customcontainer2 {
    	display: block;
    }

    .customcontainer3 {
    	margin: 30px auto;
    }

	#quote {
    	font-size: 1em;
    }
}

@media (max-width: 670px) {
	.trperks{
		padding-left: 15px;
	}
}

@media (min-width: 690px) {

}
