@import "../../css/libs/swiper/swiper.min.css";
.s-hero__container, .s-digital__container, .s-tools__container, .s-whom__container, .s-testimonials__container {
  max-width: 1254px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .s-hero__container, .s-digital__container, .s-tools__container, .s-whom__container, .s-testimonials__container {
    padding: 0px 1.6rem;
  }
}

.s-hero__image, .s-hero__background, .s-digital__image, .s-tools__ilustra, .s-whom__tab-image {
  overflow: hidden;
  display: block;
}
.s-hero__image > img, .s-hero__background > img, .s-digital__image > img, .s-tools__ilustra > img, .s-whom__tab-image > img {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-tools__notification-icon, .s-tools__accordion-icon, .s-whom__item-play, .s-whom__button, .s-whom__navigation, .s-testimonials__play, .s-hero__button .button-arrow, .s-hero__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-hero__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  margin-left: -0.4rem;
}
.s-hero__button span {
  display: inline-block;
  color: #0f1f57;
  font-family: "Work Sans", sans-serif;
  padding: 1.4rem 2.8rem;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 4.8rem;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.014rem;
  text-transform: uppercase;
  border-radius: 1rem;
  position: relative;
  background: #5ed9f4;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.s-hero__button span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#bdeffa), to(#28ccf0));
  background: linear-gradient(180deg, #bdeffa, #28ccf0);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.s-hero__button .button-arrow {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1rem;
  background: #5ed9f4;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}
.s-hero__button .button-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#bdeffa), to(#28ccf0));
  background: linear-gradient(180deg, #bdeffa, #28ccf0);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.s-hero__button .button-arrow.arrow-left {
  width: 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  border-color: transparent;
}
.s-hero__button .button-arrow.arrow-right {
  width: 4.8rem;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.s-hero__button:hover span {
  background: #b3f6ff;
}
.s-hero__button:hover .button-arrow {
  background: #b3f6ff;
}
.s-hero__button:hover .button-arrow.arrow-left {
  width: 4.8rem;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border-color: #bdeffa;
}
.s-hero__button:hover .button-arrow.arrow-right {
  width: 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  border-color: transparent;
}

.s-hero {
  padding: 14.8rem 0 8rem;
  position: relative;
}
.s-hero__content {
  margin-top: 2rem;
}
.s-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-hero__image {
  position: absolute;
  right: -2.2rem;
  pointer-events: none;
  max-width: 62.2rem;
  top: 0;
  -webkit-animation: floatHero 5s ease-in-out infinite;
  animation: floatHero 5s ease-in-out infinite;
}
@-webkit-keyframes floatHero {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes floatHero {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.s-hero__hat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
}
.s-hero__hat span {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #fffcf8;
}
.s-hero__toggle {
  width: 3.7rem;
  position: relative;
  height: 2.2rem;
  padding: 0.2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(49, 47, 156, 0.72)), to(rgba(49, 47, 156, 0.72))), var(--Brand-Green-500, #5ed9f4);
  background: linear-gradient(0deg, rgba(49, 47, 156, 0.72) 0%, rgba(49, 47, 156, 0.72) 100%), var(--Brand-Green-500, #5ed9f4);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04) inset, 0 2px 4px 0 rgba(0, 0, 0, 0.04) inset, 0 0 0 0.75px rgba(188, 201, 242, 0.12) inset, 0 0 8px 0 rgba(0, 0, 0, 0.02) inset;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04) inset, 0 2px 4px 0 rgba(0, 0, 0, 0.04) inset, 0 0 0 0.75px rgba(188, 201, 242, 0.12) inset, 0 0 8px 0 rgba(0, 0, 0, 0.02) inset;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
  border-radius: 1.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.s-hero__toggle:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.08));
}
.s-hero__toggle-inner {
  width: 1.7rem;
  border-radius: 9.9rem;
  top: 0.2rem;
  left: 0.2rem;
  position: absolute;
  height: 1.7rem;
  background: #f6f8f9;
  -webkit-box-shadow: 0 0 2px 1px #fff inset, 0 1px 0 0 #fff inset;
  box-shadow: 0 0 2px 1px #fff inset, 0 1px 0 0 #fff inset;
  -webkit-filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.08)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12)) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.04)) drop-shadow(0 5px 4px rgba(0, 0, 0, 0.02)) drop-shadow(0 0 0 rgba(0, 0, 0, 0.02));
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.08)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12)) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.04)) drop-shadow(0 5px 4px rgba(0, 0, 0, 0.02)) drop-shadow(0 0 0 rgba(0, 0, 0, 0.02));
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.s-hero__toggle[data-state=on] {
  background: #5ed9f4;
}
.s-hero__toggle[data-state=on] .s-hero__toggle-inner {
  -webkit-transform: translateX(1.6rem);
  -ms-transform: translateX(1.6rem);
  transform: translateX(1.6rem);
  -webkit-box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.6) inset, 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 0 2px rgba(94, 217, 244, 0.3);
  box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.6) inset, 0 4px 8px rgba(0, 0, 0, 0.08), 0 0 0 2px rgba(94, 217, 244, 0.3);
}
.s-hero__toggle:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}
.s-hero__toggle:active .s-hero__toggle-inner {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.s-hero__heading {
  margin-top: 3.2rem;
  max-width: 49.6rem;
}
.s-hero__heading span {
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .s-hero__heading span {
    font-size: 3.8rem;
  }
}
.s-hero__rotating-words {
  margin-top: 0.8rem;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  min-height: 1em;
  line-height: 1.2;
}
.s-hero__rotating-words:not(.has-animation) .s-hero__word {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  position: relative;
}
.s-hero__rotating-words.has-animation {
  height: 1.2em;
}
.s-hero__rotating-words.has-animation .s-hero__word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-animation: wordRotate 8s ease-in-out infinite;
  animation: wordRotate 8s ease-in-out infinite;
  -webkit-animation-delay: calc(var(--word-index) * 2s);
  animation-delay: calc(var(--word-index) * 2s);
}
.s-hero__rotating-words.has-animation .s-hero__word:first-child {
  position: relative;
}
.s-hero__word {
  color: #5ed9f4 !important;
}
.s-hero__text {
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  color: #e2eaff;
  margin-top: 1.6rem;
  max-width: 49.6rem;
}
.s-hero__button {
  margin-top: 4rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.s-hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -o-object-position: center top;
  object-position: center top;
}
@media (min-width: 1440px) {
  .s-hero__background.wide {
    display: none;
  }
}
@media (max-width: 1439px) {
  .s-hero__background.ultrawide {
    display: none;
  }
}
.s-hero__list {
  margin-top: 8.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}
.s-hero__list.mobile {
  display: none;
}
.s-hero__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}
.s-hero__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.s-hero__item span {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #e2eaff;
}
.s-hero__item span strong {
  font-weight: 700;
}

.s-digital {
  padding: 11.2rem 0;
  position: relative;
  z-index: 1;
}
.s-digital__container {
  position: relative;
  z-index: 2;
}
.s-digital__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
.s-digital__hat {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #4b49e7;
  text-align: center;
}
.s-digital__heading {
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  color: #0f1f57;
  text-align: center;
  max-width: 88rem;
  margin: 0 auto;
}
.s-digital__heading span {
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  color: #0f1f57;
}
@media screen and (max-width: 600px) {
  .s-digital__heading span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .s-digital__heading {
    font-size: 3rem;
  }
}
.s-digital__list {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.s-digital__item {
  border-radius: 1rem;
  background: #f5f8ff;
  width: 100%;
  max-width: 39.2rem;
  min-height: 43.8rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .s-digital__item {
    --scroll-progress: 0;
    clip-path: inset(calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) round 1rem);
    opacity: calc(0.2 + 0.8 * var(--scroll-progress));
    -webkit-transition: clip-path 0.6s cubic-bezier(0.4, 0.15, 0, 1), opacity 0.6s cubic-bezier(0.4, 0.15, 0, 1);
    transition: clip-path 0.6s cubic-bezier(0.4, 0.15, 0, 1), opacity 0.6s cubic-bezier(0.4, 0.15, 0, 1);
  }
}
.s-digital__icon {
  display: none;
}
.s-digital__image {
  padding: 1.2rem 1.2rem 0 1.2rem;
}
.s-digital__text {
  padding: 3.2rem;
}
.s-digital__text span {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #5f6e91;
}
.s-digital__text h3 {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.1px;
  color: #0f1f57;
  margin: 1.2rem 0;
}
.s-digital__text p {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #667085;
}

.s-tools {
  padding-bottom: 11.2rem;
}
.s-tools__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-tools__left {
  margin-top: 7.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-tools__heading {
  font-size: 3.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.38px;
  color: #0f1f57;
  max-width: 39.2rem;
}
.s-tools__heading strong {
  display: block;
  font-size: 3.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.38px;
  background: var(--Gradients-text, linear-gradient(93deg, #5ed9f4 32.8%, #285fe7 104.45%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-feature-settings: "salt" on;
  font-feature-settings: "salt" on;
  margin-bottom: 2.1rem;
}
.s-tools__text {
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  color: #697191;
  max-width: 39.2rem;
}
.s-tools__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  padding-left: 2.6rem;
  border-left: 1px solid #e2eaff;
  margin-bottom: 7.2rem;
}
.s-tools__tabs.mobile {
  display: none;
}
.s-tools__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.27px;
  color: #97a2b4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s-tools__tab svg {
  display: block;
}
.s-tools__tab.active {
  color: #0f1f57;
}
.s-tools__tab.active svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
  stroke: #4b49e7;
}
.s-tools__tab.active::before {
  content: "";
  width: 0.1rem;
  height: 2.6rem;
  position: absolute;
  left: -2.7rem;
  background: #4b49e7;
  -webkit-animation: expand 0.3s ease forwards;
  animation: expand 0.3s ease forwards;
}
.s-tools__tab svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
  stroke: #97a2b4;
}
.s-tools__tab:hover {
  opacity: 0.8;
}
.s-tools__tab.active {
  opacity: 1;
}
.s-tools__ilustra {
  position: absolute;
  top: 4rem;
  left: -17.8rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  transform: translateY(2rem);
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 35.7rem;
}
.s-tools__ilustra img {
  min-height: 60rem;
}
.s-tools__ilustra.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.s-tools__notification {
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0 1.274px rgba(230, 236, 252, 0.6);
  box-shadow: 0 0 0 1.274px rgba(230, 236, 252, 0.6);
  padding: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
  position: absolute;
  bottom: 4.9rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.s-tools__notification-icon {
  background: url("../../assets/svg/icon-bg.svg") no-repeat center center;
  width: 5.4rem;
  height: 5.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 6.818px;
  border: 2.273px solid #fff;
  -webkit-box-shadow: 0 1.136px 1.136px -0.568px rgba(75, 73, 231, 0.03), 0 3.409px 3.409px -1.705px rgba(75, 73, 231, 0.08), 0 5.682px 5.682px -2.841px rgba(75, 73, 231, 0.08), 0 18.182px 18.182px -9.091px rgba(75, 73, 231, 0.08), 0 27.273px 27.273px -9.091px rgba(75, 73, 231, 0.08), 0 0 0 4.545px #fff;
  box-shadow: 0 1.136px 1.136px -0.568px rgba(75, 73, 231, 0.03), 0 3.409px 3.409px -1.705px rgba(75, 73, 231, 0.08), 0 5.682px 5.682px -2.841px rgba(75, 73, 231, 0.08), 0 18.182px 18.182px -9.091px rgba(75, 73, 231, 0.08), 0 27.273px 27.273px -9.091px rgba(75, 73, 231, 0.08), 0 0 0 4.545px #fff;
}
.s-tools__notification-icon svg path {
  stroke: #4b49e7;
}
.s-tools__notification-text {
  font-size: 1.5rem;
  line-height: 140%;
  color: #697191;
}
.s-tools__notification-text strong {
  font-size: 1.5rem;
  line-height: 140%;
  color: #4b49e7;
  font-weight: 600;
}
.s-tools__right {
  width: 100%;
  max-width: 61.8rem;
  border-radius: 1.2rem;
  background: #f5f8ff;
  position: relative;
  padding: 7.3rem 7.2rem 7.2rem 23.6rem;
  min-height: 68rem;
  max-height: 68rem;
}
.s-tools__subtitle {
  font-size: 3rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.3px;
  color: #0f1f57;
  margin-bottom: 0.7rem;
}
.s-tools__accordion {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #e2eaff;
  /* If the svg is inlined, hide the vertical part to create a minus when open.
     JS will add .is-open to the svg when active; provide a gentle transition here. */
}
.s-tools__accordion-icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.8rem;
  background: #4b49e7;
  display: none;
  margin-bottom: 1rem;
  opacity: 0;
  -webkit-transform: scale(0.85) translateY(-8px);
  -ms-transform: scale(0.85) translateY(-8px);
  transform: scale(0.85) translateY(-8px);
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.s-tools__accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-tools__accordion-header h3 {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #0f1f57;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.s-tools__accordion-header .s-tools__accordion-toggle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.s-tools__accordion-header .s-tools__accordion-toggle .s-tools__accordion-vertical {
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.s-tools__accordion-header .s-tools__accordion-toggle path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.s-tools__accordion-content {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #697191;
  /* Smooth open/close */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  -webkit-transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-top 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-top 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.s-tools__accordion-disclaimer {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #697191;
}
.s-tools__accordion.active .s-tools__accordion-content {
  max-height: 500px; /* large enough for content */
  opacity: 1;
  padding-top: 1rem;
  -webkit-transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s, padding-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s, padding-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.s-tools__accordion.active .s-tools__accordion-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.s-tools__accordion.active .s-tools__accordion-vertical {
  opacity: 0;
}
.s-tools__accordion .s-tools__accordion-icon svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.s-tools__accordion .s-tools__accordion-icon svg .vertical-line {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.s-tools__accordion .s-tools__accordion-icon svg.is-open .vertical-line {
  opacity: 0;
}

.s-whom {
  padding: 11.2rem 0;
  background-image: url("../../assets/svg/Pattern.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
.s-whom::after {
  content: "";
  width: 100%;
  max-width: 20.8rem;
  height: 36.3rem;
  background: -webkit-gradient(linear, right top, left top, from(#0f1f57), to(rgba(15, 31, 87, 0)));
  background: linear-gradient(270deg, #0f1f57 0%, rgba(15, 31, 87, 0) 100%);
  position: absolute;
  right: 0;
  top: 33.3rem;
}
.s-whom__hat {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #5ed9f4;
  text-align: center;
  display: block;
}
.s-whom__heading {
  max-width: 88rem;
  margin: 1.2rem auto 8rem;
  text-align: center;
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .s-whom__heading {
    font-size: 3rem;
  }
}
.s-whom__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 991px) {
  .s-whom__tabs {
    display: none;
  }
}
.s-whom__tab-image {
  max-width: 4.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s-whom__tab {
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  border: 1px solid transparent;
  border-radius: 50%;
}
.s-whom__tab.active {
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  padding: 0.4rem;
  border-radius: 50%;
  border: 1px solid #5ed9f4;
}
.s-whom__tab .s-whom__tab-image {
  max-width: 4.8rem;
}
.s-whom__item {
  border-radius: 1.2rem;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}
.s-whom__item-heading {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #f6f7f9;
  margin-bottom: 0.5rem;
}
.s-whom__item-text {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.14px;
  color: #eceff3;
  max-width: 25.4rem;
}
.s-whom__item-info {
  position: absolute;
  bottom: 2.3rem;
  left: 2rem;
  z-index: 1;
}
.s-whom__item-play {
  position: absolute;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.8rem;
  background-color: #12a3c3;
  backdrop-filter: blur(2px);
  top: 1.6rem;
  right: 1.6rem;
  cursor: pointer;
}
.s-whom__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 29.4rem;
  height: 14.1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 31, 87, 0)), color-stop(57%, rgba(15, 31, 87, 0.59)), color-stop(137.59%, #0f1f57));
  background: linear-gradient(180deg, rgba(15, 31, 87, 0) 0%, rgba(15, 31, 87, 0.59) 57%, #0f1f57 137.59%);
}
.s-whom__video {
  border-radius: 1.2rem;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  min-width: 29.4rem;
  max-width: 29.4rem;
  max-height: 35.3rem;
  -o-object-position: top;
  object-position: top;
}
.s-whom__slide .swiper-slide {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.s-whom__slide .swiper-wrapper {
  position: relative;
}
@media (min-width: 991px) {
  .s-whom__slide .swiper-wrapper::before {
    content: "";
    position: absolute;
    left: -10.8rem;
    pointer-events: none;
    width: 100%;
    max-width: 20.8rem;
    height: 35.3rem;
    background: -webkit-gradient(linear, left top, right top, from(#0f1f57), to(#0f1f57));
    background: linear-gradient(90deg, #0f1f57 0%, #0f1f57 100%);
  }
}
.s-whom__button {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.8rem;
  border: 1px solid #5ed9f4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s-whom__button.button-prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.s-whom__button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.s-whom__button:hover {
  background: #5ed9f4;
}
.s-whom__navigation {
  gap: 6rem;
  margin-top: 6rem;
}
.s-whom__navigation .swiper-pagination-fraction .swiper-pagination-current::after {
  content: " / ";
  margin: 0 0.2rem;
  color: #5ed9f4;
}
.s-whom__navigation .swiper-pagination {
  position: static;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.2rem;
}
.s-whom__navigation .swiper-pagination span {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #f5f8ff;
}

.s-testimonials {
  padding-top: 11.2rem;
}
.s-testimonials__heading {
  text-align: center;
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  color: #0f1f57;
  margin-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  .s-testimonials__heading {
    font-size: 3rem;
  }
}
.s-testimonials__heading strong {
  font-size: 4.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  background: var(--Gradients-text, linear-gradient(93deg, #5ed9f4 32.8%, #285fe7 104.45%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-feature-settings: "salt" on;
  font-feature-settings: "salt" on;
}
@media screen and (max-width: 600px) {
  .s-testimonials__heading strong {
    font-size: 3rem;
  }
}
.s-testimonials__info {
  position: absolute;
  top: 2.2rem;
  left: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.s-testimonials__avatar {
  max-width: 4rem;
}
.s-testimonials__name span {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  gap: 0.2rem;
}
.s-testimonials__followers span {
  color: #fff;
  font-size: 1.3rem;
  line-height: 140%;
  letter-spacing: 0.13px;
  margin-top: 0.2rem;
}
.s-testimonials__text p {
  position: absolute;
  bottom: 2.1rem;
  left: 2.1rem;
  max-width: 25.6rem;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
  letter-spacing: 0.16px;
  color: #f6f7f9;
}
.s-testimonials__card {
  width: 100%;
  position: relative;
  max-height: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (min-width: 992px) {
  .s-testimonials__card {
    --scroll-progress: 0;
    clip-path: inset(calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) calc(40% * (1 - var(--scroll-progress))) round 1.2rem);
    opacity: calc(0.2 + 0.8 * var(--scroll-progress));
    -webkit-transition: clip-path 0.6s cubic-bezier(0.4, 0.15, 0, 1), opacity 0.6s cubic-bezier(0.4, 0.15, 0, 1);
    transition: clip-path 0.6s cubic-bezier(0.4, 0.15, 0, 1), opacity 0.6s cubic-bezier(0.4, 0.15, 0, 1);
  }
}
.s-testimonials__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 13, 35, 0.85)), color-stop(24.22%, rgba(6, 13, 35, 0.5)), color-stop(49.1%, rgba(6, 13, 35, 0.2)), color-stop(79.98%, rgba(6, 13, 35, 0.5)), to(rgba(6, 13, 35, 0.85)));
  background: linear-gradient(180deg, rgba(6, 13, 35, 0.85) 0%, rgba(6, 13, 35, 0.5) 24.22%, rgba(6, 13, 35, 0.2) 49.1%, rgba(6, 13, 35, 0.5) 79.98%, rgba(6, 13, 35, 0.85) 100%);
  width: 100%;
  max-height: 52.8rem;
}
.s-testimonials__card video {
  width: 100%;
  max-width: 29.8rem;
  border-radius: 1.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 52.8rem;
}
.s-testimonials__slide .swiper-slide {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.s-testimonials__play {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.s-testimonials__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.9rem;
  display: none;
}

.tab-exiting {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.tab-entering {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.tab-entering {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .s-hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s-hero__content {
    padding: 0 1.6rem;
  }
  .s-hero__image {
    position: static;
    margin-top: 4.8rem;
  }
  .s-hero__list {
    display: none;
    padding: 0 0 0 1.6rem;
  }
  .s-hero__list.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
    gap: 2.4rem;
  }
  .s-hero__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .s-hero__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .s-hero__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .s-hero__item p br {
    display: none;
  }
  .s-digital__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 4rem;
  }
  .s-digital__image {
    position: absolute;
    max-width: 15rem;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }
  .s-digital__icon {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .s-digital__icon .s-digital__vertical {
    -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .s-digital__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 2rem;
    min-height: auto;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 16rem;
  }
  .s-digital__item.active .s-digital__vertical {
    opacity: 0;
  }
  .s-digital__item.active .s-digital__text h3 {
    margin: 1.1rem 0 2rem;
  }
  .s-digital__item.active .s-digital__text p {
    max-height: 500px;
    opacity: 1;
    display: block;
  }
  .s-digital__item.active .s-digital__image {
    opacity: 0;
    -webkit-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
    pointer-events: none;
  }
  .s-digital__text, .s-digital__image {
    padding: 0;
  }
  .s-digital__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .s-digital__text h3 {
    -webkit-transition: color 0.3s ease, margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.3s ease, margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    max-width: 17.5rem;
  }
  .s-digital__text p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .s-faq {
    min-height: auto;
    max-height: 100%;
  }
  .s-faq__heading {
    text-align: center;
    margin-bottom: 4rem;
  }
  .s-faq__tabs-container {
    margin: 0 auto;
  }
  .s-faq__list {
    width: 100%;
  }
  .s-faq__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s-tools {
    min-height: auto;
  }
  .s-tools__heading {
    text-align: center;
    margin: 0 auto 2.4rem;
  }
  .s-tools__heading strong {
    text-align: center;
    margin-bottom: 0;
  }
  .s-tools__left {
    margin-top: 0;
  }
  .s-tools__text {
    margin: 2.4rem auto 4.8rem;
    text-align: center;
  }
  .s-tools__ilustra {
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    top: -38.2rem;
    max-width: 34.2rem;
    max-height: 60.8rem;
  }
  .s-tools__accordion-disclaimer {
    text-align: center;
  }
  .s-tools__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .s-tools__tabs {
    display: none;
  }
  .s-tools__tabs.mobile {
    gap: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    border-left: none;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 2.4rem;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
  .s-tools__tab {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    letter-spacing: 0.014rem;
    text-transform: uppercase;
    border-radius: 1rem;
    border: 1px solid #e2eaff;
    background: #fff;
    padding: 1.2rem 1.6rem;
  }
  .s-tools__tab.active {
    border: 1px solid transparent;
    background: #4b49e7;
    color: #fff;
  }
  .s-tools__tab::before {
    display: none;
  }
  .s-tools__right {
    margin: 37.8rem auto 0;
    padding: 24.6rem 2rem 2rem;
    min-height: auto;
    max-height: 100%;
  }
  .s-whom::after {
    display: none;
  }
  .s-testimonials__slide .swiper-slide:first-child .s-testimonials__icon {
    display: block;
    -webkit-animation: shakeIcon 2s infinite;
    animation: shakeIcon 2s infinite;
  }
}
@media screen and (max-width: 600px) {
  .s-hero {
    padding: 13.3rem 0 4.4rem;
  }
  .s-hero__content {
    margin-top: 0;
    min-height: 32.8rem;
  }
  .s-hero__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .s-hero__rotating-words {
    margin-top: 0.4rem;
  }
  .s-hero__heading {
    margin-top: 1.6rem;
  }
  .s-hero__heading span {
    font-size: 3.4rem;
    line-height: 40.1px;
    letter-spacing: -0.34px;
  }
  .s-hero__text {
    margin-top: 0.6rem;
    font-size: 1.6rem;
  }
  .s-hero__button {
    margin-top: 2.4rem;
  }
  .s-digital {
    padding: 4.8rem 0;
  }
  .s-faq {
    padding: 5.6rem 0;
  }
  .s-faq__load-more {
    margin: 0.8rem auto 0;
  }
  .s-faq__tabs-container {
    padding: 0.4rem;
  }
  .s-faq__tab {
    padding: 1rem 2.8rem;
  }
  .s-faq__tab.active img {
    margin-right: 0.6rem;
  }
  .s-faq__tab span {
    font-size: 1.4rem;
  }
  .s-faq__list {
    gap: 2.4rem;
  }
  .s-faq__question {
    min-width: auto;
  }
  .s-faq__question h3 {
    font-size: 1.6rem;
    line-height: 140%;
  }
  .s-faq__answer p {
    font-size: 1.4rem;
    line-height: 140%;
  }
  .s-testimonials {
    padding-top: 5.6rem;
  }
  .s-testimonials__heading {
    margin-bottom: 3.2rem;
  }
  .s-whom {
    padding: 5.6rem 0 4.2rem;
  }
  .s-whom__hat {
    font-size: 1.4rem;
  }
  .s-whom__heading {
    margin-bottom: 4rem;
    max-width: 34.2rem;
  }
  .s-whom__navigation {
    margin-top: 1.9rem;
    gap: 9.1rem;
  }
  .s-whom__button {
    width: 3.6rem;
    height: 3.6rem;
  }
  .s-tools {
    padding-bottom: 3.2rem;
  }
  .s-tools__tabs.mobile {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
  .s-tools__notification {
    padding: 1rem;
  }
  .s-tools__notification-icon {
    width: 4.6rem;
    height: 4.6rem;
  }
  .s-tools__notification-text {
    font-size: 1.4rem;
  }
  .s-tools__notification-text strong {
    font-size: 1.4rem;
  }
  .s-tools__text {
    font-size: 1.6rem;
    line-height: 140%;
    letter-spacing: 0.16px;
    max-width: 34.2rem;
  }
  .s-tools__right {
    padding: 19.6rem 2rem 2rem;
    width: 95%;
  }
  .s-tools__subtitle {
    text-align: center;
    font-size: 3rem;
    letter-spacing: -0.3px;
  }
  .s-tools__ilustra {
    width: 100%;
    max-width: 95%;
    padding: 0 1.6rem;
  }
  .s-tools__ilustra img {
    min-height: 52.8rem;
  }
  .s-tools__container {
    padding: 0;
  }
}
@-webkit-keyframes wordRotate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@keyframes wordRotate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@-webkit-keyframes shakeIcon {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  50% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  75% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes shakeIcon {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  50% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  75% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@-webkit-keyframes expand {
  0% {
    clip-path: inset(40% 40% 40% 40% round 1rem);
    opacity: 0;
  }
  100% {
    clip-path: inset(0% 0% 0% 0% round 1rem);
    opacity: 1;
  }
}
@keyframes expand {
  0% {
    clip-path: inset(40% 40% 40% 40% round 1rem);
    opacity: 0;
  }
  100% {
    clip-path: inset(0% 0% 0% 0% round 1rem);
    opacity: 1;
  }
}