@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: 21px;
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
}
* {
  margin: 0;
  padding: 0;
  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;
}
h1.hide {
  position: absolute;
  left: 0;
  top: -1000px;
  line-height: 0;
}
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;
}
.fw500 {
  font-weight: 500;
}

.fw900 {
  font-weight: 900;
}
.fw300 {
  font-weight: 300;
}

.mt20 {
  margin-top: 20px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}

.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 {
  flex-basis: 100%;
  height: 0;
}

.wrap {
  overflow: hidden;
  position: relative;
  background: #fff;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1066px;
  position: relative;
}
.text > p:nth-child(n + 2) {
  margin-top: 1em;
}
.t-center {
  text-align: center;
}
.white {
  color: #fff;
}
.violet {
  color: #64398e;
}
.orange {
  color: #f29315;
}
.fs_m {
  font-size: 32px;
}
.fs_s {
  font-size: 22px;
}
.fw600 {
  font-weight: 600;
}

.btn {
  font-family: "Roboto";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  padding: 0.5em 1em;
  background: linear-gradient(180deg, #ffffff 0.01%, #64398e 99.99%);
  border-radius: 100px;
  border: none;
  outline: none;
  z-index: 2;
  vertical-align: middle;
  box-shadow: 3px 3px 3px rgb(0 0 0 / 35%);
  cursor: pointer;
}
.btn::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: linear-gradient(0deg, #b6a0cb 0%, #64398e 50%, #572b83 100%);
  background-size: 100% 200%;
  background-position: 50% 100%;
  border-radius: 100px;
  transition: 0.3s;
}
.btn:hover::before {
  background-position: 50% 0%;
}
.btn__text {
  margin-top: -0.1em;
  margin-right: 1em;
}
.btn_orange {
  background: linear-gradient(180deg, #ffffff 0.01%, #f29315 99.99%);
}
.btn_orange::before {
  background: linear-gradient(0deg, #f8b23c 0%, #e67e22 50%, #e67e22 100%);
  background-size: 100% 200%;
  background-position: 50% 100%;
}

.container_absolute {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
}
.section__shape_absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.power_btn {
  position: relative;
  display: grid;
  grid-template-columns: -webkit-min-content 70px;
  grid-template-columns: min-content 70px;
  grid-gap: 15px;
  align-items: center;
  font-weight: bold;
  font-size: 19px;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
section.small {
  max-width: 1333px;
  margin: 0 auto;
}
.section__shape-image_left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.section__shape-image_right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.section__shape_left {
  position: relative;
  width: 90%;
  left: 7%;
}
.section__shape_right {
  position: relative;
  width: 90%;
  left: 93%;
  transform: translateX(-100%);
}
.section__shape_full {
  position: relative;
  width: 100%;
  left: 0;
}
.section__shape_full.mirror {
  transform: scale(-1, -1);
}
.text__section {
  position: relative;
  padding: 100px 0;
}
.text__grid {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  max-width: 855px;
  font-size: 19px;
}
.text__grid .text {
  font-size: 19px;
}
.text__grid strong {
  font-weight: bold;
  color: #64398e;
}
.text__header,
.text__header_s {
  font-size: 26px;
  font-weight: bold;
  color: #64398e;
  text-align: center;
}
.text__header_s {
  font-size: 21px;
}
.text__list {
  list-style-type: none;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  -moz-columns: 2;
       columns: 2;
  max-width: 855px;
  font-size: 19px;
  color: #64398e;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.text__block,
.text__block_m {
  max-width: 855px;
  margin: 0 auto;
  font-size: 19px;
}
.text__block_m {
  font-size: 21px;
}
.text__block:nth-child(n + 2) {
  margin-top: 40px;
}

.footer__text {
  padding-top: 30px;
  font-size: 12px;
  padding-bottom: 55px;
}
.footer__image {
  width: 100%;
}
.footer__bottom {
  position: relative;
  width: 100%;
  background: #64398e;
  display: grid;
  grid-gap: 30px;
  text-align: center;
  padding: 40px 0;
  color: #fff;
}
.patent__content {
  position: absolute;
  right: 0px;
  text-align: right;
  max-width: 555px;
  padding-top: 180px;
  color: #64398e;
  font-size: 36px;
  font-weight: bold;
}
.patent__content_ru {
  max-width: 615px;
}
.patent__subHeader_ru {
  transform-origin: right;
  transform: scale(0.9, 1);
}
.patent__header {
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 30px;
}

.patent__btn {
  position: absolute;
  right: 0;
  bottom: 30%;
}
.pack__section {
  padding: 100px 0;
}
.pack__grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 440px;
  grid-gap: 60px;
  font-weight: 400;
  font-size: 26px;
  color: #64398e;
  padding-left: 100px;
}
.pack__header {
  font-size: 70px;
  margin-bottom: 30px;
}
.pack__content {
  max-width: 500px;
}
.pack__image {
  margin-top: 50px;
}
.pack__btn {
  margin-top: 50px;
}
.bottom__text {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 51%;
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  max-width: 400px;
}

nav {
  position: fixed;
  top: 0;
  height: 60px;
  background: #64398e;
  width: 100%;
  left: 0;
  z-index: 5;
  transition: top 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;

  font-size: 15px;
  color: #fff;
}
.nav__right {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.nav__menu {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, -webkit-min-content);
  grid-template-columns: repeat(4, min-content);
  grid-gap: 20px;
}
.nav__menu-item {
  height: 60px;
  display: flex;
  align-items: center;
}
.nav__menu-item-title {
  cursor: pointer;
  white-space: nowrap;
}
.nav__menu-item-title:hover {
  color: #f29315;
}
.nav__menu-item-title::before {
  content: "\02023";
  font-weight: bold;
  color: #f29315;
}
.nav__subMenu {
  position: absolute;
  top: 100%;
  left: -3px;
  background: #b6a0cb;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.nav__menu-btn {
  display: none;
}
.nav__subMenu.rows2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.nav__subMenu-item {
  padding: 10px;
  transition: background 0.3s;
}
.nav__subMenu-item:hover {
  background: #f29315;
  cursor: pointer;
}
.nav__menu-item:hover .nav__subMenu,
.nav__subMenu:hover {
  opacity: 1;
  visibility: visible;
}
.nav__lang-selector {
  position: relative;
  display: grid;
  grid-template-columns: -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-columns: min-content min-content min-content;
  grid-gap: 5px;
}
.nav__lang-btn {
  cursor: pointer;
}
.nav__lang-btn:first-child {
  color: #e67e22;
}
.nav__lang-selector span {
  color: #f29315;
}
.nav__divider {
  width: 1px;
  height: 25px;
  background: #fff;
  margin: 0 40px;
}
.picture_holder {
  position: relative;
}
.power_btn-holder_m {
  display: none;
}
@media all and (max-width: 1400px) {
}
@media all and (max-width: 1199px) {
  .container {
    max-width: 920px;
  }
  .patent__content {
    padding-top: 107px;
    font-size: 30px;
  }
  .pack__grid {
    font-size: 19px;
    grid-template-columns: auto 310px;
    grid-gap: 20px;
  }
  .head__header {
    font-size: 30px !important;
    padding-top: 151px !important;
    padding-bottom: 37px !important;
  }
}
@media all and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .section__shape_left,
  .section__shape_right {
    position: relative;
    width: 195%;
    max-width: unset;
  }
  section.small {
    display: flex;
    flex-direction: column;
  }
  section.small .container_absolute {
    position: relative;
    order: -1;
    left: unset;
    transform: unset;
  }
  .ics__header,
  .causes__header,
  .types__header,
  .ics__text {
    position: relative !important;
    max-width: 100% !important;
    width: 100% !important;
    right: unset !important;
    left: unset !important;
    transform: none !important;
    top: unset !important;
  }
  .ics__subHeader {
    margin-top: 1em !important;
  }
  .container_absolute .power_btn {
    display: none;
  }
  .picture_holder {
    margin-top: 25px;
  }
  .patent__content {
    position: relative;
    right: unset;
    left: unset;
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
  }
  .patent__subHeader_ru {
    transform: none;
  }
  .patent__btn {
    display: none;
  }
  .pack__grid {
    padding: 0;
    grid-template-columns: 1fr;
  }
  .pack__image {
    margin-top: 0;
  }
  .pack__grid > div:last-child {
    grid-row: 1;
    text-align: center;
  }
  .pack__content {
    max-width: 100%;
  }
  .pack__header {
    text-align: center;
  }
  .pack__btn {
    left: 50%;
    transform: translateX(-50%);
  }
  .bottom__text {
    font-size: 33px;
    max-width: 364px;
  }
  nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav__menu {
    position: fixed;
    right: 0px;
    top: 0;
    grid-template-columns: 1fr;
    background: #64398e;
    z-index: 2;
    padding: 20px;
    border: solid 1px #fff;
    padding-top: 60px;
    overflow: hidden;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .nav__menu.active {
    transform: translateX(0);
  }
  .nav__menu-item {
    min-height: 30px;
    height: auto;
    display: block;
    width: 200px;
  }
  .nav__subMenu.rows2 {
    grid-template-columns: 1fr;
  }
  .nav__subMenu {
    top: unset;
    position: relative;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 10px;
    max-height: 0;
  }
  .nav__menu-item:hover .nav__subMenu {
    max-height: 500px;
  }

  .nav__menu-btn {
    display: block;
    z-index: 4;
    height: 20px;
    width: 30px;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
  }
  .nav__divider {
    display: none;
  }
  .nav__menu-btn > span {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0);
    left: 50%;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .nav__menu-btn > span:first-child {
    top: 0;
    transition: top 0.3s 0.3s, transform 0.3s;
  }
  .nav__menu-btn > span:last-child {
    top: 100%;
    transition: top 0.3s 0.3s, transform 0.3s;
  }
  .nav__menu-btn > span:nth-child(2) {
    top: 50%;
    transition: opacity 0s 0.3s;
  }
  .nav__menu-btn.active > span:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.3s, transform 0.3s 0.3s;
  }
  .nav__menu-btn.active > span:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: top 0.3s, transform 0.3s 0.3s;
  }
  .nav__menu-btn.active > span:nth-child(2) {
    opacity: 0;
  }
  .power_btn-holder_m {
    display: block;
  }
  .power_btn-holder_m .power_btn {
    position: relative;
    left: 50%;
    top: 0;
    bottom: unset;
    transform: translate(-50%, 0);
    color: #64398e;
    grid-template-columns: 70px auto;
    width: 177px;
  }
  .power_btn-holder_m .power_btn img {
    grid-area: 1/ 2 / 2 / 1;
  }
}
@media all and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .footer__text {
    padding-bottom: 30px;
  }
  .text__block:nth-child(n + 2) {
    margin-top: 25px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fs_s {
    font-size: 16px;
  }
  .fs_m {
    font-size: 18px;
  }
  .section__shape_absolute {
    display: none;
  }
  .head__image {
    position: relative !important;
    width: 100% !important;
    -webkit-animation: none !important;
            animation: none !important;
    height: unset !important;
    margin-top: 60px;
  }
  .head__section {
    background: #64398e;
  }
  .head__header {
    text-align: center !important;
    padding: 40px 0 0 !important;
    font-size: 36px !important;
  }
  .head__btn {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 20px;
  }
  .head__container {
    padding-bottom: 45px !important;
  }
  .intro__section {
    padding: 40px 0 !important;
  }
  .intro__flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
  }
  .text__header,
  .text__header_s {
    font-size: 21px;
  }
  .causes__header,
  .ics__header,
  .types__header {
    font-size: 21px !important;
    text-align: center;
  }
  .ics__text {
    position: relative !important;
    top: unset !important;
    transform: none !important;
    right: unset !important;
  }
  .causes__text {
    font-size: 16px;
  }
  .bottom__section .container {
    position: relative;
    order: -1;
  }
  .bottom__section .section__shape_full {
    left: 100%;
    transform: scale(-1, -1) translate(100%, 0);
    max-width: unset;
    width: 168%;
  }
  .bottom__section .section__shape-image_right {
    max-width: unset;
  }
  .bottom__section {
    display: flex;
    flex-direction: column;
  }
  .bottom__text {
    position: relative;
    transform: none;
    top: unset;
    color: #64398e;
    text-align: center;
    font-size: 30px;
  }
  .text__grid {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    font-size: 16px;
  }
  .text__grid .text {
    font-size: 16px;
  }
  .text__list {
    -moz-columns: 1;
         columns: 1;
  }
  .intro__flex {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: 50px !important;
  }
  .intro__flex::before {
    width: 35px !important;
    height: 17px !important;
  }
  .intro__text {
    margin-top: 25px !important;
  }
  section:nth-child(n + 2) {
    padding: 0 !important;
    margin: 50px 0 0 !important;
  }
  .text__list {
    font-size: 16px;
    margin-top: 10px;
  }
  .types__subHeader {
    margin-top: 10px !important;
    font-size: 16px !important;
  }
  .text__block,
  .text__block_m {
    font-size: 16px;
  }
  .mt50,
  .mt40 {
    margin-top: 25px;
  }
  .patent__header,
  .pack__header {
    font-size: 50px;
  }
  .patent__subHeader {
    font-size: 21px;
  }
  .pack__image {
    width: 280px;
  }
}

.buyBtn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999;
}

.buyBtn_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -17px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: -5px 2px 4px rgba(0, 0, 0, 0.25);
  background: radial-gradient(71.03% 71.29% at 64.5% 66.24%, #8CC83C 35%, #88C239 45%, #7BB231 58%, #679723 72%, #4B7111 88%, #325000 100%);

}

.buyBtn_text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  width: 196px;
  height: 70px;
  background: linear-gradient(0deg, #4C740B 0%, #63921C 17%, #75AA2A 35%, #82BB34 54%, #8AC53A 74%, #8CC83C 100%);
  box-shadow: 5px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow: hidden;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;

}
@media all and (max-width: 639px){
  .buyBtn {
    bottom: auto;
    top: 14%;
  }
  .buyBtn_text {
    width: 137px;
    height: 49px;
    font-size: 15px;
  }
  .buyBtn_img {
    width: 56px;
    height: 56px;
    border-width: 4px;
  }
  .buyBtn_img img {
    width: 70%;
    margin-left: 2px;
    margin-top: 6px;
  }
}