* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
}

:root {
  --text-main: #2D353A;
  --text-main-reverse: #FFFFFF;
  --text-primary: #FE0176;
  --text-secondary: #1772DD;
  --text-muted: #909497;
  --text-violet: #9B7CEF;
  --text-cian-1: #04D2C6;
  --text-cian-2: #00B3C6;
  --text-gray-1: #B8B8B8;
  --text-pink-1: #FF85BD;
  --text-black-1: #000000;
  --background-main-reverse: #FFFFFF;
  --background-main-transparent: rgba(45, 53, 58, 0.5);
  --background-primary: #FE0176;
  --background-muted: #909497;
  --background-muted-lighter: #E6E6E6;
  --background-muted-transparent: #B5BCC04D;
  --background-violet: #9B7CEF;
  --background-violet-1: #DED2FF;
  --background-cian-1: #5DD1CA;
  --background-cian-2: #1FB1D5;
  --background-cian-3: #79B7FF;
  --background-cian-4: #79D7E8;
  --background-cian-5: #16C3D5;
  --background-cian-6: #D3FBFF;
  --background-cian-7: #E4FDFF;
  --background-gold-1: #FFD42E;
  --background-gold-2: #F1F44D;
  --background-gold-3: #F0C419;
  --background-gold-4: #FFF2BF;
  --background-pink-1: #FF7DB9;
  --background-pink-2: #FDA2CC;
  --background-pink-3: #FF85BD;
  --background-pink-4: #F9E1DD;
  --background-pink-5: #FFBEDC;
  --background-pink-6: #FDD3E6;
  --background-gray-1: #F5F5F5;
  --background-gray-2: #F8F8F8;
  --background-gray-3: #E3E5E7;
  --background-black-1: #1F2431;
  --border-main-reverse: #FFFFFF;
  --border-pink-5: #FFBEDC;
  --padding: 14px;
  --gap-half: 4px;
  --gap: 8px;
  --gap-2: 16px;
  --gap-3: 24px;
  --gap-4: 32px;
  --font-roboto: 'Roboto', sans-serif;
  --transition: 0.3s;
  --transition-long: 0.6s;
  --header-height: 156px;
  --header-height-mobile: 70px;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-width: 300px;
}

html {
  font-size: 18px;
  font-weight: 300;
}

body {
  background: var(--background-main);
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  letter-spacing: -0.3px;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--text-main);
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.wrapper {
  position: relative;
  z-index: 5;
  padding-top: var(--header-height);
  width: 100%;
}

.footer {
  margin-top: auto;
}

.section {
  position: relative;
}

.section__bottomButton {
  padding: 50px 0;
}

.section__bottomButton .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.section__bottomButton .button {
  padding: 0 var(--gap-3);
  width: auto;
}

.container {
  margin: 0 auto;
  padding: 0 var(--padding);
  width: 100%;
  max-width: 1168px;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

a {
  transition: var(--transition);
}

.icon {
  display: inline-block;
}

.icon::before {
  display: inline-block;
  position: relative;
  font-size: inherit;
  color: inherit !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  border: 0;
  border-radius: 15px;
  background: var(--background-primary);
  padding: 0 14px;
  height: 66px;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.3px;
  text-align: center;
  color: var(--text-main-reverse);
  text-decoration: none;
  cursor: pointer;
}

.button--light {
  background: var(--background-gray-1);
  color: var(--text-main);
}

.loader {
  display: inline-block;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #a845f8;
  --_m: conic-gradient(#0000 10%, #000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 991px) {
  .wrapper {
    padding-top: var(--header-height-mobile);
  }

  .button {
    padding: 0 14px;
    height: 60px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
  }
}

.factsList {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.factImage {
  display: flex;
}

.factImage__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--padding);
  position: relative;
  z-index: 10;
  width: 53%;
}

.factImage__textInner {
  position: relative;
  border-radius: 30px;
  background: var(--background-muted-transparent);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 20px;
}

.factImage__textInner p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.factImage__textEmoji {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  border-radius: 14px;
  background: var(--background-main-reverse);
  margin-left: -55px;
  width: 110px;
  height: 60px;
}

.factImage__textEmoji img {
  width: 35px;
}

.factImage__text.len-2 .factImage__textInner {
  margin: auto;
}

.factImage__text.len-2 .factImage__textInner:nth-child(2) {
  margin-left: 15%;
  margin-right: -15%;
}

.factImage__img {
  width: 47%;
}

.factImage__imgMain {
  margin-left: -10%;
  width: 86%;
}

.factImage.reversed .factImage__text {
  order: 2;
  width: 59.6%;
}

.factImage.reversed .factImage__textInner {
  left: -2%;
  width: 102%;
}

.factImage.reversed .factImage__text.len-2 .factImage__textInner:nth-child(2) {
  margin-left: -15%;
  margin-right: 15%;
}

.factImage.reversed .factImage__img {
  order: 1;
  width: 40.4%;
  text-align: right;
}

.factImage.reversed .factImage__imgMain {
  margin-left: 0;
  width: 100%;
}

@media (max-width: 1199px) {
  .factImage__textInner {
    border-radius: 14px;
    padding: var(--padding);
  }

  .factImage__textInner p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .factsList {
    gap: var(--gap-4);
  }

  .factImage {
    margin-top: 0 !important;
  }

  .factImage__text {
    gap: var(--gap-4);
    width: 100%;
  }

  .factImage__textInner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    margin-top: 40px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 30px var(--gap) 12px;
  }

  .factImage__textEmoji {
    display: flex;
  }

  .factImage__img {
    display: none;
  }

  .factImage.reversed .factImage__text {
    width: 100%;
  }

  .factImage.reversed .factImage__textInner {
    left: 0;
    width: 100%;
  }

  .factImage.reversed .factImage__text.len-2 .factImage__textInner:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
  }

  .factImage.reversed .factImage__img {
    width: 100%;
  }
}

.factsSlider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.factsSlider .tns-outer {
  width: 100%;
}

.factsSlider .tns-ovh {
  overflow: visible;
}

.factsSlider__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: var(--gap-2);
}

.factsSlider__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: 20px;
  background: var(--background-main-transparent);
  width: 100%;
  height: 100%;
}

.factsSlider__navBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--text-main-reverse);
  cursor: pointer;
  transition: var(--transition);
}

.factsSlider__navBtn:hover {
  color: var(--text-secondary);
}

.factsSlider__navBtn:disabled {
  color: var(--text-main-reverse);
  cursor: default;
}

.factsSlide {
  opacity: 0;
  transition: var(--transition-long);
}

.factsSlide__inner {
  display: flex;
  align-items: flex-start;
  border-radius: 40px;
  background: var(--background-main-reverse);
  padding: 20px;
}

.factsSlide__text {
  padding-right: 40px;
  width: 56%;
}

.factsSlide__text p {
  margin: 0 0 20px;
  line-height: 26px;
}

.factsSlide__text p:last-child {
  margin-bottom: 0;
}

.factsSlide__img {
  width: 34%;
  max-width: 354px;
}

.factsSlide__imgInner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
  height: 0;
  max-width: 100%;
}

.factsSlide__imgInner img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.factsSlide.tns-slide-active {
  opacity: 1;
}

@media (max-width: 1199px) {
  .factsSlide__text {
    width: calc(100% - 354px);
  }

  .factsSlide__img {
    width: 354px;
  }
}

@media (max-width: 991px) {
  .factsSlide__text {
    width: calc(100% - 250px);
    font-size: 16px;
    line-height: 26px;
  }

  .factsSlide__img {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .factsSlide__text {
    width: calc(100% - 150px);
  }

  .factsSlide__text__inner {
    border-radius: 30px;
  }

  .factsSlide__img {
    width: 150px;
  }
}

@media (max-width: 567px) {
  .factsSlider__nav {
    gap: 47px;
  }

  .factsSlider__nav::before {
    display: none;
  }

  .factsSlider__navBtn {
    border-radius: 50%;
    background: var(--background-main-transparent);
  }

  .factsSlide__inner {
    flex-direction: column;
    padding: var(--gap) var(--gap) var(--gap-3);
  }

  .factsSlide__text {
    order: 2;
    padding-right: 0;
    width: 100%;
  }

  .factsSlide__img {
    order: 1;
    margin: calc(var(--gap) * -1) calc(var(--gap) * -1) var(--gap-3);
    width: calc(100% + var(--gap) * 2);
    max-width: none;
  }

  .factsSlide__imgInner {
    padding-top: 58%;
  }
}

.langPicker .picker__toggleBtn {
  border-radius: 19px;
  background: var(--background-muted-lighter);
}

.langPicker .picker__toggleBtnInner {
  display: inline-flex;
  align-items: center;
  padding: 3px;
}

.langPicker .picker__toggleBtn .icon {
  right: 10px;
  margin-top: -9px;
  font-size: 18px;
  color: var(--text-main-reverse);
}

.langPicker .picker__active {
  overflow: hidden;
  padding: 0;
  min-height: 0;
}

.langPicker .picker__active img {
  width: 30px;
}

.langPicker .picker__list {
  left: auto;
  right: 0;
  border-radius: 23px 0 23px 23px;
  background: var(--background-muted-lighter);
}

.langPicker .picker__listInner {
  scrollbar-color: #DFDFDF var(--background-muted-lighter);
}

.langPicker .picker__listInner::-webkit-scrollbar-thumb {
  border-color: var(--background-muted-lighter);
}

.langPicker .picker__listInner::-webkit-scrollbar-track {
  background: var(--background-muted-lighter);
}

.langPicker .picker__element {
  min-height: 48px;
  color: var(--text-main);
}

.langPicker .picker__element:hover,
.langPicker .picker__element.active {
  background: var(--background-main);
}

.langPicker.picker.opened .picker__toggleBtn {
  border-radius: 19px 19px 0 0;
}

.reviewsSlider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviewsSlider .tns-outer {
  width: 100%;
}

.reviewsSlider .tns-ovh {
  overflow: visible;
}

.reviewsSlider__inner {
  display: flex;
}

.reviewsSlider__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: var(--gap-2);
}

.reviewsSlider__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: 20px;
  background: var(--background-main-transparent);
  width: 100%;
  height: 100%;
}

.reviewsSlider__navBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--text-main-reverse);
  cursor: pointer;
  transition: var(--transition);
}

.reviewsSlider__navBtn:hover {
  color: var(--text-secondary);
}

.reviewsSlider__navBtn:disabled {
  color: var(--text-main-reverse);
  cursor: default;
}

.reviewsSlide {
  transition: var(--transition-long);
}

.reviewsSlide__inner {
  position: relative;
  border-radius: 20px;
  background: var(--background-main-reverse);
  overflow: hidden;
  padding: 73px 32px 32px;
  height: 100%;
}

.reviewsSlide__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--background-black-1);
  width: 100%;
  height: 40px;
}

.reviewsSlide__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  width: 100%;
}

.reviewsSlide__img {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
}

.reviewsSlide__info {
  width: 100%;
}

.reviewsSlide__name {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
}

.reviewsSlide__country,
.reviewsSlide__using {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.reviewsSlide__country {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  width: 100%;
}

.reviewsSlide__country img {
  width: 24px;
}

.reviewsSlide__message {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 991px) {
  .reviewsSlider__nav {
    margin-top: 12px;
  }

  .reviewsSlider__navBtn {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .reviewsSlide__inner {
    padding: 60px var(--padding) var(--padding);
  }

  .reviewsSlide__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background: var(--background-black-1);
    width: 100%;
    height: 40px;
  }

  .reviewsSlide__top {
    margin-bottom: 24px;
  }

  .reviewsSlide__img {
    width: 86px;
    height: 86px;
  }

  .reviewsSlide__name {
    font-size: 18px;
    line-height: 26px;
  }

  .reviewsSlide__country,
  .reviewsSlide__using,
  .reviewsSlide__message {
    font-size: 16px;
  }

  .reviewsSlide__country {
    gap: 0;
  }
}

.footer {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 50px 0 40px;
  width: 100%;
}

.footer .container {
  position: relative;
}

.footer .picker {
  position: absolute;
  bottom: -10px;
  right: var(--padding);
  z-index: 10;
}

.footer__menu {
  text-align: center;
}

.footer__menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-half);
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer__menu li {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: var(--text-main);
}

.footer__menu li::after {
  content: '/';
  margin-left: var(--gap-half);
}

.footer__menu li:last-child::after {
  display: none;
}

.footer__menu li a {
  text-decoration: none;
  color: inherit;
}

.footer__menu li a:hover {
  color: var(--text-secondary);
}

.footer__info {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: var(--text-main);
}

.footer__info a {
  text-decoration: none;
  color: inherit;
}

.footer__info a:hover {
  color: var(--text-secondary);
}

.footer__copywrite {
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--text-main);
}

.footer .langPicker {
  height: 40px;
}

.footer .langPicker .picker__toggleBtn {
  border-radius: 10px;
  background: var(--background-cian-5);
  padding: 0 41px 0 20px;
}

.footer .langPicker .picker__toggleBtn .icon {
  right: 20px;
  transform: rotate(180deg);
}

.footer .langPicker .picker__active {
  font-size: 16px;
  line-height: 100%;
}

.footer .langPicker .picker__active img {
  display: none;
}

.footer .langPicker .picker__list {
  position: absolute;
  bottom: calc(100% - 10px);
  left: auto;
  right: 0;
  border-radius: 10px 10px 0 0;
  background: var(--background-muted-lighter);
}

.footer .langPicker.opened .picker__toggleBtn {
  border-radius: 0 0 10px 10px;
  background: var(--background-muted-lighter);
}

.footer .langPicker.opened .picker__toggleBtn .icon {
  color: var(--text-main);
  transform: rotate(0deg);
}

.footer .langPicker.opened .picker__active {
  color: var(--text-main);
}

.footer .langPicker.opened .picker__list {
  top: auto;
  bottom: 100%;
}

@media (max-width: 991px) {
  .footer {
    padding: var(--gap-3) 0;
  }

  .footer .container {
    display: flex;
    flex-direction: column;
  }

  .footer .picker {
    display: inline-flex;
    position: relative;
    top: 0;
    right: auto;
    bottom: auto;
    margin-left: auto;
    margin-bottom: var(--padding);
    width: auto;
  }

  .footer__menu ul {
    flex-direction: column;
  }

  .footer__menu li {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }

  .footer__menu li::after {
    display: none;
  }

  .footer__info {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }

  .footer__copywrite {
    margin: 50px 0 0;
    font-size: 14px;
    font-weight: 400;
  }
}

.header {
  width: 100%;
}

.header .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: var(--gap-2);
  height: var(--header-height);
}

.header .logo {
  margin-right: auto;
  width: 223px;
}

.header .langPicker {
  margin-bottom: 34px;
  width: 71px;
  height: 37px;
}

.header .langPicker .picker__active {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  min-height: 30px;
  font-size: 0;
}

.header .langPicker .picker__active img {
  -o-object-fit: cover;
  object-fit: cover;
  width: inherit;
  height: inherit;
  min-height: 30px;
}

@media (max-width: 991px) {
  .header .container {
    align-items: center;
    padding-bottom: 0;
    height: var(--header-height-mobile);
  }

  .header .logo {
    width: 154px;
  }

  .header .langPicker {
    margin-bottom: 0;
    width: 56px;
    height: 29px;
  }

  .header .langPicker .picker__toggleBtn {
    border-radius: 15px;
  }

  .header .langPicker .picker__toggleBtnInner {
    padding: 2px;
  }

  .header .langPicker .picker__toggleBtn .icon {
    right: 8px;
    margin-top: -7px;
    font-size: 14px;
  }

  .header .langPicker .picker__active {
    width: 24px;
    height: 24px;
    min-height: 24px;
  }

  .header .langPicker.opened .picker__toggleBtn {
    border-radius: 15px 15px 0 0;
  }
}

.factsSection1 {
  padding: 82px 0 35px;
}

.factsSection1 .container {
  display: flex;
  flex-direction: column;
}

.factsSection1__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 51px;
  text-transform: uppercase;
}

.factsSection1__title .primary {
  color: var(--text-violet);
}

.factsSection1__description {
  margin: var(--gap-half) 0 0;
  font-size: 32px;
  line-height: 37px;
}

.factsSection1 .factsList {
  margin-top: 22px;
}

.factsSection1 .factsList__fact2 .factImage__text {
  transform: translateY(-140px);
}

.factsSection1 .logo_gray {
  margin-top: -120px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .factsSection1 .logo_gray {
    width: 55%;
  }
}

@media (max-width: 991px) {
  .factsSection1 .factsList__fact2 {
    margin-top: 0;
  }

  .factsSection1 .factsList__fact2 .factImage__text {
    transform: translateY(0);
  }

  .factsSection1 .factsList__fact2 .factImage.reversed .factImage__text {
    width: 100%;
  }

  .factsSection1 .logo_gray {
    display: none;
  }
}

.factsSection2 {
  background: var(--background-gold-3);
  padding: 110px 0 0;
}

.factsSection2__title {
  margin: 0 0 var(--gap-3);
  font-weight: 700;
  font-size: 44px;
  line-height: 140%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  text-align: center;
}

.factsSection2__first {
  position: relative;
}

.factsSection2__pros {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: var(--gap-4) calc(100% - 250px * 2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.factsSection2__plus,
.factsSection2__minus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.factsSection2__plus .icon-plus,
.factsSection2__plus .icon-minus,
.factsSection2__minus .icon-plus,
.factsSection2__minus .icon-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: var(--gap-3);
  width: 44px;
  height: 44px;
  font-size: 32px;
  color: var(--text-main-reverse);
}

.factsSection2__plusTitle,
.factsSection2__minusTitle {
  margin: 0 0 12px;
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.factsSection2__plusText,
.factsSection2__minusText {
  margin: 0;
  width: 100%;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.factsSection2__plus {
  border-radius: 15px;
  background: rgba(240, 196, 25, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: var(--gap-2);
  max-width: calc(250px + var(--gap-2) * 2);
}

.factsSection2__plus .icon-plus {
  background: var(--background-cian-4);
}

.factsSection2__image {
  display: flex;
  justify-content: center;
  padding-top: calc(64px + var(--gap-3));
}

.factsSection2__imageCloud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 15px;
  background: var(--background-pink-4);
  width: 306px;
  height: 64px;
  max-width: 100%;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-align: center;
  transform: translateX(-50%);
}

.factsSection2__imageCloud::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  border-top-width: 16px;
  border-right-width: 12px;
  border-left-width: 12px;
  border-bottom-width: 0;
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--background-pink-4);
  transform: translateX(-50%);
}

.factsSection2__image img {
  max-width: 100%;
  width: 471px;
}

.factsSection2__cons {
  position: relative;
  border-radius: 230px 0 0 0;
  background: var(--background-pink-3);
  padding: 37px 0 79px 54px;
}

.factsSection2__cons::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--background-pink-3);
  width: 100vw;
  height: 100%;
}

.factsSection2__consTitle {
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-align: center;
}

.factsSection2__consList {
  display: flex;
  gap: var(--gap-3);
}

.factsSection2__minus {
  border: 1px solid var(--border-pink-5);
  border-radius: 30px;
  padding: 30px;
  width: 50%;
}

.factsSection2__minus .icon-minus {
  background: var(--background-pink-5);
}

@media (max-width: 1199px) {
  .factsSection2__minus {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .factsSection2 {
    padding-top: var(--gap-4);
  }

  .factsSection2__title {
    max-width: 250px;
    font-size: 26px;
    line-height: 100%;
    text-align: left;
  }

  .factsSection2__first {
    position: relative;
    padding-top: calc(44px + 38px);
  }

  .factsSection2__pros {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--gap-3);
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: var(--gap-3);
    width: 100%;
  }

  .factsSection2__plus .icon-plus,
  .factsSection2__plus .icon-minus,
  .factsSection2__minus .icon-plus,
  .factsSection2__minus .icon-minus {
    margin-bottom: 12px;
    width: 32px;
    height: 32px;
    font-size: 23px;
  }

  .factsSection2__plusTitle,
  .factsSection2__minusTitle {
    margin-bottom: var(--gap);
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
  }

  .factsSection2__plusText,
  .factsSection2__minusText {
    font-size: 16px;
    line-height: 160%;
  }

  .factsSection2__plus {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    width: calc(50% - var(--gap-3) / 2);
    max-width: none;
  }

  .factsSection2__image {
    margin-bottom: -5px;
    padding-top: 0;
  }

  .factsSection2__imageCloud {
    left: 0;
    border-radius: 15px;
    width: auto;
    height: 44px;
    min-width: 126px;
    max-width: 100%;
    font-size: 22px;
    transform: translateX(0);
  }

  .factsSection2__image img {
    width: 347px;
  }

  .factsSection2__cons {
    border-radius: 50px 0 0 0;
    margin: 0 calc(var(--padding) * -1);
    padding: 20px var(--padding);
  }

  .factsSection2__cons::after {
    display: none;
  }

  .factsSection2__consTitle {
    margin: 0 0 var(--gap-3);
    font-size: 22px;
  }

  .factsSection2__consList {
    flex-direction: column;
    gap: var(--gap);
  }

  .factsSection2__minus {
    padding: 15px;
    width: 100%;
  }

  .factsSection2__minus:nth-child(1) {
    border-radius: 40px 15px 15px 15px;
  }

  .factsSection2__minus .icon-minus {
    margin-bottom: var(--gap);
  }
}

.factsSliderSection1 {
  padding: 82px 0 100px;
}

.factsSliderSection1__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  transform: translateX(-50%);
}

.factsSliderSection1__background .round {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.factsSliderSection1__background .round:nth-child(1) {
  top: 58%;
  left: 54%;
  background: var(--background-cian-2);
  width: 347px;
  height: 290px;
  opacity: 0.7;
}

.factsSliderSection1__background .round:nth-child(2) {
  top: 65%;
  left: 70%;
  background: var(--background-gold-2);
  width: 284px;
  height: 215px;
  opacity: 0.7;
}

.factsSliderSection1__background .round:nth-child(3) {
  top: 20%;
  left: 66%;
  background: var(--background-pink-2);
  width: 399px;
  height: 370px;
  opacity: 0.7;
}

.factsSliderSection1__background .round:nth-child(4) {
  top: 49%;
  left: 15%;
  background: var(--background-cian-3);
  width: 311px;
  height: 311px;
  opacity: 0.7;
}

.factsSliderSection1 .container {
  position: relative;
  z-index: 10;
}

.factsSliderSection1__title {
  margin-bottom: 40px;
  font-size: 44px;
  font-weight: 700;
  line-height: 51px;
  text-transform: uppercase;
}

.factsSliderSection1__slideTitle {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
}

.factsSliderSection1__slideTitle .icon {
  width: 50px;
  min-width: 50px;
}

.factsSliderSection1 .factsSlide:nth-child(1) .factsSliderSection1__slideTitle,
.factsSliderSection1 .factsSlide:nth-child(5) .factsSliderSection1__slideTitle {
  color: var(--text-secondary);
}

.factsSliderSection1 .factsSlide:nth-child(2) .factsSliderSection1__slideTitle {
  color: var(--text-cian-1);
}

.factsSliderSection1 .factsSlide:nth-child(3) .factsSliderSection1__slideTitle {
  color: var(--text-primary);
}

.factsSliderSection1 .factsSlide:nth-child(4) .factsSliderSection1__slideTitle {
  color: var(--text-cian-2);
}

@media (max-width: 991px) {
  .factsSliderSection1 {
    padding: 44px 0 var(--gap);
  }

  .factsSliderSection1__title {
    margin-bottom: var(--gap-4);
    font-size: 26px;
    line-height: 34px;
  }

  .factsSliderSection1__slideTitle {
    gap: 18px;
    font-size: 20px;
    line-height: 29px;
  }

  .factsSliderSection1__slideTitle .icon {
    width: 40px;
    min-width: 40px;
  }
}

.readyToTrySection1 {
  overflow: hidden;
  padding: 140px 0 98px;
}

.readyToTrySection1 .container {
  position: relative;
  z-index: 10;
}

.readyToTrySection1__title {
  position: relative;
  z-index: 10;
  margin: 0 0 var(--gap-4);
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  text-transform: uppercase;
}

.readyToTrySection1__button {
  position: relative;
  z-index: 5;
}

.readyToTrySection1__button .button {
  position: relative;
  z-index: 10;
  width: 230px;
}

.readyToTrySection1__button img {
  display: none;
  position: absolute;
  top: -30%;
  left: 50%;
  z-index: 5;
  max-width: none;
  transform: translate(-50%, -50%);
}

.readyToTrySection1__img {
  position: absolute;
  top: 50%;
  left: 43%;
  width: auto;
  height: auto;
  max-width: 586px;
  max-height: 100%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .readyToTrySection1 {
    overflow: hidden;
    padding: 24px 0 70px;
  }

  .readyToTrySection1__title {
    margin-bottom: 85px;
    font-size: 22px;
    line-height: 100%;
  }

  .readyToTrySection1__button {
    display: flex;
    justify-content: center;
  }

  .readyToTrySection1__button .button {
    height: 56px;
  }

  .readyToTrySection1__button img {
    display: block;
    width: 375px;
  }

  .readyToTrySection1__img {
    display: none;
  }
}

.heroSection1__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  transform: translateX(-50%);
}

.heroSection1__background .round {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.heroSection1__background .round:nth-child(1),
.heroSection1__background .round:nth-child(2) {
  background: var(--background-cian-2);
  width: 255px;
  height: 255px;
}

.heroSection1__background .round:nth-child(1) {
  top: 60%;
  left: 45%;
  opacity: 0.4;
}

.heroSection1__background .round:nth-child(2) {
  top: 43%;
  left: 70%;
  opacity: 0.5;
}

.heroSection1__background .round:nth-child(3) {
  top: -18%;
  left: 44%;
  background: var(--background-gold-1);
  opacity: 0.4;
  width: 516px;
  height: 237px;
}

.heroSection1__background .round:nth-child(4),
.heroSection1__background .round:nth-child(5) {
  background: var(--background-pink-1);
  opacity: 0.5;
  width: 199px;
  height: 131px;
}

.heroSection1__background .round:nth-child(4) {
  top: 70%;
  left: 25%;
}

.heroSection1__background .round:nth-child(5) {
  top: 21%;
  left: 15%;
}

.heroSection1__background .round:nth-child(6),
.heroSection1__background .round:nth-child(7) {
  background: var(--background-primary);
  width: 239px;
  height: 81px;
}

.heroSection1__background .round:nth-child(6) {
  top: 80%;
  left: 73%;
  opacity: 0.4;
  transform: rotate(9.43deg);
}

.heroSection1__background .round:nth-child(7) {
  top: 41%;
  left: 48%;
  opacity: 0.5;
}

.heroSection1 .container {
  display: flex;
  gap: var(--gap);
  position: relative;
  z-index: 10;
}

.heroSection1__left {
  width: calc(49% - var(--gap));
}

.heroSection1__right {
  width: 51%;
}

.heroSection1__title {
  margin: 5vh 0 0;
  max-width: 452px;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.heroSection1__description {
  margin: var(--gap) 0 0;
  font-size: 32px;
  line-height: 37px;
}

.heroSection1__textWithHeart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.heroSection1__textWithHeart .icon {
  font-size: 70px;
  min-width: 70px;
  color: var(--text-primary);
}

.heroSection1__textWithHeart p {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
}

.heroSection1__leftButton {
  margin-top: 33px;
}

.heroSection1__leftButton .button {
  width: 231px;
}

.heroSection1__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: var(--gap-2);
}

.heroSection1__ratingBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: var(--background-cian-1);
  width: 128px;
  height: 128px;
  min-width: 128px;
}

.heroSection1__ratingNumber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-main-reverse);
  border-radius: 50%;
  width: 29px;
  height: 29px;
  min-width: 29px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.2px;
  color: var(--text-main-reverse);
}

.heroSection1__ratingStars {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.heroSection1__ratingInstalls {
  margin: 9px 0 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
  color: var(--text-main-reverse);
}

.heroSection1__ratingText p {
  margin: 0;
  line-height: 24px;
}

.heroSection1__ratingTiles {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--gap);
}

.heroSection1__ratingTiles img {
  width: 77px;
}

.heroSection1__dialog {
  position: relative;
  margin-top: var(--gap-3);
}

.heroSection1__dialogCloud {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  border-radius: 8px;
  background: var(--background-violet);
  padding: var(--gap-half) 20px;
  max-width: 50%;
  min-height: 55px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.25px;
  color: var(--text-main-reverse);
}

.heroSection1__dialogCloud::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  border-top-width: 12px;
  border-right-width: 8px;
  border-left-width: 8px;
  border-bottom-width: 0;
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--background-violet);
}

.heroSection1__dialogCloud.left {
  left: 1%;
  top: 13%;
}

.heroSection1__dialogCloud.left::after {
  left: 70%;
}

.heroSection1__dialogCloud.right {
  right: 7%;
  top: 11%;
}

.heroSection1__dialogCloud.right::after {
  left: 35%;
}

.heroSection1__dialog img {
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .heroSection1__title {
    font-size: 32px;
    line-height: 42px;
  }

  .heroSection1__description {
    margin: var(--gap-half) 0 0;
    font-size: 20px;
    line-height: 23px;
  }

  .heroSection1__textWithHeart .icon {
    display: none;
  }

  .heroSection1__textWithHeart p {
    font-size: 16px;
    line-height: 23px;
  }

  .heroSection1__ratingBox {
    border-radius: 17px;
    width: 67px;
    height: 67px;
    min-width: 67px;
  }

  .heroSection1__ratingNumber {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 7px;
    font-weight: 400;
    line-height: 9px;
    letter-spacing: -0.1px;
  }

  .heroSection1__ratingStars img {
    width: 10px;
  }

  .heroSection1__ratingInstalls {
    margin-top: var(--gap-half);
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.16px;
  }

  .heroSection1__ratingText p {
    font-size: 14px;
    line-height: 19px;
    color: var(--text-muted);
  }

  .heroSection1__ratingTiles {
    display: none;
  }

  .heroSection1__dialogCloud {
    padding: var(--gap-half) var(--gap);
    min-height: 33px;
    font-size: 11px;
    font-weight: 500;
    line-height: 13px;
    letter-spacing: -0.15px;
  }
}

@media (max-width: 767px) {
  .heroSection1__background {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    transform: translateX(-50%);
  }

  .heroSection1__background .round {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
  }

  .heroSection1__background .round:nth-child(1) {
    width: 112px;
    height: 112px;
    top: 40%;
    left: 35%;
    opacity: 0.5;
  }

  .heroSection1__background .round:nth-child(2) {
    display: none;
  }

  .heroSection1__background .round:nth-child(3) {
    top: 35%;
    left: 60%;
    width: 116px;
    height: 72px;
    opacity: 0.4;
  }

  .heroSection1__background .round:nth-child(4),
  .heroSection1__background .round:nth-child(5) {
    display: none;
  }

  .heroSection1__background .round:nth-child(6) {
    width: 110px;
    height: 97px;
    top: 38%;
    left: 10%;
    opacity: 0.2;
  }

  .heroSection1__background .round:nth-child(7) {
    display: none;
  }

  .heroSection1 .container {
    align-items: center;
    flex-direction: column;
  }

  .heroSection1__left,
  .heroSection1__right {
    width: 100%;
    max-width: 500px;
  }

  .heroSection1__left {
    margin-bottom: 28px;
  }

  .heroSection1__leftButton {
    display: flex;
    justify-content: center;
    margin-top: 39px;
  }
}

@media (max-width: 399px) {
  .heroSection1__dialogCloud {
    padding: var(--gap-half) var(--gap);
    min-height: 33px;
    font-size: 11px;
    font-weight: 500;
    line-height: 13px;
    letter-spacing: -0.15px;
  }
}

.factsSection3__title {
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.factsSection3__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.factsSection3__fact {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-2);
  position: relative;
  border-radius: 30px;
  padding: 30px;
  width: calc(50% - var(--gap) / 2);
}

.factsSection3__fact:nth-child(4n + 1) {
  background: var(--background-cian-7);
}

.factsSection3__fact:nth-child(4n + 2) {
  background: var(--background-pink-6);
}

.factsSection3__fact:nth-child(4n + 3) {
  background: var(--background-gold-4);
}

.factsSection3__fact:nth-child(4n + 4) {
  background: var(--background-violet-1);
}

.factsSection3__fact p {
  margin: 0;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.3px;
}

.factsSection3__fact img {
  flex-shrink: 0;
  width: 150px;
  height: auto;
}

.factsSection3__bottomText {
  position: relative;
  margin-top: 64px;
  padding: 48px 0;
}

.factsSection3__bottomText::before,
.factsSection3__bottomText::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 224px;
  height: 2px;
  background: var(--background-gray-3);
  transform: translateX(-50%);
}

.factsSection3__bottomText::before {
  top: 0;
}

.factsSection3__bottomText::after {
  bottom: 0;
}

.factsSection3__bottomText p {
  margin: 0;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.3px;
}

@media (max-width: 991px) {
  .factsSection3__title {
    margin-bottom: 32px;
    font-size: 22px;
  }

  .factsSection3__fact {
    border-radius: 20px;
    padding: 15px;
  }

  .factsSection3__fact p {
    margin: 0;
    font-size: 15px;
  }

  .factsSection3__fact img {
    width: 90px;
  }

  .factsSection3__bottomText {
    padding: 24px 0;
  }

  .factsSection3__bottomText p {
    font-size: 16px;
  }
}

.reviewsSection1__title,
.reviewsSection1__description {
  max-width: 884px;
}

.reviewsSection1__title {
  margin: 0 0 37px;
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  text-transform: uppercase;
}

.reviewsSection1__description {
  margin: 0 0 150px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
}

.reviewsSection1__slider {
  background: url("../img/sections/reviewsSection1/bg.jpg") no-repeat center;
  background-size: cover;
  padding: 82px 0 25px;
}

@media (max-width: 991px) {
  .reviewsSection1__title {
    margin: 0 0 32px;
    font-size: 22px;
  }

  .reviewsSection1__description {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .reviewsSection1__slider {
    padding: 44px 0 12px;
  }
}

.textSection2__title {
  margin: 0 0 var(--gap-3);
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.textSection2__text {
  border-radius: 30px;
  background: var(--background-gray-3);
  padding: 30px;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.3px;
}

.textSection2__text p {
  margin: 0 0 var(--gap-4);
}

.textSection2__text p:last-child {
  margin: 0;
}

.textSection2.transparent .textSection2__text {
  background: transparent;
  padding: 0;
}

@media (max-width: 991px) {
  .textSection2__title {
    font-size: 26px;
  }

  .textSection2__text {
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    line-height: 22px;
  }

  .textSection2__text p {
    margin: 0 0 var(--gap-3);
  }

  .textSection2__text p:last-child {
    margin: 0;
  }
}

.textSection1 {
  position: relative;
  background: var(--background-cian-6);
}

.textSection1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  border-radius: 0 0 0 200px;
  background: var(--background-pink-3);
  width: 50%;
  height: 100%;
}

.textSection1 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-2);
  position: relative;
  z-index: 10;
  padding-top: 128px;
  padding-bottom: 102px;
}

.textSection1 .container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  border-radius: 0 0 0 200px;
  background: var(--background-pink-3);
  width: 59%;
  height: 100%;
}

.textSection1__left,
.textSection1__right {
  position: relative;
  z-index: 10;
}

.textSection1__left {
  width: 42%;
  max-width: 446px;
}

.textSection1__title {
  margin: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.textSection1__title span {
  color: var(--text-pink-1);
}

.textSection1__right {
  width: 58%;
  max-width: 574px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.3px;
  color: var(--text-black-1);
}

.textSection1__right p {
  margin: 0;
}

.textSection1.transparent {
  background: transparent;
}

.textSection1.transparent::after,
.textSection1.transparent .container::after {
  display: none;
}

.textSection1.transparent .textSection1__title {
  font-size: 44px;
  line-height: 100%;
}

.textSection1.transparent .textSection1__title span {
  color: var(--text-violet);
}

.textSection1.transparent .textSection1__right {
  font-size: 20px;
  line-height: 160%;
}

@media (max-width: 1199px) {
  .textSection1::after,
  .textSection1 .container::after {
    border-radius: 0 0 0 100px;
  }
}

@media (max-width: 991px) {
  .textSection1::after,
  .textSection1 .container::after {
    display: none;
  }

  .textSection1 .container {
    flex-direction: column;
    gap: 0;
    padding-top: var(--padding);
    padding-bottom: var(--gap-4);
  }

  .textSection1__left,
  .textSection1__right {
    width: 100%;
    max-width: none;
  }

  .textSection1__left {
    margin-bottom: var(--gap-3);
  }

  .textSection1__title {
    max-width: 262px;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
  }

  .textSection1__right p {
    font-size: 14px;
    line-height: 22px;
  }

  .textSection1.transparent .textSection1__title {
    font-size: 26px;
  }

  .textSection1.transparent .textSection1__right {
    font-size: 16px;
  }
}

.faqSection1 {
  padding: 82px 0 126px;
}

.faqSection1__title {
  margin: 0 0 70px;
  font-size: 44px;
  font-weight: 700;
  line-height: 51px;
  text-transform: uppercase;
}

.faqSection1__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faqSection1__list .spoiler {
  width: 100%;
}

.faqSection1__bottomText {
  margin: 80px 0 0;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.3px;
}

.faqSection1__button {
  display: flex;
  justify-content: center;
  margin-top: 78px;
}

.faqSection1__button .button {
  width: 230px;
}

@media (max-width: 991px) {
  .faqSection1 {
    padding: var(--gap-4) 0 56px;
  }

  .faqSection1__title {
    margin: 0 0 var(--gap-4);
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
  }

  .faqSection1__list {
    gap: var(--gap-4);
  }

  .faqSection1__button {
    margin-top: 48px;
  }

  .faqSection1__bottomText {
    font-size: 16px;
    line-height: 22px;
  }
}

.textSection3 {
  background: var(--background-cian-6);
  overflow: hidden;
}

.textSection3 .container {
  display: flex;
  gap: 36px;
}

.textSection3__left,
.textSection3__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 513px;
}

.textSection3__left {
  padding: var(--gap-4) var(--gap-4) var(--gap-4) 0;
  width: 41%;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.3px;
}

.textSection3__left p {
  margin: 0 0 var(--gap-3);
}

.textSection3__left p:last-child {
  margin: 0;
}

.textSection3__right {
  border-radius: 0 0 0 250px;
  background: var(--background-pink-3);
  padding: var(--gap-4) 54px var(--gap-4) var(--gap-4);
  width: calc(59% - 36px);
}

.textSection3__right::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--background-pink-3);
  width: 100vw;
  height: 100%;
}

.textSection3__rightInner {
  position: relative;
  margin-left: auto;
}

.textSection3__rightInner .button {
  position: relative;
  z-index: 10;
  padding: 0 var(--gap-3);
  min-width: 280px;
}

.textSection3__rightInner img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 467px;
  max-width: none;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .textSection3 .container {
    display: block;
  }

  .textSection3__left,
  .textSection3__right {
    min-height: 0;
  }

  .textSection3__left {
    padding: var(--gap-3) 0;
    width: 100%;
    text-align: center;
  }

  .textSection3__right {
    justify-content: center;
    border-radius: 0;
    margin: 0 calc(var(--padding) * -1);
    padding: var(--gap-3) var(--padding);
    width: calc(100% + var(--padding) * 2);
    min-height: 290px;
  }

  .textSection3__right::after {
    display: none;
  }

  .textSection3__rightInner {
    margin: auto;
  }
}

.picker {
  position: relative;
  height: 70px;
}

.picker__toggleBtn {
  position: relative;
  border-radius: 24px;
  border: 0;
  background: var(--background-main-reverse);
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.picker__toggleBtnInner {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.picker__toggleBtn > .icon {
  position: absolute;
  top: 50%;
  right: 27px;
  margin-top: -7px;
  font-size: 14px;
  transition: var(--transition);
}

.picker__placeholder {
  font: 22px 'Gilroy', sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 0 68px 0 20px;
  width: 100%;
  height: 100%;
  color: var(--text-main);
  transition: var(--transition);
}

.picker__list {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  border-radius: 0 0 24px 24px;
  background: var(--background-main-reverse);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  min-width: 200px;
  max-height: 0;
}

.picker__listInner {
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: inherit;
  scrollbar-color: #DFDFDF #EEEEEE;
}

.picker__listInner::-webkit-scrollbar {
  width: 12px;
}

.picker__listInner::-webkit-scrollbar-thumb {
  border: 3px solid #EEEEEE;
  border-radius: 12px;
  background: #DFDFDF;
}

.picker__listInner::-webkit-scrollbar-track {
  background: #EEEEEE;
}

.picker__element,
.picker__active {
  font: 22px 'Gilroy', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap);
  border: 0;
  background: transparent;
  padding: 8px 20px;
  min-height: 70px;
  text-decoration: none;
  color: var(--text-main-reverse);
  cursor: pointer;
  transition: var(--transition);
}

.picker__element .icon,
.picker__active .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.picker__element:hover,
.picker__element.active {
  background: var(--background-lightgray);
}

.picker__active {
  padding: 0 68px 0 20px;
}

.picker.opened .picker__toggleBtn {
  border-radius: 24px 24px 0 0;
  transition: var(--transition);
}

.picker.opened .picker__toggleBtn .icon {
  transform: rotate(180deg);
}

.picker.opened .picker__placeholder {
  opacity: 0.4;
}

.picker.opened .picker__list {
  top: 100%;
  visibility: visible;
  opacity: 1;
  max-height: 300px;
  transition: var(--transition);
}

.picker.selected .picker__placeholder {
  display: none;
}

@media (max-width: 991px) {
  .picker {
    height: 50px;
  }

  .picker__toggleBtn {
    border-radius: 15px;
  }

  .picker__toggleBtn > .icon {
    right: 15px;
    margin-top: -5px;
    font-size: 10px;
  }

  .picker__placeholder {
    padding: 0 44px 0 14px;
    font-size: 18px;
  }

  .picker__list {
    border-radius: 0 0 15px 15px;
  }

  .picker__element,
  .picker__active {
    padding: 4px 14px;
    min-height: 50px;
    font-size: 18px;
  }

  .picker.opened .picker__toggleBtn {
    border-radius: 15px 15px 0 0;
  }
}

.spoiler__head {
  display: flex;
  align-items: center;
  gap: var(--gap-2);
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.spoiler__head.canToggle {
  cursor: pointer;
}

.spoiler__head .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spoiler__head .icon-check {
  background: var(--background-cian-4);
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
  color: var(--text-main-reverse);
}

.spoiler__head .icon-arr_down {
  border-radius: 50%;
  background: var(--background-gray-1);
  margin-left: auto;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--text-gray-1);
  transition: var(--transition);
}

.spoiler__content {
  height: 0;
  overflow: hidden;
}

.spoiler__contentInner {
  opacity: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: var(--transition);
}

.spoiler__contentInner p {
  margin: var(--gap-3) 0;
}

.spoiler.opened .spoiler__head .icon-arr_down {
  transform: rotate(180deg);
}

.spoiler.opened .spoiler__content {
  height: auto;
}

.spoiler.opened .spoiler__contentInner {
  opacity: 1;
  padding: 25px 0 var(--gap-2);
}

@media (max-width: 991px) {
  .spoiler__head {
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
  }

  .spoiler__head .icon-check {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 10px;
  }

  .spoiler__contentInner {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .spoiler__contentInner p {
    margin: var(--gap-2) 0;
  }

  .spoiler.opened .spoiler__contentInner {
    opacity: 1;
    padding: var(--gap-2) 0;
  }
}

.cmtPage .heroSection1 {
  margin-bottom: 136px;
}

.cmtPage .heroSection1__left {
  width: calc(51% - var(--gap));
}

.cmtPage .heroSection1__title {
  max-width: none;
  font-weight: 700;
  font-size: 54px;
  line-height: 130%;
}

.cmtPage .heroSection1__textWithHeart {
  margin-top: 30px;
}

.cmtPage .heroSection1__textWithHeart .icon {
  display: none;
}

.cmtPage .heroSection1__textWithHeart p {
  font-size: 20px;
  line-height: 147%;
}

.cmtPage .heroSection1__leftButton {
  margin-top: 40px;
}

.cmtPage .heroSection1__leftButton .button {
  width: auto;
  height: 66px;
  min-width: 282px;
}

.cmtPage .heroSection1__right {
  width: 49%;
}

.cmtPage .heroSection1__dialog {
  margin-top: 53px;
}

.cmtPage .heroSection1__dialogCloud {
  min-height: 45px;
  font-weight: 500;
  font-size: 15.25px;
  line-height: 100%;
  letter-spacing: -0.21px;
}

.cmtPage .heroSection1__dialogCloud.left {
  left: 36%;
  top: 45.5%;
}

.cmtPage .heroSection1__dialogCloud.right {
  right: 29%;
  top: 57%;
}

.cmtPage .heroSection1__dialog img {
  width: 119%;
  max-width: 119%;
}

.cmtPage .factsSection1 {
  background: url("../img/sections/factsSection/bg_01.svg") no-repeat;
  background-position-x: calc(60% - 5vw);
  background-position-y: 135px;
  padding-bottom: 0;
}

.cmtPage .factsSection1__title {
  margin-bottom: 30px;
  max-width: 580px;
}

.cmtPage .factsSection1 .factsList {
  gap: 50px;
}

.cmtPage .factsSection1 .factImage {
  gap: 50px;
}

.cmtPage .factsSection1 .factImage__text {
  justify-content: flex-start;
  width: calc(59% - 50px);
  transform: translateY(0) !important;
}

.cmtPage .factsSection1 .factImage__textInner {
  background: var(--background-gray-3);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  margin: 0 !important;
}

.cmtPage .factsSection1 .factImage__textInner p {
  font-size: 20px;
  line-height: 160%;
}

.cmtPage .factsSection1 .factImage__img {
  width: 41%;
}

.cmtPage .factsSection1 .factImage__imgMain {
  margin-left: 0;
  width: 100%;
}

.cmtPage .factsSection1 .factImage.reversed .factImage__textInner {
  left: 0;
  width: 100%;
}

.cmtPage .factsSection1 .logo_gray {
  margin-top: 9px;
}

.cmtPage .factsSection2__pros {
  padding-left: 75px;
}

.cmtPage .factsSection2__imageCloud {
  left: 49%;
}

.cmtPage .factsSection2__plus:nth-child(2) {
  margin-left: -75px;
}

.cmtPage .factsSection2__plus:nth-child(4),
.cmtPage .factsSection2__plus:nth-child(5) {
  margin-left: -62px;
}

.cmtPage .sectionAlternative .container {
  padding-top: 155px;
  padding-bottom: 133px;
}

.cmtPage .sectionAlternativeText {
  margin: 54px 0 100px;
}

.cmtPage .factsSection3 {
  margin-bottom: 64px;
}

.cmtPage .factsSection3__fact:nth-child(1) img {
  margin-top: -80px;
  margin-right: -38px;
  width: 169px;
}

.cmtPage .factsSection3__fact:nth-child(4) img {
  margin-right: -24px;
  width: 136px;
  transform: translateY(55px);
}

.en .cmtPage .textSection2__text p {
  margin: 0 !important;
}

@media (max-width: 1199px) {
  .cmtPage .heroSection1__dialog {
    transform: translateX(-10%);
  }
}

@media (max-width: 991px) {
  .cmtPage .heroSection1 {
    margin-bottom: 60px;
  }

  .cmtPage .heroSection1__title {
    font-size: 30px;
    line-height: 130%;
    letter-spacing: -0.3px;
  }

  .cmtPage .heroSection1__textWithHeart {
    margin-top: 30px;
  }

  .cmtPage .heroSection1__textWithHeart p {
    font-size: 16px;
    line-height: 22px;
  }

  .cmtPage .heroSection1__dialogCloud {
    min-height: 33px;
    font-size: 11.15px;
    line-height: 100%;
    letter-spacing: -0.15px;
  }

  .cmtPage .heroSection1__dialogCloud.left {
    left: 36%;
    top: 45.5%;
  }

  .cmtPage .heroSection1__dialogCloud.right {
    right: 29%;
    top: 57%;
  }

  .cmtPage .factsSection1__title {
    max-width: 320px;
    font-size: 26px;
    line-height: 100%;
  }

  .cmtPage .factsSection1 .factsList {
    gap: var(--gap-3);
  }

  .cmtPage .factsSection1 .factImage {
    gap: var(--gap-3);
  }

  .cmtPage .factsSection1 .factImage__img {
    display: unset;
  }

  .cmtPage .factsSection1 .factImage__textInner {
    padding: 12px var(--gap);
  }

  .cmtPage .factsSection1 .factImage__textInner p {
    font-size: 16px;
    line-height: 160%;
  }

  .cmtPage .factsSection1 .logo_gray {
    display: unset;
    margin: var(--gap-2) auto 0;
    width: 100%;
    max-width: 347px;
  }

  .cmtPage .textSection1 .container {
    padding-top: var(--gap-4);
    padding-bottom: var(--gap-4);
  }

  .cmtPage .faqSection1__list {
    gap: var(--gap-3);
  }

  .cmtPage .faqSection1 .spoiler__head {
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
  }

  .cmtPage .faqSection1:not(.sectionBesonders) .faqSection1__bottomText {
    display: none;
  }

  .cmtPage .factsSection2__pros {
    padding-left: 0;
  }

  .cmtPage .factsSection2__imageCloud {
    left: 0;
  }

  .cmtPage .factsSection2__plus:nth-child(2),
  .cmtPage .factsSection2__plus:nth-child(4),
  .cmtPage .factsSection2__plus:nth-child(5) {
    margin-left: 0;
  }

  .cmtPage .sectionAlternativeText {
    margin: 0 0 var(--gap-4);
  }

  .cmtPage .factsSection3__fact:nth-child(1) img {
    margin-top: -37px;
    margin-right: -10px;
    width: 87px;
  }

  .cmtPage .factsSection3__fact:nth-child(4) img {
    align-self: flex-end;
    margin-right: -22px;
    width: 101px;
    transform: translateY(36px);
  }
}

@media (max-width: 767px) {
  .cmtPage .heroSection1 {
    overflow: hidden;
    margin-bottom: 24px;
  }

  .cmtPage .heroSection1__background .round:nth-child(1) {
    top: 81%;
    left: -14%;
    opacity: 1;
  }

  .cmtPage .heroSection1__background .round:nth-child(2) {
    display: unset;
    top: 59%;
    left: 70%;
    opacity: 0.3;
  }

  .cmtPage .heroSection1__background .round:nth-child(3) {
    display: none;
  }

  .cmtPage .heroSection1__background .round:nth-child(4) {
    display: unset;
    top: 66%;
    left: -9%;
  }

  .cmtPage .heroSection1__background .round:nth-child(5) {
    display: unset;
    top: 79%;
    left: 64%;
  }

  .cmtPage .heroSection1__left,
  .cmtPage .heroSection1__right {
    width: 100%;
  }

  .cmtPage .heroSection1__left {
    margin-bottom: 0;
  }

  .cmtPage .heroSection1__right {
    display: flex;
    justify-content: center;
  }

  .cmtPage .heroSection1__dialog {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 0 -14px;
    width: 500px;
    min-width: 500px;
    height: 380px;
    max-width: none;
    transform: translateX(0);
  }

  .cmtPage .heroSection1__dialogCloud {
    min-width: 120px;
  }

  .cmtPage .heroSection1__dialogCloud.left {
    left: 24%;
    top: 53%;
  }

  .cmtPage .heroSection1__dialogCloud.right {
    right: 37%;
    top: 68%;
  }

  .cmtPage .heroSection1__dialogCloud.right::after {
    left: 12%;
  }

  .cmtPage .heroSection1__dialog img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 480px;
    max-width: 480px;
    transform: translateX(-58%);
  }

  .cmtPage .factsSection1 {
    padding-top: 50px;
  }

  .cmtPage .factsSection1__title {
    margin-bottom: 4px;
  }

  .cmtPage .factsSection1 .factImage {
    flex-direction: column;
  }

  .cmtPage .factsSection1 .factImage__img {
    order: 1;
    display: unset;
    margin-left: auto;
    max-width: 100%;
  }

  .cmtPage .factsSection1 .factImage__text {
    order: 2;
    width: 100%;
  }

  .cmtPage .factsSection1 .factImage__textInner {
    padding: 12px var(--gap);
  }

  .cmtPage .factsSection1 .factImage__textInner p {
    font-size: 16px;
    line-height: 160%;
  }

  .cmtPage .factsSection1 .factImage.factsList__fact1 .factImage__img {
    width: 202px;
  }

  .cmtPage .factsSection1 .factImage.factsList__fact2 .factImage__img {
    margin-left: unset;
    width: 259px;
  }

  .cmtPage .factsSection3__fact {
    width: 100%;
  }
}

.newLevelPage .container {
  max-width: 1150px;
}

.newLevelPage .heroSection1 {
  padding-bottom: 80px;
}

.newLevelPage .heroSection1 .container {
  gap: var(--gap-3);
}

.newLevelPage .heroSection1__left {
  width: calc(52.5% - var(--gap-3));
}

.newLevelPage .heroSection1__leftButton .button {
  padding: 0 var(--gap-3);
  width: auto;
  height: 66px;
}

.newLevelPage .heroSection1__title {
  margin: 3vh -10% 0 0;
  max-width: 620px;
  font-weight: 700;
  font-size: 54px;
  line-height: 130%;
}

.newLevelPage .heroSection1__right {
  margin-top: 13vh;
  width: 47.5%;
}

.newLevelPage .heroSection1__dialogCloud.left {
  left: 17%;
  top: -14%;
}

.newLevelPage .heroSection1__dialogCloud.left::after {
  left: 75%;
}

.newLevelPage .heroSection1__dialogCloud.right {
  right: 17%;
  top: -11%;
}

.newLevelPage .heroSection1__dialogCloud.right::after {
  left: 10%;
}

.newLevelPage .factsSection1 {
  background: url("../img/sections/factsSection/bg_01.svg") no-repeat;
  background-position-x: calc(60% - 5vw);
  background-position-y: 135px;
  padding-bottom: 0;
}

.newLevelPage .factsSection1__title {
  display: flex;
  flex-direction: column;
}

.newLevelPage .factsSection1__title .small {
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-transform: none;
}

.newLevelPage .factsSection1 .factImage.factsList__fact1 .factImage__text.len-2 {
  transform: translateY(-4.5%);
}

.newLevelPage .factsSection1 .factImage.factsList__fact1 .factImage__text.len-2 .factImage__textInner {
  margin: 0;
}

.newLevelPage .factsSection1 .factImage.factsList__fact1 .factImage__text.len-2 .factImage__textInner:nth-child(2) {
  margin-left: 0;
  margin-right: 0;
}

.newLevelPage .factsSection1 .factImage.factsList__fact3 {
  margin-top: -21%;
  margin-bottom: 15%;
}

.newLevelPage .factsSection1 .factImage.factsList__fact3 .factImage__text.len-2 {
  gap: 44px;
  margin-top: 27.5%;
}

.newLevelPage .factsSection1 .factImage.factsList__fact3 .factImage__text.len-2 .factImage__textInner:nth-child(2) {
  margin-left: 74%;
  margin-right: -88%;
}

.newLevelPage .factsSection1 .factImage.factsList__fact3 .factImage__img {
  flex-shrink: 0;
}

.newLevelPage .faqSection1__list {
  position: relative;
  z-index: 10;
}

.newLevelPage .faqSection1__button {
  position: relative;
  z-index: 5;
}

.newLevelPage .faqSection1__button::before {
  content: '';
  display: block;
  position: absolute;
  top: -50%;
  left: 55%;
  z-index: 5;
  background: url("../img/sections/faqSection1/bg_01.png") no-repeat;
  background-size: contain;
  width: 586px;
  height: 385px;
  transform: translate(-50%, -50%);
}

.newLevelPage .faqSection1__button .button {
  position: relative;
  z-index: 10;
}

@media (max-width: 1199px) {
  .newLevelPage .heroSection1__title {
    margin-right: -20%;
  }

  .newLevelPage .heroSection1__right {
    margin-top: 25vh;
  }

  .newLevelPage .heroSection1__dialogCloud.left {
    left: 9%;
  }

  .newLevelPage .heroSection1__dialogCloud.right {
    right: 12%;
  }
}

@media (max-width: 991px) {
  .newLevelPage .heroSection1 {
    padding-bottom: 0;
  }

  .newLevelPage .heroSection1__title {
    margin-right: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
  }

  .newLevelPage .heroSection1__textWithHeart .icon {
    display: inline-block;
    align-self: flex-start;
    min-width: 30px;
    font-size: 30px;
  }

  .newLevelPage .heroSection1__textWithHeart p {
    font-size: 14px;
    line-height: 147%;
  }

  .newLevelPage .heroSection1__right {
    margin-top: 10vh;
  }

  .newLevelPage .heroSection1__dialogCloud.left {
    left: 16%;
  }

  .newLevelPage .heroSection1__dialogCloud.right {
    right: 21%;
  }

  .newLevelPage .factsSection1 {
    background: none;
    padding-top: 26px;
    padding-bottom: var(--gap-2);
  }

  .newLevelPage .factsSection1__title {
    font-size: 26px;
    line-height: 120%;
  }

  .newLevelPage .factsSection1__title .small {
    font-size: 22px;
    line-height: 100%;
  }

  .newLevelPage .factsSection1 .factsList {
    gap: var(--gap-2);
  }

  .newLevelPage .factsSection1 .factsList__fact2 .factImage__img {
    text-align: left;
  }

  .newLevelPage .factsSection1 .factsList__fact3 .factImage__img {
    text-align: right;
  }

  .newLevelPage .factsSection1 .factImage {
    flex-direction: column;
    gap: var(--gap-2);
    margin: 0 !important;
  }

  .newLevelPage .factsSection1 .factImage__img {
    order: 1;
    display: block;
    width: 100%;
    font-size: 0;
  }

  .newLevelPage .factsSection1 .factImage__imgMain {
    margin: 0;
    width: 100%;
    max-width: 200px;
  }

  .newLevelPage .factsSection1 .factImage__text {
    order: 2;
    gap: var(--gap-2) !important;
    margin: 0 !important;
    transform: translateY(0) !important;
  }

  .newLevelPage .factsSection1 .factImage__textInner {
    margin: 0 !important;
    padding: 12px var(--gap);
  }

  .newLevelPage .factsSection1 .logo_gray {
    display: unset;
    margin: 22px auto 0;
    width: 100%;
    max-width: 347px;
  }

  .newLevelPage .faqSection1__button::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .newLevelPage .heroSection1__left,
  .newLevelPage .heroSection1__right {
    width: 100%;
  }

  .newLevelPage .heroSection1__left {
    max-width: none;
  }

  .newLevelPage .heroSection1__title {
    margin-top: 4px;
  }

  .newLevelPage .heroSection1__textWithHeart {
    margin-top: var(--gap-3);
  }

  .newLevelPage .heroSection1__leftButton {
    justify-content: flex-start;
  }

  .newLevelPage .heroSection1__right {
    margin-top: 14px;
  }

  .newLevelPage .heroSection1__dialog {
    margin: 0;
    text-align: center;
  }

  .newLevelPage .heroSection1__dialog img {
    width: 93%;
  }
}

.otvPage .heroSection1__textWithHeart .icon {
  display: none;
}

.otvPage .heroSection1__textWithHeart p {
  font-size: 20px;
  line-height: 147%;
}

.otvPage .heroSection1__dialog {
  margin-top: 53px;
}

.otvPage .heroSection1__dialogCloud {
  min-height: 45px;
  font-weight: 500;
  font-size: 15.25px;
  line-height: 100%;
  letter-spacing: -0.21px;
}

.otvPage .heroSection1__dialogCloud.left {
  left: 36%;
  top: 45.5%;
}

.otvPage .heroSection1__dialogCloud.right {
  right: 29%;
  top: 57%;
}

.otvPage .heroSection1__dialog img {
  width: 119%;
  max-width: 119%;
}

.revolutionPage .heroSection1__textWithHeart {
  margin-top: 38px;
}

.revolutionPage .heroSection1__dialogCloud.left {
  left: 15%;
  top: 26%;
}

.revolutionPage .heroSection1__dialogCloud.right {
  right: 15%;
  top: 24%;
}

.revolutionPage .heroSection1__dialog img {
  margin-top: -4%;
  margin-left: -5%;
  width: 132%;
  max-width: 132%;
}

@media (min-width: 992px) {
  .revolutionPage .factsSection1 {
    padding-top: 25px;
  }

  .revolutionPage .factsSection1 .factsList__fact1 .factImage__text {
    transform: translateY(-10%);
  }

  .revolutionPage .factsSection1 .factsList__fact2 {
    margin-top: -5%;
  }

  .revolutionPage .factsSection1 .factsList__fact2 .factImage__text {
    transform: translateY(3%);
  }

  .revolutionPage .factsSection1 .factsList__fact2 .factImage__text.len-2 .factImage__textInner:nth-child(2) {
    transform: translateY(10%);
  }

  .revolutionPage .factsSection1 .logo_gray {
    margin-top: -5px;
  }
}

@media (max-width: 991px) {
  .revolutionPage .heroSection1__dialogCloud.right {
    right: 25%;
    top: 32%;
  }

  .revolutionPage .heroSection1__dialog img {
    margin-left: 0;
    width: 125%;
    max-width: 125%;
  }

  .revolutionPage .factsSection1 {
    padding-top: 30px;
  }

  .revolutionPage .factsSection1 .factsList__fact2 .factImage__text.len-2 .factImage__textInner:nth-child(1) .factImage__textEmoji {
    display: none;
  }

  .revolutionPage .factsSection1 .factsList__fact2 .factImage__text.len-2 .factImage__textInner:nth-child(2) .factImage__textEmoji {
    left: auto;
    right: 0;
    background: transparent;
    margin: 0;
  }

  .revolutionPage .factsSection1 .factsList__fact2 .factImage__text.len-2 .factImage__textInner:nth-child(2) .factImage__textEmoji img {
    width: 44px;
    transform: translateY(5px);
  }
}

@media (max-width: 767px) {
  .revolutionPage .heroSection1 {
    gap: 18px;
  }

  .revolutionPage .heroSection1 .container {
    gap: var(--gap-2);
  }

  .revolutionPage .heroSection1__left {
    margin-bottom: 0;
  }

  .revolutionPage .heroSection1__title {
    font-size: 28px;
    line-height: 130%;
  }

  .revolutionPage .heroSection1__textWithHeart {
    margin-top: 18px;
  }

  .revolutionPage .heroSection1__leftButton {
    margin-top: 29px;
  }

  .revolutionPage .heroSection1__right {
    margin: 0 calc(var(--gap-2) * -1);
    width: calc(100% + var(--gap-2) * 2);
    max-width: none;
  }

  .revolutionPage .heroSection1__dialog {
    overflow: hidden;
    padding-top: 100%;
    margin-top: 0;
    margin-left: 0;
    height: 0;
  }

  .revolutionPage .heroSection1__dialogCloud.left {
    left: 10%;
  }

  .revolutionPage .heroSection1__dialogCloud.right {
    top: 24%;
    right: 18%;
  }

  .revolutionPage .heroSection1__dialog img {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .revolutionPage .factsSection1 {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .mainPage .heroSection1 {
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
  }
}

@media (min-width: 992px) {
  .mainPage .factsSection1 .factsList__fact2 {
    margin-top: 140px;
  }
}

@media (max-width: 1199px) {
  .mainPage .heroSection1__dialogCloud.right {
    right: 12%;
    width: 180px;
  }
}

@media (max-width: 991px) {
  .mainPage .heroSection1__dialogCloud.right {
    right: 4%;
    top: 11%;
  }

  .mainPage .heroSection1__dialogCloud.right::after {
    left: 15%;
  }

  .mainPage .footer .container {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .mainPage .heroSection1__dialog {
    overflow: hidden;
    padding-top: 70%;
    height: 0;
  }

  .mainPage .heroSection1__dialog img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 399px) {
  .mainPage .heroSection1__dialogCloud.left {
    top: 11%;
  }

  .mainPage .heroSection1__dialogCloud.left::after {
    left: 60%;
  }

  .mainPage .heroSection1__dialogCloud.right {
    right: 1%;
    top: 7%;
  }

  .mainPage .heroSection1__dialogCloud.right::after {
    left: 20%;
  }
}