@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h1,
h2,
h3 {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  font-family: inherit;
}
p {
  margin: 0;
}
div,
section {
  position: relative;
}
image,
video {
  max-width: 100%;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.fw300 {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.bold,
b {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.fw300 {
  font-weight: 300;
}
.disable-selection {
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.invisible {
  visibility: hidden;
  opacity: 0;
}
.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
table,
th,
td {
  border-collapse: collapse;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
.nobr {
  white-space: nowrap;
}
.flex-break {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  height: 0;
}
.wrap {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-grid {
  display: grid !important;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  position: relative;
}
.text > p:nth-child(n + 2) {
  margin-top: 1em;
}
.pink {
  color: #ee82aa;
}
.violet {
  color: #9a74b0;
}
.fs_m {
  font-size: 32px;
}
.fs_s {
  font-size: 22px;
}
.fw600 {
  font-weight: 600;
}
.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 0.5em 1em;
  background: -webkit-gradient(
    linear,
    left bottom, left top,
    from(#db4499),
    color-stop(21%, #e576b4),
    color-stop(48%, #f0b1d4),
    color-stop(71%, #f8dbeb),
    color-stop(89%, #fdf5fa),
    to(#ffffff)
  );
  background: linear-gradient(
    0deg,
    #db4499 0%,
    #e576b4 21%,
    #f0b1d4 48%,
    #f8dbeb 71%,
    #fdf5fa 89%,
    #ffffff 100%
  );
  border-radius: 100px;
  border: none;
  outline: none;
  z-index: 2;
  vertical-align: middle;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.btn::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: -webkit-gradient(
    linear,
    left bottom, left top,
    from(#9a74b0),
    color-stop(3%, #a075b0),
    color-stop(22.5%, #ca7cad),
    color-stop(40%, #e480ab),
    color-stop(49.9%, #ee82aa)
  );
  background: linear-gradient(
    0deg,
    #9a74b0 0%,
    #a075b0 3%,
    #ca7cad 22.5%,
    #e480ab 40%,
    #ee82aa 49.9%
  );
  background-size: 100% 200%;
  background-position: 50% 100%;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover::before {
  background-position: 50% 0%;
}
.btn__text {
  margin-top: -0.1em;
  margin-right: 1em;
}
.btn_violet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 600;
  height: 50px;
  width: 200px;
  background: #9a74b0;
  color: #fff;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
  font-size: 18px;
}
.btn_violet:hover {
  background: #ca7cad;
}
.btn_violet_transparent {
  background: transparent;
  border: solid 4px #9a74b0;
  -webkit-transition: border 0.3s, color 0.3s;
  transition: border 0.3s, color 0.3s;
  color: #9a74b0;
}
.btn_violet_transparent:hover {
  border-color: #ca7cad;
  color: #ca7cad;
  background: transparent;
}
footer {
  margin-top: 60px;
}
.footer__top {
  font-size: 14px;
  font-weight: 400;
}
.footer__center {
  position: relative;
  width: 100%;
  margin-top: 38px;
}
.footer__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 16px;
}
.footer__link > a {
  text-decoration: underline;
  text-transform: uppercase;
  margin: 25px;
  color: rgb(190, 189, 189);
  font-weight: 500;
}
.footer__link > a:hover {
  text-decoration: none;
}
nav {
  position: fixed;
  top: 0;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.nav__logo {
  height: 43px;
  max-width: unset;
}
.nav__logo-holder {
  position: relative;
  display: grid;
  grid-template-columns: -webkit-min-content -webkit-min-content;
  grid-template-columns: min-content min-content;
  grid-gap: 13px;
}
.nav__grid {
  position: relative;
  height: 60px;
  background: radial-gradient(
    35.4% 707.98% at 50% 50%,
    rgba(184, 185, 219, 0) 0%,
    rgba(184, 185, 219, 0.7) 68%,
    #b8b9db 100%
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 30px;
}
.nav__right {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, -webkit-min-content);
  grid-template-columns: repeat(3, min-content);
  white-space: nowrap;
  grid-gap: 18px;
  line-height: 1;
}
.nav__buy-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 96px;
  height: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background: rgba(154, 116, 176, 0.8);
  -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.35);
  -webkit-transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  cursor: pointer;
  color: #fff !important;
  font-weight: 400;
  font-size: 14px;
}
.nav__buy-btn:hover {
  background: rgba(154, 116, 176, 1);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.35);
}
.nav__lang-selector {
  display: grid;
  grid-template-columns: repeat(3, -webkit-min-content);
  grid-template-columns: repeat(3, min-content);
  font-size: 17px;
  color: #9a74b0;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 0.2em;
}
.nav__lang-ua,
.nav__lang-ru {
  color: #fff;
  font-weight: 400;
}
.nav__lang-ua.active,
.nav__lang-ru.active {
  color: #9a74b0;
  font-weight: bold;
}
.nav__menu-btn {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 2;
}
.nav__menu-btn > span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.nav__menu-btn > span:nth-child(1) {
  top: 0;
}
.nav__menu-btn > span:nth-child(2) {
  top: 33.33333%;
}
.nav__menu-btn > span:nth-child(3) {
  top: 66.66666%;
}
.nav__menu-btn > span:nth-child(4) {
  top: 100%;
}
.nav__menu {
  position: absolute;
  top: 0;
  right: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
  background: -webkit-gradient(
    linear,
    left bottom, left top,
    from(rgba(238, 130, 170, 0)),
    color-stop(1%, rgba(236, 130, 170, 0.02)),
    color-stop(13%, rgba(215, 126, 172, 0.28)),
    color-stop(26%, rgba(196, 123, 173, 0.5)),
    color-stop(39%, rgba(181, 120, 174, 0.68)),
    color-stop(53%, rgba(169, 118, 175, 0.82)),
    color-stop(67%, rgba(161, 117, 176, 0.92)),
    color-stop(82%, rgba(156, 116, 176, 0.98)),
    to(#9a74b0)
  );
  background: linear-gradient(
    0deg,
    rgba(238, 130, 170, 0) 0%,
    rgba(236, 130, 170, 0.02) 1%,
    rgba(215, 126, 172, 0.28) 13%,
    rgba(196, 123, 173, 0.5) 26%,
    rgba(181, 120, 174, 0.68) 39%,
    rgba(169, 118, 175, 0.82) 53%,
    rgba(161, 117, 176, 0.92) 67%,
    rgba(156, 116, 176, 0.98) 82%,
    #9a74b0 100%
  );
  width: 200px;
  display: grid;
  grid-gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 40px 40px 20px;
  border-radius: 30px;
  z-index: -1;
}
.nav__menu.active,
.nav__menu-holder:hover .nav__menu,
.nav__menu:hover {
  opacity: 1;
  top: calc(100% + 30px);
  pointer-events: unset;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav__menu-delimiter {
  position: relative;
  width: 100%;
  height: 1px;
  background: #fff;
}
.nav__menu-item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.nav__menu-item:hover {
  color: #e576b4;
}
.section_header {
  color: #9a74b0;
  font-weight: 500;
  font-size: 32px;
}
.section__bg-part-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.section__bg-part-bot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.head2__container {
  position: relative;
}
.head2__image {
  width: 100%;
}
.head2__socials {
  position: absolute;
  bottom: 25px;
  left: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
  width: 115px;
}
.head2__social-icon {
  position: relative;
  width: 100%;
}
.head2__header {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 920px;
  max-width: 100%;
  font-weight: bold;
  font-size: 55px;
  color: #9a74b0;
  margin: 0 25px;
}
.grid2 {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 150px;
  margin: 0 auto;
  max-width: 920px;
}
.grid2__header_m {
  display: none;
}
.grid2__text {
  margin: 40px 0 60px;
  font-size: 18px;
}
.grid2__image {
  max-width: 342px;
}
.grid2__content {
  -ms-flex-item-align: center;
      align-self: center;
}
.about__container {
  padding-top: 145px;
  padding-bottom: 145px;
}
.about__grid,
.advantages__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1024px;
  margin: 0 auto;
}
.about__content,
.advantages__left {
  padding-left: 30px;
  position: relative;
}
.about__header {
  font-size: 53px;
  font-weight: 600;
}
.about__header img {
  margin-bottom: 20px;
}
.about__slogan {
  font-size: 41px;
  margin-top: 70px;
}
.about__btn {
  position: relative;
  left: calc(100% - 20px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  margin-top: 70px;
}
.about__btn_m,
.advantages__btn_m {
  display: none;
}
.about__image-holder {
  position: relative;
}
.about__arrow {
  position: absolute;
  left: 40px;
  top: 20px;
  -webkit-animation: about_arrow_anim 1s infinite alternate ease-in-out;
          animation: about_arrow_anim 1s infinite alternate ease-in-out;
}
@-webkit-keyframes about_arrow_anim {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@keyframes about_arrow_anim {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.about__image {
  position: relative;
  width: 470px;
  left: calc(100% + 50px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.about__center {
  margin: 80px auto;
  max-width: 1024px;
}
.about__center-header {
  font-size: 36px;
  font-weight: bold;
  color: #9a74b0;
}
.about__center-text {
  margin-top: 1em;
}
.advantages__image-holder {
  margin: 30px 0 45px;
}
.advantages__btn {
  font-size: 30px;
  position: relative;
  left: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about__section,
.instruction__section {
  position: relative;
  margin-top: 80px;
}
@media all and (max-width: 1400px) {
}
@media all and (max-width: 1199px) {
  .container {
    max-width: 920px;
  }
  .about__arrow {
    left: 0px;
  }
  .about__image {
    width: calc(100% - 50px);
    left: 40px;
    -webkit-transform: none;
            transform: none;
  }
  .about__center {
    padding-left: 30px;
    padding-right: 30px;
  }
  .advantages__right {
    padding-right: 30px;
  }
  .grid2 {
    margin: 0 25px;
    grid-gap: 100px;
  }
}
@media all and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  nav .container {
    max-width: 100%;
    width: 100%;
  }
  .section__bg-part-top,
  .section__bg-part-bot {
    left: -15px;
    width: calc(100% + 30px);
    max-width: unset;
  }
  .about__header {
    font-size: 45px;
  }
  .about__slogan {
    font-size: 27px;
    margin-top: 40px;
  }
  .about__arrow {
    width: 80px;
    height: 80px;
  }
  .about__content,
  .about__center,
  .advantages__right {
    padding: 0;
  }
  .advantages__btn {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .advantages__left {
    text-align: center;
    padding-left: 0;
    padding-right: 30px;
  }
  .about__btn {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .head2__container {
    width: 100%;
    max-width: 100%;
  }
  .head2__socials {
    bottom: 10px;
  }
  .grid2 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin: 0;
  }
}
@media all and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .fs_s {
    font-size: 16px;
  }
  .fs_m {
    font-size: 18px;
  }
  .text > p:nth-child(n + 2) {
    margin-top: 10px;
  }
  .btn {
    font-size: 14px;
  }
  .btn img {
    width: 22px;
  }
  .btn_violet {
    font-size: 16px;
  }
  .container {
    max-width: 540px;
    width: calc(100% - 50px);
  }
  .nav__buy-btn-holder {
    display: none;
  }
  .nav__lang-selector {
    font-size: 14px;
  }
  .nav__menu-btn {
    height: 16px;
  }
  .nav__right {
    grid-template-columns: -webkit-min-content -webkit-min-content;
    grid-template-columns: min-content min-content;
  }
  .nav__grid {
    padding: 0 15px;
    height: 50px;
  }
  .nav__logo-holder {
    grid-gap: 7px;
  }
  .nav__logo {
    height: 25px;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .section_header {
    font-size: 20px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .about__header {
    font-size: 25px;
  }
  .about__header img,
  .advantages__logo {
    margin-bottom: 0;
    width: 200px;
  }
  .about__slogan {
    font-size: 16px;
    margin-top: 20px;
  }
  .about__btn,
  .advantages__btn {
    display: none;
  }
  .about__btn_m,
  .advantages__btn_m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 50%;
    position: relative;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 20px;
  }
  .about__arrow {
    display: none;
  }
  .about__image {
    width: 250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .about__center-header {
    font-size: 20px;
  }
  .advantages__grid {
    grid-template-columns: 1fr;
  }
  .advantages__left {
    text-align: left;
  }
  .advantages__image-holder {
    margin: 20px 0;
    text-align: center;
  }
  .advantages__image {
    width: 200px;
  }
  .about__center {
    margin: 40px 0 45px;
  }
  .about__container {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .footer__link {
    font-size: 12px;
  }
  .footer__top {
    font-size: 10px;
  }
  .head2__section {
    padding-top: 50px;
  }
  .head2__container {
    max-width: 100%;
    width: 100%;
  }
  .head2__header {
    font-size: 30px;
  }
  .head2__socials {
    bottom: -5px;
    left: 25px;
    width: 75px;
    grid-gap: 8px;
  }
  .grid2 {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
  .grid2__header {
    display: none;
  }
  .grid2__header_m {
    display: block;
  }
  .grid2__imge-holder {
    grid-row: 1;
    text-align: center;
  }
  .grid2__image {
    width: 200px;
    margin-top: 20px;
  }
  .grid2__text {
    font-size: 14px;
    margin: 20px 0;
  }
  .grid2__btn-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
