/* Branding */
.red {
  color: rgb(230,88,29);
}
.white {
  color: #fff;
}
.darkgray {
  color: #383838;
}
.midgray {
  color: #a0a0a0;
}
.lightgray {
  color: #d1d1d1;
}
button {
  font-family: "Source Sans Pro", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
}
.navbar a, .navbar button {
  font-family: "Source Sans Pro", sans-serif;
}
.billboard {
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.billboard img {
  width: 50%;
  margin: auto;
  max-width: 650px;
  display: inline-block;
  margin-top: 25px;
  z-index: -1;
}
.billboard button {
  z-index: 10;
}
#particle-canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  position: absolute !important;
  top: -150px;
  left: 0;
  z-index: -10;
}
.billboard-half #particle-canvas {
  height: 50vh;
  width: 100vh;
}
.billboard-content {
  position: relative;
  top: 0;
  text-align: center;
  font-style: normal;
  height: 80vh;
  margin-top: 150px;
}
.billboard-content h1 {
  font-size: 44px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.billboard-content p{
  padding-top: 0;
  margin-top: 0;
}
h1,h2,h3 {
  font-weight: lighter;
  text-transform: none;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 26px;
}
.feature h2, .feature p {
  text-align: center;
}
.feature {
  padding: 7px;
}
.feature .fas {
  color: rgb(230,88,29);
  font-size: 500%;
  text-align: center;
  width: 100%;
}

.section {
  width: 80%;
  margin-left: 10%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.section.full {
  width: 100%;
  color: white;
  margin-left: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.pricing-container, .testimonial {
  padding: 7px;
  background: white;
  border-radius: 5px;
  color: #383838;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.testimonial {
  box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  padding-left: 15px;
  padding-right: 15px;
}
.pricing-container table {
  width: 90%;
  margin-left: 5%;
}
.pricing-container td {
  text-align: center;
}
.pricing-container h2, .pricing-container h3 {
  padding: 0;
  margin: 0;
}
.pricing-table button {
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer {
  background: #383838;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer .logo {
  height: 65px;
}
.footer .logo-subtitle {
  font-weight: normal;
}
.footer h3 {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.footer a:before {
  content: "▸ ";
  color: #d1d1d1;
}
.footer a {
  color: white;
  text-decoration: none;
  margin-top: 5px;
}
.bar {
  width: 250px;
  min-width: 65%;
  height: 1px;
  background-color: #d1d1d1;
  display: inline-block;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.bar.small {
  width: 40%;
}

.section.marginless {
  padding: 0;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15%;
  padding-right: 15%;
  z-index: 150;
  transition: 250ms;
}
.navbar .logo {
  height: 100px;
  display: block;
  float: left;
}
.navbar.snapped .logo {
  height: 60px;
}
.navbar.snapped {
  height: 90px;
  position: fixed;
  background: white;
  box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  transition: 250ms;
  transform: translateY(-150%);
}
.navbar.snapped.unstick {
  transform: translateY(0);
}
/* DROPDOWNS */
/* Navbar container */
/*.navbar {
 overflow: hidden;
 background-color: #333;
 font-family: Arial;
}*/

/* Links inside the navbar */
.navbar a {
 float: right;
 font-size: 16px;
 color: #383838;
 text-align: center;
 padding: 0px calc(1vw + 26px);
 text-decoration: none;
}
.navbar .links {
  position: relative;
  top: 36.5px;
}
.navbar.snapped .links {
  top: 18.25px;
}
.navbar a, .navbar button {
  font-size: 16px;
}

/* The dropdown container */
.dropdown {
 float: right;
 overflow: hidden;
}
.navbar a:after, .footer a span:after{
	content: '';
	display: block;
	margin: auto;
	height: 3px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.navbar a:hover:after, .footer a span:hover:after {
	width: 100%;
	background: rgb(230,88,29);
}
.footer a span:after {
  height: 2px;
  display: block;
}
.footer a span:hover:after {
  background: #d1d1d1;
}



/* Dropdown button */
.dropdown .dropbtn {
  background: transparent;
 border: none;
 outline: none;
 padding: 0px calc(1vw + 26px);
 background-color: inherit;
}

/* Add a red background color to navbar links on hover */

/* Dropdown content (hidden by default) */
.dropdown-content {
 display: none;
 position: absolute;
 top: 23px;
 background-color: #f9f9f9;
 min-width: 160px;
 box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
 float: none;
 color: black;
 padding: 12px 16px;
 text-decoration: none;
 display: block;
 text-align: left;
}

/* Add a grey background color to dropdown links on hover */

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
 display: block;
}
.navbar button:hover {
  cursor: pointer;
}
.navbar .button {
  float: right;
  margin-top: -9.5px;
  margin-left: calc(1vw + 26px);
}
.button {
  border-radius: 45px;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  padding: 10px 25px;
  transition: 150ms;
}
.button.red {
  border-color: #fa6526;
  color: #fa6526;
}
.button.light {
  border-color: #ededed;
  color: #383838;
}

.button.red:hover {
  background: #fa6526;
  color: white;
}
.button.red.filled {
  color: white;
  background: #fa6526;
}
.button.red.filled:hover {
  background: #e2591f;
}
.button.light:hover {
  background: #ededed;
}
.button.light.filled {
  background: #ededed;
}
.button.white {
  border-color: white;
  color: white;
}
.button.white:hover {
  background: white;
  color: #fa6526;
}
.button.light.white {
  color: white;
}
.button.light.white:hover {
  color: #383838;
}
.button.light.filled:hover {
  background: transparent;
}
.button.large {
  font-size: 16px;
  padding: 10px 75px;
}
.button:hover {
  cursor: pointer;
}
.section.full.banner {
  padding-top: 2px;
  padding-bottom: 2px;
}
.banner button {
  font-size: 80%;
  padding: 5px 35px;
}
