.section-video {
  width: 100%;
  min-height: calc(100vw * 1 / 2);
  position: relative;
  overflow: hidden;
}
.section-video .section__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.section-video .section__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-video .section__bg .section__bg-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(40%);
}
.section-video .section__bg .section__bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(40%);
}

.section-video .section__content {
  width: 100%;
  height: 100%;
  max-width: 70%;
  padding: 20rem 8rem;
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-video .section__features {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 3.6rem;
  flex-shrink: 0;
}
.section-video .feature-item {
  display: flex;
  align-items: center;
  height: 5rem;
  border-radius: 20rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 2.4rem 0 2.4rem;
  color: #fff;
  gap: 0.8rem;
}
.section-video .feature-item__icon {
  font-family: 'Fontello';
  font-size: 1.8rem;
}
.section-video .feature-item:first-child .feature-item__icon {
  font-size: 2.2rem;
}
.section-video .feature-item__text {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.section-video .feature-item.rating {
  padding: 0 0.4rem 0 0.8rem;
  gap: 0.6rem;
}
.section-video .feature-item.rating:before {
  background-image: url('../../../media/img/common/icons/yandex-red.svg');
  width: 2.8rem;
  content: '';
  display: flex;
  align-self: stretch;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-video .feature-item.rating .rating-badge {
  display: flex;
  align-items: center;
  height: 3.8rem;
  padding: 0 1rem 0 0.8rem;
  gap: 0.4rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20rem;
}
.section-video .feature-item.rating .rating-badge .rating-badge__icon:before {
  font-family: 'Fontello';
  content: '\E822';
}
.section-video .feature-item.rating .rating-badge .rating-badge__value {
}

.section-video .section__text {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.section-video .section__text .section__title {
  font-size: 6rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
}
.section-video .section__text .section__subtitle {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  display: block;
  margin-top: 2.4rem;
}
.section-video .section__text .section__description {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  display: block;
  margin-top: 2.8rem;
  font-weight: 200;
  opacity: 0.7;
}
.section-video .section__text .section__links {
  display: flex;
  margin-top: 6rem;
  gap: 0.6rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.section-video .section__text .section__link {
  display: flex;
  align-items: center;
  border-radius: 20rem;
  height: 7.2rem;
  display: flex;
  align-items: stretch;
  gap: 0.2rem;
}
.section-video .section__text .section__link .link__label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 6rem;
  background-color: #ffcb00;
  border-radius: 5rem 2rem 2rem 5rem;
  transition: 0.2s;
}
.section-video .section__text .section__link:hover .link__label {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.section-video .section__text .section__link .link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem 5rem 5rem 2rem;
  aspect-ratio: 1/1;
  transition: 0.2s;
  color: #fff;
}
.section-video .section__text .section__link:hover .link__icon {
  background-color: #00c9a3;
  color: inherit;
}
.section-video .section__text .section__link .link__icon:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.about {
  width: 100%;
  display: flex;
  align-items: stretch;
  background-color: #fff;
  padding: 10rem 8rem 0;
  gap: 6rem;
  position: relative;
  border-radius: 2.4rem;
  top: -2.4rem;
  z-index: 50;
}
.about__info {
  width: calc(50% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8rem 0;
}
.about__title {
  display: block;
  flex-shrink: 0;
  font-size: 5.2rem;
  font-weight: 400;
}
.about__text {
  margin-top: 3.6rem;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 200;
}

.about .about-link {
  display: flex;
  align-items: center;
  border-radius: 20rem;
  height: 7.2rem;
  display: flex;
  align-items: stretch;
  gap: 0.2rem;
  margin-top: 4.8rem;
}
.about .about-link .link__label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 6rem;
  background-color: #00c9a3;
  border-radius: 5rem 2rem 2rem 5rem;
  transition: 0.2s;
}
.about .about-link .link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8ebed;
  border-radius: 2rem 5rem 5rem 2rem;
  aspect-ratio: 1/1;
  transition: 0.2s;
}
.about .about-link:hover .link__icon {
  background-color: #ffcb00;
}
.about .about-link .link__icon:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.about .about__media {
  width: calc(50% - 3rem);
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  background-color: #e8ebed;
}
.about .about__media .video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about .about__media .button-play {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 20rem;
  background-color: #00c9a3;
  z-index: 50;
  left: 50%;
  top: 50%;
  margin-left: -5rem;
  margin-top: -5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.4rem;
  cursor: pointer;
  transition: 0.2s;
}
.about .about__media .button-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.about .about__media .button-play:hover {
  background-color: #ffcb00;
}
.about .about__media .button-play .play-icon {
}
.about .about__media .button-play .play-icon:before {
  font-family: 'Fontello';
  content: '\F00F';
  font-size: 4rem;
}
.about .about__media .video-poster {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 40;
  filter: brightness(50%);
  transition: 0.2s;
}
.about .about__media .video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}
.about .about__media .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about .about__media .about-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section-stats {
  margin-top: 7.6rem;
  width: 100%;
  padding: 0 8rem;
}
.section-stats .section__inner {
  width: 100%;
}
.section-stats .section__content {
  width: 100%;
}
.section-stats .stats-list {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 6rem;
  overflow: hidden;
  flex-wrap: wrap;
}
.section-stats .stats-list .list-item {
  width: calc(50% - 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-stats .stats-list .list-item .list-item__heading {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section-stats .stats-list .list-item .list-item__title {
  font-size: 6rem;
  background-color: #e8ebed;
  font-weight: 700;
  display: block;
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  border-radius: 2.4rem;
  height: 10rem;
  flex-shrink: 0;
}
.section-stats .stats-list .list-item .list-item__subtitle {
  display: block;
  line-height: 1.2;
  font-size: 2.4rem;
}
.section-stats .stats-list .list-item .list-item__description {
  line-height: 1.3;
  display: block;
}

.section-features {
  margin: 10rem auto 0;
  width: calc(100% - 1.2rem);
  border-radius: 6rem;
  overflow: hidden;
  position: relative;
}
.section-features .section__inner {
  width: 100%;
}
.section-features .section__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-features .section__bg .section__bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(30%);
}
.section-features .section__content {
  position: relative;
  z-index: 50;
  width: 100%;
  padding: 12rem 7.4rem;
}
.section-features .features-title {
  display: block;
  text-align: center;
  font-size: 5.2rem;
  color: #fff;
}
.section-features .features-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 6rem;
}
.section-features .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3.6rem;
  border-radius: 2.4rem;
}
.section-features .feature-item .feature-item__heading {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.section-features .feature-item .feature-item__icon-wrap {
  background-color: #00c9a3;
  border-radius: 20rem;
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-features .feature-item .feature-item__icon {
  font-size: 4rem;
}
.section-features .feature-item .feature-item__title {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}
.section-features .feature-item .feature-item__content {
}
.section-features .feature-item .feature-item__description {
  display: block;
  line-height: 1.3;
  color: #fff;
  font-weight: 200;
}

.section-research {
  width: 100%;
  margin-top: 10rem;
  padding: 0 12rem;
}
.section-research .section__inner {
  width: 100%;
}
.section-research .section__content {
  width: 100%;
}
.section-research .research-text {
  display: block;
  max-width: 130rem;
  text-align: center;
  margin: 0 auto;
}
.section-research .research-text .research-text__title {
  opacity: 0.3;
  display: block;
  font-size: 6rem;
  font-weight: 700;
}
.section-research .research-text .research-text__description {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3.6rem;
}
.section-research .research-text .research-text__description p {
  line-height: 1.6;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
.section-research .research-text .research-text__description p strong {
  color: #00c9a3;
  font-style: normal;
  border-bottom: 0.5rem solid #00c9a3;
}

.section-methodology {
  margin-top: 10rem;
  background: linear-gradient(
    0deg,
    rgba(232, 235, 237, 0) 0%,
    rgba(232, 235, 237, 1) 100%
  );
  border-radius: 6rem 6rem 0 0;
  padding: 12rem 12rem 0;
  width: 100%;
}
.section-methodology .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6rem;
}
.section-methodology .section__heading {
  width: 100%;
}
.section-methodology .section__title {
  font-size: 6rem;
  text-align: center;
  font-weight: 700;
  color: #424b54;
}
.section-methodology .section__content {
  width: 100%;
  display: flex;
  gap: 8rem;
  align-items: stretch;
}
.section-methodology .methodology-info {
  width: 100%;
}
.section-methodology .methodology-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.6rem;
}
.section-methodology .methodology-text p {
  font-size: 2rem;
  line-height: 1.3;
}
.section-methodology .methodology-text ul,
.section-methodology .methodology-text ol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-methodology .methodology-text ul li {
  display: block;
  padding-left: 3.2rem;
  position: relative;
  display: block;
  /* opacity: .7; */
  line-height: 1.3;
  font-size: 1.6rem;
}
.section-methodology .methodology-text ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 20rem;
  background-color: #00c9a3;
}
.section-methodology .methodology-text ul li strong {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
}

.section-methodology .about-link {
  display: flex;
  align-items: center;
  border-radius: 20rem;
  height: 7.2rem;
  display: flex;
  align-items: stretch;
  gap: 0.2rem;
  margin-top: 4.8rem;
}
.section-methodology .about-link .link__label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 6rem;
  background-color: #00c9a3;
  border-radius: 5rem 2rem 2rem 5rem;
  transition: 0.2s;
}
.section-methodology .about-link .link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8ebed;
  border-radius: 2rem 5rem 5rem 2rem;
  aspect-ratio: 1/1;
  transition: 0.2s;
}
.section-methodology .about-link:hover .link__icon {
  background-color: #ffcb00;
}
.section-methodology .about-link .link__icon:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.section-methodology .section__media {
  width: 100%;
  border-radius: 6rem;
  overflow: hidden;
  position: relative;
}
.section-methodology .section__media .section__image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-methodology .section__media .section__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-problems {
  margin-top: 10rem;
}
.section-problems .section__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4.8rem;
}
.section-problems .section__heading {
  padding: 0 8rem;
}
.section-problems .section__title {
  display: block;
  flex-shrink: 0;
  font-size: 5.2rem;
  font-weight: 400;
}
.section-problems .section__body {
}
.section-problems .section__content {
  padding: 0 0.6rem;
}
.section-problems .problem-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  border-radius: 6rem;
}
.section-problems .problem-item {
  background-color: #e6e7ef;
  width: calc(33.33% - 0.4rem);
  padding: 6rem 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 1.2rem;
}
.section-problems .problem-item .problem-item__title {
  display: block;
  line-height: 1.1;
  font-size: 2.4rem;
  font-weight: 200;
  display: flex;
  gap: 1.2rem;
  width: 100%;
  position: relative;
  padding-left: 5.6rem;
  flex-shrink: 0;
}
.section-problems .problem-item .problem-item__title:before {
  content: '';
  flex-shrink: 0;
  background-image: url('./../../../media/img/common/icons/message-notif-dark.svg');
  background-size: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 20rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -0.8rem;
}
.section-problems .problem-item .problem-item__description {
  display: block;
  font-size: 1.4rem;
  font-weight: 200;
  margin-top: 2rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.section-problems .problem-item .item-link {
  padding: 0 0.4rem 0 2.4rem;
  height: 4.4rem;
  border-radius: 20rem;
  background-color: #2b2d42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.6rem;
  margin-top: 1.8rem;
  flex-shrink: 0;
}
.section-problems .problem-item .item-link .item-link__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 200;
  color: #fff;
}
.section-problems .problem-item .item-link:after {
  content: '';
  width: 3.6rem;
  height: 3.6rem;
  flex-shrink: 0;
  border-radius: 2rem;
  background-image: url('./../../../media/img/common/icons/arrow-right-dark.svg');
  background-size: 0.6rem;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-color: #fff;
}

.section-testimonials {
  margin-top: 10rem;
}
.section-testimonials .section__inner {
  width: 100%;
}

.section-testimonials .section__heading {
  padding: 0 12rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 3.6rem;
  width: 100%;
}
.section-testimonials .section__heading .section__heading-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  width: 100%;
}
.section-testimonials .section__heading .section__title {
  display: block;
  flex-shrink: 0;
  font-size: 6rem;
  font-weight: 700;
}
.section-testimonials .section__heading .swiper-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.6rem;
}
.section-testimonials .section__heading .swiper-controls .swiper-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button {
  width: 6rem;
  height: 6rem;
  background-color: #e8ebed;
  flex-shrink: 0;
  display: flex;
  border-radius: 20rem;
  cursor: pointer;
  transition: 0.2s;
  justify-content: center;
  align-items: center;
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button:not(.swiper-button-disabled):hover {
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.swiper-button-lock {
  pointer-events: none;
  display: none;
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.prev {
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.prev:before {
  font-family: 'Fontello';
  content: '\E84D';
  font-size: 2rem;
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.next {
}
.section-testimonials
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.next:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.section-testimonials .section__heading .swiper-pagination {
  display: block;
  width: 100%;
  background-color: #e8ebed;
  height: 0.6rem;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.section-testimonials
  .section__heading
  .swiper-pagination
  .swiper-pagination-progressbar-fill {
  background-color: #00c9a3;
  height: 0.6rem;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
}

.section-testimonials .section__content {
  margin-top: 4.8rem;
}

.section-testimonials .swiper-testimonials {
  position: relative;
  z-index: 50;
  padding: 0 12rem;
}

.section-testimonials .swiper-testimonials .swiper-slide {
  overflow: hidden;
}

.section-testimonials .swiper-testimonials .testimonial-item {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #e8ebed;
}

.section-testimonials .swiper-testimonials .testimonial-item .link-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(60%);
  transition: 0.4s;
}
.section-testimonials .swiper-testimonials .testimonial-item:hover .link-bg {
  transform: scale(1.1);
}
.section-testimonials .swiper-testimonials .testimonial-item .link-to-all {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 2.8rem;
  padding: 3.6rem;
  z-index: 10;
  color: #fff;
  transition: 0.2s;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .link-to-all:hover {
  color: #00c9a3;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .link-to-all
  .link__label {
  font-size: 2rem;
  line-height: 1.2;
  display: block;
  text-align: center;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .link-to-all
  .link__icon {
  font-size: 6rem;
  display: block;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .link-to-all
  .link__icon:before {
  content: '\E800';
  font-family: 'Fontello';
}

.section-testimonials .swiper-testimonials .testimonial-item .media-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .media-wrap
  .button-play {
  width: 10rem;
  height: 10rem;
  border-radius: 20rem;
  background-color: #00c9a3;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5rem;
  margin-left: -5rem;
  z-index: 120;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.4rem;
  transition: 0.2s;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .button-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .media-wrap
  .button-play:before {
  content: '\F00F';
  font-family: 'Fontello';
  font-size: 4rem;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .media-wrap
  .button-play:hover {
  background-color: #ffcb00;
}
.section-testimonials .swiper-testimonials .testimonial-item .poster-wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transition: 0.2s;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .poster-wrap.hidden {
  opacity: 0;
  pointer-events: none;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__poster {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  /* filter: brightness(70%); */
}
.section-testimonials .swiper-testimonials .testimonial-item .video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center;
}

.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  color: #fff;
  transition: 0.2s;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__info.hidden {
  opacity: 0;
  pointer-events: none;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__name {
  display: block;
  line-height: 1.2;
  text-align: center;
  font-size: 2rem;
}
.section-testimonials
  .swiper-testimonials
  .testimonial-item
  .testimonial__description {
  display: block;
  line-height: 1.3;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 1.2rem;
  text-align: center;
  max-width: 30rem;
}

.section-rating {
  width: 100%;
  margin-top: 10rem;
}
.section-rating .section__inner {
  width: 100%;
}
.section-rating .section__content {
  width: 100%;
  padding: 0 12rem;
  display: flex;
  gap: 6rem;
  align-items: center;
}
.section-rating .rating-text {
  width: calc(50% - 3rem);
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  position: relative;
}
.section-rating .rating-text .rating-title {
  font-size: 5.2rem;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}
.section-rating .rating-text .rating-description {
  font-size: 2rem;
  line-height: 1.3;
  position: relative;
  z-index: 10;
}
.section-rating .rating-text .rating-icon {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -15%;
  margin-top: -20%;
  pointer-events: none;
}
.section-rating .rating-text .rating-icon:before {
  font-family: 'Fontello';
  content: '\E822';
  font-size: 50rem;
  color: #e8ebed;
}
.section-rating .rating-items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  width: calc(50% - 3rem);
}
.section-rating .rating-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 3.6rem;
  background-color: #e8ebed;
  padding: 3.6rem;
  border-radius: 3rem;
  max-width: 50rem;
  align-items: flex-start;
}
.section-rating .rating-item .rating-item__logo-wrap {
  position: relative;
  width: 100%;
}
.section-rating .rating-item .rating-item__logo {
  width: 100%;
  height: auto;
  display: block;
  min-width: 10rem;
}
.section-rating .rating-item.yandex .rating-item__logo {
  width: 30%;
}
.section-rating .rating-item.twogis .rating-item__logo {
  width: 30%;
}
.section-rating .rating-item .rating-item__value {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20rem;
  padding: 0 2.4rem;
  height: 4rem;
  gap: 0.6rem;
}
.section-rating .rating-item .rating-item__value .rating-item__value-points {
  font-size: 2.8rem;
}
.section-rating
  .rating-item
  .rating-item__value
  .rating-item__value-description {
  font-size: 2rem;
  opacity: 0.6;
}
.section-rating .rating-item .rating-item__stars {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.2rem;
  align-items: center;
  padding-left: 2.4rem;
}
.section-rating .rating-item .rating-item__stars .rating-item__star {
  display: block;
}
.section-rating .rating-item .rating-item__stars .rating-item__star:before {
  font-family: 'Fontello';
  color: #ffcb00;
  font-size: 1.8rem;
}
.section-rating
  .rating-item
  .rating-item__stars
  .rating-item__star.full:before {
  content: '\E822';
}
.section-rating
  .rating-item
  .rating-item__stars
  .rating-item__star.half:before {
  content: '\F123';
}
.section-rating
  .rating-item
  .rating-item__stars
  .rating-item__star.empty:before {
  content: '\E821';
}

.section-questions {
  margin-top: 10rem;
  position: relative;
  z-index: 30;
}
.section-questions .section__inner {
  padding: 0 12rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4.8rem;
}
.section-questions .section__heading {
}
.section-questions .section__title {
  display: block;
  flex-shrink: 0;
  font-size: 5.2rem;
  font-weight: 400;
}
.section-questions .section__body {
}
.section-questions .section__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.section-questions .question-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
}
.section-questions .question-item {
  width: calc(50% - 0.3rem);
  background-color: #e8ebed;
  padding: 3.6rem;
  border-radius: 2.4rem;
  cursor: pointer;
}
.section-questions .question-item .question-item__title {
  display: block;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 200;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 80%;
}
.section-questions .question-item .question-item__title:before {
  content: '\E818';
  font-family: 'Fontello';
  width: 4rem;
  height: 4rem;
  border-radius: 2.4rem;
  background-color: #00c9a3;
  display: block;
  flex-shrink: 0;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-questions .question-item:hover .question-item__title:before {
  background-color: #ffcb00;
}
.section-questions .question-item.active .question-item__title:before {
  transform: rotate(45deg);
}
.section-questions .question-item .question-item__description {
  display: block;
  font-size: 1.4rem;
  font-weight: 200;
  margin-top: 2rem;
  line-height: 1.4;
  display: none;
}
.section-questions .question-item.active .question-item__description {
  display: block;
}

.section-questions .link-to-all {
  display: flex;
  align-items: center;
  border-radius: 20rem;
  height: 7.2rem;
  display: flex;
  align-items: stretch;
  gap: 0.2rem;
  margin-top: 4.8rem;
}
.section-questions .link-to-all .link__label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 6rem;
  background-color: #00c9a3;
  border-radius: 5rem 2rem 2rem 5rem;
  transition: 0.2s;
}
.section-questions .link-to-all .link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8ebed;
  border-radius: 2rem 5rem 5rem 2rem;
  aspect-ratio: 1/1;
  transition: 0.2s;
}
.section-questions .link-to-all:hover .link__icon {
  background-color: #ffcb00;
}
.section-questions .link-to-all .link__icon:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.section-employees {
  width: calc(100% - 1.2rem);
  margin: 10rem auto 0;
  padding: 8rem 11.4rem;
  border-radius: 6rem;
  background-color: #e8ebed;
}
.section-employees .section-heading {
}
.section-employees .section-title {
  display: block;
  flex-shrink: 0;
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
  color: #424b54;
}
.section-employees .section-content {
  width: 100%;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-employees .employees-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.section-employees .employee-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  padding: 3.6rem 2.4rem;
  border-radius: 2.4rem;
}
.section-employees .employee-item .employee-item__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 50rem;
  width: 70%;
  aspect-ratio: 1/1;
}
.section-employees .employee-item .employee-item__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-employees .employee-item .employee-item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.6rem;
}
.section-employees .employee-item .employee-item__name {
  font-size: 2rem;
  display: block;
  line-height: 1.3;
  text-align: center;
}
.section-employees .employee-item .employee-item__speciality {
  font-size: 1.4rem;
  line-height: 1.3;
  display: block;
  text-align: center;
}
.section-employees .employee-item .employee-item__experience {
  font-size: 1.2rem;
  line-height: 1.3;
  display: block;
  text-align: center;
  opacity: 0.7;
}
.section-employees .link-all {
  display: flex;
  align-items: center;
  border-radius: 20rem;
  height: 7.2rem;
  display: flex;
  align-items: stretch;
  margin-top: 6rem;
  gap: 0.2rem;
}
.section-employees .link-all .link__label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 6rem;
  background-color: #00c9a3;
  border-radius: 5rem 2rem 2rem 5rem;
  transition: 0.2s;
}
.section-employees .link-all .link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #424b54;
  border-radius: 2rem 5rem 5rem 2rem;
  aspect-ratio: 1/1;
  transition: 0.2s;
  color: #fff;
}
.section-employees .link-all:hover .link__icon {
  background-color: #00c9a3;
  color: inherit;
}
.section-employees .link-all .link__icon:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.section-articles {
  margin-top: 10rem;
  width: 100%;
}
.section-articles .section__inner {
  width: 100%;
}
.section-articles .section__heading {
  padding: 0 12rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 3.6rem;
  width: 100%;
}
.section-articles .section__heading .section__heading-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  width: 100%;
}
.section-articles .section__heading .section__title {
  display: block;
  flex-shrink: 0;
  font-size: 6rem;
  font-weight: 400;
}
.section-articles .section__heading .swiper-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.6rem;
}
.section-articles .section__heading .swiper-controls .swiper-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button {
  width: 6rem;
  height: 6rem;
  background-color: #e8ebed;
  flex-shrink: 0;
  display: flex;
  border-radius: 20rem;
  cursor: pointer;
  transition: 0.2s;
  justify-content: center;
  align-items: center;
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button:not(.swiper-button-disabled):hover {
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.swiper-button-lock {
  pointer-events: none;
  display: none;
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.prev {
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.prev:before {
  font-family: 'Fontello';
  content: '\E84D';
  font-size: 2rem;
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.next {
}
.section-articles
  .section__heading
  .swiper-controls
  .swiper-navigation
  .swiper-navigation-button.next:before {
  font-family: 'Fontello';
  content: '\E84E';
  font-size: 2rem;
}

.section-articles .section__heading .swiper-pagination {
  display: block;
  width: 100%;
  background-color: #e8ebed;
  height: 0.6rem;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
.section-articles
  .section__heading
  .swiper-pagination
  .swiper-pagination-progressbar-fill {
  background-color: #424b54;
  height: 0.6rem;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
}

.section-articles .section__content {
  margin-top: 3.6rem;
}

.section-articles .swiper {
  padding: 0 12rem;
}

.section-articles .swiper-articles {
}

.section-articles .swiper-articles .swiper-slide {
  overflow: hidden;
  position: relative;
}

.section-articles .article-item {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
}
.section-articles .article-item .article-item__img-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  aspect-ratio: 3/2;
}
.section-articles .article-item .article-item__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.section-articles .article-item:hover .article-item__img {
  transform: scale(1.05);
  opacity: 0.7;
}
.section-articles .article-item .article-item__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 3.6rem;
  min-height: 50%;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.section-articles .article-item .article-item__title {
  display: block;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 200;
  color: #fff;
}
.section-articles .article-item .article-item__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 3.6rem;
  display: none;
}
.section-articles .article-item .article-item__action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #fff;
  gap: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.section-articles .article-item .article-item__action:after {
  font-family: 'Fontello';
  content: '\e812';
}

.section-articles .link-all {
  background-color: rgba(255, 255, 255, 0.1);
  color: #edbf92;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 3.6rem;
  height: 6rem;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border-radius: 1.2rem;
  transition: 0.2s;
  margin-top: 1.2rem;
  text-align: center;
  justify-content: center;
  margin: 4.8rem 12rem 0;
  width: calc(100% - 24rem);
}
.section-articles .link-all:hover {
  background-color: #edbf92;
  color: rgba(0, 0, 0, 0.8);
}
