@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

html {
  scroll-behavior: smooth;
}

:root {
    --white: #FFFFFF;
    --primaryGreen: #29A745;
    --deepGreen: #39693B;
    --fillGreen: #BADEBE;
    --tonedGreen: #D5E8D0;
    --black: #101828;
    --gray: #475467;
}

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

.active {
  color: var(--primaryGreen);
  font-style: bold;
}

ul {
  list-style: none;
}

ul > li > a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s ease;
}

ul > li > a:hover {
  transform: translateY(-3px);
}

/* ============ HEADER STARTS============== */

header {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url(/assets/img/misc/grid_pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  padding: 30px 0;
}

.branding-and-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logo {
  margin-right: 20px;
}

.branding-and-links > ul {
  display: flex;
  flex-direction: row;
}

.branding-and-links > ul > li > a {
  padding-left: 20px;
  padding-right: 20px;
  color: var(--gray);
}

.branding-and-links > ul > li > a:hover {
  color: var(--primaryGreen);
}

.actionButtons > .primary {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background-color: var(--primaryGreen);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.actionButtons > .primary:hover {
  background-color: var(--deepGreen);
  transform: translateY(-3px);
}

.actionButtons > .secondary {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background-color: var(--white);
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.actionButtons > .secondary:hover {
  background-color: var(--primaryGreen);
  color: var(--white);
  transform: translateY(-3px);
}

header > .hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  flex: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header > .hero > .column1Hero > .notification {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--primaryGreen);
  border-radius: 16px;
  padding: 4px 10px 4px 4px;
  width: fit-content;
}

header > .hero > .column1Hero > .notification > .new {
  border: 1px solid var(--primaryGreen);
  border-radius: 16px;
  padding: 2px 10px;
  margin-right: 10px;
}

header > .hero > .column1Hero > .notification > .new:hover {
  background-color: var(--primaryGreen);
  color: var(--white);
}

header > .hero > .column1Hero > .notification > .new > small {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--deepGreen);
  transition: all 0.3s ease;
}

header > .hero > .column1Hero > .notification > .new > small:hover {
  color: var(--white);
  transform: translateY(-3px);
}

header > .hero > .column1Hero > .notification > .note {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header > .hero > .column1Hero > .notification > .note > small {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--deepGreen);
  margin-right: 6px;
}

header > .hero > .column1Hero > .notification > .note > svg {
  color: var(--deepGreen);
}

header > .hero > img {
  width: 40%;
  height: auto;
}

header > .hero > .column1Hero > article {
  display: block;
  margin-bottom: 48px;
}

header > .hero > .column1Hero > article > h1 {
  font-family: "Space Mono", monospace;
  font-weight: 900;
  font-style: normal;
  font-size: 58px;
  line-height: 72px;
  word-spacing: 2%;
  margin-top: 16px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--deepGreen), var(--black));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 100%; }
}

header > .hero > .column1Hero > article > p {
  font-family: "Space Mono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: var(--gray);
  width: 90%;
}

header > .hero > .column1Hero > article > p span {
  font-weight: bold;
}

header > .hero > .column1Hero > .appDownload {
  display: flex;
  flex-direction: row;
  width: 50%;
}

header > .hero > .column1Hero > .appDownload > a {
  margin-right: 12px;
}

header > .hero > .column1Hero > .appDownload > a > img {
  width: 100%;
}

/* ============ HEADER ENDS============== */




/* ============ MAIN STARTS ============== */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* All sections are under main. Check the HTML structure*/
/* ============ SECTION FEATURES STARTS============== */
.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  max-width: 1440px;
  width: 100%;
  height: 100%;
}

.features > .featuresDetails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.headingFeatures {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.headingFeatures > small {
  font-family: "Space Mono", monospace;
  font-weight: 600;
  font-size: 16px;
  color: var(--gray);
  font-style: normal;
  margin-bottom: 12px;
}

.headingFeatures > h3 {
  font-family: "Space Mono", monospace;
  font-size: 36px;
  color: var(--black);
  font-style: normal;
  margin-bottom: 20px;
}

.headingFeatures > p {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: var(--gray);
  font-style: normal;
  max-width: 800px;
  line-height: 30px;
  text-align: center;
}

.featuresDetails > img {
  margin: auto 96px;
}

.singleFeatureDetails {
  margin-bottom: 48px;
}

.singleFeatureDetails > .iconContainer {
  padding: 10px;
  background-color: var(--tonedGreen);
  border-radius: 100%;
  border: 10px solid var(--fillGreen);
  width: fit-content;
  margin-bottom: 20px;
}

.singleFeatureDetails > h5 {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: var(--black);
  font-style: normal;
  margin-bottom: 8px;
}

.singleFeatureDetails > p {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray);
  font-style: normal;
}
/* ============ SECTION FEATURES ENDS============== */

/* ============ SECTION COMMUNITY STARTS============== */
.community,
.launch {
  padding-top: 96px;
  padding-bottom: 96px;
  max-width: 1440px;
  width: 100%;
}

.communityContainer {
  background: linear-gradient(135deg, var(--deepGreen), var(--primaryGreen));
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.communityContent {
  margin-left: 64px;
}

.communityContent > .communityContentHeading {
  margin-bottom: 48px;
}

.communityContent > .communityContentHeading > h3 {
  font-family: "Space Mono", monospace;
  font-size: 36px;
  color: var(--white);
  font-style: normal;
  margin-bottom: 20px;
}

.communityContent > .communityContentHeading > p {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: var(--tonedGreen);
  font-style: normal;
}

.communityContent > .appDownload {
  display: flex;
  flex-direction: row;
}

.communityContent > .appDownload > a {
  margin-right: 12px;
}
/* ============ SECTION COMMUNITY ENDS============== */

/* ============ SECTION LAUNCH FORM STARTS============== */
.launchContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.launchContent {
  width: fit-content;
}

.launchContentHeading {
  margin-bottom: 48px;
}

.launchContentHeading > h2 {
  font-family: "Space Mono", monospace;
  font-size: 48px;
  line-height: 60px;
  font-style: normal;
  margin-bottom: 24px;
}

.launchContentHeading > p {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: var(--gray);
  font-style: normal;
}

.form-input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 6px;
}

.form-input button {
  background-color: var(--primaryGreen);
  border-radius: 8px;
  border: none;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-input button:hover {
  background-color: var(--deepGreen);
}

input {
  padding: 15px 15px;
  border-radius: 8px;
  border: 1px solid var(--primaryGreen);
  margin-right: 16px;
  width: 100%;
  background-color: transparent;
}

::-webkit-input-placeholder {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: var(--gray);
  font-style: normal;
}

form small {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  color: var(--gray);
  font-style: normal;
}

form small a {
  color: var(--gray);
  font-weight: 600;
}
/* ============ SECTION LAUNCH FORM ENDS============== */
/* ============ MAIN ENDS============== */


/* ============ FOOTER STARTS ============== */
footer {
  background-color: var(--deepGreen);
  padding-top: 64px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerHeading {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerHeading article {
  margin: 48px;
}

.footerHeading article > h4 {
  font-family: "Space Mono", monospace;
  color: var(--white);
  font-style: normal;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 16px;
  text-align: center;
}

.footerHeading article > p {
  font-family: "Space Mono", monospace;
  color: var(--fillGreen);
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
  text-align: center;
}

.footerButtons {
  display: flex;
  flex-direction: row;
}

.footerButtons .demoVideo {
  background-color: var(--white);
  border-radius: 8px;
  border: none;
  padding: 12px 18px;
  color: var(--gray);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-right: 12px;
}

.footerButtons .demoVideo:hover,
.footerButtons > .getStarted:hover {
  transform: translateY(-3px);
}

.footerButtons > .demoVideo img {
  margin-right: 5px;
}

.footerButtons > .getStarted {
  background-color: var(--primaryGreen);
  border-radius: 8px;
  border: none;
  padding: 12px 18px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-right: 12px;
}

hr {
  width: 80%;
  border: 1px solid var(--primaryGreen);
  opacity: .5;
}

.footerContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footerBrandingAndLinks > img,
.footerBrandingAndLinks > p  {
  margin-bottom: 32px;
}

.footerBrandingAndLinks > p {
  font-family: "Space Mono", monospace;
  color: var(--fillGreen);
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

.footerBrandingAndLinks > ul {
  display: flex;
}

.footerBrandingAndLinks > ul li {
  margin-right: 20px;
}

.footerBrandingAndLinks > ul > li a {
  color: var(--white);
}

.footerBrandingAndLinks > ul > li a:hover {
  color: var(--primaryGreen);
}

.footerGetTheApp > p {
  font-family: "Space Mono", monospace;
  color: var(--white);
  font-style: normal;
  font-size: 16px;
  margin-bottom: 10px;
}

.footerGetTheApp > ul li {
  margin-bottom: 4px;
}

.footerBottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.footerBottom > ul {
  display: flex;
  flex-direction: row;
}

.footerBottom > ul li {
  margin-right: 20px;
}

.footerBottom > ul > li > a > img {
  padding: 10px;
  border-radius: 4px;
}

.footerBottom > ul > li > a > img:hover {
  background-color: var(--primaryGreen);
}

.footerBottom > .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyrightSymbol {
  color: var(--fillGreen);
  font-size: 16px;
  margin-right: 3px;
}

.copyright > .yearReserved {
  font-family: "Space Mono", monospace;
  color: var(--fillGreen);
  font-style: normal;
}
/* ============ FOOTER ENDS ============== */



/* ============ MEDIA QUERY STARTS============== */

/* Tablet */
@media (max-width: 1024px) {
/* ==== HEADER ======= */
  header {
    padding-left: 20px;
    padding-right: 20px;
  }

  header > .hero > .column1Hero > article > h1 {
    font-size: 43px;
    line-height: 54px;
  }

  /* ==== MAIN > SECTIONS ======= */
  main {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ==== SECTION FEATURES ======= */
  main > section > .featuresDetails {
    display: flex;
    flex-direction: column !important;
  }

  .featuresDetails > img {
        margin-bottom: 50px;
        width: 50%;
    }

  main > section > .featuresDetails > .mainFeatureDetails {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  main > section > .featuresDetails > .mainFeatureDetails > .singleFeatureDetails {
    width: 45%;
  }

  /* ==== SECTION COMMUNITY ======= */
  main > .community {
    padding-top: 0%;
  }

  main > section > .communityContainer > .communityImagePrimary {
    width: 50%;
  }

  /* ==== SECTION LAUNCH ======= */
  main > section > .launchContainer {
    flex-direction: column;
  }

  main > section > .launchContainer > .launchContent {
    margin-bottom: 50px;
  }

  /* ==== FOOTER ======= */
  footer {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  hr {
    width: 100%;
  }

  footer > .footerContent {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer > .footerContent > .footerBrandingAndLinks {
    width: 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
    /* ==== HEADER NAV ======= */
  .branding-and-links > ul {
    display: none;
  }

  .actionButtons {
    display: none;
  }

  .mobileMenuIcon {
    display: block !important;
  }

  .mobileScreenMenu {
    display: block !important;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--deepGreen);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    padding-top: 50px;
  }

  .mobileScreenMenu > .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 46px;
    margin-left: 50px;
    text-decoration: none;
    color: var(--white);
  }

  .mobileScreenMenu > ul {
    margin-bottom: 48px;
    margin-left: 24px;
  }

  .mobileScreenMenu > ul > li {
    margin-bottom: 24px;
  }

  .mobileScreenMenu > ul > li a {
    color: var(--white);
    margin-bottom: 12px;
    font-weight: normal;
    font-size: 20px;
  }

  .mobileScreenMenu > ul > li a:hover {
    color: var(--primaryGreen);
  }

  .mobileScreenMenu > .MenuActionButtons {
    margin-left: 12px;
    margin-right: 12px;
  }

  .mobileScreenMenu > .MenuActionButtons .primary {
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    border: none;
    background-color: var(--primaryGreen);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobileScreenMenu > .MenuActionButtons .primary:hover {
    background-color: var(--white);
    color: var(--primaryGreen);
    transform: translateY(-3px);
  }

  .mobileScreenMenu > .MenuActionButtons .secondary {
    padding: 14px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobileScreenMenu > .MenuActionButtons .secondary:hover {
    background-color: var(--white);
    color: var(--primaryGreen);
    transform: translateY(-3px);
  }

  header > .hero > .column1Hero > article > h1 {
    font-size: 30px;
    line-height: 44px;
  }

  header > .hero > .column1Hero > article > p {
    font-size: 18px;
    line-height: 28px;
  }

  header > .hero > .column1Hero > .notification > .new > small,
  header > .hero > .column1Hero > .notification > .note > small {
    font-size: 12px;
  }

  .headingFeatures > small {
    font-size: 14px;
  }

  .headingFeatures > h3 {
    font-size: 30px;
  }

  .headingFeatures > p {
    font-size: 18px;
    line-height: 28px;
  }

  .singleFeatureDetails > h5 {
    font-size: 18px;
    line-height: 28px;
  }

  .singleFeatureDetails > p  {
    font-size: 18px;
    line-height: 28px;
  }

  /* COMMUNITY SECTION */
  .communityContent > .communityContentHeading > h3,
  .launchContentHeading > h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .communityContent > .communityContentHeading > p,
  .launchContentHeading > p {
    font-size: 18px;
    line-height: 28px;
  }

  .communityContent {
    margin-right: 20px;
    margin-left: 30px;
    margin-top: 20px;
  }

  .communityContent > .communityContentHeading  {
    margin-bottom: 24px;
  }
  

  /* ==== FOOTER ======= */
    footer > .footerContent {
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    footer > .footerContent > .footerBrandingAndLinks {
    width: 100%;
  }

    footer > .footerContent > .footerGetTheApp {
        margin-top: 48px;
    }

    footer > .footerContent > .footerGetTheApp > ul {
        display: flex;
    }

    footer > .footerContent > .footerGetTheApp > ul li {
        margin-right: 12px;
    }


  footer > .footerBottom {
    flex-direction: column;
    justify-content: left;
    align-items: start;
  }

  .footerHeading article > h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .footerHeading article > p,
  .footerBrandingAndLinks > ul > li a {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Extra small (optional) */
@media (max-width: 480px) {
  header > .hero {
    flex-direction: column;
  }

  header {
    height: 100%;
  }

  nav {
    margin-bottom: 30px;
  }

  header > .hero > .webHeroImage {
    display: none;
  }

  header > .hero > .mobileHeroImage {
    display: block !important;
    width: 100%;
    margin-top: 54px;
  }

  header > .hero > .column1Hero > article {
    margin-bottom: 32px;
  }

  header > .hero > .column1Hero > article > h1 {
    margin-bottom: 16px;
  }

  header > .hero > .column1Hero > .appDownload {
    width: 80%;
  }

  /* FEATURES */
  .headingFeatures {
    align-items: last baseline;
  }

  .headingFeatures > small,
  .headingFeatures > h3,
  .headingFeatures > p,
  .singleFeatureDetails > h5,
  .singleFeatureDetails > p {
    text-align: left;
  }

  .mainFeatureDetails {
    display: flex;
    flex-direction: column;
  }

  .webFeatureImage {
    display: none;
  }

   .mobileFeatureImage {
    display: block !important;
    width: 100%;
  }

  main > section > .featuresDetails > .mainFeatureDetails > .singleFeatureDetails {
    width: 100%;
  }

  .featuresDetails > img {
    width: 100%;
  }

  /* COMMUNITY */
  .communityContainer {
    flex-direction: column;
  }

  .communityImagePrimary {
    display: none;
  }

  .communityImageSecondary {
    display: block !important;
    width: 100%;
  }

  .communityContent {
    margin-bottom: 48px;
    margin-top: 40px;
  } 

  .form-input {
    flex-direction: column;
  }

  .form-input button {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 12px;
  }

  .launchImagePrimary {
    display: none;
  }

  .launchImageSecondary {
    display: block !important;
    width: 100%;
  }

  /* LAUNCH */
  .launch {
    padding-bottom: 0;
  }

  /* FOOTER */
  .footerBrandingAndLinks > ul {
    flex-wrap: wrap;
  }

  .footerBrandingAndLinks > ul > li {
    margin-bottom: 18px;
  }
}

/* ============ MEDIA QUERY ENDS============== */