@font-face {
  font-family: "InGen";
  src: url("/static/ingen/fonts/ingenl.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "InGen";
  src: url("/static/ingen/fonts/ingenr.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "InGen";
  src: url("/static/ingen/fonts/ingenb.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "InGen";
  src: url("/static/ingen/fonts/ingenbl.ttf") format("truetype");
  font-weight: 800;
}
body, html {
  background: #fff;
  margin: 0;
  font-family: "InGen", sans-serif;
  padding: 0;
  font-size: 16px;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  /* The container <div> - needed to position the dropdown content */
  /* Dropdown Content (Hidden by Default) */
  /* Links inside the dropdown */
  /* Change color of dropdown links on hover */
  /* Show the dropdown menu on hover */
}
@media only screen and (max-width: 1023px) {
  body, html {
    overflow: visible;
  }
}
body #step-1 .btn.next, html #step-1 .btn.next {
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
}
@media only screen and (max-width: 1023px) {
  body #step-1 .btn.next, html #step-1 .btn.next {
    font-size: 1rem !important;
    width: 100%;
  }
}
body .dropbtn, html .dropbtn {
  margin-left: 1rem;
  background: #fff;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
body .dropdown, html .dropdown {
  position: relative;
  display: inline-block;
}
body .dropdown-content, html .dropdown-content {
  margin-left: 1rem;
  display: none;
  background: #fff;
  position: absolute;
  z-index: 1;
}
body .dropdown-content a, html .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
body .dropdown-content a:hover, html .dropdown-content a:hover {
  background-color: #f1f1f1;
}
body .dropdown:hover .dropdown-content, html .dropdown:hover .dropdown-content {
  display: block;
}
body .btn, html .btn {
  background: #0066ff;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.4rem 0.8rem 1.4rem;
  border-radius: 2rem;
  min-width: 90px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
body .btn:hover, html .btn:hover {
  filter: brightness(120%);
  cursor: pointer;
  transition: all 0.3s;
}
body .header, html .header {
  display: flex;
  width: 80vw;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  body .header, html .header {
    padding: 1rem 1rem;
  }
}
body .header .left_items, html .header .left_items {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}
body .header .left_items .main-logo, html .header .left_items .main-logo {
  width: 100px;
  height: auto;
}
body .header .left_items .logo-caption, html .header .left_items .logo-caption {
  display: inline-flex;
  width: 100px;
  font-weight: 600;
  font-size: 0.7rem;
  color: #000;
  margin-left: 0.6rem;
  text-decoration: none;
}
body .header .left_items .logo-caption:hover, html .header .left_items .logo-caption:hover {
  color: #0066ff;
}
body .header .left_items .dropdown, html .header .left_items .dropdown {
  margin-left: 1rem;
}
body .header .left_items .dropdown a, html .header .left_items .dropdown a {
  padding: 0.4rem;
}
body .header .right_items, html .header .right_items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50vw;
}
body .header .right_items .desktop, html .header .right_items .desktop {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  body .header .right_items .desktop, html .header .right_items .desktop {
    display: none;
  }
}
body .header .right_items .desktop ul, html .header .right_items .desktop ul {
  font-size: 0.9rem;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}
body .header .right_items .desktop ul li, html .header .right_items .desktop ul li {
  padding: 0 1rem;
}
body .header .right_items .desktop ul li a, html .header .right_items .desktop ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 300;
}
body .header .right_items .mobile, html .header .right_items .mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  body .header .right_items .mobile, html .header .right_items .mobile {
    display: flex;
  }
}
body .header .right_items .mobile input + label, html .header .right_items .mobile input + label {
  position: absolute;
  top: 30px;
  right: 40px;
  height: 20px;
  width: 15px;
  z-index: 5;
}
body .header .right_items .mobile input + label span, html .header .right_items .mobile input + label span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #000;
  transition: 0.5s;
}
body .header .right_items .mobile input + label span:first-child, html .header .right_items .mobile input + label span:first-child {
  top: 4px;
}
body .header .right_items .mobile input + label span:last-child, html .header .right_items .mobile input + label span:last-child {
  top: 16px;
}
body .header .right_items .mobile label:hover, html .header .right_items .mobile label:hover {
  cursor: pointer;
}
body .header .right_items .mobile input:checked + label span, html .header .right_items .mobile input:checked + label span {
  opacity: 0;
  top: 50%;
}
body .header .right_items .mobile input:checked + label span:first-child, html .header .right_items .mobile input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
body .header .right_items .mobile input:checked + label span:last-child, html .header .right_items .mobile input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
body .header .right_items .mobile input ~ nav, html .header .right_items .mobile input ~ nav {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
}
body .header .right_items .mobile input ~ nav > ul, html .header .right_items .mobile input ~ nav > ul {
  text-align: center;
  position: absolute;
  top: 35%;
  left: 20%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  list-style: none;
  right: 20%;
}
body .header .right_items .mobile input ~ nav > ul > li, html .header .right_items .mobile input ~ nav > ul > li {
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  list-style: none;
  transition-delay: 0s;
}
body .header .right_items .mobile input ~ nav > ul > li > a, html .header .right_items .mobile input ~ nav > ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  font-family: sans-serif;
  display: block;
  padding: 2rem;
}
body .header .right_items .mobile input ~ nav > ul > li > a.signup, html .header .right_items .mobile input ~ nav > ul > li > a.signup {
  margin-top: 3rem;
  display: flex;
  background: #0066ff;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem 0.8rem 1.4rem;
  border-radius: 2rem;
}
body .header .right_items .mobile input ~ nav > ul > li > a.signup img, html .header .right_items .mobile input ~ nav > ul > li > a.signup img {
  width: 10px;
  height: auto;
  margin-right: 10px;
}
body .header .right_items .mobile input ~ nav > ul > li > a.signin, html .header .right_items .mobile input ~ nav > ul > li > a.signin {
  display: flex;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 0.8rem 0 0.8rem 0;
  border-radius: 2rem;
  margin: 2rem;
}
body .header .right_items .mobile input ~ nav > ul > li > a.signin img, html .header .right_items .mobile input ~ nav > ul > li > a.signin img {
  width: 14px;
  height: auto;
  margin-right: 10px;
}
body .header .right_items .mobile input:checked ~ nav, html .header .right_items .mobile input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
}
body .header .right_items .mobile input:checked ~ nav > ul > li, html .header .right_items .mobile input:checked ~ nav > ul > li {
  opacity: 1;
  transition-delay: 0.5s;
}
body .header .right_items .buttons, html .header .right_items .buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 0 0 1rem;
  font-size: 0.9rem;
}
body .header .right_items .buttons a, html .header .right_items .buttons a {
  padding: 0 1rem;
}
body .header .right_items .buttons .signup, html .header .right_items .buttons .signup {
  display: flex;
  background: #0066ff;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem 0.8rem 1.4rem;
  border-radius: 2rem;
}
body .header .right_items .buttons .signup img, html .header .right_items .buttons .signup img {
  width: 10px;
  height: auto;
  margin-right: 10px;
}
body .header .right_items .buttons .signin, html .header .right_items .buttons .signin {
  display: flex;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 0.8rem 0 0.8rem 2rem;
  border-radius: 2rem;
}
body .header .right_items .buttons .signin img, html .header .right_items .buttons .signin img {
  width: 14px;
  height: auto;
  margin-right: 10px;
}
body .custom-select, html .custom-select {
  margin: 1rem;
  border: none;
}
body .custom-select:focus, html .custom-select:focus {
  border: #0066ff 2px solid !important;
  outline: rgba(0, 102, 255, 0.22) 5px solid !important;
}
body input:focus, html input:focus {
  border: #0066ff 2px solid !important;
  outline: rgba(0, 102, 255, 0.1) 5px solid !important;
}
body input:valid, html input:valid {
  border: #00c970 2px solid !important;
  outline: rgba(0, 202, 112, 0.1) 5px solid !important;
}
body input.error, html input.error {
  border: #ff2f2f 2px solid !important;
  outline: rgba(255, 47, 47, 0.1) 5px solid !important;
}
body .error_msg, html .error_msg {
  font-size: 0.6rem;
  color: #ff2f2f;
  display: flex;
  flex-basis: 100%;
  font-weight: 600;
  position: absolute;
  right: 0;
  text-align: right;
  top: -4px;
}
@media only screen and (max-width: 1023px) {
  body .error_msg, html .error_msg {
    top: -12px;
  }
}
body .footer, html .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80vw;
  margin: 0 auto;
  padding: 1rem 2rem;
  margin-top: auto;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  body .footer, html .footer {
    margin-top: 3rem;
    flex-direction: column;
  }
}
body .footer .sidebar, html .footer .sidebar {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: center;
  bottom: 50px;
  right: 0;
  height: 30vw;
  text-align: center;
  z-index: 1;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  body .footer .sidebar, html .footer .sidebar {
    display: none;
  }
}
body .footer .sidebar .socials, html .footer .sidebar .socials {
  margin-right: 0.5rem;
  display: flex;
  flex-direction: column;
}
body .footer .sidebar .socials a img, html .footer .sidebar .socials a img {
  height: 1rem;
  width: auto;
  margin: 0 1rem 2rem 1rem;
}
body .footer .sidebar .vertical, html .footer .sidebar .vertical {
  border-left: 1px solid black;
  height: 15vw;
  margin-right: 0.5rem;
}
body .footer .copyright, html .footer .copyright {
  line-height: 1rem;
  font-weight: 300;
  width: 10vw;
}
@media only screen and (max-width: 1023px) {
  body .footer .copyright, html .footer .copyright {
    width: 100%;
    text-align: center;
  }
}
body .footer .copyright p, html .footer .copyright p {
  padding: 0;
  margin: 0;
}
body .footer .copyright span, html .footer .copyright span {
  font-size: 0.7rem;
}
body .footer .partners, html .footer .partners {
  width: 16vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  body .footer .partners, html .footer .partners {
    width: 60%;
    margin-top: 1rem;
    text-align: center;
  }
}
body .footer .links, html .footer .links {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  body .footer .links, html .footer .links {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }
}
body .footer .links a, html .footer .links a {
  font-weight: 300;
  padding-left: 1rem;
  color: #000;
  opacity: 0.8;
  font-size: 0.8rem;
}

/*# sourceMappingURL=style.css.map */
