@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@400;700&display=swap");
html ::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Chivo", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  padding-right: 110px;
  margin-left: 110px;
}

@media (max-width: 1024px) {
  nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 0px;
    padding-right: 0px;
  }
  nav img {
    margin-left: 30px;
  }
}

@media (max-width: 480px) {
  nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 30px;
  }
  nav img {
    margin-left: 30px;
  }
}

nav .mobile-bar {
  padding: 10px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  nav .mobile-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 22px;
  }
}

nav .mobile-bar span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 2px;
  background: #888;
}

nav .mobile-bar.active {
  background: #333;
}

nav .mobile-bar.active span {
  background: white;
}

nav .mobile-bar:hover {
  background: #da0000;
}

nav .mobile-bar:hover span {
  background: white;
}

nav .mobile-bar:hover.active {
  background: #daff07;
}

nav .mobile-bar:hover.active span {
  background: white;
}

nav ul {
  list-style: none;
  margin: 0;
  margin-left: -4px;
  padding: 0;
  -webkit-transition: ease 1s all;
  transition: ease 1s all;
}

@media (max-width: 480px) {
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: none;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f2f2f2;
  }
  nav ul.active {
    opacity: 1;
    max-height: 500px;
    background-color: #e2e2e2;
  }
  nav ul.active li {
    display: block;
  }
  nav ul.active li a {
    display: block;
  }
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav li a {
  display: inline-block;
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 0.5em 1em;
}

nav li a:hover {
  background: brown;
}

nav .nav-signup {
  padding: 0 1.5rem;
  background-color: transparent;
  border: 1px solid #ffffff;
  -webkit-transition: ease-in 0.25s all;
  transition: ease-in 0.25s all;
  font-size: 16px;
  color: white;
}

nav .nav-signup:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media (max-width: 480px) {
  nav .nav-signup {
    display: none;
  }
}

@media (max-width: 768px) {
  nav .nav-signup {
    display: none;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-left: 110px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

header .left-part {
  margin-top: 100px;
}

header .left-part h2 {
  font-size: 4rem;
  max-width: 700px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  header .left-part h2 {
    font-size: 4rem;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  header .left-part h2 {
    font-size: 3rem;
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  header .left-part h2 {
    font-size: 2.5rem;
  }
}

header .left-part p {
  font-size: 1.6rem;
  max-width: 700px;
  line-height: 3rem;
}

@media (max-width: 1024px) {
  header .left-part p {
    font-size: 2rem;
    line-height: 3rem;
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  header .left-part p {
    font-size: 1rem;
    line-height: 1.6rem;
    margin-right: 22px;
  }
}

@media (max-width: 768px) {
  header .left-part p {
    font-size: 1.5rem;
    max-width: 380px;
    line-height: 2.5rem;
  }
}

header .left-part .cta {
  margin-top: 40px;
  color: white;
  font-size: 18px;
  padding: 8px 25px;
  background-color: #66bb6a;
  border: none;
  border-radius: 5px;
  -webkit-transition: ease-in 0.25s all;
  transition: ease-in 0.25s all;
  -webkit-filter: drop-shadow(0px 13px 20px rgba(118, 196, 125, 0.411204));
          filter: drop-shadow(0px 13px 20px rgba(118, 196, 125, 0.411204));
}

header .left-part .cta:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media (max-width: 1024px) {
  header .left-part .cta {
    padding: 18px 45px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  header .left-part {
    display: inline-block;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  header .left-part {
    display: inline-block;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 20px;
  }
}

header .main-illustration {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 0px;
  top: 0px;
}

header .main-illustration img {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

@media (max-width: 1024px) {
  header .main-illustration img {
    height: 700px;
  }
}

@media (max-width: 768px) {
  header .main-illustration img {
    height: 550px;
  }
}

@media (max-width: 480px) {
  header .main-illustration img {
    display: none;
  }
}

@media (max-width: 1024px) {
  header {
    margin-left: 50px;
  }
}

@media (max-width: 768px) {
  header {
    margin-left: 30px;
  }
}

@media (max-width: 480px) {
  header {
    margin-left: 20px;
  }
}

.plantain {
  position: absolute;
  top: 590px;
}

@media (max-width: 768px) {
  .plantain {
    display: none;
  }
}

@media (max-width: 480px) {
  .plantain {
    display: none;
  }
}

.plantain img {
  height: 600px;
}

@media (max-width: 768px) {
  .plantain img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .plantain img {
    height: 250px;
  }
}

#new-opportunities {
  margin-top: 200px;
  text-align: center;
  font-size: 2rem;
}

#new-opportunities .about {
  line-height: 3rem;
  max-width: 40%;
  font-size: 1.6rem;
  margin: 0 auto;
}

@media (max-width: 480px) {
  #new-opportunities .about {
    margin-right: 22px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #new-opportunities {
    text-align: left;
    margin-top: 50px;
    margin-left: 22px;
  }
}

.benefit {
  margin-top: 100px;
}

.benefit .benefit-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .benefit .benefit-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 480px) {
  .benefit .benefit-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.benefit .benefit-card {
  color: #333;
  height: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 15%;
  margin: 0 36px;
  padding: 30px;
  padding-bottom: 12px;
  -webkit-box-shadow: -1px 13px 20px #f0f2f4;
          box-shadow: -1px 13px 20px #f0f2f4;
  border-radius: 5px;
}

.benefit .benefit-card .title {
  font-weight: bold;
  font-size: 1.2rem;
}

.benefit .benefit-card .body {
  line-height: 1.5rem;
}

.benefit .benefit-card .icon {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefit .benefit-card:nth-child(2) {
  background-color: #66bb6a;
  color: #f2f2f2;
}

@media (max-width: 768px) {
  .benefit .benefit-card {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .benefit .benefit-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

hr {
  margin: 90px 100px;
}

@media (max-width: 480px) {
  hr {
    margin: 10px 70px;
  }
}

.invest {
  margin-left: 192px;
}

.invest h2 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Chivo", sans-serif;
}

.invest p {
  max-width: 800px;
  line-height: 3rem;
  font-size: 1.6rem;
}

@media (max-width: 480px) {
  .invest {
    margin-left: 20px;
  }
}

.terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  margin-left: 192px;
  margin-top: 66px;
}

.terms .term {
  padding: 30px 60px;
  margin-right: 40px;
  width: 30%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(97, 118, 127, 0.0001)), to(#324148)), url("./images/short.png");
  background-image: linear-gradient(180deg, rgba(97, 118, 127, 0.0001) 0%, #324148 100%), url("./images/short.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.terms .term:last-child {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(97, 118, 127, 0.0001)), to(#324148)), url("./images/long.png");
  background-image: linear-gradient(180deg, rgba(97, 118, 127, 0.0001) 0%, #324148 100%), url("./images/long.png");
  -o-object-fit: contain;
     object-fit: contain;
  background-position: center;
}

@media (max-width: 480px) {
  .terms .term {
    width: 95%;
    margin-top: 50px;
    margin-right: 20px;
  }
}

.terms .term .perk {
  color: #66bb6a;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "Chivo", sans-serif;
  letter-spacing: 3px;
}

.terms .term .underline {
  height: 5px;
  width: 20%;
  background-color: white;
}

.terms .term h3 {
  font-size: 2rem;
  max-width: 50%;
  line-height: 3rem;
}

.terms .term .invest-message {
  max-width: 60%;
  font-size: 1.2rem;
  color: #e2efd2;
  line-height: 2rem;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .terms .term .invest-message {
    max-width: 100%;
  }
}

.terms .term button {
  color: #66bb6a;
  font-size: 1.2rem;
  padding: 15px 30px;
  border: none;
  background-color: white;
  border-radius: 5px;
}

.terms .term button:focus {
  outline: none;
}

@media (max-width: 480px) {
  .terms {
    margin-left: 20px;
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works {
  color: white;
  text-align: center;
  background-color: #66bb6a;
  width: auto;
  margin: 192px;
  padding-top: 106px;
}

@media (max-width: 480px) {
  .works {
    margin: 0;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
    padding-top: 10px;
  }
}

.works h1 {
  font-size: 1.5rem;
}

.works .instruction {
  margin: 0 auto;
  max-width: 50%;
  line-height: 2rem;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .works .instruction {
    margin: 0;
    max-width: 70%;
  }
}

.works .boxx {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .works .boxx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

.works .boxx .black {
  border-radius: 50%;
  padding: 30px;
  font-size: 1.2rem;
  color: #cacaca;
  border: 2px solid white;
}

@media (max-width: 480px) {
  .works .boxx .black {
    margin: 30px;
  }
}

.works .boxx .black:first-child {
  background-color: white;
  color: #66bb6a;
}

.works .boxx hr {
  width: 100%;
  margin: 0;
  color: white;
}

@media (max-width: 480px) {
  .works .boxx hr {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 40px;
    color: white;
  }
}

.works .bottom-text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}

@media (max-width: 480px) {
  .works .bottom-text-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.works .bottom-text-row h5 {
  max-width: 15%;
  text-align: left;
  font-size: 1.3rem;
  line-height: 2rem;
  margin-top: 50px;
}

@media (max-width: 480px) {
  .works .bottom-text-row h5 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

.works .bottom-text-row p {
  margin-top: 50px;
  text-align: left;
  max-width: 30%;
  line-height: 1.5rem;
  font-size: 1.1rem;
  color: white;
  margin-left: 40px;
}

@media (max-width: 480px) {
  .works .bottom-text-row p {
    margin-left: 0;
    max-width: 80%;
    text-align: center;
    margin-top: 20px;
  }
}

.comments .row {
  margin-left: 192px;
}

.comments .row h2 {
  position: relative;
  top: 110px;
  max-width: 300px;
  line-height: 45px;
}

@media (max-width: 480px) {
  .comments .row {
    margin-left: 30px;
  }
}

.testimonial .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 100px 192px 0 192px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonial .container .test-card {
  width: 400px;
  -webkit-box-shadow: -1px 13px 20px #f0f2f4;
          box-shadow: -1px 13px 20px #f0f2f4;
  padding: 30px;
  border-radius: 5px;
}

.testimonial .container .test-card .identity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
}

.testimonial .container .test-card .identity img {
  height: 80px;
  width: 80px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #324148;
  border-radius: 50%;
}

.testimonial .container .test-card .identity .name {
  color: green;
}

.testimonial .container .test-card .identity h4 {
  margin: 0px;
  width: 100%;
}

.testimonial .container .test-card .testimony {
  line-height: 1.5rem;
}

@media (max-width: 480px) {
  .testimonial .container {
    margin: 0;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonial .container .test-card {
    width: auto;
    height: auto;
    margin: 10px;
  }
}

.future {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.future .card {
  margin-top: 200px;
  background-color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 77px 226px;
  text-align: center;
  -webkit-box-shadow: -1px 25px 20px #f2f2f2;
          box-shadow: -1px 25px 20px #f2f2f2;
  border-radius: 5px;
}

.future .card b {
  color: #66bb6a;
}

.future .card .cta {
  -webkit-filter: drop-shadow(0px 13px 20px rgba(118, 196, 125, 0.411204));
          filter: drop-shadow(0px 13px 20px rgba(118, 196, 125, 0.411204));
  color: white;
  font-size: 18px;
  padding: 8px 25px;
  background-color: #66bb6a;
  border: none;
  border-radius: 5px;
  -webkit-transition: ease-in 0.25s all;
  transition: ease-in 0.25s all;
}

.future .card .cta:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media (max-width: 480px) {
  .future .card {
    margin-top: 100px;
    padding: 50px;
  }
}

.shortcuts .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.shortcuts .row .company {
  margin: 0 100px;
}

.shortcuts .row .invest-col {
  margin: 0 100px;
}

.shortcuts .row .legal {
  margin: 0 100px;
}

@media (max-width: 480px) {
  .shortcuts .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shortcuts .company {
    margin: 0;
  }
  .shortcuts .invest-col {
    margin: 0;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer a {
  text-decoration: none;
}
/*# sourceMappingURL=styles.css.map */