/* 

Global Styles


*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-family: 'Fraunces',
    serif;
}

p {
  line-height: 1.6;
  font-size: 18px;
}

p,
a {
  font-family: 'Manrope',
    sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}



/* 



Header Hero



*/

#hero {
  background-color: #24053E;
  background-image: url(./img/big-circles.svg),
    url(./img/small-circles.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: -8vw 9vh, 93vw 30vh;
  height: 500px;
  width: 100%;
  color: white;
  z-index: 1;
  position: relative;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
}

.nav-link a {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.green-underline {
  background-color: #44FFA1;
  width: 100%;
  height: 3px;
  margin-top: 3px;
}

.hero-heading {
  text-align: center;
  margin-top: 7rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 34px;
  font-weight: 300;
  width: 40%;
  line-height: 1;
}

.underline-txt {
  text-decoration: underline;
  text-decoration-color: #44FFA1;
}

.header-btn {
  display: block;
  margin: 2rem auto;
  background-color: #44FFA1;
  color: #24053E;
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all .2s ease-in;
}

.header-btn:hover {
  background-color: #24053E;
  color: #44FFA1;
  border: 1px solid #44FFA1;
}

.hero-img {
  display: block;
  z-index: 2;
  position: absolute;
  width: 600px;
  top: 95%;
  left: 35%;
}

.hero-wave {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(281% + 1.3px);
  height: 200px;
}

.hero-wave .shape-fill {
  fill: #24053E;
}

/* 






Features






*/

#features {
  background-color: #fcf8ff;
  padding-bottom: 9rem;
  position: relative;
}


.flex-features {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 25rem;
  z-index: 3;
}

.feature {
  padding-left: 2rem;
  padding-right: 2rem;
}

.feature-number {
  width: 40px;
  height: 40px;
  border: 1px solid #24053E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}

.feature h3 {
  margin: 2rem 0rem
}

.founder-wave {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.founder-wave svg {
  position: relative;
  display: block;
  width: calc(281% + 1.3px);
  height: 200px;
}

.founder-wave .shape-fill {
  fill: #fcf8ff;
}


/* 






Founder Area






*/

#founder {
  margin-bottom: 10rem;
}


.founder-container {
  margin-top: 23rem;
  position: relative;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img {
  width: 450px;
  display: block;
  position: absolute;
  bottom: 12%;
  left: 10%;
  margin-top: 10rem;
  z-index: -1;
}

.test-info {
  background-color: #24053E;
  color: white;
  width: 730px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 4rem;
  margin-left: 20rem;
  position: relative;
}

.test-info h2 {
  font-size: 50px;
  font-weight: 300;
  padding-bottom: 2rem;
}


.test-info p {
  padding-bottom: 2rem;
}


.founder-btn {
  display: block;
  background-color: #44FFA1;
  color: #24053E;
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 200px;
  height: 60px;
  transition: all .2s ease-in-out;
}

.founder-btn:hover {
  background-color: #24053E;
  color: #44FFA1;
  border: 1px solid #44FFA1;
}

.founder-circles {
  display: block;
  position: absolute;
  z-index: 3;
  bottom: -23%;
  left: 65%;
}

/* 



Footer


*/

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-social-logos {
  padding: 2.5rem;

}

.footer-social-logos img {
  padding: 0 .7rem;
  cursor: pointer;
}

/*




Media Queries





*/


@media screen and (max-width: 1180px) {
  #hero {
    height: 500px;
    background-position: -22vw 9vh, 92vw 25vh;
  }

  .hero-heading {
    font-size: 34px;
    width: 50%;
  }

  .hero-img {
    width: 500px;
    top: 95%;
    left: 17%;
  }

  .hero-wave svg {
    height: 100px;
  }

  .founder-wave {
    position: absolute;
    top: 97%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .founder-img {
    width: 265px;
    bottom: 55%;
    left: 10%;
    margin-top: 10rem;
  }

  .test-info {
    background-image: none;
    color: white;
    width: 514px;
    height: 350px;
    margin-left: 8rem;
  }

}

@media screen and (max-width: 915px) {

  #hero {

    background-image: none;
  }

  .hero-heading {
    font-size: 34px;
    width: 80%;
  }

  .flex-features {
    flex-direction: column;
    padding-top: 18rem;
  }

  .founder-container {
    margin-top: 0rem;
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .founder-img {
    width: 280px;
    display: block;
    position: static;
  }

  .test-info {
    width: 100%;
    height: 460px;
    display: flex;
    padding: 2rem 1rem;
    margin-left: 0rem;
    margin-top: -3.2rem;
    text-align: center;
  }

  .test-info h2 {
    font-size: 32px;
  }

  .founder-btn {
    padding: 1rem 2rem;
    margin: 0 auto;
    width: 200px;
    height: 60px;
    transition: all .2s ease-in-out;
  }

  .founder-circles {
    display: none;
  }
}


@media screen and (max-width: 745px) {



  .hero-heading {
    font-size: 38px;
    width: 100%;
  }

  .hero-img {
    width: 400px;
  }


  .hero-wave svg {
    height: 80px;
  }


  .feature {
    padding: 1rem;
  }

  .founder-wave svg {
    height: 150px;
  }

}




@media screen and (max-width: 480px) {

  #hero {
    height: 470px;
    background-image: none;
  }

  .hero-heading {
    margin-top: 5rem;
    font-size: 24px;
    width: 100%;
  }

  .hero-img {
    width: 280px;
    top: 90%;
    left: 15%;
  }

  .hero-wave svg {
    position: relative;
    display: block;
    width: calc(281% + 1.3px);
    height: 60px;
  }

  .founder-wave svg {
    height: 190px;
  }

}

@media screen and (max-width: 320px) {

  #hero {
    height: 450px;
  }


  .hero-heading {
    font-size: 21px;
  }


  .hero-img {
    width: 260px;
  }

  .hero-wave svg {
    height: 60px;
  }

}

@media screen and (max-width: 280px) {


  .hero-img {
    width: 230px;
  }

}