@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  letter-spacing: -0.01em;
  color: #4a4a4a;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

/* ---  */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.mb-20 {
  margin-bottom: 80px;
}

.items-center {
  align-items: center;
}

.gap-3 {
  gap: 12px;
}

.gap-4\.5 {
  gap: 18px;
}

.gap-6 {
  gap: 24px;
}

.opacity-60 {
  opacity: 0.6;
}

.w-full {
  width: 100%;
}

/* ---- Home content css ---- */
.section-content {
  width: 90%;
  margin: 0 auto;
  padding: 48px 0;
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section-content {
    width: 95%;
    padding: 40px 0;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 48px;
  max-width: 500px;
}

.section-header__description {
  font-size: 16px;
  font-weight: 500;
  color: #737373;
  max-width: 400px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-header__description {
    font-size: 14px;
  }
}

.button-primary.home-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-primary {
  background-color: #6002ee;
  color: #ffffff;
}

.button-primary:hover {
  background-color: #4e00c7;
  box-shadow: 0px 4px 12px 0px rgba(96, 2, 238, 0.3);
}

.button-secondary {
  background-color: #ffffff;
  color: #171717;
  box-shadow: 0px 4px 4px 0px #1717170a;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.button-secondary:hover {
  border-color: #c5c7cc;
  box-shadow: 0px 4px 12px 0px rgba(23, 23, 23, 0.08);
}

.home-info-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f2f3;
  box-shadow: 0px 4px 4px 0px #1717170a;
  border-radius: 8px;
}

.home-info-box__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #6002ee;
}

.home-info-box__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #171717;
}

@media (max-width: 768px) {
  .home-info-box__title {
    font-size: 12px;
  }
}

.home-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-list-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #6002ee;
}

.home-list-item__title {
  font-weight: 500;
  font-size: 16px;
  color: #171717;
}

.lines-section {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.lines-section svg {
  width: 45%;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translateY(-30%);
}

.lines-section #lines4 {
  left: unset;
  right: 40%;
}

@media (max-width: 768px) {
  .lines-section {
    display: none;
  }
}

@media (max-width: 1150px) {
  .lines-section svg {
    left: 46%;
  }
}

.home-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 170px;
  background-image: url("/img/home/grid-background.png");
  background-repeat: no-repeat;
  background-position: top center;
}

@media (max-width: 768px) {
  .home-banner {
    padding-top: 104px;
  }
}

.home-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  max-width: 850px;
}

.home-banner__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #737373;
  font-size: 16px;
}

.home-banner__feature {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 1px #17171714, 0px 2px 6px 0px #0c0a0914;
}

.home-banner__feature p {
  background: linear-gradient(180deg, #616161 0%, #1c1c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.home-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-banner__video {
  margin-top: 76px;
  width: 100%;
  max-width: 1152px;
  position: relative;
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16 / 9) {
  .home-banner__video {
    padding-bottom: 56.25%;
  }
}

.home-banner__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-banner__video-container iframe {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.home-earn__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  margin-bottom: 16px;
}

.home-earn__content {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px #1717170a;
  background-color: #ffffff;
  z-index: 1;
}

@media (max-width: 768px) {
  .home-earn__content {
    flex-direction: column-reverse;
  }
}

.home-earn__left {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
  flex-basis: 36%;
}

.home-earn__right {
  flex: 1;
}

.home-earn__card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #ebebec;
  border-radius: 12px;
  padding: 4px;
  transition: all 0.3s ease;
  backdrop-filter: blur(24px);
  cursor: pointer;
}

.home-earn__card:hover {
  background: #f7f7f7;
}

.home-earn__card.is-active {
  background-color: #f7f7f7;
}

.home-earn__card.is-active .home-earn__card-icon--wrapper {
  background: linear-gradient(0deg, #ae7ff4 0%, rgba(255, 255, 255, 0) 100%);
}

.home-earn__card.is-active .home-earn__card-icon--box {
  background: linear-gradient(
      180deg,
      rgba(240, 230, 255, 0.7) 0%,
      rgba(185, 139, 254, 0.7) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.home-earn__card.is-active .home-earn__card-icon svg path {
  stroke: #6002ee;
}

.home-earn__card-icon {
  width: 30px;
  height: 30px;
  margin: auto;
}

.home-earn__card-icon--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 27 / 37;
  border-radius: 8px;
  border: 1px solid #ebebec;
  backdrop-filter: blur(24px);
  background-color: #f4f4f4;
  width: 100px;
  flex-shrink: 0;
}

.home-earn__card-icon--border {
  display: flex;
  box-shadow: inset 0 0 0 2px #ffffff;
  border-radius: 20px;
  padding: 6px;
  width: 70%;
  aspect-ratio: 1 / 1;
}

.home-earn__card-icon--box {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(
      180deg,
      rgba(240, 230, 255, 0.7) 0%,
      rgba(185, 139, 254, 0.7) 100%
    );
}

.home-earn__card-text {
  font-size: 15px;
  color: #737373;
  line-height: 1.6;
  margin: 0;
}

.home-earn__preview {
  width: 100%;
  border-radius: 12px;
  position: sticky;
  top: 104px;
  background-color: #f8fafb;
  backdrop-filter: blur(24px);
  border: 1px solid #ebebec;
  padding: 32px;
  overflow: hidden;
}

.home-earn__preview::before {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #6002ee 40%, rgba(255, 255, 255, 0) 100%),
    url("/img/home/grid-background-light.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-earn__preview img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  position: relative;
}

.home-build__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-build__content:first-child .home-build__cards {
  display: flex;
  gap: 24px;
}

.home-build__content:first-child .home-build__cards:first-child {
  flex-basis: 40%;
}

.home-build__content:first-child .home-build__cards:last-child {
  flex: 1;
}

.home-build__content:last-child .home-build__cards {
  display: flex;
  gap: 24px;
}

.home-build__content:last-child .home-build__cards:first-child {
  flex-basis: 60%;
}

.home-build__content:last-child .home-build__cards:last-child {
  flex: 1;
}

@media (max-width: 768px) {
  .home-build__cards {
    flex-direction: column;
  }
}

.home-build__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0px 1px 1px 1px #00000005;
}

.home-build__image {
  overflow: hidden;
  border-radius: 12px;
}

.home-build__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-build__text {
  font-weight: 500;
}

.home-build__text-title {
  font-size: 20px;
  color: #000000;
  margin-bottom: 8px;
}

.home-build__text-description {
  font-size: 18px;
  color: #00000099;
}

.home-members {
  overflow: visible;
  position: relative;
  width: 100%;
}

.home-members-wrapper {
  background: url("/img/home/home_members_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.home-members-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-members__gallery-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 48px;
  z-index: 2;
}

.home-members__gallery-wrapper::before,
.home-members__gallery-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.home-members__gallery-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.home-members__gallery-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.home-members__gallery-strip {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
  background-color: #f8fafb;
  animation: scroll-left 60s linear infinite;
}

.home-members__gallery-strip:hover {
  animation-play-state: paused !important;
}

.home-members__gallery-strip:active {
  animation-play-state: paused !important;
}

.home-members > .section-content {
  padding-bottom: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

.home-members__card {
  position: relative;
  padding-bottom: 120px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.home-members__card-banner {
  width: 439px;
  height: 247px;
}

.home-members__card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .home-members__card-banner {
    width: 266px;
    height: 150px;
  }
}

.home-members__card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffff1a;
  backdrop-filter: blur(19.77411651611328px);
  border: 0.93px solid #ffffff66;
  border-radius: 8px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-members__card-badge.paid-badge {
  border: 0.93px solid #1df51166;
  background: #1df5111a;
}

.home-members__card-badge.paid-badge span {
  color: #1df511;
}

.home-members__card-badge.paid-badge svg path {
  stroke: #1df511;
}

.home-members__card-badge svg {
  width: 20px;
  height: 20px;
}

.home-members__card-badge span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1050px) {
  .home-members__card-badge {
    top: 6px;
    right: 6px;
  }

  .home-members__card-badge span {
    font-size: 10px;
  }

  .home-members__card-badge svg {
    width: 12px;
    height: 12px;
  }
}

.home-members__card-avatar {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}

.home-members__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 1050px) {
  .home-members__card-avatar {
    width: 54px;
    height: 54px;
  }
}

.home-members__card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 20px;
  text-align: center;
  z-index: 0;
}

.home-members__card-size {
  font-size: 12px;
  color: #007aff;
  font-weight: 500;
  margin-bottom: 8px;
}

.home-members__card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-members__card-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff99;
}

.home-members__card-stat svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1050px) {
  .home-members__card-stat {
    font-size: 10px;
  }

  .home-members__card-stat svg {
    width: 15px;
    height: 15px;
  }
}

.home-members__card-online-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #363636;
  background: #7dce00;
}

@media (max-width: 1050px) {
  .home-members__card-online-dot {
    width: 8px;
    height: 8px;
  }
}

.home-members__engage {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  margin-top: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px #0000000d;
  background-color: #eff0f1;
}

@media (max-width: 768px) {
  .home-members__engage {
    flex-direction: column;
    margin-top: 0px;
  }
}

.home-members__engage::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #a474f0 0%, rgba(255, 255, 255, 0) 100%);
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}

.home-members__engage-first {
  flex-basis: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("/img/home/home_members_engage_bg.png");
  background-repeat: no-repeat;
  background-position: 20px 85%;
  background-size: 96%;
}

.home-members__engage-first-image {
  width: 52%;
  position: absolute;
  top: 5%;
  right: 6%;
  z-index: 2;
  box-shadow: -27.03px 34.31px 96.69px 0px #5f02ea1f,
    -108.13px 138.28px 175.71px 0px #5f02ea1a,
    -243.28px 311.9px 237.05px 0px #5f02ea0f,
    -432.51px 554.15px 259.92px 0px #5f02ea05,
    -675.79px 865.01px 259.92px 0px #5f02ea00;
  border-radius: 12px;
}

.home-members__engage-first-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-members__engage-first {
    height: 500px;
    flex-basis: auto;
  }

  .home-members__engage-first-image {
    box-shadow: -22.33px 28.34px 79.86px 0px #5f02ea1f,
      -89.31px 114.21px 145.13px 0px #5f02ea1a,
      -200.95px 257.62px 195.79px 0px #5f02ea0f,
      -357.24px 457.71px 214.69px 0px #5f02ea05,
      -558.18px 714.47px 214.69px 0px #5f02ea00;
  }
}

@media (max-width: 578px) {
  .home-members__engage-first {
    height: 400px;
  }
}

@media (max-width: 460px) {
  .home-members__engage-first-image {
    width: 80%;
  }
}

.home-members__engage-second {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid #ebebec;
  border-radius: 8px;
  background: linear-gradient(
      180deg,
      #ffffff 37.74%,
      rgba(255, 255, 255, 0.5) 100%
    ),
    url("/img/home/grid-background-medium.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  align-items: flex-start;
  z-index: 1;
  box-shadow: -33px 43px 119px 0px #6310e01a, -130px 173px 216px 0px #6310e017,
    -293px 389px 250px 0px #6310e00d, -520px 691px 250px 0px #6310e003,
    -813px 1079px 250px 0px #6310e000;
}

.home-members__engage-second p {
  color: #61646b;
  font-size: 18px;
  font-weight: 500;
}

.home-members__engage-second-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-growth__tabs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 24px;
  padding: 6px;
  background-color: #ffffff;
  border: 1px solid #ebebec;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .home-growth__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

.home-growth__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #737373;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-growth__tab:hover {
  color: black;
}

.home-growth__tab:hover .home-growth__tab-icon svg path {
  fill: #000000;
}

.home-growth__tab.is-active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.home-growth__tab.is-active .home-growth__tab-icon svg path {
  fill: #ffffff;
}

.home-growth__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.home-growth__tab-icon svg {
  width: 100%;
  height: 100%;
}

.home-growth__preview {
  margin-top: 32px;
}

.home-growth__preview img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-growth__feedbacks {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 32px;
  position: relative;
  padding: 24px 0;
}

.home-growth__feedbacks-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 150s linear infinite;
  width: max-content;
}

.home-growth__feedbacks-track:hover {
  animation-play-state: paused;
}

.home-growth__feedbacks-track-wrapper::before,
.home-growth__feedbacks-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.home-growth__feedbacks-track-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.home-growth__feedbacks-track-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.home-growth__feedback-card {
  flex-shrink: 0;
  width: 400px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ebebec;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 4px 4px 0px #1717170a;
}

.home-growth__feedback-content {
  position: relative;
}

.home-growth__feedback-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #3a3c40;
  margin: 0;
  position: relative;
}

.home-growth__feedback-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-growth__feedback-text.truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.6em;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.home-growth__feedback-text.expanded::after {
  display: none;
}

.home-growth__feedback-text span {
  color: #6002ee;
}

.home-growth__feedback-read-more {
  color: #6002ee;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  transition: opacity 0.2s;
  text-align: left;
}

.home-growth__feedback-read-more:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.home-growth__feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.home-growth__feedback-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.home-growth__feedback-name {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.home-growth__feedback-username {
  font-size: 14px;
  line-height: 16px;
  color: #9ea0a4;
  margin: 0;
}

.home-growth__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-scale {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px #0000000d;
  background-color: #eff0f1;
}

@media (max-width: 768px) {
  .home-scale {
    flex-direction: column;
  }
}

.home-scale::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #f8ba8e 0%, rgba(255, 255, 255, 0) 100%);
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}

.home-scale-first {
  flex-basis: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("/img/home/home_scale_bg.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media (max-width: 768px) {
  .home-scale-first {
    height: 500px;
    flex-basis: auto;
  }
}

.home-scale-second {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid #ebebec;
  border-radius: 8px;
  background: linear-gradient(
      180deg,
      #ffffff 37.74%,
      rgba(255, 255, 255, 0.5) 100%
    ),
    url("/img/home/grid-background-medium.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  align-items: flex-start;
  z-index: 1;
  box-shadow: -33px 43px 119px 0px #f27e021a, -130px 173px 216px 0px #f27e0217,
    -293px 389px 250px 0px #f27e020d, -520px 691px 250px 0px #f27e0203,
    -813px 1079px 250px 0px #f27e0200;
}

.home-scale-second h2 {
  color: #131415;
  font-size: 36px;
}

.home-scale-second p {
  color: #61646b;
  font-size: 18px;
  font-weight: 500;
}

.home-scale-second-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-scale .home-info-box__dot,
.home-scale .home-list-item__dot {
  background-color: #f27e02;
}

.home-future__paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background-color: #f8fafb;
}

@media (max-width: 768px) {
  .home-future__paths {
    grid-template-columns: 1fr;
  }
}

.home-future__path-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ebebec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px #1717170a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.home-future__path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px 0px #1717171a;
}

.home-future__path-image {
  width: 100%;
}

.home-future__path-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-future__path-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .home-future__path-content {
    padding: 20px;
  }
}

.home-future__path-description {
  font-size: 16px;
  font-weight: 400;
  color: #00000099;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .home-future__path-description {
    font-size: 18px;
  }
}

/* ------- Home Container -------- */

.home-container {
  width: auto;
  position: relative;
  font-family: "Inter", sans-serif;
  height: min-content;
  background-color: #f8fafb;
  min-height: 100vh;
  background-image: url("/img/home/home_conner_left.png"),
    url("/img/home/home_conner_right.png");
  background-position: top left, top right;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

@media (max-width: 1024px) {
  .home-container {
    background-size: 50%, 50%;
  }
}

@media (max-width: 768px) {
  .home-container {
    background-position: top left, 100% 130px;
  }
}

@media (max-width: 540px) {
  .home-container {
    background-position: 0px 54px, 100% 230px;
  }
}

@media (max-width: 400px) {
  .home-container {
    background-position: 0px 54px, 100% 320px;
  }
}

.home-container p {
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

.home-container h1 {
  font-weight: 600;
  text-align: center;
  line-height: 120%;
  color: #ffffffe6;
  font-size: 60px;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  width: 100%;
}

.home-container h1.home-banner__heading {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 56px;
  text-align: center;
  color: #171717;
  line-height: normal;
  white-space: unset;
}

.home-container h1.home-banner__heading span {
  color: #878889;
}

@media (max-width: 768px) {
  .home-container h1.home-banner__heading {
    font-size: 36px;
  }
}

.home-container h4 {
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  width: 100%;
}

.home-container h3 {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 40px;
  line-height: 120%;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
}

.home-container h3.home-earn__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 12px 0;
}

.home-container h3.home-members__card-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 12px;
}

@media (max-width: 1050px) {
  .home-container h3.home-members__card-title {
    font-size: 14px;
  }
}

.home-container h3.home-future__path-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .home-container h3.home-future__path-title {
    font-size: 20px;
  }
}

.home-container h2 {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 48px;
  line-height: 120%;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
}

.home-container h2.section-header__title {
  font-size: 36px;
  font-weight: 600;
  color: #171717;
  white-space: normal;
}

.home-container h2.section-header__title span {
  color: #6002ee;
}

.home-container .home-members__engage-second h2 {
  color: #131415;
  font-size: 36px;
}

.home-container .home-scale-second-feature h2 {
  color: #131415;
  font-size: 36px;
}

@media (max-width: 768px) {
  .home-container h2.section-header__title {
    font-size: 24px;
  }
}

.home-text--head-spacing {
  letter-spacing: -2%;
}

.home-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  color: #00000099;
  transition: color 0.12s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-link:hover {
  text-decoration: underline;
  color: #000000e6;
}

.home-link__button {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  background: rgba(0, 0, 0, 0);
}

.home-link__button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.home-link--mobile {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}

.home-link--mobile:hover {
  text-decoration: underline;
  color: #000000e6;
}

.home-button {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.05) 0px 8px 7.7px 0px inset;
  cursor: pointer;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  position: relative;
  overflow: visible;
  transition: background 0.3s ease-in;
}

.home-button p {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6em;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.3s ease-in;
}

.home-button--big {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  height: 52px;
}

.home-button--big p {
  font-size: 16px;
  line-height: 24px;
}

.home-button--reverse {
  background-color: rgb(255, 255, 255, 0.9);
}

.home-button--reverse p {
  color: rgb(14, 14, 14);
}

.home-button--reverse:hover {
  background-color: rgb(8, 103, 255);
}

.home-button--reverse:hover p {
  color: #ffffff;
}

.home-button--gradient {
  background: linear-gradient(
    89deg,
    rgba(64, 76, 95, 0.25) 0%,
    rgba(90, 115, 155, 0.25) 50%,
    rgba(64, 76, 95, 0.25) 100%
  );
}

.home-button--gradient:hover {
  background: rgba(255, 255, 255, 0.04)
    linear-gradient(
      89deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.04) 50%,
      rgba(255, 255, 255, 0.04) 100%
    );
}

.home-button--gradient:hover p {
  color: #ffffff;
}

.home-header {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center space-between;
  align-items: center;
  width: 1px;
  max-width: 1280px;
  height: 72px;
  padding: 16px;
  display: flex;
  position: relative;
  overflow: visible;
  border: 1px solid #0000001a;
  border-radius: 16px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .home-header {
    height: 56px;
    border: none;
    border-bottom: 1px solid #0000001a;
    border-radius: 0;
    padding: 12px 16px;
  }
}

.home-header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 170px;
}

.home-header__logo-icon {
  width: 24px;
  height: auto;
}

.home-header__nav-desktop {
  display: flex;
  align-items: center;
  gap: 44px;
}

@media (max-width: 768px) {
  .home-header__nav-desktop {
    display: none;
  }
}

.home-header__actions-desktop {
  display: flex;
  align-items: center;
  gap: 48px;
}

@media (max-width: 768px) {
  .home-header__actions-desktop {
    display: none;
  }
}

.home-header__actions-mobile {
  display: none;
}

@media (max-width: 768px) {
  .home-header__actions-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.home-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0000001a;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s ease;
}

.home-header__menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.home-header__button {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 8px;
  line-height: 16px;
  background: #0d0d12;
}

.home-header__button:hover {
  background: rgba(13, 13, 18, 0.85);
}

.home-header__button span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #f2eefe;
}

.home-header__button--mobile {
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-header__logo-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.04em !important;
  color: #111111;
}

.home-header-container {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  flex: none;
  transform: translate(-50%);
}

.home-header-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  overflow: visible;
  place-content: center;
  gap: 241px;
  height: min-content;
}

@media (max-width: 768px) {
  .home-header-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
  }
}

.home-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.3s;
}

.home-mobile-menu--open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

.home-mobile-menu--open .home-mobile-menu__overlay {
  opacity: 1;
}

.home-mobile-menu--open .home-mobile-menu__panel {
  transform: translateY(0);
}

.home-mobile-menu__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 70vh;
  background: #ffffff;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.home-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  height: 56px;
  border-bottom: 1px solid #0000001a;
}

.home-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s ease;
}

.home-mobile-menu__close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.home-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  gap: 32px;
}

.home-mobile-menu__link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 16px;
  color: #00000099;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-mobile-menu__link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000e6;
}

.home-mobile-menu__footer {
  margin-top: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #0000001a;
}

.home-footer {
  width: auto;
  padding-top: 24px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
  border-top: 1px solid #efe6fd;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .home-footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.home-footer__to-top {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  bottom: 48px;
  background: #6002ee;
}

@media (min-width: 768px) {
  .home-footer__to-top {
    right: 4px;
  }
}

.home-footer__to-top svg {
  height: 16px;
  width: auto;
  color: #ffffff;
}

.home-footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.home-footer__content-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-footer__content-right {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

@media (min-width: 768px) {
  .home-footer__content {
    flex-direction: row;
    gap: 0;
  }

  .home-footer__content-right {
    gap: 96px;
    flex-wrap: nowrap;
  }

  .md\:basis-auto {
    flex-basis: auto;
  }
}

.home-footer__logo {
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3.87px 7.74px 0px #ffffff40 inset;
  width: 46px;
  height: 46px;
  border: 1.29px solid #00000026;
}

.home-footer__head-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #131415;
}

.home-footer__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #61646b;
}

a.home-footer__text:hover {
  color: #363636;
}

.footer-daom-link {
  color: inherit;
  text-decoration: none;
}

.footer-daom-link:hover {
  text-decoration: underline;
}

.home-footer__wrapper {
  width: 100%;
  margin-top: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/img/home/home_footer_bg.png);
}

.home-footer__divider {
  height: 1px;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  background: #efe6fd;
}

.home-text svg {
  width: 28px;
  height: 28px;
  color: #4d4d4d;
  opacity: 0.9;
}

.home-text svg:hover {
  opacity: 1;
  color: #000000;
}

/* --- progressive-blur --- */

.progressive-blur {
  z-index: -1;
  position: absolute;
  pointer-events: none;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.progressive-blur > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.progressive-blur.from-bottom {
  height: 214px;
}

.progressive-blur.from-bottom > div:nth-child(1) {
  z-index: 7;
  backdrop-filter: blur(calc(36px / 64));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-bottom > div:nth-child(2) {
  z-index: 6;
  backdrop-filter: blur(calc(36px / 32));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 95%);
}

.progressive-blur.from-bottom > div:nth-child(3) {
  z-index: 5;
  backdrop-filter: blur(calc(36px / 16));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-bottom > div:nth-child(4) {
  z-index: 4;
  backdrop-filter: blur(calc(36px / 8));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 80%);
}

.progressive-blur.from-bottom > div:nth-child(5) {
  z-index: 3;
  backdrop-filter: blur(calc(36px / 4));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 60%);
}

.progressive-blur.from-bottom > div:nth-child(6) {
  z-index: 2;
  backdrop-filter: blur(calc(36px / 2));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 40%);
}

.progressive-blur.from-bottom > div:nth-child(7) {
  z-index: 1;
  backdrop-filter: blur(calc(36px / 1));
  mask: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 20%);
}

.progressive-blur.from-top {
  height: 214px;
}

.progressive-blur.from-top > div:nth-child(1) {
  z-index: 7;
  backdrop-filter: blur(calc(36px / 64));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-top > div:nth-child(2) {
  z-index: 6;
  backdrop-filter: blur(calc(36px / 32));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 95%);
}

.progressive-blur.from-top > div:nth-child(3) {
  z-index: 5;
  backdrop-filter: blur(calc(36px / 16));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-top > div:nth-child(4) {
  z-index: 4;
  backdrop-filter: blur(calc(36px / 8));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 80%);
}

.progressive-blur.from-top > div:nth-child(5) {
  z-index: 3;
  backdrop-filter: blur(calc(36px / 4));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 60%);
}

.progressive-blur.from-top > div:nth-child(6) {
  z-index: 2;
  backdrop-filter: blur(calc(36px / 2));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 40%);
}

.progressive-blur.from-top > div:nth-child(7) {
  z-index: 1;
  backdrop-filter: blur(calc(36px / 1));
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 20%);
}

.progressive-blur.from-left {
  width: 214px;
}

.progressive-blur.from-left > div:nth-child(1) {
  z-index: 7;
  backdrop-filter: blur(calc(36px / 64));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-left > div:nth-child(2) {
  z-index: 6;
  backdrop-filter: blur(calc(36px / 32));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 95%);
}

.progressive-blur.from-left > div:nth-child(3) {
  z-index: 5;
  backdrop-filter: blur(calc(36px / 16));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-left > div:nth-child(4) {
  z-index: 4;
  backdrop-filter: blur(calc(36px / 8));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 80%);
}

.progressive-blur.from-left > div:nth-child(5) {
  z-index: 3;
  backdrop-filter: blur(calc(36px / 4));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 60%);
}

.progressive-blur.from-left > div:nth-child(6) {
  z-index: 2;
  backdrop-filter: blur(calc(36px / 2));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 40%);
}

.progressive-blur.from-left > div:nth-child(7) {
  z-index: 1;
  backdrop-filter: blur(calc(36px / 1));
  mask: linear-gradient(to right, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 20%);
}

.progressive-blur.from-right {
  width: 214px;
}

.progressive-blur.from-right > div:nth-child(1) {
  z-index: 7;
  backdrop-filter: blur(calc(36px / 64));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-right > div:nth-child(2) {
  z-index: 6;
  backdrop-filter: blur(calc(36px / 32));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 95%);
}

.progressive-blur.from-right > div:nth-child(3) {
  z-index: 5;
  backdrop-filter: blur(calc(36px / 16));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur.from-right > div:nth-child(4) {
  z-index: 4;
  backdrop-filter: blur(calc(36px / 8));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 80%);
}

.progressive-blur.from-right > div:nth-child(5) {
  z-index: 3;
  backdrop-filter: blur(calc(36px / 4));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 60%);
}

.progressive-blur.from-right > div:nth-child(6) {
  z-index: 2;
  backdrop-filter: blur(calc(36px / 2));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 40%);
}

.progressive-blur.from-right > div:nth-child(7) {
  z-index: 1;
  backdrop-filter: blur(calc(36px / 1));
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 20%);
}

/* 14-inch MacBook optimization (1512px viewport) */
@media (max-width: 1512px) {
  .section-content {
    max-width: 1280px;
  }

  .lines-section {
    max-width: 1280px;
  }

  .home-container h1 {
    font-size: 52px;
  }

  .home-container h1.home-banner__heading {
    font-size: 48px;
  }

  .home-container h2 {
    font-size: 42px;
  }

  .home-container h2.section-header__title {
    font-size: 32px;
  }
}
