* {
  font-family: 'Azo Sans', system-ui, sans-serif;
}

:root {
  --blue: #1655F5;
  --blue-l: rgba(37, 99, 235, .08);
  --blue-m: rgba(37, 99, 235, .15);
  --ink: #0D0D0F;
  --muted: #6C6C74;
  --muted2: #A0A0A8;
  --bg: #FFFFFF;
  --warm: #F7F7F4;
  --warm2: #F0F0EB;
  --border: #E6E6E1;
  --dark: #0A0A0A;
  --dark2: #141417;
}

@media (max-width: 767px) {
  .mt-mobile-24{
    margin-top: 24px !important;
  }
}


.section-title {
  font-size: 48px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  color: #1E1E1E;
  margin-bottom: 16px;
  line-height: 120%;
}

.body-text{
  font-size: 16px;
  margin-bottom: 16px;
  color: #444444;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -1%;
}


.deploy-section {
  background-color: #fafafa;
  display: flex;
  align-items: center;
  padding: 64px 0px;
}

@media (max-width: 991.98px) {
  .deploy-section {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }
}

.deploy-header {
  margin-bottom: 32px;
}

.deploy-header .deploy-label {
  font-size: 0.75rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 0.5rem;
}

.deploy-header .deploy-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.deploy-header .deploy-headline .text-accent {
  color: #1655F5;
}

.deploy-header .deploy-desc {
  font-size: 1rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-line {
  position: absolute;
  top: 1.25rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: #1655F5;
  z-index: 0;
}

@media (max-width: 767.98px) {
  .timeline-line {
    display: none;
  }
}

@media (min-width: 820px) and (max-width: 1180px) {
  .timeline-line {
    display: none;
  }
}

.timeline-steps {
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
  /* padding: 0 0.75rem 1.5rem; */
}

@media (max-width: 767.98px) {
  .timeline-step {
    padding-bottom: 2rem;
  }
}

.timeline-circle {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  border: 2px solid #1655F5;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-circle span {
  font-size: 0.9rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #1655F5;

}

.timeline-title {
  font-size: 16px;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1E1E1E;
  margin-bottom: 0.5rem;
  line-height: 140%;
  letter-spacing: -0.5%;
}

.timeline-desc {
  font-size: 14px;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.pill-tags {
  margin-top: 2rem;
  gap: 32px;
}

.pill-tag {
  display: inline-block;
  padding: 10px 16px 8px 16px;
  font-size: 14px;
  line-height: 115%;
  letter-spacing: 8%;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #444444;
  background-color: #fff;
  border: 1px solid #E8E8ED;
  border-radius: 9999px;
}

.problem-section {
  background-color: #000;
  color: #fff;
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .problem-section {
    padding: 3rem 0;
  }
}

.problem-section .container {
  max-width: 1140px;
}

.problem-copy {
  margin-bottom: 3rem;
}

.problem-label {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 14%;
  text-transform: uppercase;
  color: #6D6D6D;
  margin-bottom: 0.75rem;
  line-height: 150%;
}



.problem-body {
  font-size: 16px;
  color: #F1F1F1;
  line-height: 1.7;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -1%;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.problem-card {
  background-color: #111111;
  border-radius: 1rem;
  border: 1px solid #242424;
  padding: 24px;
}

.problem-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(22, 85, 245, 0.1019607843);
  margin-bottom: 0.9rem;
}

.problem-card-title {
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.5%;
}

.contact-us-form-img {
  height: 830px;
}

.contact-us-form-img img {
  width: 100%;
  height: 100%;
}

.contact-us-form-container {
  padding-top: 0;
}

.contact-us-form {
  align-items: stretch;
}

.contact-us-form-iframe {
  display: flex;
  
}

.contact-form-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    0 4px 10px rgba(15, 23, 42, 0.04);
  padding: 32px 28px 28px;
  text-align: left;
}

.contact-form-title {
  font-size: 26px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: block;
}

.contact-form-row--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-label {
  font-size: 13px;
  color: #111827;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  padding: 10px 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #9CA3AF;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: #1655F5;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(22, 85, 245, 0.08);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.contact-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111827;
  cursor: pointer;
  user-select: none;
}

.contact-form-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form-checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #D1D5DB;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form-checkbox input:checked + .contact-form-checkbox-box {
  border-color: #1655F5;
  background: #1655F5;
  box-shadow: 0 0 0 2px rgba(22, 85, 245, 0.18);
}

.contact-form-checkbox input:checked + .contact-form-checkbox-box::after {
  content: '';
  width: 8px;
  height: 5px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translateY(-0.5px);
}

.contact-form-checkbox-label {
  font-size: 13px;
  color: #111827;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.contact-form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 9999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.contact-form-submit:hover {
  background: #020617;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}

.contact-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.contact-form-disclaimer {
  font-size: 11px;
  color: #6B7280;
  margin: 8px 0 0;
  line-height: 1.6;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.contact-form-link {
  color: #1655F5;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .contact-us-form-img {
    height: auto;
    margin-bottom: 24px;
  }

  .contact-us-form-iframe {
    margin-top: 16px;
  }

  .contact-form-card {
    padding: 24px 20px 24px;
  }

  .contact-form-row--two {
    grid-template-columns: 1fr;
  }
}

.problem-card-text {
  font-size: 12px;
  color: #D8D8D8;
  line-height: 130%;
  letter-spacing: -0.5%;
  margin: 0;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.tenets-section {
  background-color: #fff;
  padding: 64px 0;
}

@media (max-width: 767.98px) {
  .tenets-section {
    padding: 3rem 0;
  }
}

.tenets-section .container {
  max-width: 1140px;
}

.tenets-header {
  margin-bottom: 32px;
}

.tenets-label {
  font-size: 0.75rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 0.5rem;
}

.tenets-headline {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #1f2937;
  line-height: 1.25;
}

.tenets-row {
  align-items: stretch;
}

.tenets-card {
  background-color: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
  padding: 1.75rem 1.75rem 1.5rem;
  height: 100%;
}

.tenets-card-heading {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 14%;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 115%;
}

.tenets-card--left .tenets-card-heading {
  color: #757575;
}

.tenets-card--left .tenets-card-heading {
  color: #757575;
}

.tenets-card--left .tenet-item-title {
  color: #757575;
}

.tenets-card--left .tenet-item-text {
  color: #757575;
}

.tenets-card--right .tenets-card-heading {
  color: #1655F5;
}

.tenet-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tenet-item+.tenet-item {
  margin-top: 20px;
}

.tenet-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(22, 85, 245, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1655F533;
}

.tenet-item-title {
  font-size: 16px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  color: #1E1E1E;
  margin-bottom: 0.15rem;
  margin-bottom: 4px;
  
}

.tenets-card--right .tenets-card-heading {
  color: #1655F5;
}

.tenet-item-text {
  font-size: 12px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 0px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.tenets-connector {
  text-align: center;
}

.tenets-connector-label {
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  font-style: Medium;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #9CA3AF;
  
}

.tenets-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 1.15rem;
  font-size: 12px;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #111827;
  background: linear-gradient(90deg, #1655F5, rgb(83.7142857143, 132.4285714286, 239.2857142857));
  border-radius: 9999px;
  border: none;
  border-radius: 9999px;
  border: 1px solid rgba(22, 85, 245, 0.30);
  background: rgba(22, 85, 245, 0.10);
  box-shadow: 0 0 20px 0 rgba(223, 13, 133, 0.15);
  backdrop-filter: blur(2px);
}

/* Past / Future tabs + triangle diagram */
.tenets-section--tabs .tenets-header {
  margin-bottom: 2rem;
}

/* Current state card inside Past tab */
.state-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 32px 32px 28px;
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #E6E6E1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.state-card-eyebrow {
  font-size: 12px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6D6D6D;
  margin-bottom: 6px;
}

.state-card-title {
  font-size: 22px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 500;
  color: #111827;
  margin-bottom: 10px;
}

.state-card-item {
  padding: 12px 0;
}

.state-card-item-title {
  font-size: 18px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  color: #111827;
  margin-bottom: 4px;
}

.state-card-item-title.f-title{
  color: #1655F5;
}

.state-card-item-text {
  font-size: 14px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.state-card-item-text.f-text {
  color: #444444;
}

.state-card-divider {
  height: 1px;
  background-color: #E5E7EB;
  margin: 6px 0;
}

@media (max-width: 575.98px) {
  .state-card {
    padding: 24px 20px 20px;
    border-radius: 14px;
  }
}

.tenets-tabs {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  justify-content: center;
}

.tenets-tab {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Azo Sans', system-ui, sans-serif;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: 1px solid #D4D4D8;

   

  color: #000;
}

.tenets-tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tenets-tab.past-btn {
  border-radius: 10px 0 0 10px;
}

.tenets-tab.future-btn {
  border-radius: 0 10px 10px 0;
}

.tenets-tab--active {
  background: #1655F5;
  color: #fff;
  border: 1px solid #1655F5;
}

.tenets-tab--active:hover {
  background: #1655F5;
}

.tenets-tab-panel {
  opacity: 1;
}

.tenets-tab-panel.is-active {
  opacity: 1;
}

#usecase-section {
  position: relative;
}

#usecase-section .usecase-sticky {
  position: sticky;
  top: 42px;
}

.pricing-comparison-table{
  overflow-x: scroll;
}

.past-img,
.future-img {
  display: block;
  
  
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  #usecase-section .usecase-sticky {
    top: 72px;
  }
  .past-img, .future-img {
    height: auto !important;
  }
}

#usecase-section .tab-pane.fade {
  transition: opacity 0.35s ease;
}

#usecase-section .usecase-scroll-spacer {
  height: 300vh;
}

.impact-section {
  background-color: #000;
  padding: 4rem 0;
}

@media (max-width: 991.98px) {
  .impact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 991.98px) {
  .impact-section .row {
    text-align: center;
  }
}

.impact-header {
  text-align: left;
}

@media (max-width: 991.98px) {
  .impact-header {
    text-align: center;
  }
}

.impact-header .impact-label {
  /* font-family: 'Azo Sans'; */
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  font-style: SemiBold;
  font-size: 14x;
  leading-trim: NONE;
  line-height: 115%;
  letter-spacing: 14%;
  vertical-align: middle;
  color: #6D6D6D;
  text-transform: uppercase;
}

.impact-header .impact-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.impact-header .impact-headline .text-accent {
  color: #1655F5;
}

.impact-header .impact-tba {
  font-size: 1rem;
  font-weight: 400;
  color: #F1F1F1;
  margin: 0;
}

.impact-card {
  background-color: #111111;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid #242424;
}

.impact-card .impact-stat {
  font-size: 64px;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1;
  line-height: 120%;
  letter-spacing: -2%;
}

.impact-card .impact-stat .text-accent {
  color: #1655F5;
}

.impact-card .impact-card-label {
  /* font-family: 'Azo Sans'; */
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  font-style: Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 114.99999999999999%;
  letter-spacing: 14%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #6D6D6D;
  margin: 8px 0px;
}

.impact-card .impact-card-desc {
  
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: -0.5%;
  text-align: center;
  color: #D8D8D8;
}

.press-section {
  background-color: #fff;
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .press-section {
    padding: 3rem 0;
  }
}

.press-section .container {
  max-width: 900px;
}

.press-label {
  font-size: 0.75rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 0.5rem;
}

.press-headline {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.press-card {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem 2.5rem;
}

.press-media-wrap {
  margin-bottom: 1.75rem;
}

.press-paper-header {
  font-size: 0.9rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.press-paper-subhead {
  font-size: 0.95rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  text-align: center;
  margin-bottom: 0.75rem;
}

.press-paper-line {
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.press-paper-video {
  border-radius: 0.5rem;
  overflow: hidden;
}

.press-video {
  width: 100%;
  height: auto;
  display: block;
}

.press-quote {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto 0.5rem;
}

.press-quote-source {
  font-size: 0.75rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 1.5rem;
}

.press-learn-more {
  font-size: 0.85rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #1f2937;
  text-decoration: none;
}

.press-learn-more span {
  margin-left: 0.25em;
}

.press-learn-more:hover {
  color: #1655F5;
}

.news-section {
  background-color: #fff;
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .news-section {
    padding: 3rem 0;
  }
}

.news-header {
  margin-bottom: 2.5rem;
}

.news-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
}

.news-cat {
  font-size: 0.85rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #1f2937;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.news-cat.active,
.news-cat:hover {
  color: #1655F5;
}

.news-cat-sep {
  color: #6b7280;
  font-weight: 300;
  pointer-events: none;
}

.news-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.news-headline .text-accent {
  color: #1655F5;
}

.news-subtitle {
  color: #444;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -1%;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.news-cards-fullwidth {
  /* margin-left: calc(50% - 50vw); */
  margin-bottom: 2rem;
}

.news-cards-outer {
  width: 100%;
}

.news-cards-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
  margin-left: max(1rem, (100vw - 1140px) / 2 + 1rem);
  padding-right: 0;
}

@media (max-width: 767.98px) {
  .news-cards-scroll {
    padding-left: 1rem;
  }
}

.news-cards-scroll::-webkit-scrollbar {
  height: 6px;
}

.news-cards-scroll::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}

.news-cards-scroll::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 3px;
}

.news-cards-scroll .news-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 576px) {
  .news-cards-scroll .news-card {
    flex: 0 0 min(260px, 45vw);
  }
}

@media (min-width: 992px) {
  .news-cards-scroll .news-card {
    flex: 0 0 260px;
  }
}

.news-card {
  height: 100%;
  min-height: 186px;
  background-color: #fff;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
  max-width: 300px;
  width: 100%;
}

.news-card.no-details h3 {
  color: #fff;
  margin-bottom: 0;
  position: relative;
  /* width: 100%; */
  bottom: -90px;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-card-label {
  /* font-family: 'Azo Sans'; */
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  font-style: Bold;
  font-size: 14px;
  line-height: 114.99999999999999%;
  letter-spacing: 14%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 14px;
}

.news-card-title {
  font-size: 16px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  
  color: #1E1E1E;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  flex-grow: 0;
}


.news-card-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.5%;
  color: #444;
  margin-bottom: 0.75rem;
  
}

.news-card-link {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  color: #444444;
  text-decoration: none;
  text-transform: uppercase;
}

.news-card-link:hover {
  color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}

.news-card-link span {
  margin-left: 0.15em;
}

/* Hero validated-by strip */
.validated-strip {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #444444;
  justify-content: center;
}

.validated-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444444;
}

.validated-name {
  font-size: 13px;
  font-weight: 300;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  color: #444444;
}

.validated-separator {
  color: #444444;
}

.news-cta {
  margin-top: 0.5rem;
}

.btn-view-all {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  text-decoration: none;
  color: #111111;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  font-weight: 400;
  /* font-family: 'Azo Sans'; */
  letter-spacing: 0;
}

.btn-view-all:hover {
  background-color: rgb(234.2571428571, 235.9857142857, 239.4428571429);
  border-color: rgb(214.5869565217, 217.6956521739, 223.9130434783);
  color: #1f2937;
}

.btn-view-all span {
  margin-left: 0.25em;
}

.cta-section {
  background-color: #fff;
  padding: 64px 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 3rem 0;
  }
}

.cta-label {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 14%;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 0.5rem;
}

.cta-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-headline .text-accent {
  color: #1655F5;
}

.cta-desc {
  font-size: 16px;
  color: #444444;
  line-height: 140%;
  margin-bottom: 36px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-primary {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #fff;
  background-color: #1655F5;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-cta-primary:hover {
  background-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  color: #fff;
}

.cta-demo-link {
  font-size: 0.95rem;
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-demo-link:hover {
  color: #1655F5;
}

.cta-demo-link span {
  margin-left: 0.2em;
}

.careers-section {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 3rem;
}

@media (max-width: 767.98px) {
  .careers-section {
    padding: 3rem 0 2.5rem;
  }
}

.careers-intro {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .careers-intro {
    margin-bottom: 0;
  }
}

.careers-label {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400; 
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6d6d;
  margin-bottom: 12px;
}

.contact-us-message{
  text-align: center;
}

.careers-divider {
  border-color: rgba(148, 163, 184, 0.35);
  margin: 0 0 0.75rem;
}

.careers-meta {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d6d6d;
  margin-bottom: 8px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
}

.careers-meta-sub {
  font-size: 12px;
  color: #b3b3b3;
  
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
}

.careers-roles-card {
  background-color: #111111;
  border-radius: 10px;
  border: 1px solid #242424;
}

.careers-role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 26px;
  border-bottom: 1px solid #242424;
}

.careers-role:last-of-type {
  border-bottom: none;
}

.careers-role-title {
  font-size: 16px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 140%;
  letter-spacing: -0.5%;
}

.careers-role-meta {
  font-size: 12px;
  color: #B3B3B3;
  margin: 0;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.5%;
}

.careers-role-arrow {
  font-size: 1.1rem;
  color: #adb5bd;
}

.careers-view-all {
  font-size: 14px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 14%;
  color: #1655F5;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #242424;
}

.careers-view-all span {
  margin-left: 0.1em;
}

.site-footer {
  background-color: #000;
  color: #adb5bd;
  padding: 64px 0 32px;
  font-size: 14px;
}

.site-footer-top .container {
  max-width: 1140px;
}

.footer-newsletter-title {
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 114.99999999999999%;
  letter-spacing: -2%;
  color: #fff;
  margin-bottom: 24px;
}

.footer-form {
  margin-bottom: 1.25rem;
}

.footer-email-wrap {
  display: flex;
  align-items: center;
  background-color: #212529;
  border-radius: 9999px;
  padding: 0.25rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  overflow: hidden;
}

.footer-email-input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

.footer-email-input::-moz-placeholder {
  color: #adb5bd;
}

.footer-email-input::placeholder {
  color: #adb5bd;
}

.footer-email-btn {
  border: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: #1655F5;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-email-btn span {
  font-size: 1.1rem;
}

.footer-form-note {
  font-size: 12px;
  color: #B3B3B3;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;

}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pill {
  display: inline-flex;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border: 1px solid #B3B3B3;
  
  /* color: #adb5bd; */
  /* font-size: 12px; */
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  height: 33px;
}

.footer-pill.footer-pill-disabled {
  opacity: 40%;
}

.footer-pill img {
  width: 12px;
  height: 12px;
}

.footer-pill .footer-pill-text {
  display: inline-block;
  color: #B3B3B3;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -1%;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.22s ease, opacity 0.18s ease;
}

.footer-pill:hover {
  border-color: rgb(74.3714285714, 125.7428571429, 238.4285714286);
  background-color: rgba(37, 99, 235, 0.08);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  transition: all 0.5s ease-in-out;
}

.footer-links-title {
  font-size: 16px;
  font-family: 'Azo Sans  ', system-ui, sans-serif;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list li+li {
  margin-top: 0.25rem;
}

.footer-links-list a {
  color: #B3B3B3;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: normal;
  gap: 6px;
  margin-bottom: 0px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-list a img {
  display: none;
}

.footer-links-list a:hover img {
  display: block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(0px);
}

.site-footer-bottom {
  margin-top: 2.5rem;
  text-align: left;
}

.site-footer-copy {
  font-size: 0.78rem;
  color: #adb5bd;
}

.mini-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background-color: #000;
  color: #adb5bd;
  font-size: 0.8rem;
}

.mini-footer-inner {
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links-list-description {
  font-size: 12px;
  color: #6D6D6D;
  margin: 0;
  font-weight: 300;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  line-height: 130%;
  letter-spacing: -0.5%;
}

.mini-footer-logo {
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  
  color: #fff;
  letter-spacing: 0.02em;
  font-size: 20px;
}

.mini-footer-logo span {
  color: #1655F5;
}

.mini-footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.mini-footer-nav a {
  color: #6B7280;
  font-size: 12px;
  text-decoration: none;
}

.mini-footer-nav a:hover {
  color: #ffffff;
}

.mini-footer-right {
  color: #ffffff;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -3%;
}

.mini-footer-right-copyright{
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  font-size: 12 px; 
  line-height: 130%;
  letter-spacing: -0.5%;
  color: #6D6D6D;
}


.solution-tab {
  gap: 30px;
  margin-bottom: 36px;
}

.solution-tab li button {
  border: 0.86px solid #E8E8ED;
  padding: 8px 16px;
  border-radius: 20px !important;
  font-size: 16px;
  line-height: 140%;
  color: #1E1E1E;
  
  font-family: 'Azo Sans', system-ui, sans-serif;
font-weight: 400;
  
}

.solution-tab li button.active {
  background: #1E1E1E !important;
  color: #FFFFFF;
}

@media (max-width:1024px) {
  .impact-card .impact-stat{
    font-size: 46px;
  }
}

@media (max-width:991px) {
  .solution-tab,.pill-tags {
    gap: 10px;
  }
  .impact-card .impact-stat{
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .mini-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mini-footer-right {
    text-align: left;
  }

  .mini-footer-nav {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
}

.accordian-brown .accordian-brown-content{
  border: 1px solid #D4D4D81F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff22;
  gap: 24px;
}

.link-a {
  font-size: 14px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  color: #1655F5;
  display: inline-flex;
  align-items: center;
  letter-spacing: 1%;
  gap: 5px;
  transition: gap .15s;
}

.press-video-wrapper-main-content-title{
  font-family: 'Times New Roman MT Std';
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 120%;
  color: #444444;
  font-size: 18px;
  background: #ffffff;
}

.press-video-wrapper-main-content{
  background: #ffffff;
  padding: 10px;
}

.press-video-wrapper-main-content-footer-new{
  
  margin-top: 10px;
}
.press-video-wrapper-main-content-footer-new div{
  padding:14px 20px;
  background: #F0F0EB;
  text-align: left;
  border-radius: 8px;
}

.disruption-section {
  padding: 64px 0;
  /* background: #F3F4EC; */
}

.disruption-section .use-case-btn {
  text-align: left;
}

.disruption-lead {
  font-size: 16px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 1%;
  color: #444444;
  margin-bottom: 0;
}

.tenets-section-disruption{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E6E6E1;
  border: 1px solid #E6E6E1;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 38px;
}

.tenets-disruption-card {
  display: block;
  padding: 40px 32px;
  background: #ffffff;
  text-decoration: none;
  transition: background 0.18s ease;
}

@media (min-width: 820px) and (max-width: 1180px) {
  .tenets-disruption-card {
    padding: 20px 16px;
  }
}

.tenets-disruption-card--middle { 
  border-left: 1px solid #E6E6E1;
  border-right: 1px solid #E6E6E1;
}

.dropdown-menu-wrap.smartaccess-lock-card { 
  min-width: 650px !important;
}

.eyebrow {
  /* font-size: 12px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1655F5;
  margin-bottom: 14px; */

  font-family: 'Azo Sans', system-ui, sans-serif;
  
  font-weight: 500;
  font-size: 14px;
  line-height: 114.99999999999999%;
  letter-spacing: 14%;
   
  text-transform: uppercase;
   
  display: block;
  color: #1655F5;
  margin-bottom: 16px;
}

.display-sm {
  font-size: 24px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 10px;
}

.tenets-disruption-copy {
  font-size: 14px;
  margin-bottom: 16px;
  color: #444444;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 150%;
}

.tenets-section-disruption .link-a {
  margin-top: 4px;
}

@media (max-width: 767.98px) {
  .disruption-section {
    padding: 64px 0;
  }

  .tenets-section-disruption {
    grid-template-columns: 1fr;
  }

  .tenets-disruption-card--middle {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #E6E6E1;
    border-bottom: 1px solid #E6E6E1;
  }
}

/* Products modules grid */
.products-section {
  padding: 64px 0;
  /* background: #F3F4EC; */
}

.products-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; */
}

.product-module-card {
  display: block;
  padding: 24px;
  border: 1.5px solid #E6E6E1;
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

/* Mobile */
@media (max-width: 767px) {
}

.product-module-card--compact {
  padding: 24px;
}

.product-module-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.product-module-copy {
  font-size: 14px;
  margin-bottom: 18px;
  color: #444444;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 150%;
}

.products-grid-secondary {
  display: grid;
  gap: 14px;
}

@media (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: 1fr;

  }
}

.display-sm span {
  
  color: var(--blue);
  font-weight: 300;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;

}

.black {
  background: var(--dark);
  color: #fff;
}

.disruption-now-section {
  padding: 64px 0;
}

.disruption-now-layout {
  display: flex;
  gap: 40px;
}

.eyebrow-w {
  margin-bottom: 20px;
}

.display-md {
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
}

@media (min-width: 820px) and (max-width: 1180px) {
  .display-md {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .display-md {
    font-size: 28px;
  }
}

.display-md em {
  
  color: var(--blue);
}

.lead-w {
  font-size: 16px;
  color: #f1f1f1;
  margin-bottom: 20px;
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.disruption-now-quote {
  color: #B3B3B3;
  font-size: 16px;
  
  
  
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
  
}

.disruption-now-companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.disruption-now-card {
  padding: 32px 26px;
  background: var(--dark2);
}

.disruption-now-card--highlight {
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.disruption-now-card-title {
  font-weight: 300;
  color: var(--blue);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  font-family: 'Azo Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 28px;
}

.disruption-now-card-copy {
  font-size: 14px;
  
  
  
  font-family: 'Azo Sans Lt', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff4d;
}

@media (max-width: 991.98px) {
  .disruption-now-layout {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .disruption-now-section {
    padding: 72px 0;
  }

  .disruption-now-companies {
    grid-template-columns: 1fr;
  }
}

header .property-menu li {
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 5px !important;
  transition: all 0.25s ease;
}

@media screen and (max-width: 991px) {
  header .property-menu li {
    padding: 0;
  }
}

header .property-menu li p{
  margin-bottom: 0;
}
header .property-menu li:hover {
  background-color: #E9F0FF;
  border-color: #E9F0FF;
}

.book-demo-btn {
  height: 35px;
  display: none;
}

@media (max-width: 991px) {
  .book-demo-btn {
    display: block;
  }
}



.trusted-worldwide-section {
  background-color: #ffffff;
  overflow: hidden;
}
.trusted-worldwide-section .logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.trusted-worldwide-section .logo-slider .slider-track {
  display: flex;
  animation: slide 30s linear infinite;
  gap: 40px;
  height: 80px;
}
.trusted-worldwide-section .logo-slider .slider-track:hover {
  animation-play-state: paused;
}
.trusted-worldwide-section .logo-slider .logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 150px;
}
.trusted-worldwide-section .logo-slider .logo-item img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.trusted-worldwide-section .logo-slider .logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.trusted-worldwide-section .logo-slider .logo-item .logo-tag {
  display: block;
  background-color: #E9F0FF;
  border: 0.1px solid #2268FF;
  border-radius: 50px;
  color: #1E1E1E;
  font-size: 10px;
  font-weight: 500;
  font-family: "Azo Sans Lt";
  padding: 4px 6px;
  margin-left: 100px;
  line-height: 120%;
  letter-spacing: -0.2px;

}


@media (max-width: 768px) {
  .trusted-worldwide-section .logo-slider .slider-track {
    gap: 40px;
    animation-duration: 20s;
  }
  .trusted-worldwide-section .logo-slider .logo-item {
    min-width: 150px;
  }
  .trusted-worldwide-section .logo-slider .logo-item .logo-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
}
@media (max-width: 480px) {
  .trusted-worldwide-section .logo-slider .slider-track {
    gap: 30px;
  }
  .trusted-worldwide-section .logo-slider .logo-item {
    min-width: 120px;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.original-logo {
  opacity: 0;
  visibility: visible;
  display: none;
}

.trusted-worldwide-section .logo-slider .logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item:hover .colour-logo {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.logo-item:hover .original-logo {
  opacity: 1;
  visibility: visible;
  display: block;
}


.dark-sub-title{
  font-size: 16px; 
  font-weight: 300; 
  font-family: 'Azo Sans Lt', system-ui, sans-serif; 
  color: #6D6D6D; 
  margin-bottom: 42px; 
  text-transform: uppercase;
  line-height: 115%; 
  letter-spacing: 14%;
}

/* Mobile */
@media (max-width: 767px) {
  .dark-sub-title{
    font-size: 12px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .dark-sub-title{
    font-size: 14px;
  }
}

.home-video-wrapper {
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px #fff3, 0 0 0 1px #11182729, 0 2px 2px -2px #1118270d, 0 4px 4px #1118270d, 0 8px 8px #1118270d, 0 16px 16px #1118270d, 0 32px 32px #1118270d;
  border-radius: 16px;
  padding: 16px;
}

.home-video-wrapper button {
  border:1px solid #d4d4d8;
  background:#fff;
  border-radius:999px;
  padding: 8px 12px 8px 12px;
  /* width:40px;
  height:40px; */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}

@media (max-width: 768px) {
  .home-video-wrapper{
    display: none;
  }
  .home-video-wrapper button {
    padding: 6px;
    font-size: 12px;
  }
}

.tenets-tabs-wrapper{
  display: none;
}

@media (max-width: 768px) {
  .tenets-tabs-wrapper{
    display: block;
  }
}