:root {
  --primary-color: #eb0313;
  --text-dark: #342e2b;
  --text-light: #e2dad6;
  --background-dark: #3c3632;
  --background-light: #e2dad6;
  --white: #ffffff;
  --border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("./fonts/SFProDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("./fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("./fonts/SFProDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("./fonts/SFProDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: blinkmacsystemfont;
  font-display: swap;
  src: url("./fonts/blinkmacsystemfont-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: blinkmacsystemfont;
  font-display: swap;
  src: url("./fonts/blinkmacsystemfont-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}


body {
  font-family: 'SFProDisplay', sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
}



.main-frame {
  background: var(--background-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: -1;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: var(--background-light);
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  font-size: 25px;
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 20rem));
}

.header-nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease, var(--primary-color) 0.3s ease;
}

.header-nav a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-nav a {
    font-size: 3vw;
  }
}

@media (max-width: 480px) {
  .header-nav a {
    font-size: 4vw;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  padding: clamp(3rem, 5vw, 5.5rem) 0;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-section.index {
  display: flex;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  display: grid;
  gap: clamp(2rem, 5vw, 26.5625rem);
  z-index: 2;
  width: 100%;
}

.logo-container {
  width: 200px;
  max-width: 100%;
  z-index: 2;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border-radius: 20px;
  padding: 0.5rem 1rem;
}

.logo {
  width: 100%;
  height: 100%;
  aspect-ratio: 3;
  object-fit: contain;
  z-index: 2;
}

.opportunities-section__title {
  font-weight: 300;
font-size: 64px;
text-align: center;
color: #342e2b;
font-family: BlinkMacSystemFont;
line-height: normal;
margin-bottom: 80px;
}

@media (max-width: 1024px){
    .opportunities-section__title {
      margin-bottom: 0;
    }
}

@media (max-width: 768px){
    .opportunities-section__title {
      font-size: 30px;
    }
}

.hero-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 100px;
  flex-wrap: wrap;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-text {
    grid-template-columns: 1fr;
    gap: 2rem;
  }



  .logo-container {
    max-width: 30%;
    z-index: 2;
  }
}

.hero-heading {
  max-width: 950px;
}

.main-title {
  font-size: 72px;
  font-weight: 540;
  margin-bottom: 30px;
  line-height: normal;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 400;
}


.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 20px 50px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-button:hover {
  opacity: 0.9;
}

.features-section {
  padding: clamp(3rem, 4vw, 10.375rem) 0;

  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  margin-bottom: 0px;
}

.feature-row {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: clamp(2rem, 4vw, 3.75rem) clamp(1rem, 2vw, 1.875rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 4.875rem);
}

@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr;

  }

  .feature-title {
    margin-bottom: 20px;
  }
}

.feature-title {
  font-size: 3.5em;
  font-weight: 400;
  line-height: normal;
  max-width: 700px;
}

.feature-list {
  display: grid;
  gap: 2.5rem;
  flex: 1;

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.5em;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-title-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.5em;
}

.how-it-works {

  text-align: center;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  margin-top: 40px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 540;
  margin-bottom: clamp(2rem, 4vw, 1rem);
  text-align: center;
}

.title-left {
  text-align: left;
}

.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about__column {
  padding: 52px 97px;
  position: relative;
  aspect-ratio: 960 / 1037;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about__column img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.about__text {
  font-weight: 400;
font-size: 32px;
text-transform: capitalize;
text-align: right;
color: #fff;
position: relative;
z-index: 2;
}

@media (max-width: 1024px){
    .about__column {
      padding: 20px 20px;
    }
}
@media (max-width: 768px){
  .about__row {
    grid-template-columns: 1fr;
  }

  .about__text {
    font-size: 24px;
  }
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 0.75rem;
  justify-items: center;
}



.step-image {
  width: 100%;
  max-width: 499px;
  aspect-ratio: 0.67;
  object-fit: contain;
}

.boxes-video {
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 1024px){
  .step-image {
    max-width: 100%;
  }
}

.use-cases {
  padding-top: 100px;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-bottom: 100px;
}

.use-case-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5625rem);
}

.use-case-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 2.5rem);
  min-height: 200px;
}

@media (max-width: 768px) {
  .use-case-card {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    width: 100%;
  }
  .cta-button {
    width: 100%;
    padding: 20px;
  }
}

.use-case-icon {
  width: 100%;
  max-width: 500px;
  border-radius: 0.75rem;
  object-fit: contain;
}

.use-case-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.use-case-title {
  color: var(--primary-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 410;
  margin-bottom: 20px;
}


.use-case-description {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
}

.testimonials {
  color: var(--white);
  text-align: center;
  padding-bottom: clamp(3rem, 6vw, 3.25rem);


}

.testimonial-header {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 12.625rem) clamp(1rem, 4vw, 5rem) clamp(3rem, 6vw, 9.75rem);
  z-index: 2;
}

.testimonial-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stats-text {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-family: BlinkMacSystemFont;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
  line-height: normal;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-top: -3.375rem;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  z-index: 3;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  color: var(--text-dark);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.25;
  margin: 0;
  text-align: left;
}


.testimonial-card+.testimonial-card {
  margin-top: clamp(1rem, 2vw, 1.25rem);
}

.integration-banner {
  position: relative;
  min-height: 466px;
  color: var(--white);
  text-align: center;
  font-size: 72px;
  font-weight: 410;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 147px 70px 118px;
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-top: 100px;
  text-align: center;
}

.pricing-grid {
  display: flex;
  gap: 40px;
}

.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-details {
  background: var(--white);
  border-radius: 20px;
  min-height: 337px;
  padding-bottom: 40px;
  overflow: hidden;
}

.plan-header {
  position: relative;
  min-height: 177px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 540;
  color: var(--white);
}

.plan-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-type {
  position: relative;
  font-size: 1em;
  z-index: 1;
  margin-top: 10px;
}

.plan-description {
  font-size: 2em;
  line-height: 40px;
  padding: 40px 25px 0;
}

.plan-description span {
  color: #eb0313;
}

.plan-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 28px 0;
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.faq {
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-top: 100px;
  padding-bottom: 100px;

}

.faq-item {
  background: var(--white);
  margin-bottom: 10px;
  border-radius: var(--border-radius);
}

.faq-question {
  border: none;
  padding: 1rem;
  text-align: left;
  width: 100%;
  font-size: clamp(2.25rem, 2.5vw, 1.5rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  border-radius: var(--border-radius);
}

.about-section {
  background-color: var(--background-light);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-header {
  background-color: var(--white);
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  padding-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px){
  .about-header {
    padding-bottom: 20px;
  }
}

.company-name {
  color: var(--primary-color);
  font-size: clamp(2.5rem, 6vw, 4.8125rem);
  font-weight: 540;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.company-description {
  color: var(--text-dark);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 410;
  line-height: 1.6;
  letter-spacing: 0.09em;

}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  margin-top: 10px;
}

.plus-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 0;
}

.plus-icon img {
  width: auto;
  height: auto;
  max-width: 50px;
  max-height: 50px;
}

.team-member {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo-container {
  position: relative;
  width: auto;
  height: 50vh;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
}

.member-photo {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
}


@media (max-width: 1500px) {
  .team-grid {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0px;
  }

  .member-photo-container {
    width: auto;
    height: auto;
    max-width: 90%;
  }

  .member-photo {
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .team-member,
  .plus-icon {
    margin: 0;
  }
}



@media (prefers-reduced-motion: reduce) {
  .member-image-container {
    transition: none;
  }
}

@media print {
  .about-section {
    break-inside: avoid;
  }

  .member-image {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }


}

.contact {
  background: var(--white);
  box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.1);
  padding: clamp(3rem, 6vw, 5.125rem) 0;
}

.contact-form {
  margin: 0 auto;
  padding-left: max(0rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(0rem, calc((100% - 1920px) / 2 + 10rem));
}

.form-title {
  font-size: 72px;
  font-weight: 540;
  margin-bottom: 48px;
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 39px;

}

.form-fields input,
.form-fields textarea {
  flex: 1;
  min-height: 20px;
  width: 100%;
  border: 1px solid var(--text-dark);
  border-radius: 20px;
  padding: 31px 32px;
  font-size: 24px;
  box-sizing: border-box;
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 28px 56px;
  font-size: 28px;
  font-weight: 700;
  margin: 48px auto 0;
  display: block;
  cursor: pointer;
}

.g-recaptcha {
  display: block;
  margin: 20px auto;
  width: 300px;
}

.footer {
  padding: 70px 0 70px;
  text-align: center;
}

.footer-content {
  max-width: 586px;
  margin: 0 auto;
}

.copyright {
  font-size: 25px;
  font-weight: 410;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 20px;
}

.footer-nav a {
  color: var(--text-dark);
  text-decoration: none;
}

.subtitle {
  font-size: 72px;
  font-weight: 100;
}

@media (max-width: 991px) {

  .hero-section.index,
  .features-section,
  .how-it-works,
  .use-cases,
  .pricing,
  .faq,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    gap: 40px;
  }

  .main-title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 25px;
  }

  .hero-subtitle {
    font-size: 25px;
    font-weight: 400;
  }

  .feature-title {
    font-size: 25px;
  }

  .feature-item {

    font-size: 1.2em;
  }

  .use-case-description {
    font-size: 1.2em;
  }

  .feature-title-content {
    font-size: 1.2em;
  }

  .section-title {
    font-size: 40px;
  }

  .testimonial-header {
    font-size: 40px;
    padding: 100px 20px;
  }

  .pricing-grid {
    flex-direction: column;
  }

  .team-member {
    min-height: auto;
  }

  .member-name {
    padding: 20px;
  }

  .form-fields {
    flex-direction: column;
    min-height: 20px;
    min-width: 100px;
    font-size: 24px;
  }

  .footer-content {

    max-width: 70%;
  }

  .footer-nav {
    flex-direction: row;
    font-size: 15px;
  }

  .copyright {

    font-size: 20px;
  }

  .faq-question {
    font-size: 25px;
  }
}

/* Partners */

.partner-section {
  display: flex;
  min-width: 240px;
  width: 100%;
  padding: 100px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-basis: 0%;
  z-index: 1;
}

@media (max-width: 991px) {
  .partner-section {
    max-width: 100%;
    font-size: 40px;
    display: flex;
    align-items: center;
  }
}

.partner-content {
  align-self: center;
  border-radius: 20px;
  color: var(--text-dark);
  font-size: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  min-height: 170px;
  width: 1386px;
  max-width: 100%;
  gap: 10px;
  padding: 28px 30px;
  z-index: 1;
}

@media (max-width: 991px) {
  .partner-content {
    max-width: 100%;
    font-size: 60px;
  }
}



.opportunities-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 5rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 5rem));
  padding-top: 80px;
  padding-bottom: 80px;
}

.opportunities-wrapper {
  display: flex;
  width: 100%;
  max-width: 1828px;
  flex-direction: column;
}

.opportunities-heading {
  text-align: center;
  align-self: center;
  font: 300 64px;
}

.opportunities-grid {
  display: flex;

  gap: 40px 51px;
  justify-content: start;
  flex-wrap: wrap;
}

.opportunity-card {
  border-radius: 20px;
  background-color: var(--white);
  display: flex;
  min-width: 200px;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
  flex: 1;
  flex-basis: 0%;
  padding: 30px;
}


.opportunity-description {
  font-size: 48px;
  font-weight: 200;
  line-height: 92%;
  margin-top: 70px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.opportunity-title {
  font-size: 60px;
line-height: 91%;
  font-weight: 500;
}

.opportunity-title span {
  color: #eb0313;
}


@media (max-width: 1024px) {
  .opportunities-section {
    max-width: 100%;
    padding: 50px 20px;
  }

  .opportunities-wrapper {
    max-width: 100%;
  }

  .opportunities-heading {
    max-width: 100%;
    font-size: 40px;
  }

  .opportunities-grid {
    max-width: 100%;
    margin-top: 40px;
  }

  .opportunity-card {
    max-width: 100%;
    padding: 0 20px;
  }

  .opportunity-title {
    max-width: 100%;
    font-size: 30px;
    margin-top: 20px;
  }

  .opportunity-description {
    max-width: 100%;
    margin-top: 30px;
    font-size: 25px;
    margin-bottom: 30px;
  }

}

.benefits-grid {
  position: relative;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 20w, 1.25rem);
  margin-top: -3.375rem;
  gap: 50px 90px;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 1rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 1rem));
  z-index: 3;
  width: 100%;
    max-width: 1828px;
   margin-left: auto;
   margin-right: auto;
}

@media (max-width: 992px){
  .benefits-grid  {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
}

.benefits-column {
  position: relative;
  display: table-column;
  padding-left: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  padding-right: max(1rem, calc((100% - 1920px) / 2 + 10rem));
  z-index: 3;
  margin-top: 0
}


.benefits-container {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  color: var(--text-dark);
  line-height: 1.25;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .benefits-container {
    max-width: 100%;
  }
  .benefits-container {
    padding: 20px;
  }
}

.benefits-title {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .benefits-title {
    max-width: 100%;
    font-size: 30px;
  }
}

.benefits-description {
  color: var(--text-dark);
  font-weight: 274;
  font-size: 48px;
  font-weight: 200;
  line-height: 92%;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .benefits-description {
    max-width: 100%;
  }
}


.how-to-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 54px 53px;
}



.steps-container-partners {
  display: flex;
  max-width: 100%;
  width: 1814px;
  flex-direction: column;
  justify-content: start;
}

.steps-wrapper {
  display: flex;
  margin-top: 159px;
  min-height: 500px;
  width: 100%;
  max-width: 1814px;
  flex-direction: column;
  justify-content: start;

}

.step-item {
  display: flex;
  min-height: 121px;
  width: 100%;
  gap: 40px 51px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}



.step-number {
  border-radius: 20px;
  background-color: var(--primary-color);
  min-height: 60px;
  font-size: 36px;
  color: var(--text-light);
  font-weight: 700;
  width: 60px;
  height: 60px;
  margin: auto 0;
  padding: 0 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sub-title-block {
  font-weight: 300;
  font-family: BlinkMacSystemFont;
font-size: 64px;
text-align: center;
color: #342e2b;
line-height: normal;
margin-top: 20px;
margin-bottom: 40px;
padding: 0 20px;
}

@media (max-width: 992px){
  .sub-title-block {
    font-size: 30px;
  }
    
}

.step-text {
  color: var(--text-dark);
  font-size: 48px;
  font-family: BlinkMacSystemFont;
  font-weight: 300;
  width: 983px;
  text-align: center;
  line-height: normal;

}

@media (max-width: 1024px) {
  .how-to-start {
    padding: 20px 20px;
  }

  .steps-container {
    display: flex;
    max-width: 100%;
    width: 1814px;
    flex-direction: column;
    justify-content: start;
    margin-top: 40px;
  }

  .steps-container-partners {
    display: flex;
    max-width: 100%;
    width: 1814px;
    flex-direction: column;
    justify-content: start;
    margin-top: 40px;
  }

  .steps-wrapper {
    max-width: 90%;
    margin: auto;
  }

  .step-item {
    max-width: 100%;
  }

  .step-item:not(:first-child) {
    margin-top: 40px;
  }

  .step-text {
    max-width: 100%;
    font-size: 20px;
    text-align: center;
  }
}

.get-in-touch-section {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
  text-align: center;
  justify-content: center;
  padding: 100px 0;
}

@media (max-width: 991px) {
  .get-in-touch-section {
    padding: 60px 20px;
  }
}

.content-wrapper {
  position: relative;
  display: flex;
  max-width: 100%;
  width: 1814px;
  flex-direction: column;
  justify-content: start;
}

.text-wrapper {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .text-wrapper {
    max-width: 100%;
  }
}

.subtitle {
  font-size: 72px;
  font-weight: 300;
  font-family: BlinkMacSystemFont;
  text-align: center;
  align-self: center;

}

.description {
  font-family: BlinkMacSystemFont;
  font-size: 36px;
  margin-top: 33px;
  align-self: center;
  margin-bottom: 60px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .subtitle {
    max-width: 100%;
    font-size: 35px;

  }

  .description {
    font-size: 20px;
  }

  .opportunity-title {
    font-size: 25px;
  }

  .opportunity-description {
    font-size: 20px;
  }

  .benefits-title {
    font-size: 25px;
  }

  .benefits-description {
    font-size: 20px;
  }
}



.partner-hero-section {
  position: relative;
  
  overflow: hidden;
min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

/* Investors */

.investors-section {
  display: flex;
  min-width: 240px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-basis: 0%;
  z-index: 1;
}

.investors-content {
  align-self: center;
  color: #3c3532;
  font-size: 96px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  font-family: blinkmacsystemfont;
  font-weight: 700;
 
}

.investors-content span {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  display: block;
  text-align: center;
  max-width: 1386px;
  line-height: normal;
  width: 100%;
}

.investors-content.light {
  background-color: var(--white);
  color: var(--text-dark);
}


.plain-text {
  margin-top: 50px;
  font-size: 48px;
  width: 90%;
  font-family: BlinkMacSystemFont;
  max-width: 1386px;
  font-weight: 300;
  line-height: normal;
  color: var(--text-dark);
  text-align: center;

}

@media (max-width: 991px) {
  .investors-section {
    max-width: 100%;
    font-size: 40px;
    display: flex;
    align-items: center;
  }

  .investors-content {
    max-width: 100%;
    font-size: 60px;
  }

  .plain-text {
    font-size: 35px;

  }

}

@media (max-width: 430px) {

  .investors-content {

    max-width: 100%;
    font-size: 30px;
  }

  .partner-content {
    max-width: 100%;
    font-size: 30px;
  }

  .plain-text {
    font-size: 25px;
  }
}