@import url("header.css");
@import url("blog-page.css");
@import url("listing.css");
@import url("content.css");
@import url("cookies.css");

:root {
  --bl: #000;
  --wh: #fff;
  --black-400: #1d1b23;
  --black-500: #27262C;
  --purple-400: #7f68c2;
  --purple-700: #7e68c2;
  --purple-800: #6b5aae;
  --purple-900: #48416C;
  --grey-1: #4f4f50;
  --grey-2: #4d4d4d;
  --grey-3: #9D9D9D;
  --grey-4: #f7f7f7;
  --grey-5: #EBEBEB;
  --filter-white: invert(100%) sepia(100%) saturate(1%) hue-rotate(336deg)
    brightness(103%) contrast(101%);
  --grey-300: #f6f6f6;
  --grey-400: #9d9d9d;
  --neutral-300: #ebe9f1;
  --neutral-400: #e1e2ea;
  --filter-black: invert(44%) sepia(11%) saturate(2360%) hue-rotate(215deg)
    brightness(99%) contrast(90%);

  --offset-xs: 0.5rem;
  --offset-m: 1.25rem;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* start normalize */

html {
  line-height: 1.1;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
  color: var(--black-400);
  box-sizing: border-box;
  overflow-x: hidden;
  transition: ease-in-out 0.3s;
}

body.lock {
  overflow: hidden;
}

main {
  display: block;
}

p,
h1 {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  transition: 0.3s;
  text-decoration: none;
  position: relative;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*===end normalize====*/

/* Additional styles start */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  transition: 0.3s;
}

.features-container {
  transition: 0.3s;
  width: 100%;
}

.container > h2,
.container > h3,
.features-container > h2,
.features-container > h3,
.suggest-container > h2,
.suggest-container > h3,
.top-slider-container > h2,
.form-container h2,
.form-container h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.container > h2,
.features-container > h2,
.suggest-container > h2,
.form-container h2 {
  font-size: 2.5rem;
  max-width: 920px;
  margin-inline: auto;
  line-height: 1.1;
}

.container > h3,
.features-container > h3,
.suggest-container > h3,
.form-container h3 {
  font-size: 0.875rem;
  color: var(--grey-400);
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.description {
  font-size: 1.25rem;
  text-align: center;
  max-width: 845px;
  margin: 0 auto;
  margin-bottom: 2.625rem;
  line-height: 1.4;
}

.partners-section,
.mass-media-section,
.promo-section,
.moderation-section,
.features-section {
  background-color: var(--wh);
}

.additional-section {
  background-color: var(--black-400);
  color: var(--wh);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.universal-section {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 16px;
  }

  .container > h2,
  .features-container > h2,
  .form-container h2 {
    font-size: 1.75rem;
  }

  .container > .description,
  .features-container > .description {
    font-size: 1rem;
  }
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.py-60 {
  padding-block: 60px;
}

@media (width < 376px) {
  .py-60 {
    padding-bottom: 0;
  }
}

.pt-60 {
  padding-top: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.bg-grey {
  background-color: var(--grey-300);
}

.bg-grey-4 {
  background-color: var(--grey-4);
}

.bg-black {
  background-color: var(--black-400);
}

.bg-grey-5 {
  background-color: var(--grey-5);
}

.text-white {
  color: var(--wh);
}

.text-black {
  color: var(--bl);
}

.mw-1280 {
  max-width: 1280px !important;
}

/* Additional styles end */

/* Button start */

.button,
.form-container .yandex-form .yandex-form__button {
  color: var(--wh);
  border: 2px solid var(--purple-400);
  background-color: var(--purple-400);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  width: max-content;
}

.button > img {
  height: 14px;
}

.button-text,
.form-container .yandex-form .yandex-form__button span {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button:hover,
.button:active {
  cursor: pointer;
  background-color: color-mix(in srgb, var(--purple-400), transparent 20%);
}

.outline-button {
  background-color: transparent;
  border: 1px solid var(--grey-1);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  width: max-content;
}

.outline-button-text-white {
  color: var(--wh);
}
/* Button end */

/* Bigboard Hero Section start */

.bigboard-wrapper {
  background-color: var(--bl);
  position: relative;
  color: var(--wh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
}

.platform-bigboard {
  background-color: var(--grey-4);
  background-repeat: no-repeat;
  background-size: 77% auto;
  background-position: right bottom;
}

.b2c-bigboard {
    background-repeat: no-repeat;
    background-color: var(--grey-4);
}

@media (min-width: 1921px) {
  .platform-bigboard {
    background-size: auto 650px;
    background-position: calc(50% + 500px) 100%;
  }
  
    .b2c-bigboard {
    background-size: auto 650px;
    background-position: calc(50% + 500px) 100%;
  }
}

@media (min-width: 1840px) and (max-width: 1920px) {
  .platform-bigboard {
    background-size: auto 650px;
    background-position: top 70px right;
  }
  
  .b2c-bigboard  {
    background-size: auto 650px;
    background-position: top 70px right;
  }
}

@media (min-width: 1540px) and (max-width: 1839px) {
  .platform-bigboard {
    background-size: auto 650px;
    background-position: top 70px right -170px;
  }
  
    .b2c-bigboard {
    background-size: auto 650px;
    background-position: top 70px right;
  }
}

@media (min-width: 1279px) and (max-width: 1539px) {
  .platform-bigboard {
    background-size: 56%;
    background-position: center right -170px;
  }
  
    .b2c-bigboard {
    background-size: 43%;
    background-position: center right;
  }
}

@media (min-width: 1024px) and (max-width: 1278px) {
  .platform-bigboard {
    background-position: center right -100px;
    background-size: 60%;
  }
  
    .b2c-bigboard {
    background-position: center right;
    background-size: 56%;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .bigboard-wrapper.platform-bigboard {
    min-height: 880px;
  }

  .platform-bigboard {
    background-position: right bottom;
    background-size: 84%;
  }
  
    .bigboard-wrapper.b2c-bigboard {
    min-height: 900px;
  }

  .b2c-bigboard {
    background-position: center bottom;
    background-size: 50%;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .bigboard-wrapper.platform-bigboard {
    min-height: 770px;
  }

  .platform-bigboard {
    background-position: center bottom;
    background-size: auto 400px;
  }
  
    .bigboard-wrapper.b2c-bigboard {
    min-height: 800px;
  }

  .b2c-bigboard {
    background-position: center bottom;
    background-size: auto 400px;
  }
}

@media (min-width: 420px) and (max-width: 639px) {
  .bigboard-wrapper.platform-bigboard {
    min-height: 715px;
  }

  .platform-bigboard {
    background-position: center bottom;
    background-size: auto 300px;
  }
  
    .bigboard-wrapper.b2c-bigboard {
    min-height: 765px;
  }

  .b2c-bigboard {
    background-position: center bottom;
    background-size: auto 300px;
  }
}

@media (max-width: 419px) {
  .bigboard-wrapper.platform-bigboard {
    min-height: 710px;
  }

  .platform-bigboard {
    background-size: 99% auto;
  }
  
    .bigboard-wrapper.b2c-bigboard {
    min-height: 880px;
  }

  .b2c-bigboard {
    background-size: 99% auto;
     background-position: center bottom;
  }
}

.bigboard-background {
  position: absolute;
}

.platform-bigboard .clients-wrapper, .b2c-bigboard .clients-wrapper {
  background: none;
}

.platform-bigboard .bigboard-content, .b2c-bigboard .bigboard-content {
  padding-top: 200px;
}

.platform-bigboard .bigboard-content > div {
  max-width: 700px;
  color: var(--bl);
}

.b2c-bigboard .bigboard-content > div {
  max-width: 750px;
  color: var(--bl);
}

.ultraHd.bigboard-video {
  position: absolute;
  margin-right: 78px;
  margin-top: -390px;
}

.desktop.bigboard-video,
.mobile.bigboard-video {
  display: none;
  position: absolute;
  top: 0;
}

.bigboard-content {
  padding: 1.25rem;
  padding-top: 180px;
  max-width: 1440px;
  width: 100%;
  z-index: 10;
}

.bigboard-content > div {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
}

.bigboard-content h1 {
  font-size: 64px;
  font-weight: 700;
}

.bigboard-content p {
  font-size: 24px;
  font-weight: 400;
}

@media (width < 1921px) {
  .ultraHd.bigboard-video {
    display: none;
  }

  .desktop.bigboard-video {
    display: block;
  }
}

@media (width < 1441px) {
  .desktop.bigboard-video {
    margin-left: 80px;
  }

  .bigboard-content {
    max-width: 1200px;
  }
}

@media (width < 1280px) {
  .bigboard-content h1 {
    max-width: 530px;
    font-size: 3.5rem;
  }

  .bigboard-content p {
    max-width: 500px;
    font-size: 1.25rem;
  }
}

@media (width < 1024px) {
  .bigboard-wrapper {
    min-height: 800px;
  }

  .platform-bigboard .bigboard-content > div {
    display: flex;
    align-items: center;
  }
  
    .b2c-bigboard .bigboard-content > div {
    display: flex;
    align-items: center;
  }

  .mobile.bigboard-video {
    display: block;
  }

  .ultraHd.bigboard-video {
    display: none;
  }

  .bigboard-content h1 {
    font-size: 2.25rem;
  }

  .platform-bigboard .bigboard-content h1, .b2c-bigboard .bigboard-content h1 {
    text-align: center;
  }

  .bigboard-content {
    display: flex;
    justify-content: center;
    padding-top: 100px;
  }

  .platform-bigboard .bigboard-content, .b2c-bigboard .bigboard-content  {
    padding-top: 140px;
  }

  .bigboard-content .button {
    width: 340px;
  }
}

/* Bigboard Hero Section end */

/* Clents start */

.clients-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(29, 27, 35, 0) 0%, #1d1b23 100%);
  z-index: 1;
  padding-top: 4rem;
}

.clients-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  max-width: 1440px;
  z-index: 1;
}

.clients-content .media-logo {
  display: flex;
}

.clients-content .media-logo > img {
  max-height: 60px;
  max-width: 200px;
  transition: ease-in-out 0.1s;
  object-fit: contain;
}

@media (width < 1441px) {
  .clients-content {
    max-width: 1200px;
  }
}

@media (width < 1024px) {
  .clients-content {
    flex-wrap: wrap;
    align-items: center;
    max-width: 400px;
    padding-inline: 0.5rem;
  }

  .clients-content .media-logo img {
    width: 150px;
  }
}

.clients-section {
  background-color: var(--black-400);
  color: var(--wh);
}

.clients-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
  padding-top: 1rem;
}

.micro-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 15rem;
  color: var(--wh);
  padding-block: 20px;
  line-height: 1.4;
}

.micro-banner__icon {
  display: flex;
  justify-content: center;
  height: 5rem;
  padding: 1rem;
  background-color: var(--wh);
  border-radius: 0.5rem;
}

.micro-banner__icon img {
  width: 100%;
  object-fit: contain;
}

@media (width < 1024px) {
  .clients-container {
    justify-content: space-around;
  }

  .micro-banner__description {
    display: none;
  }
}

/* Clients end */

/* About/suggest section start */

.suggest-section {
  padding-bottom: 2.5rem;
}

.platfrom.suggest-section {
  background-color: var(--grey-4);
}

.platfrom.suggest-section .mini-banner {
  color: var(--bl);
}

.about-section,
.suggest-section {
  background-color: var(--black-400);
}

.about-container,
.suggest-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-section h2 {
  margin-bottom: 80px;
  color: var(--wh);
}

.about-section h3 {
  padding-top: 43px;
}

.about-section .container,
.suggest-section .container {
  padding-top: 0;
}

.mini-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--wh);
  padding-block: 20px;
  line-height: 1.4;
}

.mini-banner__link {
  color: var(--wh);
  text-decoration: underline;
}

.mini-banner__link:hover {
  opacity: 0.8;
}

.about-slider .swiper-slide,
.suggest-slider .swiper-slide {
  display: flex;
  height: auto;
}

.about-slider .swiper-slide,
.suggest-slider .swiper-slide {
  border-right: 1px solid var(--grey-1);
}

.industries .about-slider .mini-banner{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 20px 40px 40px;
}

.industries .swiper-slide:nth-of-type(1) .mini-banner, .industries .swiper-slide:nth-of-type(4) .mini-banner {
  padding-left: 0;
}

.industries .mini-banner:hover {
  background: linear-gradient(136deg, var(--black-500) 30%, var(--purple-900) 100%);
}

.industries .mini-banner:hover .outline-button {
  background-color: var(--purple-800);
  border-color: var(--purple-800);
}

.about-slider .swiper-slide:nth-child(-n+3),
.suggest-slider .swiper-slide:nth-child(-n+3) {
  border-bottom: 1px solid var(--grey-1);
}

.about-slider .swiper-slide:nth-child(3n),
.suggest-slider .swiper-slide:nth-child(3n) {
  border-right: none;
}

.industries .swiper-wrapper {
  border-top: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
}

.industries .mini-banner {
  width: 100%;
}
.industries .mini-banner>div:first-of-type {
  width: 100%;
}

.industries .mini-banner__title {
  font-size: 1.25rem;
  font-weight: '400';
  line-height: 28px,
}

.mini-banner__icon {
  display: flex;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about-slider .swiper-slide,
.suggest-slider .swiper-slide {
  flex-shrink: initial;
  width: calc(100% / 3);
}

/*.swiper-slide-top {*/
    /*flex-shrink: 100 !important;*/
    /*width: fit-content;*/
    /*width: 100% !important;*/
    /*height: auto;*/
    /*max-height: 300px;*/
/*    object-fit: scale-down;*/
/*}*/

.about-slider .swiper-wrapper,
.suggest-slider .swiper-wrapper {
  flex-wrap: wrap;
}

@media (max-width: 1180px) {

  .industries .swiper-slide .mini-banner {
    padding: 20px;
  }

  .industries .swiper-slide:nth-of-type(1) .mini-banner, .industries .swiper-slide:nth-of-type(4) .mini-banner {
    padding-left: 20px;
  }

  .about-slider .swiper-slide:nth-child(-n+4),
  .suggest-slider .swiper-slide:nth-child(-n+4) {
    border-bottom: 1px solid var(--grey-1);
  }

  .about-slider .swiper-slide:nth-child(even) {
    border-right: none;
  }

  .about-slider .swiper-slide:nth-child(3) {
    border-right: 1px solid var(--grey-1);
  }

  .about-slider .swiper-slide,
  .suggest-slider .swiper-slide {
    flex-shrink: initial;
    width: calc(100% / 2);
  }
}

@media (max-width: 1023px) {
  .industries .about-slider .swiper-slide,
  .industries .suggest-slider .swiper-slide {
    width: calc(100% / 2) !important;
  }

  .mini-banner__description {
    font-size: 14px;
  }
}

@media (max-width: 780px) {
  .industries .about-slider .swiper-slide,
  .industries .suggest-slider .swiper-slide {
    width: calc(100%) !important;
  }

  .mini-banner__description {
    font-size: 14px;
  }

  .about-slider .swiper-slide {
    border-right: 0 !important;
  }

  .about-slider .swiper-slide:nth-child(5) {
    border-bottom: 1px solid var(--grey-1);
  }
}

@media (max-width: 500px) {
  .industries .swiper-slide .mini-banner {
    padding: 10px 0;
  }

  .industries .swiper-slide:nth-of-type(1) .mini-banner, .industries .swiper-slide:nth-of-type(4) .mini-banner {
    padding-left: 0;
  }
}

/* About section end */

/*========Start banner-link===========*/

.banner-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--purple-400);
  color: var(--wh);
  border-radius: 0.5rem;
}

.banner-link__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-link__title {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.banner-link__text {
  font-size: 40px;
  line-height: 1.1;
}

.transfer-section .banner-link__wrapper {
  width: 100%;
}

.transfer-section .banner-link__text>div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.button.button_light,
.form-container .yandex-form .yandex-form__button {
  color: var(--purple-400);
  background-color: var(--wh);
  border-radius: 999px;
  gap: 10px;
  padding: 1rem 1.5rem;
}

.button.button_light:hover,
.button.button_light:active,
.form-container .yandex-form .yandex-form__button:hover,
.form-container .yandex-form .yandex-form__button:active {
  background-color: color-mix(in srgb, var(--wh), transparent 20%);
}

.button.button_light img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(15%) saturate(1603%)
    hue-rotate(214deg) brightness(89%) contrast(94%);
}

@media (max-width: 1440px) {
  .banner-link {
    max-width: 1160px;
  }
}

@media (max-width: 1199px) {
  .banner-link {
    margin: 0 20px;
  }
}

@media (max-width: 1023px) {
  .banner-link {
    margin: 0 auto;
    padding-inline: 1rem;
    border-radius: 0;
  }

  .banner-link__text {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .banner-link {
    flex-direction: column;
  }

  .banner-link .button {
    width: 343px;
  }
}

/*========End banner-link===========*/

/* Best Features section start */

.features-section {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.promo-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: max-content;
  gap: 2.5rem;
}

.promo-item {
  background-color: var(--grey-300);
  padding: 1.25rem 1.875rem 0 1.875rem;
  border-radius: 0.5rem;
}

.promo-item:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
  padding-bottom: 1.875rem;
}

.promo-image {
  padding-top: 50px;
  width: max-content;
}

.promo-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-item p {
  margin-bottom: 1.25rem;
}

.promo-item img {
  align-self: center;
  max-height: 266px;
  max-width: max-content;
  width: 100%;
}

.promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.promo-tags p {
  display: inline-block;
  border: 1px solid #1d1b231a;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  margin: 0;
}

.promo-content-wrapper {
  display: flex;
  justify-content: space-between;
}

.promo-content {
  max-width: 530px;
}

@media (min-width: 1024px) {
  .transfer-section {
    padding-top: 2px;
  }
}

@media (width < 1281px) {
  .promo-wrapper {
    gap: 1rem;
  }
}

@media (width < 1024px) {
  .features-section {
    padding-block: 1.5rem;
  }

  .promo-wrapper h3 {
    font-size: 1.25rem;
  }

  .platfrom.suggest-section {
    padding-top: 20px;
  }
}

@media (width < 940px) {
  .promo-content {
    width: 315px;
  }

  .promo-image-wrapper {
    max-width: 50%;
  }

  .promo-image {
    width: 100%;
  }
}

@media (width < 768px) {
  .promo-item {
    padding: 1.25rem;
    padding-bottom: 0;
  }

  .promo-item:nth-child(3) {
    padding-bottom: 1.25rem;
  }

  .promo-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.5rem;
  }

  .promo-image-wrapper {
    max-width: 100%;
  }

  .promo-content {
    width: 100%;
  }

  .promo-content-wrapper {
    flex-direction: column;
  }

  .promo-image {
    padding-top: 0;
    margin-bottom: 1.25rem;
  }
}

/* Best Features section end */

/* Solutions section start */

.solutions-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5rem;
  gap: 2.5rem;
}

.solutions-section {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.solutions-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.25rem;
  max-width: 440px;
  width: 100%;
  flex-shrink: 2;
}

.solutions-content .button {
  width: 100%;
}

.solutions-content-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solutions-list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.solutions-list-item-header img {
  border: 1px solid rgba(29, 27, 35, 0.1);
  border-radius: 999px;
  padding: 7px;
}

.solutions-list-item-header:hover {
  cursor: pointer;
}

.solutions-list-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-400);
}

.solutions-list-item ul,
.solutions-list-item ol {
  list-style: disc;
  padding-left: 2rem;
}

.solutions-list-item .list-item-content {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
  height: 0px;
}

.solutions-list-item.active h3 {
  color: var(--black-400);
}

.solutions-list-item.active .list-item-content {
  visibility: visible;
  opacity: 1;
  height: max-content;
  padding-top: 1rem;
}

.solutions-list-item.active .solutions-list-item-header img {
  rotate: 180deg;
  transition: rotate 0.5s;
}

.solutions-slide {
  max-width: 920px;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--black-400);
  border-radius: 0.5rem;
}

.solutions-video {
  max-width: 782px;
  width: 100%;
  border-radius: 0.5rem;
}

.solutions-mobile-video {
  display: none;
}

@media (width < 1441px) {
  .solutions-slide {
    max-width: 760px;
  }
}

@media (width < 1024px) {
  .solutions-section {
    padding-bottom: 0;
  }

  .solutions-list-item h3 {
    font-size: 1.25rem;
  }

  .solutions-slide {
    display: none;
  }

  .solutions-wrapper {
    justify-content: center;
    padding-bottom: 2.5rem;
  }

  .solutions-content {
    max-width: 780px;
  }

  .solutions-content .button {
    max-width: 343px;
    margin: 0 auto;
  }

  .solutions-list-item.active .solutions-mobile-video {
    margin-top: 2rem;
    display: block;
  }
}

/* Solutions section end */

/* Capabilities section start */

.capabilities-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5rem;
  gap: 2.5rem;
}

.capabilities-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.capabilities-container {
  padding-top: 4rem;
}

.capabilities-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4rem;
  max-width: 440px;
  width: 100%;
  flex-shrink: 2;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  text-align: left;
}

.capabilities-list ul,
.capabilities-list ol {
  list-style: disc;
  padding-left: 2rem;
}

.capabilities-list li:not(:last-child) {
  margin-bottom: 1rem;
}

.capabilities-slide {
  max-width: 920px;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--black-400);
  border-radius: 0.5rem;
}

.capabilities-video {
  max-width: 782px;
  width: 100%;
  border-radius: 0.5rem;
}

.capabilities-mobile-video {
  display: none;
}

@media (width < 1441px) {
  .capabilities-slide {
    max-width: 760px;
  }
}

@media (width < 1024px) {
  .capabilities-section {
    padding-bottom: 0;
  }

  .capabilities-slide {
    display: none;
  }

  .capabilities-wrapper {
    justify-content: center;
    padding-bottom: 2.5rem;
  }

  .capabilities-content {
    max-width: 780px;
  }

  .capabilities-mobile-video {
    margin-top: 2rem;
    display: block;
  }
}

/* Capabilities section end */

/* Advantages section start */

.advantages-section,
.numbers-section {
  padding-top: 60px;
  padding-bottom: 23px;
}

.numbers-section .container h2 {
  max-width: 920px;
}

.advantages-section {
  background-color: var(--black-400);  
  color: var(--wh);
}

.numbers-section {
  background-color: var(--black-400);
  color: var(--wh);
}

.advantages-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.advantages-row {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  padding-block: 40px;
}

.advantages-wrapper > div:last-child .advantages-row {
  padding-bottom: 0;
}

.advantages-wrapper > div:nth-child(2) .advantages-row {
  padding-top: 30px;
}

.advantages-header {
  padding-left: 170px;
  padding-top: 20px;
  justify-content: flex-end;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

.advantages-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.advantages-wrapper > div:last-child,
.advantages-wrapper > div:first-child {
  border-bottom: none;
}

.advantages-wrapper__default > div:first-child,
.advantages-wrapper > div {
  border-bottom: 2px solid var(--grey-2);
}

.advantages-row__text-container {
  display: flex;
  gap: 40px;
}

.advantages-row__right-part {
  color: var(--grey-400);
}

.advantages-row__title {
  font-size: 24px;
  font-weight: 700;
}

.advantages-row__text-container > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 560px;
}

@media (max-width: 1440px) {
  .advantages-row__text-container {
    display: flex;
    gap: 20px;
  }

  .advantages-row__text-container > div {
    max-width: 460px;
  }
}

@media (max-width: 1023px) {
  .advantages-section {
    padding-top: 1.5rem;
  }

  .advantages-row {
    gap: 30px;
    padding-block: 20px;
  }

  .advantages-header {
    padding-left: 110px;
  }

  .advantages-row__title {
    font-size: 20px;
  }

  .advantages-row__description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .advantages-header {
    gap: 0;
    padding-left: 0;
    text-align: center;
  }

  .advantages-wrapper > div {
    border: none;
  }

  .advantages-header > div {
    padding-bottom: 0.5rem;
    transition: 0.2s;
  }

  .advantages-row {
    justify-content: flex-start;
  }

  .advantages-row__text-container > div {
    max-width: none;
  }

  .advantages-header__left-button,
  .advantages-header.right-col .advantages-header__right-button {
    border-bottom: 2px solid var(--wh);
    color: var(--wh);
  }

  .advantages-header__right-button,
  .advantages-header.right-col .advantages-header__left-button {
    border-bottom: 2px solid var(--grey-400);
    color: var(--grey-400);
  }

  .advantages-row__text-container .advantages-row__right-part,
  .advantages-row__text-container.right-col .advantages-row__left-part {
    display: none;
  }

  .advantages-row__text-container .advantages-row__left-part,
  .advantages-row__text-container.right-col .advantages-row__right-part {
    display: flex;
  }
}

/* Advantages section end */

/* Numbers section start */

.numbers-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.numbers-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: calc((100%) / 4);
  padding-block: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid var(--grey-1);
}

.numbers-item:last-child {
  flex-grow: 1;
}

.numbers-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
}

.numbers-text {
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (min-width: 1440px) {
  .numbers-item:not(:nth-child(4n + 1)) {
    width: calc((100%) / 4);
    padding-left: 2.5rem;
    border-left: 1px solid var(--grey-1);
  }
}

@media (max-width: 1440px) and (min-width: 1024px) {
  .numbers-item:not(:nth-child(4n + 1)) {
    padding-left: 1.25rem;
    width: calc((100%) / 4);
    border-left: 1px solid var(--grey-1);
  }

  .numbers-item {
    width: calc((100%) / 4);
  }
}

@media (max-width: 1023px) {
  .numbers-item {
    width: calc(50% - 10px);
  }

  .numbers-item:nth-child(2n) {
    width: calc(50% + 10px);
    padding-left: 1.25rem;
    border-left: 1px solid var(--grey-1);
  }

  .numbers-title {
    font-size: 2.25rem;
  }

  .numbers-text {
    font-size: 14px;
  }
}

/* Numbers section end */

/* Open architecture start */

.open-architecture-section {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.open-architecture-container {
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}

.open-architecture {
  max-width: 1163px;
  padding-bottom: 5rem;
  width: 100%;
}

.open-architecture.mobile {
  display: none;
}

@media (width < 1024px) {
  .open-architecture-section {
    padding-bottom: 0;
  }

  .open-architecture {
    padding-bottom: 2.5rem;
  }
}

@media (width < 780px) {
  .open-architecture.mobile {
    display: block;
  }

  .open-architecture.desktop {
    display: none;
  }
}

/* Open architecture end */

/* Reviews slider start */

.reviews-container {
  padding-top: 5rem;
  padding-bottom: 20px;
}

.reviews-container > h2,
.reviews-container > h3 {
  text-align: start;
  margin-inline: unset;
}

.reviews-slider {
  overflow-x: hidden;
  position: relative;
  margin-bottom: 60px;
}

.review-text {
  max-width: 920px;
  font-size: 1.25rem;
}

.reviewer-slide {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--grey-400);
}

.reviewer-slide.swiper-slide-active {
  color: var(--black-400);
}

.reviewer-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.reviewer-image {
  max-width: 60px;
  max-height: 60px;
  border-radius: 999px;
}

#slider-reviews .swiper-slide {
  padding-bottom: 2.5rem;
}

#slider-reviewers {
  overflow-y: hidden;
}

.reviews-button-wrapper {
  display: flex;
  gap: 0.75rem;
  width: fit-content;
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  z-index: 10;
}

.reviews-button-wrapper .swiper-button-disabled {
  display: none;
}

.reviews-button-prev,
.reviews-button-next {
  background-color: var(--purple-400);
  border-radius: 0.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.reviews-button-prev > img {
  rotate: 180deg;
}

.reviews-button-prev.swiper-button-prev {
  left: unset;
  right: 65px;
}

.reviews-progressbar.swiper-pagination {
  top: unset;
  bottom: 0;
  height: 2px;
  background-color: var(-grey-400);
}

.reviews-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--purple-400);
}

@media (width < 1441px) {
  .reviews-container {
    padding-top: 2.5rem;
  }

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

  .reviews-slider {
    margin-bottom: 1.5rem;
  }
}

@media (width < 980px) {
  .reviewer-slide {
    flex-direction: column;
    gap: 0.5rem;
    align-items: unset;
  }

  .review-text {
    max-width: 100%;
    font-size: 1rem;
  }

  #slider-reviews .swiper-slide {
    padding-bottom: 100px !important;
  }

  #slider-reviews .reviews-button-wrapper {
    right: unset;
    left: 0;
    bottom: 0;
  }

  #slider-reviews .reviews-progressbar.swiper-pagination {
    bottom: 80px;
  }
}

/* Reviews slider end */

/* Form start */

.form-section {
  padding-top: 20px;
  padding-bottom: 60px;
  color: var(--wh);
  /* background-color: var(--wh); */
}

.form-container {
  display: flex;
  justify-content: space-between;
  padding: 60px 120px 0;
  background: var(--purple-400);
  border-radius: 0.5rem;
}

.form-text-container {
  display: flex;
  flex-direction: column;
  width: 350px;
  min-width: 350px;
}

.form-container h2,
.form-container h3 {
  text-align: left;
}

.form-container h2 {
  margin-bottom: 30px;
}

.form-container h3 {
  opacity: 0.6;
  color: var(--wh);
}

.form-image {
  width: 254px;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.form-image_mobile {
  display: none;
}

.form-container .yandex-form {
  padding: 0;
  margin: 0;
  max-width: none;
  border: none;
  background: transparent;
  box-shadow: none;
  line-height: 1.4;
  font-weight: 400;
}

.form-container .yandex-form__header {
  display: none;
}

.form-container > div:nth-child(2) {
  width: 600px;
}

.form-container .yandex-form__group {
  column-gap: 1.25rem;
}

.form-container .yandex-form .yandex-form__label {
  color: var(--wh);
  font-weight: 400;
  left: 1rem;
}

.form-container .yandex-form textarea ~ .yandex-form__label {
  top: 28px;
}

.form-container .yandex-form__field-wrapper {
  margin-top: 0;
}

.form-container .yandex-form .yandex-form__input,
.form-container .yandex-form .yandex-form__textarea {
  color: var(--wh);
  line-height: 1.4;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px
    color-mix(in srgb, var(--purple-400), var(--wh) 5%) inset !important;
  -webkit-text-fill-color: var(--wh);
  caret-color: var(--wh);
  background-color: transparent !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px
    color-mix(in srgb, var(--purple-400), var(--wh) 5%) inset;
  -webkit-text-fill-color: var(--wh);
}

.form-container .yandex-form .yandex-form__input:focus,
.form-container .yandex-form .yandex-form__textarea:focus {
  border-color: var(--wh);
  box-shadow: none;
}

.form-container .yandex-form .yandex-form__textarea {
  outline: none;
  height: 100px;
}

.form-container .yandex-form__input:focus + .yandex-form__label,
.form-container .yandex-form__textarea:focus + .yandex-form__label,
.form-container
  .yandex-form__textarea:not(:placeholder-shown)
  + .yandex-form__label,
.form-container
  .yandex-form__input:not(:placeholder-shown)
  + .yandex-form__label {
  padding-inline: 0;
  top: 1rem;
  font-size: 0.75em;
  background: none;
  color: var(--wh);
  opacity: 0.6;
}

.form-container .yandex-form__input:focus,
.form-container .yandex-form__textarea:focus,
.form-container .yandex-form__textarea:not(:placeholder-shown),
.form-container .yandex-form__input:not(:placeholder-shown) {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.form-container .yandex-form__field_error-message {
  visibility: hidden;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--wh);
  padding-left: 0.25rem;
  padding-top: 0.25rem;
}

.form-container .yandex-form__field_error-message::before {
  content: "!";
  display: flex;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  background-color: var(--wh);
  color: var(--purple-400);
  border-radius: 1rem;
  font-size: 0.75rem;
}

.form-container .yandex-form__field.invalid + .yandex-form__field_error-message,
.form-container
  .yandex-form__agreement-field.invalid
  > .yandex-form__field_error-message {
  visibility: visible;
}

.form-container .yandex-form__field.invalid .yandex-form__input,
.form-container .yandex-form__field.invalid .yandex-form__textarea {
  border-color: inherit;
}

.form-container .yandex-form__field.invalid .yandex-form__label {
  color: var(--wh);
}

.form-container .yandex-form__footer {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  padding: 0;
}

.form-container .yandex-form .yandex-form__button {
  width: 100%;
}

.form-container .yandex-form .yandex-form__button span::after {
  content: url("/static-assets/images/icons/arrow-right.svg");
  filter: brightness(0) saturate(100%) invert(49%) sepia(15%) saturate(1603%)
    hue-rotate(214deg) brightness(89%) contrast(94%);
  padding-left: 10px;
}

.form-container .yandex-form__button[disabled] {
  opacity: 0.6;
}

.form-container .yandex-form__agreement + label {
  display: flex;
  color: var(--wh);
}

.form-container .yandex-form__agreement + label::before {
  padding-top: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container .yandex-form__agreement:checked + label::before {
  border-color: var(--wh);
  background-color: transparent;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'><path d='M5.79288 9.59407L5.77107 9.61588L0.326263 4.17107L2.0992 2.39813L5.79295 6.09188L11.7008 0.184032L13.4737 1.95697L5.81475 9.61595L5.79288 9.59407Z' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.form-container
  .yandex-form__agreement-field.invalid
  .yandex-form__agreement
  + label::before {
  border-color: var(--wh);
}

.form-container
  .yandex-form__agreement-field
  .yandex-form__field_error-message {
  padding-left: unset;
}

.form-container .yandex-form__agreement-field a,
.form-container .yandex-form__agreement-field a:hover,
.form-container .yandex-form__agreement-field a:focus,
.form-container .yandex-form__agreement-field a:link,
.form-container .yandex-form__agreement-field a:link:hover,
.form-container .yandex-form__agreement-field a:link:focus {
  color: var(--wh);
  border-bottom: 1px solid color-mix(in srgb, var(--wh), transparent 40%);
}

@media (max-width: 1440px) {
  .form-container {
    padding: 60px 60px 0;
  }
}

@media (max-width: 1200px) {
  .form-container {
    padding: 40px 40px 0;
    gap: 30px;
  }
}

@media (max-width: 1023px) {
  .form-section {
    padding: 0;
    background-color: transparent;
  }

  .form-section .container {
    padding: 0;
  }

  .form-container {
    flex-direction: column;
    padding-inline: 1rem;
    gap: 10px;
    border-radius: 0;
    border-top: 1px solid color-mix(in srgb, var(--wh), transparent 40%);
  }

  .form-container > div:nth-child(2) {
    width: auto;
  }

  .form-text-container {
    width: auto;
    min-width: auto;
  }

  .form-container h2 {
    margin-inline: unset;
  }

  .form-image {
    display: none;
  }

  .form-image_mobile {
    display: flex;
    align-self: center;
    width: 254px;
    height: 15rem;
  }

  .form-image_mobile img {
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}

/* Form end */

/* Partners section start */

.partners-section {
  padding-top: 60px;
  padding-bottom: 20px;
}

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

.container_tile {
  width: 100%;
  height: 190px;
  max-width: 440px;
}

.container_tile:nth-child(2n + 1) {
  justify-self: end;
}

.container_tile a:hover {
  transform: scale(1.03);
}

.tile__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 30px;
  background-color: var(--grey-300);
  border-radius: 4px;
}

.container_tile_icon {
  max-width: 230px;
  max-height: 140px;
  object-fit: contain;
  filter: grayscale(100%);
}

@media (max-width: 1440px) {
  .container_tile {
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .partners-section {
    padding-block: 1.5rem;
  }

  .tiles_wrap {
    gap: 20px;
  }

  .container_tile {
    max-width: 315px;
    height: 140px;
  }

  .container_tile_icon {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .container_tile {
    height: auto;
    aspect-ratio: 1.93;
  }
}

/* Partners section end */

/* Promo section start */

.promo-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Promo section end */

/* Mass media slider start */

.mass-media-section {
  padding-top: 60px;
  /* padding-bottom: 80px; */
}

.mass-media-section_title {
  position: relative;
  padding-top: 20px;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .mass-media-section_title .mass-media-container .container {
      padding-inline: 0rem;
  }
}

.mass-media-section_title .features-container h2, .mass-media-section_title .features-container h3 {
  display: flex;
  max-width: 100%;
  text-align: left;
  position: absolute;
  margin-bottom: 0;
}

.mass-media-section_title .features-container h2 {
  top: 66px;
}
.mass-media-section_title .features-container h3 {
  top: 22px;
}

.mass-media-section_title .mass-media-slider {
  padding: 0;
  position: relative;
}

.mass-media-section_title .mass-media-slider .swiper-button-prev {
  top: 25px;
  left: calc(100% - 132px);
  width: 3.75rem;
  height: 3.75rem;
}

.mass-media-section_title .mass-media-slider .swiper-button-next {
  top: 25px;
  left: calc(100% - 60px);
  width: 3.75rem;
  height: 3.75rem;
}

.mass-media-section_title .mass-media-slider {
  padding-top: 100px;
  display: flex;
  align-items: end;
  overflow-x: hidden;
  overflow-y: visible;
}

/* .mass-media-section_title .container {  overflow: visible;} */

.mass-media-container .container {
  padding-inline: 0;
}

.mass-media-slider .swiper-slide {
  height: auto;
}

.mass-media-description {
  font-size: 0.875rem;
}

.mass-media-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.mass-media-image {
  max-height: 40px;
  max-width: 270px;
  filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(52deg) brightness(97%)
    contrast(101%);
}

.mass-media-link {
  display: flex;
  align-items: center;
  color: var(--purple-400);
  font-size: 0.875rem;
  font-weight: 700;
}

.mass-media-link img {
  width: 1.75rem;
  height: 1.75rem;
  padding: 7px;
  filter: var(--filter-black);
}

.mass-media-slider .mass-media-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  background-color: var(--grey-300);
  border-radius: 0.5rem;
  height: 100%;
  padding: 1.25rem;
}

.mass-media-slider .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}

.buttons-true {
  padding-inline: 2.5rem;
}

.mass-media-slider .swiper-button-prev,
.mass-media-slider .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--purple-400);
  border-radius: 0.25rem;
}

.mass-media-slider .swiper-button-prev::after,
.mass-media-slider .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
  color: var(--wh);
}

@media (width < 1280px) {
  .mass-media-image {
    max-width: 110px;
  }
}

@media (979px < width < 1024px) {
  .mass-media-slider .swiper-slide:first-child {
    padding-left: 1.25rem;
  }

  .mass-media-slider .swiper-slide:last-child {
    padding-right: 1.25rem;
  }
}

@media (width < 1025px) {
  .mass-media-slider.mobile-slider .swiper-wrapper {
    gap: 1.25rem !important;
  }
}

@media (width < 980px) {
  .mass-media-slider.mobile-slider .swiper-wrapper {
    gap: 1rem !important;
  }
  .mass-media-slider.mobile-slider .swiper-slide:first-child {
    padding-left: 1rem !important;
  }

  .mass-media-slider.mobile-slider .swiper-slide:last-child {
    padding-right: 3rem !important;
  }
}

@media (max-width: 1023px) {
  .mass-media-section {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .mass-media-container .container {
    padding-inline: 1.25rem;
  }

  .mass-media-slider .mass-media-wrapper {
    max-width: 440px;
    width: 100%;
  }
  .mass-media-slider .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .mass-media-slider.mobile-slider .swiper-wrapper {
    gap: 2.5rem;
  }

  .mass-media-slider.mobile-slider .swiper-slide {
    flex-shrink: initial;
    width: fit-content;
  }

  .mass-media-description {
    font-size: 1rem;
  }
}

/* Mass media slider end */

/* Error page start */
.error {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.error .header {
  background-color: var(--black-400);
}

.error .error-wrapper {
  flex: 1 1 auto;
  display: flex;
  padding-top: 100px;
  background-color: var(--wh);
}

.error-wrapper .container {
  min-height: 80vh;
}

.error-wrapper .container,
.error-wrapper .container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-title {
  font-size: 12rem;
  margin-bottom: 1.5rem;
}

.error-description {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: var(--purple-400);
}

@media (width < 426px) {
  .error-title {
    font-size: 8rem;
    margin-bottom: 1.5rem;
  }

  .error-description {
    font-size: 1.5rem;
  }

  .error-wrapper .button-text {
    font-size: 1rem;
  }
}
/* Error page end */

/* One window section start */

.one-window-section {
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.one-window-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 1023px) {
  .one-window-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
}
/* One window section start */

/* Banner-tile section start */
.banner-tile {
  display: flex;
  flex-direction: column;
  min-width: 400px;
  max-width: 400px;
  min-height: 400px;
  max-height: 400px;
  background-color: var(--grey-4);
  padding: 20px 0 0 30px;
  border-radius: 8px;
  overflow: hidden;
}

.banner-tile h3 {
  margin-bottom: 1rem;
  padding-right: 30px;
}

.banner-tile-description {
  padding-right: 30px;
}

.banner-tile-link {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-right: 30px;
}

.banner-tile-link a,
.banner-tile-link a:hover,
.banner-tile-link a:focus,
.banner-tile-link a:link,
.banner-tile-link a:link:hover,
.banner-tile-link a:link:focus {
  color: var(--purple-700);
}

.banner-tile-image {
  width: 480px;
  margin-left: 2rem;
}

@media (max-width: 1023px) {
  .banner-tile {
    min-width: 100%;
    max-width: 100%;
  }

  .banner-tile-image {
    align-self: center;
    margin-left: -30px;
    width: 100%;
  }
}

/* Banner-tile section end */

/* More section start */
.more-section {
  background-color: var(--black-400);
  color: var(--wh);
  padding-top: 3rem;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .more-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
/* More section end */

/* common styles */
.blocks-3-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blocks-2-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .blocks-3-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .blocks-2-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blocks-3-columns, .blocks-2-columns {
    grid-template-columns: 1fr;
  }
}
/* common styles */

/* traditional solutions */

.traditional-solutions-wrapper {
  padding-top: 5rem;
}

.traditional-solutions .mini-banner {
  color: var(--wh);
}

.traditional-solutions .blocks-item {
  background-color: var(--black-500);
  padding: 1.25rem 1.875rem;
  border-radius: 0.5rem;
}
/* traditional solutions */

/* trends */

.trends {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4.1875rem;
  margin-bottom: 6.875rem;
  flex-wrap: wrap;
}

.trends-text {
  flex: 1;
  display: flex;
  white-space: normal;
}

.trends-text {
width: 100%;
display: flex;
}

.trends .articleImage  {
  width: 24.0625rem;
}

.trends h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 110%;
  margin-bottom: 1.25rem;
}

.trends ul {
  padding-left: 1.25rem;
  list-style-type: disc;
} 

.trends li {
  margin-bottom: 1.25rem;
} 

.trends .articleImage:first-of-type {
  width: 100%;
}

.trends .articleImage img {
  display: block;
  margin-left: auto;
  min-width: 415px;
  padding-left: 1rem;
}

@media (max-width: 760px) {
  .trends {
    flex-wrap: wrap;
  }

  .trends .articleImage img {
    display: block;
    margin: 0 auto;
    padding-left: 0;
    min-width: 315px;
    width: 315px;
  }

  .trends .articleImage {
    margin-top: 1rem;
    margin-left: 0;
    padding-left: 0;
  }
}

/* trends */

/* technology */

.technology {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 43px; 
  flex-wrap: wrap;
  color: var(--wh);
}

.architectural-approach-container {
  max-width: 600px;
}

.architectural-approach-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

.architectural-approach {
  position: relative;
  overflow: hidden;
}

.architectural-approach .technology-text:nth-of-type(2) {
  position: absolute;
  
} 

.architectural-approach-highlight {
  color: var(--purple-800);
}

.architectural-approach .technology .articleImage, .architectural-approach .technology .articleImage>img {
  min-height: 100%;
}

.architectural-approach-description {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
  font-size: 16px;
  color: var(--wh);
}

.architectural-approach-info-box {
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(var(--black-400) 0%, var(--purple-800) 100%);
  color: var(--wh);
  align-items: center;
}

.architectural-approach-info-title {
  display: flex;
  margin-bottom: 20px;
  color: var(--grey-3);
  align-items: center;
  vertical-align: middle;
}

.architectural-approach-info-text {
  font-size: 16px;
  line-height: 22px;
}

.architectural-approach-bold {
  font-weight: bold;
}

.architectural-approach-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--purple-800);
  color: var(--bl);
  font-size: 14px;
  font-weight: bold;
  margin-right: 8px;
}

.architectural-approach {
  border-radius: 0.5rem;
  background-color: var(--black-500);
  display: flex;
}

.architectural-approach-text {
  padding: 3.75rem 0 3.75rem 3.75rem;

}

.technology .architectural-approach-text h2 {
  margin-bottom: 2.25rem;
  font-size: 2rem;
}

.technology-text {
  width: 100%;
  display: flex;
}

.technology-text:first-of-type {
  z-index: 10;
}

.technology .articleImage:first-of-type {
  width: 100%;
}

.approach-used .technology .articleImage {
  position: relative;
  padding-left: 1rem;
  overflow: hidden;
  height: 544px;
}

.approach-used .technology .articleImage>img {
  position: absolute;
  top: -92px;
}

.technology-text {
  flex: 1;
  display: flex;
  white-space: normal;
}

.technology h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 110%;
  margin-bottom: 1.25rem;
}

.technology ul {
  padding-left: 1.25rem;
  list-style-type: disc;
  max-width: 39.1875rem;
  margin-bottom: 6.25rem;
} 

.technology li {
  margin-bottom: 1.25rem;
} 

.technology .articleImage img {
  display: block;
  margin-left: auto;
  padding-left: 1rem;
  min-width: 415px;
}

@media (max-width: 1440px) {
  .approach-used .technology .articleImage>img {
    position: absolute;
    top: -72px;
  }
  
}

@media (max-width: 1180px) {
  .approach-used .technology .articleImage>img {
    position: absolute;
    top: -48px;
  }
  
}

@media (max-width: 780px) {
  .approach-used .technology .technology-text:nth-last-of-type(1) {
    display: none;
  }

  .approach-used .architectural-approach-title {
    font-size: 1.75rem;
  }

  .technology .architectural-approach-text {
    font-size: 1.75rem;
  }
  
}


@media (max-width: 690px) {
  .architectural-approach .articleImage img {
    display: none;
  }

  .architectural-approach {
    background: linear-gradient(136deg, var(--black-500) 30%, var(--purple-900) 100%);
  }

  .architectural-approach .architectural-approach-text {
    padding: 2rem;
  }
 
  .technology .architectural-approach-text {
    font-size: 0.5rem !important;
  }

  .technology .architectural-approach-text h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 500px) {
  .architectural-approach .architectural-approach-text {
    max-width: 100%;
    font-size: 0.5rem !important;
  }

  .architectural-approach .architectural-approach-text h2 {
    font-size: 1.75rem;
  }

  .architectural-approach .button-text {
    font-size: 1rem;
  }
}

/* technology */

/* news */
.news .mini-banner {
  padding: 0;
  display: inline-block;
  vertical-align: top;
}

.news .mini-banner>img {
  padding-bottom: 20px;
}

.news  .mini-banner__icon {
  height: 100%;
}

.news .mini-banner img {
  width: 100%;
}

.news .mini-banner .mini-banner__title{
  display: none;
}

.news .mini-banner .mini-banner__description{
  color: var(--bl);
  font-weight: 700;
}
/* news */

/* for whom section */

.business-solutions {
  display: flex;
}

.expertise-areas>div>h2{
  padding-top: 40px;
  min-width: 100%;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
  background-color: var(--wh);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.expertise-areas .description{
  padding-bottom: 40px;
  min-width: 100%;
  text-align: center;
  margin: 0;
  background-color: var(--wh);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  margin-bottom: 2px;
}

.expertise-areas .container {
  padding-bottom: 0;
}

.expertise-areas .promo-wrapper {
  gap: 2px;
}

.expertise-areas .for-whom .for-whom-item {
  background-color: var(--wh);
}

@media (max-width: 500px) {
  .expertise-areas>div>h2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.business-solutions .for-whom-item {
  padding: 1.25rem 1.875rem;
}

.for-whom .for-whom-item {
  background-color: var(--grey-300);
  padding: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.for-whom-list-container ul{
  min-height: 100%;
}

.for-whom-list-container h2 {
  line-height: 33.60px
}

.for-whom ul {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  list-style-type: circle;
  max-width: 39.1875rem;
  margin-bottom: auto;
  font-weight: '400';
  font-size: 1rem;
} 

.for-whom li::marker {
  color: var(--purple-700);
}

.for-whom li {
  margin-bottom: 0.5rem;
} 

.for-whom p {
  margin-top: 0.5rem;
  line-height: 22spx;
  font-weight: '400';
  font-size: 1rem;
} 

.for-whom .star {
  font-size: 22px;
  color: var(--purple-700);
  padding-right: 12px;
  line-height: 12px;
  vertical-align: bottom;
}

.for-whom a {
  margin-top: auto;
  color: var(--purple-700);
}

/* for whom section */

/* unique approach */

.unique-approach {
  padding-top: 43px;
}

.unique-approach>div>h2{
  color: var(--wh);
  margin-bottom: 40px;
}

.unique-approach .for-whom .for-whom-item {
  background-color: var(--black-500);
  color: var(--wh);
}

.unique-approach .for-whom-item {
  padding: 0;
}

.for-whom-list-container>div:first-of-type {
  padding: 24px;
}

.unique-approach>div>h3{
  font-size: 0.875rem;
  color: var(--grey-400);
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.unique-approach .for-whom-list-container {
  display: flex;
}

.unique-approach .for-whom-list-container>div {
  width: 50%;
}

.unique-approach .for-whom-list-container>div:nth-of-type(2) {
  display: flex;
  justify-content: end;
  min-height: 100%;
}

.unique-approach .for-whom-list-container>div img{
  min-height: 100%;
}

@media (width < 910px) {
  .unique-approach .for-whom {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .unique-approach .for-whom-list-container>div {
    width: 100%;
  } 
  .unique-approach .for-whom-list-container>div:nth-of-type(2) {
    display: none;  
  }
}

/* unique approach */

/* integration and compatibility */

.integration-section {
  padding-top: 43px;
}

.integration-section h2 {
  color: var(--wh);
  margin-bottom: 40px;
}

.integration-section .mini-banner {
  padding: 0;
  height: 100%;
}

.integration-section .mini-banner__description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: auto;
}

.integration-section .mini-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
}

.integration-section .mini-banner__description>p {
  font-size: 0.875rem;
  font-weight: '400'; 
  line-height: 19.60px;
}

.integration-section .blocks-item {
  min-height: 280px;
}

.integration-section .blocks-item:hover {
  background: linear-gradient(136deg, var(--black-500) 20%, var(--purple-900) 100%);
}

.integration-section .blocks-item:hover .outline-button {
  background-color: var(--purple-800);
  border-color: var(--purple-800);
}

/* integration and compatibility */


/* B2C section start */

#b2c .banner-tile h3 {
    font-size: 1.5rem;
}

.b2c-solutions-section {
    padding-top: 5rem;
}

@media (width < 1025px) {
    .b2c-solutions-section {
    padding-top: 1rem;
}
}

.b2c-solutions-section .banner-tile {
    background-color: var(--wh);
    min-height: 280px;
    position: relative;
}

.b2c-solutions-section .banner-tile .banner-tile-image {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: unset;
}

#b2c .numbers-section {
  background-color: var(--grey-4);
  color: var(--bl);
}

.b2c-bigboard {
    background-color: var(--grey-4);
}

.b2c-advantages-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.b2c-advantages-section h2 {
    margin-bottom: 4rem;
}

.b2c-advantages-item {
    border-left: 2px solid var(--bl);
}

.b2c-advantages-section .banner-tile {
    min-height: unset;
    border-radius: unset;
}

.b2c-results-section {
    background-color: var(--grey-4);
    padding-top: 80px;
}

.b2c-results-wrapper {
    padding-top: 7rem;
    display: flex;
    flex-direction: column;
    gap: 9rem;
}

.b2c-results-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-evenly;
}

.b2c-results-item > div {
    max-width: 440px;
    padding: 20px;
    width: 100%;
}

.b2c-results-item h3 {
    margin-bottom: 2rem;;
}

.b2c-results-item > img {
    max-width: 50%;
}

.b2c-results-item:nth-child(even) {
    flex-direction: row;
}

@media (width < 781px) {
    .b2c-results-item {
    flex-direction: column;
}

.b2c-results-item:nth-child(even) {
    flex-direction: column;
}

.b2c-results-wrapper {
    padding-top: 3rem;
    gap: 3rem;
}

.b2c-results-item > img {
    max-width: 90%;
}

.b2c-results-item > div {
    padding-bottom: 40px;
    max-width: 600px;
}
}

.mySwiperBlack .swiper-button-prev,
.mySwiperBlack .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border-radius: 0.25rem;
  border: 1px solid gray;
}

.mySwiperBlack .swiper-button-prev::after,
.mySwiperBlack .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
  color: var(--wh);
}

