@font-face {
  font-family: "Mooli";
  src: url("fonts/Mooli-Regular.ttf") format("truetype");
}

body {
  font-family: "Mooli", sans-serif;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  width: 100%;
  background-image: linear-gradient(45deg, #fda085 0%, #fee140 100%);
}

.title {
  font-size: 3em;
  font-weight: bold;
  padding: 0.25em 0.5em;
  line-height: 1em;
}

@media (min-width: 768px) {
  .title {
    line-height: 1.5em;
    font-size: 5em;
  }
}

.subtitle {
  font-size: 1.5em;
  margin-bottom: 0rem;
  padding: 0 1em;
}

@media (min-width: 768px) {
  .subtitle {
    margin-bottom: 2em;
    font-size: 2em;
  }
}

.solar {
  margin: 20px 0;
  font-weight: bolder;
  color: rgb(6, 6, 223);
}

.blue-highlight {
  font-weight: bolder;
  font-style: italic;
  color: rgb(6, 6, 223);
}

.hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  padding: 0 1.5em;
  margin-bottom: 18em;
}

@media (min-width: 768px) {
  .hero {
    flex-wrap: nowrap;
  }
}

.hero-details {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
}

@media (min-width: 768px) {
  .hero {
    width: 75%;
  }
}

.social-proof {
  margin-top: 0.5em;
  font-size: 1em;
}

.quality-details {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .quality-details {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .social-proof {
    font-size: 2em;
    margin-top: 0;
    /* width: 50%; */
  }
}

.button-container {
  width: 100%;
  display: flex;
  align-items: center; /*vertical adjusment*/
  justify-content: center; /*horizontal adjusment*/
}

.cta-button {
  font-size: 1.5em;
  padding: 0.5em 0.5em;
  margin: 0em 0em;
  border: none;
  border-radius: 0.5em;
  background-color: rgb(6, 6, 223);
  color: white;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cta-button {
    padding: 1em 1em;
    margin: 0em 0em;
  }
}

.cta-button:hover {
  transform: scale(1.05);
  border: 2px solid rgb(255, 255, 255);
  transition: transform 250ms;
}

.cta-button:not(:hover) {
  transform: scale(1);
  transition: transform 250ms;
}

.reviews {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 50%;
  margin: 20px 0;
  margin-top: 5em;
}

.review {
  width: 33%;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
}
li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.5em;
  margin-left: 2em;
  margin-top: 0px;
  font-size: 1em;
}

li::before {
  content: "✅";
  position: absolute;
  left: 0;
  font-size: 1em;
  color: green;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(84, 82, 82, 0.562);
  padding: 20px;
  min-height: 15vh;
}

.footer-image {
  max-width: 100%;
  max-height: 5rem;
}

.footer-text {
  text-align: center;
  padding: 30px;
}

@media (min-width: 600px) {
  .mobile-text {
    display: none;
  }
}
@media (max-width: 599px) {
  .desktop-text {
    display: none;
  }
}
