:root {
  --fl-gold: #B5952A;
  --fl-darkgold: #a08324;
  --fl-lightgold: #DBC571;
  --fl-green: #6A9C66;
  --fl-darkgreen: #5e8b5b;
  --fl-red: #E86565;
  --fl-darkred: #d15b5b;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "proxima-nova", sans-serif;
  background: white;
}
body h1, body h2, body h3 {
  margin: 0;
  padding: 0;
  line-height: 100%;
}
body header {
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background: #171717;
}
body header .header-container {
  padding: 16px 32px;
  width: auto;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
body header .header-container .logo img {
  width: 50px;
}
body header .header-container nav button.login-btn {
  background: var(--fl-gold);
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-family: "proxima-nova", sans-serif;
  border: none;
  outline: none;
  border-radius: 8px;
}
body header .header-container nav button.login-btn:hover {
  cursor: pointer;
  background: var(--fl-darkgold);
}
body .hero {
  background: url("../img/black_paper.jpg") no-repeat 10%/cover, #888;
  background-blend-mode: multiply;
  background-attachment: fixed;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}
body .hero .hero-container {
  position: relative;
  width: auto;
  min-width: 350px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 100px;
       column-gap: 100px;
  box-sizing: border-box;
}
body .hero .hero-container .hero-left {
  padding: 100px 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
body .hero .hero-container .hero-left .site-title {
  text-transform: uppercase;
}
body .hero .hero-container .hero-left .site-title h3 {
  font-size: 24px;
}
body .hero .hero-container .hero-left .site-title h2 {
  font-size: 40px;
}
body .hero .hero-container .hero-left .site-title h1 {
  font-size: 40px;
  color: var(--fl-lightgold);
}
body .hero .hero-container .hero-left .hero-content h1.hero-tagline {
  font-size: 36px;
}
body .hero .hero-container .hero-left .hero-content p.hero-desc {
  line-height: 150%;
  font-size: 18px;
  color: #aaa;
}
body .hero .hero-container .hero-left .hero-join-now {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
body .hero .hero-container .hero-left .hero-join-now button.hero-cta-btn {
  padding: 20px 36px;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 8px;
  background: linear-gradient(88deg, #B5952A 0%, #DBC571 100%);
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
  align-self: flex-start;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: center;
  color: #aaa;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc .hero-users {
  display: flex;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc .hero-users .user-thumbnail {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: relative;
  margin: 0;
  margin-right: -10px;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc .hero-users .hero-user-1 {
  background: red;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc .hero-users .hero-user-2 {
  background: blue;
}
body .hero .hero-container .hero-left .hero-join-now .hero-join-desc .hero-users .hero-user-3 {
  background: green;
}
body .about {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: #f2f2f2;
}
body .about .about-container {
  position: relative;
  width: auto;
  min-width: 350px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  box-sizing: border-box;
}
body .about .about-container .about-block {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
body .about .about-container .about-block h1, body .about .about-container .about-block h2 {
  padding: 0;
  margin: 0;
  line-height: 120%;
  font-size: 24px;
  color: #333;
}
body .about .about-container .about-block p {
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-size: 18px;
  color: #555;
}
body .about .about-container .about-block h2 {
  font-size: 24px;
  color: var(--fl-gold);
  line-height: 120%;
}
body .about .about-container .ready-to-start {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  justify-content: center;
}
body .about .about-container .ready-to-start h1 {
  font-size: 24px;
  color: #333;
}
body .about .about-container .ready-to-start button.signup-cta-btn {
  padding: 20px 36px;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 8px;
  background: linear-gradient(88deg, #B5952A 0%, #DBC571 100%);
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
}
body .how-it-works {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body .how-it-works .how-it-works-container {
  position: relative;
  width: auto;
  min-width: 350px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  box-sizing: border-box;
}
body .how-it-works .how-it-works-container .how-it-works-block {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-img {
  width: 320px;
  height: 320px;
  background: #f2f2f2;
}
body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  width: 70%;
}
body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc h1 {
  padding: 0;
  margin: 0;
  line-height: 100%;
  font-size: 24px;
  color: #333;
}
body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc p {
  padding: 0;
  padding-left: 32px;
  margin: 0;
  line-height: 150%;
  font-size: 18px;
  color: #555;
  border: none;
  border-left: var(--fl-lightgold) solid 2px;
}
body .how-it-works .how-it-works-container .reverse-blocks {
  flex-direction: row-reverse;
}
body .get-started {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: url("../img/black_paper.jpg") no-repeat 10%/cover, #888;
  background-blend-mode: multiply;
  background-attachment: fixed;
  color: white;
}
body .get-started .get-started-container {
  position: relative;
  width: auto;
  min-width: 350px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  box-sizing: border-box;
}
body .get-started .get-started-container h1 {
  font-size: 32px;
}
body .get-started .get-started-container button.get-started-cta-btn {
  padding: 20px 36px;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 8px;
  background: linear-gradient(88deg, #B5952A 0%, #DBC571 100%);
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
  align-self: flex-start;
  margin: 0 auto;
}
body footer {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: #222;
  color: white;
}
body footer .footer-container {
  position: relative;
  width: auto;
  min-width: 350px;
  max-width: 1440px;
  padding: 50px 32px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body footer .footer-container .footer-logo {
  display: flex;
  flex-direction: column;
}
body footer .footer-container .footer-logo h1, body footer .footer-container .footer-logo h2, body footer .footer-container .footer-logo h3 {
  text-transform: uppercase;
  color: #aaa;
  font-weight: 700;
}
body footer .footer-container .footer-logo h1, body footer .footer-container .footer-logo h2 {
  font-size: 20px;
}
body footer .footer-container .footer-logo h3 {
  font-size: 16px;
}
body footer .footer-container .footer-desc {
  text-align: right;
  color: #888;
}
body footer .footer-container .footer-desc p {
  padding: 0;
  margin: 0;
  line-height: 150%;
}
body footer .footer-container .footer-desc a {
  color: var(--fl-lightgold);
  text-decoration: none;
}
body .login {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: url("../img/black_paper.jpg") no-repeat 10%/cover, #888;
  background-blend-mode: multiply;
  background-attachment: fixed;
  color: white;
  height: 100vh;
}
body .login .top-bar {
  background: #171717;
  padding: 16px;
  text-align: center;
  color: var(--fl-lightgold);
}
body .login .top-bar a {
  color: var(--fl-lightgold);
  text-decoration: none;
}
body .login .login-container {
  width: 100%;
  box-sizing: border-box;
  padding: 0 32px;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .login .login-container .login-box {
  background: white;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  color: #333;
  position: relative;
  width: 400px;
  box-sizing: border-box;
}
body .login .login-container .login-box h1 {
  font-size: 24px;
}
body .login .login-container .login-box form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  box-sizing: border-box;
}
body .login .login-container .login-box form input {
  background: #eee;
  font-size: 18px;
  border: #ddd solid 1px;
  border-radius: 8px;
  padding: 12px 8px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  color: #333;
}
body .login .login-container .login-box form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #eee;
  font-size: 18px;
  border: #ddd solid 1px;
  border-radius: 8px;
  padding: 12px 8px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  color: #333;
}
body .login .login-container .login-box form input::-moz-placeholder {
  font-weight: 300;
  color: #aaa;
}
body .login .login-container .login-box form input::placeholder {
  font-weight: 300;
  color: #aaa;
}
body .login .login-container .login-box form .login-btn {
  background: var(--fl-gold);
  color: white;
  font-weight: bold;
  border: none;
  font-size: 20px;
}
body .login .login-container .login-box form .login-btn:hover {
  cursor: pointer;
  background: var(--fl-darkgold);
}
body .login .login-container .login-box a {
  text-align: center;
  color: black;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 450px) {
  body header .header-container {
    padding: 12px 16px;
  }
  body header .header-container .logo img {
    width: 32px;
  }
  body header .header-container nav button.login-btn {
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
  }
  body .hero .hero-container {
    flex-direction: column;
    row-gap: 64px;
    box-sizing: border-box;
  }
  body .hero .hero-container .hero-left, body .hero .hero-container .hero-right {
    width: 100%;
  }
  body .hero .hero-container .hero-left {
    padding: 32px 0;
  }
  body .hero .hero-container .hero-left .site-title {
    text-align: center;
  }
  body .hero .hero-container .hero-left .site-title h3 {
    font-size: 18px;
  }
  body .hero .hero-container .hero-left .site-title h1, body .hero .hero-container .hero-left .site-title h2 {
    font-size: 28px;
  }
  body .hero .hero-container .hero-left .hero-content {
    text-align: center;
  }
  body .hero .hero-container .hero-left .hero-content h1.hero-tagline {
    font-size: 32px;
  }
  body .hero .hero-container .hero-left .hero-content p.hero-desc {
    font-size: 16px;
  }
  body .hero .hero-container .hero-left .hero-join-now {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body .hero .hero-container .hero-left .hero-join-now button.hero-cta-btn {
    margin: 0 auto;
    font-size: 20px;
  }
  body .hero .hero-container .hero-left .hero-join-now .hero-join-desc {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 13px;
  }
  body .about .about-container {
    padding: 50px 32px;
    row-gap: 32px;
  }
  body .about .about-container .about-block h1 {
    font-size: 20px;
  }
  body .about .about-container .about-block p {
    font-size: 16px;
  }
  body .about .about-container .about-block h2 {
    font-size: 18px;
  }
  body .about .about-container .ready-to-start h1 {
    font-size: 20px;
  }
  body .about .about-container .ready-to-start button.signup-cta-btn {
    padding: 20px;
    font-size: 20px;
    line-height: 120%;
    width: 100%;
  }
  body .how-it-works .how-it-works-container {
    padding: 50px 32px;
    row-gap: 64px;
  }
  body .how-it-works .how-it-works-container .how-it-works-block {
    display: flex;
    flex-direction: column-reverse;
    box-sizing: border-box;
    row-gap: 32px;
  }
  body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-img {
    width: 100%;
    box-sizing: border-box;
  }
  body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc {
    width: 100%;
    row-gap: 16px;
  }
  body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc h1 {
    font-size: 20px;
    line-height: 120%;
  }
  body .how-it-works .how-it-works-container .how-it-works-block .how-it-works-desc p {
    font-size: 16px;
    padding-left: 16px;
  }
  body .get-started .get-started-container {
    padding: 50px 32px;
  }
  body .get-started .get-started-container h1 {
    font-size: 24px;
  }
  body footer .footer-container {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    text-align: center;
  }
  body footer .footer-container .footer-desc {
    text-align: center;
    font-size: 14px;
  }
  body .login .login-container .login-box {
    padding: 32px 24px;
  }
}/*# sourceMappingURL=style.css.map */