* {
  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: #F5F5F5;
  --text-main-reverse: #000000;
  --text-blue: #4776E6;
  --text-muted: #8E8E8E;
  --text-purple: #6447CB;
  --background-primary: #4776E6;
  --background-primary-1: #6F63E0;
  --background-secondary: #DEFE66;
  --background-main: #181818;
  --background-black: #1C1C1C;
  --background-black-lighter: #282828;
  --background-white: #ffffff;
  --background-muted: var(--text-muted);
  --border-primary: #4776E6;
  --gap: 14px;
  --header-height: 80px;
  --transition: 0.3s;
}

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

html {
  font-size: 16px;
}

body {
  background: var(--background-main);
  font-family: 'Gilroy', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  color: var(--text-main);
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: var(--app-height);
}

.wrapper {
  width: 100%;
}

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

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;
  position: relative;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
  height: 80px;
  width: auto;
  min-width: 400px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-main);
  transition: var(--transition), transform 0s;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.button:active {
  opacity: 1;
  transform: translateY(2px);
}

.button[disabled] {
  background: #555555;
  opacity: 1;
  color: #C2C4C5;
  transform: translateY(0);
  cursor: default;
}

.checkbox {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-main);
}

.checkbox .icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--background-primary);
  border-radius: 8px;
  background: transparent;
  width: 30px;
  height: 30px;
  min-width: 30px;
  font-size: 10px;
  color: var(--text-main);
  transition: var(--transition);
}

.checkbox .icon-check::before {
  opacity: 0;
  transition: inherit;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.checkbox input:checked + .icon-check {
  background: var(--background-primary);
}

.checkbox input:checked + .icon-check::before {
  opacity: 1;
}

.badge {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--background-primary);
  padding: 0 10px;
  height: 30px;
  min-width: 80px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main-reverse);
}

.animation-pulse {
  animation: animation-pulse 2s ease-in-out infinite;
}

@keyframes animation-pulse {
  from {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  90% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

.footer {
  margin-top: auto;
  padding: 48px 0 25px;
  width: 100%;
  background: var(--background-main);
}

.footer .container {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.footer__contacts {
  width: 50%;
}

.footer__contactsTitle {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--text-main);
}

.footer__contactsDescription {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: -0.3px;
  color: var(--text-main);
}

.footer__contactsEmail {
  margin: 0;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.3px;
  color: var(--text-main);
}

.footer__contactsEmail a {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  color: inherit;
}

.footer__contactsEmail a:hover {
  text-decoration: none;
}

.footer__contactsEmail .icon {
  font-size: 21px;
  color: var(--text-purple);
}

.footer__nav {
  width: 50%;
  text-align: right;
}

.footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li {
  margin-bottom: 21px;
  padding: 0;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text-blue);
}

.footer__links li:last-child {
  margin-bottom: 0;
}

.footer__links li a {
  color: inherit;
}

.footer__links li a:hover {
  text-decoration: none;
}

.footer__copywrite {
  margin: 34px 0 0;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -0.3px;
  text-align: center;
  color: var(--text-main);
}

@media (max-width: 991px) {
  .footer {
    padding: 14px 0 28px;
  }

  .footer .container {
    flex-direction: column;
    gap: 0;
  }

  .footer__contacts {
    margin-bottom: 16px;
    width: 100%;
  }

  .footer__contactsTitle {
    margin-bottom: 18px;
    font-size: 22px;
    text-align: center;
  }

  .footer__contactsDescription,
  .footer__contactsEmail {
    font-size: 16px;
  }

  .footer__contactsDescription {
    margin-bottom: 6px;
  }

  .footer__nav {
    width: 100%;
  }

  .footer__links {
    width: 100%;
  }

  .footer__links ul {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .footer__links li {
    margin: 0;
    font-size: 16px;
  }

  .footer__copywrite {
    margin-top: 24px;
  }
}

.header {
  position: relative;
  z-index: 10;
  width: 100%;
}

.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  height: var(--header-height);
}

.header .langPicker {
  width: 88px;
  height: 46px;
}

.header .langPicker .picker__toggleBtn {
  background: var(--background-black-lighter);
}

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

.header .langPicker .picker__toggleBtn .icon {
  right: 17px;
  margin-top: -4px;
  font-size: 8px;
  color: var(--text-muted);
}

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

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

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

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

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

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

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

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

@media (max-width: 991px) {
  .header .logo {
    position: relative;
    bottom: -6px;
  }

  .header .logo img {
    width: 139px;
  }

  .header .langPicker {
    width: 72px;
    min-width: 72px;
    height: 36px;
  }

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

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

  .header .langPicker .picker__toggleBtn .icon {
    right: 13px;
  }

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

  .header .langPicker .picker__list {
    border-radius: 18px 0 18px 18px;
  }

  .header .langPicker .picker__element {
    min-height: 36px;
  }
}

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

.picker__toggleBtn {
  position: relative;
  border-radius: 24px;
  border: 0;
  background: var(--background-white);
  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-black);
  transition: var(--transition);
}

.picker__list {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  border-radius: 0 0 24px 24px;
  background: var(--background-white);
  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;
  }
}

.logo {
  font-size: 0;
}

.mpS1 {
  background: var(--background-main);
}

.mpS1__inner {
  display: flex;
  align-items: center;
  min-height: calc(var(--app-height) - var(--header-height));
}

.mpS1__title {
  margin: 0 0 10px;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
}

.mpS1 .mp__subtitle {
  margin: 0 0 66px;
}

.mpS1__toChatBtn {
  margin-top: 32px;
}

.mpS1__toChatBtn[disabled] {
  animation: none;
}

.mpS1__privacyCheckbox {
  margin-top: 28px;
  max-width: 385px;
}

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

.mpS1__privacyCheckbox a:hover {
  text-decoration: underline;
}

.mpS1__privacyCheckbox.highlight {
  color: #ff0000;
}

.mpS1__privacyCheckbox.highlight .icon {
  border-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

.mpS1__left {
  position: relative;
  z-index: 10;
  padding-right: 72px;
  width: 51%;
}

.mpS1__left .genderPicker {
  z-index: 10;
}

.mpS1__left .genderPicker.highlight .picker__toggleBtn {
  border: 2px solid var(--border-primary);
}

.mpS1__stars {
  position: absolute;
  top: -12%;
  left: 0;
}

.mpS1__stars img {
  width: 30px;
  height: 30px;
}

.mpS1__right {
  position: relative;
  z-index: 5;
  width: 49%;
  text-align: center;
}

.mpS1__right #canvas3d {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

@media (max-width: 991px) {
  .mpS1__inner {
    flex-direction: column;
    justify-content: center;
    padding-top: 34px;
    padding-bottom: 30px;
    min-height: calc(var(--app-height) - var(--header-height));
  }

  .mpS1__left {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }

  .mpS1__stars {
    display: none;
  }

  .mpS1__right {
    justify-content: center;
    gap: 5px;
    margin-top: 24px;
    width: 100%;
    height: 380px;
    max-width: 400px;
  }

  .mpS1__right #canvas3d {
    transform: translate(-42%, -50%) scale(0.8);
  }

  .mpS1__title {
    font-size: 34px;
  }

  .mpS1 .mp__subtitle {
    margin-bottom: 32px;
    font-size: 22px;
  }

  .mpS1__form {
    margin-left: auto;
    margin-right: auto;
    max-width: 347px;
  }

  .mpS1__toChatBtn {
    margin-top: 16px;
    min-width: 250px;
    height: 60px;
    font-size: 18px;
    font-weight: 500;
  }

  .mpS1__privacyCheckbox {
    margin-top: 18px;
    font-size: 14px;
    text-align: left;
  }

  .mpS1__privacyCheckbox .icon-check {
    position: relative;
    top: 5px;
  }
}

.mpS3 {
  padding-top: 26px;
  padding-bottom: 68px;
}

.mpS3 .mp__title {
  margin-bottom: 124px;
}

.mpS3__list .elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  position: relative;
  background: var(--background-black);
  overflow: hidden;
  margin-bottom: 16px;
  padding: var(--gap) 0 var(--gap) 70px;
  min-height: 455px;
}

.mpS3__list .elem.withBtn {
  padding-right: 70px;
}

.mpS3__list .elem:last-child {
  margin-bottom: 0;
}

.mpS3__list .elem__number {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  opacity: 0.1;
  font-size: 500px;
  font-weight: 300;
  text-align: center;
  color: var(--text-main);
  transform: translate(-50%, -50%);
}

.mpS3__list .elem__left,
.mpS3__list .elem__img {
  position: relative;
  z-index: 10;
}

.mpS3__list .elem__left {
  position: relative;
  max-width: 430px;
  font-size: 18px;
}

.mpS3__list .elem .mp__subtitle,
.mpS3__list .elem__text {
  position: relative;
  z-index: 10;
}

.mpS3__list .elem__img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 534px;
}

.mpS3__list .elem__img img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .mpS3 {
    padding-top: 14px;
    padding-bottom: 40px;
  }

  .mpS3 .mp__title {
    margin-bottom: 42px;
  }

  .mpS3__list {
    margin-left: -4px;
    margin-right: -4px;
  }

  .mpS3__list .elem {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mpS3__list .elem.withBtn {
    padding-right: 10px;
    padding-bottom: 80px;
  }

  .mpS3__list .elem__left {
    padding: 34px 0;
    min-height: 406px;
  }

  .mpS3__list .elem__number {
    top: -110px;
    transform: translateX(-50%);
  }

  .mpS3__list .elem__img {
    max-width: 263px;
  }

  .mpS3__list .elem .button {
    margin-top: 30px;
    width: 256px;
    min-width: 256px;
  }
}

.mpS5 {
  position: relative;
}

.mpS5__before {
  background: url("../img/section5/azaria.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  height: 512px;
  width: 2017px;
  transform: translate(-50%, -50%);
}

.mpS5 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  min-height: 619px;
}

.mpS5__text {
  position: relative;
  margin: 0 auto;
  padding: 114px 73px 93px 119px;
  max-width: 972px;
  font-size: 18px;
  line-height: 140%;
}

.mpS5__text::before,
.mpS5__text::after {
  content: '';
  display: block;
  position: absolute;
  width: 99px;
  height: 99px;
}

.mpS5__text::before {
  bottom: 0;
  left: 0;
  background: url("../img/section5/quote_left.png") no-repeat center;
  background-size: contain;
}

.mpS5__text::after {
  top: 0;
  right: 0;
  background: url("../img/section5/quote_right.png") no-repeat center;
  background-size: contain;
}

@media (max-width: 991px) {
  .mpS5 {
    padding-bottom: 26px;
  }

  .mpS5 .container {
    min-height: 512px;
  }

  .mpS5__text {
    padding: 73px 0 64px;
  }

  .mpS5__text::before,
  .mpS5__text::after {
    width: 50px;
    height: 50px;
  }

  .mpS5__text::before {
    top: 0;
    bottom: auto;
    left: -5px;
  }

  .mpS5__text::after {
    top: auto;
    right: 0;
    bottom: 0;
  }
}

.mpS2 {
  padding: 60px 0 50px;
}

.mpS2 .mp__title {
  margin-bottom: 74px;
  max-width: 810px;
}

.mpS2__text {
  display: flex;
  gap: 8px;
}

.mpS2__text .elem {
  border-radius: 20px;
  padding: 20px 30px;
  width: 33.333333%;
}

.mpS2__text .elem p {
  margin: 0;
  line-height: 140%;
  font-size: 18px;
}

.mpS2__text .elem:nth-child(1) {
  background: var(--background-primary-1);
}

.mpS2__text .elem:nth-child(2) {
  background: var(--background-secondary);
}

.mpS2__text .elem:nth-child(2) p {
  color: var(--text-main-reverse);
}

.mpS2__text .elem:nth-child(3) {
  background: var(--background-primary);
}

.mpS2__bottom {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  height: 370px;
}

.mpS2__bottomLeft {
  position: relative;
  background: url(../img/section2/man.jpg) no-repeat 10% 8%;
  background-size: 122%;
  width: 63%;
}

.mpS2__bottomLeft img {
  position: absolute;
  top: 32%;
  left: 19%;
  animation: azariaRotation 4s linear infinite;
}

@keyframes azariaRotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.mpS2__bottomRight {
  position: relative;
  background: var(--background-secondary);
  width: 37%;
}

.mpS2__bottomRight .emoji {
  position: absolute;
}

.mpS2__bottomRight .emoji1 {
  bottom: 8%;
  left: 8%;
  width: 92px;
  height: 97px;
}

.mpS2__bottomRight .emoji2 {
  top: 14%;
  right: 11%;
  width: 104px;
  height: 108px;
}

@media (max-width: 991px) {
  .mpS2 {
    padding: 16px 0 0;
  }

  .mpS2 .mp__title {
    margin-bottom: 42px;
  }

  .mpS2__text {
    flex-wrap: wrap;
  }

  .mpS2__text .elem {
    padding: 20px 14px;
    width: calc(50% - 4px);
  }

  .mpS2__text .elem:nth-child(odd):last-child {
    width: 100%;
  }

  .mpS2__text .elem p {
    font-size: 17px;
    line-height: 140%;
  }

  .mpS2__bottomLeft {
    background-position: 30% 8%;
    background-size: 160%;
  }
}

@media (max-width: 767px) {
  .mpS2__text {
    flex-direction: column;
    margin: 0 -6px;
  }

  .mpS2__text .elem {
    width: 100%;
  }

  .mpS2__bottom {
    position: relative;
    border-radius: 0;
    margin-left: -14px;
    margin-right: -14px;
    padding-top: 85%;
    height: 0;
  }

  .mpS2__bottomLeft {
    position: absolute;
    top: 0;
    left: 0;
    background-position: 65% 8%;
    background-size: 160%;
    width: 100%;
    height: 100%;
  }

  .mpS2__bottomLeft img {
    top: 25%;
    left: 4%;
    width: 35%;
    height: auto;
  }

  .mpS2__bottomRight {
    display: none;
  }
}

.mpS4 {
  padding-top: 28px;
  padding-bottom: 62px;
}

.mpS4 .mp__title {
  margin-bottom: 86px;
}

.mpS4__subtitle {
  margin-bottom: 92px;
}

.mpS4__list {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 58px;
  column-gap: 58px;
}

.mpS4__list .elem {
  position: relative;
  margin-bottom: 52px;
  padding-left: 52px;
  page-break-inside: avoid;
}

.mpS4__list .elem::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/section4/check1.png") no-repeat center;
  background-size: contain;
  width: 40px;
  height: 40px;
}

.mpS4__list .elem:nth-child(2)::before {
  background: url("../img/section4/check2.png") no-repeat center;
  background-size: contain;
}

.mpS4__list .elem:nth-child(4)::before {
  background: url("../img/section4/check3.png") no-repeat center;
  background-size: contain;
}

.mpS4__list .elem .mp__subtitle {
  margin-top: 0;
  margin-bottom: 18px;
}

.mpS4__list .elem__text {
  font-size: 18px;
}

@media (max-width: 991px) {
  .mpS4 {
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .mpS4 .mp__title {
    margin-bottom: 33px;
    font-size: 30px;
  }

  .mpS4__subtitle.mp__subtitle {
    margin-bottom: 29px;
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
  }
}

@media (max-width: 767px) {
  .mpS4__list {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.mp__title {
  font-size: 50px;
  font-weight: 700;
}

.mp__subtitle {
  font-size: 28px;
  font-weight: 700;
}

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