@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&family=Poppins:wght@200;300;400;600;800&display=swap");

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    text-align: center;
  }
}

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

:root {
  /* blues */
  --primary-color: #3992c6;
  --light-color: #bddcff;
  --blue-background-color: #c5def0;

  /* purple */
  --accent-color: #650266;
  --light-accent-color: #be29ec;
  --purple-background-color: #efbbff;

  /* greens */
  --alt-accent-color: #056105;
  --alt-light-accent-color: #0c9200;
  --green-background-color: #c9feca;

  /* main colors */
  --white-color: #fff;
  --black-color: #000;
  --dark-color: #444;

  /* fonts */
  --main-font-family: "Nunito", sans-serif;
  --alt-font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font-family);
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
}

section {
  padding: 30px 0 50px 0;
}

.section-dark {
  background-color: var(--primary-color);
  color: white;
}

.section-light {
  background-color: var(--light-color);
}

h1,
h2,
h3 {
  text-align: center;
}

h1 {
  font-size: 4rem;
  font-family: var(--main-font-family);
  font-weight: 600;
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
  padding-bottom: 60px;
  font-family: var(--main-font-family);
  font-weight: 800;
  margin-top: 20px;
}

.h2-emph {
  color: var(--accent-color);
}

p {
  padding: 0 0 12px 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* navbar */

.navbar {
  background-color: var(--white-color);
  /* position: sticky; */
  top: 0;
  z-index: 9999;
  height: 60px;
  border-bottom: solid 1px var(--accent-color);
  /* box-shadow: #888; */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 10px;
  display: block;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
  color: var(--dark-color);
}

.navbar ul li a i {
  margin-right: 4px;
}

.navbar ul li:last-child a {
  margin-left: 8px;
}

.navbar ul li a:hover {
  color: var(--accent-color);
}

/* hero section */
.hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.9)
    ),
    url("../assets/images/hero-walking.jpg");
  width: auto;
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  padding-bottom: 150px;
  /* border-radius: 10px; */
  background-color: #ebc444;
  color: #fff;
}

.hero h1 {
  text-align: start;
}

.hero-content {
  width: 80%;
}

.hero-emph {
  color: var(--purple-background-color);
}

.hero-p {
  padding: 12px 0 24px 0;
  font-family: var(--alt-font-family);
}

.hero-btn-row {
  display: flex;
  margin: 400px 0 40px 0;
}

.hero a {
  margin: 40px 0 40px 0;
}

.hero-btn-row button:last-of-type {
  margin-left: 12px;
}

.hero-result-row {
  display: flex;
  justify-content: space-between;
  /* max-width: 80%; */
  padding: 12px 0 0 0;
}

.hero-result {
  max-width: 30%;
  min-width: 20px;
  margin-right: 8px;
  font-size: 1rem;
  font-family: var(--alt-font-family);
  /* border: 1px solid white; */
}

@media screen and (max-width: 600px) {
  .hero {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.9)
      ),
      url("../assets/images/hero-walking.jpg");
    width: auto;
    background-size: cover;
    background-position: center;
    padding-top: 20px;
    padding-bottom: 15px;
    color: #fff;
  }

  .hero-content {
    width: 90%;
    text-align: center;
    justify-content: center;
  }

  .hero-btn-row {
    display: flex;
    justify-content: center;
    /* margin-bottom: 28px; */
  }

  .hero-btn-row button:last-of-type {
    margin-left: 12px;
  }

  .hero-result-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    /* max-width: 80%; */
    margin: 8px 0;
  }

  .hero-result {
    font-size: 1rem;
    width: 30%;
    margin: 0 8px;
  }
}

/* problem/solution section */

.problem-content {
  /* display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 20px;
}

.problem-media {
  /* max-width: 100%; */
  /* min-width: 40%; */
  /* background-color: #3992c6; */
  background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.7)
    ),
    url("../assets/images/outside-mourning.jpg");
  width: auto;
  background-size: cover;
  background-position: right;
  border-radius: 10px;
}

.problem-bucket {
  max-width: 90%;
  /* min-width: 400px; */
}

.problem-bucket ul {
  margin-bottom: 20px;
}

.problem-bucket li {
  margin-bottom: 8px;
  font-size: medium;
}

@media screen and (max-width: 767px) {
  /* .problem-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  } */

  .problem-media {
    display: none;
  }

  .problem-bucket {
    margin: 0 40px;
  }

  .problem-bucket ul {
    margin-bottom: 20px;
  }

  .problem-bucket li {
    margin-bottom: 8px;
    font-size: medium;
  }
}

/* stats section */

.stats {
  background-color: var(--light-color);
}

.stat-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.stat-col {
  /* display: flex;
  flex-direction: column; */
  margin: 0 20px;
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--alt-font-family);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.stat-text {
  font-family: var(--alt-font-family);
}

.stat-source {
  font-size: 0.8rem;
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  .stat-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .stat-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--alt-font-family);
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .stat-text {
    font-family: var(--alt-font-family);
    font-size: 16px;
    max-width: 75%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .stat-source {
    font-size: 0.7rem;
  }
}

/* benefits section */

.benefits-section h2 {
  color: var(--accent-color);
}

.benefit-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.benefit-col {
  text-align: center;
  margin-bottom: 40px;
}

.benefit-col i {
  font-size: 5rem;
  padding-bottom: 48px;
  color: var(--accent-color);
}

.benefit-col .benefit-header {
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* testimonials */

.testimonials {
  background-color: var(--green-background-color);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.testimonial-col {
  padding: 8px 8px;
  margin: 0 20px;
}

.testimonial-text {
  padding: 0 0 20px 0;
}

.testimonial-name {
  padding: 0 0 12px 0;
  font-family: var(--main-font-family);
  font-weight: 800;
  color: var(--accent-color);
}

.testimonial-star {
  color: goldenrod;
}

@media screen and (max-width: 600px) {
  .testimonial-col {
    margin: 20px 0px;
  }
}

/* features */

.features {
  /* background-color: var(--green-background-color); */
  padding: 30px 40px 50px 40px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.feature {
  display: flex;
  justify-content: start;
  align-items: middle;
  margin-bottom: 12px;
  /* border: 1px solid black; */
}

.feature i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 2rem;
}

.feature-text strong {
  color: var(--accent-color);
}

/* faqs */

/* call to action */

.call-to-action {
  margin-top: 20px;
  background-color: var(--light-color);
}

.call-to-action a {
  margin-top: 60px;
}

.call-to-action h2 {
  color: var(--accent-color);
}

.cta-btn-row {
  display: flex;
  justify-content: center;
}

/* footer */
footer {
  margin: 40px 0 0 0;
  padding: 40px 0 8px 0;
  background-color: var(--dark-color);
  color: var(--white-color);
}

footer h4 {
  margin-bottom: 12px;
}

footer a {
  color: white;
}

@media print {
  footer {
    position: fixed;
    bottom: 0;
  }
}

/* utils */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 12px;
}

/* logo */
.logo {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0px;
}

.logo-accent {
  color: var(--accent-color);
}

.logo-accent-alt {
  color: var(--alt-accent-color);
}

.logo-accent-primary {
  color: var(--primary-color);
}

/* buttons */

.btn {
  display: inline-block;
  margin: 8px 0;
  padding: 16px 20px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn i {
  margin-right: 4px;
}

.btn:hover {
  opacity: 0.8;
}

.btn-light {
  background-color: var(--light-color);
  color: white;
}

.btn-light-alt {
  background-color: var(--light-accent-color);
  color: white;
}

.btn-light-accent {
  background-color: var(--alt-light-accent-color);
  color: white;
}

.btn-strong {
  background-color: var(--accent-color);
}

.login-btn i,
span {
  color: var(--accent-color);
}

.btn-block {
  display: block;
  width: 100%;
}

/* margin classes */

.mb-0 {
  margin-bottom: 0px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Text Classes */

.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px, 0 20px;
}

.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px, 0 20px;
}

.text-lg {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px, 0 20px;
}

.text-sm {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

.text-center {
  text-align: center;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}
