.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

video.logo {
	position: absolute;
	top: 50%;
	left: 50%;
    width: 100%;
    height: 500px;
	outline-style: none;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.below_menu {
	position: relative;
    font-size: 700;
    font-size: xx-large;
    text-align: center;
	width: 25%;
	top: 70%;
	left: 50%;
	min-height: 1%;
	max-height: 15%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	-webkit-animation: fadein 1s forwards;
	-moz-animation: fadein 1s forwards;
	-o-animation: fadein 1s forwards;
	animation: fadein 1s forwards;
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-o-animation-delay: 2s;
	animation-delay: 2s;
}

#below_disclaimer {
	margin-top: 25px;
	font-size: 12px;
	color: #d3d3d3;
	text-align: justify
}

.below_text {
	text-align: justify
}

.BuyButton {
	max-width: 5vw;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-moz-transition: .2s;
	transition: .2s
}

.BuyButton:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2)
}

@-webkit-keyframes fadein {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-moz-keyframes fadein {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-o-keyframes fadein {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadein {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.arrow {
  display: inline-block;
  animation: upDown 1.7s infinite ease-in-out;
}

@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Move up 5px */
  }
}

#PaymentOptions {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.FullPageContainer {
	position: relative;
	height: 100vh;
	scroll-snap-align: start
}

.FlexContainer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}

.FlexColumn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 5%
}

.Feature {
	margin: 25px;
	margin-right: 75px;
	width: 180px;
	height: 100px
}

.FeatureIcon {
	text-align: center;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 48px;
	margin-bottom: 0
}

.FeatureLabel {
	text-align: center;
	font-size: 16px
}

h1.ContainerTitle {
    font-size: 700;
	font-size: 36px
}

.ContainerParagraph {
    font-weight: 300;
	font-size: 18px;
	text-align: justify
}

a {
	color: #fff
}

body {
	margin: 0;
	height: 100%;
	color: #fff;
	background-color: #000;
	background-image: url(https://raw.githubusercontent.com/NPSummers/EuclideanLabsLLC.com/main/images/bggrad.png);
	background-attachment: fixed;
	background-position: center bottom;
	background-repeat: repeat-x;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: Lato, sans-serif
}

html {
	-webkit-scroll-snap-points-y: repeat(100vh);
	-ms-scroll-snap-points-y: repeat(100vh);
	scroll-snap-points-y: repeat(100vh);
}