@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');


*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Quicksand', 'Montserrat', sans-serif;
}

html
{
	scroll-behavior: smooth;
}

body
{
	min-height: 1000px;
	background: #000;
}

/*.wrapper
{
	display: none;
}

.welcome-section
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	overflow: hidden;
}

.content-wrap
{
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%, -50%);
}

.fly-in-text
{
	list-style: none;
}

.fly-in-text li
{
	display: inline-block;
	margin-right: 20px;
	font-size: 5em;
	color: #000;
	opacity: 1;
	transition: all 3s ease;
}

.fly-in-text li:nth-child(5)
{
	margin-right: 0;
}

.enter-button
{
	display: block;
	text-align: center;
	font-size: 2em;
	text-decoration: none;
	color: #3498db;
	opacity: 1;
	margin-top: 30px;
	transition: all 1s ease 3s;
}

.content-hidden .fly-in-text li { opacity: 0;}
.content-hidden .fly-in-text li:nth-child(1) { transform: translate3d(-60px, 0, 0); }
.content-hidden .fly-in-text li:nth-child(2) { transform: translate3d(-30px, 0, 0); }
.content-hidden .fly-in-text li:nth-child(3) { transform: translate3d(0px, 0, 0); }
.content-hidden .fly-in-text li:nth-child(4) { transform: translate3d(30px, 0, 0); }
.content-hidden .fly-in-text li:nth-child(5) { transform: translate3d(60px, 0, 0); }
.content-hidden .enter-button { opacity: 0; transform: translate3d(0, -30px, 0); }*/

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 100px;
	z-index: 10;
	transition: 0.6s;
}

header.sticky
{
	padding: 5px 100px;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1);
}

header .logo
{
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.6s;
}

header ul
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

header ul li
{
	position: relative;
	list-style: none;
}

header ul li a
{
	position: relative;
	margin: 0 15px;
	text-decoration: none;
	color: #fff;
	letter-spacing: 2px;
	font-weight: 300;
	transition: 0.6s;
}

header.sticky .logo,
header.sticky ul li a
{
	color: #000;
}

.banner
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	/*background: url(../img/img4.jpg);
	background-size: cover;*/
}

.banner img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
}

.banner h2
{
	color: #fff;
	font-size: 70px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1em;
	font-family: 'Varela Round';
	z-index: 1;
}

.banner h2 span
{
	color: #4978ff;
}

.sec
{
	background: #fff;
	padding: 100px;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec .content
{
	position: relative;
	text-align: center;
	width: 100%;
}

.mxw800p
{
	max-width: 800px;
	margin: 0 auto;
}

h3
{
	font-size: 40px;
	font-weight: 200;
	margin-bottom: 10px;
}

p
{
	position: relative;
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

/*.btn
{
	position: relative;
	display: inline-block;
	padding: 10px 30px;
	background: #000;
	text-decoration: none;
	color: #fff;
}*/

.btn
{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	border: 2px solid #111;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
	font-weight: 600;
	font-size: 20px;
}

.btn:before
{
	content: '';
	position: absolute;
	top: 6px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% - 12px);
	background: #fff;
	transition: 0.5s ease-in-out;
	transform: scaleY(1);
}

.btn:hover:before
{
	transform: scaleY(0);
}

.btn:after
{
	content: '';
	position: absolute;
	left: 6px;
	top: -2px;
	height: calc(100% + 4px);
	width: calc(100% - 12px);
	background: #fff;
	transition: 0.5s ease-in-out;
	transform: scaleX(1);
}

.btn:hover:after
{
	transform: scaleX(0);
}

.btn span
{
	position: relative;
	z-index: 3;
}

.services
{
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 30px;
	max-width: 100%;
	margin-top: 40px;
}

.services .box
{
	transition: 0.5s;
	width: 300px;
	margin: 0 auto;
	background: #fff;
	padding: 20px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.services .box:hover
{
	height: 330px;
	width: 400px;
	transition: 0.5s;
	background: #555;
	color: #fff;
}

.services .box:hover .iconBx img
{
	transition: 0.5s;
	max-width: 125px;
}

.services .box .iconBx
{
	margin-top: 25px;
}

.services .box .iconBx img
{
	transition: 0.5s;
	max-width: 100px;
	margin-bottom: 15px;
}

.services .box h2
{
	font-size: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 700;
}

.stats
{
	background: #000;
	padding-top: 250px;
	margin-top: -450px;
}

.stats h3,
.stats p
{
	color: #fff;
}

.statsBox
{
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 20px;
	max-width: 100%;
	margin-top: 40px;
}

.statsBox h2
{
	color: #fff;
	font-size: 36px;
}

.statsBox h4
{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.workBx
{
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
	max-width: 100%;
	margin-top: 40px;
}

.workBx .brand
{
	position: relative;
	background: #4978ff;
	min-height: 300px;
	width: 250px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.workBx .brand:hover
{
	background: #000;
}

.workBx .brand a
{
	text-decoration: none;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 2px;

}

.workBx .brand:hover a
{
	color: rgba(255,255,255,1);	
}

.teamBx
{
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
	max-width: 100%;
	margin-top: 40px;
}

.teamBx .member
{
	position: relative;
	background: #000;
	min-height: 300px;
	width: 250px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.teamBx .member .imgBx
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.teamBx .member .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	max-width: 250px;
	object-fit: cover;
}

.teamBx .member .details
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	transition: 0.5s;
	opacity: 0;
}

.teamBx .member:hover .details
{
	opacity: 1;
}

.teamBx .member .details h2
{
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 2px;
}

.teamBx .member .details h2 span
{
	display: flex;
	font-size: 12px;
	font-weight: 300;
}

.contact
{
	background: #000;
}

.contact h3,
.contact p
{
	color: #fff;
}

.contactForm
{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
}

.contactForm form
{
	width: 100%;

}

.contactForm .row100
{
	display: flex;
	width: 100%;
}

.contactForm .row100 .inputBx50
{
	width: 50%;
	margin: 0 20px;
}

.contactForm .row100 .inputBx100
{
	width: 100%;
	margin: 0 20px;
}

.contactForm .row100 input,
.contactForm .row100 textarea
{
	position: relative;
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	background: transparent;
	width: 100%;
	padding: 10px 0;
	outline: none;
	font-size: 20px;
	font-weight: 300;
	margin: 20px 0;
	resize: none;
}

.contactForm .row100 textarea
{
	height: 100px;
}

.contactForm .row100 input::placeholder,
.contactForm .row100 textarea::placeholder
{
	color: rgba(255,255,255,0.5);
}

.contactForm .row100 input[type="submit"]
{
	background: #fff;
	padding: 10px;
	color: #000;
	max-width: 150px;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	font-weight: 500;
}

.sci
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0;
}

.sci ul
{
	display: flex;
}

.sci ul li
{
	list-style: none;	
}

.sci ul li a
{
	text-decoration: none;
	display: inline-block;
	margin: 0 30px;
}

.fa-discord, 
.fa-instagram,
.fa-twitter
{
	color: #fff;
	max-width: 40px;
	transition: 0.2s;
}

.sci ul li a:hover .fa-discord, 
.sci ul li a:hover .fa-instagram,
.sci ul li a:hover .fa-twitter
{
	opacity: 0.5;
	transition: 0.2s;
	font-size: 50px;
	max-width: 50px;
}

.copyright
{
	color: #fff;	
}

.merci
{
	margin-top: 100px;
	color: #fff;
	letter-spacing: 2px;
}

.merci a
{
	color: #fff;
	text-decoration: none;
}

.merci a:hover
{
	color: #4978ff;
	transition: 0.5s;
}

.toggle
{
	display: none;	
}

.serv
{
	color: #4978ff;
	text-decoration: none;
	transition: 1s;
}

.serv:hover
{
	transition: 1s;
	font-size: 25px;
	text-decoration: underline;
}























@media (max-width: 991px)
{
	.toggle
	{
		display: block;
		position: relative;
		width: 30px;
		height: 30px;
		cursor: pointer;
	}
	.toggle:before
	{
		content: '';
		position: absolute;
		top: 4px;
		width: 100%;
		height: 2px;
		background: #000;
		z-index: 1;
		box-shadow: 0 10px 0 #000;
		transition: 0.5s;
	}
	.toggle:after
	{
		content: '';
		position: absolute;
		bottom: 4px;
		width: 100%;
		height: 2px;
		background: #000;
		z-index: 1;
		transition: 0.5s;
	}

	header,
	header.sticky
	{
		padding: 5px 50px;
		background: #fff;
	}

	header ul
	{
		position: absolute;
		top: 51px;
		left: 0;
		width: 100%;
		height: 100vh;
		text-align: center;
		overflow: auto;
		background: #fff;
		visibility: hidden;
		opacity: 0;
	}

	header.active ul
	{
		visibility: visible;
		opacity: 1;
		display: block;
	}

	header.active ul li a
	{
		margin: 10px 0;
		font-size: 20px;
		display: inline-block;
		padding-top: 20px;
	}

	header .logo,
	header ul li a
	{
		color: #000;
	}

	.banner
	{
		background-position: center;

	}

	.banner h2
	{
		font-size: 60px;
		padding: 0 50px;
	}

	.sec
	{
		padding: 100px 50px 50px 50px;
	}

	.stats
	{
		padding-top: 250px;
		margin-top: -200px;
	}

	.row100
	{
		flex-direction: column;
	}

	.contactForm .row100 .inputBx50,
	.contactForm .row100 .inputBx100
	{
		width: 100%;
		margin: 0;
	}
}

@media (max-width: 1776px)
{
	.sec
	{
		padding: 100px 50px 50px 50px;
	}

	.stats
	{
		padding-top: 250px;
		margin-top: -250px;
	}
}

@media (max-width: 490px)
{
	.banner h2
	{
		font-size: 40px;
		padding: 0 50px;
	}
	.sec
	{
		padding: 100px 50px 50px 50px;
	}

	.sec .content .mxw800p h3
	{
		font-size: 25px;
	}

	.sec .content .mxw800p p
	{
		font-size: 16px;
	}

	.services .box
	{
		width: 300px;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		background: #fff;
		padding: 10px;
		margin-left: -30px;
		box-shadow: 0 15px 30px rgba(0,0,0,0);
	}

	.services .box .iconBx
	{
		margin-top: 25px;
	}

	.services .box .iconBx img
	{
		max-width: 100px;
		margin-bottom: 15px;
	}

	.services .box h2
	{
		font-size: 20px;
		margin-bottom: 10px;
		text-transform: uppercase;
		font-weight: 700;
	}

	.services .box p
	{
		font-size: 16px;
	}

	.stats
	{
		padding-top: 250px;
		margin-top: -200px;
	}

	.row100
	{
		flex-direction: column;
	}

	.contactForm .row100 .inputBx50,
	.contactForm .row100 .inputBx100
	{
		width: 100%;
		margin: 0;
	}

	.contactForm .row100 input,
	.contactForm .row100 textarea
	{
		position: relative;
		border: none;
		border-bottom: 1px solid #fff;
		color: #fff;
		background: transparent;
		width: 100%;
		padding: 10px 0;
		outline: none;
		font-size: 20px;
		font-weight: 300;
		margin: 20px 0;
		resize: none;
	}

	.contactForm .row100 textarea
	{
		height: 100px;
	}

	.contactForm .row100 input::placeholder,
	.contactForm .row100 textarea::placeholder
	{
		color: rgba(255,255,255,0.5);
	}

	.contactForm .row100 input[type="submit"]
	{
		background: #fff;
		padding: 10px;
		color: #000;
		max-width: 120px;
		text-transform: uppercase;
		letter-spacing: 1px;
		cursor: pointer;
		font-weight: 500;
	}

	.fa-facebook-square, 
	.fa-instagram,
	.fa-twitter
	{
		color: #fff;
		max-width: 30px;
	}

	.sci ul li a
	{
		text-decoration: none;
		display: inline-block;
		margin: 0 15px;
	}
	
}

@media (min-width: 1726px)
{
	.banner h2
	{
		font-size: 90px;
	}
}