@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  color: #FFFFFF;
}

body {
  font-size: 1.6rem;
  background: linear-gradient(180deg, #373737 0%, #000000 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  padding: 0 4rem;
  max-width: 155rem;
}
@media (max-width: 1340px) {
  .container {
    max-width: 128rem;
  }
}
@media (max-width: 1335px) {
  .container {
    overflow: hidden;
  }
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .container {
    padding: 0 1.6rem;
  }
}

.text-center {
  text-align: center;
}

.intro-reveal {
  opacity: 0;
  transform: translate3d(0, 2.8rem, 0);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--intro-delay, 0ms);
  will-change: opacity, transform;
}

.intro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero__video.intro-reveal {
  transform: scale(1.025);
}

.hero__video.intro-reveal.is-visible {
  transform: scale(1);
}

.reveal-block,
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 3.2rem, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item {
  transform: translate3d(0, 2.4rem, 0);
}

@media (prefers-reduced-motion: reduce) {
  .intro-reveal,
  .reveal-block,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
    will-change: auto;
  }
}
.reveal-block.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.heading-2 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 5.4rem;
}
@media (max-width: 1125px) {
  .heading-2 {
    font-size: 4rem;
    line-height: 4.8rem;
  }
}
@media screen and (max-width: 510px) {
  .heading-2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .heading-2 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}

.heading-3 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 3.2rem;
}

.heading-4 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3rem;
}

.accent__btn {
  padding: 1.5rem 3.2rem;
  display: flex;
  gap: 0.8rem;
  background-color: #00AC86;
  border-radius: 10rem;
  transition: all 0.3s ease-out;
}
.accent__btn-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #FFFFFF;
  font-weight: 600;
}
.accent__btn:hover {
  background-color: #029D7A;
}
@media screen and (max-width: 510px) {
  .accent__btn {
    padding: 1rem 2.4rem;
  }
}

.base__btn {
  display: flex;
  gap: 0.8rem;
  color: #FFFFFF;
}
.base__btn-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #FFFFFF;
  font-weight: 400;
  transition: all 0.3s ease-out;
}
.base__btn-img {
  transition: all 0.3s ease-out;
}
.base__btn-icon {
  transition: all 0.3s ease-out;
}
.base__btn:hover .base__btn-text {
  color: #029D7A;
}
.base__btn:hover .base__btn-icon {
  color: #029D7A;
}

.base__btn-outline {
  display: flex;
  gap: 0.8rem;
  padding: 1.5rem 3.2rem;
  border: 0.1rem solid #00AC86;
  border-radius: 10rem;
  transition: all 0.3s ease-out;
}
.base__btn-outline-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #00AC86;
  font-weight: 600;
  transition: all 0.3s ease-out;
}
.base__btn-outline:hover {
  background-color: #00AC86;
}
.base__btn-outline:hover .base__btn-outline-text {
  color: #FFFFFF;
}

.scroll-top {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background-color: #029D7A;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 100;
}
.scroll-top:hover {
  background-color: rgb(2.5132075472, 197.2867924528, 153.3056603774);
}
.scroll-top img {
  width: 2.4rem;
  height: 2.4rem;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 960px) {
  .scroll-top {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 4.8rem;
    height: 4.8rem;
  }
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 3.3rem 0;
}
.header .floating-buy-btn {
  padding: 1.8rem 4.25rem;
  background-color: #00AC86;
  border-radius: 10rem;
  color: #FFFFFF;
  font-weight: 600;
  position: fixed;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 960px) {
  .header {
    padding: 1.2rem 0;
  }
}
@media screen and (max-width: 510px) {
  .header {
    position: sticky;
    padding: 1.1rem 0;
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__inner .header__inner-logo {
  display: flex;
  gap: 3.6rem;
  align-items: center;
}
@media screen and (max-width: 510px) {
  .header .header__inner .header__inner-logo {
    gap: 1.6rem;
  }
  .header .header__inner .header__inner-logo a {
    height: 2.6rem;
  }
  .header .header__inner .header__inner-logo a img {
    height: 100%;
    width: auto;
  }
  .header .header__inner .header__inner-logo .header__logo-decktop {
    display: none;
  }
  .header .header__inner .header__inner-logo .header__logo-mobile {
    display: block;
  }
}
.header .header__inner .header__inner-logo .header__inner-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .header__inner .header__inner-logo .header__inner-mobile {
    display: block;
  }
}
.header .header__inner .header__logo-mobile {
  display: none;
}
.header .header__inner .header__inner-nav {
  padding: 2rem 3.2rem;
  background-color: rgba(94, 93, 93, 0.3);
  border-radius: 8rem;
}
.header .header__inner .header__inner-nav .header__list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 1100px) {
  .header .header__inner .header__inner-nav .header__list {
    gap: 2rem;
  }
}
.header .header__inner .header__inner-nav .header__list .header__item-link {
  color: #E2E5EB;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .header .header__inner .header__inner-nav .header__list .header__item-link {
    font-size: 1.4rem;
  }
}
.header .header__inner .header__inner-nav .header__list .header__item-link {
  transition: all 0.3s ease-out;
}
.header .header__inner .header__inner-nav .header__list .header__item-link:hover {
  color: #029D7A;
}
@media screen and (max-width: 960px) {
  .header .header__inner .header__inner-nav {
    display: none;
  }
}
.header .header__inner .header__inner-btn {
  min-width: 13.95rem;
}
.header .header__inner .header__inner-btn .header__btn {
  width: 13.95rem;
  padding: 1.8rem 4.25rem;
  background-color: #00AC86;
  border-radius: 10rem;
  color: #FFFFFF;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .header .header__inner .header__inner-btn .header__btn {
    font-size: 1.4rem;
  }
}
.header .header__inner .header__inner-btn .header__btn {
  transition: all 0.3s ease-out;
}
.header .header__inner .header__inner-btn .header__btn:hover {
  background-color: #029D7A;
}
.header .header__inner .header__inner-btn .header__btn.is-fixed {
  position: fixed;
  top: 3.5rem;
  z-index: 1000;
}
@media screen and (max-width: 960px) {
  .header .header__inner .header__inner-btn {
    display: none;
  }
}
.header .header__inner .header__inner-btn-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .header__inner .header__inner-btn-mobile {
    display: block;
  }
}

.mobile__header {
  display: none;
}
.mobile__header .header__logo-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .mobile__header {
    display: block;
    background: linear-gradient(180deg, #373737 0%, #000000 100%);
    background-attachment: fixed;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-2rem);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
  }
  .mobile__header.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
  .mobile__header .container {
    min-height: 100%;
    position: relative;
  }
  .mobile__header .header__top {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__top {
    padding: 1.1rem 0;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__top .header__top-logos {
    display: flex;
    gap: 3.6rem;
    align-items: center;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__top .header__top-logos {
    gap: 1.6rem;
  }
  .mobile__header .header__top .header__top-logos a {
    height: 2.6rem;
  }
  .mobile__header .header__top .header__top-logos a img {
    height: 100%;
    width: auto;
  }
  .mobile__header .header__top .header__top-logos .header__logo-decktop {
    display: none;
  }
  .mobile__header .header__top .header__top-logos .header__logo-mobile {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__nav {
    margin-top: 6.4rem;
    padding: 0 1.2rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__nav {
    margin-top: 2.8rem;
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__nav .header__list {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__nav .header__list {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__nav .header__list .header__item-link {
    font-size: 4.8rem;
    line-height: 5.2rem;
    font-weight: 600;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__nav .header__list .header__item-link {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__nav .header__list .header__item-link:hover {
    color: #029D7A;
  }
  .mobile__header .header__bottom {
    margin-bottom: 6.4rem;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    width: calc(100vw - 4.8rem);
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__bottom {
    width: calc(100vw - 3.2rem);
    margin-bottom: 8.4rem;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__bottom .footer__data {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__bottom .footer__data {
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__bottom .footer__data .footer__data-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__bottom .footer__data .footer__data-col {
    gap: 0.2rem;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__bottom .footer__data .footer__data-col .footer__data-title {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 600;
    color: #029D7A;
  }
  .mobile__header .header__bottom .footer__data .footer__data-col .footer__data-text, .mobile__header .header__bottom .footer__data .footer__data-col .footer__data-link {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
  }
  .mobile__header .header__bottom .footer__data .footer__data-col .footer__data-link:hover {
    color: #029D7A;
  }
  .mobile__header .header__bottom .footer__contacts {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (max-width: 960px) and (max-width: 510px) {
  .mobile__header .header__bottom .footer__contacts {
    flex-direction: column;
    gap: 1.6rem;
  }
  .mobile__header .header__bottom .footer__contacts .base__btn-outline {
    width: fit-content;
  }
}
@media screen and (max-width: 960px) {
  .mobile__header .header__bottom .footer__contacts .base__btn-outline {
    padding: 1rem 2.4rem;
  }
  .mobile__header .header__bottom .footer__contacts .base__btn-outline p {
    color: #FFFFFF;
  }
  .mobile__header .header__bottom .footer__contacts .footer__socials {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .mobile__header .header__bottom .footer__contacts .footer__socials .footer__social {
    transition: all 0.3s ease-out;
  }
  .mobile__header .header__bottom .footer__contacts .footer__socials .footer__social:hover {
    opacity: 0.5;
  }
  .mobile__header .header__bottom .footer__contacts .footer__socials .footer__social img {
    width: 3.6rem;
    height: auto;
  }
}

.header__mobile {
  display: none;
  padding-top: 5rem;
}
@media screen and (max-width: 960px) {
  .header__mobile {
    display: block;
  }
}
@media screen and (max-width: 510px) {
  .header__mobile {
    padding-top: 3rem;
  }
}
.header__mobile .header__mobile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 510px) {
  .header__mobile .header__mobile-wrapper {
    align-items: end;
  }
}
.header__mobile .header__mobile-wrapper .header__mobile-title {
  font-size: 4.8rem;
  line-height: 5.2rem;
  font-weight: 600;
}
@media screen and (max-width: 510px) {
  .header__mobile .header__mobile-wrapper .header__mobile-title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
.header__mobile .header__mobile-wrapper .accent__btn {
  padding: 1rem 2.5rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 960px) {
  .hero {
    height: 100%;
  }
}
.hero .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .hero__footer {
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 510px) {
  .hero .hero__footer {
    bottom: 1rem;
  }
}
.hero .hero__footer .container {
  width: 100%;
}
.hero .hero__footer .container .hero__footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero .hero__footer .container .hero__footer-wrapper .hero__footer-img-mobile {
  display: none;
}
@media screen and (max-width: 510px) {
  .hero .hero__footer .container .hero__footer-wrapper .hero__footer-img-mobile {
    display: block;
  }
}
@media screen and (max-width: 510px) {
  .hero .hero__footer .container .hero__footer-wrapper .hero__footer-right .hero__footer-img {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .hero .hero__footer .container .hero__footer-wrapper {
    justify-content: end;
  }
}
.hero .hero__footer .container .hero__footer-wrapper .hero__footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 960px) {
  .hero .hero__footer .container .hero__footer-wrapper .hero__footer-left {
    display: none;
  }
}
.hero .hero__footer .container .hero__footer-wrapper .hero__footer-left .hero__footer-title {
  font-size: 6.4rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .hero .hero__footer .container .hero__footer-wrapper .hero__footer-left .hero__footer-title {
    font-size: 4.8rem;
    line-height: 5.2rem;
  }
}

.advantagers {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .advantagers {
    padding-top: 2rem;
  }
}
.advantagers .advantagers__wrapper {
  display: flex;
  flex-direction: column;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header {
  position: relative;
  width: 100%;
  min-height: 43rem;
  display: flex;
  justify-content: center;
  margin-bottom: 12rem;
}
@media (max-width: 1220px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 38rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 960px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 33rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 27rem;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 25rem;
    margin-bottom: 12rem;
  }
}
@media (max-width: 425px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 20rem;
  }
}
@media (max-width: 375px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 18rem;
  }
}
@media screen and (max-width: 360px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 17rem;
    margin-bottom: 10rem;
  }
}
@media (max-width: 320px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header {
    min-height: 15rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__bg-text {
  position: absolute;
  width: 110%;
  z-index: 1;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__bg-text {
    width: 120%;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__bg-text img {
  width: 100%;
  height: auto;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sockets-img {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  max-width: 87rem;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sockets-img img {
  width: 100%;
  height: auto;
  display: block;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sockets-img .advantagers__sockets-img-mobile {
  display: none;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sockets-img .advantagers__sockets-img-desktop {
    display: none;
  }
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sockets-img .advantagers__sockets-img-mobile {
    display: block;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label {
  position: absolute;
  top: 0;
  right: 14rem;
  z-index: 3;
}
@media (max-width: 1245px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label {
    right: 10rem;
  }
}
@media (max-width: 1110px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label {
    right: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label {
    display: none;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label {
    display: block;
    text-align: end;
    position: absolute;
    bottom: -6.2rem;
    right: 0;
    top: auto;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label .advantagers__sub-label-text {
  font-size: 2rem;
  line-height: 1.3;
  color: #F5F5F5;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-header .advantagers__sub-label .advantagers__sub-label-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 400;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 960px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer {
    gap: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer {
    gap: 1.6rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top {
  display: flex;
  gap: 6.4rem;
  align-items: end;
}
@media (max-width: 1220px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top {
    gap: 1.6rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex: 1;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns {
    gap: 1.6rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper {
    gap: 1.6rem;
  }
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .accent__btn-img {
    display: none;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .accent__btn {
  padding: 1.3rem 3.2rem;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .accent__btn {
    padding: 1rem 2.4rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .base__btn-text.mobile {
  display: none;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .base__btn-text {
    display: none;
  }
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__btns .advantagers__btns-wrapper .base__btn-text.mobile {
    display: block;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__desc {
  flex: 1;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__desc .advantagers__desc-text {
  font-size: 2rem;
  line-height: 2.6rem;
}
@media screen and (max-width: 960px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__desc .advantagers__desc-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__top .advantagers__desc .advantagers__desc-text {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 400;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom {
  display: flex;
  gap: 6.4rem;
  align-items: flex-start;
}
@media (max-width: 1220px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom {
    gap: 3.2rem;
  }
}
@media (max-width: 761px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom {
    gap: 0;
    flex-direction: column;
    width: 100%;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col {
  flex: 1;
  width: 100%;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list {
  display: flex;
  flex-direction: column;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item {
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  border-bottom: 0.1rem solid #787F86;
}
@media (max-width: 1250px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item {
    min-height: 9.7rem;
  }
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item {
    min-height: 7.2rem;
    gap: 2rem;
  }
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item .advantagers__item-number {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 3.6rem;
  color: #029D7A;
}
.advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item .advantagers__item-text {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 510px) {
  .advantagers .advantagers__wrapper .advantagers__wrapper-footer .advantagers__bottom .advantagers__bottom-col .advantagers__list .advantagers__item .advantagers__item-text {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.colors-functions {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .colors-functions {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions {
    padding-top: 8rem;
  }
}
.colors-functions .heading-2 {
  margin-bottom: 2.4rem;
}
@media (max-width: 1235px) {
  .colors-functions .heading-2 {
    text-align: start;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .heading-2 {
    margin-bottom: 1.6rem;
  }
}
.colors-functions .heading-3 {
  line-height: 2.8rem;
}
.colors-functions .colors-functions__wrapper {
  display: none;
}
@media (max-width: 1235px) {
  .colors-functions .colors-functions__wrapper {
    display: block;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .colors-functions .colors-functions__wrapper .colors-functions__clue {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #FFFFFF;
  }
  .colors-functions .colors-functions__wrapper .colors-functions__arrows {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .colors-functions .colors-functions__wrapper .colors-functions__arrows .category__arrow {
    width: 4rem;
    height: 4rem;
    background-color: #029D7A;
    border: 0.1rem solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
  }
  .colors-functions .colors-functions__wrapper .colors-functions__arrows .category__arrow.is-disabled {
    background-color: rgba(94, 93, 93, 0.3);
  }
  .colors-functions .colors-functions__wrapper .colors-functions__arrows .category__arrow.is-disabled img {
    width: 2rem;
    height: auto;
  }
}
.colors-functions .products__slider {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider {
    gap: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider {
    gap: 1.6rem;
  }
}
@media (max-width: 1235px) {
  .colors-functions .products__slider .products__slider-functions {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  .colors-functions .products__slider .products__slider-functions::-webkit-scrollbar {
    display: none;
  }
}
.colors-functions .products__slider .functions__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
}
@media (max-width: 1235px) {
  .colors-functions .products__slider .functions__list {
    justify-content: start;
    width: max-content;
    min-width: 100%;
  }
}
.colors-functions .products__slider .functions__list .functions__item-link {
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 16rem;
}
.colors-functions .products__slider .functions__list .functions__item-link .functions__item-img {
  width: 8.8rem;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease-out;
}
.colors-functions .products__slider .functions__list .functions__item-link .functions__item-title {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6rem;
  color: #6E6E6E;
  transition: all 0.3s ease-out;
}
.colors-functions .products__slider .functions__list .functions__item-link.active .functions__item-img {
  opacity: 1;
}
.colors-functions .products__slider .functions__list .functions__item-link.active .functions__item-title {
  color: #FFFFFF;
}
.colors-functions .products__slider .functions__list .functions__item-link:hover .functions__item-title {
  color: #029D7A;
}
.colors-functions .products__slider .products__slider-colors {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .products__slider-colors {
    width: 100vw;
    margin-left: -2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .products__slider-colors {
    margin-bottom: 0;
    margin-left: -1.6rem;
  }
}
.colors-functions .products__slider .slider__main-view {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .slider__main-view {
    width: 180%;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__main-view {
    width: 100%;
    margin-bottom: 1.2rem;
  }
}
.colors-functions .products__slider .slider__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12.8rem;
  width: 100%;
  contain: layout paint;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: transform, opacity;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .slider__track {
    gap: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .colors-functions .products__slider .slider__track {
    gap: 0;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__track {
    padding: 0;
  }
}
.colors-functions .products__slider .slider__track.is-changing {
  opacity: 0;
  transform: scale(0.98);
}
.colors-functions .products__slider .slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-in-out, filter 0.4s ease-in-out;
  will-change: transform, opacity, filter;
}
.colors-functions .products__slider .slider__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.4s ease-in-out;
}
.colors-functions .products__slider .slider__slide--side {
  max-width: 30rem;
  opacity: 0.3;
  filter: blur(1px);
  transform: scale(0.85);
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .slider__slide--side {
    max-width: 45rem;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__slide--side {
    display: none;
  }
}
.colors-functions .products__slider .slider__slide--active {
  max-width: 50rem;
  opacity: 1;
  filter: none;
  z-index: 2;
  transform: scale(1.15);
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__slide--active {
    transform: scale(1);
    max-width: 32.8rem;
  }
}
.colors-functions .products__slider .slider__slide--active img {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}
.colors-functions .products__slider .slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background-color: rgba(94, 93, 93, 0.3);
  border: 0.1rem solid transparent;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}
.colors-functions .products__slider .slider__arrow:hover {
  background-color: rgba(94, 93, 93, 0.5);
}
.colors-functions .products__slider .slider__arrow--prev {
  left: 28%;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .slider__arrow--prev {
    left: 32%;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__arrow--prev {
    left: 4%;
  }
}
.colors-functions .products__slider .slider__arrow--next {
  right: 28%;
}
@media screen and (max-width: 960px) {
  .colors-functions .products__slider .slider__arrow--next {
    right: 31%;
  }
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__arrow--next {
    right: 4%;
  }
}
.colors-functions .products__slider .slider__arrow img {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  pointer-events: none;
}
.colors-functions .products__slider .slider__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__actions {
    flex-direction: column;
    width: 100%;
    gap: 1.6rem;
  }
}
.colors-functions .products__slider .slider__actions a {
  padding: 1.3rem 2.4rem;
}
@media screen and (max-width: 510px) {
  .colors-functions .products__slider .slider__actions a {
    padding: 1rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.interior {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .interior {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .interior {
    padding-top: 8rem;
  }
}
.interior {
  overflow-x: hidden;
}
.interior .interior__top {
  display: flex;
  align-items: flex-end;
  gap: 6.4rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 1060px) {
  .interior .interior__top {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .interior .interior__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .interior .interior__top {
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.interior .interior__top .interior__desc-text {
  flex: 1;
  font-size: 2rem;
  line-height: 2.6rem;
  color: #F5F5F5;
  font-weight: 400;
}
@media (max-width: 1060px) {
  .interior .interior__top .interior__desc-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .interior .interior__top .interior__desc-text {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.interior .interior__bottom {
  position: relative;
  width: 100%;
  overflow: visible;
}
.interior .interior__slider {
  display: flex;
  gap: 2.4rem;
  width: 100vw;
  position: relative;
  overflow-y: hidden;
  left: calc(-1 * (100vw - 100%) / 2);
  padding-left: max(4rem, (100vw - 155rem) / 2 + 4rem);
  padding-right: max(4rem, (100vw - 155rem) / 2 + 4rem);
}
@media (max-width: 1340px) {
  .interior .interior__slider {
    padding-left: max(4rem, (100vw - 128rem) / 2 + 4rem);
    padding-right: max(4rem, (100vw - 128rem) / 2 + 4rem);
  }
}
@media screen and (max-width: 960px) {
  .interior .interior__slider {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .interior .interior__slider {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    gap: 2rem;
  }
}
.interior .interior__slider {
  overflow-x: auto;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.interior .interior__slider::-webkit-scrollbar {
  display: none;
}
.interior .interior__slider {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.interior .interior__slider:active {
  cursor: grabbing;
}
.interior .interior__slider .interior__item {
  flex: 0 0 38.4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .interior .interior__slider .interior__item {
    flex: 0 0 40rem;
  }
}
@media screen and (max-width: 510px) {
  .interior .interior__slider .interior__item {
    flex: 0 0 30rem;
  }
}
.interior .interior__slider .interior__item .interior__item-img {
  width: 100%;
  height: 27.8rem;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 1.6rem;
  user-select: none;
  -webkit-user-drag: none;
}
@media screen and (max-width: 510px) {
  .interior .interior__slider .interior__item .interior__item-img {
    height: 16.8rem;
    margin-bottom: 1.2rem;
    border-radius: 1.2rem;
  }
}
.interior .interior__slider .interior__item .heading-4 {
  color: #F5F5F5;
  margin-bottom: 0.8rem;
  font-size: 2.4rem;
  line-height: 3rem;
}
@media screen and (max-width: 510px) {
  .interior .interior__slider .interior__item .heading-4 {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 0.4rem;
  }
}
.interior .interior__slider .interior__item .interior__item-desc {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: #D0D2D2;
}

.technology {
  position: relative;
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .technology {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .technology {
    padding-top: 8rem;
  }
}
.technology {
  overflow: visible;
}
.technology .technology__sticky-wrapper {
  width: 100%;
}
.technology .technology__top {
  display: flex;
  align-items: start;
  gap: 6.4rem;
}
@media screen and (max-width: 960px) {
  .technology .technology__top {
    flex-direction: column;
    gap: 3.2rem;
    align-items: center;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 510px) {
  .technology .technology__top {
    gap: 1.6rem;
  }
}
.technology .technology__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47rem;
}
@media screen and (max-width: 960px) {
  .technology .technology__visual {
    width: 100%;
    height: 100%;
  }
}
.technology .technology__canvas-container {
  width: 100%;
  max-width: 72rem;
  aspect-ratio: 1152/700;
  overflow: visible;
}
.technology .technology__canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: contents;
}
.technology .technology__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .technology .technology__header {
    gap: 0;
  }
  .technology .technology__header .heading-2 {
    margin-bottom: 2rem;
  }
  .technology .technology__header .technology__lead {
    margin-bottom: 3.2rem;
  }
}
.technology .technology__header .technology__lead {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 400;
  color: #F5F5F5;
}
@media screen and (max-width: 960px) {
  .technology .technology__header .technology__lead {
    color: #D0D2D2;
  }
}
@media screen and (max-width: 510px) {
  .technology .technology__header .technology__lead {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1.6rem;
  }
}
.technology .technology__bottom {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 960px) {
  .technology .technology__bottom {
    gap: 3.2rem;
  }
}
@media (max-width: 870px) {
  .technology .technology__bottom {
    flex-direction: column;
    gap: 4.8rem;
  }
}
.technology .technology__bottom .technology__feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 510px) {
  .technology .technology__bottom .technology__feature-card {
    gap: 1.6rem;
  }
}
.technology .technology__bottom .technology__feature-card .technology__brands {
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media (max-width: 1162px) {
  .technology .technology__bottom .technology__feature-card .technology__brands {
    gap: 0;
    justify-content: space-between;
  }
}
@media (max-width: 430px) {
  .technology .technology__bottom .technology__feature-card .technology__brands img:first-child {
    width: 40%;
  }
  .technology .technology__bottom .technology__feature-card .technology__brands img:nth-child(2) {
    width: 15%;
  }
  .technology .technology__bottom .technology__feature-card .technology__brands img:nth-child(3) {
    width: 35%;
  }
}
.technology .technology__bottom .technology__feature-card .technology__desc {
  display: flex;
  flex-direction: column;
  padding-bottom: 4.6rem;
}
@media (max-width: 870px) {
  .technology .technology__bottom .technology__feature-card .technology__desc {
    padding: 0;
  }
}
.technology .technology__bottom .technology__feature-card .technology__desc .heading-4 {
  margin-bottom: 0.8rem;
}
.technology .technology__bottom .technology__feature-card .technology__desc .technology__feature-text {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .technology .technology__bottom .technology__feature-card .technology__desc .technology__feature-text {
    color: #D0D2D2;
  }
}
@media screen and (max-width: 510px) {
  .technology .technology__bottom .technology__feature-card .technology__desc .technology__feature-text {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1.6rem;
    margin-bottom: 2.2rem;
  }
}
.technology .technology__bottom .technology__feature-card .technology__desc p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #D0D2D2;
}

.videos {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .videos {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .videos {
    padding-top: 8rem;
  }
}
.videos {
  overflow-x: hidden;
}
.videos .videos__wrapper .accent__btn.mobile {
  display: none;
}
@media screen and (max-width: 510px) {
  .videos .videos__wrapper .accent__btn.mobile {
    display: block;
    padding: 1.3rem 3.2rem;
    width: fit-content;
  }
}
.videos .videos__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6.4rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 960px) {
  .videos .videos__top {
    flex-direction: column;
    gap: 2rem;
    align-items: start;
  }
  .videos .videos__top .accent__btn {
    padding: 1.3rem 3.2rem;
  }
}
@media screen and (max-width: 510px) {
  .videos .videos__top .accent__btn {
    display: none;
  }
  .videos .videos__top {
    margin-bottom: 0;
  }
}
.videos .videos__top .videos__top-wrapper {
  display: none;
}
@media screen and (max-width: 510px) {
  .videos .videos__top .videos__top-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .videos .videos__top .videos__top-wrapper .videos__top-clue {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #FFFFFF;
  }
  .videos .videos__top .videos__top-wrapper .videos__top-arrows {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .videos .videos__top .videos__top-wrapper .videos__top-arrows .videos__arrow {
    width: 4rem;
    height: 4rem;
    background-color: #029D7A;
    border: 0.1rem solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
  }
  .videos .videos__top .videos__top-wrapper .videos__top-arrows .videos__arrow.is-disabled {
    background-color: rgba(94, 93, 93, 0.3);
    pointer-events: none;
  }
  .videos .videos__top .videos__top-wrapper .videos__top-arrows .videos__arrow.is-disabled img {
    width: 2rem;
    height: auto;
  }
}
.videos .videos__bottom {
  position: relative;
  width: 100%;
  overflow: visible;
}
.videos .videos__slider {
  display: flex;
  gap: 2.4rem;
  width: 100vw;
  position: relative;
  left: calc(-1 * (100vw - 100%) / 2);
  padding-left: max(4rem, (100vw - 155rem) / 2 + 4rem);
  padding-right: max(4rem, (100vw - 155rem) / 2 + 4rem);
}
@media (max-width: 1340px) {
  .videos .videos__slider {
    padding-left: max(4rem, (100vw - 128rem) / 2 + 4rem);
    padding-right: max(4rem, (100vw - 128rem) / 2 + 4rem);
  }
}
@media screen and (max-width: 960px) {
  .videos .videos__slider {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .videos .videos__slider {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    gap: 2rem;
  }
}
.videos .videos__slider {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.videos .videos__slider::-webkit-scrollbar {
  display: none;
}
.videos .videos__slider {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.videos .videos__slider:active {
  cursor: grabbing;
}
.videos .videos__slider .videos__item {
  flex: 0 0 60rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 510px) {
  .videos .videos__slider .videos__item {
    flex: 0 0 30rem;
  }
}
.videos .videos__slider .videos__item .videos__video-wrapper {
  position: relative;
  width: 100%;
  height: 33.8rem;
  margin-bottom: 2rem;
  border-radius: 1.6rem;
  overflow: hidden;
  background-color: #000000;
}
@media screen and (max-width: 510px) {
  .videos .videos__slider .videos__item .videos__video-wrapper {
    height: 16.9rem;
    border-radius: 1.2rem;
    margin-bottom: 1.6rem;
  }
}
.videos .videos__slider .videos__item .videos__video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
  z-index: 1;
}
.videos .videos__slider .videos__item .videos__video-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.15);
}
.videos .videos__slider .videos__item .videos__video-wrapper:hover .videos__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #029D7A;
}
.videos .videos__slider .videos__item .videos__item-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  will-change: transform;
  position: relative;
  z-index: 0;
}
.videos .videos__slider .videos__item .videos__item-video::-webkit-media-controls-panel, .videos .videos__slider .videos__item .videos__item-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.videos .videos__slider .videos__item .videos__item-video.is-playing {
  z-index: 3;
}
.videos .videos__slider .videos__item .videos__item-video.is-playing::-webkit-media-controls-panel {
  display: flex !important;
}
.videos .videos__slider .videos__item .videos__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.6rem;
  height: 5.6rem;
  border-radius: 1.6rem;
  background-color: #5e5d5d;
  border: none;
  cursor: pointer;
  z-index: 2;
  background-image: url("../../assets/images/videos/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.2rem 3.2rem;
}
@media screen and (max-width: 510px) {
  .videos .videos__slider .videos__item .videos__play-btn {
    width: 6.3rem;
    height: 4.4rem;
    background-size: 2.6rem 2.6rem;
    border-radius: 1.2rem;
  }
}
.videos .videos__slider .videos__item .videos__play-btn {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}
.videos .videos__slider .videos__item .videos__play-btn .videos__play-icon {
  display: none;
}
.videos .videos__slider .videos__item .heading-4 {
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  line-height: 2.6rem;
}
.videos .videos__slider .videos__item .videos__item-desc {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: #888888;
}

.designers {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .designers {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .designers {
    padding-top: 8rem;
  }
}
.designers .designers__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
}
@media (max-width: 1050px) {
  .designers .designers__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 510px) {
  .designers .designers__wrapper {
    gap: 0;
  }
  .designers .designers__wrapper .designers__col:nth-child(2) {
    display: none;
  }
}
.designers .designers__wrapper .designers__col {
  flex: 1;
  width: 100%;
}
.designers .designers__wrapper .designers__col .designers__col-img {
  width: 100%;
  border-radius: 1.6rem;
}
.designers .designers__wrapper .designers__col:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.designers .designers__wrapper .designers__col:first-child .heading-2 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 510px) {
  .designers .designers__wrapper .designers__col:first-child .heading-2 {
    margin-bottom: 1.6rem;
  }
}
.designers .designers__wrapper .designers__col:first-child .designers__list {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 510px) {
  .designers .designers__wrapper .designers__col:first-child .designers__list {
    margin-bottom: 1.6rem;
  }
}
.designers .designers__wrapper .designers__col:first-child .designers__list .designers__item {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 2.5rem;
  color: #D0D2D2;
  font-size: 2rem;
  line-height: 2.6rem;
}
.designers .designers__wrapper .designers__col:first-child .designers__list .designers__item:not(:last-child) {
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 960px) {
  .designers .designers__wrapper .designers__col:first-child .designers__list .designers__item {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .designers .designers__wrapper .designers__col:first-child .designers__list .designers__item {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .designers .designers__wrapper .designers__col:first-child .designers__list .designers__item:not(:last-child) {
    margin-bottom: 2.2rem;
  }
}
@media screen and (max-width: 960px) {
  .designers .designers__wrapper .designers__col:first-child .accent__btn {
    padding: 1.3rem 3.2rem;
  }
}
@media screen and (max-width: 510px) {
  .designers .designers__wrapper .designers__col:first-child .accent__btn {
    padding: 1rem 2.8rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 360px) {
  .designers .designers__wrapper .designers__col:first-child .accent__btn p {
    font-size: 1.4rem;
  }
}

.showroom {
  padding-top: 12rem;
}
@media screen and (max-width: 960px) {
  .showroom {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 510px) {
  .showroom {
    padding-top: 8rem;
  }
}
.showroom .showroom__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
@media screen and (max-width: 960px) {
  .showroom .showroom__wrapper {
    gap: 3.2rem;
  }
}
.showroom .showroom__wrapper .showroom__header {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
}
@media (max-width: 1222px) {
  .showroom .showroom__wrapper .showroom__header {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .showroom .showroom__wrapper .showroom__header {
    gap: 1.6rem;
  }
}
.showroom .showroom__wrapper .showroom__header .showroom__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
}
@media (max-width: 1222px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col {
    gap: 0;
  }
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-subtitle {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 1222px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-subtitle {
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 510px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-subtitle {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-text {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 400;
}
@media (max-width: 1222px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-text {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-text {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 2.4rem;
  }
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__col-text {
  color: #FFFFFF;
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions {
  display: flex;
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 590px) {
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions {
    flex-direction: column;
  }
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions .base__btn-outline {
    width: fit-content;
  }
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions .accent__btn {
    display: block;
    padding: 1rem 3.2rem;
    width: fit-content;
  }
  .showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions .accent__btn p {
    text-align: center;
  }
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions a {
  padding: 1rem 3.2rem;
}
.showroom .showroom__wrapper .showroom__header .showroom__col .showroom__actions a.base__btn-outline p {
  color: #FFFFFF;
}
.showroom .showroom__wrapper .showroom__video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1.6rem;
  background-color: #000000;
}
@media screen and (max-width: 960px) {
  .showroom .showroom__wrapper .showroom__video-wrapper {
    width: 100vw;
    margin-left: -2.4rem;
    border-radius: 0;
  }
}
@media (max-width: 510px) {
  .showroom .showroom__wrapper .showroom__video-wrapper {
    margin-left: -1.5rem;
  }
}
.showroom .showroom__wrapper .showroom__video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
  z-index: 1;
}
.showroom .showroom__wrapper .showroom__video-wrapper:hover {
  cursor: pointer;
}
.showroom .showroom__wrapper .showroom__video-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.15);
}
.showroom .showroom__wrapper .showroom__video-wrapper:hover .showroom__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #029D7A;
}
.showroom .showroom__wrapper .showroom__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  will-change: transform;
  position: relative;
  z-index: 0;
}
.showroom .showroom__wrapper .showroom__video::-webkit-media-controls-panel, .showroom .showroom__wrapper .showroom__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.showroom .showroom__wrapper .showroom__video.is-playing {
  z-index: 3;
}
.showroom .showroom__wrapper .showroom__video.is-playing::-webkit-media-controls-panel {
  display: flex !important;
}
.showroom .showroom__wrapper .showroom__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.6rem;
  height: 5.6rem;
  border-radius: 1.6rem;
  background-color: #5e5d5d;
  border: none;
  cursor: pointer;
  z-index: 2;
  background-image: url("../../assets/images/videos/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.2rem 3.2rem;
}
@media screen and (max-width: 510px) {
  .showroom .showroom__wrapper .showroom__play-btn {
    width: 6.3rem;
    height: 4.4rem;
    background-size: 2.6rem 2.6rem;
    border-radius: 1.2rem;
  }
}
.showroom .showroom__wrapper .showroom__play-btn {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}
.showroom .showroom__wrapper .showroom__play-btn .videos__play-icon {
  display: none;
}

.footer {
  padding: 3.2rem 0;
  min-height: 30rem;
  background-color: #0D0D0D;
}
.footer .footer__wrapper {
  display: flex;
  gap: 11.7rem;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper {
    gap: 10rem;
    justify-content: space-between;
  }
}
@media (max-width: 725px) {
  .footer .footer__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
  .footer .footer__wrapper .footer__col:first-child {
    display: flex;
    flex-direction: row;
    gap: 3.2rem;
    align-items: center;
  }
}
@media screen and (max-width: 360px) {
  .footer .footer__wrapper .footer__col:first-child {
    gap: 1rem;
  }
}
.footer .footer__wrapper .footer__col:nth-child(2) {
  width: 100%;
}
.footer .footer__wrapper .footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 23.6rem;
  justify-content: space-between;
  min-width: 16.8rem;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col {
    min-height: 33.3rem;
  }
}
@media (max-width: 725px) {
  .footer .footer__wrapper .footer__col {
    min-height: auto;
  }
}
@media screen and (max-width: 360px) {
  .footer .footer__wrapper .footer__col .footer__left-img:first-child {
    width: 50%;
  }
  .footer .footer__wrapper .footer__col .footer__left-img:nth-child(2) {
    width: 25%;
  }
}
.footer .footer__wrapper .footer__col .footer__data {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1060px) {
  .footer .footer__wrapper .footer__col .footer__data {
    flex-wrap: wrap;
    row-gap: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__data {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-title {
  font-size: 1.6rem;
  color: #029D7A;
  line-height: 2rem;
  font-weight: 600;
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-text, .footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-link {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  max-width: 36rem;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-text, .footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-link {
    max-width: 100%;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-text, .footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-link {
  transition: all 0.3s ease-out;
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col .footer__data-link:hover {
  color: #029D7A;
}
.footer .footer__wrapper .footer__col .footer__data .footer__data-col:nth-child(2) {
  max-width: 22rem;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__data .footer__data-col:nth-child(2) {
    max-width: 100%;
  }
}
.footer .footer__wrapper .footer__col .footer__contacts {
  display: flex;
  gap: 15rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 1060px) {
  .footer .footer__wrapper .footer__col .footer__contacts {
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__contacts {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 510px) {
  .footer .footer__wrapper .footer__col .footer__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.footer .footer__wrapper .footer__col .footer__contacts .footer__socials {
  display: flex;
  gap: 3.8rem;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__contacts .footer__socials {
    gap: 2rem;
  }
}
.footer .footer__wrapper .footer__col .footer__contacts .footer__socials .footer__social {
  width: 4.4rem;
  height: 4.4rem;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .footer .footer__wrapper .footer__col .footer__contacts .footer__socials .footer__social {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.footer .footer__wrapper .footer__col .footer__contacts .footer__socials .footer__social:hover {
  opacity: 0.5;
}
.footer .footer__wrapper .footer__col .footer__contacts .footer__socials .footer__social img {
  width: 100%;
  height: auto;
}
.footer .footer__wrapper .footer__col .footer__contacts .base__btn-outline {
  padding: 1rem 2.4rem;
}
.footer .footer__wrapper .footer__col .footer__contacts .base__btn-outline p {
  color: #FFFFFF;
}

/* Оверлей (затемнение фона) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Контейнер модального окна */
.popup-modal {
  background: linear-gradient(180deg, #373737 0%, #000000 100%); /* Темный фон из макета */
  color: #FFFFFF;
  width: 100%;
  max-width: 58rem;
  border-radius: 1.6rem;
  padding: 3rem;
  position: relative;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

/* Кнопка закрытия (Крестик) */
.popup-modal__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.popup-modal__close:hover {
  opacity: 1;
}

/* Заголовки */
.popup-modal__title {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 1.2rem;
  color: #FFFFFF;
}

.popup-modal__subtitle {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #FFFFFF;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.popup-form {
  /* Элементы формы */
}
.popup-form .popup-form__field {
  margin-bottom: 1.6rem;
}

.popup-form__input,
.popup-form__textarea {
  width: 100%;
  background-color: rgba(94, 93, 93, 0.1882352941); /* Серый фон инпутов */
  border: 0.1rem solid transparent;
  border-radius: 0.8rem;
  padding: 1rem 1.6rem;
  color: #E2E5EB;
  font-size: 1.4rem;
  line-height: 2rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.popup-form__input::placeholder,
.popup-form__textarea::placeholder {
  color: #787F86;
}

.popup-form__input:focus,
.popup-form__textarea:focus {
  outline: none;
  border-color: #029D7A;
}

.popup-form__textarea {
  resize: none;
}

/* Кастомный Чекбокс согласия */
.popup-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  cursor: pointer;
}

.popup-form__checkbox-real {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.popup-form__checkbox-custom {
  min-width: 2rem;
  min-height: 2rem;
  border: 0.1rem solid #D0D2D2;
  border-radius: 0.6rem;
  position: relative;
  background-color: transparent;
  transition: background-color 0.2s, border-color 0.2s;
}

/* Иконка галочки при выборе */
.popup-form__checkbox-real:checked + .popup-form__checkbox-custom {
  background-color: #029D7A;
  border-color: #029D7A;
}

.popup-form__checkbox-real:checked + .popup-form__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 0.67rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1.2rem;
  border: solid #FFFFFF;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}

.popup-form__checkbox-text {
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: #969FA8;
  font-weight: 400;
}

/* Фирменная зеленая кнопка отправки */
.popup-form__submit-btn {
  width: auto;
  background-color: #00AC86; /* Цвет бренда из макета */
  color: #FFFFFF;
  border: none;
  border-radius: 10rem;
  padding: 1.3rem 3.2rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.popup-form__submit-btn:hover,
.popup-form__submit-btn:active {
  background-color: #029D7A;
}

/* Стили кастомной валидации при ошибке */
.popup-form__input.error,
.popup-form__textarea.error {
  border-color: #F26F75 !important;
}

.popup-form__input.error:focus,
.popup-form__textarea.error:focus {
  border-color: #F26F75 !important;
}

/* Подсветка рамки кастомного чекбокса при ошибке */
.popup-form__checkbox-real.error + .popup-form__checkbox-custom {
  border-color: #F26F75 !important;
}

@media (max-width: 590px) {
  .popup-overlay {
    justify-content: stretch;
    align-items: stretch;
  }
  .popup-modal {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    padding: 1.6rem;
  }
  .popup-modal__close {
    top: 1.6rem;
    right: 1.6rem;
  }
  .popup-modal__title {
    margin-top: 2.4rem;
    font-size: 2.8rem;
    line-height: 3.2rem;
    margin-bottom: 0.8rem;
  }
  .popup-modal__subtitle {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .popup-form .popup-form__field,
  .popup-form__checkbox-label {
    margin-bottom: 1.2rem;
  }
  .popup-form__checkbox-text {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .popup-form__submit-btn {
    width: 100%;
  }
  .popup-form__submit-btn {
    padding: 1rem 3.2rem;
  }
}

/*# sourceMappingURL=main.css.map */
