@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #000;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.6rem;
}

h1, h2, h3, h4 {
	line-height: 3rem;
}

a {
	text-decoration: none;
	color: #fff;
}

ul {
	list-style: none;
}

img {
	width: 100%;
}

/* Header */

.main-header {
	width: 100%;
	height: 100vh;
	position: relative;
	/* background: url(../img/background.jpg) no-repeat center center/cover;*/
}

	.main-header video{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		padding: 10px;
	}

	.main-header::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 1;
	}

.header-top {
	position: relative;
	height: 90px;
	z-index: 2;
}
	header-top .logo
{
	  color: #fff;
	  text-transform: uppercase;
	  cursor: pointer;
	  position: absolute;
	  top: 50%;
	  left: 50%;
}

	/*.header-top .logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -20%);
	}

	.header-top a {
		position: absolute;
		top: 40%;
		right: 0;
		transform: translate(-50%, -50%);
	}*/

	.header-top .navigation{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 0 200px;
		transition: 0.5s ease;
	}
	.header-top .navigation .navigation-items a{
		position: relative;
		color: #fff;
		font-size: 1em;
		font-weight: 500;
		text-decoration: none;
		margin-left: 30px;
		transition: 0.3s ease;
		text-transform: uppercase;
	}
	
	.header-top .navigation .navigation-items a:before{
		content: '';
		position: absolute;
		background: #fff;
		width: 0;
		height: 3px;
		bottom: 0;
		left: 0;
		transition: 0.3s ease;
	}
	
	.header-top .navigation .navigation-items a:hover:before{
		width: 100%;
	}	
.header-content {
	position: relative;
	margin: 20%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 30rem;
	z-index: 2;
}
	.header-content h1 {
		font-weight: 700;
		font-size: 5.2rem;
		line-height: 1.3rem;
		margin: 0 0 2rem;
	}

	.header-content p {
		/*text-transform: uppercase;*/
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.25rem;
		margin: 1rem 2rem;
	}

	.header-content a {
		margin-top: 2rem;
	}
	
	.header-content .steam-frame {
	position: relative;
	z-index: 10;
	bottom: 20px;
	right: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	display: inline-block;
	}

/* Section Gallery */


/* section.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  display: flex;
  background: #111;
  transition: 0.5s;

}
.showcase.active
{
  right: 300px;
} */
section.gallery {
	background:#000;
	width: 100%;
}

	section.gallery .gallery-container {
		display: grid;
		justify-content: center;
		align-items: center;
		grid-template-columns: 2fr 1fr 1fr;
		grid-template-rows: auto;
		grid-template-areas: "box1 box2 box2"
			"box1 box3 box3";
	}

		section.gallery .gallery-container a:first-child {
			grid-area: box1;
			padding: 1rem;
		}

		section.gallery .gallery-container a:nth-child(2) {
			grid-area: box2;
			padding: 1rem;
		}

		section.gallery .gallery-container a:last-child {
			grid-area: box3;
			padding: 1rem;
		}
		
.img-container {
	position: relative;
	display: inline-block;
}
	.img-container .text-container {
		opacity: 0;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: rgba(0,0,0,0.6);
		transition: all .3s ease-in-out;
	}

		.img-container .text-container:hover {
			opacity: 1;
		}

		.img-container .text-container {
			font-size: 1rem;
			line-height: 1rem;
		}

.about-section-1 {
	position: relative;
	background: url(../img/team_poster.png) no-repeat center center/cover;
	height: 940px;
}

.about-section-2 {
	position: relative;
	background: url(../img/team_poster2.jpg) no-repeat center center/cover;
	height: 940px;
}	

.about-section-3 {
	position: relative;
	background: url(../img/team_poster3.png) no-repeat center center/cover;
	height: 940px;
	/*color: black;*/
}

	.about-section-inner {
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin: auto;
		max-width: 860px;
		padding: 5rem 0;
	}

	.about-section-inner h3 {
		font-size: 4rem;
	}
	.about-section-inner h2 {
		font-size: 3rem;
		line-height: 5rem;
		margin-top: 1rem;
	}
	.about-section-inner p {
		font-size: 1rem;
		margin-top: 1rem;
	}


/* Newsletter Section */

.news-letter {
	width: 100%;
	height: 400px;
	background: rgb(32, 32, 32);
}
	.news-letter-inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 5%;
	}

	.news-letter-inner h2 {
		font-size: 2.5rem;
		margin: 1rem 0;
	}

.email-form {
	width: 100%;
	display: inline-block;
	background-color: #555;
	position: relative;
	border-radius: 20px;
	line-height: 0;
	margin-top: 1rem;
}
	.email-form .form-control {
		display: inline-block;
		border: 0;
		outline: 0;
		font-size: 1rem;
		color: #ddd;
		background-color: transparent;
		font-size: inherit;
		margin: 0;
		padding: 0 3rem 0 1.5rem;
		width: 100%;
		height: 45px;
		border-radius: 20px;
	}
	.email-form .submit {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		width: 45px;
		height: 45px;
		background-color: #eee;
		font-size: 1rem;
		text-align: center;
		margin: 0;
		padding: 0;
		outline: 0;
		border: 0;
		color: #333;
		cursor: pointer;
		border-radius: 0 20px 20px 0;
	}

.text
{
  position: relative;
  z-index: 10;
}


.social
{
  position: absolute;
  z-index: 10;
  /* bottom: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}

.footer {
	position: absolute;
	width: 100%;
	height: 100%;
}
.footer-copyright {
	position: absolute;
	z-index: 10;
	bottom: 0;
	right: 0;
}

/* Utilities */

.overlay{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
}

.btn {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0.4rem; 1.3rem;
	font-size: 1rem;
	border: 0;
	cursor: pointer;
	margin-right: 0.5rem;
	outline: none;
	box-shadow: 0 1px 0 rgba(0,0,0,0.45);
	border-radius: 2px;
}

	.btn:hover {
		opacity: 0.9;
	}

	.btn-rounded {
		border-radius: 5px;
	}

	.btn-xl {
		font-size: 1.8rem;
		padding: 1rem 2.1rem;
		text-transform: uppercase;
	}

	.btn-lg {
		font-size: 1.2rem;
		padding: 0.8rem 1.3rem;
		text-transform: uppercase;
	}

	.fa-fw {
		margin-left: 1rem;
	}

@media (max-width:991px) {
	.header-content {
		margin: auto;
		margin-top: 10rem;
	}
	.header-content h1 {
		display: none;
		font-size: 1.5rem;
		line-height: 1rem;
	}
	.header-content p {
		display: none;
		font-size: 1rem;
		line-height: 1rem;
	}
	.header-top .navigation .navigation-items a {
		font-size: .8rem;
	}
	.btn-xl {
		font-size: 1rem;
		padding: 0.6rem 2rem;
	}
	section.gallery .gallery-container {
		grid-template-columns: 1fr;
		grid-template-areas: "box1"
		"box2"
		"box3";
	}
	.about-section-inner p {
		font-size: 1rem;
		line-height: 1rem;
	}
	.about-section-inner h3 {
		font-size: 1.5rem;
		line-height: 1rem;
	}
	.footer .footer-col {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer {
		position: absolute;
		width: 0;
		height: 0;
	}

}

@media (max-width:768px) {
	.header-content {
		margin: auto;
		margin-top: 38rem;
	}
	.header-content h1 {
		display: none;
		font-size: 1.5rem;
		line-height: 1rem;
	}
	.header-content p {
		display: none;
		font-size: 1rem;
		line-height: 1rem;
	}
	.header-top .navigation .navigation-items a {
		display: none;
	}
	.btn-xl {
		font-size: 1rem;
		padding: 0.6rem 2rem;
	}
	section.gallery .gallery-container {
		grid-template-columns: 1fr;
		grid-template-areas: "box1"
		"box2"
		"box3";
	}
	.about-section-inner p {
		font-size: .8rem;
		line-height: 1rem;
	}
	.about-section-inner h3 {
		font-size: 1.5rem;
		line-height: 1rem;
	}
	.footer .footer-col {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer {
		position: absolute;
		width: 0;
		height: 0;
	}
}

@media (max-width:450px){
	.header-top .navigation .navigation-items a {
		display: none;
	}
}