@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  /* Colors */
  --dark-gray: #181818;
  --medium-gray: #858585;
  --light-gray: #E6E6E6;
  --white: #ffffff;
  --light-green: #91e6b3;
  --medium-green: #c8ffde;
  --green: #108a00;
  --light-purple: #F1CCFF;
  --dark-green: #0c5c00;
  /* Typography */
  --font: "Poppins", sans-serif;
  /* Others */
  --border-radius: 8px;
}

* {
  font-family: var(--font);
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  color: var(--dark-gray);
}

ol {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

ul {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

li {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}
li::marker {
  color: var(--dark-gray);
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -1px;
  text-align: center;
}

h6 {
  font-size: 26px;
}

h5 {
  font-size: 28px;
}

h4 {
  font-size: 30px;
}

h3 {
  font-size: 32px;
}

h2 {
  font-size: 34px;
}

h1 {
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  h6 {
    font-size: 22px;
  }
  h5 {
    font-size: 24px;
  }
  h4 {
    font-size: 26px;
  }
  h3 {
    font-size: 28px;
  }
  h2 {
    font-size: 30px;
  }
  h1 {
    font-size: 32px;
  }
}
p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 18px;
  }
}

section {
  scroll-margin-top: 90px;
}

.text-highlight {
  color: var(--green);
}

main {
  width: 100%;
  margin: 150px auto 0 auto;
  padding: 0;
}
main em {
  font-style: italic;
}
main strong {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  main {
    margin: 0 auto;
  }
}
main hr.separator {
  border: 1px solid var(--light-gray);
  opacity: 100%;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main hr.separator {
    width: 90%;
  }
}

button {
  outline: none;
}

a {
  text-decoration: none;
  line-height: 1.7;
  font-weight: 600;
  transition: 300ms;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  transition: 300ms;
}
a.text-link {
  color: var(--green);
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
a.text-link:hover {
  color: var(--dark-gray);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  a.text-link {
    font-size: 18px;
  }
}
a.cta {
  display: block;
  width: fit-content;
  background-color: var(--green);
  color: var(--white);
  font-size: 20px;
  padding: 8px 24px;
  border-radius: var(--border-radius);
  border: 4px solid var(--green);
}
a.cta:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  border: 4px solid var(--dark-gray);
}
a.cta i {
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  a.cta {
    font-size: 18px;
  }
}
a.secondary-cta {
  display: block;
  width: fit-content;
  background-color: var(--white);
  color: var(--green);
  font-size: 20px;
  padding: 8px 24px;
  border-radius: var(--border-radius);
  border: 4px solid var(--green);
}
a.secondary-cta:hover {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  border: 4px solid var(--dark-gray);
}
a.secondary-cta i {
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  a.secondary-cta {
    font-size: 18px;
  }
}
a.small-cta {
  display: block;
  width: fit-content;
  background-color: var(--green);
  color: var(--white);
  font-size: 16px;
  padding: 5px 12px;
  border-radius: 5px;
  border: 4px solid var(--green);
}
a.small-cta:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  border: 4px solid var(--dark-gray);
}
a.small-cta i {
  padding-left: 5px;
}
a.small-secondary-cta {
  display: block;
  width: fit-content;
  background-color: var(--white);
  color: var(--green);
  font-size: 16px;
  padding: 5px 12px;
  border-radius: var(--border-radius);
  border: 4px solid var(--green);
}
a.small-secondary-cta:hover {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  border: 4px solid var(--dark-gray);
}
a.small-secondary-cta i {
  padding-left: 5px;
}

/* Nav */
#my-header {
  margin-bottom: 51px;
}
#my-header nav {
  padding: 10px 20px;
  margin-bottom: 40px;
  background-color: var(--white);
  width: 100%;
  z-index: 99;
  box-shadow: 0px 2px 24px -9px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 24px -9px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 24px -9px rgba(0, 0, 0, 0.25);
}
#my-header nav button {
  outline: none;
  border: 0;
  box-shadow: none;
}
#my-header nav button .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  font-family: "Font Awesome 6 Free";
  content: "\f0c9";
  transition: 300ms;
}
#my-header nav button .navbar-toggler-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23842EA3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: 300ms;
}
#my-header nav .navbar-brand {
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark-gray);
}
#my-header nav .navbar-nav {
  --bs-navbar-nav-link-padding-x: 0.7rem;
}
@media screen and (max-width: 990px) {
  #my-header nav .navbar-nav {
    height: 100vh;
    margin-top: 50px;
  }
}
#my-header nav .navbar-nav a {
  font-weight: 700;
  font-size: 17px;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--green);
  transition: 300ms;
}
#my-header nav .navbar-nav a:hover {
  color: var(--dark-gray);
  transition: 300ms;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
#my-header nav .navbar-nav a.disabled {
  color: var(--dark-gray);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
#my-header nav .navbar-nav a.disabled:hover {
  color: var(--dark-gray);
  cursor: default;
}
@media screen and (max-width: 990px) {
  #my-header nav .navbar-nav a {
    text-align: center;
    font-size: 18px;
    margin: 20px auto;
    padding: 0;
  }
  #my-header nav .navbar-nav a:last-child {
    border-bottom: 0;
  }
}
#my-header nav .navbar-nav a.cta-nav {
  display: block;
  width: fit-content;
  text-decoration: none;
  background-color: var(--green);
  color: var(--white);
  font-size: 16px;
  padding: 5px 12px;
  border-radius: var(--border-radius);
  border: 4px solid var(--green);
  margin: 0 0 0 15px;
}
#my-header nav .navbar-nav a.cta-nav:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  border: 4px solid var(--dark-gray);
}
@media screen and (max-width: 990px) {
  #my-header nav .navbar-nav a.cta-nav {
    margin: 20px auto;
  }
}

/* Containers */
section.container90 {
  width: 90%;
  margin: 130px auto 70px auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: stretch;
}
@media screen and (max-width: 1366px) {
  section.container90 {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  section.container90 {
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
    gap: 50px;
  }
}

/* Back to top button */
#backButton {
  display: none;
  position: fixed;
  z-index: 98;
  padding: 0px;
  background-color: none;
  background: none;
  bottom: 20px;
  right: 30px;
  border: none;
  outline: none;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
}
#backButton i {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  font-size: 20px;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--green);
  color: var(--white);
  border: 3px solid var(--green);
  border-radius: 50px;
}
#backButton i:hover {
  background-color: var(--white);
  color: var(--green);
  transition: 300ms;
}

/* Footer */
footer {
  width: 100%;
  color: var(--white);
  margin: 100px auto 0 auto;
  padding: 10px 110px;
  background-color: var(--dark-gray);
}
footer p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0;
}
footer .footer-soc {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
footer .footer-soc .social-footer {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
}
footer .footer-soc .social-footer a {
  color: var(--light-green);
  font-size: 26px;
}
footer .footer-soc .social-footer a:hover {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  footer {
    padding: 10px 20px;
  }
  footer p {
    text-align: center;
  }
  footer .footer-soc {
    flex-flow: column wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */