@charset "utf-8";

*
{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

:root
{
  --green: #548a44;
  --light-grey-green: #f3f8f2;
  --very-light-grey: #f2f2f2;
  --dark-green: #34771f;
  --very-dark-green: rgb(23, 64, 10);
  --very-light-green-bg: #ecf2ea;
  --dark-red: rgb(122, 6, 23);
  --very-dark-red: rgb(147, 2, 22);
  --white: #e9e9e9;
}

::-webkit-scrollbar
{
  display: none;
}

html,
body
{
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  width: 100%;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a
{
  color: inherit;
  text-decoration: none;
}

img
{
  vertical-align: middle;
}

.image
{
  max-width: 100%;
  height: auto;
}

.container
{
  max-width: 480px;
  /* outline: 1px solid; */
}

.container-fluid,
.container
{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before
{
  display: table;
  content: " ";
  clear: both;
}

/* Header */

header
{
  background: var(--green);
  display: block;
}

button[type=button]
{
  background-color: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}


#header-container
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  padding-top: 7px;
  padding-bottom: 7px;
}

#logo img {
  filter: grayscale(100%) brightness(200);
}

.menu-container
{
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#acct a.login
{
  background-color: var(--dark-green);
  padding: 5px 14px;
  margin: 5px 0;
  border-radius: 6px;
}

#acct a.signup
{
  background-color: var(--dark-red);
  padding: 5px 14px;
  margin: 5px 0;
  border-radius: 6px;
  display: none;
}

#acct a.login:hover
{
  background-color: var(--very-dark-green);
}

#acct a.signup:hover
{
  background-color: var(--very-dark-red);
}

#navbar
{
  display: none;
}

.menu-item
{
  padding: 8px;
  margin: 4px 0;
}

.menu-item:hover
{
  background-color: var(--dark-green);
  border-radius: 10px;
}

.dropdown a:hover {
  font-weight: bold;
}

.navlink
{
  display: flex;
  align-items: center;
  width: 100%;
}

.navlink a
{
  margin-right: auto;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.navlink i.fa
{
  font-size: 1.2rem;
  cursor: pointer;
}

.dropdown
{
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
}

.dropdown a
{
  display: block;
  padding: 5px;
  font-size: 1.1rem;
}

#login a:hover
{
  font-weight: 500;
  border-bottom-style: 5px solid white;
}

.fa-angle-down:hover
{
  font-weight: 900;
}

.clearfix
{
  content: "";
  display: table;
  clear: both;
}

main
{
  display: block;
}

.main-container
{
  background-color: var(--very-light-green-bg);
  padding-top: 2rem;
  margin-bottom: 1rem;
}

h1
{
  font-size: 30px;
  font-weight: normal;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#main-content-container
{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  row-gap: 10px;
}

.hero-area-container
{
  display: grid;
  row-gap: 10px;
}

.hero-item p
{
  margin: 8px 0;
}

.hero-img-container
{
  text-align: center;
}

.hero-btn
{
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
}

.hero-btn a
{
  display: block;
  padding: 7px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.hero-btn a.signup
{
  color: var(--dark-green);
  border: 2px solid var(--green);
  background-color: #fff;
}

.hero-btn a.login
{
  background-color: var(--green);
}

.hero-btn a.login:hover
{
  background-color: var(--very-dark-green);
}

h2
{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.deserve-goal
{
  padding: 10px 0;
}

.deserve-box-items
{
  display: grid;
  row-gap: 15px;
  padding: 14px 0;
  text-align: center;
}

.deserve-para>p
{
  margin: 8px 0;
  font-weight: 700;
}

.deserve-para p a
{
  color: var(--green);
  font-weight: normal;
}

.deserve-para p a::after
{
  content: ">";
  vertical-align: middle;
}

.deserve-para p a:hover
{
  color: var(--very-dark-green);
}

h4 a
{
  color: var(--green);
}

.goal-container
{
  padding-top: 1rem;
}

.goal-box-items
{
  display: grid;
  row-gap: 35px;
  padding: 24px 0;
}

.goal-item-box
{
  display: grid;
  row-gap: 30px;
}

.goal-item-pg,
.goal-item-pg1
{
  order: 2;
  font-size: 1.1rem;
}

.pg-item-box>h4,
.pg-item-box>h3,
.pg-item-box>p
{
  margin: 10px 0 0;
  /* display: inline-block; */
}

.pg-item-box p.pg-link
{
  border: 1px solid var(--dark-green);
  padding: 6px 0;
  display: block;
  border-radius: 8px;
  text-align: center;
}

.pg-item-box p a
{
  color: var(--green);

}

#review-finra
{
  font-size: .8rem;
  font-weight: 600;
}

#review-finra a
{
  color: var(--green);
}

#review-finra a:hover
{
  color: var(--very-dark-green);
}

#review-finra p.cn
{
  text-align: center;
}

.why-choose
{
  background-color: var(--very-light-grey);
  margin: 1.5rem 0 0;
  padding: 3.5rem 0;
  text-align: center;
}

.why-choose h4
{
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}

.why-choose-container
{
  padding: 3rem 0 0;
  display: grid;
  row-gap: 40px;
}

.why-items
{
  display: grid;
  grid-template-columns: auto;
  row-gap: 10px;
}

.why-heading h5
{
  font-size: 1.1rem;
}

.why-icon
{
  background-color: rgba(208, 208, 208, 0.587);
  border-radius: 50%;
  width: 80px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-pg
{
  font-size: .9rem;
}

.why-link:hover
{
  text-decoration: underline;
}

.why-link
{
  font-size: 1rem;
  color: var(--dark-green);
}

#award p#award-header {
  font-size: 1.54rem;
  margin: 2rem 0;
}

.awards
{
  background-color: var(--light-grey-green);
  padding: 3.5rem 0;
  text-align: center;
}

.awards-container {
  display: grid;
  row-gap: 30px;
}

.awards-item {
  display: grid;
  grid-template-rows: repeat(2, 50px);
  justify-content: center;
  justify-items: center;
  grid-template-columns: auto;
}

/* .awards-item img {
  margin-bottom: 1.3rem;
}

.awards-item p {
  padding-bottom: 4px;
} */

footer
{
  padding: 2rem 0;
}

.foot-logo-container
{
  display: block;
  width: 100%;
}

.foot-logo-container
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-img
{
  max-width: 30%;
}

.foot-img img {
  filter: grayscale(100%) brightness(0);
}

.foot-oty
{
  max-width: 25%;
}


h5
{
  font-size: .9rem;
}

.footer-container
{
  width: 90%;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.foot-pg
{
  margin-top: 1rem;
  font-size: .9rem;
  display: grid;
  row-gap: 15px;
  font-weight: 400;
}

@media (min-width:768px)
{
  .container
  {
    max-width: 750px
  }
}

@media (min-width:1100px)
{
  .container
  {
    max-width: 970px
  }

  #menuIcon
  {
    display: none;
  }

  #acct a.signup
  {
    display: inline-block;
  }

  .menu
  {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .menu-container
  {
    display: grid !important;
    grid-template-columns: repeat(5, 20%);
    padding: 0 !important;
    position: relative;
  }

  .menu-item
  {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    border-left: 2px solid #000 !important;
    border-top: 0 !important;
    position: relative;
  }

  .menu-item:hover,
  .dropdown a:hover
  {
    background-color: transparent !important;
    border-radius: 0 !important;
  }

  .navlink a:hover
  {
    background-color: transparent;
  }

  #navbar
  {
    display: block;
  }

  .fa-angle-down
  {
    display: none !important;
  }

  .navlink a
  {
    margin-right: 0 !important;
    text-align: center !important;
    width: 100%;
    font-size: 1rem !important;
  }

  .menu-item:hover .dropdown,
  .planning:hover .dropdown,
  .pricing:hover .dropdown,
  .news:hover .dropdown
  {
    display: block;
    position: absolute;
  }

  .dropdown
  {
    /* padding-left: 15px !important; */
    margin-top: .7rem;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    border-top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
    z-index: 999;
  }

  .dropdown a
  {
    padding-top: 5px;
    font-size: 1rem !important;
  }

  .main-container
  {
    padding-top: 8rem;
  }

  h1
  {
    font-size: 45px !important;
  }

  #main-content-container
  {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    row-gap: 0 !important;
    column-gap: 10px;
    background: url(asset/img/hero-banner-float-mobile-s.svg) no-repeat local;
    background-position: top left 60px;
    height: 300px;
    background-size: 400px;
  }

  .hero-btn
  {
    grid-template-columns: repeat(2, auto) !important;
  }

  .hero-area
  {
    order: 2;
  }

  .main2
  {
    order: 1;
    visibility: hidden;
  }

  h2
  {
    font-size: 2rem !important;
    padding: 1rem 0 !important;
  }

  .goal-container
  {
    padding-top: 1rem;
  }

  .deserve-box-items
  {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .deserve-para:first-child
  {
    font-weight: 700;
  }

  /* Remove this comment */
  .goal-item-box
  {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-item-box
  {
    display: grid;
    align-content: center;
    height: 100%;
    padding: 0 24px;
  }

  .goal-item-pg1
  {
    order: 1 !important;
  }

  .goal-img-box2
  {
    order: 2 !important;
    text-align: center;
  }

  #review-finra
  {
    padding: 1rem 0;
    text-align: center;
    font-size: 1.1rem !important;
  }

  .pg-item-box p.pg-link
  {
    display: inline-block !important;
  }

  .foot-pg
  {
    font-size: .7rem;
  }

  .why-choose-container
  {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
  }

  .awards-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}


@media (min-width:1200px)
{
  .container
  {
    max-width: 1170px;
  }
}