@charset "utf-8";
/* CSS Document */

body {
	font-family: Roboto, sans-serif;
	margin: auto;
}
p {
	font-size: 1.2rem;
	line-height: 2rem;
	background: rgba(255,255,255,0.5);
	border-radius: 20px;
}
a {
	color: #FFFFFF;
	text-decoration: none;
}
h1 {
	font-size: 4rem;
	letter-spacing: 3px;
	margin-bottom: 3rem;
}
h2 {
	font-size: 2rem;
}
#Header {
	width: 100%;
	position: fixed;
	padding: 5px 0;
	font-size: 0;
}

#Slider {
	background: #000000;
}

#Nav {
	width: 100%;
	background: rgba(0,0,0,0.75);
	color: #FFFFFF;
	position: sticky;
    top: 0px;
}
.nav {
	text-align: center;
}
#Nav li {
	padding: 0 20px;
	list-style: none;
	display: inline-block;
	vertical-align: top;
	font-size: 1.2rem;
	line-height: 40px;
	transition: background 0.75s;
}
#Nav li:hover {
	background: rgba(255,255,255,0.25);
	transition: background 0.75s;
}

#About {
	width: 100%;
	background: #00FC5B;
	padding: 40px 0;
}

#Features {
	width: 100%;
	padding: 40px 0;
	text-align: center;
}
.featS {
	background-color: rgba(255,255,255,0.25);
	background-blend-mode: screen;
	display: inline-block;
	vertical-align: top;
	width: 40%;
	height: 500px;
	margin: 20px 10px;
	padding: 20px;
	border-radius: 20px;
}
.featL {
	background-color: rgba(255,255,255,0.25);
	background-blend-mode: screen;
	display: inline-block;
	width: 85%;
	height: 400px;
	margin: 20px 10px;
	padding: 20px;
	border-radius: 20px;
}

#Products {
	width: 100%;
	background: #D8FF00;
	padding: 40px 0;
}

#Contact {
	width: 100%;
	background: #C9C9C9;
	padding: 40px 0;
	text-align: center;
	font-size: 1.5rem;
	line-height: 4rem;
}

#Footer {
	width: 100%;
	background: #3F3F3F;
	color: #FFFFFF;
	padding: 60px 0;
	text-align: center;
}

.content {
	margin: auto;
	max-width: 1200px;
}

.slideshow {
	position: relative;
	margin: auto;
	font-size: 0;
}
.mySlides {
	display: none;
}
.mySlides img {
	width: 100%;
}
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -1.5rem;
	padding: 15px;
	color: #FFFFFF;
	font-size: 3rem;
	transition: 0.5s ease;
	border-radius: 0 50% 50% 0;
	user-select: none;
}
.next {
	right: 0;
	border-radius: 50% 0 0 50%;
}
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.75);
}
.dots {
	width: 100%;
	position: absolute;
	bottom: 30px;
	text-align: center;
}
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 5px;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.5s ease;
}
.active, .dot:hover {
	background-color: #333333;
}
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}
@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}