/* Main */

* {
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", Helvetica;
	margin: 0;
}

h1 {
	font-size: 2.5em;
	margin: 0;
}

a {
	text-decoration: none;
	color: #FDFFFC;
}

h2 {
	font-size: 2em;
	text-align: center;
}

h3 {
	font-size: 1.5em;
	margin: 25px 0 0 0;
	text-align: center;
}

.goodbye p {
	width: 80%;
	padding: 15px;
}

.btn {
	padding: 10px 25px;
	background: #FF9F1C;
	color: #FDFFFC;
	display: inline-block;
	border-radius: 2px;
	transition-duration: 0.2s;
}
.hero .btn{
	margin: 5px;
}

.btn:hover {
	background: #F71735;
}

.disabled {
	pointer-events: unset;
	cursor: not-allowed;
}
.disabled:hover {
	background: #FF9F1C;
}

#scrolltop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
}

/* Header */

/*Nav*/

.nav-items a:not(:first-child) {
	display: none;
}

.icon {
	top: 0;
	right: 0;
	margin: 30px 30px 0 0;
	position: absolute;
	cursor: pointer;
}

.mnav.responsive {
	margin-top: 70px;
	display: inline-flex;
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	flex-direction: column;
	color: #FDFFFC;
	background-color: #12100E;
	font-size: 1em;
	padding: 20px;
}

.i {
	list-style: none;
	padding: 5px;
}

.nav-items {
	display: flex;
	justify-content: space-between;
	list-style-type: none;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	align-items: center;
}

.mnav {
	display: none;
}

.log {
	width: 100%;
	text-align: center;
	padding-bottom: 5px;
	order: -1;
}

.logo {
	height: 100px;
	width: 100px;
	transition-duration: 0.5s;
	margin: 0 40px;
}

.logo:hover {
	transform: scale(1.05);
}

.nav {
	width: 100%;
	background-color: #12100E;
	box-shadow: 0 2px rgba(105, 106, 109, 0.5);
	color: #FDFFFC;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	align-items: center;
	z-index: 9;
}

.h {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-transform: uppercase;
	width: 100px;
	color: #FDFFFC;
	font-weight: 600;
	cursor: pointer;
	background: #4286f4;
	margin: 0 5px 0 5px;
	height: 100%;
}

.nav-overlay {
	position: absolute;
	bottom: 0;
	background: #4286f4;
	width: 100%;
	height: 0%;
	transition: all 0.35s ease-in-out;
	z-index: -1;
}

.h:hover .nav-overlay {
	height: 100%;
}

/*Hero*/

.hero {
	height: 50vh;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/busan.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	color: #FDFFFC;
}

.info {
	font-size: 1.3em;
}

.info span {
	color: #2081C3;
	font-weight: bold;
}

.ip {
	color: #2081C3;
}

/* Description */

#description i {
	color: #222;
}

#description {
	display: flex;
	justify-content: center;
	margin: 65px 0;
	flex-wrap: wrap;
}

#description p {
	margin: 5px 0 0 0;
}

#description div {
	padding: 20px 50px;
	width: 80%;
	text-align: center;
}

#description div i {
	transition-duration: 0.6s;
}

#description div i:hover {
	transform: scale(1.09);
}

#description div span {
	font-size: 1.05em;
	letter-spacing: 1.2px;
}

/* Our Stuff */

.games {
	color: #FDFFFC;
	background: #24272b;
}

.gimg {
	width: 100%;
	align-self: center;
	border: 2px solid #111;
	border-radius: 2px;
	box-shadow: 0 0 2px #111;
}

.game {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 40px 50px;
}

.games h2, .game h3 {
	letter-spacing: 1.2px;
}

.games h2 {
	margin: 0;
	padding: 40px 0 0 0;
}

.game h3 {
	font-size: 20px;
}

.game div {
	margin: 0 30px;
	font-size: 19px;
	line-height: 1.4em;
}

hr {
	background: #FDFFFC;
	height: 1px;
	width: 70%;
}

/* Staff */

.staff-team {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 20px auto 10px auto;
	width: 95%;
}

.staff {
	padding: 20px 0;
}

.staff h2 {
	margin-top: 0;
}

.staff-team>div {
	padding: 10px;
	margin: 5px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #FDFFFC;
	text-align: center;
	transition: all ease 0.3s;
	width: 150px;
	font-size: 10px;
	z-index: 5;
}

.staff-team>div:hover {
	transform: scale(1.02);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}

.staff-team-teams>div:hover {
	transform: scale(1.15);
}

.staff-team>div .container {
	position: relative;
}
.staff img{
	align-self: center;
	border: 0px solid #111;
	border-radius: 2px;
	box-shadow: 0 0 2px #111;
}

.staff-team .staff-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #12100E;
	pointer-events: none;
	visibility: hidden;
}

.staff-overlay .ovl-text {
	color: #FDFFFC;
	font-size: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

.container:hover .staff-overlay {
	opacity: .9;
	visibility: visible;
}

.staff-team h3 {
	margin-bottom: 8px;
	font-weight: 600;
}

.staff-team img {
	width: 50px;
	margin-top: 20px;
}

.ma {
	width: 78%;
	background: #f44141;
}

.mb {
	width: 96%;
	background: #33af33;
}

.mc {
	width: 98%;
	background: #4286f4;
}

.owner, .manager, .admin, .other {
	padding: 12px;
}

.owner {
	background-color: rgba(244, 65, 65, 0.5);
}

.manager {
	background-color: rgba(66, 134, 244, 0.5);
}

.admin {
	background-color: rgba(59, 211, 42, 0.5);
}

.other {
	background-color: rgba(207, 72, 146, 0.5);
}

/* Announcement */

#announcement {
	text-align: center;
	color: #FDFFFC;
}

.an-img {
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.65)), url("../img/rialto.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 50px;
}
.an-val{
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.65)), url("../img/haven.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 50px;
}

.an-t {
	width: 75%;
	font-size: 0.95em;
	line-height: 1.5em;
	margin: auto;
	background: rgba(34, 34, 34, 0.144);
	padding: 20px;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
}


/* Contact Us */

#contact {
	padding: 30px 50px;
	text-align: center;
	color: #FDFFFC;
	background: #24272b;
}

#contact a {
	color: #2b6ed9;
}

#contact .btn a{
	color: #FDFFFC;
}

#contact h2 {
	margin-top: 8px;
}

#contact p {
	font-size: 0.9em;
}

/* Footer */

footer {
	color: #FDFFFC;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: #12100E;
	padding: 30px 50px;
}

footer img {
	width: 170px;
}

footer a {
	color: cyan;
	text-decoration: underline;
}

/* RESPONSIVE LAYOUT */

@media(min-width: 900px) {
	/*NAV*/
	.nav {
		position: fixed;
	}
	.log {
		order: 0;
		width: auto;
	}
	.nav-items a:not(:first-child) {
		display: flex;
	}
	.nav-items a:first-child {
		display: none;
	}
	.nav-items {
		justify-content: center;
	}
	/*END NAV*/
	#contact p {
		font-size: 1.5em;
	}
	.hero {
		padding-top: 100px;
		height: 100vh;
	}
	.gimg {
		width: 35%;
	}
	.game {
		flex-wrap: nowrap;
	}
	.f, .h, .j, .l {
		flex-direction: row-reverse;
	}
	.game h3 {
		font-size: 30px;
	}
	.game div {
		line-height: 1.5;
		font-size: 1.15em;
	}
	#description {
		flex-wrap: nowrap;
	}
	#description div {
		width: 28%;
	}
	h2 {
		font-size: 55px;
	}
	.h {
		padding: 0 6px;
		margin-right: 5px;
		width: 137px;
		font-size: 1.2em;
		background: none;
		height: 100px;
	}
	h1 {
		font-size: 4.5em;
	}
	.staff-team img {
		width: 170px;
	}
	.staff-team>div {
		padding: 13px;
		width: auto;
		font-size: 18px;
	}
	.staff {
		padding: 40px 0;
	}
	.an-t {
		font-size: 1.15em;
		width: 100%;
	}
	footer {
		justify-content: space-between;
	}
}

/* Stylesheet created by BlexieKing (https://www.spigotmc.org/members/blexieking.168027) */
/* Edited for Ignited.GG by elPikaBandito*/