* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Unbounded", sans-serif;
}

html {
  font-size: 0.0462962963vw;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 0.2659574468vw;
  }
}
body {
  background-color: #121328;
  crollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

.ac_btn {
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  transition: all 0.3s;
}
.ac_btn svg path {
  transition: all 0.3s;
}

.mobile_menu {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #121328;
  padding-top: 63rem;
  padding-bottom: 15rem;
  transition: all 0.4s;
  top: -100%;
}
.mobile_menu ul {
  display: flex;
  padding: 0 16rem;
  justify-content: space-between;
  margin-bottom: 16rem;
}
.mobile_menu ul li a {
  font-size: 14rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.mobile_menu .mobile_contact_btn {
  width: calc(100% - 32rem);
  margin: 0 auto;
  height: 44rem;
  font-size: 14rem;
  line-height: 14px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  transition: all 0.3s;
}
.mobile_menu .mobile_contact_btn svg {
  margin-left: 8rem;
  width: 20rem;
  height: 20rem;
}
.mobile_menu .mobile_contact_btn:hover {
  background-color: #F9F9F9;
  border: 1rem solid #F9F9F9;
  color: #121328;
}
.mobile_menu .mobile_contact_btn:hover svg path {
  transition: all 0.3s;
  stroke: #121328;
}

.open_mob_menu {
  top: 0;
}

.header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  padding: 12rem 40rem 2rem 40rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header .header__logo .header__logo_img {
  width: 183rem;
  height: 32rem;
}
.header .header__nav ul {
  display: flex;
  align-items: center;
  gap: 80rem;
  list-style: none;
}
.header .header__nav ul li {
  padding: 10rem 10rem 14rem 10rem;
}
.header .header__nav ul li a {
  color: #fff;
  font-size: 18rem;
  font-weight: 300;
  color: #fff;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  position: relative;
}
.header .header__nav ul li a::after {
  content: "";
  width: 0;
  height: 2rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  transition: all 0.4s;
}
.header .header__nav ul li a:hover::after {
  width: 100%;
}
.header .header__btn {
  width: 241rem;
  height: 45rem;
  font-size: 18rem;
  line-height: 18px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}
.header .header__btn::before {
  content: "";
  height: 100rem;
  width: 5rem;
  transform: rotate(-25deg);
  position: absolute;
  z-index: 8;
  left: -50rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  box-shadow: 0rem 0rem 15rem 15rem rgba(255, 255, 255, 0.8);
}
.header .header__btn svg {
  margin-left: 14rem;
  width: 24rem;
  height: 24rem;
  transition: all 0.4s;
}
.header .header__btn:hover::before {
  content: "";
  left: 120%;
}
.header .header__btn:hover svg {
  transform: rotate(90deg);
}
.header .mobile_btn {
  display: none;
}

@media screen and (max-width: 600px) {
  .header {
    padding: 12rem 16rem 2rem 16rem;
  }
  .header .header__logo .header__logo_img {
    width: 183rem;
    height: 32rem;
  }
  .header .header__nav {
    display: none;
  }
  .header .header__btn {
    display: none;
  }
  .header .mobile_btn {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    width: 32rem;
    height: 32rem;
    padding: 8rem 4rem;
    transition: all 0.4s;
  }
  .header .mobile_btn span {
    border: 1rem solid #f9f9f9;
  }
  .header .mobile_btn span:nth-child(1) {
    width: 18rem;
    transition: all 0.4s;
  }
  .header .mobile_btn span:nth-child(2) {
    width: 24rem;
    transition: all 0.4s;
  }
  .header .mobile_btn span:nth-child(3) {
    width: 18rem;
    transition: all 0.4s;
    margin-left: auto;
  }
  .header .active {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .header .active span {
    position: absolute;
  }
  .header .active span:nth-child(1) {
    width: 24rem;
    transform: rotate(-45deg);
  }
  .header .active span:nth-child(2) {
    display: none;
  }
  .header .active span:nth-child(3) {
    width: 24rem;
    transform: rotate(45deg);
    margin-left: auto;
  }
}
.footer {
  padding-top: 80rem;
  background-color: #121328;
  display: flex;
  flex-direction: column;
}
.footer .footer__row {
  padding: 0 40rem;
  display: flex;
  align-items: flex-start;
}
.footer .footer__row:nth-child(2) {
  flex-direction: column;
  margin-bottom: 15rem;
  gap: 8rem;
}
.footer .footer__row:nth-child(2) .footer_links_row {
  display: flex;
  width: 100%;
}
.footer .footer__row:nth-child(2) .footer_links_row .footer__col {
  margin-bottom: 0;
}
.footer .footer__row .footer__col {
  width: 25%;
  margin-bottom: 24rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.footer .footer__row .footer__col .other_doc__list {
  position: absolute;
  bottom: 10rem;
  border-radius: 12rem;
  width: 80%;
  left: 0;
  padding: 10rem 20rem;
  display: none;
  flex-direction: column;
  border: 1rem solid #fff;
  gap: 8rem;
  background-color: rgb(18, 19, 40);
}
.footer .footer__row .footer__col .other_doc__list span {
  display: flex;
  justify-content: center;
}
.footer .footer__row .footer__col .col__title {
  font-weight: 900;
  font-size: 36rem;
  text-transform: uppercase;
  color: #F9F9F9;
  padding: 10rem;
  margin-bottom: 24rem;
}
.footer .footer__row .footer__col .footer__title {
  font-weight: 900;
  font-size: 76rem;
  color: #F9F9F9;
}
.footer .footer__row .footer__col .footer_menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.footer .footer__row .footer__col .footer_menu li {
  padding: 10rem;
}
.footer .footer__row .footer__col .footer_menu li a {
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  text-decoration: none;
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer__row .footer__col .footer_menu li a::after {
  content: "";
  width: 0;
  height: 1rem;
  background-color: #fff;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
}
.footer .footer__row .footer__col .footer_menu li a:hover::after {
  content: "";
  width: 100%;
}
.footer .footer__row .footer__col .footer__social a {
  display: flex;
  align-items: center;
  padding: 10rem;
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  text-decoration: none;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer__row .footer__col .footer__social a svg {
  margin-right: 6rem;
  width: 32rem;
  height: 32rem;
}
.footer .footer__row .footer__col .footer__social a::after {
  content: "";
  width: 0;
  height: 1rem;
  background-color: #fff;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
}
.footer .footer__row .footer__col .footer__social a:hover::after {
  content: "";
  width: 100%;
}
.footer .footer__row .footer__col .footer__contacts a {
  display: flex;
  align-items: center;
  padding: 10rem;
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  text-decoration: none;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer__row .footer__col .footer__contacts a svg {
  margin-right: 6rem;
  width: 32rem;
  height: 32rem;
}
.footer .footer__row .footer__col .footer__contacts a::after {
  content: "";
  width: 0;
  height: 1rem;
  background-color: #fff;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
}
.footer .footer__row .footer__col .footer__contacts a:hover::after {
  content: "";
  width: 100%;
}
.footer .footer__row .footer__col span {
  font-size: 12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding-left: 10rem;
}
.footer .footer__row .footer__col span:not(:last-child) {
  margin-bottom: 8rem;
}
.footer .footer__row .footer__col span a {
  font-size: 12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer__row .footer__col span a::after {
  content: "";
  width: 0;
  height: 1rem;
  background-color: #fff;
  transition: all 0.4s;
  position: absolute;
  bottom: 0;
}
.footer .footer__row .footer__col span a:hover::after {
  content: "";
  width: 100%;
}
.footer .footer_animate {
  width: 100%;
  overflow: hidden;
}
.footer .footer_animate .marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 100rem;
  animation: marquee 30s linear infinite;
  height: 242rem;
}
.footer .footer_animate .marquee-content .img {
  display: flex;
  justify-content: center;
}
.footer .footer_animate .marquee-content .img img {
  height: 100%;
}

@media screen and (max-width: 600px) {
  .footer {
    padding-top: 80rem;
  }
  .footer .footer__row {
    padding: 0 16rem;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .footer__row:nth-child(2) {
    flex-direction: column;
    margin-bottom: 15rem;
    gap: 0;
  }
  .footer .footer__row:nth-child(2) .footer_links_row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
  }
  .footer .footer__row:nth-child(2) .footer_links_row .footer__col {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .footer__row .footer__col {
    width: 50%;
    margin-bottom: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer__row .footer__col .other_doc__list {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .footer .footer__row .footer__col .col__title {
    font-size: 18rem;
    padding: 0 0 0 4rem;
    margin-bottom: 4rem;
  }
  .footer .footer__row .footer__col .footer__title {
    font-weight: 900;
    font-size: 30rem;
    color: #F9F9F9;
  }
  .footer .footer__row .footer__col .footer_menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10rem;
  }
  .footer .footer__row .footer__col .footer_menu li {
    padding: 10rem 0 14.5rem 4rem;
  }
  .footer .footer__row .footer__col .footer_menu li a {
    font-size: 12rem;
  }
  .footer .footer__row .footer__col .footer__social {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-top: 10rem;
  }
  .footer .footer__row .footer__col .footer__social a {
    padding: 0;
    font-size: 12rem;
  }
  .footer .footer__row .footer__col .footer__social a svg {
    margin-right: 6rem;
    width: 32rem;
    height: 32rem;
  }
  .footer .footer__row .footer__col .footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-top: 10rem;
  }
  .footer .footer__row .footer__col .footer__contacts a {
    padding: 0;
    font-size: 12rem;
  }
  .footer .footer__row .footer__col .footer__contacts a svg {
    margin-right: 6rem;
    width: 32rem;
    height: 32rem;
  }
  .footer .footer__row .footer__col span {
    font-size: 12rem;
    padding-left: 0;
    text-align: center;
  }
  .footer .footer__row .footer__col span:not(:last-child) {
    margin-bottom: 8rem;
  }
  .footer .footer__row .footer__col span a {
    font-size: 12rem;
  }
  .footer .footer_animate {
    width: 100%;
    overflow: hidden;
  }
  .footer .footer_animate .marquee-content {
    display: flex;
    white-space: nowrap;
    gap: 10rem;
    animation: marquee 10s linear infinite;
  }
  .footer .footer_animate .marquee-content .img {
    min-width: 100%;
  }
  .footer .footer_animate .marquee-content .img img {
    width: 90%;
  }
}
.section__discuss {
  position: fixed;
  top: 0;
  right: -50vw;
  width: 50vw;
  background-color: #fff;
  height: 100vh;
  z-index: 99999;
  padding: 60rem 40rem 0 40rem;
  border-radius: 8rem 0 0 8rem;
  transition: all 0.6s;
}
.section__discuss .close {
  padding: 10rem;
  font-size: 18rem;
  font-weight: 300;
  color: #121328;
  position: absolute;
  top: 10rem;
  right: 29rem;
  cursor: pointer;
}
.section__discuss .title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #E530FF;
  text-transform: uppercase;
  margin-bottom: 40rem;
}
.section__discuss .subtitle {
  font-size: 18rem;
  font-weight: 300;
  color: #121328;
  max-width: 412rem;
  margin-left: auto;
  margin-bottom: 36rem;
}
.section__discuss .form_block form {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}
.section__discuss .form_block form .row {
  display: flex;
  gap: 16rem;
  align-items: flex-start;
}
.section__discuss .form_block form .row input[type=text], .section__discuss .form_block form .row input[type=email], .section__discuss .form_block form .row input[type=tel] {
  height: 55rem;
  background-color: #EFEFEF;
  border-radius: 12rem;
  font-size: 18rem;
  font-weight: 300;
  border: none;
  padding-left: 16rem;
  width: 33.3333333333%;
  color: #121328;
}
.section__discuss .form_block form .row textarea {
  width: 100%;
  height: 100rem;
  background-color: #EFEFEF;
  border-radius: 12rem;
  font-size: 18rem;
  font-weight: 300;
  border: none;
  padding: 16rem;
  resize: none;
  color: #121328;
}
.section__discuss .form_block form .row p {
  font-size: 12rem;
  font-weight: 300;
  color: #121328;
  max-width: 50%;
}
.section__discuss .form_block form .row p a {
  font-size: 12rem;
  font-weight: 300;
  color: #121328;
}
.section__discuss .form_block form .row button {
  width: 412rem;
  height: 101rem;
  position: relative;
  margin-left: auto;
  border: none;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  border-radius: 12rem;
  cursor: pointer;
  font-size: 18rem;
  font-weight: 300;
  line-height: 140%;
  color: #fff;
  padding: 16rem 0 0 20rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.section__discuss .form_block form .row button svg {
  position: absolute;
  right: 16rem;
  bottom: 16rem;
}
.section__discuss .form_block form .row button svg path {
  transition: all 0.3s;
}
.section__discuss .form_block form .row button:hover {
  background-color: #F9F9F9;
  border: 1rem solid #121328;
  color: #121328;
}
.section__discuss .form_block form .row button:hover svg path {
  stroke: #121328;
}
.section__discuss .subtitle_n {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "HelveticaNeueCyr";
  font-size: 36rem;
  font-weight: 900;
  color: #E530FF;
  text-transform: uppercase;
  margin: 38rem auto 40rem auto;
}
.section__discuss .contacts_wrap {
  display: flex;
  width: 100%;
}
.section__discuss .contacts_wrap .col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.section__discuss .contacts_wrap .col a {
  display: flex;
  align-items: center;
  font-size: 18rem;
  line-height: 32rem;
  font-weight: 300;
  color: #121328;
  text-decoration: none;
  padding: 10rem;
}
.section__discuss .contacts_wrap .col a svg {
  width: 32rem;
  height: 32rem;
  margin-right: 6rem;
}

.open__discuss {
  right: 0;
}

@media screen and (max-width: 600px) {
  .section__discuss {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    padding: 44rem 16rem 20rem 16rem;
    border-radius: 8rem 0 0 8rem;
    transition: all 0.6s;
    overflow: auto;
    crollbar-width: none;
    -ms-overflow-style: none;
  }
  .section__discuss::-webkit-scrollbar {
    display: none;
  }
  .section__discuss .close {
    padding: 0;
    font-size: 14rem;
    top: 44rem;
    right: 16rem;
  }
  .section__discuss .title {
    font-size: 24rem;
    font-weight: 900;
    margin-bottom: 23rem;
    text-align: left;
  }
  .section__discuss .subtitle {
    font-size: 14rem;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 23rem;
  }
  .section__discuss .form_block form {
    gap: 6rem;
  }
  .section__discuss .form_block form .row {
    gap: 6rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .section__discuss .form_block form .row input[type=text], .section__discuss .form_block form .row input[type=email], .section__discuss .form_block form .row input[type=tel] {
    height: 44rem;
    border-radius: 8rem;
    font-size: 14rem;
    padding-left: 8rem;
    width: 100%;
  }
  .section__discuss .form_block form .row textarea {
    width: 100%;
    height: 88rem;
    background-color: #EFEFEF;
    border-radius: 8rem;
    font-size: 14rem;
    padding: 8rem;
  }
  .section__discuss .form_block form .row p {
    font-size: 8rem;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .section__discuss .form_block form .row p a {
    font-size: 8rem;
  }
  .section__discuss .form_block form .row button {
    width: 100%;
    height: 44rem;
    border-radius: 8rem;
    font-size: 14rem;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .section__discuss .form_block form .row button svg {
    position: relative;
    right: auto;
    bottom: auto;
    width: 20rem;
    height: 20rem;
    margin-left: 4rem;
  }
  .section__discuss .form_block form .row button svg path {
    transition: all 0.3s;
  }
  .section__discuss .form_block form .row button:hover {
    background-color: #F9F9F9;
    border: 1rem solid #121328;
    color: #121328;
  }
  .section__discuss .form_block form .row button:hover svg path {
    stroke: #121328;
  }
  .section__discuss .subtitle_n {
    font-size: 18rem;
    margin: 24rem auto 23rem auto;
  }
  .section__discuss .contacts_wrap {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
  }
  .section__discuss .contacts_wrap .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
  .section__discuss .contacts_wrap .col a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    font-size: 14rem;
    line-height: 14px;
    border-radius: 8rem;
    border: 1rem solid #121328;
    height: 44rem;
  }
  .section__discuss .contacts_wrap .col a svg {
    width: 20rem;
    height: 20rem;
    margin-right: 0;
    margin-left: 4rem;
  }
  .open__discuss {
    right: 0;
  }
}
.page_home {
  crollbar-width: none;
  -ms-overflow-style: none;
}
.page_home::-webkit-scrollbar {
  display: none;
}
.page_home .section {
  transition: all 0.4s;
  scroll-snap-align: start;
}
.page_home .section__hero {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg/bg_hero.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 137rem 40rem 40rem 40rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page_home .section__hero .fp-overflow {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.page_home .section__hero .hero__title {
  font-family: "HelveticaNeueCyr";
  color: #fff;
  font-size: 76rem;
  font-weight: 900;
}
.page_home .section__hero .hero__title span {
  color: #E530FF;
}
.page_home .section__hero .hero_text {
  margin-top: 24rem;
  font-size: 24rem;
  color: #fff;
  font-weight: 300;
  max-width: 832rem;
}
.page_home .section__hero .hero__btn {
  margin-top: auto;
  width: 412rem;
  height: 101rem;
  border-radius: 12rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  position: relative;
  font-size: 18rem;
  font-weight: 300;
  line-height: 140%;
  color: #fff;
  padding: 16rem 0 0 20rem;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.page_home .section__hero .hero__btn::before {
  content: "";
  height: 150rem;
  width: 5rem;
  transform: rotate(-25deg);
  position: absolute;
  top: -50rem;
  z-index: 8;
  left: -50rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  box-shadow: 0rem 0rem 15rem 15rem rgba(255, 255, 255, 0.8);
}
.page_home .section__hero .hero__btn svg {
  position: absolute;
  right: 16rem;
  bottom: 16rem;
  transition: all 0.3s;
}
.page_home .section__hero .hero__btn:hover::before {
  left: 120%;
}
.page_home .section__hero .hero__btn:hover svg {
  transform: rotate(180deg);
}
.page_home .section__about {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg/bg_about.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_home .section__about .fp-overflow {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_home .section__about .about__content {
  max-width: 824rem;
}
.page_home .section__about .about__content .about__title {
  font-family: "HelveticaNeueCyr";
  color: #fff;
  font-size: 76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40rem;
}
.page_home .section__about .about__content .about__text {
  font-size: 24rem;
  color: #fff;
  font-weight: 300;
  text-align: center;
}
.page_home .section__about .about__content .about__btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  margin-top: 40rem;
  width: 412rem;
  height: 57rem;
  border-radius: 12rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  position: relative;
  font-size: 18rem;
  line-height: 57rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.page_home .section__about .about__content .about__btn:hover {
  background-color: #F9F9F9;
  border: 1rem solid #F9F9F9;
  color: #121328;
}
.page_home .section__products {
  width: 100%;
  height: 100vh;
  background-color: #121328;
  overflow: hidden;
  padding-bottom: 40rem;
  scroll-behavior: smooth;
}
.page_home .section__products .fp-overflow {
  height: 100vh;
}
.page_home .section__products .products__content {
  width: 100%;
  padding: 95rem 40rem 0 40rem;
}
.page_home .section__products .products__content .content__title {
  font-family: "HelveticaNeueCyr";
  color: #fff;
  font-size: 76rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40rem;
}
.page_home .section__products .products__content .content__text {
  max-width: 811rem;
  margin-left: auto;
  font-size: 24rem;
  color: #fff;
  font-weight: 300;
}
.page_home .section__products .products__content .products {
  display: flex;
  justify-content: space-between;
  gap: 24rem;
  margin-top: 40rem;
}
.page_home .section__products .products__content .products .item {
  display: flex;
  flex-direction: column;
  width: 50%;
  text-decoration: none;
  gap: 20rem;
}
.page_home .section__products .products__content .products .item .item_img {
  width: 100%;
  height: 1000rem;
  overflow: hidden;
  border-radius: 12rem;
}
.page_home .section__products .products__content .products .item .item_img img {
  width: 100%;
}
.page_home .section__products .products__content .products .item .item__title {
  display: flex;
  justify-content: space-between;
}
.page_home .section__products .products__content .products .item .item__title .title {
  font-family: "HelveticaNeueCyr";
  color: #fff;
  font-size: 20rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}
.page_home .section__products .products__content .products .item .item__title .dis {
  font-size: 18rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
.page_home .section__service {
  position: relative;
  min-height: 100vh;
  background-color: #121328;
  display: flex;
}
.page_home .section__service .fp-overflow {
  height: 100vh;
  overflow: hidden;
}
.page_home .section__service .service__content {
  width: 1134rem;
  margin-left: auto;
  height: 100%;
  padding-right: 40rem;
  display: block;
  overflow: hidden;
}
.page_home .section__service .service__content .mobile_title {
  display: none;
}
.page_home .section__service .service__content .section_2 {
  padding: 102rem 40rem 0 0;
}
.page_home .section__service .service__content .section_2 img {
  width: 100%;
}
.page_home .section__service .service__content .active {
  opacity: 1;
  pointer-events: auto;
}

.service__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 250rem 40rem 250rem 40rem;
  background-color: #121328;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s;
}
.service__nav .service__nav_item {
  display: flex;
  flex-direction: column;
  gap: 160rem;
  opacity: 0.2;
  text-decoration: none;
  transition: opacity 0.6s ease;
}
.service__nav .service__nav_item:not(:last-child) {
  margin-bottom: 80rem;
}
.service__nav .service__nav_item .item_title {
  font-size: 64rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: -3%;
}
.service__nav .service__nav_item .item_dis {
  font-size: 18rem;
  color: #fff;
  font-weight: 300;
  line-height: 140%;
  max-width: 514rem;
}
.service__nav .active {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .service__nav {
    display: none !important;
  }
  .page_home .section__hero {
    width: 100%;
    height: 100vh;
    background-image: url("../img/bg/bg_hero_mob.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 107rem 16rem 16rem 16rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page_home .section__hero .hero__title {
    font-size: 24rem;
  }
  .page_home .section__hero .hero_text {
    margin-top: auto;
    font-size: 14rem;
    max-width: 100%;
  }
  .page_home .section__hero .hero__btn {
    margin-top: 16rem;
    width: 100%;
    height: 44rem;
    border-radius: 8rem;
    font-size: 14rem;
    line-height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page_home .section__hero .hero__btn svg {
    position: relative;
    right: auto;
    bottom: auto;
    width: 20rem;
    height: 20rem;
    margin-left: 4rem;
  }
  .page_home .section__about {
    width: 100%;
    height: 100vh;
    background-image: url("../img/bg/bg_about.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16rem;
  }
  .page_home .section__about .about__content {
    max-width: 100%;
  }
  .page_home .section__about .about__content .about__title {
    font-size: 24rem;
    margin-bottom: 16rem;
  }
  .page_home .section__about .about__content .about__text {
    font-size: 16rem;
  }
  .page_home .section__about .about__content .about__btn {
    margin-top: 16rem;
    width: 100%;
    height: 44rem;
    border-radius: 8rem;
    font-size: 14rem;
  }
  .page_home .section__products {
    width: 100%;
    height: 100vh;
    padding-bottom: 40rem;
  }
  .page_home .section__products .products__content {
    width: 100%;
    margin-top: 0;
    padding: 95rem 0 0 0;
  }
  .page_home .section__products .products__content .content__title {
    font-size: 24rem;
    margin-bottom: 16rem;
    padding: 0 16rem;
  }
  .page_home .section__products .products__content .content__text {
    max-width: 100%;
    font-size: 14rem;
    padding: 0 16rem;
  }
  .page_home .section__products .products__content .products {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24rem;
    margin-top: 24rem;
  }
  .page_home .section__products .products__content .products .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
  }
  .page_home .section__products .products__content .products .item .item_img {
    width: 100%;
    height: auto;
  }
  .page_home .section__products .products__content .products .item .item__title {
    padding: 0 16rem;
  }
  .page_home .section__products .products__content .products .item .item__title .title {
    font-size: 14rem;
  }
  .page_home .section__products .products__content .products .item .item__title .dis {
    font-size: 12rem;
  }
  .page_home .section__service .service__content {
    width: 100%;
    padding-right: 0;
    padding-top: 92rem;
  }
  .page_home .section__service .service__content .mobile_title {
    display: flex;
    flex-direction: column;
    padding: 0 16rem;
  }
  .page_home .section__service .service__content .mobile_title span {
    font-size: 24rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16rem;
  }
  .page_home .section__service .service__content .mobile_title ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20rem;
    padding-left: 20rem;
    margin-bottom: 16rem;
  }
  .page_home .section__service .service__content .mobile_title ul li {
    font-size: 14rem;
    font-weight: 300;
    color: #E530FF;
  }
  .page_home .section__service .service__content .mobile_title p {
    font-size: 14rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 46rem;
  }
  .page_home .section__service .service__content .section_2 {
    height: 100vh;
    padding: 0 0 0 0;
    width: 100%;
  }
  .page_home .section__service .service__content .section_2 img {
    width: 100%;
  }
  .page_home .section__service .service__content .active {
    opacity: 1;
    pointer-events: auto;
  }
}
.page_404 {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg/bg_404.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_404 .page_title {
  font-size: 24rem;
  color: #fff;
  font-weight: 300;
  line-height: auto;
  text-align: center;
  margin-bottom: 34rem;
}
.page_404 .img_animate {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.page_404 .img_wrap {
  display: flex;
  width: 100vw;
  justify-content: center;
  /*animation: marquee404 5s linear infinite*/
}
.page_404 .img_404 {
  display: block;
  width: 1239rem;
  height: 690rem;
  margin: 0 auto;
}
.page_404 a {
  margin: 34rem auto 0 auto;
  width: 269rem;
  height: 62rem;
  border-radius: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  line-height: auto;
  position: relative;
  overflow: hidden;
}
.page_404 a svg {
  width: 24rem;
  height: 24rem;
  margin-left: 16rem;
}
.page_404 a::before {
  content: "";
  height: 100rem;
  width: 5rem;
  transform: rotate(-25deg);
  position: absolute;
  z-index: 8;
  left: -50rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  box-shadow: 0rem 0rem 15rem 15rem rgba(255, 255, 255, 0.8);
}
.page_404 a:hover::before {
  content: "";
  left: 120%;
}

@media screen and (max-width: 600px) {
  .page_404 {
    width: 100%;
    height: 100vh;
    background-image: url("../img/bg/bg_404.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page_404 .page_title {
    font-size: 20rem;
    margin-bottom: 34rem;
    margin-top: 68rem;
    text-align: left;
    padding: 0 16rem;
  }
  .page_404 .img_animate {
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .page_404 .img_wrap {
    display: flex;
    width: auto;
    justify-content: center;
    animation: marquee404 5s linear infinite;
  }
  .page_404 .img_404 {
    display: block;
    width: 761rem;
    height: 406rem;
    margin: 0 auto;
  }
  .page_404 a {
    margin: auto auto 24rem auto;
    width: 100%;
    height: 44rem;
    max-width: 343rem;
    border-radius: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14rem;
    font-weight: 300;
    line-height: 44rem;
  }
  .page_404 a svg {
    width: 20rem;
    height: 20rem;
    margin-left: 4rem;
  }
}
.page_projects {
  padding: 139rem 40rem 40rem 40rem;
}
.page_projects .page_title {
  font-weight: 900;
  font-size: 76rem;
  color: #fff;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 40rem;
  text-transform: uppercase;
}
.page_projects .projects_filter_mob_wrap {
  display: none;
}
.page_projects .page__subtitle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 69rem;
  margin-bottom: 40rem;
}
.page_projects .page__subtitle .projects__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12rem;
  max-width: 811rem;
}
.page_projects .page__subtitle .projects__filters .item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 18rem;
  color: #fff;
  border: 1rem solid #f9f9f9;
  border-radius: 8rem;
  cursor: pointer;
  padding: 12rem 25rem;
  transition: all 0.4s;
  overflow: hidden;
  position: relative;
}
.page_projects .page__subtitle .projects__filters .item sup {
  font-size: 12rem;
  margin-bottom: 10rem;
  margin-left: 5rem;
}
.page_projects .page__subtitle .projects__filters .item:hover {
  background-color: #E530FF;
  border-color: #E530FF;
}
.page_projects .page__subtitle .projects__filters .item::before {
  content: "";
  height: 100rem;
  width: 5rem;
  transform: rotate(-25deg);
  position: absolute;
  z-index: 8;
  left: -50rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  box-shadow: 0rem 0rem 15rem 15rem rgba(255, 255, 255, 0.8);
}
.page_projects .page__subtitle .projects__filters .item svg {
  margin-left: 14rem;
  width: 24rem;
  height: 24rem;
  transition: all 0.4s;
}
.page_projects .page__subtitle .projects__filters .item:hover::before {
  content: "";
  left: 120%;
}
.page_projects .page__subtitle .projects__filters .item:hover svg {
  transform: rotate(90deg);
}
.page_projects .page__subtitle p {
  font-weight: 300;
  font-size: 24rem;
  color: #fff;
  margin-bottom: 40rem;
  width: 811rem;
}
.page_projects .prijects__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40rem 24rem;
}
.page_projects .prijects__wrap .project {
  width: calc(50% - 12rem);
  text-decoration: none;
}
.page_projects .prijects__wrap .project .img {
  height: 600rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12rem;
  overflow: hidden;
}
.page_projects .prijects__wrap .project .img img {
  width: 100%;
}
.page_projects .prijects__wrap .project .dis {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_projects .prijects__wrap .project .dis .title {
  font-family: "HelveticaNeueCyr";
  font-weight: 900;
  font-size: 20rem;
  line-height: 120%;
  color: #fff;
  text-transform: uppercase;
}
.page_projects .prijects__wrap .project .dis .text {
  font-weight: 300;
  font-size: 16rem;
  color: #fff;
  opacity: 0.5;
}
.page_projects .prijects__wrap .project .dis .price {
  font-family: "HelveticaNeueCyr";
  font-weight: 900;
  font-size: 20rem;
  color: #fff;
  text-transform: uppercase;
}
.page_projects .all_projects {
  display: flex;
  margin-top: 40rem;
  margin-left: auto;
  width: 412rem;
  height: 101rem;
  border-radius: 12rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  text-decoration: none;
  position: relative;
  font-size: 18rem;
  font-weight: 300;
  color: #fff;
  padding: 16rem 0 0 20rem;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.page_projects .all_projects sup {
  font-size: 12rem;
  padding-left: 5rem;
}
.page_projects .all_projects svg {
  position: absolute;
  right: 16rem;
  bottom: 16rem;
  transition: all 0.3s;
}
.page_projects .all_projects::before {
  content: "";
  height: 150rem;
  top: -50rem;
  width: 5rem;
  transform: rotate(-25deg);
  position: absolute;
  z-index: 8;
  left: -50rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  box-shadow: 0rem 0rem 15rem 15rem rgba(255, 255, 255, 0.8);
}
.page_projects .all_projects svg {
  margin-left: 14rem;
  width: 24rem;
  height: 24rem;
  transition: all 0.4s;
}
.page_projects .all_projects:hover::before {
  content: "";
  left: 120%;
}
.page_projects .all_projects:hover svg {
  transform: rotate(90deg);
}

@media screen and (max-width: 600px) {
  .page_projects {
    padding: 66rem 0 32rem 0;
  }
  .page_projects .page_title {
    font-size: 24rem;
    margin-bottom: 16rem;
    padding: 0 16rem;
  }
  .page_projects .projects_filter_mob_wrap {
    display: flex;
    padding: 0 16rem;
    margin-bottom: 16rem;
    flex-direction: column;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_title {
    width: 100%;
    height: 36rem;
    background-color: #000;
    border: 1rem solid #000;
    border-radius: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    font-weight: 300;
    color: #fff;
    transition: all 0.4s;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_title #fil {
    display: block;
    margin-left: 6rem;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_title #close {
    display: none;
    margin-left: 6rem;
  }
  .page_projects .projects_filter_mob_wrap .open {
    background-color: #f9f9f9;
    color: #121328;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_list {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    width: 100%;
    gap: 4rem;
    overflow: hidden;
    height: 0;
    transition: all 0.4s;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_list .item {
    width: 100%;
    height: 36rem;
    background-color: #000;
    border: 1rem solid #000;
    border-radius: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    font-weight: 300;
    color: #fff;
    transition: all 0.4s;
  }
  .page_projects .projects_filter_mob_wrap .project_filter_list .item sup {
    font-size: 10rem;
    margin-bottom: 5rem;
    margin-left: 5rem;
  }
  .page_projects .projects_filter_mob_wrap .list_open {
    height: -moz-fit-content;
    height: fit-content;
    visibility: visible;
  }
  .page_projects .page__subtitle {
    margin-bottom: 16rem;
  }
  .page_projects .page__subtitle .projects__filters {
    display: none;
  }
  .page_projects .page__subtitle p {
    font-size: 14rem;
    max-width: 100%;
    padding: 0 16rem;
    margin-bottom: 16rem;
  }
  .page_projects .prijects__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24rem;
  }
  .page_projects .prijects__wrap .project {
    width: 100%;
  }
  .page_projects .prijects__wrap .project .img {
    height: 180rem;
    border-radius: 8rem;
  }
  .page_projects .prijects__wrap .project .dis {
    margin-top: 16rem;
    padding: 0 16rem;
  }
  .page_projects .prijects__wrap .project .dis .title {
    font-size: 14rem;
  }
  .page_projects .prijects__wrap .project .dis .text {
    font-size: 12rem;
  }
  .page_projects .prijects__wrap .project .dis .price {
    font-size: 14rem;
  }
  .page_projects .all_projects {
    display: flex;
    margin-top: 20rem;
    width: calc(100% - 32rem);
    height: 44rem;
    border-radius: 8rem;
    font-size: 16rem;
    padding: 0;
    margin-left: 16rem;
    margin-right: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page_projects .all_projects sup {
    font-size: 8rem;
    padding-left: 5rem;
  }
  .page_projects .all_projects svg {
    position: relative;
    right: auto;
    bottom: auto;
    width: 16rem;
    height: 16rem;
    margin-left: 8rem;
  }
}
.page_single-project {
  padding: 60vh 40rem 80rem 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_single-project .project__title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  margin-bottom: 16rem;
  text-align: center;
  text-transform: uppercase;
}
.page_single-project .project__type {
  font-family: "HelveticaNeueCyr";
  font-size: 32rem;
  font-weight: 400;
  color: #f9f9f9;
  margin-bottom: 16rem;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.3;
}
.page_single-project .project__type_2 {
  font-family: "HelveticaNeueCyr";
  font-size: 32rem;
  font-weight: 400;
  color: #f9f9f9;
  text-align: center;
  text-transform: uppercase;
}
.page_single-project .project__previe {
  margin-top: 40rem;
  margin-bottom: 48rem;
  width: 500rem;
  max-width: 90vw;
  transition: width 1s ease, height 1s ease;
  aspect-ratio: 4/3;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 16rem;
}
.page_single-project .project__previe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page_single-project .expanded {
  width: 100%;
  height: 900rem;
  max-width: 100%;
  box-shadow: none;
}
.page_single-project .project_second_title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  margin-bottom: 16rem;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40rem;
}
.page_single-project .project_discription {
  display: flex;
  flex-direction: column;
  gap: 40rem;
}
.page_single-project .project_discription .row {
  display: flex;
  align-items: flex-start;
  min-height: 100rem;
}
.page_single-project .project_discription .row .row__title {
  font-family: "HelveticaNeueCyr";
  font-size: 20rem;
  font-weight: 900;
  color: #f9f9f9;
  text-transform: uppercase;
  width: 50%;
}
.page_single-project .project_discription .row .row_content {
  width: 50%;
  font-size: 18rem;
  font-weight: 300;
  line-height: 140%;
  color: #f9f9f9;
}
.page_single-project .project_discription .row .row_content a {
  font-size: 18rem;
  font-weight: 300;
  line-height: 140%;
  color: #f9f9f9;
  text-decoration: none;
}
.page_single-project .project_discription .row .row_content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 27rem;
  min-width: 412rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page_single-project .project_discription .row .row_content ul li {
  border-bottom: 1rem solid #f9f9f9;
}
.page_single-project .similar__projects {
  margin-top: 120rem;
  width: 100%;
}
.page_single-project .similar__projects .similar__projects__header {
  display: flex;
  align-items: flex-start;
}
.page_single-project .similar__projects .similar__projects__header .similar__projects__title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  margin-bottom: 24rem;
  text-transform: uppercase;
}
.page_single-project .similar__projects .similar__projects__header .back {
  padding: 10rem;
  cursor: pointer;
  font-size: 18rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  margin-left: auto;
}
.page_single-project .similar__projects .similar__projects_slider {
  display: flex;
  padding: 0 40rem;
  overflow: hidden;
  width: 100%;
}
.page_single-project .similar__projects .similar__projects_slider .slide {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_img {
  width: 100%;
  height: 600rem;
  border-radius: 16rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_img img {
  width: 100%;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .title {
  font-family: "HelveticaNeueCyr";
  font-weight: 900;
  font-size: 20rem;
  line-height: 120%;
  color: #fff;
  text-transform: uppercase;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .text {
  font-weight: 300;
  font-size: 16rem;
  color: #fff;
  opacity: 0.5;
}
.page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .price {
  font-family: "HelveticaNeueCyr";
  font-weight: 900;
  font-size: 20rem;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .page_single-project {
    padding: 66rem 0 32rem 0;
  }
  .page_single-project .project__title {
    font-size: 24rem;
    margin-bottom: 8rem;
    padding: 0 16rem;
  }
  .page_single-project .project__type {
    font-size: 20rem;
    margin-bottom: 8rem;
    padding: 0 16rem;
  }
  .page_single-project .project__type_2 {
    font-size: 20rem;
    padding: 0 16rem;
  }
  .page_single-project .project__previe {
    margin-top: 16rem;
    margin-bottom: 16rem;
    width: 100%;
    max-width: 100%;
    height: 300rem;
    transition: none;
    aspect-ratio: none;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-radius: 16rem;
  }
  .page_single-project .project__previe img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .page_single-project .expanded {
    width: 100%;
    height: 300rem;
    max-width: 100%;
    box-shadow: none;
  }
  .page_single-project .project_second_title {
    font-size: 24rem;
    margin-bottom: 48rem;
    padding: 0 16rem;
  }
  .page_single-project .project_discription {
    gap: 48rem;
    padding: 0 16rem;
  }
  .page_single-project .project_discription .row {
    min-height: 70rem;
  }
  .page_single-project .project_discription .row .row__title {
    font-size: 14rem;
  }
  .page_single-project .project_discription .row .row_content {
    font-size: 14rem;
    line-height: 100%;
  }
  .page_single-project .project_discription .row .row_content a {
    font-size: 14rem;
    line-height: 100%;
  }
  .page_single-project .project_discription .row .row_content ul {
    gap: 6rem;
    min-width: 100%;
  }
  .page_single-project .similar__projects {
    margin-top: 32rem;
  }
  .page_single-project .similar__projects .similar__projects__header {
    padding: 0 16rem;
  }
  .page_single-project .similar__projects .similar__projects__header .similar__projects__title {
    font-size: 24rem;
    margin-bottom: 16rem;
    padding: 0.16rem;
  }
  .page_single-project .similar__projects .similar__projects__header .back {
    display: none;
  }
  .page_single-project .similar__projects .similar__projects_slider {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    padding: 0;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide {
    width: 100% !important;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide .slide__project_img {
    width: 100%;
    height: 180rem;
    border-radius: 8rem;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title {
    padding: 0 16rem;
    margin-top: 16rem;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .title {
    font-size: 14rem;
    line-height: 100%;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .text {
    font-size: 12rem;
  }
  .page_single-project .similar__projects .similar__projects_slider .slide .slide__project_title .price {
    font-size: 14rem;
  }
}
.page_contacts {
  padding: 300rem 40rem 80rem 40rem;
}
.page_contacts h1 {
  display: flex;
  flex-direction: column;
  font-size: 64rem;
  font-weight: 300;
  color: #f9f9f9;
  width: 100%;
  margin-bottom: 60rem;
}
.page_contacts h1 span:nth-child(1) {
  margin-left: auto;
}
.page_contacts h1 span:nth-child(2) {
  color: #E530FF;
}
.page_contacts h2 {
  display: flex;
  flex-direction: column;
  font-size: 64rem;
  font-weight: 300;
  color: #E530FF;
  width: 100%;
  margin-bottom: 60rem;
}
.page_contacts h2 span:nth-child(1) {
  margin-left: 413rem;
}
.page_contacts .form_wrap {
  margin-bottom: 120rem;
}
.page_contacts .form_wrap form {
  display: flex;
  flex-direction: column;
  width: 1233rem;
  gap: 16rem;
}
.page_contacts .form_wrap form input {
  width: 100%;
  height: 92rem;
  border: none;
  background-color: #EFEFEF;
  border-radius: 8rem;
  font-size: 48rem;
  font-weight: 300;
  color: #121328;
  padding-left: 16rem;
}
.page_contacts .form_wrap form p {
  font-size: 18rem;
  color: #f9f9f9;
  font-weight: 300;
}
.page_contacts .form_wrap form p a {
  font-size: 18rem;
  color: #f9f9f9;
  font-weight: 300;
  text-decoration: none;
}
.page_contacts .form_wrap form button {
  width: 224rem;
  height: 62rem;
  border: 1rem solid #E530FF;
  background-color: #E530FF;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  cursor: pointer;
  transition: all 0.4s;
}
.page_contacts .form_wrap form button svg {
  width: 24rem;
  height: 24rem;
}
.page_contacts .form_wrap form button svg path {
  transition: all 0.4s;
}
.page_contacts .form_wrap form button:hover {
  background-color: #F9F9F9;
  border: 1rem solid #121328;
  color: #121328;
}
.page_contacts .form_wrap form button:hover svg path {
  stroke: #121328;
}
.page_contacts .contacts_block {
  width: 50%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}
.page_contacts .contacts_block a {
  font-size: 48rem;
  font-weight: 300;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10rem;
  border-radius: 8rem;
}
.page_contacts .contacts_block a svg {
  width: 60rem;
  height: 60rem;
  margin-right: 6rem;
}

@media screen and (max-width: 600px) {
  .page_contacts {
    padding: 198rem 16rem 40rem 16rem;
  }
  .page_contacts h1 {
    font-size: 24rem;
    margin-bottom: 16rem;
  }
  .page_contacts h1 span:nth-child(1) {
    margin-left: auto;
  }
  .page_contacts h1 span:nth-child(2) {
    color: #E530FF;
  }
  .page_contacts h2 {
    font-size: 24rem;
    margin-bottom: 16rem;
    display: flex;
  }
  .page_contacts h2 span:nth-child(1) {
    margin-left: 0;
  }
  .page_contacts .form_wrap form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
  }
  .page_contacts .form_wrap form input {
    height: 44rem;
    border-radius: 8rem;
    font-size: 14rem;
    padding-left: 8rem;
  }
  .page_contacts .form_wrap form p {
    font-size: 8rem;
    text-align: center;
  }
  .page_contacts .form_wrap form p a {
    font-size: 8rem;
  }
  .page_contacts .form_wrap form button {
    width: 100%;
    height: 44rem;
    border-radius: 8rem;
    gap: 4rem;
    font-size: 14rem;
  }
  .page_contacts .form_wrap form button svg {
    width: 20rem;
    height: 20rem;
  }
  .page_contacts .contacts_block {
    width: 100%;
    margin-left: 0;
    gap: 6rem;
  }
  .page_contacts .contacts_block a {
    width: 100%;
    background-color: #f9f9f9;
    font-size: 14rem;
    font-weight: 300;
    color: #121328;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-direction: row-reverse;
    padding: 10rem;
  }
  .page_contacts .contacts_block a svg {
    width: auto;
    height: 20rem;
    margin-right: 6rem;
  }
  .page_contacts .contacts_block a svg path {
    fill: #121328;
  }
}
.page_services {
  position: relative;
}
.page_services .section {
  background-color: #121312;
}
.page_services .section__main {
  padding: 0 55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.page_services .section__main .fp-overflow {
  width: 100%;
}
.page_services .section__main .main__title {
  font-size: 64rem;
  font-weight: 300rem;
  color: #fff;
}
.page_services .section__main .main__title b {
  color: #E530FF !important;
}
.page_services .section__main .main__title span:first-child {
  margin-left: 800rem;
}
.page_services .section__serv_develop {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg/develop_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding-bottom: 40rem;
  padding-left: 40rem;
}
.page_services .section__serv_develop .fp-overflow {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_services .section__serv_develop .title {
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  max-width: 824rem;
  margin-left: auto;
  padding-right: 40rem;
  padding-top: 99rem;
}
.page_services .section__serv_develop .mob_title {
  display: none;
}
.page_services .section__serv_develop .process_list {
  display: flex;
  gap: 24rem;
  margin-top: auto;
  overflow: hidden;
}
.page_services .section__serv_develop .process_list .slick-track {
  gap: 24rem;
}
.page_services .section__serv_develop .process_list .item {
  min-width: 722rem;
  max-width: 722rem;
  height: 435rem;
  border-radius: 16rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16rem 20rem;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  scroll-snap-align: start;
}
.page_services .section__serv_develop .process_list .item .num {
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 12rem;
}
.page_services .section__serv_develop .process_list .item .title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  text-transform: uppercase;
  text-align: left;
  margin-left: 0;
  margin-top: 0;
  padding: 0;
}
.page_services .section__serv_develop .process_list .item .dis {
  margin-top: auto;
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
}
.page_services .section__serv_ui {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg/ui_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 40rem;
  padding-left: 40rem;
}
.page_services .section__serv_ui .fp-overflow {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_services .section__serv_ui .title {
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  max-width: 824rem;
  margin-left: auto;
  padding-right: 40rem;
  padding-top: 99rem;
}
.page_services .section__serv_ui .mob_title {
  display: none;
}
.page_services .section__serv_ui .process_list {
  display: flex;
  gap: 24rem;
  margin-top: auto;
  overflow: hidden;
}
.page_services .section__serv_ui .process_list .slick-track {
  gap: 24rem;
}
.page_services .section__serv_ui .process_list .item {
  min-width: 722rem;
  max-width: 722rem;
  height: 435rem;
  border-radius: 16rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16rem 20rem;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.page_services .section__serv_ui .process_list .item .num {
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 12rem;
}
.page_services .section__serv_ui .process_list .item .title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  text-transform: uppercase;
  text-align: left;
  margin-left: 0;
  margin-top: 0;
  padding: 0;
}
.page_services .section__serv_ui .process_list .item .dis {
  margin-top: auto;
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
}
.page_services .section__serv_brand {
  width: 100%;
  height: 100vh;
}
.page_services .section__serv_brand .fp-overflow {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page_services .section__serv_brand .content {
  max-width: 1236rem;
  margin-left: auto;
  padding-top: 100rem;
}
.page_services .section__serv_brand .content .mob_title {
  display: none;
}
.page_services .section__serv_brand .content .content__title {
  font-size: 64rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 24rem;
}
.page_services .section__serv_brand .content .content__imgs {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 24rem;
  border-radius: 16rem;
  height: 720rem;
}
.page_services .section__serv_design {
  width: 100%;
  height: 100vh;
}
.page_services .section__serv_design .fp-overflow {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.page_services .section__serv_design .content {
  max-width: 1236rem;
  height: 100vh;
  margin-left: auto;
  padding-right: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100rem;
}
.page_services .section__serv_design .content .mob_title {
  display: none;
}
.page_services .section__serv_design .content .content__title {
  font-size: 64rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 24rem;
}
.page_services .section__serv_design .content .content__imgs {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 24rem;
  border-radius: 16rem;
  height: 720rem;
}
.page_services .section__serv_design .content .content__imgs img {
  height: 100%;
}
.page_services .section__form {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page_services .section__form .fp-overflow {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.page_services .section__form .form__title {
  font-family: "HelveticaNeueCyr";
  font-size: 76rem;
  font-weight: 900;
  color: #f9f9f9;
  margin-bottom: 40rem;
  max-width: 824rem;
  text-align: center;
  text-transform: uppercase;
}
.page_services .section__form .form_subtitle {
  font-size: 24rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 40rem;
  max-width: 824rem;
  text-align: center;
}
.page_services .section__form form {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  max-width: 824rem;
  width: 100%;
}
.page_services .section__form form input {
  width: 100%;
  height: 55rem;
  border: none;
  border-radius: 12rem;
  padding-left: 16rem;
  font-size: 18rem;
  font-weight: 300;
  color: #121328;
}
.page_services .section__form form textarea {
  width: 100%;
  height: 100rem;
  resize: none;
  border: none;
  border-radius: 12rem;
  padding: 16rem;
  font-size: 18rem;
  font-weight: 300;
  color: #121328;
}
.page_services .section__form form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16rem;
  height: 55rem;
  background-color: #E530FF;
  border: 1rem solid #E530FF;
  border-radius: 12rem;
  border: none;
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
  cursor: pointer;
  transition: all 0.4s;
}
.page_services .section__form form button svg {
  width: 24rem;
  height: 24rem;
}
.page_services .section__form form button svg path {
  transition: all 0.4s;
}
.page_services .section__form form button:hover {
  background-color: #f9f9f9;
  border-color: #121328;
  color: #121328;
}
.page_services .section__form form button:hover svg path {
  stroke: #121328;
}
.page_services .section__form form p {
  font-size: 12rem;
  font-weight: 400;
  color: #f9f9f9;
  text-align: center;
}
.page_services .section__form form p a {
  font-size: 12rem;
  font-weight: 400;
  color: #f9f9f9;
  text-decoration: none;
}

.nav_services {
  position: fixed;
  z-index: 99999;
  top: 136rem;
  left: 40rem;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: all 0.4s;
  gap: 6rem;
}
.nav_services .serv {
  display: flex;
  flex-direction: column;
  font-size: 36rem;
  font-weight: 900;
  color: #f9f9f9;
  text-transform: uppercase;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.4s;
}
.nav_services .serv_dis {
  display: none;
  margin-top: 12rem;
  margin-bottom: 20rem;
}
.nav_services .serv_dis span {
  margin-top: 6rem;
  font-size: 18rem;
  font-weight: 300;
  color: #f9f9f9;
  margin-bottom: 20rem;
}
.nav_services .serv_dis ul {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  margin-left: 10rem;
}
.nav_services .serv_dis ul li {
  font-size: 18rem;
  font-weight: 300;
}
.nav_services .active .serv {
  opacity: 1 !important;
}
.nav_services .active .active_serv {
  opacity: 1 !important;
  color: #E530FF !important;
}
.nav_services .active .active_dis {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .page_services .section__main {
    width: 100%;
    padding: 0 16rem;
    flex-direction: column;
  }
  .page_services .section__main .main__title {
    font-size: 24rem;
  }
  .page_services .section__main .main__title span {
    margin-left: 90rem;
  }
  .page_services .section__main .main__title span:first-child {
    margin-left: 114rem;
    margin-right: 62rem;
  }
  .page_services .section__serv_develop {
    background-image: url("../img/bg/develop_bg_mob.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 22rem;
    padding-left: 16rem;
  }
  .page_services .section__serv_develop .title {
    display: none;
  }
  .page_services .section__serv_develop .mob_title {
    padding: 0 16rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
    margin-bottom: 16rem;
    margin-top: 102rem;
    width: 100%;
  }
  .page_services .section__serv_develop .mob_title span {
    font-family: "HelveticaNeueCyr";
    font-size: 34rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #E530FF;
  }
  .page_services .section__serv_develop .mob_title p {
    font-size: 14rem;
    color: #fff;
    font-weight: 300;
  }
  .page_services .section__serv_develop .mob_title ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20rem;
  }
  .page_services .section__serv_develop .mob_title ul li {
    font-size: 14rem;
    color: #E530FF;
    font-weight: 300;
  }
  .page_services .section__serv_develop .process_list {
    display: flex;
    gap: 24rem;
    margin-top: auto;
    overflow: hidden;
  }
  .page_services .section__serv_develop .process_list .item {
    min-width: 300rem;
    max-width: 300rem;
    height: 200rem;
    padding: 12rem;
  }
  .page_services .section__serv_develop .process_list .item .num {
    font-size: 12rem;
    margin-bottom: 6rem;
  }
  .page_services .section__serv_develop .process_list .item .title {
    display: flex;
    font-size: 24rem;
  }
  .page_services .section__serv_develop .process_list .item .dis {
    margin-top: auto;
    font-size: 12rem;
    font-weight: 300;
    color: #f9f9f9;
  }
  .page_services .section__serv_ui {
    background-image: url("../img/bg/ui_bg_mob.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 22rem;
    padding-left: 16rem;
  }
  .page_services .section__serv_ui .title {
    display: none;
  }
  .page_services .section__serv_ui .mob_title {
    padding: 0 16rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
    margin-bottom: 16rem;
    margin-top: 102rem;
  }
  .page_services .section__serv_ui .mob_title span {
    font-family: "HelveticaNeueCyr";
    font-size: 34rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #E530FF;
  }
  .page_services .section__serv_ui .mob_title p {
    font-size: 14rem;
    color: #fff;
    font-weight: 300;
  }
  .page_services .section__serv_ui .process_list {
    display: flex;
    gap: 24rem;
    margin-top: auto;
    overflow: hidden;
  }
  .page_services .section__serv_ui .process_list .item {
    min-width: 300rem;
    max-width: 300rem;
    height: 200rem;
    padding: 12rem;
  }
  .page_services .section__serv_ui .process_list .item .num {
    font-size: 12rem;
    margin-bottom: 6rem;
  }
  .page_services .section__serv_ui .process_list .item .title {
    display: flex;
    font-size: 24rem;
  }
  .page_services .section__serv_ui .process_list .item .dis {
    margin-top: auto;
    font-size: 12rem;
    font-weight: 300;
    color: #f9f9f9;
  }
  .page_services .section__serv_brand .content {
    max-width: 100%;
    padding-top: 110rem;
  }
  .page_services .section__serv_brand .content .mob_title {
    padding: 0 16rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
    margin-bottom: 16rem;
  }
  .page_services .section__serv_brand .content .mob_title span {
    font-family: "HelveticaNeueCyr";
    font-size: 34rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
  }
  .page_services .section__serv_brand .content .mob_title p {
    font-size: 14rem;
    color: #fff;
    font-weight: 300;
  }
  .page_services .section__serv_brand .content .content__title {
    display: none;
  }
  .page_services .section__serv_brand .content .content__imgs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5rem;
    border-radius: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .page_services .section__serv_brand .content .content__imgs img {
    max-height: 470rem;
  }
  .page_services .section__serv_design {
    max-width: 100%;
    padding-top: 110rem;
  }
  .page_services .section__serv_design .content__title {
    display: none;
  }
  .page_services .section__serv_design .content .mob_title {
    padding: 0 16rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
    margin-bottom: 16rem;
  }
  .page_services .section__serv_design .content .mob_title span {
    font-family: "HelveticaNeueCyr";
    font-size: 34rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
  }
  .page_services .section__serv_design .content .mob_title p {
    font-size: 14rem;
    color: #fff;
    font-weight: 300;
  }
  .page_services .section__serv_design .content__imgs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5rem;
    border-radius: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .page_services .section__serv_design .content__imgs img {
    max-height: 470rem;
  }
  .page_services .section__form {
    display: none;
  }
  .nav_services {
    display: none !important;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes marquee404 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#scroll {
  height: 100vh;
  overflow: auto;
}

.slick-track {
  display: flex;
  gap: 90rem;
}

.slick-list {
  width: 100%;
}

.animatable {
  opacity: 1 !important;
  transition: opacity 2s ease !important;
}

.fade-out {
  opacity: 0 !important;
}

.preloader {
  position: fixed;
  z-index: 999999999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111126;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
}
.preloader video {
  width: 40%;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.cookey {
  background-color: #121328;
  border-radius: 20rem;
  padding: 16rem 32rem;
  border: 1rem solid #E530FF;
  position: fixed;
  bottom: 38rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  align-items: flex-start;
}
.cookey .text {
  font-size: 16rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 300;
}
.cookey .text a {
  margin-top: 4rem;
  font-size: 16rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  text-decoration: none;
}
.cookey .text a:hover {
  color: #fff;
}
.cookey .cookey_btn {
  margin-left: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E530FF;
  cursor: pointer;
  width: 48rem;
  height: 32rem;
  border-radius: 12rem;
  font-size: 16rem;
  font-weight: 300;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .preloader video {
    width: 100%;
  }
  .cookey {
    width: 80%;
    background-color: #121328;
    border-radius: 20rem;
    padding: 16rem 20rem;
    border: 1rem solid #E530FF;
    position: fixed;
    bottom: 38rem;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: flex-start;
  }
  .cookey .text {
    font-size: 14rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 300;
  }
  .cookey .text a {
    margin-top: 4rem;
    font-size: 14rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    text-decoration: none;
  }
  .cookey .text a:hover {
    color: #fff;
  }
  .cookey .cookey_btn {
    margin-left: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E530FF;
    cursor: pointer;
    width: 48rem;
    height: 32rem;
    border-radius: 12rem;
    font-size: 14rem;
    font-weight: 300;
    color: #fff;
  }
}/*# sourceMappingURL=style.css.map */