@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

nav {
	display: flex;
	height: 70px;
	width: 100%;
	background: #1b1b1b;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px 0 100px;
	flex-wrap: wrap;
}

nav .logo {
	color: #fff;
	height: 45px;
	position: absolute;
	right: 50.5%;
	bottom: 101%;
	user-select: none;
	transform: scale(0.3);
}

nav ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;

}

nav ul li {
	margin: 0 5px;
}

nav ul li a {
	color: #f2f2f2;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 5px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
	color: #111;
	background: #fff;
}

nav .menu-btn i {
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: none;
}

input[type="checkbox"] {
	display: none;
}

@media (max-width: 1000px) {
	nav {
		padding: 0 40px 0 50px;
	}
}

@media (max-width: 920px) {
	nav .menu-btn i {
		display: block;
	}

	#click:checked~.menu-btn i:before {
		content: "\f00d";
	}

	nav ul {
		position: fixed;
		top: 80px;
		left: -100%;
		background: #111;
		height: 100vh;
		width: 100%;
		text-align: center;
		display: block;
		transition: all 0.3s ease;
	}

	#click:checked~ul {
		left: 0;
	}

	nav ul li {
		width: 100%;
		margin: 40px 0;
	}

	nav ul li a {
		width: 100%;
		margin-left: -100%;
		display: block;
		font-size: 20px;
		transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

	#click:checked~ul li a {
		margin-left: 0px;
	}

	nav ul li a.active,
	nav ul li a:hover {
		background: none;
		color: cyan;
	}
}

.content {
	text-align: center;
	height: 100vh;
	width: 100vw;
	color: #1b1b1b;
	background: rgb(34, 245, 156);
	background: linear-gradient(180deg, rgba(34, 245, 156, 1) 0%, rgba(0, 212, 255, 1) 100%);
	position: absolute;
	right: 0px;
	bottom: px;
	left: 0px;
}

.content div {
	margin-top: 50px;
	font-size: 70px;
	font-weight: 700;
}

/* */
a {
	position: relative;
	height: 60px;
	width: 200px;
	margin: 0 5px;
	border-radius: 50px;
	border: none;
	outline: none;
	background: #111;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.5s;
}

a:first-child:hover {
	background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
	background-size: 400%;
}

a:last-child:hover {
	background: linear-gradient(90deg, #fa7199, #f5ce62, #e43603, #fa7199);
	background-size: 400%;
}

a:first-child:before,
a:last-child:before {
	content: '';
	position: absolute;
	background: inherit;
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
	border-radius: 50px;
	filter: blur(20px);
	opacity: 0;
	transition: opacity 0.5s;
}

a:first-child:hover:before,
a:last-child:hover:before {
	opacity: 1;
	z-index: -1;
}

a:hover {
	z-index: 1;
	animation: glow 8s linear infinite;
}

@keyframes glow {
	0% {
		background-position: 0%;
	}

	100% {
		background-position: 400%;
	}
}

.button {
	color: #f2f2f2;
	text-decoration: none;
	font-size: 50px;
	font-weight: 600;
	padding: 8px 15px;
	border-radius: 20px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	height: 240px !important;
	width: 800px;
}

.button:first-child:hover {
	background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
	background-size: 400%;
}

.button:last-child:hover {
	background: linear-gradient(90deg, #0c88ed, #43e671, #a537f4, #0c88ed);
	background-size: 400%;
}

.slogan-parent {
	text-align: center;
	color: #1b1b1b;
	position: absolute;
	right: 0px;
	bottom: px;
	left: 0px;
}

.slogan-parent div {
	margin-top: 50px;
	font-size: 40px;
	font-weight: 700;
}

.loader-container{
    width: 100%;
    height: 100vh;
    background-color: #111;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader{
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: loader 1.2s linear infinite;
}

@keyframes loader{
    33%{
        color: #2ecc71;
    }
    67%{
        color: #0fc0f1;
    }
    to{
        transform: rotate(360deg);
    }
}