:root {
	--fs-small: 0.875rem;
	--fs-base: 1rem;
	--fs-large: 1.25rem;
	--fs-xlarge: 2rem;
}

html {
	margin-right: 0;
}

body {
	margin: 0;
	padding: 0;
	border: none;
	font-family: "Roboto";
	font-size: 16px;
	line-height: 1.5;
	color: #bbb;
	background: #101010;
	letter-spacing: 0;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

* {
	box-sizing: border-box;
}

.cursor-follower {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: #4bffa5;
	width: 0;
	height: 0;
	transition: transform 1s cubic-bezier(0.02, 1.2, 0.8, 1), width 0.5s ease, height 0.5s ease, margin 0.5s ease;
	opacity: 0.1;
	z-index: 150;
	pointer-events: none;
	border-radius: 50%;
}

.cursor-follower.big {
	width: 86px;
	height: 86px;
	margin: -43px 0 0 -43px;
}

.cursor-follower.hide {
	opacity: 0 !important;
}

@media (max-width: 1199px) {
	.cursor-follower {
		display: none;
	}
}

/* - Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 200;
}

.preloader .spinner {
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
}

.preloader .spinner .double-bounce1,
.preloader .spinner .double-bounce2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.preloader .spinner .double-bounce2 {
	background: rgba(255, 255, 255, 0.5);
	height: 0;
	-webkit-animation: loading 2.0s infinite ease-in-out;
	animation: loading 2.0s infinite ease-in-out;
}

/* - Container */
.container {
	position: relative;
	margin: 0;
	overflow: hidden;
}

.container:before {
	pointer-events: none;
	z-index: 12;
}

.wrapper {
	position: relative;
}

p {
	padding: 0;
	margin: 30px 0;
}

strong {
	font-weight: 700;
}

@media screen and (max-width: 720px) {
	p {
		margin: 20px 0;
	}
}

/* - Links */
a {
	color: #eee;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: none;
	color: #4bffa5;
}

/* - Lists */
ul {
	list-style: disc;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 0px;
	list-style-position: inside;
}

ul ul {
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}

/* - Alignment */

.full-width {
	max-width: 100% !important;
	width: 100% !important;
}

.centrize {
	display: table !important;
	table-layout: fixed !important;
	height: 100% !important;
	position: relative !important;
	top: 0;
	left: 0;
	z-index: 2;
}

.vertical-center {
	display: table-cell !important;
	vertical-align: middle !important;
}


/* - Animations */

@keyframes loading {
	0% {
		height: 0;
		top: 0;
		bottom: auto;
	}

	50% {
		height: 100%;
		top: 0;
		bottom: auto;
	}

	51% {
		height: 100%;
		top: 0;
		bottom: auto;
	}

	52% {
		height: 100%;
		top: auto;
		bottom: 0;
	}

	100% {
		height: 0;
		top: auto;
		bottom: 0;
	}
}

/* Mouse Button Animations */
@keyframes mouse-anim {
	0% {
		top: 0px;
	}

	50% {
		top: 10px;
	}

	100% {
		top: 0px;
	}
}