html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body {
  background-color: white;
  background-image: url('assets/bg.png');
  background-size: cover;
}


header {
  /* background-color: #333; */
  color: transparent;
  padding: 10px 20px;
}
.me-3{
  height: 30px !important;
}

/* nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
} */

main {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

#hero {
  /* background-color: #f2f2f2; */
  /* padding: 50px; */
  text-align: center;
}

#hero h1 {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 111px;
  text-align: center;

  /* gradient */

  background: linear-gradient(54.9deg, #E71E84 -5.68%, #F39028 100.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 50px;
}

#hero p {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height */

  text-align: center;

  color: #000000;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

#features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.card {
  flex: 1;
  /* max-width: 300px; */
  height: 80px;
  /* margin: 0 10px; */
  text-align: center;
  background: linear-gradient(195.3deg, #FFFFFF -0.02%, #FFFFFF 97.83%);
  box-shadow: 1px 10px 41px rgba(0, 0, 0, 0.09);
  border-radius: 19px;
  border: none !important;
}



.card h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.card p {
  font-size: 26px;
  line-height: 104.76%;
  text-align: center;
  color: #2B2B2B;
}

footer {
  /* background-color: #333; */
  /* color: #fff; */
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  margin-top: auto;
}

footer p {
  margin: 0;
}

/* .bg-white {
  background-color: #fff !important;
  color: #000000;
} */

.list-inline-item a {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #A6A6A6;
  text-decoration: none !important;
}


a {
  text-decoration: none !important;
}


@media only screen and (max-width: 767px) {
  #hero h1 {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
    text-align: center;

    margin-bottom: 30px;
  }
}