:root {
  --bg-page: #ffffff;
  --bg-card: #ffffff;
  --text: #3b3b48;
  --text-soft: #66666f;
  --title: #31313d;
  --red: #d80000;
  --dark-red: #860000;
  --cyan: #14b6f7;
  --blue: #2570dd;
  --blue-deep: #02072c;
  --gold: #f5b800;
  --pink: #e61a84;
  --graphite: #6d6d76;
  --violet: linear-gradient(180deg, #d600ff 0%, #8a1dff 100%);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.1);
  --border-soft: rgba(55, 55, 65, 0.14);
  --radius-xl: 26px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg-page);
}

body.site-layout > main > .site-header,
body.site-layout > main > .home-index,
body.site-layout > main > .site-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.site-layout > main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  color: inherit;
}

.home-index {
  width: 100%;
  overflow: clip;
}

.home-floating-contact {
  position: static;
  pointer-events: none;
}















.home-help-stack {
  position: fixed;
  right: 52px;
  bottom: 62px;
  z-index: 80;
  width: 180px;
  text-align: center;
  color: #2b2b35;
  pointer-events: auto;
}

.home-help-stack p {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
}

.home-help-stack__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.home-help-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  transform: none;
  padding: 0;
  cursor: pointer;
}

.home-help-icon--phone {
  width: 51px;
  height: 52px;
  color: #000001;
}

.home-help-icon--phone::before,
.home-help-icon--phone::after {
  content: none;
}

.home-help-icon--whatsapp {
  width: 55px;
  height: 55px;
  color: #0dc143;
}

.home-help-icon--whatsapp::before {
  content: none;
}

.home-help-icon--whatsapp::after {
  content: none;
}

.home-help-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.home-help-icon path {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 900px) {
  .home-help-stack {
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .home-help-stack p {
    display: none;
  }

  .home-help-stack__icons {
    gap: 10px;
  }

  .home-help-icon {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  }

  .home-help-icon--phone {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .home-help-icon--whatsapp {
    width: 42px;
    height: 42px;
    padding: 8px;
  }
}

.home-index > section {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container {
  width: min(1105px, calc(100% - 72px));
  margin: 0 auto;
}

.section-space {
  padding: 30px 0;
}

.section-space--tight-top {
  padding-top: 12px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--pill {
  min-height: 35px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  transition: all 0.2s ease;
}

.button--orange {
  background: #f7a40e;
}

.button--orange:hover {
  background: #fff;
  color: #f7a40e;
  border: 2px solid #f7a40e;
}

.button--blue {
  background: #1380c9;
}

.button--blue:hover {
  background: #fff;
  color: #1380c9;
  border: 2px solid #1380c9;
}

.button--red {
  background: #db0000;
}

.button--red:hover {
  background: #fff;
  color: #db0000;
  border: 2px solid #db0000;
}

.button--lime {
  background: #c3c71b;
}

.button--lime:hover {
  background: #fff;
  color: #c3c71b;
  border: 2px solid #c3c71b;
}

.button--video::before {
  content: "\25B6";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  box-sizing: border-box;
  padding-left: 1px;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
}

.button--video::after {
  content: none;
}

.button--red-outline {
  min-width: 166px;
  background: var(--red);
  color: #fff;
  min-height: 40px;
}

.button--ghost-red {
  min-height: 40px;
  border: 1.5px solid rgba(216, 0, 0, 0.45);
  background: #fff;
  color: #7f7f87;
  font-weight: 500;
}


.leadership-hero {
  position: relative;
  min-height: 358px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0.47)),
    url("/img/pages/home/fondo-hero-liderazgo-oficina.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.leadership-hero__inner {
  position: relative;
  width: 100%;
  min-height: 358px;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #ffffff;
  font-family: 'Saria';
  font-weight: 500;
  font-synthesis: none;
  padding: 0;
}
 
.leadership-hero__inner * {
  font-family: inherit;
  font-weight: 500 !important;
  font-synthesis: none;
}

.leadership-hero__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership-hero__block--top {
  position: absolute;
  top: 62px;
  left: 50%;
  width: max-content;
  margin: 0;
  transform: translateX(-50%);
}

.leadership-hero__block--middle {
  position: absolute;
  top: 158px;
  left: 50%;
  width: max-content;
  margin: 0;
  opacity: 0;
  transform: translateX(-50%);
  animation: leadershipMiddleReveal 2.1s ease-out 3.8s forwards;
}

.leadership-hero__kicker {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.leadership-hero__headline {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.leadership-hero__block--middle .leadership-hero__kicker {
  font-size: 26px;
}

.leadership-hero__title {
  margin: 2px 0 0;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.leadership-hero__stats {
  position: absolute;
  top: 262px;
  left: 50%;
  width: 430px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 1.41;
  font-weight: 400;
  color: #a3d9f6;
}

@keyframes leadershipMiddleReveal {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0.42;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-hero__block--middle {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .leadership-hero {
    min-height: 320px;
  }

  .leadership-hero__inner {
    min-height: 320px;
    padding-top: 40px;
  }

  .leadership-hero__kicker {
    font-size: 20px;
  }

  .leadership-hero__headline {
    font-size: 30px;
  }

  .leadership-hero__title {
    font-size: 42px;
  }

  .leadership-hero__stats {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .leadership-hero {
    min-height: 280px;
  }

  .leadership-hero__inner {
    width: min(100% - 24px, 980px);
    min-height: 280px;
    padding: 30px 12px 20px;
  }

  .leadership-hero__block--top {
    margin-bottom: 14px;
  }

  .leadership-hero__block--middle {
    margin-bottom: 8px;
  }

  .leadership-hero__kicker {
    font-size: 16px;
  }

  .leadership-hero__headline {
    font-size: 24px;
  }

  .leadership-hero__title {
    font-size: 34px;
  }

  .leadership-hero__stats {
    font-size: 15px;
    line-height: 1.4;
  }
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.promo-card h2 {
  margin-bottom: 18px;
  text-align: center;
  color: var(--red);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.08;
  white-space: nowrap;
}

.promo-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.promo-card__media img {
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.promo-card__cta {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 10px;
  min-height: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #27304a;
  transition: all 0.2s ease;
  text-decoration: none;
}

.promo-card__cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  letter-spacing: 0.02em;
}

.promo-card__cta--secondary {
  bottom: 42px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 12px 18px;
}

.home-solutions {
  padding-bottom: 123px;
}

.solution-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-card);
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  min-height: 248px;
}

.solution-card--orange {
  border-color: #f2a20d;
}
.solution-card--blue {
  border-color: #266cde;
}
.solution-card--red {
  border-color: #d10000;
}
.solution-card--lime {
  border-color: #bcc514;
}

.solution-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.solution-card__brand--stack img {
  width: 46px;
  height: 52px;
  object-fit: contain;
  flex: none;
  margin-top: 2px;
}

.solution-card__brand--stack h3 {
  color: #edae03;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.01rem;
}

.solution-card__brand--center,
.solution-card__brand--documbox,
.solution-card__brand--logo-small {
  justify-content: center;
}

.solution-card__brand--center img {
  max-width: 154px;
  max-height: 58px;
  object-fit: contain;
}

.solution-card__brand--logo-small img {
  max-width: 112px;
  max-height: 62px;
  object-fit: contain;
}

.solution-card__brand--documbox {
  gap: 8px;
}

.solution-card__brand--documbox img {
  width: 46px;
  height: 52px;
  object-fit: contain;
}

.solution-card__brand--documbox h3 {
  font-size: 18px;
  color: #b7bf14;
  font-weight: 800;
}

.solution-card p {
  color: #525252;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  margin-bottom: auto;
}

.solution-card__actions {
  display: flex;
  justify-content: center;
}

.solution-card__actions--stack {
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.solution-card__actions .button {
  width: 100%;
  max-width: 170px;
}

.home-testimonials {
  position: relative;
  min-height: 337px;
  padding: 0;
  overflow: hidden;
}

.home-testimonials__bg {
  position: absolute;
  inset: 0;
}

.home-testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: 44% 50%;
  animation: testimonials-bg-pan 18s ease-in-out infinite alternate;
}

.home-testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
}

.testimonials-layout {
  position: relative;
  z-index: 1;
  min-height: 337px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 64px;
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.testimonials-stack {
  position: relative;
  min-height: 380px;
  isolation: isolate;
  perspective: 1200px;
}

.testimonial-card {
  position: absolute;
  top: 18px;
  left: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  width: 430px;
  min-height: 138px;
  padding: 16px 22px;
  color: #202020;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform-origin: center;
  transition:
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.62s ease,
    box-shadow 0.62s ease,
    filter 0.62s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
  color: #e2bb33;
  font-size: 13px;
}

.testimonial-card__stars span {
  font-size: 0;
}

.testimonial-card__stars span::before {
  content: "\2605";
  font-size: 13px;
}

.testimonial-card__stars .is-off {
  color: #cfcfcf;
}

.testimonial-card h3 {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.testimonial-card p {
  text-align: center;
  font-size: 10px;
  line-height: 1.3;
  margin: 0;
}

.testimonial-card:focus-visible {
  outline: 3px solid rgba(245, 184, 0, 0.65);
  outline-offset: 4px;
}

.testimonial-card[data-position="center"] {
  z-index: 3;
  top: 36px;
  width: 472px;
  min-height: 228px;
  padding: 26px 34px;
  transform: translateX(-50%) translateY(0) scale(1) rotateX(0deg);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.testimonial-card[data-position="center"] .testimonial-card__stars {
  margin-bottom: 14px;
  font-size: 22px;
}

.testimonial-card[data-position="center"] h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial-card[data-position="center"] p {
  font-size: 15px;
  line-height: 1.42;
}

.testimonial-card[data-position="left"],
.testimonial-card[data-position="right"] {
  z-index: 2;
  opacity: 0.78;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  filter: saturate(0.86) blur(0.15px);
}

.testimonial-card[data-position="left"] {
  transform: translateX(calc(-50% - 344px)) translateY(-34px) scale(0.78) rotateX(1deg);
}

.testimonial-card[data-position="right"] {
  transform: translateX(calc(-50% + 344px)) translateY(-34px) scale(0.78) rotateX(1deg);
}

.testimonial-card[data-position="left"] h3,
.testimonial-card[data-position="right"] h3 {
  font-size: 12px;
  margin-bottom: 8px;
}

.testimonial-card[data-position="left"] p,
.testimonial-card[data-position="right"] p {
  font-size: 10px;
  line-height: 1.3;
}

.testimonial-card[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.7) blur(1px);
  transform: translateX(-50%) translateY(-48px) scale(0.62);
}

.testimonials-stack.is-ready .testimonial-card[data-position="center"] {
  animation: testimonial-center-arrive 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-stack.is-transitioning .testimonial-card[data-position="left"],
.testimonials-stack.is-transitioning .testimonial-card[data-position="right"] {
  animation: testimonial-side-glow 860ms ease;
}

.testimonials-message {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 28px 34px;
  background: rgba(39, 39, 39, 0.58);
  color: #fff;
}

.testimonials-message p {
  font-size: 21px;
  line-height: 1.34;
}

@keyframes testimonial-center-arrive {
  0% {
    opacity: 0.54;
    transform: translateX(-50%) translateY(-22px) scale(0.88);
  }

  62% {
    opacity: 1;
    transform: translateX(-50%) translateY(3px) scale(1.018);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes testimonial-side-glow {
  0% {
    opacity: 0.34;
  }

  100% {
    opacity: 0.78;
  }
}

@keyframes testimonials-bg-pan {
  from {
    transform: scale(1.08) translateX(-12px);
  }

  to {
    transform: scale(1.08) translateX(18px);
  }
}

.smart-tech {
  position: relative;
  overflow: hidden;
  background: #fff url("/img/shared/home-smart-tech-bg.jpg") center top / cover no-repeat;
  padding: 30px 0 102px;
}

.smart-tech::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  z-index: 0;
}

.smart-tech::after {
  content: "";
  position: absolute;
  right: -136px;
  top: -18px;
  width: 320px;
  height: 720px;
  border-radius: 50%;
  border-left: 34px solid rgba(255, 255, 255, 0.76);
  display: none;
  z-index: 0;
}

.smart-tech > .container {
  position: relative;
  z-index: 1;
}

.smart-tech h2 {
  display: none;
}

.smart-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
  width: min(1010px, 100%);
  margin: 0 auto;
  padding-top: 18px;
}

.smart-tile{
  transition: all 0.4s ease;
}

.smart-tile:hover{
  transform: scale(1.05) translateY(-20px);
}

.smart-tile h3 {
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}
 
.smart-tile__media {
  display: block;
  width: min(100%, 220px);
  margin: 0 auto;
  border-radius: 0 36px 0 36px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.smart-tile__media img {
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.stats h2,
.partners h2,
.admin-logos h2 {
  color: #343444;
  font-size: 25px;
  font-weight: 700;
  margin-left: 20px;
}

.stats {
  padding: 40px 0 68px;
}

.partners {
  background:
    radial-gradient(ellipse 58% 42% at 76% -18%, rgba(205, 0, 0, 0.86) 0 31%, rgba(205, 0, 0, 0) 32%),
    radial-gradient(ellipse 46% 82% at -6% 100%, rgba(212, 0, 0, 0.86) 0 42%, rgba(212, 0, 0, 0) 43%),
    linear-gradient(104deg, #bc0000 0%, #5a0000 38%, #190000 66%, #070000 100%);
  color: #fff;
  padding-block: 18px 75px;
}

.partners-wrap {
  max-width: 1120px;
}

.partners-wrap h2 {
  color: #fff;
  margin-bottom: 18px;
  margin-left: 24px;
  font-size: clamp(24px, 2.15vw, 30px);
  font-weight: 700;
  line-height: 1.05;
}

.partners-marquee {
  position: relative;
  background: #fff;
  border-radius: 36px;
  padding: 24px 0;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.partners-marquee__viewport {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.partners-marquee__track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 26px;
  min-width: max-content;
  margin: 0;
  padding: 0 28px;
  list-style: none;
  animation: partners-marquee-scroll 36s linear infinite;
}

.partners-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 170px;
  width: 170px;
  height: 128px;
  padding: 8px 6px;
}

.partners-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.84;
  transform: scale(1.55);
}

.partners-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 1;
  pointer-events: none;
}

.partners-marquee__fade--left {
  left: 0;
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-marquee__fade--right {
  right: 0;
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes partners-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.community-blog > .container {
  width: 100%;
}

.community-blog__layout {
  display: grid;
  grid-template-columns: 650px 736px;
  gap: 240px;
  align-items: stretch;
  justify-content: start;
}

.community-visual {
  position: relative;
  min-height: 0;
  margin-top: 36px;
  overflow: hidden;
}

.community-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-visual h2 {
  position: absolute;
  top: 78px;
  right: 36px;
  text-align: right;
  color: #fff;
  font-size: clamp(46px, 3.65vw, 82px);
  line-height: 1.05;
  font-weight: 700;
}

.community-blog__content {
  display: grid;
  gap: 0;
  margin-top: 100px;
}


.blog-feed__intro {
  margin-bottom: 24px;
}

.blog-feed__intro p {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #4a4a56;
}

.blog-feed__card {
  background: #f5f5f5;
  border: 1px solid rgba(67, 67, 80, 0.18);
  border-radius: 22px;
  padding: 6px 24px 16px;
}

.blog-feed__item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(73, 73, 85, 0.18);
}

.blog-feed__item:last-of-type {
  border-bottom: 0;
}

.blog-feed__thumb {
  display: block;
  width: 140px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-feed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feed__meta {
  min-width: 0;
}

.blog-feed__meta h3 {
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 6px;
  color: #313243;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-feed__meta h3 a {
  text-decoration: none;
}

.blog-feed__submeta {
  font-size: 13px;
  color: #9a9aa2;
  margin-bottom: 8px;
}

.blog-feed__excerpt {
  font-size: 15px;
  color: #7b7b84;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-feed__footer {
  display: flex;
  justify-content: center;
  padding: 18px 0 4px;
}

.blog-feed__empty {
  text-align: center;
  color: #7b7b84;
  padding: 36px 0;
}

.blog-pagination a.is-active {
  color: #51515b;
  font-weight: 600;
}

.admin-logos h2 {
  font-size: 27px;
  text-align: center;
  margin-bottom: 36px;
}

.admin-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 106px;
  text-decoration: none;
}

.admin-logo img {
  max-height: 82px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1360px) {
  .container {
    width: min(980px, calc(100% - 48px));
  }

  .solution-grid,
.promos-grid,
.smart-tech__grid {
    gap: 20px;
  }

  .community-blog__layout {
    grid-template-columns: 32% 1fr;
  }
}

@media (max-width: 1100px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .promos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .smart-tech__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-index .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "pink pink graphite violet"
      "blue gold gold gold";
  }

  .home-index .stat-card__main-line {
    flex-direction: row;
    align-items: flex-start;
  }

  .home-index .stat-card__mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-index .stat-card--gold {
    grid-template-columns: repeat(5, 1fr);
  }

  .community-visual {
    min-height: 0;
  }

  .community-visual h2 {
    top: 48px;
    right: 28px;
    font-size: 54px;
  }

  .testimonials-stack {
    min-height: 300px;
  }

  .home-index .leadership-hero,
  .home-index .leadership-hero__inner {
    min-height: 358px;
  }

  .home-index .testimonials-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .home-index .smart-tech {
    padding: 30px 0 132px;
  }

  .home-index .partners {
    padding-block: 18px 108px;
  }

  .testimonials-stack .testimonial-card {
    display: flex;
  }

  .partners-wrap h2 {
    margin-left: 16px;
    font-size: 24px;
  }

  .partners-marquee {
    border-radius: 28px;
  }

  .partners-marquee__item {
    flex-basis: 164px;
    width: 164px;
    height: 104px;
  }

  .testimonial-card[data-position="center"] {
    width: 420px;
    min-height: 214px;
    padding: 24px 28px;
    transform: translateX(-50%);
  }

  .testimonial-card[data-position="center"] .testimonial-card__stars {
    font-size: 20px;
  }

  .testimonial-card[data-position="center"] h3 {
    font-size: 17px;
  }

  .testimonial-card[data-position="center"] p {
    font-size: 14px;
  }

  .testimonial-card[data-position="left"] {
    transform: translateX(calc(-50% - 230px)) translateY(-12px) scale(0.84);
  }

  .testimonial-card[data-position="right"] {
    transform: translateX(calc(-50% + 230px)) translateY(-12px) scale(0.84);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 100%);
  }

  .section-space {
    padding: 42px 0;
  }

  .partners {
    padding-block: 16px 46px;
  }

  .partners-wrap h2 {
    margin-left: 10px;
    margin-bottom: 14px;
    font-size: 22px;
  }

  .partners-marquee {
    border-radius: 24px;
    padding: 12px 0;
  }

  .partners-marquee__track {
    gap: 10px;
    padding: 0 12px;
    animation-duration: 28s;
  }

  .partners-marquee__item {
    flex-basis: 128px;
    width: 128px;
    height: 82px;
    padding: 8px;
  }

  .partners-marquee__fade {
    width: 36px;
  }

  .blog-feed__item {
    grid-template-columns: 88px 1fr;
    grid-template-areas:
      "thumb meta"
      "button button";
    gap: 8px 14px;
  }

  .blog-feed__thumb {
    grid-area: thumb;
    width: 88px;
    height: 88px;
  }

  .blog-feed__meta {
    grid-area: meta;
  }

  .blog-feed__item > .button {
    grid-area: button;
    justify-self: start;
    min-width: 0;
    min-height: 32px;
    padding: 0 16px;
    font-size: 13px;
  }

  .blog-feed__meta h3 {
    font-size: 17px;
  }

  .blog-feed__footer .button {
    min-height: 32px;
    padding: 0 16px;
    font-size: 13px;
  }

  .blog-feed__excerpt {
    display: none;
  }

  .home-testimonials {
    min-height: 620px;
  }

  .testimonials-layout {
    min-height: 620px;
  }

  .testimonials-stack {
    min-height: 300px;
  }

  .testimonial-card {
    top: 12px;
    width: min(250px, calc(100% - 56px));
    min-height: 150px;
    padding: 12px 14px;
  }

  .testimonial-card[data-position="center"] {
    top: 28px;
    width: min(100%, calc(100% - 18px));
    min-height: 208px;
    padding: 20px 20px;
    transform: translateX(-50%);
  }

  .testimonial-card[data-position="left"] {
    transform: translateX(calc(-50% - 92px)) translateY(-2px) scale(0.72);
    opacity: 0.62;
  }

  .testimonial-card[data-position="right"] {
    transform: translateX(calc(-50% + 92px)) translateY(-2px) scale(0.72);
    opacity: 0.62;
  }

  .testimonial-card[data-position="center"] .testimonial-card__stars {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .testimonial-card[data-position="center"] h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .testimonial-card[data-position="center"] p {
    font-size: 13px;
    line-height: 1.35;
  }

  .testimonials-message {
    padding: 28px 24px;
  }

  .testimonials-message p {
    font-size: 18px;
  }

  .promo-card__media img {
    height: 206px;
  }

  .testimonial-card,
.testimonials-message,
.solution-card,
.smart-tile__media {
    border-radius: 18px;
  }

  .group-item .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .community-visual {
    min-height: 420px;
  }

  .community-visual h2 {
    font-size: 42px;
    right: 18px;
    top: 24px;
  }


  .home-index .section-space {
    padding: 30px 0;
  }

  .home-index .home-solutions {
    padding-top: 12px;
    padding-bottom: 36px;
  }

  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    min-height: auto;
  }

  .home-index .leadership-hero,
  .home-index .leadership-hero__inner {
    min-height: 358px;
  }

  .home-index .promo-card__media img {
    height: 184px;
  }

  .home-index .testimonials-stack {
    min-height: auto;
  }

  .home-index .testimonials-layout {
    display: block;
    width: min(100% - 28px, 100%);
    padding: 28px 0;
  }

  .home-index .testimonials-stack .testimonial-card {
    display: none;
  }

  .home-index .testimonials-stack .testimonial-card[data-position="center"] {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    display: flex;
    transform: none;
    opacity: 1;
  }

  .home-index .testimonials-message {
    margin-top: 18px;
    border-radius: 18px;
    padding: 24px 22px;
  }

  .home-index .testimonials-message p {
    font-size: 17px;
  }

  .home-index .smart-tech {
    padding: 34px 0 46px;
  }

  .home-index .smart-tech h2 {
    margin-block: 0 28px;
    font-size: 24px;
    line-height: 1.18;
  }

  .home-index .promos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-index .solution-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-index .smart-tech__grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 28px;
  }

  .home-index .smart-tile {
    transform: none;
  }

  .home-index .smart-tile:hover {
    transform: none;
  }

  .home-index .smart-tile h3 {
    max-width: 310px;
    margin-inline: auto;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.32;
  }

  .home-index .stats-grid {
    display: flex;
    flex-direction: column;
  }

  .home-index .stat-card__main-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-index .stat-card__mini-grid {
    grid-template-columns: 1fr;
  }

  .home-index .stat-card--gold {
    grid-template-columns: 1fr;
  }

  .home-index .partners {
    padding-block: 18px 108px;
  }

  .home-index .community-blog__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-index .community-visual {
    min-height: 420px;
    margin-top: 12px;
  }

  .home-index .community-blog__content {
    gap: 0;
    margin-top: 0;
  }

  .home-index .blog-grid {
    grid-template-columns: 1fr;
  }

  .home-index .admin-logos__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


.home-index .community-blog__layout {
  grid-template-columns: 489px 736px;
  gap: clamp(110px, 8.5vw, 132px);
  justify-content: start;
}

.home-index .community-visual {
  height: 100%;
  min-height: 0;
}

.home-index .community-blog__content,
.home-index .groups-card,
.home-index .blog-panel,
.home-index .blog-grid {
  min-width: 0;
}

.home-index .community-blog__content {
  margin-top: 80px;
}

.home-index .community-visual h2 {
  right: 8px;
  font-size: 46px;
}

.home-index .groups-panel h2 {
  margin-left: 0;
  font-size: 32px;
  font-weight: 400;
}

.home-index .section-head {
  grid-template-columns: 128px 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.home-index .section-head p {
  max-width: 560px;
  justify-self: start;
  transform: translateX(-24px);
}

.home-index .group-item {
  grid-template-columns: 76px minmax(0, 1fr) max-content;
  gap: 12px;
}

.home-index .group-item__meta {
  min-width: 0;
}

.home-index .group-item__meta h3 {
  font-size: 20px;
  font-weight: 400;
}

.home-index .group-item .button--red-outline {
  width: 154px;
  min-width: 154px;
  padding-inline: 0;
}

.home-index .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.home-index .blog-card {
  display: block;
  align-self: start;
}

.home-index .blog-card__media img,
.home-index .blog-card--featured .blog-card__media img {
  height: 120px;
  min-height: 0;
}

.home-index .blog-card--featured .blog-card__media img {
  height: 225px;
}

.home-index .blog-card__body h3 {
  font-size: 20px;
  line-height: 1.34;
}

@media (max-width: 1180px) {
  .home-index .community-blog {
    padding-top: 46px;
  }

  .home-index .community-blog > .container {
    width: min(100% - 32px, 980px);
    max-width: none;
  }

  .home-index .community-blog__layout {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-content: stretch;
  }

  .home-index .community-visual {
    height: clamp(360px, 48vw, 520px);
    min-height: 0;
    margin-top: 0;
    border-radius: 0 56px 0 56px;
  }

  .home-index .community-visual h2 {
    top: 42px;
    right: 34px;
    font-size: clamp(38px, 7vw, 62px);
  }

  .home-index .community-blog__content {
    gap: 48px;
    margin-top: 0;
  }

  .home-index .section-head {
    grid-template-columns: minmax(128px, 180px) 1fr;
    gap: 24px;
  }

  .home-index .section-head p {
    max-width: none;
    justify-self: stretch;
    transform: none;
  }

  .home-index .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .home-index .blog-card {
    display: block;
  }

  .home-index .blog-card__media img,
  .home-index .blog-card--featured .blog-card__media img {
    height: 190px;
    min-height: 0;
  }

  .home-index .blog-card--featured .blog-card__media img {
    height: 248px;
  }

  .home-index .blog-card__body {
    padding: 18px 18px 24px;
  }

  .home-index .blog-card__body h3 {
    font-size: 20px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-index .community-blog {
    padding-top: 0;
  }

  .home-index .community-blog > .container {
    width: 100%;
    max-width: none;
  }

  .home-index .community-blog__layout {
    grid-template-columns: clamp(296px, 29vw, 348px) 736px;
    gap: 0;
    justify-content: start;
  }

  .home-index .community-visual {
    height: 100%;
    min-height: 0;
    margin-top: 36px;
    border-radius: 0;
    position: relative;
    z-index: 0;
  }

  .home-index .community-visual h2 {
    top: 78px;
    right: 36px;
    font-size: 46px;
  }

  .home-index .community-blog__content {
    gap: 0;
    margin-top: 80px;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }

  .home-index .section-head {
    grid-template-columns: 128px 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .home-index .section-head p {
    max-width: 560px;
    justify-self: start;
    transform: translateX(-24px);
    text-align: center;
  }

  .home-index .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
  }

  .home-index .blog-panel h2,
  .home-index .blog-card {
    position: relative;
    z-index: 2;
  }

  .home-index .blog-card__media img,
  .home-index .blog-card--featured .blog-card__media img {
    height: 120px;
    min-height: 0;
  }

  .home-index .blog-card--featured .blog-card__media img {
    height: 225px;
  }

  .home-index .blog-card__body {
    padding: 25px 24px 29px;
  }

  .home-index .blog-card__body h3 {
    font-size: 20px;
    line-height: 1.34;
  }
}

@media (max-width: 900px) {
  .home-index .stats {
    padding: 34px 0 46px;
  }

  .home-index .stats-title,
  .home-index .partners-wrap h2,
  .home-index .groups-panel h2,
  .home-index .blog-panel h2,
  .home-index .admin-logos h2 {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.18;
  }

  .home-index .stats-grid {
    gap: 16px;
    margin-right: 0;
  }

  .home-index .stat-card--pink,
  .home-index .stat-card--graphite,
  .home-index .stat-card--violet,
  .home-index .stat-card--blue,
  .home-index .stat-card--gold {
    padding: 24px 22px;
  }

  .home-index .stat-card__mega,
  .home-index .stat-card__big,
  .home-index .stat-card--graphite .stat-card__big,
  .home-index .stat-card--blue .stat-card__big,
  .home-index .stat-card--violet .stat-card__big {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1;
    white-space: normal;
  }

  .home-index .stat-card__label,
  .home-index .stat-card__copy,
  .home-index .stat-card--graphite .stat-card__copy,
  .home-index .stat-card--blue .stat-card__copy,
  .home-index .stat-card--violet .stat-card__copy {
    max-width: none;
    font-size: 15px;
    line-height: 1.25;
  }

  .home-index .stat-card__mini-grid {
    gap: 14px;
  }

  .home-index .stat-card__mini-grid strong,
  .home-index .stat-metric strong {
    font-size: 28px;
  }

  .home-index .stat-metric {
    align-items: center;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px 14px;
    text-align: left;
  }

  .home-index .stat-metric__icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .home-index .stat-metric__icon img {
    height: 50px;
  }

  .home-index .stat-metric span {
    margin: 0;
  }

  .home-index .partners {
    padding-block: 26px 48px;
  }

  .home-index .partners-marquee {
    border-radius: 22px;
    padding: 16px 0;
  }

  .home-index .partners-marquee__item {
    flex-basis: 154px;
    width: 154px;
    height: 86px;
  }

  .home-index .partners-marquee__track {
    gap: 18px;
    padding: 0 18px;
  }

  .home-index .community-blog {
    padding-top: 34px;
  }

  .home-index .community-blog > .container {
    width: min(100% - 28px, 100%);
  }

  .home-index .community-blog__layout {
    gap: 24px;
  }

  .home-index .community-visual {
    height: 360px;
    min-height: 0;
    border-radius: 0 34px 0 34px;
  }

  .home-index .community-visual h2 {
    top: 28px;
    right: 22px;
    font-size: clamp(26px, 5vw, 38px);
  }

  .home-index .community-blog__content {
    gap: 38px;
  }

  .home-index .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .home-index .section-head p {
    text-align: left;
    font-size: 15px;
  }

  .home-index .groups-card {
    padding: 12px 16px 10px;
    border-radius: 18px;
  }

  .home-index .group-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .home-index .group-item__thumb {
    width: 58px;
    height: 58px;
  }

  .home-index .group-item__meta h3 {
    font-size: 18px;
  }

  .home-index .group-item__meta p {
    font-size: 13px;
    line-height: 1.35;
  }

  .home-index .group-item .btn,
  .home-index .group-item__action {
    grid-column: 2;
    justify-self: start;
  }

  .home-index .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-index .blog-card__media img,
  .home-index .blog-card--featured .blog-card__media img {
    height: 190px;
  }

  .home-index .blog-card__body h3 {
    font-size: 20px;
  }
}

@media (min-width: 761px) {
  .home-index .home-promos {
    padding-top: 43px;
    padding-bottom: 30px;
  }

  .home-index .promo-card__media img {
    height: 199px;
  }

  .home-index .home-solutions {
    padding-bottom: 54px;
  }

  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: 338px;
    min-height: 338px;
  }
}

@media (min-width: 1181px) {
  .home-index .testimonials-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .home-index .testimonials-stack {
    width: 758px;
    margin-left: calc((100vw - 1078px) / 2);
  }

  .home-index .testimonials-message {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 368px;
    padding: 28px 45px;
  }

  .home-index .promos-grid {
    position: relative;
    display: block;
    height: 278px;
  }

  .home-index .promo-card {
    position: absolute;
    top: 0;
    width: 309px;
  }

  .home-index .promo-card:nth-child(1) {
    left: 0;
  }

  .home-index .promo-card:nth-child(2) {
    left: 412px;
    top: -4px;
  }

  .home-index .promo-card:nth-child(3) {
    left: 809px;
  }

  .home-index .promo-card:nth-child(2) h2 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 16px;
  }

  .home-index .promo-card__media,
  .home-index .promo-card__media img {
    width: 309px;
    height: 200px;
  }

  .home-index .promo-card__media {
    border-radius: 14px;
  }

  .home-index .solution-grid {
    grid-template-columns: repeat(4, 240px);
    gap: 52px;
    justify-content: flex-start;
  }

  .home-index .solution-card {
    min-height: 252px;
  }

  .home-index .solution-card .button {
    min-width: 180px;
  }

  .home-index .admin-logos {
    width: 1062px;
    margin-top: 51px;
    margin-left: -326px;
    min-height: 230px;
    position: relative;
    z-index: 3;
    background: #fff;
  }

  .home-index .admin-logos h2 {
    width: 850px;
    margin: 0 0 28px;
    text-align: left;
  }

  .home-index .admin-logos__row {
    width: 980px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.home-index .admin-logo--text {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  color: #171923;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.08;
}

.home-index .admin-logo img {
  transform: scale(1.34);
  transform-origin: center;
}

.home-index .admin-logo__mark {
  position: relative;
  flex: 0 0 29px;
  width: 29px;
  height: 35px;
  border: 1px solid #e32922;
  background:
    repeating-linear-gradient(90deg, #e32922 0 4px, transparent 4px 7px),
    #fff;
}

.home-index .admin-logo__mark::before {
  content: "";
  position: absolute;
  inset: 5px 7px;
  border-radius: 999px;
  background: #fff;
}

@keyframes admin-logos-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-index .admin-logos {
  overflow: hidden;
}

.home-index .admin-logos__viewport {
  width: min(100vw, 1278px);
  margin-left: calc((1062px - min(100vw, 1278px)) / 2);
  overflow: hidden;
}

.home-index .admin-logos__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: admin-logos-marquee 160s linear infinite;
}

.home-index .admin-logos__group {
  display: flex;
  flex: 0 0 auto;
}

.home-index .admin-logos .admin-logo {
  flex: 0 0 213px;
  width: 213px;
  height: 135px;
  min-height: 135px;
  padding: 0;
}

.home-index .admin-logos .admin-logo img {
  width: 214px;
  height: 135px;
  max-height: none;
  object-fit: contain;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-index .admin-logos__track {
    animation: none;
  }
}

.home-index .promo-card__media--split {
  display: block;
}

.home-index .promo-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1600px) {
  .home-index .community-blog__layout {
    grid-template-columns: 648px 736px;
    gap: 230px;
  }

  .home-index .community-visual h2 {
    top: 126px;
    right: 100px;
  }

  .home-index .section-head {
    grid-template-columns: 128px 1fr;
  }

  .home-index .section-head p {
    transform: none;
  }
}


@media (min-width: 901px) {
  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: 368px;
    min-height: 368px;
  }

  .home-index .home-testimonials {
    overflow: hidden;
  }

  .home-index .testimonials-stack {
    height: 368px;
    overflow: visible;
  }

  .home-index .testimonial-card {
    transition:
      transform 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      opacity 980ms ease,
      filter 980ms ease;
    will-change: transform, opacity;
  }

  .home-index .testimonial-card[data-position="hidden"] {
    opacity: 0.5;
    z-index: 1;
    filter: blur(0.1px);
    transform: translate(-128px, -8px) scale(0.62);
  }

  .home-index .testimonial-card[data-position="left"] {
    opacity: 0.8;
    z-index: 2;
    transform: translate(-559px, 1px) rotateX(1deg) scale(0.78);
  }

  .home-index .testimonial-card[data-position="right"] {
    opacity: 0.8;
    z-index: 2;
    transform: translate(129px, 1px) rotateX(1deg) scale(0.78);
  }

  .home-index .testimonial-card[data-position="center"] {
    opacity: 1;
    z-index: 4;
    transform: translate(-236px, 32px) scale(1);
  }
}


@media (min-width: 1600px) {
  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: 337px;
    min-height: 337px;
  }

  .home-index .testimonials-stack {
    height: 337px;
  }

  .home-index .testimonials-message {
    right: 122px;
    width: 372px;
    padding: 28px 45px;
  }

  .home-index .testimonial-card {
    transition:
      left 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      top 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      width 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      min-height 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      transform 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      opacity 980ms ease,
      filter 980ms ease;
  }

  .home-index .testimonial-card[data-position="hidden"] {
    left: 248px;
    top: 18px;
    width: 267px;
    min-height: 86px;
    opacity: 0.44;
    z-index: 1;
    transform: none;
  }

  .home-index .testimonial-card[data-position="left"] {
    left: -118px;
    top: 36px;
    width: 260px;
    height: 138px;
    min-height: 138px;
    padding: 14px 20px;
    overflow: hidden;
    opacity: 0.78;
    z-index: 2;
    transform: none;
  }

  .home-index .testimonial-card[data-position="right"] {
    left: 622px;
    top: 36px;
    width: 260px;
    height: 138px;
    min-height: 138px;
    padding: 14px 20px;
    overflow: hidden;
    opacity: 0.78;
    z-index: 2;
    transform: none;
  }

  .home-index .testimonial-card[data-position="center"] {
    left: 154px;
    top: 68px;
    width: 455px;
    min-height: 227px;
    padding: 18px 28px 22px;
    opacity: 1;
    z-index: 4;
    transform: none;
  }

  .home-index .testimonial-card[data-position="center"] .testimonial-card__stars {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 12px;
  }

  .home-index .testimonial-card[data-position="center"] h3 {
    font-size: 17px;
    line-height: 1.22;
    margin-bottom: 22px;
  }

  .home-index .testimonial-card[data-position="center"] p {
    font-size: 14px;
    line-height: 1.36;
    max-width: 360px;
    margin-inline: auto;
  }

  .home-index .testimonial-card[data-position="left"] h3,
  .home-index .testimonial-card[data-position="right"] h3 {
    max-width: 220px;
    font-size: 11px;
    line-height: 1.18;
    margin-bottom: 7px;
    margin-inline: auto;
  }

  .home-index .testimonial-card[data-position="left"] p,
  .home-index .testimonial-card[data-position="right"] p {
    display: -webkit-box;
    max-width: 218px;
    overflow: hidden;
    font-size: 9.5px;
    line-height: 1.24;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-inline: auto;
  }

  .home-index .testimonial-card[data-position="left"] .testimonial-card__stars,
  .home-index .testimonial-card[data-position="right"] .testimonial-card__stars {
    margin-bottom: 7px;
  }
}

@media (min-width: 1181px) {
  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: 337px;
    min-height: 337px;
  }

  .home-index .home-testimonials {
    overflow: hidden;
  }

  .home-index .home-testimonials__bg img {
    transform: none;
    transform-origin: center;
  }

  .home-index .testimonials-layout {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 337px;
    min-height: 337px;
    margin: 0;
  }

  .home-index .testimonials-stack {
    position: absolute;
    left: clamp(140px, calc((100vw - 1264px) / 2), 350px);
    top: 0;
    width: min(1000px, calc(100vw - 560px));
    height: 337px;
    min-height: 337px;
    margin: 0;
    overflow: visible;
  }

  .home-index .testimonials-message {
    position: absolute;
    top: 0;
    right: clamp(0px, calc((100vw - 1448px) / 2), 300px);
    bottom: 0;
    width: 372px;
    display: flex;
    align-items: center;
    padding: 28px 45px;
    background: rgba(39, 39, 39, 0.58);
    color: #fff;
  }

  .home-index .testimonials-message p {
    margin: 0;
    font-size: clamp(21px, 1.35vw, 23px);
    line-height: 1.26;
    font-weight: 500;
  }

  .home-index .testimonial-card {
    position: absolute;
    margin: 0;
    border-radius: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
    backdrop-filter: none;
    transition:
      left 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      top 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      width 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      height 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      min-height 980ms cubic-bezier(0.21, 0.72, 0.18, 1),
      opacity 980ms ease,
      filter 980ms ease;
    transform: none !important;
  }

  .home-index .testimonial-card[data-position="center"] {
    left: 244px;
    top: 65px;
    width: 455px;
    height: 227px;
    min-height: 227px;
    padding: 18px 28px 22px;
    opacity: 1;
    z-index: 4;
    filter: none;
    background: #fff;
  }

  .home-index .testimonial-card[data-position="left"] {
    left: 0;
    top: 31px;
    width: 260px;
    height: 137px;
    min-height: 137px;
    padding: 14px 20px;
    overflow: hidden;
    opacity: 0.82;
    z-index: 2;
    filter: saturate(0.88);
  }

  .home-index .testimonial-card[data-position="right"] {
    left: 670px;
    top: 31px;
    width: 260px;
    height: 137px;
    min-height: 137px;
    padding: 14px 20px;
    overflow: hidden;
    opacity: 0.82;
    z-index: 2;
    filter: saturate(0.88);
  }

  .home-index .testimonial-card[data-position="hidden"] {
    left: 338px;
    top: 16px;
    width: 267px;
    height: 115px;
    min-height: 115px;
    padding: 14px 20px;
    overflow: hidden;
    opacity: 0.48;
    z-index: 1;
    filter: saturate(0.7);
  }

  .home-index .testimonial-card__stars {
    gap: 3px;
    color: #e2bb33;
  }

  .home-index .testimonial-card[data-position="center"] .testimonial-card__stars {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1;
  }

  .home-index .testimonial-card[data-position="center"] .testimonial-card__stars span::before {
    font-size: 25px;
  }

  .home-index .testimonial-card[data-position="center"] h3 {
    max-width: 360px;
    margin: 0 auto 20px;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 800;
  }

  .home-index .testimonial-card[data-position="center"] p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.36;
  }

  .home-index .testimonial-card[data-position="left"] .testimonial-card__stars,
  .home-index .testimonial-card[data-position="right"] .testimonial-card__stars,
  .home-index .testimonial-card[data-position="hidden"] .testimonial-card__stars {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1;
  }

  .home-index .testimonial-card[data-position="left"] .testimonial-card__stars span::before,
  .home-index .testimonial-card[data-position="right"] .testimonial-card__stars span::before,
  .home-index .testimonial-card[data-position="hidden"] .testimonial-card__stars span::before {
    font-size: 13px;
  }

  .home-index .testimonial-card[data-position="left"] h3,
  .home-index .testimonial-card[data-position="right"] h3,
  .home-index .testimonial-card[data-position="hidden"] h3 {
    max-width: 220px;
    margin: 0 auto 7px;
    font-size: 11px;
    line-height: 1.18;
    font-weight: 800;
  }

  .home-index .testimonial-card[data-position="left"] p,
  .home-index .testimonial-card[data-position="right"] p,
  .home-index .testimonial-card[data-position="hidden"] p {
    display: -webkit-box;
    max-width: 218px;
    margin: 0 auto;
    overflow: hidden;
    font-size: 9.5px;
    line-height: 1.24;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 1181px) and (max-width: 1450px) {
  .home-index .testimonials-stack {
    left: 180px;
    width: calc(100vw - 540px);
  }

  .home-index .testimonial-card[data-position="center"] {
    left: 172px;
  }

  .home-index .testimonial-card[data-position="right"] {
    left: 592px;
  }

  .home-index .testimonial-card[data-position="hidden"] {
    left: 266px;
  }

  .home-index .testimonials-message {
    right: 0;
  }
}

@media (min-width: 1181px) {
  .home-index .community-blog__layout {
    grid-template-columns: 489px 736px;
    gap: max(32px, calc((100vw - 1225px) / 2));
    justify-content: start;
  }

  .home-index .community-blog__content {
    display: block;
    position: relative;
    z-index: 1;
  }

  .home-index .admin-logos {
    width: 100vw;
    margin-top: 74px;
    margin-left: calc(-489px - max(32px, calc((100vw - 1225px) / 2)));
    padding: 36px 0 36px;
    min-height: 238px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 6;
  }

  .home-index .admin-logos h2 {
    width: min(1105px, calc(100vw - 72px));
    margin: 0 auto 30px;
    text-align: left;
    font-size: 27px;
    line-height: 1.2;
  }

  .home-index .admin-logos__viewport {
    width: min(1105px, calc(100vw - 72px));
    margin: 0 auto;
    overflow: hidden;
  }

  .home-index .admin-logos__track {
    padding-left: 0;
  }

  .home-index .admin-logos .admin-logo {
    flex: 0 0 213px;
    width: 213px;
    height: 120px;
    min-height: 120px;
  }

  .home-index .admin-logos .admin-logo img {
    width: 214px;
    height: 120px;
  }
}

@media (min-width: 1600px) {
  .home-index .community-blog__layout {
    grid-template-columns: 602px 736px;
    gap: calc((100vw - 1338px) / 2);
  }

  .home-index .admin-logos {
    margin-left: calc(-602px - ((100vw - 1338px) / 2));
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: 337px;
    min-height: 337px;
  }

  .home-index .testimonials-layout {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .home-index .testimonials-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 337px;
    min-height: 337px;
    overflow: visible;
  }

  .home-index .testimonials-message {
    display: none;
  }

  .home-index .testimonial-card {
    position: absolute;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none !important;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    transition:
      left 720ms cubic-bezier(0.21, 0.72, 0.18, 1),
      top 720ms cubic-bezier(0.21, 0.72, 0.18, 1),
      opacity 520ms ease,
      filter 520ms ease;
  }

  .home-index .testimonial-card[data-position="center"] {
    left: calc(50% - 214px);
    top: 65px;
    width: 455px;
    height: 227px;
    min-height: 227px;
    padding: 18px 28px 22px;
    opacity: 1;
    z-index: 4;
    background: #fff;
    filter: none;
  }

  .home-index .testimonial-card[data-position="left"] {
    left: 62px;
    top: 31px;
    width: 278px;
    height: 139px;
    min-height: 139px;
    padding: 14px 20px;
    opacity: 0.82;
    z-index: 2;
    filter: saturate(0.88);
  }

  .home-index .testimonial-card[data-position="right"] {
    right: 38px;
    left: auto;
    top: 31px;
    width: 246px;
    height: 139px;
    min-height: 139px;
    padding: 14px 20px;
    opacity: 0.82;
    z-index: 2;
    filter: saturate(0.88);
  }

  .home-index .testimonial-card[data-position="hidden"] {
    left: calc(50% - 133px);
    top: 16px;
    width: 267px;
    height: 86px;
    min-height: 86px;
    padding: 12px 18px;
    opacity: 0.48;
    z-index: 1;
    filter: saturate(0.7);
  }

  .home-index .testimonial-card[data-position="center"] .testimonial-card__stars {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1;
  }

  .home-index .testimonial-card[data-position="center"] .testimonial-card__stars span::before {
    font-size: 25px;
  }

  .home-index .testimonial-card[data-position="center"] h3 {
    max-width: 360px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
  }

  .home-index .testimonial-card[data-position="center"] p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.42;
  }

  .home-index .testimonial-card[data-position="left"] .testimonial-card__stars,
  .home-index .testimonial-card[data-position="right"] .testimonial-card__stars,
  .home-index .testimonial-card[data-position="hidden"] .testimonial-card__stars {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1;
  }

  .home-index .testimonial-card[data-position="left"] .testimonial-card__stars span::before,
  .home-index .testimonial-card[data-position="right"] .testimonial-card__stars span::before,
  .home-index .testimonial-card[data-position="hidden"] .testimonial-card__stars span::before {
    font-size: 13px;
  }

  .home-index .testimonial-card[data-position="left"] h3,
  .home-index .testimonial-card[data-position="right"] h3,
  .home-index .testimonial-card[data-position="hidden"] h3 {
    max-width: 220px;
    margin: 0 auto 7px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.18;
    font-weight: 800;
  }

  .home-index .testimonial-card[data-position="left"] p,
  .home-index .testimonial-card[data-position="right"] p {
    display: -webkit-box;
    max-width: 218px;
    max-height: 48px;
    margin: 0 auto;
    overflow: hidden;
    font-size: 9.5px;
    line-height: 1.24;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .home-index .testimonial-card[data-position="hidden"] p {
    display: none;
  }
}

@media (min-width: 1181px) {
  .home-index .testimonial-card {
    box-sizing: border-box;
    overflow: hidden;
    transition:
      left 720ms cubic-bezier(0.21, 0.72, 0.18, 1),
      top 720ms cubic-bezier(0.21, 0.72, 0.18, 1),
      opacity 520ms ease,
      filter 520ms ease;
  }

  .home-index .testimonial-card h3,
  .home-index .testimonial-card p {
    overflow: hidden;
  }

  .home-index .testimonial-card[data-position="center"] {
    top: 65px;
  }

  .home-index .groups-card {
    background: #fff;
  }

  .home-index .groups-panel h2,
  .home-index .blog-panel h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .home-index .section-head p {
    font-size: 16px;
    line-height: 1.38;
    font-weight: 700;
  }

  .home-index .group-item__meta h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
  }

  .home-index .group-item__meta p {
    font-size: 14px;
  }

  .home-index .blog-card__body h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
  }

  .home-index .blog-card__body p {
    font-size: 14px;
    line-height: 1.42;
  }
}


.home-index .admin-logos--full {
  width: 100% !important;
  margin: 0 !important;
  padding: 100px 0 80px !important;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: auto;
}

.home-index .admin-logos--full h2 {
  width: auto !important;
  max-width: 1100px;
  margin: 0 auto 28px !important;
  padding: 0 24px;
  text-align: center;
  font-size: clamp(20px, 4vw, 27px);
  font-weight: 800;
  color: var(--text);
}

.home-index .admin-logos--full .admin-logos__viewport {
  width: min(100% - 64px, 1278px) !important;
  margin: 0 auto !important;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.home-index .admin-logos--full .admin-logos__track {
  display: flex;
  width: max-content;
  animation: admin-logos-marquee 160s linear infinite;
}

@media (max-width: 1180px) {
  .home-index .home-testimonials,
  .home-index .testimonials-layout {
    height: auto;
    min-height: 0;
  }

  .home-index .testimonials-stack {
    height: auto;
    min-height: 0;
    perspective: none;
  }

  .home-index .testimonial-card[data-position="left"],
  .home-index .testimonial-card[data-position="right"],
  .home-index .testimonial-card[data-position="hidden"] {
    display: none;
  }

  .home-index .testimonial-card[data-position="center"] {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    transform: none;
  }

  .home-index .testimonials-stack.is-ready .testimonial-card[data-position="center"] {
    animation: none;
  }
}



