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

/* 768px & 480px */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
}

body {
  overflow: hidden;
}

a {
  text-decoration: none;
}

/* GENERICS */

.container {
  box-sizing: border-box;
  padding: 80px 0;
}

.container__mod1 {
  padding-bottom: 0;
}

.row {
  box-sizing: border-box;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.row__mod1 {
  max-width: 1024px;
}

.row__mod2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.row__mod3 {
  max-width: 1280px;
}

.row__mod4 {
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.app__container {
  font-size: 16px;
  padding: 2rem;
  z-index: 50;
  overflow: hidden;
  max-width: 100vw;
}

/* LOGO */

.logo__img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.logo__link:hover {
  color: rgb(100, 21, 255);
}

.logo__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: rgb(36, 62, 99);
  transition: all 300ms ease;
}

/* NAV */

.nav__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.nav__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link {
  font-size: 0.875rem;
  color: rgb(36, 62, 99);
  padding: 0 6px;
}

.nav__link:hover .nav__link--tag {
  color: rgb(100, 21, 255);
}

.nav__link--tag {
  color: rgb(36, 62, 99);
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin: 0 24px;
  transition: all 500ms ease;
}

.sign__up-box {
  background-color: rgb(100, 21, 255);
  height: 100%;
  border-radius: 9999px;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sign__up--box--text {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.hover__link {
  position: relative;
  text-decoration: none;
  color: rgb(36, 62, 99);
  padding-bottom: 0.4rem;
}

.hover__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(100, 21, 255);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.hover__link:hover::after {
  opacity: 1;
}

.sign__up-link {
  transition: all 300ms;
}

.sign__up-link:hover {
  filter: brightness(80%);
}

/* GETTING STARTED SECTION */

#getting_started {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.getting__started-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 8rem 0;
}

.getting__started--text-section {
  width: 42%;
}

.getting__started-img {
  width: 58%;
}

.starting__header {
  font-size: 3rem;
  color: #1a202c;
}

.starting__subheader {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #243e63;
  margin: 2rem 0;
}

.purple {
  color: rgb(100, 21, 255);
}

.email__input-box {
  width: 100%;
  max-width: 448px;
  border-radius: 9999px;
  border: 2px solid rgb(226, 232, 240);
  height: fit-content;
  height: 68px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input {
  max-width: 480px;
  width: 100%;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1.25rem 1.25rem 1.25rem 2rem;
  font-size: 1rem;
  transition: all 300ms;
  border: none;
  background-color: transparent;
}

.input::placeholder {
  color: #d8d7e0;
  font-weight: 500;
}

input:focus {
  outline: none;
}

.email__input-box:focus-within {
  border-color: #742cff;
}

.get__started-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: rgb(100, 21, 255);
  height: 52px;
  width: 60%;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  padding: 1rem 0;
  margin: 0.5rem 0.5rem 0.5rem 0;
  transition: all 300ms;
}

.get__started-btn:hover {
  filter: brightness(80%);
}

.customers__container {
  margin-top: 5rem;
  width: 100%;
}

.customers__para {
  font-weight: 800;
  font-size: 0.75rem;
  color: #a0aec0;
}

.customers {
  margin-top: 1rem;
  width: 100%;
  padding-right: 8rem;
  opacity: 0.5;
}

/* FEATUERS */

.features__title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.service__header {
  font-size: 3rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.025rem;
  color: #243e63;
}

.service__description {
  margin: 0 auto;
  margin-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #7c8ba1;
  font-weight: 500;
}

.purple__big {
  color: rgb(100, 21, 255);
  font-weight: 900;
}

.services {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.services__container {
  width: 100%;
}

.service {
  padding: 2rem 0.5rem;
  /* margin: 0 1rem; */
  display: flex;
}

.service__description-text {
  margin: 0.5rem 0 0 1rem;
  display: flex;
  flex-direction: column;
}

.icon {
  text-align: center;
  flex-shrink: 0;
  height: 4.125rem;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 9999px;
  padding: 1.25rem;
}

.service__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025rem;
}

.description {
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  color: #7c8ba1;
  max-width: 212px;
}

/* QUALITY WORK */

.quality__work-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.quality__work-title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.text__half-quality-work {
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 45%;
}

.margin__top {
  margin-top: 1rem;
}

.left {
  text-align: left;
}

.quality__work-header {
  font-size: 3rem;
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.025rem;
  color: #243e63;
}

.description2 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #7c8ba1;
  max-width: 570px;
}

.learn__more-btn {
  font-size: 0.875rem;
  background-color: rgb(100, 21, 255);
  border-radius: 9999px;
  color: white;
  padding: 0.75rem 2rem;
  width: 9rem;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  transition: all 300ms;
}

.learn__more-btn:hover {
  filter: brightness(80%);
}

.quality__img--wrapper {
  display: flex;
  align-items: center;
  width: 50%;
}

.quality__work-img {
  width: 100%;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 0.25rem;
}

/* NO ATTRIBUTES */

.no__bullets {
  list-style-type: none;
}

.no__margin {
  margin: 0;
}

.no-cursor {
  cursor: not-allowed;
}

/* STEPS */

.steps__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.step__number {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: #cbd5e0;
}

.step {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}

.steps__title-main {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.steps__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: rgb(36, 62, 99);
}

.steps__header {
  font-size: 3rem;
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.025rem;
  color: #243e63;
}

.steps__description {
  margin-left: 1.5rem;
}

.steps__description--para {
  margin-top: 0.75rem;
  color: #718096;
  max-width: 20rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}

.steps__img--wrapper {
  width: 50%;
  display: flex;
  align-items: center;
}

.steps__text--container {
  padding-left: 3rem;
  width: 50%;
}

.steps__img {
  width: 100%;
}

/* VALUES */

.values__title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.values__text--container {
  padding-left: 3rem;
  width: 50%;
}

.dollar__sign {
  height: 1.25rem;
  width: 1.25rem;
  vertical-align: middle;
}

.breifcase {
  height: 1.25rem;
  width: 1.25rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.value__icon1 {
  background-color: #9ae6b4;
  border-radius: 9999px;
  height: 36px;
  padding: 8px;
  color: #276749;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value__icon2 {
  background-color: #feb2b2;
  border-radius: 9999px;
  height: 36px;
  width: 36px;
  padding: 8px;
  color: #9b2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value__title {
  color: rgb(36, 62, 99);
  margin-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.values__header {
  font-size: 3rem;
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.025rem;
  color: #243e63;
}

.value__description {
  color: #718096;
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.625;
  max-width: 260px;
}

.value__box {
  display: flex;
  flex-direction: row;
  margin-bottom: 3rem;
}

.value__header {
  display: flex;
  justify-content: left;
  align-items: center;
}

.value {
  margin: 2rem 2rem 0 0;
}

/* PLANS */

.plans {
  z-index: 1;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.plan {
  /* margin: 4rem 2rem 0 0; */
  margin: 0 auto;
  margin-top: 4rem;
  width: calc(100% / 3);
  border-left: 1px solid rgb(226, 232, 240);
  border-top-left-radius: 8px;
  border-right: 1px solid rgb(226, 232, 240);
  border-top-right-radius: 8px;
  border-bottom: 1px solid rgb(226, 232, 240);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.plan__business {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-top: 2px solid rgb(102, 126, 234);
  border-bottom: 2px solid rgb(102, 126, 234);
}

.plan__business1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.plan__business3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.no__border {
  border: none;
}

.plan__part1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgb(226, 232, 240);
}

.plan__part2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-top: 1px solid rgb(226, 232, 240);
  border-bottom: 1px solid rgb(226, 232, 240);
}

.plan__part3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  border-top: 1px solid rgb(226, 232, 240);
}

.name {
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 700;
  text-align: center;
}

.for__who {
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 700;
  text-align: center;
  margin-top: 1.25rem;
}

.price {
  font-size: 3rem;
  color: #1a202c;
  font-weight: 700;
  text-align: center;
  margin: 4px 0;
}

.duration {
  font-size: 1rem;
  color: #a0aec0;
  font-weight: 700;
  text-align: center;
  margin: 4px 0;
}

.feature {
  text-align: center;
  color: #718096;
  margin-top: 1.25rem;
  font-weight: 500;
}

.buy__now1 {
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  color: #f7fafc;
  font-size: 0.875rem;
  background: linear-gradient(
    115deg,
    rgb(56, 178, 172) 0%,
    rgb(129, 230, 217) 100%
  );
  text-align: center;
  width: 69%;
  transition: all 300ms ease-in-out;
}

.buy__now1:hover,
.buy__now2:hover,
.buy__now3:hover {
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.4);
}

.buy__now2:hover {
  filter: brightness(95%);
}

.buy__now2 {
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  color: rgb(100, 21, 255);
  font-size: 0.875rem;
  background-color: #f7fafc;
  text-align: center;
  width: 69%;
  transition: all 300ms ease-in-out;
}

.buy__now3 {
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  color: #f7fafc;
  font-size: 0.875rem;
  background: linear-gradient(
    115deg,
    rgb(245, 101, 101) 0%,
    rgb(254, 178, 178) 100%
  );
  text-align: center;
  width: 69%;
  transition: all 300ms ease-in-out;
}

.container__main--home {
  display: flex;
  flex-direction: column;
}

.top__highlight {
  height: 8px;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  background: linear-gradient(
    115deg,
    rgb(56, 178, 172) 0%,
    rgb(129, 230, 217) 100%
  );
}

.top__highlight2 {
  height: 8px;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  background: linear-gradient(
    115deg,
    rgb(245, 101, 101) 0%,
    rgb(254, 178, 178) 100%
  );
}

.business {
  margin: 4rem 2rem 0 2rem;
  width: calc(100% / 3);
  background: linear-gradient(
    135deg,
    rgb(76, 81, 191) 0%,
    rgb(102, 126, 234) 100%
  );
  border-radius: 8px;
}

.slight__margin {
  margin-top: 8px;
}

.white {
  color: rgb(247, 250, 252);
}

.offwhite {
  color: rgb(226, 232, 240);
}

/* TESTIMONIAL */

.test__header {
  font-size: 3rem;
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.025rem;
  color: #243e63;
  margin-top: 0;
}

.testimonial__title {
  text-align: left;
  font-size: 16px;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.testimonial__text--section {
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 50%;
  padding-left: 4rem;
}

.testimonial__img--wrapper {
  width: 50%;
}

.testimonial__img {
  width: 100%;
}

.stars {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 4px;
}

.experience {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #243e64;
  font-weight: 700;
}

.cust__experience {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 2.875rem;
  color: #4a5568;
  line-height: 1.625;
  font-weight: 500;
}

.author__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.author__subcontainer {
  display: flex;
  flex-direction: row;
}

.author__bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.5rem;
}

.author__name {
  font-size: 1.25rem;
  color: #243e63;
  font-weight: 700;
}

.author__pos {
  font-size: 1rem;
  color: #7c8ba1;
  font-weight: 500;
}

.picture {
  display: flex;
  align-items: center;
}

.author__img {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
}

.arrow__container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.btn__right {
  border: none;
  border-radius: 9999px;
  width: 48px;
  margin: 0 12px;
  padding: 16px;
  vertical-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6415ff;
}

.divider {
  background-color: rgb(197, 198, 199);
  width: 1px;
  height: 24px;
}

.btn__left {
  border: none;
  border-radius: 9999px;
  width: 48px;
  margin: 0 12px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6415ff;
}

/* PATHS / BACKGROUND IMAGES */

.path1__container {
  opacity: 0.05;
  width: 256px;
  height: 256px;
  display: block;
  top: 0px;
  left: 0px;
  transform: translateX(0%) translateY(200%);
  z-index: -10;
  overflow: hidden;
  position: absolute;
}

.path1 {
  width: 100%;
  height: 100%;
}

.path2__container {
  opacity: 0.25;
  width: 256px;
  height: 256px;
  display: block;
  bottom: 0px;
  right: 0px;
  transform: translateX(0%) translateY(300%);
  z-index: -10;
  overflow: hidden;
  position: absolute;
}

.path2 {
  width: 100%;
  height: 100%;
}

.path3__container {
  opacity: 1;
  width: 80px;
  height: 80px;
  display: block;
  bottom: 0;
  right: 0;
  top: 0;
  transform: translateX(1550%) translateY(-50%);
  z-index: -10;
  overflow: hidden;
  position: relative;
}

.path3 {
  width: 100%;
  height: 100%;
}

.path4 {
  z-index: -10;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0px;
  left: 0px;
  width: 10rem;
  height: 10rem;
  display: block;
  transform: translate(345%, 1640%);
}

.path5 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -10;
  height: 14rem;
  width: 14rem;
  opacity: 0.25;
  transform: translateX(75%) translateY(1425%);
}

.path6 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -10;
  height: 16rem;
  width: 16rem;
  transform: translateX(700%) translateY(1800%);
}

.path7 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -10;
  height: 16rem;
  width: 16rem;
  transform: translateX(-50%) translateY(2100%);
}

.path8__container {
  opacity: 0.8;
  width: 320px;
  height: 320px;
  display: block;
  color: #130322;
  top: 0px;
  left: 0px;
  transform: translateY(-527px) translateX(-100px);
  z-index: -10;
  overflow: hidden;
}

.path8 {
  max-width: 100%;
  max-height: 100%;
}

/* FAQS */

.med__margin {
  margin-bottom: 48px;
}

.faqs {
  max-width: 896px;
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  margin: 0 auto;
}

.faq {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  background-color: #edf2f7;
  padding: 16px 40px;
  margin-top: 20px;
  transition: all 300ms ease;
}

.faq:hover {
  filter: brightness(95%);
  cursor: not-allowed;
}

.faq__holder {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 30px;
}

.question {
  font-size: 20px;
  color: #2d3748;
  font-weight: 600;
}

.dropdown__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PREFOOTER */

.prefooter__container {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  padding: 6.5rem 0;
  background-color: rgb(100, 21, 255);
  border-radius: 8px;
  justify-content: space-around;
}

.prefooter__text {
  max-width: 480px;
}

.prefooter__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f7fafc;
  padding-left: 2rem;
}

.prefooter__button--container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.prefooter__btn--getstarted {
  max-height: 66px;
  height: 100%;
  border: none;
  border-radius: 9999px;
  padding: 20px 40px;
  color: #f7fafc;
  background-color: #f56565;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 32px;
  margin-bottom: 16px;
  transition: all 300ms ease-in-out;
}

.prefooter__btn--getstarted:hover {
  background-color: #e53e3e;
}

.prefooter__btn--contactus {
  border: none;
  background-color: transparent;
  margin-right: 32px;
  margin-bottom: 16px;
  border-radius: 9999px;
  border: 2px solid rgb(159, 172, 193);
  padding: 20px 40px;
  font-size: 1rem;
  font-weight: 700;
  color: #f7fafc;
  transition: all 200ms ease-in-out;
}

.prefooter__btn--contactus:hover {
  background-color: #f7fafc;
  color: rgb(100, 21, 255);
  border-color: transparent;
}

/* FOOTER */

.footer {
  position: absolute;
  flex-direction: column;
  background-color: #6415ff;
  max-width: 100vw;
  max-height: 50vh;
  width: 100vw;
  overflow: hidden;
  
}

.column__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 10;
}

.column {
  margin-top: 48px;
  z-index: 10;
}

.footer__title {
  color: #f7fafc;
  font-size: 16px;
  text-align: left;
  font-weight: 700;
}

.link__list {
  list-style-type: none;
  margin-top: 24px;
}

.link__cont {
  margin-top: 12px;
}

.link {
  text-decoration: none;
  color: #f7fafc;
  font-size: 14px;
  padding: 0 0 4px;
  text-align: left;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}

.hover__link--white {
  position: relative;
  text-decoration: none;
  color: #f7fafc;
  padding-bottom: 0.4rem;
}

.hover__link--white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f7fafc;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.hover__link--white:hover::after {
  opacity: 1;
}

.horizontal__line {
  height: 2px;
  width: 100%;
  background-color: #742cff;
  margin: 64px 0;
}

.footer__end {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 0 32px;
}

.legal {
  color: #cbd5e0;
  font-size: 16px;
  font-weight: 500;
}

.logo__link--footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-left: 8px;
  font-weight: 900;
  color: #f7fafc;
  letter-spacing: 1px;
  transition: all 300ms ease;
}

.logo__img--footer {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.footer__icons-wrapper {
  display: flex;
  flex-direction: row;
}

.footer__icon-link {
  width: 32px;
  background-color: #f7fafc;
  padding: 8px;
  margin-right: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__icon-link2 {
  width: 32px;
  background-color: #f7fafc;
  padding: 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__backdrop {
  height: 40vh;
  position: absolute;
  background-color: #f7fafc;
  border-radius: 8px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 200px;
  bottom: 0;
  z-index: 3;
  margin: 24px 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms ease;
  opacity: 0;
  transform: translate(100%);
}

.menu--open .menu__backdrop {
  display: flex;
  visibility: visible;
  right: 0;
  opacity: 1;
  transform: translate(0);
}

.menu__btn-open {
  position: absolute;
  margin-right: 16px;
  visibility: hidden;
  border: none;
  background-color: transparent;
  color: #6415ff;
  cursor: pointer;
  visibility: hidden;
}

.menu__btn--open--icon {
  visibility: hidden;
}

.menu__btn-close {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  transform: translateX(-24px) translateY(24px);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.menu__btn-close:hover {
  color: #6415ff;
}

.burger__links-container {
  max-width: 100vw;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.burger__link-holder {
  padding-bottom: 4px;
  margin: 8px 0;
}

.burger__link-sign-up {
  padding: 16px 32px;
  margin-top: 32px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
  color: #f7fafc;
  background-color: #6415ff;
  border-radius: 9999px;
  transition: all 300ms ease-in-out;
}

.burger__link-sign-up:hover {
  filter: brightness(90%);
}

.burger__link-main {
  font-size: 1.125rem;
  transition: all 300ms ease-in-out;
  margin: 16px 0;
}

.burger__link-main:hover {
  color: rgb(100, 21, 255);
}

/* @media aka RESPONSIVE CSS */

@media (max-width: 1000px) {
  .nav__links {
    display: none;
  }

  .menu__btn-open {
    position: relative;
    visibility: visible;
    opacity: 1;
    border: none;
    color: #6415ff;
    cursor: pointer;
  }

  .menu__btn--open--icon {
    visibility: visible;
    opacity: 1;
  }

  .services {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
  }

  .starting__header {
    width: 100%;
    font-size: 1.875rem;
    color: #1a202c;
    text-align: center;
  }

  .starting__subheader {
    font-size: 1rem;
    text-align: center;
  }

  .customers__para {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 800;
  }

  .customers {
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .getting__started-img {
    width: 100%;
    max-width: 512px;
  }

  .getting__started--text-section {
    width: 100%;
    max-width: 512px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .getting__started-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .email__input-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .description2 {
    font-size: 1rem;
  }

  .text__half-quality-work {
    width: 100%;
    max-width: 295px;
  }

  .row__mod2 {
    display: flex;
    justify-content: center;
  }

  .quality__img--wrapper {
    width: 100%;
  }

  .quality__work-header {
    font-size: 2.25rem;
    text-align: left;
    font-weight: 900;
    letter-spacing: 0.025rem;
    color: #243e63;
  }

  .steps__header {
    font-size: 2.25rem;
    text-align: left;
    font-weight: 900;
    letter-spacing: 0.025rem;
    color: #243e63;
  }

  .values__header {
    font-size: 2.25rem;
    text-align: left;
    font-weight: 900;
    letter-spacing: 0.025rem;
    color: #243e63;
  }

  .values__text--container {
    padding: 0;
    width: 50%;
  }

  .value__title {
    font-size: 1rem;
  }

  .value__description {
    font-size: 0.875rem;
  }

  .value__box {
    margin-bottom: 32px;
  }

  .plans {
    display: flex;
    flex-direction: column;
  }

  .plan {
    width: 100%;
    max-width: 384px;
  }

  .business {
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
    margin-top: 4rem;
  }
}

@media (max-width: 640px) {

  .footer {
    max-height: 90vh;
  }
  .email__input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 448px;
    height: fit-content;
    border: none;
  }

  .get__started-btn {
    display: flex;
    overflow: hidden;
    transform: none;
    width: 100%;
    max-width: 448px;
    height: 100%;
    max-height: 63.5px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 16px;
    text-align: center;
  }

  .input {
    width: 100%;
    max-width: 448px;
    padding-right: 32px;
    border-radius: 9999px;
    border: 2px solid rgb(226, 232, 240);
  }

  .service__header {
    font-size: 2.25rem;
  }

  .service__description {
    font-size: 14px;
  }

  .service {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 352px;
  }

  .service__title {
    text-align: center;
  }

  .service__description-text {
    display: flex;
    align-items: center;
    margin-left: 0;
    width: 100%;
  }

  .description {
    text-align: center;
    width: 100%;
    max-width: 352px;
  }

  .quality__work-container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .quality__img--wrapper {
    width: 80%;
  }

  .quality__work-header {
    font-size: 1.875rem;
    text-align: center;
  }

  .text__half-quality-work {
    width: 100%;
    max-width: 448px;
    align-items: center;
  }

  .quality__work-title {
    margin-top: 4rem;
    text-align: center;
  }

  .description2 {
    text-align: center;
    font-size: 0.875rem;
  }

  .steps__container {
    flex-direction: column;
    align-items: center;
  }

  .steps__img--wrapper {
    width: 80%;
  }

  .steps__header {
    text-align: center;
    font-size: 1.875rem;
  }

  .steps__text--container {
    padding-left: 0;
    width: 100%;
    max-width: 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .step__number {
    width: 100%;
    text-align: center;
  }

  .step {
    flex-direction: column; 
    align-items: center;
    justify-content: center;
  }

  .steps__title-main {
    margin-top: 64px;
  }

  .steps {
    justify-content: center;
  }

  .steps__title {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }

  .steps__description {
    margin-left: 0;
  }

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

  .input:focus-within {
    border-color: #742cff;
  }

  .row__mod2 {
    flex-direction: column-reverse;
    align-items: center;
  }

  .steps__img {
    width: 100%;
  }

  .steps__img--wrapper {
    width: 100%;
    max-width: 448px;
    align-items: center;
    justify-content: center;
  }

  .values__title {
    text-align: center;
  }

  .values__header {
    font-size: 30px;
    width: 100%;
    max-width: 448px;
    text-align: center;
  }

  .values__text--container {
    width: 100%;
    max-width: 448px;
    align-items: center;
  }

  .description2 {
    margin-top: 36px;
  }

  .value__box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .value {
    margin-right: 0;
    width: 100%;
    max-width: 448px;
  }

  .values__title {
    margin-top: 32px;
  }

  .value__header {
    justify-content: center;
  }

  .value__description {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 16px;
  }

  .value__title {
    font-size: 20px;
  }

  .learn__more-btn {
    margin: 0 auto;
  }

  .row__mod4 {
    flex-direction: column;
    align-items: center;
  }

  .testimonial__text--section {
    padding-left: 0;
  }

  .testimonial__img--wrapper {
    width: 100%;
    max-width: 448px;
  }

  .testimonial__title {
    text-align: center;
    margin-top: 32px;
  }

  .test__header {
    font-size: 30px;
    text-align: center;
  }

  .testimonial__text--section {
    width: 100%;
    max-width: 448px;
  }

  .stars {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .experience {
    text-align: center;
  }

  .author__container {
    flex-direction: column;
    justify-content: center;
  }

  .author__subcontainer {
    flex-direction: column;
  }

  .picture {
    justify-content: center;
    margin-bottom: 16px;
  }

  .author__img {
    width: 64px;
    height: 64px;
  }

  .author__bio {
    padding-left: 0;
  }

  .author__name {
    margin-bottom: 4px;
  }

  .arrow__container {
    margin-top: 32px;
  }

  .question {
    font-size: 18px;
  }
  
  .prefooter__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .prefooter__title {
    font-size: 24px;
    padding-left: 0;  
    text-align: center;
    max-width: 472px;
  }

  .prefooter__button--container {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
  }

  .prefooter__btn--getstarted {
    font-size: 14px;
    margin-right: 0;  
    padding: 12px 24px;
  }

  .prefooter__btn--contactus {
    font-size: 14px;
    margin-right: 0;
    padding: 12px 24px;
  }

  .path8__container {
    transform: translateY(-795px) translateX(-100px);
  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
  }

  .link__cont {
    text-align: center;
  }

  .link__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .column__container {
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 536px;
    margin: 0 auto;
  }

  .horizontal__line {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .footer__end {
    flex-direction: column;
  }

  .legal {
    margin-top: 32px;
  }

  .footer__icons-wrapper {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {

  .prefooter__button--container {
    margin-top: 64px;
  }

  .email__input-box {
    display: flex;
    flex-direction: column;
  }

  .faq {
    padding: 20px 32px;
  }

  .faq__holder {
    width: fit-content; 
    height: fit-content;
  }

  .question {
    width: 100%;
    max-width: 270px;
  }

  .column {
    width: calc(100% / 3);
  }

  .path4 {
    display: none;
  }

  .path6 {
    display: none;
  }

  .path3__container {
    display: none;
  }
}
