@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Stack+Sans+Text:wght@200..700&display=swap");

.stack-sans-text-stack {
  font-family: "Stack Sans Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.geist-geist {
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

:root {
  --bg-clr: #ffff;
  --pri-clr: #031324;
  --brand-clr: #3b70df;
  --brand-dark: #081736;
  --paragraph-clr: #838f9b;
  --max-width: 1232px;
  --ff-headings: "Geist", sans-serif;
  --ff-normal: "Geist", sans-serif;
  --ff-code: "Roboto Mono", monospace;
}

:root {
  --fs-p: 16px;
  --fs-h5: clamp(1.2rem, 1.0745rem + 0.5577vw, 1.5625rem);
  --fs-h4: clamp(1.44rem, 1.2624rem + 0.7894vw, 1.9531rem);
  --fs-h3: clamp(2.228rem, 2.4811rem + 2.0975vw, 2.8414rem);
  --fs-h2: 42px;
  --fs-h1: 64px;
}

@media (max-width: 768px) {
  :root {
    --fs-h5: clamp(0.9rem, 0.85rem + 0.4vw, 1.1rem);
    --fs-h4: clamp(1rem, 0.95rem + 0.6vw, 1.3rem);
    --fs-h3: clamp(1.25rem, 1.1rem + 1vw, 1.6rem);
    --fs-h2: clamp(1.6rem, 1.4rem + 1.5vw, 2rem);
    --fs-h1: clamp(1.8rem, 1.6rem + 2vw, 2.4rem);
  }
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-headings);
  line-height: 1.2;
  text-wrap: balance;
  font-weight: 500;
  margin-block: 20px;
}

h1 {
  font-size: var(--fs-h1);

  font-weight: 500;
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h4);
}

h4 {
}
p {
  color: var(--paragraph-clr);
  font-size: var(--fs-p);
  line-height: 1.5;
  text-wrap: pretty;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--ff-code);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #2c3847;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul:where([role="list"]),
ol:where([role="list"]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;

  font-size: 16px;
  font-family: var(--ff-normal);
  color: var(--pri-clr);
  background: var(--bg-clr);
  font-weight: 300;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

img,
svg {
  display: block;
  object-fit: cover;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.container_large {
  max-width: var(--max-width);
  margin-inline: auto;
}

.padding_global {
  padding-inline: 2rem;
  padding-block: 6rem;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .padding_global {
    padding-inline: 1em;
    padding-block: 4em;
  }
}
.work-text {
  max-width: 600px;
}
.hero-text {
  text-align: center;
  max-width: 900px;

  margin-inline: auto;
  padding-top: 60px;
  position: relative;
  z-index: 100;
}
.testimonials-hero {
  text-align: center;
  max-width: 150px;
  margin-inline: auto;
  margin-top: 20px;
}

.hero-text h1 {
  margin-top: 40px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #0057d9 0%, #022654 35%, #071f3f 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-text p {
  font-size: 20px;
  text-wrap: pretty;
}

.btn-wrapper {
  margin-block: 40px;
}
.primary-btn {
  background: #3b70df;
  color: white;
  font-family: var(--ff-headings);
  padding: 16px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.primary-btn svg {
  width: 14px;
  transition: all 0.3s ease-in-out;
}

.primary-btn:hover {
  background: var(--brand-dark);
  color: white;
  transition: all 0.3s ease-in-out;
}

.primary-btn:hover svg {
  transform: translateX(4px);
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #78b4f2 0%,
    #91c3f5 27%,
    #bedbf7 52%,
    #e6f2fc 72%,
    #ffffff 94%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);

  background-size: 52px 52px;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: transparent;
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.navbar.scrolled {
  background: rgb(255, 255, 255);

  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-wrapper {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.nav-wrapper .primary-btn {
  background: #fbfcfe;
  color: var(--pri-clr);
  font-family: var(--ff-headings);
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.nav-list {
  display: flex;
  gap: 24px;
  font-weight: 300;
  list-style: none;
}

.nav-list li a {
  font-weight: 300;
  font-size: 16px;
}

.nav-list a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-list:hover a {
  filter: blur(1px);
  opacity: 0.6;
}

.nav-list:hover a:hover {
  filter: blur(0);
  opacity: 1;
}

.logo {
  width: 150px;
}

.toggle_button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: 10px;
  z-index: 10000;
  background: var(--accent-clr);
  border-radius: 4px;
}

.toggle_button .bar {
  height: 2px;
  width: 100%;
  background-color: var(--pri-clr);
  transition: width 400ms ease-in;
}

.btn-toggle-hold {
  display: none;
}

@media (max-width: 900px) {
  .btn-toggle-hold {
    display: flex;
  }

  .bar.active {
    transition: transform 0.6s ease-in-out;
  }
  .bar.one.active {
    transform: translate3d(0, 5px, 0) rotate(45deg);
  }

  .bar.two.active {
    transform: translate3d(0, -5px, 0) rotate(-45deg);
  }
  .bar.three.active {
    transform: scaleX(0);
    display: none;
  }

  .nav-list {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-list.active {
    background: white;
    transform: translateY(0);
    opacity: 1;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }
  .btn-wrap {
    display: none;
  }
}

.challenge-text {
  max-width: 600px;
  text-align: center;
  margin-inline: auto;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.challenge-card {
  padding: 24px 24px 0px 24px;
  background: #dde8f6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.challenge-card h3 {
  font-size: 20px;
  color: #131415;
  margin-bottom: 8px;
}

.challenge-card p {
  color: #333b44;
  font-size: 16px;
  margin-bottom: 16px;
}

.center {
  text-align: center;
}

.service-section {
  background: #dee9f6;
}

.one-col-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 32px;
  border-radius: 20px;
  position: sticky;
  top: 100px;

  min-height: 420px;

  transform-origin: center top;
  will-change: transform;
}

.tags {
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  background: #f5f9ff;
  padding: 6px 12px;
  margin-bottom: 4px;
  color: #000000e0;
  font-family: var(--ff-headings);
}
.label-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-flex div {
  max-width: 500px;
}

.label-flex p {
  max-width: 400px;
}

@media (max-width: 900px) {
  .service-card {
    grid-template-columns: 1fr;
  }
  .label-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .label-flex div {
    max-width: 100%;
  }

  .label-flex p {
    max-width: 100%;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #dee9f6;
}

.benefit-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.benefit-card h3 {
  font-size: 24px;
}

.review-text {
  max-width: 550px;
}

.slider {
  display: flex;
  gap: 20px;
}

.testimony-card {
  min-width: 400px;
  max-width: 400px;
  min-height: 550px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #dee9f6;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.slider:hover .testimony-card {
  opacity: 0.35;
}
.slider:hover .testimony-card:hover {
  opacity: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bio {
  display: flex;
  padding-top: 30px;
  border-top: 1px solid rgb(205, 205, 205);
  align-items: center;
  gap: 8px;
}

.testimony-card h3 {
  font-size: 24px;
}

.bio img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

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

.name h4 {
  margin: 0px;
}

.name p {
  font-size: 14px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #e8f0fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}

.button-hold {
  width: 100px;
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
}

.swiper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.review-text {
  margin-bottom: 40px;
}

.container {
  width: 48rem;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.accordion {
  width: 100%;
}

.accordion .accordion-item {
  border-bottom: 1px solid rgb(235, 235, 235);
}

.accordion button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 0;

  border: none;
  outline: none;
  background: none;

  color: #1f2937;
  font-size: 1.15rem;
  font-weight: 400;
  text-align: left;
}

.accordion button:hover,
.accordion button:focus-visible {
  cursor: pointer;
}

.accordion button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}

.accordion button .accordion-title {
  display: block;
  padding: 1rem 3rem 1rem 0;

  color: #242424;
  font-family: var(--ff-headings);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.35;
}

.accordion button .icon {
  position: absolute;
  top: 50%;
  right: 0;

  display: inline-block;
  width: 22px;
  height: 22px;

  border-radius: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.accordion button .icon::before {
  position: absolute;
  top: 9px;
  left: 5px;

  display: block;
  width: 10px;
  height: 2px;

  content: "";
  background: currentColor;
}

.accordion button .icon::after {
  position: absolute;
  top: 5px;
  left: 9px;

  display: block;
  width: 2px;
  height: 10px;

  content: "";
  background: currentColor;

  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.accordion button[aria-expanded="true"] .icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.accordion button[aria-expanded="true"] + .accordion-content {
  max-height: 30rem;
  opacity: 1;

  transition:
    opacity 200ms linear,
    max-height 300ms ease;
}

.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    opacity 200ms linear,
    max-height 300ms ease;

  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  margin: 0 0 1.25rem;

  font-size: clamp(0.95rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.65;
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  .accordion button .accordion-title {
    padding-right: 2.75rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .accordion button {
    min-height: 52px;
  }

  .accordion button .accordion-title {
    padding: 0.875rem 2.5rem 0.875rem 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .accordion button .icon {
    width: 20px;
    height: 20px;
  }

  .accordion button .icon::before {
    top: 8px;
    left: 5px;
    width: 10px;
  }

  .accordion button .icon::after {
    top: 4px;
    left: 9px;
    height: 10px;
  }

  .accordion .accordion-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
}

.flexed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.flexed .hero-text {
  text-align: left;
  max-width: 900px;

  margin-inline: auto;
  padding-top: 60px;
  position: relative;
  z-index: 100;
}
.flexed .testimonials-hero {
  text-align: left;
  max-width: 150px;
  margin-inline: auto;
  margin-top: 20px;
}

.footer-cta {
  max-width: 1000px;
  text-align: center;
  margin-inline: auto;
}

footer {
  background: #dee9f6;
}

.foot {
  margin-top: 80px;
}

.foot,
.foot-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
}

.foot ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.foot-left h3 {
  margin: 0px;
  padding: 0px;
}

.copywrite {
  margin-top: 40px;
}
.copywrite p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .foot,
  .flexed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: center;
  }
}

.work-card {
  max-width: 100%;
  width: 600px;
  min-width: 600px;
  padding: 20px;
  border: 1px solid #dee9f6;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.slider:hover .work-card {
  filter: blur(2px);
  opacity: 0.35;
}
.slider:hover .work-card:hover {
  filter: blur(0px);
  opacity: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.work-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-label h3 {
  font-size: 20px;
}
.work-label img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .foot,
  .flexed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: center;
  }
  .work-card {
    max-width: 100%;
    width: 600px;
    min-width: 350px;
    padding: 14px;
    border: 1px solid #dee9f6;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.clents-strip {
  margin-top: 100px;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.client {
  font-size: 16px;
  padding: 6px 12px;
  margin-bottom: 4px;
  background: #f5f9ff;
  font-family: var(--ff-code);
  border: 1px solid white;
  white-space: nowrap;
}
