:root {
  --color-primary: #7040f4;
  --color-primary--rgb: 112, 64, 244;
  --color-black: #3a2a68;
  --color-black--rgb: 58, 42, 104;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--color-black);
  background-color: #f9f6ff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline-color: var(--color-primary);
}

img {
  max-width: 100%;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.body--lock {
  overflow: hidden;
}

.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

.link {
  transition: color 0.3s;
}

.link:hover {
  color: var(--color-primary);
}

.link--primary {
  color: var(--color-primary);
}

.title1,
.title2,
.title3,
.title4,
.title5 {
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.5;
}

.title1--black,
.title2--black,
.title3--black,
.title4--black,
.title5--black {
  color: var(--color-black);
}

.title1 {
  font-size: 45px;
  line-height: 1.3;
  font-weight: 600;
}

.title2 {
  font-size: 48px;
}

.title3 {
  font-size: 36px;
}

.title4 {
  font-size: 24px;
}

.title5 {
  font-size: 18px;
}

.text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.text p:not(:first-child) {
  margin-top: 24px;
}

.text--big {
  font-size: 18px;
}

.text--bold {
  font-weight: 700;
}

.logo {
  max-width: 135px;
}

.logo__img {
  display: block;
}

.logo__img--active {
  display: none;
}

.btn-prev,
.btn-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 12px 0px rgba(112, 64, 244, 0.15);
}

.btn-prev svg,
.btn-next svg {
  fill: var(--color-black);
  transition: fill 0.3s;
}

.btn-prev:hover svg,
.btn-next:hover svg {
  fill: var(--color-primary);
}

.btn-next svg {
  transform: rotate(180deg);
}

.btn {
  padding: 16px 32px;
  display: inline-block;
  background-color: #8052ff;
  border-radius: 27px;
  text-align: center;
  line-height: 1.375;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

.btn:hover {
  background-color: #946dff;
}

.swiper-pagination-bullets {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  padding: 4px;
  line-height: 0;
  cursor: pointer;
}

.swiper-pagination-bullet:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
}

.swiper-pagination-bullet-active:before {
  background-color: var(--color-primary);
}

.menu__list {
  display: flex;
  align-items: center;
}

.menu__item {
  position: relative;
}

.menu__item:not(:first-child) {
  margin-left: 48px;
}

.menu__link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  line-height: 1.375;
  white-space: nowrap;
}

.menu__link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: transparent;
  pointer-events: none;
  transition: background 0.3s;
}

.menu__link:hover:before {
  background-color: var(--color-primary);
}

.menu__toggle {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu__lines {
  position: relative;
  z-index: 6;
}

.menu__lines,
.menu__lines:before,
.menu__lines:after {
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-primary);
  display: block;
  transform: rotate(0);
  width: 16px;
  transition: transform 0.3s, width 0.3s;
}

.menu__lines:before,
.menu__lines:after {
  content: "";
  position: absolute;
  right: 0;
}

.menu__lines {
  width: 12px;
}

.menu__lines:before {
  transform: translateY(-6px);
}

.menu__lines:after {
  transform: translateY(6px);
}

.tabs-btns {
  padding: 4px;
  background-color: rgba(var(--color-primary--rgb), 0.1);
  border-radius: 28px;
}

.tabs-btns__btn {
  padding: 12px;
  flex: 0 0 auto;
  min-width: 184px;
  font-weight: 700;
  line-height: 1.375;
  border-radius: 24px;
  white-space: nowrap;
  transition: background 0.3s;
}

.tabs-btns__btn:hover {
  background-color: rgba(var(--color-primary--rgb), 0.1);
}

.tabs-btns__btn.tabs__btn--active {
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(112, 64, 244, 0.15);
  cursor: default;
}

.tabs__btns {
  display: flex;
  overflow-x: auto;
}

.tabs__item {
  display: none;
}

.tabs__item--active {
  display: block;
}

.lang-control {
  display: flex;
  align-items: center;
}

.lang-control__btn {
  position: relative;
  font-weight: 700;
  line-height: 1.375;
  color: rgba(var(--color-primary--rgb), 0.5);
}

.lang-control__btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background 0.3s;
}

.lang-control__btn:not(:first-child) {
  margin-left: 10px;
}

.lang-control__btn--active {
  color: var(--color-primary);
  cursor: default;
  pointer-events: none;
}

.lang-control__btn--active:before {
  background-color: var(--color-primary);
}

.slider {
  position: relative;
}

.slider__main {
  margin: -20px -16px;
  padding: 20px 16px;
}

.slider__slide {
  height: auto;
}

.slider__item {
  height: 100%;
}

.slider__next,
.slider__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.slider__next.swiper-button-disabled,
.slider__prev.swiper-button-disabled {
  display: none;
}

.slider__prev {
  left: -20px;
}

.slider__next {
  right: -20px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 7;
  padding-top: 40px;
  width: 100%;
}

.header__content {
  display: flex;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
}

.header__menu {
  margin-left: 130px;
  margin-right: auto;
}

.header__lang-control {
  position: relative;
  z-index: 4;
  margin-left: 30px;
}

.header--fixed {
  position: fixed;
  padding: 7px 0;
  background-color: #fdfefd;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.main {
  flex: 1 1 auto;
  overflow: hidden;
}

.main__about {
  margin-top: 107px;
  margin-bottom: 252px;
}

.main__features {
  margin-top: 160px;
}

.main__partners {
  margin-top: 140px;
}

.main__contacts {
  margin-top: 115px;
  margin-bottom: -12px;
}

.banner {
  padding-top: 188px;
  padding-bottom: 115px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
}

.banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner__info {
  position: relative;
  z-index: 1;
  margin-right: 30px;
  max-width: 570px;
}

.banner__text {
  margin-top: 16px;
  max-width: 490px;
}

.banner__btn {
  margin-top: 48px;
}

.banner__down {
  margin: 24px auto 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  animation: moveUpDown 2.5s infinite linear;
}

.banner__down img {
  width: 18px;
}

.banner__down svg {
  fill: #7040f4;
}

.banner__images {
  position: relative;
  margin-right: 10px;
  flex: 0 0 auto;
  width: 572px;
  height: 524px;
}

.banner__img {
  position: absolute;
}

.banner__img img {
  width: 100%;
  object-fit: contain;
}

.banner__img:first-child {
  left: 0;
  top: 56px;
  width: 279px;
}

.banner__img:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 296px;
}

.banner__img:nth-child(3) {
  right: 0;
  top: 56px;
  width: 237px;
}

.banner__img:nth-child(4) {
  left: 20px;
  bottom: -5px;
  z-index: 4;
  width: 266px;
}

.banner__img:nth-child(5) {
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 222px;
}

.about {
  position: relative;
  background-color: #fff;
}

.about:before,
.about:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.about:before {
  top: -107px;
  height: 120px;
  background: url("../img/line-up.svg") bottom/cover no-repeat;
}

.about:after {
  bottom: -150px;
  height: 150px;
  background: url("../img/line-down.svg") top/cover no-repeat;
}

.about__content {
  position: relative;
  padding-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__info {
  max-width: 600px;
}

.about__info:not(:last-child) {
  margin-right: 48px;
}

.about__text:not(:first-child) {
  margin-top: 32px;
}

.about__message {
  margin-top: 20px;
  margin-left: auto;
  padding: 44px 49px 44px 52px;
  flex: 0 0 auto;
  width: 413px;
  background: url("../img/about/message-box.svg") center/contain no-repeat;
}

.about__img {
  position: absolute;
  z-index: 1;
}

.about__img img {
  width: 100%;
  object-fit: contain;
}

.about__img:nth-child(1) {
  top: -139px;
  left: 245px;
  width: 185px;
}

.about__img:nth-child(1) img {
  animation: moveUpDown 3s .2s infinite linear;
}

.about__img--en:nth-child(1) {
  left: 335px;
}

.about__img:nth-child(2) {
  bottom: -378px;
  right: 0;
  width: 556px;
}

.product {
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
}

.product__img {
  margin-bottom: 16px;
  height: 296px;
}

.product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products {
  position: relative;
  z-index: 1;
}

.products__title {
  margin-bottom: 48px;
}

.products__controls {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products__controls-right-btn {
  margin-left: 30px;
  flex: 0 0 auto;
}

.products__footer {
  text-align: center;
}

.feature {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: #fff;
  border-radius: 16px;
}

.feature__img {
  margin-bottom: 32px;
  width: 48px;
  height: 48px;
}

.feature__img img {
  max-height: 100%;
  object-fit: contain;
}

.feature__text {
  margin-top: auto;
}

.features__content {
  position: relative;
}

.features__title {
  margin-bottom: 48px;
}

.features__list {
  position: relative;
  z-index: 1;
  margin: -24px -12px 0;
  display: flex;
  flex-wrap: wrap;
}

.features__item {
  margin: 24px 12px 0;
  width: calc(33.33% - 24px);
}

.features__img {
  position: absolute;
}

.features__img img {
  width: 100%;
  object-fit: contain;
}

.features__img:nth-child(1) {
  top: 16px;
  right: 450px;
  width: 171px;
}

.features__img:nth-child(2) {
  top: -72px;
  right: -60px;
  z-index: 2;
  width: 284px;
}

.features__img:nth-child(2) {
  animation: moveUpDown 3.5s infinite linear;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  height: 128px;
  background-color: #fff;
  border-radius: 16px;
  transition: box-shadow 0.3s;
}

.partner:hover {
  box-shadow: 0px 8px 16px 0px rgba(119, 101, 169, 0.15);
}

.partners__content {
  position: relative;
}

.partners__title {
  margin-bottom: 24px;
}

.partners__img {
  position: absolute;
}

.partners__img img {
  width: 100%;
  object-fit: contain;
}

.partners__img:nth-child(1) {
  top: -60px;
  left: 280px;
  width: 190px;
  z-index: 1;
}

.partners__img:nth-child(1) {
  animation: moveUpDown 3.2s .2s infinite linear;
}

.contacts {
  position: relative;
}

.contacts__container {
  height: 100%;
}

.contacts__main {
  height: 825px;
  pointer-events: none;
}

.contacts__main-content {
  position: relative;
  height: 100%;
  z-index: 1;
}

.contacts__info {
  position: absolute;
  left: 0;
  top: 185px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 600px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 16px;
  pointer-events: all;
}

.contacts__title {
  margin-bottom: 32px;
}

.contacts__email {
  margin-top: 4px;
  display: inline-block;
  text-decoration: underline;
}

.contacts__address {
  margin-top: 32px;
}

.contacts__address-item {
  line-height: 1.5;
  font-weight: 500;
}

.contacts__address-item:not(:first-child) {
  margin-top: 16px;
}

.contacts__address-label {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--color-primary);
}

.contacts__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contacts__map:before,
.contacts__map:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.contacts__map:before {
  top: 0;
  height: 97px;
  background: url("../img/line-down-bg.svg") bottom/cover no-repeat;
}

.contacts__map:after {
  bottom: -1px;
  height: 110px;
  background: url("../img/line-up-bg.svg") top/cover no-repeat;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
}

.footer {
  padding-bottom: 115px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(var(--color-black--rgb), 0.5);
}

@keyframes moveUpDown {
  0% {
    transform: translateY(-6px);
  }

  45% {
    transform: translateY(6px);
  }
  
  50% {
    transform: translateY(6px);
  }

  95% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(-6px);
  }
}