/*tables of content*/


/*
0.mobile first
1. All html pages
2.general classes
3.discord classes
4.download classes
5.form classes
6.
7.
8.
*/


/*0.mobile first

/*begin of mobile*/

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

@media (max-width: 768px) {
	.container {}
}


/*end of mobile*/


/*1.All html pages
  begin*/


/* font style ubisoft sans */

@font-face {
	font-family: ubisoftsans;
	src: url(../font/ubisoftsans-regular.ttf); 
	src: url(../font/ubisoftsans-bold.ttf)
} 

* {
	font-family: ubisoftsans;
}


/*Background stuff that i copy pasted from the internet*/

html,
body {
	margin: 0;
	height: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

:root {
	font-size: 100%;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.bg-container {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-image: url("../img/background/background3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-ms-overflow-style: none;
	/* Hide scrollbar for IE, Edge */
	scrollbar-width: none;
	/*Hide scrollbar for Firefox */
	overflow-y: scroll;
}

.bg-container::-webkit-scrollbar {
	display: none;
}


/*Copy paste end*/

body {
	background-color: rgb(56, 55, 55);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: rgb(255, 255, 255);
	background-image: url("../img/background/background3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

a {
	color: #ffffff;
}


/*iframes positions*/

iframe {
	float: left;
	margin-left: 2%;
	position: relative;
}


/* begin footer */

footer {
	display: flex;
	flex-flow: row wrap;
	padding: 20px 20px 20px 20px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

@media screen and (max-width: 768px) {
	footer {
		display: none;
	}
}

footer>* {
	flex: 1 100%;
}

.footer_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10px;
	max-width: max-content;
	background-color: #575757b0;
	color: #ffffff;
	line-height: 0;
	margin: 0.3em 0;
	font-size: 1rem;
	padding: 1.3em .3em;
	transition: transform .25s ease, background-color .25s ease, color .25s;
	font-weight: bold; 
}

.footer_btn:hover {
	background-color: #ddd;
	color: black;
	transform: scale(115%);
}

footer a {
	text-decoration: none;
}


/* end footer */


/* Start of hamburger menu */

.hamburger-container {
	position: fixed;
	display: none;
	cursor: pointer;
	padding: 28px 16px;
	z-index: 2;
	/* Show above the overlay */
}

.hamburger-bar1,
.hamburger-bar2,
.hamburger-bar3 {
	width: 35px;
	height: 5px;
	background-color: rgb(165, 165, 165);
	margin: 6px 0;
	transition: 0.4s;
}


/* Rotate first bar */

.change .hamburger-bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}


/* Fade out the second bar */

.change .hamburger-bar2 {
	opacity: 0;
}


/* Rotate last bar */

.change .hamburger-bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}


/* Show hamburger menu only on mobile */

@media screen and (max-width: 768px) {
	.hamburger-container {
		display: inline-block;
	}
}


/* End of hamburger menu */


/* Start of overlay menu */

.mobile-overlay {
	/* Height & width depends on how you want to reveal the overlay (see JS below) */
	height: 100%;
	width: 0;
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	background-color: rgb(0, 0, 0);
	/* Black fallback color */
	background-color: rgba(0, 0, 0, 0.95);
	/* Black w/opacity */
	overflow-x: hidden;
	/* Disable horizontal scroll */
	transition: 0.5s;
	/* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}


/* Position the content inside the overlay */

.overlay-content {
	position: relative;
	top: 25%;
	/* 25% from the top */
	width: 100%;
	/* 100% width */
	text-align: center;
	/* Centered text/links */
}


/* Anchors inside of the overlay content div*/

.mobile-overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #b8b8b8;
	display: block;
	/* Display block instead of inline */
	transition: 0.5s;
	/* Transition effects on hover (color) */
}


/* End of overlay menu */


/*start grid
 grid container */

.container {
	width: 95vw;
}

@media (min-width: calc(768px+1)) {
	.container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 0.2fr 1fr;
		grid-gap: 1rem;
		text-align: center;
		background-color: rgba(56, 55, 55, 0.45);
		margin: auto;
		margin-top: 10% !important;
		height: 50vh;
		width: 80vw;
		padding: 10px;
		padding-top: 30px;
	}
}


/* Mobile style if screen is small enough */

@media screen and (min-width: 0px) {
	.container {
		display: grid;
		grid-gap: 1rem;
		text-align: center;
		background-color: rgb(56, 55, 55);
		margin: auto;
		margin-top: 5% !important;
		height: 80vh;
		border: 1px solid rgb(56, 55, 55);
		padding-bottom: 20px;
	}
	/* home */
	.container>div:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	/* about us */
	.container>div:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
	}
	/* why */
	.container>div:nth-child(3) {
		grid-column: 1 / 2;
		grid-row: 5 / 6;
	}
	/* about us info */
	.container>div:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
	}
	/* why info */
	.container>div:nth-child(5) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	/* home info */
	.container>div:nth-child(6) {
		grid-column: 1 / 2;
		grid-row: 6 / 7;
	}
}

.container>div {
	/* border: 2px red dashed; */
	margin: 0 10px;
}

.container>div>h1 {
	display: block;
	font-size: 2em;
	font-weight: bold;
	margin-top: 40px;
}

@media (min-width: calc(768px + 1px)) {
	/* home */
	.container>div:nth-child(1) {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	/* about us */
	.container>div:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	/* why */
	.container>div:nth-child(3) {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
	}
	/* about us info */
	.container>div:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	/* why info */
	.container>div:nth-child(5) {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}
	/* home info */
	.container>div:nth-child(6) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
}


/* end grid layout */


/* end grid */


/*end all html pages*/


/*2.general classes
  begin*/

.center_with_border {
	margin: auto;
	width: 65%;
	border: 3px solid rgb(56, 55, 55);
	padding: 10px;
}

@media screen and (max-width: 768px) {
	.center_with_border {
		width: 95%;
	}
}

.left_with_border {
	margin-right: auto;
	margin-top: -106px;
	width: 25%;
	border: 3px solid rgb(56, 55, 55);
	padding: 10px;
}

.right_with_border {
	margin-left: auto;
	margin-top: -314px;
	width: 25%;
	border: 3px solid rgb(56, 55, 55);
	padding: 10px
}

.center {
	margin: auto;
	width: 100%;
	padding: 10px;
}

.center_with_border_half {
	margin: auto;
	max-width: fit-content;
	border: 3px solid rgb(56, 55, 55);
	padding: 10px;
}

.center_without_border_bottom {
	margin: auto;
	width: 50%;
	border: 3px solid rgb(56, 55, 55);
	border-bottom: none;
	padding: 10px;
}

.center_without_border_top {
	margin: auto;
	width: 50%;
	border: 3px solid rgb(56, 55, 55);
	border-top: none;
	padding: 10px;
}

.center-text {
	text-align: center;
}

.right-text {
	text-align: center;
	margin-left: 1400px;
}

.left-text {
	text-align: center;
	margin-right: 1400px;
}

.headlineOne {
	display: block;
	font-size: 2em;
	font-weight: bold;
}

.headlineTwo {
	display: block;
	font-size: 1.5em;
	font-weight: bold;
	padding-top: 2%;
}

.headlineThree {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
}

.white {
	background-color: rgb(56, 55, 55);
	/*white color but it's actualy black*/
}


/*.workinprogresss {
  position: fixed;
  bottom: 10px;
  right: 10px;
}*/

.vertical_center_Index {
	position: relative;
	margin-top: 5%;
}

.title {
	text-align: center;
	background-color: rgb(56, 55, 55);
	margin-top: 1% !important;
	margin: auto;
	width: 65%;
	border: 3px solid rgb(55, 55, 56);
	padding: 10px;
}

@media screen and (max-width: 768px) {
	.title {
		width: 95%;
	}
}


/* overflows */


/* general overflow */

.overflow {
	overflow: scroll;
	overflow-wrap: break-word;
	-ms-overflow-style: none;
	/* Hide scrollbar for IE, Edge */
	scrollbar-width: none;
	/*Hide scrollbar for Firefox */
}

.overflow::-webkit-scrollbar {
	display: none;
	/* Hide scrollbar for Chrome, Safari and Opera */
}


/* overflow x horizontal*/

.overflow_x {
	overflow-x: scroll;
	/* overflow-wrap: break-word; */
	-ms-overflow-style: none;
	/* Hide scrollbar for IE, Edge */
	/* scrollbar-width: none; */
	/*Hide scrollbar for Firefox */
}

.overflow_x::-webkit-scrollbar {
	/* display: none; */
	/* Hide scrollbar for Chrome, Safari and Opera */
	width: 12px;
}

.overflow_x::-webkit-scrollbar-track {
	background: transparent;
}

.overflow_x::-webkit-scrollbar-thumb {
	background-color:#555;
	/* color of the scroll thumb */
	border-radius: 10px;
	/* roundness of the scroll thumb */
	border: 3px solid #0000004d;
	/* creates padding around scroll thumb */
	/* -webkit-box-shadow: inset 0 0 6px #0000004d; */
}


/* overflow y vertical */

.overflow_y {
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* Hide scrollbar for IE, Edge */
	scrollbar-width: none;
	/*Hide scrollbar for Firefox */
}

.overflow_y::-webkit-scrollbar {
	display: none;
	/* Hide scrollbar for Chrome, Safari and Opera */
}


/*start nav*/


/* Add a black background color to the top navigation */

.topnav {
	background-color: #333;
	overflow: hidden;
	list-style: none;
	position: sticky;
	font-weight: bold;
	text-align: center;
}


/* Style the links inside the navigation bar */

.topnav a {
	float: left;
	color: #f2f2f2;	
	height: 45px;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	transition: background-color .25s, transform .25s;
}
.topnav nav {
	display: inline-block;
}

/* Show nav anchors only on bigger screens (also when hamburger menu is shown) */

@media screen and (max-width: 768px) {
	.topnav {
		visibility: hidden;
	}
}


/* Change the color of links on hover */

.topnav a:hover {
	background-color: #ddd;
	color: black;
	transform: scale(105%);
}


/* Add a color to the active/current link */

.topnav a.active {
	background-color: rgb(30, 37, 125);
	color: white;
	cursor: default;
	/* transition: transform 1s; */
}


/* .active:hover {
  transform: rotate(1080deg);
  } */


/* end nav */


/*3.discord classes
  begin*/

.discordEmbed {
	min-width: 300px;
	min-height: 300px;
	border: 3px solid rgb(55, 55, 56);
	;
	height: 600px;
	margin: 15px;
	-ms-overflow-style: none;
	/* Hide scrollbar for IE, Edge */
	scrollbar-width: none;
	/*Hide scrollbar for Firefox */
	overflow-y: scroll;
	grid-auto-rows: 3fr;
	filter: brightness(75%);
	transition: filter .5s, transform .5s;
	text-decoration: none;
}

.discordEmbed:hover {
	filter: brightness(100%) drop-shadow(5px 5px 5px rgba(29, 29, 29, .75));
	transform: scale(105%);
}


/* Hide scrollbar for Chrome, Safari and Opera */

.discordEmbed::-webkit-scrollbar {
	display: none;
}

.discordEmbedContent {
	width: 100%;
	height: 100%;
}

.discordEmbed-TB {
	position: relative;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.discordEmbed-TB::before {
	content: "";
  	background-image: url("../img/logos/logo-TB.png");
	background-size: cover;
	background-position: top center;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.discordEmbed-MR {
	position: relative;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	
}

.discordEmbed-MR::before {
	content: "";
	background-image: url("../img/logos/logo-MR.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}


.discordEmbed-MU {
	position: relative;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.discordEmbed-MU::before {
	content: "";
	background-image: url("../img/logos/logo-MU.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}


.discordEmbed-10men {
	position: relative;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.discordEmbed-10men::before {
	content: "";
	background-image: url("../img/logos/logo-10men.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.discordEmbedText {
	color: #ffffff;
	line-height: 0.9;
	text-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 25px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0);
	text-decoration: none;
}

@media screen and (max-width: 1360px) {
	.discordRow {
		grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	}
	.discordEmbed {
		height: 500px;
	}
}

@media screen and (max-width: 768px) {
	.discordEmbed {
		height: 300px;
	}
}


/*divide discord.html in 3 columns*/

.column {
	float: left;
	margin-left: 3%;
	padding-bottom: 2%;
	width: 29.2%;
}

.discordRow {
	margin: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


/*end of discord dividing*/


/*end classes discord.html*/

.download-Row {
	place-content: center;
	position: relative;
	align-items: center;
	justify-content: center;
	display: grid;
	grid-auto-rows: 3fr;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

@media screen and (max-width: 768px) {
	.download-Row {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}


/*4.download classes
  begin*/

.download-field {
	border: 3px solid rgb(44, 44, 44);
	min-height: 230px;
	list-style: none;
	padding: 50px;
	margin: 15px;
	/*max-width: 650px;*/
	filter: brightness(65%);
	transition: filter .5s ease, transform .5s ease;
	text-shadow: 0 0 2px rgb(0, 0, 0);
}

.download-field:hover {
	filter: brightness(100%) drop-shadow(5px 5px 5px rgba(29, 29, 29, .75));
	transform: scale(105%);
}

.download-field * {
	text-decoration: none;
	margin-bottom: 5px;
}


/*backgrounds downloads links boxborder*/

.y1download {
	background-image: url("../img/download/r6s-seasons-y1s1.jpg");
	background-size: cover;
}

.y2download {
	background-image: url("../img/download/r6s-seasons-y2s1.jpg");
	background-size: cover;
}

.y3download {
	background-image: url("../img/download/r6s-seasons-y3s3.webp");
	background-size: cover;
}

.y4download {
	background-image: url("../img/download/r6s-seasons-y4s3.jpg");
	background-size: cover;
}

.y5download {
	background-image: url("../img/download/r6s-seasons-y5s1.webp");
	background-size: cover;
}

.y6download {
	background-image: url("../img/download/r6s-seasons-y6s1.jpg");
	background-size: cover;
}

.y7download {
	background-image: url("../img/download/r6s-seasons-y7s0.gif");
	background-size: cover;
	background-position: center;
}


/*5. form classes*/


/* text box */

input[type=text],
input[type=password] {
	width: 90%;
	padding: 12px 15px;
	margin: 6px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}


/* see if the input is vallid */


/* Selects any valid <input> */

input+span {
	position: relative;
}

input+span::before {
	position: absolute;
	right: -20px;
	top: 5px;
}

input:invalid {
	border: 2px solid red;
}

input:invalid+span::before {
	content: '✖';
	color: red;
}

input:valid+span::before {
	content: '✓';
	color: green;
}


/* buttons */

button {
	background-color: #04AA6D;
	border: none;
	padding: 14px 20px;
	cursor: pointer;
	margin: 8px 0;
	color: #ffffff;
	width: 90%;
}

button:hover {
	background-color: #ddd;
	color: black;
}

.right {
	position: absolute;
	right: 0;
	top: 0;
}

.right:hover {
	cursor: pointer;
}

.login {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	color: #000;
	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 */
	padding-top: 60px;
}

.loginContent {
	background-color: #f2f2f2;
	margin: 0 0 15% auto;
	border: 1px solid #333;
	width: 20%;
}


/*style the close button*/

.close {
	position: fixed;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: red;
	cursor: pointer;
}


/* Add Zoom Animation */

.animate {
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
	from {
		-webkit-transform: scale(0)
	}
	to {
		-webkit-transform: scale(1)
	}
}

@keyframes animatezoom {
	from {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}


/* Change styles for span and cancel button on extra small screens */

@media screen and (max-width: 300px) {
	span.psw {
		display: block;
		float: none;
	}
}

/* thank you page */
div a img {
	transition: filter .5s, transform .5s
}

div a img:hover {
	filter: brightness(100%) drop-shadow(5px 5px 5px rgba(29, 29, 29, .75));
	transform: scale(105%);
}