* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SFPRODISPLAYREGULAR";
}

@font-face {
  font-family: "SFPRODISPLAYREGULAR";
  src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
  font-weight: 400;
}
@font-face {
  font-family: "SFPRODISPLAYMEDIUM";
  src: url(../fonts/SFPRODISPLAYMEDIUM.OTF);
  font-weight: 500;
}
@font-face {
  font-family: "SF-Pro-Display-Heavy";
  src: url(../fonts/SF-Pro-Display-Heavy.otf);
  font-weight: bold;
}
.burger-menu_button {
  position: relative;
  top: 0px;
  right: 15px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -10px;
}

.burger-menu_lines::after {
  content: "";
  top: 10px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #060606;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
  text-align: center;
}
.burger-menu_nav .active::after {
  background: linear-gradient(93deg, #0011E0, #FD21A2, #FE9045);
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  border-radius: 999px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.burger-menu_nav img {
  width: 205px;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 100%;
}

.burger-menu_link {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  line-height: 27px;
  margin-bottom: 32px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.burger-menu_link span {
  border-bottom: 2px solid #060606;
}
.burger-menu_link span:hover {
  color: #fff;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(6, 6, 6, 0.6);
  overflow: hidden;
  display: none;
  z-index: 10000000000000000;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 32px;
  max-width: 438px;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 10px;
}

.popup p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.popup .input-email {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-radius: 25px;
  width: 432px;
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  border: 1px solid #000;
}

.popup .btn-email {
  background-color: #f7d61e;
  padding: 15px 25px;
  color: #000;
  border: none;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  width: 432px;
  height: 52px;
}

.popup a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  margin-top: -10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 16px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 16px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.overlay-1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup-1 {
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup-bg {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 32px;
  max-width: 438px;
  border-radius: 8px;
  background-color: #141414;
}

.popup-bg img {
  margin-bottom: 65px;
}

.popup-bg h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.popup-bg span {
  font-size: 18px;
  font-weight: 400;
  color: #FCFCFC;
  font-family: "SFPRODISPLAYREGULAR";
}

.close-popup-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup-1:before {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1.5px;
  width: 22px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1.5px;
  width: 22px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup-1 {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.js-overlay-campaign-1 img {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

html {
  overflow-x: hidden;
}

body {
  background: #060606;
  color: #fff;
  overflow-x: hidden;
}

h2, h3, h4 {
  font-weight: 600;
}

.container {
  max-width: 1200px;
}

.burger-menu {
  display: none;
}

.a-btn_header {
  color: #FFFFFF;
  font-size: 17px;
  line-height: 22px;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 99px;
  background: linear-gradient(93deg, #0011E0, #FD21A2, #FE9045);
  font-weight: bold;
  transition: 0.3s all;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 1px;
}
.a-btn_header:hover {
  background: linear-gradient(93deg, #FE9045, #FD21A2, #0011E0);
  color: #fff;
}

.a-btn {
  padding: 12px 120px;
}
.a-btn:hover {
  background: linear-gradient(93deg, #FE9045, #FD21A2, #0011E0);
  color: #fff;
}

.a-btn_header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  background: linear-gradient(207deg, rgba(255, 255, 255, 0.87) 20.47%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-4em) skewX(-45deg);
  animation: moveLight 4.5s infinite ease-in-out;
}
.a-btn_header:before:hover {
  background: linear-gradient(93deg, #FE9045, #FD21A2, #0011E0);
  color: #fff;
}

@keyframes moveLight {
  0% {
    transform: translateX(-20em) skewX(-45deg);
  }
  100% {
    transform: translateX(40em) skewX(-45deg);
  }
}
.header-top {
  padding: 16px 0;
  width: 100%;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .container .logo img {
  width: 44px;
}
.header-top .container nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.header-top .container nav ul li {
  list-style-type: none;
}
.header-top .container nav ul li a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  margin-left: 44px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  line-height: 27px;
}
.header-top .container nav ul li a::after {
  background: linear-gradient(93deg, #0011E0, #FD21A2, #FE9045);
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  border-radius: 999px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header-top .container nav ul li a:hover:after, .header-top .container nav ul li a:focus:after {
  width: 100%;
}
.header-top .container nav ul li .active::after {
  background-color: #DEF552;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  border-radius: 999px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header-top .container nav ul li .active:hover:after, .header-top .container nav ul li .active:focus:after {
  width: 100%;
}

.header__fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000A0D;
  animation-name: header;
  animation-duration: 0.2s;
  z-index: 99999999;
}

@keyframes header {
  0% {
    opacity: 0;
    top: -100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.header .header-content {
  padding-top: 68px;
  padding-bottom: 80px;
}
.header .header-content .container {
  display: flex;
  justify-content: space-between;
}
.header .header-content .container .text {
  width: 50%;
  margin-top: 1%;
}
.header .header-content .container .text h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 52px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "SF-Pro-Display-Heavy";
}
.header .header-content .container .text h1 span {
  background: -webkit-linear-gradient(left, #FC616B, #FDA433);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: "SF-Pro-Display-Heavy";
}
.header .header-content .container .text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 28px;
}
.header .header-content .container .text .img-g {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 70px;
}
.header .header-content .container .text .img-g img {
  width: 215px;
}
.header .header-content .container .text .img-g .img-b {
  width: 218px;
}
.header .header-content .img .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.header .header-content .img .items .item {
  position: relative;
}
.header .header-content .img .items .item #before-after-slider {
  width: 272px;
  height: 452px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.header .header-content .img .items .item #before-after-slider img {
  width: 272px;
  height: 452px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-content .img .items .item #after-image {
  display: block;
}
.header .header-content .img .items .item #before-image {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}
.header .header-content .img .items .item #resizer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 5;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: #951ABB;
  touch-action: pan-y;
  cursor: pointer;
}
.header .header-content .img .items .item #resizer:after {
  background: url(../img/thumb.svg) center center no-repeat;
  content: "";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  position: absolute;
  margin: 0 0 0 -19px;
  width: 40px;
  height: 40px;
  z-index: 999;
}
.header .header-content .img .items .item .img-b {
  width: 272px;
  height: 452px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.header .header-content .img .items .item .avatar {
  position: absolute;
  left: 12px;
  bottom: 18px;
  border-radius: 999px;
  width: 100px;
  z-index: 99999;
}
.header .header-content .img .items .item .img-arrow {
  position: absolute;
  width: 78px;
  bottom: 78px;
  left: 98px;
  z-index: 99999;
}

.slider-content {
  padding: 80px 0;
  padding-bottom: 120px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: linear-gradient(93deg, #B11BB3, #FD5E6E, #FDBF1C);
}
.slider-content .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 15px;
  background-color: tomato;
  opacity: 1;
}
.slider-content .swiper-pagination-bullet-active {
  background-color: navy;
}
.slider-content .swiper-button-prev,
.slider-content .swiper-button-next {
  position: static;
  margin-left: 10px;
}
.slider-content .swiper-slide {
  width: auto;
}
.slider-content .slider-buttons button img {
  width: 48px;
}
.slider-content .slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-content .slider-top h2 {
  font-size: 36px;
  line-height: 44px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "SF-Pro-Display-Heavy";
  color: #FFFFFF;
}
.slider-content .swiper-slide {
  display: flex;
}
.slider-content .swiper-slide .str-block {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 12px;
}
.slider-content .swiper-slide .str-block h3 {
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 30px;
}
.slider-content .swiper-slide .str-block img {
  width: 129px;
}
.slider-content .swiper-slide .img-main {
  width: 272px;
  height: 432px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-right: 4px;
}
.slider-content .swiper-slide .text {
  background-color: #050505;
  padding: 24px;
  color: #fff;
  width: 100%;
  border-radius: 12px;
  height: 100%;
}
.slider-content .swiper-slide .text .star {
  width: 120px;
  margin-bottom: 12px;
}
.slider-content .swiper-slide .text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.slider-content .swiper-slide .text p {
  font-size: 18px;
  line-height: 26px;
}
.slider-content .swiper-slide .text .bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.slider-content .swiper-slide .text .bottom .decor {
  height: 52px;
}
.slider-content .swiper-pagination {
  display: none;
}

.header_bottom {
  margin-bottom: 0;
  background: none;
  padding: 0;
  margin: 0;
}

.slider-left {
  margin-bottom: 140px;
}
.slider-left .logo-slider {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 24px;
  animation: logoSlider 90s 0s infinite linear;
}
.slider-left .item {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(279deg, #000A0D 7.64%, #001B22 104.38%);
  display: flex;
  align-items: center;
  width: 382px;
}
.slider-left .item img {
  width: 76px;
  margin-right: 16px;
}
.slider-left .item .txt h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 2px;
}
.slider-left .item .txt p {
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  margin: 0;
}
.slider-left .item .txt p span {
  color: #DEF552;
  font-size: 26px;
  font-weight: bold;
}

@keyframes logoSlider {
  from {
    transform: translate(-300%);
  }
  to {
    transform: translate(100%);
  }
}
.news {
  margin-top: 140px;
  margin-bottom: 40px;
}
.news h2 {
  font-size: 36px;
  line-height: 44px;
  margin: 44px;
  font-weight: 700;
  font-family: "SF-Pro-Display-Heavy";
}
.news .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news .items .item img {
  width: 100%;
  margin-bottom: 20px;
}
.news .items .item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.left-right-content {
  background: url(../img/left-right-bg.jpg) center top/cover no-repeat;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -40px;
}
.left-right-content .left-img {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.left-right-content .left-img .img {
  display: flex;
  align-items: center;
  width: 49%;
}
.left-right-content .left-img .img .main {
  width: 272px;
  margin-right: 16px;
}
.left-right-content .left-img .img .arrow {
  width: 80px;
  margin-right: 16px;
}
.left-right-content .left-img .img .avatar {
  width: 140px;
}
.left-right-content .left-img .img .av-df {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.left-right-content .left-img .img .av-df img {
  width: 120px;
}
.left-right-content .left-img .text {
  width: 49%;
}
.left-right-content .left-img .text h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 12px;
  font-family: "SF-Pro-Display-Heavy";
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.left-right-content .left-img .text p {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 32px;
  color: #fff;
}
.left-right-content .right-img {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-right-content .right-img .img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 49%;
}
.left-right-content .right-img .img .main {
  width: 272px;
  margin-left: 16px;
}
.left-right-content .right-img .img .main-big {
  width: 556px;
}
.left-right-content .right-img .img .arrow {
  width: 80px;
  margin-left: 16px;
}
.left-right-content .right-img .img .avatar {
  width: 140px;
}
.left-right-content .right-img .text {
  width: 49%;
}
.left-right-content .right-img .text h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 12px;
  font-family: "SF-Pro-Display-Heavy";
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.left-right-content .right-img .text p {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 32px;
  color: #fff;
}

.download {
  padding-top: 80px;
  padding-bottom: 0px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background-color: #FFFFFF;
}
.download .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download .container .text {
  width: 580px;
}
.download .container .text h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "SF-Pro-Display-Heavy";
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download .container .text p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 26px;
  color: #060606;
}
.download .container .text img {
  width: 205px;
}
.download .container .img {
  width: 280px;
}
.download .footer {
  margin-top: 56px;
}

.footer {
  padding: 25px 0;
  background-color: #060606;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.footer .container nav ul li {
  list-style-type: none;
}
.footer .container nav ul li a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  margin-right: 32px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  line-height: 22px;
}
.footer .container nav ul li a::after {
  background: linear-gradient(93deg, #0011E0, #FD21A2, #FE9045);
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  border-radius: 999px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.footer .container nav ul li a:hover:after, .footer .container nav ul li a:focus:after {
  width: 100%;
}
.footer .container nav ul li .active::after {
  background: linear-gradient(93deg, #0011E0, #FD21A2, #FE9045);
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  border-radius: 999px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.footer .container nav ul li .active:hover:after, .footer .container nav ul li .active:focus:after {
  width: 100%;
}
.footer .container .corp {
  color: #9E9E9E;
  opacity: 0.7;
  font-weight: 300;
}

.form-bg {
  background: url(../img/form_bg.jpg) center right/cover no-repeat;
}
.form-bg .form {
  margin-top: 64px;
  margin-bottom: 100px;
}
.form-bg .form h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 32px;
  font-family: "SF-Pro-Display-Heavy";
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  display: inline-block;
}
.form-bg .form form {
  width: 800px;
}
.form-bg .form form h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
}
.form-bg .form form .g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.form-bg .form form .input-email {
  background-color: #1A1A1A;
  border-radius: 12px;
  border: none;
  outline: none;
  padding: 12px 16px;
  width: 100%;
  margin-bottom: 36px;
  color: #fff;
  font-size: 16px;
  border: 1px solid #1A1A1A;
}
.form-bg .form form .input-email::-moz-placeholder {
  color: #FCFCFC;
  opacity: 0.6;
}
.form-bg .form form .input-email::placeholder {
  color: #FCFCFC;
  opacity: 0.6;
}
.form-bg .form form .input-email:focus {
  border: 1px solid #FD21A2;
  outline: none;
}
.form-bg .form form .input-email:-webkit-autofill {
  background-color: #1A1A1A !important;
  color: #fff !important;
}
.form-bg .form form .input-email:-webkit-autofill:hover, .form-bg .form form .input-email:-webkit-autofill:focus, .form-bg .form form .input-email:-webkit-autofill:active {
  background-color: #1A1A1A !important;
  color: #fff !important;
}
.form-bg .form form input:-webkit-autofill,
.form-bg .form form textarea:-webkit-autofill,
.form-bg .form form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #1A1A1A inset !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid #FD21A2;
}
.form-bg .form form input:-moz-autofill,
.form-bg .form form textarea:-moz-autofill,
.form-bg .form form select:-moz-autofill {
  box-shadow: 0 0 0px 1000px #1A1A1A inset !important;
  -moz-text-fill-color: #fff !important;
  border: 1px solid #FD21A2;
}
.form-bg .form form input:-ms-autofill,
.form-bg .form form textarea:-ms-autofill,
.form-bg .form form select:-ms-autofill {
  box-shadow: 0 0 0px 1000px #1A1A1A inset !important;
  -ms-text-fill-color: #fff !important;
  border: 1px solid #FD21A2;
}
.form-bg .form form .input-email_textarea {
  margin-bottom: 0;
}
.form-bg .form form .custom-select {
  position: relative;
  display: inline-block;
}
.form-bg .form form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #FD21A2;
  border-radius: 4px;
  background-color: #fff;
}
.form-bg .form form .select-arrow {
  position: absolute;
  top: 45%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/ph_caret-down.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.form-bg .form form option {
  padding: 14px 16px;
  font-size: 18px;
}
.form-bg .form form option:checked {
  background-color: #202020;
  color: #fff;
}
.form-bg .form form option:hover {
  background-color: #242424;
  color: #fff;
}
.form-bg .form form textarea {
  margin-bottom: 0;
  height: 112px;
  resize: none;
}
.form-bg .form form textarea::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.form-bg .form form textarea::-webkit-scrollbar-thumb {
  background-color: #9F9F9F;
}
.form-bg .form form textarea::-webkit-scrollbar-thumb:hover {
  background-color: #9F9F9F;
}
.form-bg .form form textarea::-webkit-scrollbar-track {
  background-color: #141414;
}
.form-bg .form form textarea::-webkit-scrollbar-track:hover {
  background-color: #141414;
}
.form-bg .form form .fr {
  color: #FCFCFC;
  opacity: 0.6;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}
.form-bg .form form .btn-email {
  font-weight: 600;
  padding: 14px 166px;
  border: none;
  color: #fff;
  margin-top: 28px;
  font-size: 17px;
  line-height: 22px;
  transition: 0.3s all;
}

.gh {
  height: 10px;
}

.img-avatar-mob {
  display: none;
}

.left-right-content .right-img .img .main-mob {
  display: none;
}

.privacy-text {
  padding-top: 60px;
  padding-bottom: 100px;
}
.privacy-text h2 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 40px;
  font-weight: 900;
  background: -webkit-linear-gradient(left, #A01AB7, #FB5875, #FCBA22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-transform: uppercase;
  font-family: "SF-Pro-Display-Heavy";
}
.privacy-text h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
  margin-top: 40px;
}
.privacy-text p {
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
  .burger-menu {
    display: block;
  }
  .nav {
    display: none;
  }
  .header .header-content .container {
    flex-direction: column;
  }
  .header .header-content .container .text {
    width: 100%;
  }
  .header .header-content .container .img {
    width: 100%;
    padding-top: 150px;
    text-align: center;
  }
  .header .header-content .container .img .img-r .i-top {
    transform: rotate(-65deg);
  }
  .header, .video-block {
    margin-bottom: 124px;
  }
  .download {
    background-color: #fff;
    padding-top: 50px;
  }
  .header .header-content .container .img .img-r {
    padding-top: 0;
    margin-top: -100px;
  }
  .form-bg .form form {
    width: 100%;
  }
  .privacy-text {
    padding-top: 0;
    margin-top: -20px;
  }
  .header-top .container .a-btn_header {
    display: none;
  }
  .header .header-content {
    padding-top: 40px;
  }
  .header {
    background: none;
  }
  .header {
    padding-bottom: 60px;
    margin-bottom: 0;
  }
  .header .header-content .img {
    display: block;
    margin-top: 32px;
  }
  .news {
    margin-top: 70px;
  }
  .header .header-content .container .text {
    margin-top: 0;
  }
  .d-block {
    width: auto;
    display: inline-block;
    width: 190px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .table-block .table-content .big .title, .table-block .table-content .sm .title, .table-block .table-content p {
    font-size: 18px;
    line-height: 24px;
    height: 92px;
  }
  .table-block .table-content .big p {
    height: 92px;
  }
  .table-block .table-content p img {
    width: 24px;
  }
  .table-block .table-content p {
    padding: 12px;
  }
  .table-block .table-content {
    text-align: left;
  }
  .table-block .table-content .sm .p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .table-block {
    padding: 56px 0;
  }
  .slider-top {
    margin-bottom: 0;
  }
  .slider-buttons {
    display: none;
  }
  .slider-content {
    padding: 56px 0;
    padding-bottom: 100px;
  }
  .a-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
  }
  .header .header-content .img .items {
    max-width: 50%;
    margin: 0;
  }
  .header .header-content .container {
    justify-content: flex-start;
  }
  .header .header-content .container .img {
    padding-top: 0;
  }
  .slider-content .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    margin-top: 46px;
  }
  .slider-content .swiper-pagination-bullet {
    margin: 0 3px;
    width: 8px;
    height: 8px;
    background-color: #5A5A5A;
  }
  .slider-content .swiper-slide .text .bottom .decor {
    height: auto;
    width: 72px;
  }
  .slider-content .swiper-slide .str-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .slider-content .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .slider-container {
    width: 97%;
    max-width: 97%;
    margin: 0 auto;
  }
  .slider-content .swiper-slide {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  .slider-content .swiper-slide .img-main {
    width: 100%;
    height: auto;
  }
  .slider-content .swiper-slide .text {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .slider-content .swiper-slide .img-main {
    width: 100%;
    border-radius: 0;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-top: -2px;
    height: auto;
  }
  .slider-content .swiper-slide .text .bottom .avatar {
    width: 76px;
    height: 76px;
    margin-bottom: 12px;
  }
  .slider-content .swiper-slide .text p {
    font-size: 18px;
    line-height: 26px;
    color: #e7e7e7;
    margin: 0;
  }
  .str-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  .slider-content .swiper-slide .text h3 {
    font-size: 20px;
    margin: 0;
  }
  .slider-content .swiper-slide .text .star {
    width: 40%;
    margin-bottom: 12px;
  }
  .slider-content .swiper-slide .text .bottom .avatar {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    margin: 0;
  }
  .left-right-content {
    padding: 56px 0;
  }
  .left-right-content .left-img {
    flex-direction: column-reverse;
    padding: 40px 0;
  }
  .left-right-content .right-img {
    padding: 40px 0;
  }
  .left-right-content .left-img .img .arrow {
    display: none;
  }
  .left-right-content .left-img .text h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .left-right-content .left-img .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .left-right-content .left-img .img .main {
    margin: 0;
  }
  .left-right-content .left-img .img .avatar {
    position: absolute;
    width: 100px;
    display: none;
  }
  .left-right-content .left-img .img .avatar-2 {
    position: absolute;
    width: 100px;
    bottom: 12px;
    left: 13.5%;
    display: none;
  }
  .left-right-content .left-img .img .av-df {
    position: absolute;
    bottom: 17px;
    display: flex;
    align-items: center;
    flex-direction: row;
    left: 50%;
    transform: translate(-50%);
  }
  .left-right-content .left-img .img .av-df img {
    width: 100px;
    position: static;
    display: block;
  }
  .left-right-content .left-img .text {
    margin-bottom: 36px;
    width: 100%;
  }
  .left-right-content .right-img {
    flex-direction: column;
  }
  .left-right-content .right-img .img .arrow {
    display: none;
  }
  .left-right-content .right-img .text h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .left-right-content .right-img .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .left-right-content .right-img .img .main {
    margin: 0;
  }
  .left-right-content .right-img .img .avatar {
    position: absolute;
    width: 100px;
    display: none;
  }
  .left-right-content .right-img .img .avatar-2 {
    position: absolute;
    width: 100px;
    bottom: 12px;
    left: 13.5%;
    display: none;
  }
  .left-right-content .right-img .img .avatar-3 {
    position: absolute;
    width: 100px;
    bottom: 12px;
    left: 13.5%;
  }
  .left-right-content .right-img .img .avatar-4 {
    position: absolute;
    width: 100px;
    bottom: 135px;
    left: 13.5%;
    display: none;
  }
  .img-avatar-mob {
    display: block;
  }
  .img-avatar-mob-1 {
    position: absolute;
    bottom: 12px;
    left: 15%;
    width: 172px;
  }
  .img-avatar-mob-2 {
    position: absolute;
    bottom: 200px;
    left: 15%;
    width: 180px;
  }
  .img-avatar-mob-3 {
    position: absolute;
    bottom: 90px;
    left: 15%;
    width: 180px;
  }
  .left-right-content .right-img .text {
    margin-bottom: 36px;
    width: 100%;
  }
  .left-right-content {
    padding: 0;
  }
  .left-right-content .left-img .img .main {
    width: 75%;
  }
  .left-right-content .right-img .img .main {
    width: 75%;
  }
  .left-right-content .right-img .img .main-big {
    display: none;
  }
  .left-right-content .right-img .img .main-mob {
    display: block;
    width: 75%;
  }
  .left-right-content {
    background: #050505;
  }
  .table-block .table-content .sm .title, .table-block .table-content .big .title {
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .download .container .img {
    display: none;
  }
  .download .container .text h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .download .container .text p {
    margin-bottom: 44px;
  }
  .download {
    padding-top: 56px;
    margin-bottom: 0px;
    background-color: #fff;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .container nav {
    margin-bottom: 24px;
  }
  .slick-next {
    right: -500px;
  }
  .slick-prev {
    left: -500px;
  }
  .slick-dots li button:before {
    color: transparent;
    width: 10px;
    height: 10px;
    background-color: #FCFCFC;
    border-radius: 100%;
    opacity: 0.6;
  }
  .header .header-content .container .text h1 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 28px;
  }
  .header .header-content .container .text p {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .header .header-content .container .text .img-g {
    flex-direction: column;
    align-items: flex-start;
  }
  .header .header-content .container .text .img-g .img-b {
    margin-bottom: 0px;
    margin-top: 40px;
  }
  .header .header-content .container .text .img-g img {
    margin: 0;
  }
  .video-block .slide .top {
    justify-content: flex-end;
  }
  .video-block .slide .top .play {
    display: none;
  }
  .header .header-content .img .items {
    max-width: 100%;
  }
  .video-block {
    height: 430px;
  }
  .video-block .slide video {
    height: 420px;
  }
  .slick-dots li {
    margin: 0;
  }
  .slick-dots li.slick-active button:before {
    background-color: #fff;
    opacity: 1;
    z-index: 9;
    box-shadow: 0 0 0 2px #000000, 0 0 0 3px #888;
    color: transparent;
  }
  .form-bg .form h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .form-bg .form {
    margin-top: -30px;
  }
  .form-bg .form form .g {
    grid-template-columns: repeat(1, 1fr);
  }
  .form-bg {
    background: none;
    background-color: #060606;
  }
  .form-bg .form form .btn-email {
    width: 100%;
    padding: 14px;
    font-size: 18px;
  }
  .form-bg .form {
    margin-bottom: 70px;
  }
  .form-bg .form form option {
    font-size: 16px;
  }
  .form-bg .form form .g-n {
    gap: 0;
  }
  .popup-bg {
    width: 90%;
  }
  .popup-bg span {
    font-size: 18px;
  }
  .popup-bg h3 {
    font-size: 22px;
  }
  .video-block .slide video {
    display: none;
  }
  .video-block .slide .video {
    display: block;
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
  }
  .video-block .slide .video, .video-block {
    height: 650px;
  }
  .form-bg .form form .fr {
    font-size: 14px;
    margin-top: -5px;
  }
  .form-bg .form form .input-email {
    font-size: 16px;
  }
  .form-bg .form form .g {
    gap: 0;
  }
  .privacy-text p {
    font-size: 16px;
  }
  .privacy-text h2 {
    margin-bottom: 30px;
  }
  .news .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 52px;
  }
  .news .items .item {
    display: flex;
    flex-direction: column-reverse;
  }
  .news .items .item img {
    margin-bottom: 0;
  }
  .news .items .item h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .download .container .text p {
    font-size: 18px;
    line-height: 26px;
  }
  .news h2, .download .container .text h2 {
    margin-bottom: 14px;
  }
  .news h2 {
    margin-bottom: 24px;
  }
  .news {
    margin-bottom: 50px;
  }
  .header {
    background: none;
  }
  .slider-left {
    margin-bottom: 108px;
  }
  .slider-left .logo-slider {
    animation: logoSlider 30s 1s infinite linear;
  }
  .download::before {
    display: none;
  }
  .header .header-content .container .text h1 {
    margin-bottom: 18px;
  }
  .privacy-text h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .header .header-content .container .text .img-g img {
    width: 218px;
  }
  .header .header-content .container .text .img-g .img-b {
    width: 218px;
    margin-top: 0;
  }
  .header .header-content .container .text .img-g {
    gap: 12px;
  }
  .header .header-content .container .img {
    overflow: scroll;
  }
  .header .header-content {
    padding-bottom: 0;
  }
  .header .header-content .container .text h1 {
    margin-bottom: 12px;
  }
  .header .header-content .container .text p {
    margin-bottom: 24px;
  }
}
@media (max-width: 430px) {
  .footer .container nav ul li a {
    font-size: 18px;
    margin-right: 26px;
  }
  .header .header-content .container .text .img-g {
    margin-top: 32px;
  }
  .header .header-content .container .text h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 12px;
  }
  .header .header-content .container .text p {
    font-size: 18px;
    line-height: 26px;
  }
  .header .header-content .container .img .img-l .video {
    width: 270px;
  }
  .header .header-content .container .img .img-l img {
    width: 250px;
  }
  .header .header-content .container .img .img-r .i-top {
    width: 90px;
  }
  .header .header-content .container .img .img-r .i-top {
    margin: auto;
  }
  .header .header-content .container .img .img-r .i-bottom {
    z-index: 99;
    position: relative;
    margin: auto;
  }
  .header .header-content .container .img .img-l {
    margin-left: 5px;
  }
  .header .header-content .container .img .img-r {
    display: flex;
    position: absolute;
    right: 15px;
  }
  .header .header-content .container .img .img-r .i-bottom {
    margin-left: 20px;
  }
  .header .header-content .container .img .img-r .i-top {
    margin-bottom: -5px;
  }
  .video-block .slide .video, .video-block {
    height: 430px;
  }
  .header .header-content {
    padding-top: 40px;
  }
  .privacy-text h3 {
    margin-top: 0;
  }
  .marquee p {
    animation: text 10s infinite linear;
  }
  .table-block h2, .slider-content .slider-top h2, .news h2, .download .container .text h2 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 24px;
  }
}
@media (max-width: 410px) {
  .header .header-content .container .text h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 12px;
  }
  .left-right-content .left-img .text h2, .left-right-content .right-img .text h2 {
    font-size: 29px;
    line-height: 37px;
    margin-bottom: 8px;
  }
  .left-right-content .left-img .text p, .left-right-content .right-img .text p {
    font-size: 21px;
    line-height: 26px;
  }
}/*# sourceMappingURL=style.css.map */