@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;300;400;500;600;700&display=swap");
:root {
  /* website colors */
  --teal: #174c4f;
  --black: #1f1f1f;
  --light-cream: #f4efe9;
  --lighter-cream: #FEF6EC;
  --dark-cream: #e4ddcf;
  --pink: #f9c9d3;
  --light-blue: #87c6ca;
  --brown: #d3a277;
  --white: #fff;
  /* font size */
  --fs-small: 13px;
  --fs-medium: 16px;
  --fs-medium-large: 18px;
  --fs-large: 28px;
  --fs-extra-large: 50px;
  /* font weight */
  --fw-light: 300;
  --fw-medium: 400;
  --fw-medium-bold: 500;
  --fw-bold: 600;
  --fw-extra-bold: 800;
  /* line height */
  --lh-medium: 26px;
  --lh-large: 30px;
  /* border radius */
  --br-small: 6px;
  --br-medium: 10px;
  --br-large: 25px;
  --br-extra-large: 50px;
}

@media screen and (max-width: 1399px) {
  :root {
    /* font size */
    --fs-small: 12px;
    --fs-medium: 15px;
    --fs-medium-large: 17px;
    --fs-large: 25px;
    --fs-extra-large: 40px;
    /* line height */
    --lh-medium: 22px;
    --lh-large: 26px;
  }
}
@media screen and (max-width: 1250px) {
  :root {
    /* font size */
    --fs-small: 12px;
    --fs-medium: 15px;
    --fs-medium-large: 16px;
    --fs-large: 20px;
    --fs-extra-large: 35px;
    /* line height */
    --lh-medium: 22px;
    --lh-large: 26px;
  }
}
@media screen and (max-width: 999px) {
  :root {
    /* font size */
    --fs-small: 11px;
    --fs-medium: 14px;
    --fs-medium-large: 14px;
    --fs-large: 18px;
    --fs-extra-large: 30px;
    /* line height */
    --lh-medium: 19px;
    --lh-large: 24px;
  }
}
@font-face {
  font-family: "Migra";
  src: url("../font/migra/Migra-Extralight.eot"); /* IE9 Compat Modes */
  src: url("../font/migra/Migra-Extralight.eot?#iefix") format("embedded-opentype"), url("../font/migra/Migra-Extralight.woff") format("woff"), url("../font/migra/Migra-Extralight.otf") format("opentype"), url("../font/migra/Migra-Extralight.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
  scroll-behavior: smooth;
}

.migra {
  font-family: "Migra", sans-serif;
  letter-spacing: 2px;
}

body {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
}

main {
  width: 100%;
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.inner-container {
  width: 90%;
  max-width: 1400px;
  margin: 0px auto;
}

p,
a {
  font-size: var(--fs-medium);
  font-weight: var(--fw-medium);
  line-height: var(--lh-medium);
  text-decoration: none;
}

a {
  display: block;
  color: var(--black);
}

ul li {
  list-style: none;
}

input,
textarea,
select {
  outline: none;
  border: none;
  background-color: var(--white);
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: var(--fs-medium);
  font-weight: var(--fw-medium-bold);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s;
}

div img {
  width: 100%;
}

.home-page .sub-header {
  background-color: var(--black);
  padding: 12px 0px;
  text-align: center;
  width: 100%;
  position: relative;
}
.home-page .sub-header a {
  color: var(--white);
}
.home-page .sub-header svg {
  width: 15px;
  height: 15px;
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
}
.home-page header {
  width: 100%;
  background-color: var(--teal);
  top: 0;
  left: 0;
  z-index: 55;
}
.home-page header .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0px;
}
.home-page header .inner-container .logo {
  width: 200px;
  flex-shrink: 0;
}
.home-page header .inner-container .logo h1 {
  color: var(--white);
  font-size: var(--fs-large);
  font-weight: var(--fw-medium);
}
.home-page header .inner-container nav {
  width: fit-content;
}
.home-page header .inner-container nav ul {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 40px;
}
.home-page header .inner-container nav ul li {
  width: fit-content;
  position: relative;
  flex-shrink: 0;
  color: var(--white);
  font-size: var(--fs-medium);
  text-transform: uppercase;
  padding: 25px 0px;
  cursor: pointer;
}
.home-page header .inner-container nav ul li:hover {
  font-weight: var(--fw-medium-bold);
}
.home-page header .inner-container nav ul li a {
  color: var(--white);
  font-size: var(--fs-medium);
}
.home-page header .inner-container .overlay {
  display: none;
}
.home-page header .inner-container .mobile-menu {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-shrink: 0;
  color: var(--white);
  display: none;
}
.home-page header .inner-container .mobile-menu svg {
  width: 25px;
  height: 25px;
}
.home-page .custom-ul {
  width: 100%;
}
.home-page .custom-ul .li {
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 20px 0px;
}
.home-page .custom-ul .li svg {
  width: 40px;
  height: 40px;
  color: var(--black);
  flex-shrink: 0;
  margin-right: 15px;
}
.home-page .section-title {
  font-weight: var(--fw-medium);
  font-size: var(--fs-extra-large);
  text-align: center;
  color: var(--black);
  margin: 0px auto 60px auto;
  width: fit-content;
}
.home-page .hero-section {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  position: relative;
  background-color: var(--light-cream);
  background-image: url("../img/lauren2.jpg");
  background-size: cover;
  background-position-y: -280px;
  background-position-x: left;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(183, 110, 121, 0.3);
  width: 100%;
  height: 100%;
}
.home-page .hero-section .inner-container {
  position: relative;
}
.home-page .hero-section .inner-container .content {
  width: 100%;
  max-width: 600px;
}
.home-page .hero-section .inner-container .content h2 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  text-transform: uppercase;
}
.home-page .hero-section .inner-container .content h1 {
  font-size: 70px;
  margin: 20px 0px;
  font-weight: var(--fw-medium);
}
.home-page .hero-section .inner-container .content p {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  line-height: var(--lh-large);
  color: #000;
  margin-bottom: 30px;
}
.home-page .hero-section .inner-container .content .call-to-action {
  width: fit-content;
}
.home-page .hero-section .inner-container .content .call-to-action button {
  width: 280px;
  height: 70px;
  background-color: var(--black);
  color: var(--white);
}
.home-page .seen-on {
  background-color: var(--teal);
  text-align: center;
  padding: 30px 0px 40px 0px;
}
.home-page .seen-on::-webkit-scrollbar {
  display: none;
}
.home-page .seen-on p {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-small);
}
.home-page .seen-on .inner-container {
  padding: 20px 100px 0px 100px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-page .seen-on .inner-container .logo-wrapper {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: left;
  white-space: nowrap;
  gap: 50px;
  animation: scrollLogos 25s linear infinite;
}
@media screen and (min-width: 1000px) {
  .home-page .seen-on .inner-container .logo-wrapper {
    animation: scrollLogos 30s linear infinite;
  }
  @keyframes scrollLogos {
    to {
      transform: translateX(-100%);
    }
  }
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0); /* Start from the left */
  }
  100% {
    transform: translateX(-50%); /* Scroll to the left by 50% of the container width */
  }
}
.home-page .seen-on .inner-container::-webkit-scrollbar {
  display: none;
}
.home-page .seen-on .inner-container .logo {
  flex-shrink: 0;
  width: 100px;
}
.home-page .seen-on .inner-container .logo.the-standard, .home-page .seen-on .inner-container .logo.the-telegraph, .home-page .seen-on .inner-container .logo.the-independent {
  filter: invert(1);
}
.home-page .seen-on .inner-container .logo.forbes {
  width: 80px;
}
.home-page .seen-on .inner-container .logo.the-guardian {
  width: 80px;
}
.home-page .seen-on .inner-container .logo.the-times {
  width: 120px;
}
.home-page .seen-on .inner-container .logo.metro {
  width: 50px;
}
.home-page .seen-on .inner-container .logo.hello {
  width: 60px;
  color: #fff;
}
.home-page .section1 {
  background-color: #f0e0df;
  padding: 100px 0px;
}
.home-page .section1 .inner-container {
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-page .section1 .inner-container .left {
  width: 50%;
  height: 500px;
  position: relative;
  flex-shrink: 0;
}
.home-page .section1 .inner-container .left .image {
  width: 100%;
  height: 100%;
  border-radius: var(--br-small);
  position: relative;
  background-position: center;
  background-size: cover;
  background-image: url("../img/planner_coffee.jpg");
  z-index: 2;
}
.home-page .section1 .inner-container .left .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 150%;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 1;
}
.home-page .section1 .inner-container .content {
  width: 100%;
  padding-left: 100px;
}
.home-page .section1 .inner-container .content h2 {
  font-size: 70px;
  font-weight: var(--fw-medium);
  color: var(--teal);
}
.home-page .section1 .inner-container .content p {
  color: var(--teal);
  margin: 10px 0px 30px 0px;
}
.home-page .section1 .inner-container .content button {
  width: 220px;
  height: 70px;
  background-color: var(--teal);
  color: var(--white);
}
.home-page .section2 {
  padding: 100px 0px;
  background-color: var(--dark-cream);
}
.home-page .section2 .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home-page .section2 .inner-container .image {
  width: 500px;
  height: auto;
  flex-shrink: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-image: url("../img/lauren_stage.jpeg");
  border-radius: var(--br-small);
}
.home-page .section2 .inner-container .content {
  width: 100%;
  padding-left: 100px;
}
.home-page .section2 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium);
  text-transform: uppercase;
}
.home-page .section2 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin: 20px 0px;
  max-width: 85%;
}
.home-page .section2 .inner-container .content p {
  margin: 20px 0px 30px 0px;
}
.home-page .section2 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: var(--lighter-cream);
  color: var(--black);
}
.home-page .section3 {
  padding: 100px 0px;
  background-color: var(--light-cream);
}
.home-page .section3 .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .section3 .inner-container .image {
  width: 500px;
  height: 600px;
  flex-shrink: 0;
  background-size: cover;
  background-position-x: left;
  background-position-y: top;
  background-image: url("../img/is-this-you.png");
  border-radius: var(--br-small);
}
.home-page .section3 .inner-container .content {
  width: 100%;
  padding-right: 100px;
}
.home-page .section3 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section3 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin-top: 20px;
  max-width: 98%;
}
.home-page .section3 .inner-container .content .block {
  border-radius: var(--br-large);
  padding: 35px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 30px 0px;
}
.home-page .section3 .inner-container .content .block:last-child {
  margin-bottom: 0px;
}
.home-page .section3 .inner-container .content .block h4 {
  font-size: 40px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-right: 40px;
}
.home-page .section3 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: var(--lighter-cream);
  color: var(--black);
}
.home-page .section4 {
  padding: 100px 0px;
  background-color: var(--black);
}
.home-page .section4 .services {
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home-page .section4 .services .image {
  width: 500px;
  height: auto;
  flex-shrink: 0;
  background-size: cover;
  background-position-x: right;
  background-position-y: bottom;
  background-image: url("../img/lauren3.jpg");
  border-radius: var(--br-small);
}
.home-page .section4 .services .content {
  width: 100%;
  padding-left: 100px;
}
.home-page .section4 .services .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section4 .services .content h2 {
  font-size: 50px;
  color: var(--white);
  font-weight: var(--fw-medium);
  margin: 20px 0px;
  max-width: 100%;
}
.home-page .section4 .services .content p {
  margin: 20px 0px 30px 0px;
  color: var(--white);
}
.home-page .section4 .services .content p b {
  font-weight: var(--fw-medium-bold);
}
.home-page .section4 .services .content .custom-ul .li {
  align-items: flex-start;
}
.home-page .section4 .services .content .custom-ul .li svg {
  color: var(--white);
}
.home-page .section4 .services .content .custom-ul .li p {
  margin: 0px;
}
.home-page .section4 .services .content button {
  margin-top: 20px;
  width: 280px;
  height: 70px;
  background-color: var(--lighter-cream);
  color: var(--black);
}
.home-page .section4 .how-it-works {
  padding-top: 100px;
}
.home-page .section4 .how-it-works .cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}
.home-page .section4 .how-it-works .cards .card {
  width: 100%;
  border-radius: var(--br-large);
  padding: 50px 40px;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .section4 .how-it-works .cards .card:nth-child(2) .vector {
  max-width: 260px;
}
.home-page .section4 .how-it-works .cards .card h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: var(--fw-medium);
}
.home-page .section4 .how-it-works .cards .card p {
  margin: 20px 0px auto 0px;
  color: var(--white);
}
.home-page .section4 .how-it-works .cards .card .vector {
  width: 100%;
  max-width: 200px;
  margin: 60px auto 0px auto;
  color: white;
}
.home-page .section4 .how-it-works .cards .card .vector img {
  width: 100%;
}
.home-page .section5 {
  padding: 100px 0px;
  background-color: var(--light-cream);
}
.home-page .section5 .inner-container {
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-page .section5 .inner-container .image {
  width: 500px;
  height: auto;
  min-height: 450px;
  flex-shrink: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-image: url("../img/why-life-coach.jpg");
  border-radius: var(--br-small);
}
.home-page .section5 .inner-container .content {
  width: 100%;
  padding-left: 100px;
}
.home-page .section5 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section5 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin-bottom: 20px;
}
.home-page .section5 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: var(--lighter-cream);
  color: var(--black);
}
.home-page .section6 {
  background-color: var(--black);
  background-attachment: fixed;
  background-image: url("../img/lauren_surfing.jpeg");
  background-size: cover;
  background-position-x: right;
  background-position-y: center;
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .section6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}
.home-page .section6 .inner-container {
  padding: 100px 0px;
  text-align: center;
  position: relative;
}
.home-page .section6 .inner-container h3 {
  color: var(--white);
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section6 .inner-container p {
  font-size: 50px;
  line-height: 60px;
  max-width: 72%;
  margin: 30px auto;
  color: var(--white);
}
.home-page .section6 .inner-container button {
  width: 280px;
  height: 70px;
  background-color: var(--light-cream);
  color: var(--black);
}
.home-page .section7 {
  padding: 100px 0px;
  background-color: var(--dark-cream);
}
.home-page .section7 .cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}
.home-page .section7 .cards .card {
  width: 100%;
  background-color: var(--light-cream);
  padding: 10px 10px 50px 10px;
  border-radius: var(--br-large);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .section7 .cards .card.card1 .image {
  background-image: url("../img/find.jpg");
  background-position-y: bottom;
}
.home-page .section7 .cards .card.card2 .image {
  background-image: url("../img/balance.jpg");
}
.home-page .section7 .cards .card.card3 .image {
  background-image: url("../img/level_up.jpg");
  background-position-y: bottom;
}
.home-page .section7 .cards .card .image {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
.home-page .section7 .cards .card .content {
  padding: 30px 20px;
}
.home-page .section7 .cards .card .content h2 {
  font-size: 30px;
  font-weight: var(--fw-medium);
}
.home-page .section7 .cards .card .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium);
  line-height: var(--lh-large);
  margin: 15px 0px;
}
.home-page .section7 .cards .card button {
  text-transform: uppercase;
}
.home-page .section8 {
  background-color: var(--light-cream);
}
.home-page .section8 .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home-page .section8 .inner-container .image {
  width: 500px;
  flex-shrink: 0;
  background-color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .section8 .inner-container .content {
  width: 100%;
  padding: 60px 0px 60px 100px;
}
.home-page .section8 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section8 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin: 20px 0px;
  max-width: 98%;
}
.home-page .section8 .inner-container .content p {
  margin: 20px 0px 30px 0px;
}
.home-page .section8 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.home-page .section9 {
  background-color: var(--dark-cream);
}
.home-page .section9 .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home-page .section9 .inner-container .image {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--light-blue);
}
.home-page .section9 .inner-container .content {
  width: 100%;
  padding: 60px 100px 60px 0px;
}
.home-page .section9 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section9 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin: 20px 0px;
  max-width: 98%;
}
.home-page .section9 .inner-container .content p {
  margin: 20px 0px 30px 0px;
}
.home-page .section9 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.home-page .section10 {
  background-color: var(--light-cream);
}
.home-page .section10 .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home-page .section10 .inner-container .image {
  width: 500px;
  flex-shrink: 0;
  background-color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .section10 .inner-container .content {
  width: 100%;
  padding: 60px 0px 60px 100px;
}
.home-page .section10 .inner-container .content h3 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  text-transform: uppercase;
}
.home-page .section10 .inner-container .content h2 {
  font-size: 50px;
  font-weight: var(--fw-medium);
  margin: 20px 0px;
  max-width: 98%;
}
.home-page .section10 .inner-container .content p {
  margin: 20px 0px 30px 0px;
}
.home-page .section10 .inner-container .content button {
  width: 280px;
  height: 70px;
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.home-page .section11 {
  padding: 100px 0px;
  background-color: var(--black);
}
.home-page .section11 .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.home-page .section11 .inner-container .image {
  width: 500px;
  height: auto;
  max-height: 700px;
  flex-shrink: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
  background-image: url("../img/faq.jpg");
  border-radius: var(--br-small);
}
.home-page .section11 .inner-container .content {
  width: 100%;
  padding-right: 100px;
}
.home-page .section11 .inner-container .content h2 {
  color: var(--white);
  font-size: 50px;
  font-weight: var(--fw-medium);
  max-width: 98%;
  margin-bottom: 30px;
}
.home-page .section11 .inner-container .content .block {
  padding: 25px 0px;
  border-top: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  cursor: pointer;
}
.home-page .section11 .inner-container .content .block.expanded {
  align-items: flex-start;
}
.home-page .section11 .inner-container .content .block.expanded p {
  display: block;
}
.home-page .section11 .inner-container .content .block.expanded button {
  transform: rotate(-180deg);
}
.home-page .section11 .inner-container .content .block:last-child {
  margin-bottom: 0px;
}
.home-page .section11 .inner-container .content .block h4 {
  color: var(--white);
  font-size: 40px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-right: 40px;
}
.home-page .section11 .inner-container .content .block h3 {
  color: var(--white);
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
}
.home-page .section11 .inner-container .content .block p {
  color: var(--white);
  display: none;
  margin-top: 10px;
}
.home-page .section11 .inner-container .content .block button {
  width: fit-content;
  color: var(--white);
  margin-left: auto;
  transition: 0.5s;
}
.home-page .section11 .inner-container .content .block button svg {
  width: 30px;
  height: 30px;
}
.home-page .pricing-section {
  padding: 100px 0px;
  background-color: var(--black);
  border-top: 1px solid #2f2f2f;
}
.home-page .pricing-section .section-title {
  color: var(--white);
}
.home-page .pricing-section .inner-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-page .pricing-section .inner-container .card {
  width: 100%;
  border-radius: var(--br-large);
  padding: 30px;
  background-color: #282828;
  border: 1px solid #202020;
  display: flex;
  flex-direction: column;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.home-page .pricing-section .inner-container .card .ribbon {
  position: absolute;
  top: 20px;
  right: -50px;
  background-color: #ff4757;
  color: white;
  padding: 8px 60px;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.home-page .pricing-section .inner-container .card .top {
  margin-bottom: 20px;
}
.home-page .pricing-section .inner-container .card .top h2 {
  font-size: var(--fs-large);
  font-weight: var(--fw-medium-bold);
  margin-bottom: 10px;
}
.home-page .pricing-section .inner-container .card .body {
  margin-bottom: auto;
}
.home-page .pricing-section .inner-container .card .body h2 {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-bold);
  color: var(--brown);
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-page .pricing-section .inner-container .card .body h2 span {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}
.home-page .pricing-section .inner-container .card .body h2 .right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-page .pricing-section .inner-container .card .body .description {
  margin: 30px 0px;
}
.home-page .pricing-section .inner-container .card .body .custom-ul .li svg {
  color: #282828;
  fill: var(--brown);
}
.home-page .pricing-section .inner-container .card .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 50px;
  height: 62px;
  background-color: var(--brown);
  color: black;
  margin-top: 30px;
}
.home-page .testimonials-section {
  padding: 100px 0px;
  background-color: var(--dark-cream);
}
.home-page .testimonials-section .section-title {
  color: var(--teal);
}
.home-page .testimonials-section .inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 20px;
}
.home-page .testimonials-section .inner-container .person {
  width: 100%;
  background-color: var(--light-cream);
  border-radius: var(--br-large);
  padding: 30px;
}
.home-page .testimonials-section .inner-container .person.p1 .image {
  background-image: url("../img/chelsea.jpeg");
}
.home-page .testimonials-section .inner-container .person.p2 .image {
  background-image: url("../img/lauren-forbes.jpeg");
}
.home-page .testimonials-section .inner-container .person.p3 .image {
  background-image: url("../img/venessa.jpg");
}
.home-page .testimonials-section .inner-container .person.p4 .image {
  background-image: url("../img/harris-max.webp");
}
.home-page .testimonials-section .inner-container .person .profile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.home-page .testimonials-section .inner-container .person .profile .image {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  overflow: hidden;
}
.home-page .testimonials-section .inner-container .person .profile .details {
  width: 100%;
}
.home-page .testimonials-section .inner-container .person .profile .details h5 {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-top: 5px;
  color: var(--teal);
}
.home-page .testimonials-section .inner-container .person .profile .details h2 {
  font-weight: var(--fw-medium-bold);
  font-size: var(--fs-medium-large);
  color: var(--teal);
}
.home-page .testimonials-section .inner-container .person .quote {
  width: 100%;
}
.home-page .testimonials-section .inner-container .person .quote p {
  color: var(--teal);
}
.home-page .podcast-section {
  background-color: var(--lighter-cream);
}
.home-page .podcast-section .inner-container {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.home-page .podcast-section .inner-container .mockup {
  width: 300px;
  transform: rotate(20deg);
  flex-shrink: 0;
  margin-left: 50px;
}
.home-page .podcast-section .inner-container .content {
  text-align: center;
  width: 100%;
  padding: 50px 0px 50px 50px;
}
.home-page .podcast-section .inner-container .content .logo {
  width: 300px;
  margin: 0px auto;
}
.home-page .podcast-section .inner-container .content h3 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-bold);
  color: var(--teal);
  margin-top: 10px;
}
.home-page .podcast-section .inner-container .content p {
  color: var(--teal);
  margin: 30px auto;
}
.home-page .podcast-section .inner-container .content .listen {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.home-page .podcast-section .inner-container .content .listen .platform {
  width: 200px;
  flex-shrink: 0;
}
.home-page footer {
  background-color: var(--black);
  padding: 100px 0px 20px 0px;
}
.home-page footer .inner-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--white) !important;
  position: relative;
}
.home-page footer .inner-container .col1 {
  width: 40%;
}
.home-page footer .inner-container .col1 h2 {
  font-size: var(--fs-large);
  font-weight: var(--fw-medium);
}
.home-page footer .inner-container .col2 {
  width: 100%;
}
.home-page footer .inner-container .col2 .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.home-page footer .inner-container .col2 .top .logo {
  margin-left: auto;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}
.home-page footer .inner-container .col2 h2 {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-medium);
  max-width: 600px;
}
.home-page footer .inner-container .col2 button {
  width: 280px;
  height: 70px;
  background-color: var(--light-cream);
  color: var(--black);
  margin: 60px 0px;
}
.home-page footer .inner-container .col2 .links {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 100px;
}
.home-page footer .inner-container .col2 .links h5 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.home-page footer .inner-container .col2 .links a {
  color: var(--white);
  margin: 10px 0px;
}
.home-page footer .inner-container .to-top-btn {
  position: absolute;
  bottom: 20px;
  right: 0px;
  width: 60px;
  padding: 15px;
  transform: rotate(-90deg);
  border: 1px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
}
.home-page footer .copyright {
  width: 100%;
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-page footer .copyright p {
  font-size: var(--fs-small);
  color: var(--white);
  font-weight: 300;
}
.home-page .store-section {
  background-color: var(--light-cream);
  padding: 100px 0px 60px 0px;
}
.home-page .store-section .heading {
  text-align: center;
  margin-bottom: 50px;
}
.home-page .store-section .heading h1 {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-medium-bold);
  margin-bottom: 10px;
  color: var(--teal);
}

html#ecwid_html body#ecwid_body div.ecwid-productBrowser {
  padding: 0px !important;
  background-color: transparent !important;
}

.ec-size .ec-store .ec-footer__row[data-items="1"] .ec-footer__cell {
  background-color: var(--light-cream) !important;
  border-radius: 8px;
  width: fit-content !important;
  padding: 20px 30px !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store.ec-store__category-page--0 .grid__products {
  gap: 20px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0px auto 0px auto !important;
}
@media screen and (max-width: 999px) {
  html#ecwid_html body#ecwid_body .ec-size .ec-store.ec-store__category-page--0 .grid__products {
    flex-direction: column !important;
    justify-content: center !important;
  }
}

html#ecwid_html body#ecwid_body .ec-store .grid__products .grid-product {
  width: 100% !important;
  max-width: 400px !important;
}
@media screen and (max-width: 999px) {
  html#ecwid_html body#ecwid_body .ec-store .grid__products .grid-product {
    max-width: 100% !important;
  }
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products {
  flex-wrap: nowrap !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products[data-cols="5"] .grid-product:nth-child(n+1) {
  width: 100% !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items .grid-product__subtitle {
  margin: 10px 0px 20px 0px !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--l .ec-store .grid__description,
html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__description:first-child,
html#ecwid_html body#ecwid_body .ec-size .ec-store.ec-store__category-page--0 .grid__description,
html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__description,
html#ecwid_html body#ecwid_body .ec-size.ec-size--s .ec-store .details-product-option {
  display: none !important;
  max-width: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--l .ec-store .ec-footer__link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--l .ec-store .ec-breadcrumbs {
  display: flex !important;
  justify-content: left !important;
}

@media screen and (max-width: 1399px) {
  .home-page .sub-header {
    padding: 10px 0px;
  }
  .home-page .sub-header a {
    font-size: var(--fs-small);
  }
  .home-page header .inner-container nav ul li {
    padding: 20px 0px;
  }
  .home-page .hero-section .inner-container .content h1 {
    font-size: var(--fs-extra-large);
  }
  .home-page .hero-section .inner-container .content .call-to-action button {
    height: 58px;
  }
  .home-page .seen-on .inner-container {
    gap: 40px;
  }
  .home-page .seen-on .inner-container .logo {
    width: 60px;
  }
  .home-page .seen-on .inner-container .logo:nth-child(4), .home-page .seen-on .inner-container .logo:nth-child(5), .home-page .seen-on .inner-container .logo:nth-child(6) {
    width: 100px;
  }
  .home-page .section1 .inner-container .left .svg,
  .home-page .section2 .inner-container .left .svg,
  .home-page .section3 .inner-container .left .svg,
  .home-page .section4 .inner-container .left .svg,
  .home-page .section5 .inner-container .left .svg,
  .home-page .section8 .inner-container .left .svg,
  .home-page .section9 .inner-container .left .svg,
  .home-page .section10 .inner-container .left .svg {
    width: 130%;
    height: 135%;
  }
  .home-page .section1 .inner-container .content h2,
  .home-page .section2 .inner-container .content h2,
  .home-page .section3 .inner-container .content h2,
  .home-page .section4 .inner-container .content h2,
  .home-page .section5 .inner-container .content h2,
  .home-page .section8 .inner-container .content h2,
  .home-page .section9 .inner-container .content h2,
  .home-page .section10 .inner-container .content h2 {
    font-size: var(--fs-extra-large);
  }
  .home-page .section1 .inner-container .content button,
  .home-page .section2 .inner-container .content button,
  .home-page .section3 .inner-container .content button,
  .home-page .section4 .inner-container .content button,
  .home-page .section5 .inner-container .content button,
  .home-page .section8 .inner-container .content button,
  .home-page .section9 .inner-container .content button,
  .home-page .section10 .inner-container .content button {
    height: 58px;
  }
  .home-page .section7 .cards {
    gap: 20px;
  }
  .home-page .section7 .cards .card .image {
    height: 250px;
  }
  .home-page .testimonials-section .inner-container .person {
    width: 90%;
  }
}
@media screen and (max-width: 1250px) {
  .home-page .hero-section {
    height: fit-content;
    max-height: unset;
  }
  .home-page .hero-section .inner-container {
    padding: 150px 0px;
  }
  .home-page .section1 .inner-container .left, .home-page .section1 .inner-container .image,
  .home-page .section2 .inner-container .left,
  .home-page .section2 .inner-container .image,
  .home-page .section3 .inner-container .left,
  .home-page .section3 .inner-container .image,
  .home-page .section4 .inner-container .left,
  .home-page .section4 .inner-container .image,
  .home-page .section5 .inner-container .left,
  .home-page .section5 .inner-container .image,
  .home-page .section8 .inner-container .left,
  .home-page .section8 .inner-container .image,
  .home-page .section9 .inner-container .left,
  .home-page .section9 .inner-container .image,
  .home-page .section10 .inner-container .left,
  .home-page .section10 .inner-container .image {
    width: 40%;
  }
  .home-page .section1 .inner-container .left .svg, .home-page .section1 .inner-container .image .svg,
  .home-page .section2 .inner-container .left .svg,
  .home-page .section2 .inner-container .image .svg,
  .home-page .section3 .inner-container .left .svg,
  .home-page .section3 .inner-container .image .svg,
  .home-page .section4 .inner-container .left .svg,
  .home-page .section4 .inner-container .image .svg,
  .home-page .section5 .inner-container .left .svg,
  .home-page .section5 .inner-container .image .svg,
  .home-page .section8 .inner-container .left .svg,
  .home-page .section8 .inner-container .image .svg,
  .home-page .section9 .inner-container .left .svg,
  .home-page .section9 .inner-container .image .svg,
  .home-page .section10 .inner-container .left .svg,
  .home-page .section10 .inner-container .image .svg {
    display: none;
  }
  .home-page .section1 .inner-container .content,
  .home-page .section2 .inner-container .content,
  .home-page .section3 .inner-container .content,
  .home-page .section4 .inner-container .content,
  .home-page .section5 .inner-container .content,
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content {
    width: 60%;
  }
  .home-page .section1 .inner-container .content h2 {
    max-width: 65%;
  }
  .home-page .section3 .inner-container .content,
  .home-page .section11 .inner-container .content {
    padding-right: 50px;
  }
  .home-page .section1 .inner-container .content,
  .home-page .section2 .inner-container .content,
  .home-page .section4 .inner-container .content,
  .home-page .section5 .inner-container .content,
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content {
    padding-left: 50px;
  }
  .home-page .section4 .how-it-works .cards {
    gap: 30px;
  }
  .home-page .section6 .inner-container p {
    font-size: var(--fs-extra-large);
    line-height: 50px;
  }
  .home-page .pricing-section .inner-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 800px) and (max-width: 1100px) {
  .home-page .inner-container {
    width: 82%;
  }
  .home-page .sub-header a {
    font-size: var(--fs-small);
  }
  .home-page .sub-header svg {
    right: 5px;
  }
  .home-page header {
    padding: 15px 0px;
    background-color: var(--white);
  }
  .home-page header .inner-container .logo h1 {
    color: var(--black);
    font-weight: var(--fw-bold);
  }
  .home-page header .inner-container nav {
    position: fixed;
    bottom: -100%;
    transition: 0.5s;
    left: 0;
    width: 100%;
    z-index: 999;
    border-top-left-radius: var(--br-small);
    border-top-right-radius: var(--br-small);
    background-color: var(--white);
  }
  .home-page header .inner-container nav ul {
    display: block;
    width: 100%;
    gap: 0px;
    padding: 15px 0px;
  }
  .home-page header .inner-container nav ul li {
    width: 100%;
    color: var(--black);
    padding: 15px 30px;
    position: relative;
    text-transform: unset;
    font-weight: var(--fw-medium-bold);
  }
  .home-page header .inner-container nav ul li:hover {
    background-color: var(--light-cream);
  }
  .home-page header .inner-container nav ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' width='14' height='14' stroke-width='2'%3E%3Cpath d='M9 6l6 6l-6 6'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
  .home-page header .inner-container nav ul li a {
    color: var(--black) !important;
  }
  .home-page header .inner-container .overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
  }
  .home-page header .inner-container .overlay.overlaying {
    display: block;
    animation: fade-in 0.6s ease-out;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .home-page header .inner-container .mobile-menu {
    display: flex;
    color: var(--black);
  }
  .home-page .hero-section {
    background-position-y: top;
    background-position-x: center;
  }
  .home-page .hero-section::before {
    background: rgba(117, 70, 77, 0.65);
  }
  .home-page .hero-section .inner-container {
    padding: 120px 0px;
  }
  .home-page .hero-section .inner-container .content {
    max-width: 50%;
  }
  .home-page .hero-section .inner-container .content h1 {
    font-size: 40px;
  }
  .home-page .hero-section .inner-container .content p {
    font-weight: var(--fw-medium);
    font-size: 16px;
  }
  .home-page .hero-section .inner-container .content h2, .home-page .hero-section .inner-container .content h1, .home-page .hero-section .inner-container .content p {
    color: var(--white);
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.65);
  }
  .home-page .hero-section .inner-container .content .call-to-action {
    width: 100%;
  }
  .home-page .hero-section .inner-container .content .call-to-action button {
    width: 250px;
    height: 65px;
  }
  .home-page .section1,
  .home-page .section2,
  .home-page .section3,
  .home-page .section4,
  .home-page .section5,
  .home-page .section8,
  .home-page .section9,
  .home-page .section10,
  .home-page .section11 {
    padding: 60px 0px;
  }
  .home-page .section1 .inner-container,
  .home-page .section2 .inner-container,
  .home-page .section3 .inner-container,
  .home-page .section4 .inner-container,
  .home-page .section5 .inner-container,
  .home-page .section8 .inner-container,
  .home-page .section9 .inner-container,
  .home-page .section10 .inner-container,
  .home-page .section11 .inner-container {
    display: block;
  }
  .home-page .section1 .inner-container .left, .home-page .section1 .inner-container .image,
  .home-page .section2 .inner-container .left,
  .home-page .section2 .inner-container .image,
  .home-page .section3 .inner-container .left,
  .home-page .section3 .inner-container .image,
  .home-page .section4 .inner-container .left,
  .home-page .section4 .inner-container .image,
  .home-page .section5 .inner-container .left,
  .home-page .section5 .inner-container .image,
  .home-page .section8 .inner-container .left,
  .home-page .section8 .inner-container .image,
  .home-page .section9 .inner-container .left,
  .home-page .section9 .inner-container .image,
  .home-page .section10 .inner-container .left,
  .home-page .section10 .inner-container .image,
  .home-page .section11 .inner-container .left,
  .home-page .section11 .inner-container .image {
    width: 100%;
    height: 500px;
  }
  .home-page .section1 .inner-container .content,
  .home-page .section2 .inner-container .content,
  .home-page .section3 .inner-container .content,
  .home-page .section4 .inner-container .content,
  .home-page .section5 .inner-container .content,
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content,
  .home-page .section11 .inner-container .content {
    width: 100%;
    padding-left: unset;
    padding-right: unset;
    padding-top: 30px;
  }
  .home-page .section1 .inner-container .content h2,
  .home-page .section2 .inner-container .content h2,
  .home-page .section3 .inner-container .content h2,
  .home-page .section4 .inner-container .content h2,
  .home-page .section5 .inner-container .content h2,
  .home-page .section8 .inner-container .content h2,
  .home-page .section9 .inner-container .content h2,
  .home-page .section10 .inner-container .content h2,
  .home-page .section11 .inner-container .content h2 {
    max-width: 100%;
  }
  .home-page .section1 .inner-container .content button,
  .home-page .section2 .inner-container .content button,
  .home-page .section3 .inner-container .content button,
  .home-page .section4 .inner-container .content button,
  .home-page .section5 .inner-container .content button,
  .home-page .section8 .inner-container .content button,
  .home-page .section9 .inner-container .content button,
  .home-page .section10 .inner-container .content button,
  .home-page .section11 .inner-container .content button {
    width: 250px;
    height: 65px;
  }
  .home-page .section3 .inner-container .image {
    display: none;
  }
  .home-page .section3 .inner-container .content {
    padding-top: 0px;
  }
  .home-page .section3 .inner-container .content .block {
    padding: 30px 20px;
  }
  .home-page .section3 .inner-container .content .block h4 {
    margin-right: 20px;
  }
  .home-page .section4 .inner-container {
    padding-top: 0px;
  }
  .home-page .section4 .inner-container .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .section6 {
    height: 600px;
    background-position-x: center;
    background-attachment: unset;
  }
  .home-page .section6::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .home-page .section6 .inner-container {
    padding: 60px 0px;
  }
  .home-page .section6 .inner-container p {
    max-width: 100%;
  }
  .home-page .section6 .inner-container button {
    width: 250px;
    height: 58px;
  }
  .home-page .section7 {
    padding: 60px 0px;
  }
  .home-page .section7 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .section8 .inner-container .image,
  .home-page .section9 .inner-container .image,
  .home-page .section10 .inner-container .image {
    padding: 150px;
    border-radius: var(--br-small);
  }
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content {
    padding-bottom: 0px;
  }
  .home-page .section9 .inner-container,
  .home-page .section11 .inner-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .home-page .testimonials-section {
    padding: 60px 0px;
  }
  .home-page .testimonials-section .inner-container .person {
    max-width: 100%;
  }
  .home-page .podcast-section .inner-container {
    flex-direction: column-reverse;
  }
  .home-page .podcast-section .inner-container .mockup {
    transform: unset;
    margin-left: unset;
    width: 100%;
  }
  .home-page .podcast-section .inner-container .content {
    padding: 60px 0px 0px 0px;
  }
  .home-page .podcast-section .inner-container .content .logo {
    width: 90%;
  }
  .home-page .podcast-section .inner-container .content .listen {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .home-page .podcast-section .inner-container .content .listen .platform {
    width: 100%;
  }
  .home-page footer {
    padding: 60px 0px;
  }
  .home-page footer .inner-container {
    display: block;
  }
  .home-page footer .inner-container .col1 {
    width: 100%;
    margin-bottom: 60px;
  }
  .home-page footer .inner-container .col1 h2 {
    font-size: var(--fs-extra-large);
  }
  .home-page footer .inner-container .col2 {
    width: 100%;
  }
  .home-page footer .inner-container .to-top-btn {
    bottom: 195px;
    width: 50px;
    padding: 15px;
  }
}
@media screen and (min-width: 800px) and (max-width: 900px) {
  .home-page .section7 {
    padding: 60px 0px;
  }
  .home-page .section7 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .home-page .section7 .cards .card .image {
    height: 350px;
  }
}
@media screen and (max-width: 799px) {
  .home-page .sub-header {
    display: none;
  }
  .home-page .sub-header a {
    font-size: var(--fs-small);
  }
  .home-page .sub-header svg {
    right: 5px;
  }
  .home-page header {
    padding: 5px 0px;
  }
  .home-page header .inner-container .logo {
    max-width: 120px;
  }
  .home-page header .inner-container nav {
    position: fixed;
    bottom: -100%;
    transition: 0.5s;
    left: 0;
    width: 100%;
    z-index: 999;
    border-top-left-radius: var(--br-small);
    border-top-right-radius: var(--br-small);
    background-color: var(--white);
  }
  .home-page header .inner-container nav ul {
    display: block;
    width: 100%;
    gap: 0px;
    padding: 15px 0px;
  }
  .home-page header .inner-container nav ul li {
    width: 100%;
    color: var(--black);
    padding: 15px 30px;
    position: relative;
    text-transform: unset;
    font-weight: var(--fw-medium-bold);
  }
  .home-page header .inner-container nav ul li:hover {
    background-color: var(--light-cream);
  }
  .home-page header .inner-container nav ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' width='14' height='14' stroke-width='2'%3E%3Cpath d='M9 6l6 6l-6 6'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
  .home-page header .inner-container nav ul li a {
    color: var(--black) !important;
  }
  .home-page header .inner-container .overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
  }
  .home-page header .inner-container .overlay.overlaying {
    display: block;
    animation: fade-in 0.6s ease-out;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .home-page header .inner-container .mobile-menu {
    display: flex;
    color: var(--white);
  }
  .home-page .hero-section {
    background-position-y: top;
    background-position-x: left;
    background-repeat: repeat;
  }
  .home-page .hero-section::before {
    background: rgba(117, 70, 77, 0.65);
  }
  .home-page .hero-section .inner-container {
    padding: 100px 0px;
  }
  .home-page .hero-section .inner-container .content {
    max-width: 100%;
  }
  .home-page .hero-section .inner-container .content h1 {
    font-size: 40px;
  }
  .home-page .hero-section .inner-container .content p {
    font-weight: var(--fw-medium);
    font-size: 16px;
  }
  .home-page .hero-section .inner-container .content h2, .home-page .hero-section .inner-container .content h1, .home-page .hero-section .inner-container .content p {
    color: var(--white);
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.65);
  }
  .home-page .hero-section .inner-container .content .call-to-action {
    width: 100%;
  }
  .home-page .hero-section .inner-container .content .call-to-action button {
    width: 100%;
    height: 65px;
  }
  .home-page .seen-on .inner-container {
    gap: 30px;
    justify-content: left;
  }
  .home-page .seen-on .inner-container .logo {
    width: 60px;
  }
  .home-page .seen-on .inner-container .logo:nth-child(4), .home-page .seen-on .inner-container .logo:nth-child(5), .home-page .seen-on .inner-container .logo:nth-child(6) {
    width: 100px;
  }
  .home-page .section1,
  .home-page .section2,
  .home-page .section3,
  .home-page .section4,
  .home-page .section5,
  .home-page .section8,
  .home-page .section9,
  .home-page .section10,
  .home-page .section11 {
    padding: 60px 0px;
  }
  .home-page .section1 .inner-container,
  .home-page .section2 .inner-container,
  .home-page .section3 .inner-container,
  .home-page .section4 .inner-container,
  .home-page .section5 .inner-container,
  .home-page .section8 .inner-container,
  .home-page .section9 .inner-container,
  .home-page .section10 .inner-container,
  .home-page .section11 .inner-container {
    display: block;
  }
  .home-page .section1 .inner-container .left, .home-page .section1 .inner-container .image,
  .home-page .section2 .inner-container .left,
  .home-page .section2 .inner-container .image,
  .home-page .section3 .inner-container .left,
  .home-page .section3 .inner-container .image,
  .home-page .section4 .inner-container .left,
  .home-page .section4 .inner-container .image,
  .home-page .section5 .inner-container .left,
  .home-page .section5 .inner-container .image,
  .home-page .section8 .inner-container .left,
  .home-page .section8 .inner-container .image,
  .home-page .section9 .inner-container .left,
  .home-page .section9 .inner-container .image,
  .home-page .section10 .inner-container .left,
  .home-page .section10 .inner-container .image,
  .home-page .section11 .inner-container .left,
  .home-page .section11 .inner-container .image {
    width: 100%;
    height: 250px;
  }
  .home-page .section1 .inner-container .content,
  .home-page .section2 .inner-container .content,
  .home-page .section3 .inner-container .content,
  .home-page .section4 .inner-container .content,
  .home-page .section5 .inner-container .content,
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content,
  .home-page .section11 .inner-container .content {
    width: 100%;
    padding-left: unset;
    padding-right: unset;
    padding-top: 30px;
  }
  .home-page .section1 .inner-container .content h2,
  .home-page .section2 .inner-container .content h2,
  .home-page .section3 .inner-container .content h2,
  .home-page .section4 .inner-container .content h2,
  .home-page .section5 .inner-container .content h2,
  .home-page .section8 .inner-container .content h2,
  .home-page .section9 .inner-container .content h2,
  .home-page .section10 .inner-container .content h2,
  .home-page .section11 .inner-container .content h2 {
    max-width: 100%;
  }
  .home-page .section1 .inner-container .content button,
  .home-page .section2 .inner-container .content button,
  .home-page .section3 .inner-container .content button,
  .home-page .section4 .inner-container .content button,
  .home-page .section5 .inner-container .content button,
  .home-page .section8 .inner-container .content button,
  .home-page .section9 .inner-container .content button,
  .home-page .section10 .inner-container .content button,
  .home-page .section11 .inner-container .content button {
    width: 100%;
    height: 65px;
  }
  .home-page .section4 .inner-container .image {
    background-position-y: top;
  }
  .home-page .section5 .inner-container .image {
    background-position-y: bottom;
  }
  .home-page .section3 .inner-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .home-page .section3 .inner-container .image {
    background-position-y: center;
    margin-bottom: 40px;
  }
  .home-page .section3 .inner-container .content {
    padding-top: 0px;
  }
  .home-page .section3 .inner-container .content .block {
    padding: 30px 20px;
  }
  .home-page .section3 .inner-container .content .block h4 {
    margin-right: 20px;
  }
  .home-page .section4 .inner-container {
    padding-top: 0px;
  }
  .home-page .section4 .inner-container .cards {
    flex-direction: column;
  }
  .home-page .section6 {
    height: fit-content;
    background-position-x: center;
    background-attachment: unset;
  }
  .home-page .section6::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .home-page .section6 .inner-container {
    padding: 60px 0px;
  }
  .home-page .section6 .inner-container p {
    max-width: 90%;
    font-size: var(--fs-medium-large);
    line-height: var(--lh-large);
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  }
  .home-page .section6 .inner-container button {
    height: 58px;
  }
  .home-page .section7 {
    padding: 60px 0px;
  }
  .home-page .section7 .cards {
    flex-direction: column;
  }
  .home-page .section8 .inner-container .image,
  .home-page .section9 .inner-container .image,
  .home-page .section10 .inner-container .image {
    padding: 60px;
    border-radius: var(--br-small);
  }
  .home-page .section8 .inner-container .image img,
  .home-page .section9 .inner-container .image img,
  .home-page .section10 .inner-container .image img {
    max-width: 300px;
  }
  .home-page .section8 .inner-container .content,
  .home-page .section9 .inner-container .content,
  .home-page .section10 .inner-container .content {
    padding-bottom: 0px;
  }
  .home-page .section9 .inner-container,
  .home-page .section11 .inner-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .home-page .section11 .inner-container .image {
    height: 350px;
  }
  .home-page .pricing-section {
    padding: 60px 0px;
  }
  .home-page .pricing-section .inner-container .card {
    padding: 20px 17px;
  }
  .home-page .testimonials-section {
    padding: 60px 0px;
  }
  .home-page .testimonials-section .inner-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-page .testimonials-section .inner-container .person {
    width: 100%;
    max-width: 100%;
  }
  .home-page .testimonials-section .inner-container .person .profile .image {
    width: 60px;
  }
  .home-page .podcast-section .inner-container {
    flex-direction: column-reverse;
  }
  .home-page .podcast-section .inner-container .mockup {
    transform: unset;
    margin-left: unset;
    width: 100%;
  }
  .home-page .podcast-section .inner-container .content {
    padding: 60px 0px 0px 0px;
  }
  .home-page .podcast-section .inner-container .content .logo {
    width: 90%;
  }
  .home-page .podcast-section .inner-container .content .listen {
    width: 100%;
    max-width: 200px;
    margin: 0px auto;
    flex-direction: column;
    gap: 10px;
  }
  .home-page .podcast-section .inner-container .content .listen .platform {
    width: 100%;
  }
  .home-page footer {
    padding: 60px 0px;
  }
  .home-page footer .inner-container {
    display: block;
  }
  .home-page footer .inner-container .col1 {
    width: 100%;
    margin-bottom: 60px;
  }
  .home-page footer .inner-container .col1 h2 {
    font-size: var(--fs-extra-large);
  }
  .home-page footer .inner-container .col2 {
    width: 100%;
    text-align: center;
  }
  .home-page footer .inner-container .col2 .top {
    flex-direction: column;
  }
  .home-page footer .inner-container .col2 .top .logo {
    max-width: 300px;
    margin: 20px auto;
  }
  .home-page footer .inner-container .col2 h2 {
    text-align: center;
  }
  .home-page footer .inner-container .col2 .links {
    gap: 50px;
    flex-direction: column;
  }
  .home-page footer .inner-container .col2 .links .right, .home-page footer .inner-container .col2 .links .left {
    width: 100%;
    text-align: center;
  }
  .home-page footer .inner-container .to-top-btn {
    bottom: 195px;
    width: 50px;
    padding: 15px;
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
