@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 675px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 323px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Helvetica", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: linear-gradient(to right, #e8e5f8 0%, #f1effc 50%, #e8e5f8 100%);
  scroll-behavior: smooth;
  height: 100%;
}

.hide {
  display: none !important;
}

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

@media only screen and (max-width: 600px) {
  .helper-text-align-center--below6h {
    text-align: center;
  }
}

.nullify-margin-bottom-addfour {
  margin-bottom: 0.4rem !important;
}

.to-lower-case {
  text-transform: lowercase;
}

.mt-24 {
  margin-top: 2.4rem !important;
}

.right-arrow-icon {
  font-size: 1.2rem;
  vertical-align: middle;
  margin: 0 0.3rem;
  color: inherit; /* or use a theme color */
}

.mb--threepointsix {
  margin-bottom: 3.6rem !important;
}

.header {
  height: 56px;
  padding: 0 2.4rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.02rem;
}
@media only screen and (max-width: 1160px) {
  .header {
    padding: 0 0.8rem 0 0rem;
  }
}

.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.sticky .main-section {
  margin-top: 56px;
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-nav__logo {
  height: 5.2rem;
  margin-left: 2.5rem;
}
.header-nav__name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #3c2de9;
  margin-left: 1.5rem;
}

body.mbnav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mbnav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.mbnav__brand {
  align-self: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .mbnav__brand {
    column-gap: 0.2rem;
  }
}
.mbnav__brand:link, .mbnav__brand:visited {
  text-decoration: none;
}
.mbnav__brand-logo {
  height: 55px;
  width: auto;
}
.mbnav__brand-name {
  font-weight: bolder;
  color: #3c2de9;
  font-size: 23px;
  font-family: "Merienda One", sans-serif;
}
@media only screen and (max-width: 800px) {
  .mbnav__movable-box {
    position: absolute;
    top: 56px;
    right: 0;
    background: rgb(255, 255, 255);
    width: 100%;
    box-sizing: border-box;
    padding: 4.8rem 2.4rem;
    z-index: 3;
    height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__movable-box {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0%);
    transition: all 0.5s ease-in;
  }
}
.mbnav__loggedin-box {
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  color: rgb(159, 77, 182);
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
  }
}
.mbnav__loggedin-box__profile {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 8px;
  background-color: #fff;
  padding: 0 24px;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile {
    justify-content: start;
    padding-left: 8px;
    column-gap: 16px;
  }
}
.mbnav__loggedin-box__profile-img {
  display: inline-block;
  height: 48px;
  width: 48px;
}
.mbnav__loggedin-box__profile-icon {
  font-size: 24px;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile-icon {
    font-size: 32px;
  }
}
.mbnav__loggedin-box__dropd-btn {
  background: none;
  border: none;
  outline: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgb(159, 77, 182);
  display: inline-block;
  margin: 0 16px; /* Adjust spacing */
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__dropd-btn {
    margin: 0 16px 0 24px;
  }
}
.mbnav__loggedin-box__dropd-btn:focus, .mbnav__loggedin-box__dropd-btn:focus-visible {
  outline: none;
}
.mbnav__dropdown-box {
  position: relative;
}
.mbnav__dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  background: #fff;
  padding: 24px 0px;
  width: 237px;
  box-shadow: 0px 6px 10px -2px rgba(0, 0, 0, 0.15); /* Removes top shadow */
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: scroll;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list {
    width: 100%;
    position: relative;
    top: 0%;
    left: 50%;
    box-shadow: none;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
    padding: 28px 0px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 300px;
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
    max-height: 500px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
  transform: rotate(180deg);
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
    transform: rotate(0deg);
  }
}
.mbnav__dropdown-list--item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list--item {
    border-bottom: 1px solid #c1c2d5;
  }
}
.mbnav__dropdown-list--item i {
  color: #3c2de9;
  font-size: 16px;
}
.mbnav__dropdown-list--item .icon-home {
  font-size: 18px;
}
.mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #3c2de9;
  background-color: #fff;
  padding: 16px 24px;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
    padding-left: 8px;
    font-size: 14px;
    padding: 28px 8px;
  }
}
.mbnav__link-dropdown:hover, .mbnav__link-dropdown:active {
  background-color: #e0e0e0;
}
.mbnav__dropdown-list__pm {
  color: #333;
}
.mbnav__list {
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mbnav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav__list-item {
    width: 100%;
  }
}
.mbnav__link-cta:link, .mbnav__link-cta:visited {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #3c2de9;
  border: none;
  color: #fff;
  border-radius: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta:link, .mbnav__link-cta:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
.mbnav__link-cta:hover, .mbnav__link-cta:active {
  background-color: #211884;
}
.mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
  display: inline-block;
  font-size: 1.2rem;
  background-color: #fff;
  color: #3c2de9;
  box-shadow: inset 0 0 0 1px #3c2de9;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.6rem;
  }
}
.mbnav__link-cta.mbnav__link-cta--secondary:hover, .mbnav__link-cta.mbnav__link-cta--secondary:active {
  background-color: #e0e0e0;
}
.mbnav__button {
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: none;
}
@media only screen and (max-width: 800px) {
  .mbnav__button {
    display: flex;
  }
}
.mbnav__button:focus, .mbnav__button:focus-visible {
  outline: none;
}
.mbnav__menu-outline {
  height: 30px;
  width: 30px;
}
.mbnav__menu-outline__line {
  width: 24px;
  height: 2px;
  background: rgb(125, 125, 125);
  transition: 0.3s;
}
.mbnav__menu-outline__l1 {
  margin-top: 6px;
}
.mbnav__menu-outline__l2 {
  margin-top: 6px;
}
.mbnav__menu-outline__l3 {
  margin-top: 6px;
}
.mbnav__close-outline {
  height: 30px;
  width: 30px;
  position: relative;
  display: none;
}
.mbnav__close-outline::before, .mbnav__close-outline::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgb(125, 125, 125);
  position: absolute;
  left: 6px;
  transform: translate(0, -100%);
}
.mbnav__close-outline::before {
  transform-origin: left bottom;
  top: 6px;
  transform: rotate(45deg);
}
.mbnav__close-outline::after {
  top: 22px;
  transform-origin: left top;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__menu-outline {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__close-outline {
    display: block;
  }
}

.heading-h1 {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.26px;
  color: rgb(51, 51, 51);
}

.heading-h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  color: #000;
  background-image: linear-gradient(to right, rgb(51, 51, 51), rgba(51, 51, 51, 0.6));
  -webkit-background-clip: text; /* For Safari */
  background-clip: text;
  color: transparent; /* Make text transparent to show gradient */
}
.heading-h2--small {
  text-transform: uppercase;
  font-size: 2rem;
  font-size: 1.6rem;
  color: rgb(159, 77, 182);
  letter-spacing: 3px;
}

.heading-h3 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.26px;
  color: #000;
}
.heading-h3--white {
  color: #ffffff;
}
.heading-h3--black {
  color: #000000;
}
.heading-h3--small {
  font-size: 2.4rem;
  color: #ffffff;
  letter-spacing: 3px;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: #000;
}

h5 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #494949;
}

p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
}

.h3-subHeading {
  font-weight: 300;
  margin-bottom: 6.8rem;
  color: #3b3b3b;
}
.h3-subHeading__grey {
  color: #aaa;
}
.h3-subHeading__black {
  color: #000;
}

@media only screen and (max-width: 600px) {
  .benefitDcl-padding {
    padding: 0 1rem;
  }
}

.mb--small {
  margin-bottom: 2.4rem;
}

.mb--verysmall {
  margin-bottom: 1.6rem;
}

.mb--vvsmall {
  margin-bottom: 0.8rem;
}

.mb--smallNeg {
  margin-bottom: -2.4rem;
}

.mt--small {
  margin-top: 2.4rem;
}

.container__center {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.ml--columnGap {
  margin-left: 2.4rem;
}

.stretch {
  transform: scale(1.5);
}

.arrow-line {
  width: 16px;
  height: 3px;
  background-color: #666;
}
@media only screen and (max-width: 500px) {
  .arrow-line {
    background-color: #909090;
  }
}
.arrow-line-left {
  transform-origin: right bottom;
  rotate: 30deg;
  border-bottom-right-radius: 1px;
}
.arrow-line-right {
  transform-origin: left bottom;
  rotate: -30deg;
  border-bottom-left-radius: 1px;
}

.svgIcons {
  max-height: 100%;
  width: auto;
  fill: #7e63f8;
  stroke: none;
}
.svgIcons__list {
  max-height: 1.6rem;
  width: 1.6rem;
  fill: #494949;
  stroke: none;
  margin-top: 0.4rem;
}
.svgIcons__list-psychology {
  fill: none;
  stroke: #494949;
}
.svgIcons--dcl-card-icon {
  fill: #fff;
}

.benefit__countBox,
.dcl__countBox {
  display: none;
  position: absolute;
  padding: 0.2rem 0.8rem 0.1rem 0.8rem;
  border-radius: 10px;
}

.benefit__countBox {
  top: 2%;
  right: 4%;
  background-color: #e5e4f7;
}
@media only screen and (max-width: 600px) {
  .benefit__countBox {
    display: block;
  }
}

.dcl__countBox {
  top: 3%;
  right: 4%;
  background-color: rgba(200, 200, 220, 0.2);
}
@media only screen and (max-width: 1600px) {
  .dcl__countBox {
    display: block;
  }
}

.benefit__count,
.dcl__count {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.benefit__count {
  color: #494949;
}

.dcl__count {
  color: rgba(255, 255, 255, 0.6);
}

.hero__container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  display: grid;
  grid-template-columns: minmax(66rem, 690fr) 500fr;
  grid-template-rows: auto auto auto auto auto;
  row-gap: 1.6rem;
  background: transparent;
}
@media only screen and (max-width: 1000px) {
  .hero__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
  }
}
.hero__heading {
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 550px) {
  .hero__heading-h1 {
    font-size: 2.3rem;
    letter-spacing: -1px;
  }
}
.hero__heading--desc {
  font-size: 2rem;
  color: #3b3b3b;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1.2rem;
  animation: moveInRight 1.5s ease-in;
}
@media only screen and (max-width: 550px) {
  .hero__heading--desc {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
.hero__points {
  list-style: none;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 500px) {
  .hero__points {
    background: none;
  }
}
.hero__points--point {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 2px;
  margin-top: 4px;
  padding: 4px 16px;
  border-radius: 1.5rem;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
}
@media only screen and (max-width: 500px) {
  .hero__points--point {
    color: rgb(60, 60, 60);
    font-size: 1.3rem;
    font-size: 1.4rem;
  }
}
.hero__points--point-3 {
  margin-right: 5rem;
}
@media only screen and (max-width: 450px) {
  .hero__points--point-3 {
    margin-right: 0rem;
    padding-right: 1.2rem;
  }
}
.hero__h2 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 2.4rem;
}
.hero-images-new {
  grid-column: 2/3;
  grid-row: 1/-1;
  position: relative;
}
@media only screen and (max-width: 850px) {
  .hero-images-new {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.hero__images {
  grid-column: 2/3;
  grid-row: 1/-1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .hero__images {
    grid-column: 1/-1;
    grid-row: 2/3;
    margin-top: 1.6rem;
    height: 200px;
    width: auto;
  }
}
.hero__images::after {
  display: block;
  width: 12rem;
  height: 27.4rem;
  background-color: #c8c8e5;
  box-shadow: 7rem 5rem 6.8rem 0rem rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 15%;
  z-index: 0;
  animation: opacityIncrease 1.5s ease-in;
}
@media only screen and (max-width: 1000px) {
  .hero__images::after {
    height: 294px;
    width: 100px;
  }
}
@media only screen and (max-width: 850px) {
  .hero__images::after {
    width: 60px;
    height: 160px;
    box-shadow: 4rem 1.5rem 3rem 0 rgba(0, 0, 0, 0.15);
    top: 10%;
  }
}
.hero__images::before {
  content: "";
  position: absolute;
  display: block;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  aspect-ratio: 1/1;
  border-radius: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35), rgba(126, 119, 248, 0.1) 45%, transparent 70%);
  box-shadow: 0 2.4rem 4.8rem rgba(60, 45, 233, 0.12), 0 1rem 2rem rgba(0, 0, 0, 0.04);
  z-index: 1;
}
@media only screen and (max-width: 1000px) {
  .hero__images::before {
    width: 150px;
    top: 30%;
  }
}
.hero img {
  width: 220px;
  height: auto;
}
@media only screen and (max-width: 1000px) {
  .hero img {
    height: 200px;
    width: auto;
  }
}
@media only screen and (max-width: 850px) {
  .hero img {
    height: 200px;
    width: auto;
    top: 11%;
  }
}
.hero__img--1 {
  display: block;
  position: absolute;
  top: 31%;
  margin-right: 41px;
  z-index: 2;
  animation: moveInLeft 1.5s ease-in;
}
@media only screen and (max-width: 1000px) {
  .hero__img--1 {
    top: 10%;
    margin-right: 22px;
    position: absolute;
  }
}
@media only screen and (max-width: 850px) {
  .hero__img--1 {
    margin-right: 22px;
    position: absolute;
  }
}
.hero__img--2 {
  display: block;
  position: absolute;
  top: 31%;
  margin-left: 41px;
  z-index: 1;
  transform: rotate3d(1, 0, 0, 10deg);
}
@media only screen and (max-width: 1000px) {
  .hero__img--2 {
    margin-left: 33px;
    display: block;
    top: 10%;
    margin-left: 22px;
    position: absolute;
  }
}
@media only screen and (max-width: 850px) {
  .hero__img--2 {
    display: block;
    margin-left: 22px;
    position: absolute;
  }
}

.hero__badge {
  position: absolute;
  background-color: #f3f0ff;
  border: 1px solid #d9d4f7;
  box-shadow: 0 0.4rem 1.2rem rgba(60, 45, 233, 0.08);
  border-radius: 1.2rem;
  padding: 1rem 1.6rem;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  z-index: 2;
  top: 64%;
}
@media only screen and (max-width: 1000px) {
  .hero__badge {
    top: 60%;
  }
}
.hero__badge--1 {
  left: 6%;
}
@media only screen and (max-width: 1145px) {
  .hero__badge--1 {
    left: 6%;
  }
}
@media only screen and (max-width: 1000px) {
  .hero__badge--1 {
    left: 25%;
  }
}
@media only screen and (max-width: 800px) {
  .hero__badge--1 {
    left: 20%;
  }
}
@media only screen and (max-width: 600px) {
  .hero__badge--1 {
    left: 15%;
  }
}
@media only screen and (max-width: 520px) {
  .hero__badge--1 {
    left: 10%;
  }
}
@media only screen and (max-width: 500px) {
  .hero__badge--1 {
    left: 9%;
  }
}
@media only screen and (max-width: 440px) {
  .hero__badge--1 {
    left: 3%;
  }
}
@media only screen and (max-width: 300px) {
  .hero__badge--1 {
    left: 5%;
  }
}
@media only screen and (max-width: 240px) {
  .hero__badge--1 {
    left: 1%;
  }
}
.hero__badge--2 {
  width: 12.2rem;
  right: 6%;
}
@media only screen and (max-width: 1145px) {
  .hero__badge--2 {
    right: 6%;
  }
}
@media only screen and (max-width: 1000px) {
  .hero__badge--2 {
    right: 25%;
  }
}
@media only screen and (max-width: 800px) {
  .hero__badge--2 {
    right: 20%;
  }
}
@media only screen and (max-width: 600px) {
  .hero__badge--2 {
    right: 15%;
  }
}
@media only screen and (max-width: 520px) {
  .hero__badge--2 {
    right: 10%;
  }
}
@media only screen and (max-width: 500px) {
  .hero__badge--2 {
    right: 9%;
  }
}
@media only screen and (max-width: 440px) {
  .hero__badge--2 {
    right: 3%;
  }
}
@media only screen and (max-width: 240px) {
  .hero__badge--2 {
    right: 1%;
  }
}
.hero__badge--count {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #3c2de9;
  margin-bottom: 0.2rem;
}
.hero__badge--text {
  display: block;
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
}

.vway {
  display: grid;
  grid-template-columns: 1fr;
  /*
  &__short-list,
  &__full-list {
    list-style-type: none;
    padding: 0;
    margin: 0;

    animation: opcityReveal 0.3s ease-in;
  }

  &__full-list {
    display: none;
  }

  &__textbox.expanded .vway__short-list {
    display: none;
  }

  &__textbox.expanded .vway__full-list {
    display: block;
    max-height: 15rem;
    animation: opcityReveal 0.3s ease-in;
  }
  */
}
.vway__heading {
  font-size: 2rem;
  font-weight: 300;
  color: rgb(159, 77, 182);
}
.vway__textbox {
  background-color: #fff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.8rem;
  margin-top: 0.8rem;
  border-radius: 6px;
  overflow: hidden;
  z-index: 2;
}
.vway__texts {
  list-style: none;
  padding-left: 1.6rem;
  line-height: 1.4;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.8rem;
  max-height: 1.6rem; /* Show only the first item */
  transition: all 0.3s ease;
}
@media only screen and (max-width: 500px) {
  .vway__texts--1 {
    max-height: 3.2em;
  }
}
@media only screen and (max-width: 500px) {
  .vway__texts--2 {
    max-height: 4.3em;
  }
}
.vway__textbox.expanded .vway__texts {
  max-height: 30.5em; /* Show only the first two items */
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  row-gap: 1.6rem;
}
.vway__text--item {
  font-size: 1.6rem;
  font-weight: 300;
  color: #3c3c3c;
  display: flex;
  justify-content: start;
}
.vway__text--item::before {
  content: "●";
  color: rgba(60, 60, 60, 0.65);
  margin-right: 0.8rem;
}
.vway__text-item__link:link, .vway__text-item__link:visited {
  color: inherit;
  text-decoration-color: rgba(60, 60, 60, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.vway__text-item__link:hover, .vway__text-item__link:active {
  color: #3c2de9;
  text-decoration-color: #3c2de9;
}
.vway__expand {
  background-color: #fff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: end;
  justify-self: center;
  margin-top: -3rem;
  margin-bottom: -1.6rem;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .vway__expand {
    margin-bottom: 0rem;
  }
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  justify-items: start;
}
@media only screen and (max-width: 425px) {
  .cta-buttons {
    margin-top: 2.4rem;
  }
}

.cta-button:link,
.cta-button:visited {
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  width: 100%;
  max-width: 26.7rem;
  background-color: #3c2de9;
  color: #fff;
  border-radius: 0.4rem;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-button:hover,
.cta-button:active {
  background-color: #211884;
}

.cta-button.secondary {
  background-color: #fff;
  color: #000;
  box-shadow: inset 0 0 0 1px #3c2de9;
  justify-self: end;
}
@media only screen and (max-width: 900px) {
  .cta-button.secondary {
    justify-self: start;
  }
}
@media only screen and (max-width: 600px) {
  .cta-button.secondary {
    justify-self: end;
  }
}

.cta-button.secondary:hover {
  background-color: #e0e0e0;
}

.animate__moveInLeft {
  animation: moveInLeft 1.5s ease-in;
}

@keyframes moveInRight {
  0% {
    transform: translateX(100px);
  }
  80% {
    transform: translate(-20px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(-100px);
  }
  80% {
    transform: translate(20px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(10%);
  }
  90% {
    transform: scale(110%);
  }
  100% {
    transform: scale(100%);
  }
}
@keyframes opacityIncrease {
  0% {
    opacity: 0%;
  }
  90% {
    opacity: 10%;
  }
  100% {
    opacity: 10%;
  }
}
.of {
  padding: 9rem 0;
  background-image: linear-gradient(to right, rgb(232, 229, 248) 0%, rgba(232, 229, 248, 0.7) 20%, rgba(232, 229, 248, 0.7) 80%, rgb(232, 229, 248) 100%);
}
.of__container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
}

.ownerFlatmates-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: start;
  column-gap: 3.2rem;
  z-index: 3;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 600px) {
  .ownerFlatmates-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 500px) {
  .ownerFlatmates-wrapper {
    max-height: 13.5rem;
    overflow: hidden;
    opacity: 0.25;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}

@media only screen and (max-width: 500px) {
  .ownerFlatmates-wrapper.expanded {
    max-height: 180rem;
    opacity: 1;
    margin-bottom: 6.4rem;
  }
}

.ownerFlatmates-wrapper__expand {
  display: none;
  background: rgb(159, 77, 182);
  box-shadow: 0 4px 10px rgba(159, 77, 182, 0.35), 0 2px 4px rgba(90, 40, 110, 0.2);
  color: #fff;
  z-index: 3;
}
@media only screen and (max-width: 500px) {
  .ownerFlatmates-wrapper__expand {
    display: grid;
    justify-self: center;
    align-items: center;
  }
}

.ownerFlatmates {
  background-color: #fff;
  padding: 3.2rem 1.6rem;
  border-radius: 4px;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  border: 1px solid #e5e4f7;
  border-top: solid 2px rgb(159, 77, 182);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  row-gap: 0.8rem;
}
.ownerFlatmates__points {
  list-style: none;
}
.ownerFlatmates__points--point {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.1;
  margin-top: 2px;
  padding: 4px 16px;
  background-image: linear-gradient(to right, #dad5f6 0%, rgba(218, 213, 246, 0.2) 50%);
  border-radius: 1.5rem;
}
.ownerFlatmates__textBox {
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  margin-top: 0.8rem;
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
}
.ownerFlatmates__textBox--list {
  list-style-type: disc;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding: 1rem 2.8rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  row-gap: 0.8rem;
  transition: all 0.3s ease;
}
.ownerFlatmates__textBox--list-owner {
  max-height: 4rem;
}
@media only screen and (max-width: 500px) {
  .ownerFlatmates__textBox--list-owner {
    max-height: 5rem;
  }
}
.ownerFlatmates__textBox--list-flatmates {
  max-height: 4rem;
}
@media only screen and (max-width: 500px) {
  .ownerFlatmates__textBox--list-flatmates {
    max-height: 7rem;
  }
}
.ownerFlatmates__textBox.expanded .ownerFlatmates__textBox--list-owner {
  max-height: 100rem;
  padding: 1.6rem 2.8rem;
  row-gap: 1.6rem;
}
.ownerFlatmates__textBox.expanded .ownerFlatmates__textBox--list-flatmates {
  max-height: 33rem;
  padding: 1.6rem 2.8rem;
  row-gap: 1.6rem;
}
.ownerFlatmates__textBox.expanded .ownerFlatmates__textBox__sublist {
  padding-right: 0.2rem;
}
.ownerFlatmates__textbox--list-item {
  font-size: 1.6rem;
  font-weight: 300;
  color: #3c3c3c;
}
.ownerFlatmates__textbox--list-item--cta {
  list-style: none;
}
.ownerFlatmates__expand {
  margin-top: -2rem !important;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .ownerFlatmates__expand {
    margin-top: 1rem !important;
  }
}
.ownerFlatmates__textbox__sublist {
  list-style-type: circle;
  padding-right: 0.2rem;
}
.ownerFlatmates__textbox__sublist--listitem--cta {
  list-style: none;
}

.benefits {
  padding: 9rem 0;
  background: transparent;
}
.benefits__container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .benefits__container {
    margin: 0 0 0 0rem;
    padding: 0 0rem;
  }
}
.benefits__benefit-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  row-gap: 3.2rem;
  column-gap: 3.2rem;
  transition: transform 0.3s ease-in-out, scale 0.3s ease;
}
@media only screen and (max-width: 600px) {
  .benefits__benefit-container {
    min-width: 100%;
    grid-template-columns: min-content repeat(8, 32.7rem) min-content;
    grid-template-rows: 1fr;
    column-gap: 1.6rem;
    grid-auto-flow: column;
    align-items: stretch;
    padding-bottom: 1rem; /* Prevent content from being cut off by scrollbar */
    overflow: visible;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
    padding-bottom: 2rem;
  }
  .benefits__benefit-container::-webkit-scrollbar {
    height: 6px;
  }
  .benefits__benefit-container::-webkit-scrollbar-thumb {
    background-color: rgba(60, 45, 233, 0.2);
    border-radius: 3px;
    transition: background-color 0.2s ease;
  }
  .benefits__benefit-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(60, 45, 233, 0.4);
  }
  .benefits__benefit-container::-webkit-scrollbar-track {
    background-color: transparent;
    margin-inline: 1rem;
  }
  .benefits__benefit-container > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.benefits__benefit-container__scroll-spacer {
  display: none;
  width: 0px;
  pointer-events: none;
  visibility: hidden;
}
@media only screen and (max-width: 600px) {
  .benefits__benefit-container__scroll-spacer {
    display: block;
  }
}
.benefits__benefit-container__scrollSvgBox {
  display: none;
}
@media only screen and (max-width: 600px) {
  .benefits__benefit-container__scrollSvgBox {
    display: block;
    margin: 4.8rem 0rem;
    width: 100%;
    text-align: center;
  }
}
.benefits__benefit-container__scrollSvgBox .scrollSvgBox-svgIcons {
  height: 6.8rem;
  width: auto;
  fill: rgb(192, 191, 212);
  stroke: none;
}
.benefits__benefit-container__scrollSvgBox .scrollSvgBox-svgIcons-2 {
  fill: rgba(255, 255, 255, 0.2);
}

.benefit {
  background-color: #fff;
  padding: 2.4rem 1.6rem;
  border-radius: 4px;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: auto auto;
  column-gap: 1.6rem;
  row-gap: 3.2rem;
  align-content: start;
  justify-content: start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, scale 0.3s ease;
}
@media only screen and (max-width: 500px) {
  .benefit {
    grid-template-columns: auto;
    grid-template-rows: min-content auto auto;
  }
}
.benefit::before, .benefit::after {
  content: "";
  width: 50%;
  height: 20%;
  position: absolute;
  filter: blur(56px);
}
.benefit::before {
  bottom: -10%;
  left: -18%;
  background-color: #3c2de9;
  transform: rotate(0.6turn);
}
.benefit::after {
  bottom: -10%;
  right: -11%;
  background-color: rgb(159, 77, 182);
  transform: rotate(-0.6turn);
}
.benefit__heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.benefit__heading--img {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 2px;
  align-self: start;
  justify-self: start;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(60, 45, 233);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 450px) {
  .benefit__heading--img {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 3.6rem;
  }
}
.benefit__header-h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  align-self: center;
}
@media only screen and (max-width: 450px) {
  .benefit__header-h3 {
    font-size: 2.4rem;
  }
}
.benefit__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  grid-column: 1/-1;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 500px) {
  .benefit__list {
    margin-top: -0.8rem;
  }
}
.benefit__list--item {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content;
  column-gap: 0.8rem;
}
.benefit__list--item-text {
  line-height: 1.6;
  color: #494949;
  font-size: 1.6rem;
  font-weight: 300;
}
.benefit__list--item-special {
  font-size: 1.6rem;
  font-weight: 300;
  color: #494949;
}
.benefit-1 {
  grid-column: 1/2;
  grid-row: 1/2;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-1 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-1 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-2 {
  grid-column: 2/3;
  grid-row: 1/2;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-2 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-2 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-3 {
  grid-column: 3/4;
  grid-row: 1/2;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-3 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-3 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-4 {
  grid-column: 4/5;
  grid-row: 1/2;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-5 {
  grid-column: 1/2;
  grid-row: 2/3;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-5 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-5 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-6 {
  grid-column: 2/3;
  grid-row: 2/3;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-6 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-6 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit-7 {
  grid-column: 3/4;
  grid-row: 2/3;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-7 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-7 {
    grid-column: auto;
    grid-row: 1/2;
  }
}
.benefit-8 {
  grid-column: 4/5;
  grid-row: 2/3;
  scroll-snap-align: start;
}
@media only screen and (max-width: 1150px) {
  .benefit-8 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media only screen and (max-width: 600px) {
  .benefit-8 {
    grid-column: auto;
    grid-row: auto;
    grid-row: 1/2;
  }
}
.benefit__buttons {
  margin-top: 2.4rem;
  display: none;
}
@media only screen and (max-width: 500px) {
  .benefit__buttons {
    display: grid;
    grid-template-columns: min-content min-content;
    grid-template-rows: min-content;
    justify-content: center;
    column-gap: 2.4rem;
    color: #494949;
    border: #494949;
  }
}
.benefit__btn {
  padding: 1.6rem;
  border: none;
  box-shadow: 0 1px 2px rgb(255, 255, 255);
}

.svgIcons__money {
  transform: translateX(-5%);
}
@media only screen and (max-width: 500px) {
  .svgIcons__money {
    transform: translateX(-20%);
  }
}

.dcl {
  padding: 9rem 0;
  background-image: linear-gradient(to right bottom, #10069f 0%, #10069f 98%);
  overflow: visible;
}
.dcl__container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible;
}
@media only screen and (max-width: 600px) {
  .dcl__container {
    margin: 0 0 0 0rem;
    padding: 0 0rem;
  }
}
.dcl__heading-top {
  text-align: center;
}
.dcl__h3 {
  font-size: 3.2rem;
  line-height: 1.1;
  text-align: center;
}
.dcl__desc {
  color: #aaa;
  font-weight: 300;
  text-align: center;
}
.dcl__cards {
  margin-top: 6.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36.7rem, 1fr));
  column-gap: 2.8rem;
  row-gap: 2.8rem;
  transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width: 1600px) {
  .dcl__cards {
    min-width: 100%;
    grid-template-columns: min-content repeat(9, 32.7rem) min-content;
    column-gap: 4.4rem;
    grid-auto-flow: column;
    padding-bottom: 1rem; /* Prevent content from being cut off by scrollbar */
    overflow: visible;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2.4rem;
    padding-bottom: 2rem;
  }
  .dcl__cards::-webkit-scrollbar {
    height: 6px;
  }
  .dcl__cards::-webkit-scrollbar-thumb {
    background-color: rgba(60, 45, 233, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background-color 0.2s ease;
  }
  .dcl__cards::-webkit-scrollbar-thumb:hover {
    background-color: rgba(60, 45, 233, 0.4);
  }
  .dcl__cards::-webkit-scrollbar-track {
    background-color: transparent;
    margin-inline: 1rem;
  }
  .dcl__cards > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 600px) {
  .dcl__cards {
    column-gap: 2.4rem;
  }
}
.dcl__cards__scroll-spacer {
  display: none;
  width: 0px;
  pointer-events: none;
  visibility: hidden;
}
@media only screen and (max-width: 1600px) {
  .dcl__cards__scroll-spacer {
    display: block;
  }
}
.dcl-card {
  background: rgba(255, 255, 255, 0.1); /* Softer glass effect */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px; /* Rounded corners */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 2.4rem 1.6rem;
  color: #fff;
  letter-spacing: 0.2px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.2rem;
  justify-content: start;
  align-content: start;
  position: relative;
  z-index: 11;
}
.dcl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px; /* Same as the main element */
  padding: 2px; /* Border width */
  background: linear-gradient(to right bottom, rgb(126, 119, 248) 0%, rgba(159, 77, 182, 0.6) 0%, rgba(255, 255, 255, 0) 30%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1; /* Make sure it's behind the content */
}
.dcl-card__img {
  width: 4.4rem;
  height: 4.4rem;
  background: transparent;
  border-radius: 2px;
  align-self: start;
  justify-self: start;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(60, 45, 233);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 450px) {
  .dcl-card__img {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 3.6rem;
  }
}
.dcl-card__h4 {
  color: #1e1e1e;
  color: white;
  font-weight: 600;
  line-height: 1.3;
}
.dcl-card__list {
  list-style: circle;
  padding-left: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
}
.dcl-card__list--sub {
  font-size: 1.4;
  line-height: 1.2;
  row-gap: 1.2rem;
}
.dcl-card__list__item {
  color: #aaa;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
}
.dcl__scrollSvgBox {
  margin-top: 3.6rem;
  height: 2.4rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  justify-content: center;
}
.dcl-card-1 {
  scroll-snap-align: start;
}
.dcl-card-2 {
  scroll-snap-align: start;
}
.dcl-card-3 {
  scroll-snap-align: start;
}
.dcl-card-4 {
  scroll-snap-align: start;
}
.dcl-card-5 {
  scroll-snap-align: start;
}
.dcl-card-6 {
  scroll-snap-align: start;
}
.dcl-card-7 {
  scroll-snap-align: start;
}
.dcl-card-8 {
  scroll-snap-align: start;
}
.dcl-card-9 {
  scroll-snap-align: start;
}

.hiw {
  padding: 9rem 0;
  background-image: linear-gradient(to right, rgb(232, 229, 248) 0%, rgba(232, 229, 248, 0.7) 20%, rgba(232, 229, 248, 0.7) 80%, rgb(232, 229, 248) 100%);
}
.hiw__container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.2rem;
}
.hiw__container--btn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1.6rem;
}
.hiw__btn {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.6rem;
  max-width: 26.6rem;
  border-radius: 24rem;
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  text-align: center;
  border: 1px solid #3c2de9;
  transition: all 0.2s ease-in;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .hiw__btn {
    border-radius: 35px;
  }
}
.hiw__btn:hover {
  color: #fff;
  background-color: #3c2de9;
  border: #3c2de9;
}
.hiw__btn--active {
  background-color: #3c2de9;
  border: #3c2de9;
  color: #fff;
  transform: translateX(0px) translateY(3rem);
}
.hiw__step-text {
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  /* Optional: more styling */
  pointer-events: none; /* prevents blocking button click */
  width: 100%;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.7);
  color: rgb(159, 77, 182);
  font-weight: 300;
}
@media only screen and (max-width: 500px) {
  .hiw__step-text {
    font-size: 1.4rem;
  }
}
.hiw__step-number {
  font-size: 1.8rem;
  margin-left: 0.4rem;
  color: rgba(0, 0, 0, 0.7);
  color: rgb(159, 77, 182);
}
.hiw__container--text {
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  border: 1px solid #e5e4f7;
  border-radius: 4px;
  padding: 6.4rem 6.4rem;
  background-color: #fff;
}
@media only screen and (max-width: 600px) {
  .hiw__container--text {
    padding: 4.8rem 3.2rem;
  }
}
.hiw__text {
  display: none;
}
.hiw__text--active {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
  animation: opcityReveal 0.5s ease-in;
}
@media only screen and (max-width: 600px) {
  .hiw__text--active {
    row-gap: 4.8rem;
  }
}
.hiw__text--hide {
  display: none;
  background-color: #10069f;
}
.hiw__heading-h3 {
  font-size: 3.6rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
}
.hiw__span {
  font-size: 4.8rem;
  margin-left: 1.6rem;
  color: rgba(0, 0, 0, 0.7);
}
.hiw__textbox {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
.hiw__text__heading-h4 {
  font-size: 2.4rem;
}
.hiw__text__heading-h4--small {
  font-size: 1.6rem;
}
.hiw__text__heading-h4--medium {
  font-size: 2rem;
}
.hiw__text--list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.2rem;
}
.hiw__text--listItem {
  display: flex;
  justify-content: start;
  align-items: stretch;
  font-size: 1.6rem;
  font-weight: 300;
  color: #494949;
  gap: 0.8rem;
  padding-left: 0rem;
}
.hiw__text--listItem::before {
  content: "✓";
  color: rgba(60, 60, 60, 0.65);
}

@keyframes opcityReveal {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 10%;
  }
  100% {
    opacity: 100%;
  }
}
.summary {
  padding: 9rem 0;
  background: transparent;
}
.summary__cards {
  margin-top: 6.8rem;
  display: grid;
  grid-template-columns: 40rem 40rem;
  justify-content: center;
  column-gap: 12.8rem;
  padding: 0rem 5px;
}
@media only screen and (max-width: 900px) {
  .summary__cards {
    grid-template-columns: minmax(30rem, 1fr) minmax(30rem, 1fr);
    column-gap: 4.8rem;
  }
}
@media only screen and (max-width: 675px) {
  .summary__cards {
    column-gap: 3.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .summary__cards {
    grid-template-columns: minmax(40rem, 1fr);
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 450px) {
  .summary__cards {
    grid-template-columns: minmax(35rem, 40rem);
    row-gap: 2.4rem;
  }
}
.summary__card {
  background-color: #ffffff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  padding: 4.8rem 2px;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  justify-content: start;
  align-items: start;
  row-gap: 2.4rem;
  position: relative;
  overflow: hidden;
}
.summary__card::before {
  position: absolute;
  height: auto;
  width: 17rem;
  padding: 0.4rem;
  background-color: rgb(159, 77, 182);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  text-align: center;
  padding: 0.6rem;
  top: 0%;
  right: 0%;
}
.summary__card--1::before {
  content: "Not Yet Ready?";
}
.summary__card--2 {
  background-color: rgba(251, 251, 255, 0.9);
}
.summary__card--2::before {
  content: "Ready To Move?";
}
.summary__desc {
  color: #3b3b3b;
  font-weight: 300;
}
.summary__card__heading {
  margin-bottom: 1.6rem;
  text-align: center;
}
.summary__card__headline {
  font-weight: 600;
  font-size: 3.6rem;
}
.summary__card__headline-desc {
  font-size: 1.6rem;
  color: #6a6a6a;
  margin-top: 0.8rem;
}
.summary__card--points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.8rem;
  padding-left: 1.6rem;
}
.summary__card--point {
  display: flex;
  justify-content: start;
  align-items: start;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  color: #494949;
  gap: 0.6rem;
  padding-left: 0rem;
}
.summary__card--point::before {
  content: "✓";
  color: rgba(60, 60, 60, 0.65);
}
.summary__card__btn:link, .summary__card__btn:visited {
  justify-self: center;
  align-self: end;
  width: 26.7rem;
}

.video {
  padding: 9rem 0;
  background-image: linear-gradient(to right, rgb(232, 229, 248) 0%, rgba(232, 229, 248, 0.7) 20%, rgba(232, 229, 248, 0.7) 80%, rgb(232, 229, 248) 100%);
}
.video__container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.video__single {
  background-color: transparent;
}
.video__single__wrapper {
  align-items: center;
  justify-self: start;
}
.video__single__h3 {
  font-size: 3.6rem;
  justify-self: center;
  margin-top: -2.4rem;
}
@media only screen and (max-width: 600px) {
  .video__single__h3 {
    margin-top: 0rem;
    font-size: 2.4rem;
  }
}
.video__single__slide {
  width: 45rem;
}
@media only screen and (max-width: 600px) {
  .video__single__slide {
    width: 100%;
    max-width: 45rem;
  }
}
.video__single__slide iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* Maintain aspect ratio */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: block;
  border: none;
}

.ytVideo-slider__slide {
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
}

.slider__container {
  padding: 4.8rem 5.4rem;
  position: relative;
  background-image: linear-gradient(to right, #e8e5f8 0%, #f1effc 50%, #e8e5f8 100%);
}
@media only screen and (max-width: 500px) {
  .slider__container {
    padding: 4.8rem 0rem;
  }
}
.slider__wrapper {
  background-color: transparent;
  padding-bottom: 8px;
  margin: 0 auto;
  max-width: 1600px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 2rem;
}
.slider__wrapper::-webkit-scrollbar {
  height: 6px;
}
.slider__wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(60, 45, 233, 0.2);
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.slider__wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(60, 45, 233, 0.4);
}
.slider__wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  margin-inline: 1rem;
}
.slider__wrapper > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
@media only screen and (max-width: 500px) {
  .slider__wrapper {
    gap: 1.6rem;
  }
}
.slider__slide {
  flex: 0 0 35rem;
  background-image: linear-gradient(to bottom, rgb(217, 217, 217), #fff);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
@media only screen and (max-width: 500px) {
  .slider__slide {
    flex: 0 0 35rem;
  }
  .slider__slide:first-child {
    margin-left: 1rem;
  }
  .slider__slide:last-child {
    margin-right: 1.6rem;
  }
}
.slider__slide iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* Maintain aspect ratio */
  border-radius: 8px;
  border: none; /* Remove default iframe border */
  /* Optional: Ensure iframe covers its container */
  display: block; /* Prevent iframe from having default inline spacing */
}
.slider__arrow {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: rgb(217, 217, 217);
  box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__arrow-left {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
.slider__arrow-right {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

/* Adjust iframe size and spacing for mobile */
@media (max-width: 640px) {
  iframe {
    height: auto;
    aspect-ratio: 16/9; /* Maintain aspect ratio */
  }
}
.des-video__section {
  padding-bottom: 9rem;
  background-image: linear-gradient(to right, rgb(195, 194, 213) 0%, rgba(195, 194, 213, 0.5) 48%, rgba(195, 194, 213, 0.5) 52%, rgb(195, 194, 213) 100%);
}
.des-video__container {
  max-width: 116rem;
  padding: 0 1rem;
  margin: 0 auto;
}

.no-scroll-splash-screen {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.splash-screen {
  position: absolute;
  top: 56px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: #fe6d00;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.splash-screen__content {
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 2.4rem;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
}
.splash-screen__loader {
  width: 100px;
  height: 100px;
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #3c2de9; /* Blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.splash-screen__brand-name {
  font-family: "Merienda One", Roboto, sans-serif;
  font-size: 5.2rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #3c2de9;
  animation: fillText 2s forwards infinite;
}
@media only screen and (max-width: 250px) {
  .splash-screen__brand-name {
    font-size: 4rem;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fillText {
  0% {
    color: transparent;
  }
  50% {
    color: #3c2de9;
  }
  100% {
    color: transparent;
  }
}
.dcl-card__contentBox {
  grid-column: 1/3;
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  row-gap: 0.2rem;
  position: relative;
}
.dcl-card__content {
  padding: 1.6rem 0.8rem 1.6rem 2.4rem;
  border-radius: 3.5rem;
  background-image: linear-gradient(to right, #dad5f6 0%, rgba(217, 217, 217, 0.01) 100%);
  display: grid;
  grid-template-columns: min-content 8fr 2fr;
  grid-template-rows: min-content;
  column-gap: 2.6rem;
  justify-content: center;
  align-content: center;
  align-items: center;
}
@media only screen and (max-width: 500px) {
  .dcl-card__content {
    column-gap: 1.6rem;
    grid-template-columns: min-content 1fr min-content;
  }
}
.dcl-card__content-htmlEnt {
  color: #333333;
  font-size: 2.4rem; /* Adjust font size as needed */
  line-height: 1.2rem; /* Ensure height matches font-size */
  display: inline-block; /* Ensures width and height adjustments are respected */
  width: 1.6rem; /* Set desired width */
  height: 1.6rem; /* Set desired height */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 500px) {
  .dcl-card__content-htmlEnt {
    padding-bottom: 1px;
  }
}
.dcl-card__content-heading {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}
.dcl-card__content-expandArrowBox {
  width: 6.4rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: end;
  transition: all 0.3s ease;
}
.dcl-card__content-expandArrowBox-rotate {
  transform: rotate(180deg);
}
.dcl-card__content--text {
  display: none;
  animation: appearSlowly 0.3s ease;
}
.dcl-card__content--text-active {
  padding: 2.8rem 1.6rem 2.8rem 2.4rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  animation: appearSlowly 0.3s ease;
}
@media only screen and (max-width: 500px) {
  .dcl-card__content--text-active {
    font-size: 1.8rem;
  }
}

.faq-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.faq-question-answer-pair {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid #e4def8;
  padding: 1rem 0;
}

.faq-question-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Harmonized font size for accessibility */
  font-size: 1.5rem; /* ~15px, readable but compact */
  font-weight: 500;
  line-height: 1.6; /* Slightly increased for breathing space */
  cursor: pointer;
  background-color: #f9f9f9;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question-box:hover {
  background-color: #f1f1f1;
}

.faq-bullet {
  margin-right: 0.75rem;
  color: #666;
  font-size: 1.8rem; /* Just slightly larger than text */
  flex-shrink: 0;
}

.faq-question-text {
  flex-grow: 1;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.6;
}

.faq-toggle-icon {
  margin-left: 1rem;
  font-size: 1.4rem; /* Matches question text for balance */
  color: #555;
  transition: transform 0.3s ease;
}

.faq-question-box.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-toggle-icon.rotate {
  transform: rotate(180deg);
}

.faq-toggle-icon.open {
  transform: rotate(180deg);
}

.faq-answer-box {
  font-size: 1.4rem; /* Slightly smaller than question text */
  line-height: 1.7;
  color: #444;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem 1rem 2.8rem; /* aligns with bullet and text */
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-box.open {
  display: block;
  max-height: 500px; /* large enough for most answers */
}

.faq-answer-box p {
  margin: 0.5rem 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-section {
  padding: 9rem 0;
  background-color: #181818;
}
.footer-container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 8fr 4fr 2fr 2fr;
  grid-template-rows: auto;
  justify-content: center;
  align-content: center;
  row-gap: 4.4rem;
  column-gap: 5.6rem;
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 600px) {
  .footer-container {
    column-gap: 1.6rem;
  }
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 450px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
}
@media only screen and (max-width: 380px) {
  .footer-container {
    grid-template-columns: 2fr 1fr;
  }
}
.footer-h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(241, 241, 241);
}

@media only screen and (max-width: 1130px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 450px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.footer-compInfo__logo {
  margin-left: 0rem;
}
.footer-compInfo__description {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(170, 170, 170);
  line-height: 1.7;
  letter-spacing: 0.002rem;
}
@media only screen and (max-width: 450px) {
  .footer__nav--fus {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.footer__nav__h5 {
  margin-bottom: 2.4rem;
}
.footer__nav--list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
.footer__nav__follow-us {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__nav__follow-us i {
  font-size: 2.4rem;
}
.footer__nav__follow-us--link:link, .footer__nav__follow-us--link:visited {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer__nav__follow-us--link:hover, .footer__nav__follow-us--link:active {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.footer__nav__link:link, .footer__nav__link:visited {
  text-decoration: none;
  background-color: rgb(40, 40, 40);
  border-radius: 0.6rem;
  color: rgb(200, 200, 200);
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .footer__nav__link:link, .footer__nav__link:visited {
    font-size: 1.4rem;
  }
}
.footer__nav__link:active, .footer__nav__link:hover {
  background-color: #fff;
  color: #3c2de9;
  transition: all 0.3s ease-in-out;
}
.footer__copyright {
  grid-column: 1/-1;
  justify-self: center;
  align-self: flex-start;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: rgb(100, 100, 100);
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .footer__copyright {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}

.whatsapp {
  color: #25d366;
}

.facebook {
  color: #3b5998;
}

.linkedin {
  color: #0a66c2;
}

.email {
  color: #bb001b;
}

.instagram {
  color: #bc2a8d;
}

.twitter {
  color: #1da1f2;
}

.test {
  margin-top: 5.5rem;
  background-color: #f9f7f6;
  padding: 0 2.5rem;
}
.test__container {
  background-color: #b28451;
  width: 50rem;
  position: relative;
}
.test__img--1 {
  position: relative;
  z-index: 3;
}
.test__img--2 {
  position: absolute;
  left: 4%;
  top: 0;
  z-index: 1;
}

.testExpand {
  background-color: #e1e0f0;
  padding: 9rem 0rem;
}

.container-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 500px) {
  .container-b {
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
  }
}

.text-container {
  display: grid;
}

.textBox {
  background-color: #fff;
  overflow: scroll;
  z-index: 2;
}
.textBox__list {
  list-style: none;
  padding: 1.6rem 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.3rem;
  max-height: 6.5rem;
  transition: max-height 0.5s ease;
}
.textBox.expanded .textBox__list {
  max-height: 24.4rem;
}
.textBox__list--point {
  padding-left: 0.8px;
  padding-right: 0.8px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #4d4d4d;
  display: flex;
}
.textBox__list--point::before {
  content: "✓";
  color: rgba(60, 60, 60, 0.65);
  margin-right: 0.8rem;
}
.textBox__expand {
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: end;
  justify-self: center;
  margin-top: -3rem;
}

.test__textBox2 {
  padding: 10rem 0;
}

.testSlider-container {
  max-width: 50%;
  overflow: hidden;
  background-color: #10069f;
  margin: 0 auto;
  padding: 70px 10px;
}

.slider {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(9, 32.7rem);
  grid-auto-flow: column;
  touch-action: pan-y; /* Prevent vertical scrolling interference */
  transition: transform 0.3s ease-in-out, scale 0.3s ease;
}
@media only screen and (max-width: 500px) {
  .slider {
    display: grid;
    grid-template-columns: repeat(9, 32.7rem);
    grid-auto-flow: column;
  }
}

.slide {
  flex: 0 0 calc(100% - 20rem);
  box-sizing: border-box;
  padding: 10px;
  background: rgb(237, 233, 233);
  text-align: center;
  margin-right: 10px;
  transition: transform 0.3s ease-in-out, scale 0.3s ease;
}
.slide-1 {
  margin-left: 10px;
}
@media only screen and (max-width: 500px) {
  .slide-1 {
    margin-left: 10px;
  }
}

.slider__btn {
  margin: 10px;
}

.testSvg {
  padding: 9rem;
}

.testSvgBox {
  height: 12.8rem;
  width: 12.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(126, 119, 248, 0.1), rgba(126, 119, 248, 0.9));
  background: #9c9c9c;
  background: transparent; /* No background color */
}

.testIconSvg {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  fill: none; /* Ensure the SVG has no fill */
  background-image: linear-gradient(to bottom, rgba(126, 119, 248, 0.1), rgba(126, 119, 248, 0.9)); /* Apply the gradient as a background */
  fill: #2918ff;
  padding-top: 4px;
}

.navbar-brand-custom .logo-img {
  height: 55px;
}

.logo-text {
  font-weight: bolder;
  color: #2073d9;
  font-size: 23px;
  font-family: "Merienda One", sans-serif;
}

.profile-btn {
  padding-top: 0px;
  padding-bottom: 0px;
}

.profile-img {
  border: 1px solid rgba(172, 172, 172, 0.4509803922);
  height: 40px !important;
  width: 40px !important;
  padding: 2px;
  background: #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.green-icons i {
  color: #2073d9 !important;
}

/* To show the tooltip on the btns in the header */
#owner-header-btn.secondary-btn:hover::after,
#pg-header-btn.secondary-btn:hover::after {
  content: attr(data-title);
  background-color: #555;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 15px;
  display: block;
  position: absolute;
  top: 100%;
  white-space: nowrap;
  z-index: 1;
}

.secondary-btn-color {
  background-color: #f29c3e !important;
}

.secondary-btn {
  border: 1px solid #2073d9;
  background-color: white;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 5px;
  color: #2073d9 !important;
}

.custom-default-btn {
  background-color: #2073d9;
  padding-left: 12px;
  padding-right: 12px;
  color: #ffffff !important;
  padding-top: 2px;
  padding-bottom: 2px;
  line-height: 30px;
  border-radius: 4px;
}

@media (max-width: 425px) {
  .btn-custom-mt-sm {
    margin-top: 10px;
  }
}
/* General Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Brand Section */
.navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar__brand-logo {
  width: 40px;
  height: auto;
}

.navbar__brand-text {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 10px;
  color: #333;
}

/* Navbar Toggler */
.navbar__toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggler-icon {
  width: 25px;
  height: 3px;
  background-color: #333;
  display: block;
  position: relative;
}

.navbar__toggler-icon::before,
.navbar__toggler-icon::after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
}

.navbar__toggler-icon::before {
  top: -8px;
}

.navbar__toggler-icon::after {
  top: 8px;
}

/* Navigation Menu */
.navbar__menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

/* Navigation Links */
.navbar__nav {
  display: flex;
  gap: 20px;
}

.navbar__nav-item {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  padding: 10px;
  transition: color 0.3s ease-in-out;
}

.navbar__nav-item:hover {
  color: #007bff;
}

.navbar__nav-item--active {
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}

/* Action Buttons */
.navbar__actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.btn--primary {
  background-color: #007bff;
  color: white;
}

.btn--primary:hover {
  background-color: #0056b3;
}

.btn--secondary {
  background-color: #28a745;
  color: white;
}

.btn--secondary:hover {
  background-color: #218838;
}

.btn--margin-left {
  margin-left: 10px;
}

/* Responsive - Mobile View */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .navbar__menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__nav {
    flex-direction: column;
    width: 100%;
  }
  .navbar__actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
  .navbar__toggler {
    display: block;
  }
}
.mb-section {
  width: 100%;
  margin: 0 auto;
  padding: 9rem 0;
  background-color: transparent;
}
@media only screen and (max-width: 1160px) {
  .mb-section {
    overflow-x: auto;
  }
}
.mb-section__container-header {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.mb-section__container-header--start {
  max-width: 116rem;
  padding: 0 1rem 0 0;
}
.mb-section__heading-h2-2rem {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2.4rem;
}
.mb-section__container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.mb-section__container--scroll {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 1160px) {
  .mb-section__container--scroll {
    padding: 0 0rem;
  }
}
.mb-section__scroll-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  row-gap: 1rem;
  column-gap: 1rem;
}
@media only screen and (max-width: 1500px) {
  .mb-section__scroll-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 1rem;
    padding-bottom: 2rem;
  }
  .mb-section__scroll-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .mb-section__scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(60, 45, 233, 0.2);
    border-radius: 3px;
    transition: background-color 0.2s ease;
  }
  .mb-section__scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: rgba(60, 45, 233, 0.4);
  }
  .mb-section__scroll-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
    margin-inline: 1rem;
  }
  .mb-section__scroll-wrapper > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.mb-section__scroll-spacer {
  display: none;
  width: 2px;
  pointer-events: none;
  visibility: hidden;
}
@media only screen and (max-width: 1160px) {
  .mb-section__scroll-spacer {
    display: block;
  }
}

.testimonial__container--scroll {
  max-width: 100% !important;
  padding: 0rem 0rem !important;
}
.testimonial__cards-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 1.6rem;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #e0def5;
  border-radius: 1.2rem;
  padding: 1.6rem;
  max-width: 30rem;
  min-width: 30rem;
  box-shadow: 0 0.5rem 1.4rem rgba(60, 45, 233, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: "Segoe UI", sans-serif;
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(60, 45, 233, 0.08);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-card__avatar {
  width: 3.8rem;
  height: 3.8rem;
  background-color: #e8e5f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #7e63f8;
}

.testimonial-card__user {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  color: #333;
}

.testimonial-card__name {
  font-weight: 600;
}

.testimonial-card__location {
  font-size: 1.2rem;
  color: #777;
}

.testimonial-card__content {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  quotes: "“" "”";
}

.testimonial-card__content::before {
  content: open-quote;
}

.testimonial-card__content::after {
  content: close-quote;
}

.info-section {
  /* #e8e5f8  family background*/
  background-image: linear-gradient(to right, rgb(232, 229, 248) 0%, rgba(232, 229, 248, 0.7) 20%, rgba(232, 229, 248, 0.7) 80%, rgb(232, 229, 248) 100%);
  padding: 9rem 0rem;
  max-width: 100%;
}
.info-section__container-header {
  margin-bottom: 2.4rem;
}
.info-section__heading {
  padding: 0 0.8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.info-section__scroll-wrapper {
  max-width: 116rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1160px) {
  .info-section__scroll-wrapper {
    justify-content: start;
    justify-items: start;
    overflow-x: auto;
  }
}
.info-section__scroll-wrapper--content-center {
  justify-content: center;
  justify-items: center;
}
.info-section__scroll-wrapper__why-chase-slg {
  max-width: 116rem;
  margin: 0 auto;
  column-gap: 2.4rem;
  justify-content: center;
  justify-items: center;
}
@media only screen and (max-width: 1160px) {
  .info-section__scroll-wrapper__why-chase-slg {
    justify-content: center;
    justify-items: center;
    overflow-x: auto;
  }
}
@media only screen and (max-width: 950px) {
  .info-section__scroll-wrapper__why-chase-slg {
    justify-content: start;
    justify-items: start;
    overflow-x: auto;
    column-gap: 1rem;
  }
}
.info-section__scroll-wrapper__owner-story {
  max-width: 116rem;
  margin: 0 auto;
  column-gap: 2.4rem;
  justify-content: start;
  justify-items: start;
}
@media only screen and (max-width: 1160px) {
  .info-section__scroll-wrapper__owner-story {
    overflow-x: auto;
  }
}
@media only screen and (max-width: 950px) {
  .info-section__scroll-wrapper__owner-story {
    overflow-x: auto;
    column-gap: 1rem;
  }
}

.info-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #e0e0f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 30rem;
  min-width: 28rem;
  border-radius: 1.6rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0.4rem 1rem rgba(60, 45, 233, 0.05), 0 0.2rem 0.6rem rgba(140, 120, 255, 0.08);
  position: relative;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
}
@media only screen and (max-width: 500px) {
  .info-card {
    max-width: 29rem;
    min-width: 29rem;
  }
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2rem rgba(0, 0, 0, 0.08);
}

.info-card__icon-box {
  background-color: #e8e5f8;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.2rem;
  color: #7e63f8;
  margin-bottom: 1.6rem;
}

.info-card__title {
  font-size: 1.6rem !important;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.info-card__text {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

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

.info-card__footer a {
  font-size: 1.3rem;
  color: #3c2de9;
  text-decoration: none;
}

.info-card__footer a:hover {
  text-decoration: underline;
}

.info-card__footer i {
  margin-right: 0.4rem;
}

.single-video-section__container {
  max-width: 45rem;
  margin: 0 auto;
}

.floating-btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 1.2rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.6s ease-out;
  min-width: 260px;
  max-width: 90vw;
}
@media only screen and (max-width: 500px) {
  .floating-btn-whatsapp {
    min-width: 180px;
  }
}

.floating-btn-whatsapp.hidden {
  display: none !important;
}

.floating-btn-whatsapp__icon {
  font-size: 2.4rem;
  color: white;
  flex-shrink: 0;
}

.floating-btn-whatsapp__text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-btn-whatsapp__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.floating-btn-whatsapp__subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.floating-btn-whatsapp__dismiss {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background-color: white;
  color: #25d366;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.floating-btn-whatsapp__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 1;
}

/* Mobile adjustments */
@media only screen and (max-width: 500px) {
  .floating-btn-whatsapp {
    bottom: 16px;
    right: 12px;
    padding: 1rem 1.4rem;
    border-radius: 40px;
    gap: 0.8rem;
  }
  .floating-btn-whatsapp__title {
    font-size: 1.4rem;
  }
  .floating-btn-whatsapp__subtitle {
    font-size: 1.1rem;
  }
  .floating-btn-whatsapp__icon {
    font-size: 2rem;
  }
  .floating-btn-whatsapp__dismiss {
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    font-size: 1.2rem;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.micro-testimonial-inline-block {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.micro-testimonial-inline-wrapper {
  position: relative;
}

.micro-testimonial-inline {
  font-size: 1.2rem;
  font-style: italic;
  color: #3c3c3c;
  font-weight: 300;
  line-height: 1.5;
}
.micro-testimonial-inline::before {
  content: "“";
  position: absolute;
  left: -14px;
  top: -2px;
  font-size: 3.2rem;
  line-height: 1;
  color: rgb(159, 77, 182);
}
.micro-testimonial-inline__name {
  font-weight: 600;
  color: rgb(159, 77, 182);
  font-style: normal;
}
.micro-testimonial-inline--lavender {
  color: rgba(255, 255, 255, 0.6);
}

.micro-testimonial-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  max-width: 640px;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.micro-testimonial-block--before-footer {
  margin-top: 9.6rem;
}
.micro-testimonial-block__avatars {
  position: relative;
  width: 60px;
  height: 40px;
}
@media only screen and (max-width: 600px) {
  .micro-testimonial-block__avatars {
    align-self: flex-start;
  }
}
.micro-testimonial-block__avatars--summary-cards {
  align-self: flex-start;
}
.micro-testimonial-block__avatars--before-footer {
  width: 40px;
}
.micro-testimonial-block__avatar {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8a9e4, #9f4db6);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.micro-testimonial-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.micro-testimonial-block__avatar--1 {
  left: 0;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.micro-testimonial-block__avatar--2 {
  left: 15px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.micro-testimonial-block__text {
  flex: 1;
}
.micro-testimonial-block__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.micro-testimonial-block__line {
  margin: 0;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.4;
}
@media only screen and (max-width: 500px) {
  .micro-testimonial-block__line {
    font-size: 1.2rem;
  }
}
.micro-testimonial-block__keyword {
  font-weight: 400;
  color: rgb(159, 77, 182);
}
.micro-testimonial-block__name {
  font-weight: 600;
  color: rgb(159, 77, 182);
}

.fomo-cta {
  background: transparent;
  padding: 9rem 1rem 2rem 1rem;
}

.fomo-cta-card {
  width: 100%;
  max-width: 40rem;
  margin: 0rem auto;
  padding: 4rem 2rem 4rem 2rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid #e5e4f7;
  box-shadow: 0 1rem 2rem rgba(60, 45, 233, 0.08);
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}
.fomo-cta-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fomo-cta-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.2rem;
}
.fomo-cta-card__icon {
  color: #7e63f8;
  font-size: 4.8rem;
}
.fomo-cta-card__title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #333;
}
.fomo-cta-card__subtext {
  font-size: 1.6rem;
  color: #555;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.fomo-cta-card__subtext strong {
  color: #3c2de9;
  color: rgb(159, 77, 182);
}
.fomo-cta-card__subtext .fomo-cta-card__highlight {
  color: rgb(159, 77, 182);
  font-weight: 600;
}
.fomo-cta-card__offer-note {
  font-size: 1.4rem;
  color: rgb(159, 77, 182);
}
.fomo-cta-card__offer-subicon {
  margin-right: 0.5rem;
  color: rgb(159, 77, 182);
}
.fomo-cta-card__btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #7e63f8;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.fomo-cta-card__btn:hover {
  background-color: #5e44c4;
}
.fomo-cta-card__icon-hourglass {
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: middle;
  margin-right: 0.4rem;
  fill: rgb(159, 77, 182);
}
.fomo-cta-card__footer {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: #666;
}
.fomo-cta-card__footer .fa {
  margin-right: 0.4rem;
  color: #7e63f8;
}
@media only screen and (max-width: 500px) {
  .fomo-cta-card {
    max-width: 90%;
    padding: 3.2rem 1.6rem;
  }
  .fomo-cta-card__header {
    font-size: 1.8rem;
  }
  .fomo-cta-card__subtext {
    font-size: 1.4rem;
  }
  .fomo-cta-card__btn {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
  }
}

.emoji-lavender {
  color: rgb(159, 77, 182);
  font-weight: 500;
  font-size: 1.6rem;
  display: inline-block;
}

.rentee-journey {
  background: transparent;
  padding: 4rem 1rem 9rem 1rem;
  text-align: center;
}
.rentee-journey__container {
  max-width: 640px;
  margin: 0 auto;
}
.rentee-journey__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
  color: #333;
}
.rentee-journey__heading__icon {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
  color: #7e63f8;
}
.rentee-journey__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: 2rem;
}
.rentee-journey__step {
  background-color: white;
  border: 1px solid #e5e4f7;
  border-radius: 1.2rem;
  padding: 1.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0.6rem 1.6rem rgba(60, 45, 233, 0.05);
}
.rentee-journey__day {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(159, 77, 182);
  margin-bottom: 0.4rem;
}
.rentee-journey__text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
}

.mbblog-table-wrapper {
  margin: 3.2rem auto;
  border-radius: 8px;
}
.mbblog-table-wrapper--width500 {
  width: 920px;
  overflow-x: auto;
  overflow-y: hidden; /* Optional: prevents vertical scrollbar */
  white-space: nowrap; /* Ensures table doesn't wrap and causes horizontal scroll */
  scrollbar-width: auto; /* For Firefox */
  -ms-overflow-style: auto; /* For IE 10+ */
  padding-bottom: 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1rem;
}
@media only screen and (max-width: 950px) {
  .mbblog-table-wrapper--width500 {
    width: 96%;
  }
}
@media only screen and (max-width: 600px) {
  .mbblog-table-wrapper--width500 {
    width: 95%;
  }
}
.mbblog-table-wrapper--width500::-webkit-scrollbar {
  height: 6px;
}
.mbblog-table-wrapper--width500::-webkit-scrollbar-thumb {
  background-color: rgba(60, 45, 233, 0.2);
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.mbblog-table-wrapper--width500::-webkit-scrollbar-thumb:hover {
  background-color: rgba(60, 45, 233, 0.4);
}
.mbblog-table-wrapper--width500::-webkit-scrollbar-track {
  background-color: transparent;
  margin-inline: 1rem;
}

.mbblog-table {
  min-width: 400px;
  border-collapse: collapse;
  background-color: hsl(0, 0%, 100%);
  font-size: 1.44rem;
}

.mbblog-table th,
.mbblog-table td {
  padding: 1.6rem;
  text-align: left;
  border-bottom: 1px solid hsl(0, 0%, 90%);
  border-bottom: 1px solid #e5e4f7;
  color: #494949;
}
@media only screen and (max-width: 600px) {
  .mbblog-table th,
  .mbblog-table td {
    padding: 1.2rem;
  }
}

.mbblog-table th {
  background-color: hsl(0, 0%, 97%);
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}

.mbblog-table tbody tr:hover {
  background-color: hsl(0, 0%, 97%);
}


