*::-webkit-scrollbar {
  width: 16px;
  /* height: 16px; */
}

*::-webkit-scrollbar-track {
  background: #ffffff1a;
}

*::-webkit-scrollbar-thumb {
  background: #fff;
}

*::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ffffff1a #fff;
}

:root {
  font-family: sans-serif;
  font-size: 10px;
  --nav-height: clamp(6rem, 5vw + 1rem, 10rem);
  --hero-title-size: clamp(3.2rem, 5vw + 1rem, 8rem);
  --hero-paragraph-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
}

::marker {
  margin-right: 2rem;
}

html,
body {
  position: relative;
  scroll-behavior: smooth;
  /* background-color: #000; */
}

a {
  text-decoration: none;
}

.noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-filter: url(#filter);
  filter: url(#filter);
  z-index: -1;
}

/* @supports not (filter: url(#filter)) {
  .noise {
    opacity: 0.95;
    background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  }
} */

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

header {
  background-color: #000000;
  border-bottom: 0.1rem solid #ffffff33;
  height: var(--nav-height);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 3rem;
  z-index: 10;
}

header button.burger-menu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 0.2rem;
  background: #fff;
  z-index: 10;
  -webkit-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}

header button.burger-menu::after,
header button.burger-menu::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
header button.burger-menu::before {
  top: -0.6rem;
}
header button.burger-menu::after {
  bottom: -0.6rem;
}

header button.burger-menu.active {
  background: transparent;
}

header button.burger-menu.active::before {
  -webkit-transform: translateY(0.66rem) rotate(45deg);
  -ms-transform: translateY(0.66rem) rotate(45deg);
  transform: translateY(0.66rem) rotate(45deg);
}
header button.burger-menu.active::after {
  -webkit-transform: translateY(-0.6rem) rotate(-45deg);
  -ms-transform: translateY(-0.6rem) rotate(-45deg);
  transform: translateY(-0.6rem) rotate(-45deg);
}

header nav.navigation-bar {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header nav.navigation-bar div.logo img {
  width: clamp(8rem, 5vw + 1rem, 12rem);
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
header nav.navigation-bar ul.nav-links {
  margin: 0;
  padding: 0;
  position: fixed;
  /* display: none; */
  -webkit-transform: translate(-100%);
  -ms-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  color: #000;
  height: calc(100vh - var(--nav-height));
  inset: 0;
  top: var(--nav-height);
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

header nav.navigation-bar ul.nav-links li {
  border-bottom: 0.1rem solid #00000033;
  width: 100%;
}

header nav.navigation-bar ul.nav-links li a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  font-size: 1.6rem;
  padding: 1.8rem 2.4rem;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header div.policy-block {
  position: absolute;
  top: calc(100vh - var(--nav-height));
  left: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  padding: 0 0 0 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header div.policy-block span.copyright {
  font-size: 1.6rem;
}
header div.policy-block ul.policy-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  color: #000;
}

header div.policy-block ul.policy-links li a {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
}

/* header.header-bar.open nav.navigation-bar ul.nav-links {
  -webkit-animation: tilt-in-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: tilt-in-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
header.header-bar.close nav.navigation-bar ul.nav-links {
  -webkit-animation: flip-out-hor-top 0.45s
    cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: flip-out-hor-top 0.45s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
} */

header.header-bar.open nav.navigation-bar ul.nav-links {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

header.header-bar.open nav.navigation-bar ul.nav-links li {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

header.header-bar.open nav.navigation-bar ul.nav-links li:nth-child(1) {
  -webkit-animation-delay: 150ms;
  animation-delay: 150ms;
}
header.header-bar.open nav.navigation-bar ul.nav-links li:nth-child(2) {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
header.header-bar.open nav.navigation-bar ul.nav-links li:nth-child(3) {
  -webkit-animation-delay: 450ms;
  animation-delay: 450ms;
}

header.header-bar.open nav.navigation-bar ul.nav-links,
header.header-bar.open div.policy-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.remove-scrolling {
  overflow: hidden;
}
.link-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.link-button::before {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask-image: url(#myMask);
  mask-image: url(#myMask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

/* .link-button::before {
  z-index: -1;
} */

/* .link-button:hover::after {
  background-color: #fff;
}

.link-button:hover::before {
  filter: invert(100%);
} */

/* .link-button::after {
  content: '';
  position: absolute;
  inset: -2px; 
  background: white;
  z-index: -1;
  transform: scale(1.01);

  -webkit-mask-image: url(#myMask);

  mask-image: url(#myMask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: calc(100% + 4px);
  -webkit-mask-position: center;
  mask-position: center;

} */

/* .link-button:hover::after {
  opacity: 1;
}

.link-button:hover::before {
  filter: invert(100%);
} */

.link-button.white::before {
  background-color: white;
}

.link-button.black::before {
  background-color: black;
}
.link-button.white {
  color: black;
}
.link-button.black {
  color: white;
}

.link-button .content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 4.4rem;
  font-size: 2rem;
  color: inherit;
  background: transparent;
  width: 100%;
  text-align: center;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

.link-button.mask-flip-x::before {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.link-button.mask-flip-y::before {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.link-button.mask-flip-xy::before {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 5.1rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;

  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border: 1px solid #ffffff33;
}

.social-link .icon {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-input {
  margin: 2.4rem 0;
  width: 100%;
}
.form-input label {
  position: relative;
  display: block;
  width: 100%;
  min-height: 45px;
}
.form-input .placeholder {
  position: absolute;
  display: block;
  top: 1rem;
  z-index: 2;
  font-size: 1.8rem;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 100%;
  cursor: text;
  color: #ffffff33;
}

.form-input input,
.form-input textarea {
  color: #fff;
  position: absolute;
  top: 15px;
  z-index: 1;
  width: 100%;
  font-size: 16px;
  border: 0;
  border-bottom: 0.1rem solid #ffffff33;
  -webkit-transition: border-color 200ms ease-in-out;
  -o-transition: border-color 200ms ease-in-out;
  transition: border-color 200ms ease-in-out;
  outline: none;
  padding: 0;
  margin: 0;
}
.form-input textarea {
  min-height: 1.8rem;
  padding: 8px;
  background: #ffffff1a;
  border-radius: 0.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
}

.form-input textarea:not(:focus) ~ span.placeholder {
  top: 2.4rem;
  left: 0.8rem;
}

.form-input input {
  height: 30px;
  background: transparent;
}
.form-input input:focus,
.form-input input:valid,
.form-input textarea:focus,
.form-input textarea:valid {
  border-color: #fff;
}
.form-input input:focus + .placeholder,
.form-input input:valid + .placeholder,
.form-input textarea:focus + .placeholder,
.form-input textarea:valid + .placeholder {
  top: -0.8rem;
  cursor: inherit;
  font-size: 1.2rem;
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal.active {
  display: block;
}

.modal-content {
  background-color: #000;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
}
.modal-content form {
  width: 100%;
}
.modal-content h2.login-title {
  font-family: Manrope, sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  leading-trim: none;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
}

.modal-content .close-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  z-index: 10;
  -webkit-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}

.modal-content .close-modal::after,
.modal-content .close-modal::before {
  content: '';
  position: absolute;
  width: 2rem;
  height: 0.2rem;
  background-color: #000;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.modal-content .close-modal::before {
  top: 1.5rem;
  left: 1.2rem;
  -webkit-transform: translateY(0.66rem) rotate(45deg);
  -ms-transform: translateY(0.66rem) rotate(45deg);
  transform: translateY(0.66rem) rotate(45deg);
}
.modal-content .close-modal::after {
  bottom: 1.4rem;
  left: 1.2rem;
  -webkit-transform: translateY(-0.6rem) rotate(-45deg);
  -ms-transform: translateY(-0.6rem) rotate(-45deg);
  transform: translateY(-0.6rem) rotate(-45deg);
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#modal-login .modal-links {
  display: none;
}

#modal-login .modal-links div.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#modal-login .modal-links div.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

#modal-login .modal-links .link-button {
  width: 100%;
  max-width: 31.2rem;
}

#modal-login .modal-links .link-button .content {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 1.5rem 3.2rem 1.5rem 4.8rem;

  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}

#modal-login .modal-links .link-button .content img.icon {
  -webkit-filter: invert(100%);
  filter: invert(100%);
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

#modal-login .modal-links div.site-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 6rem;
  gap: 4rem;
}

#modal-login .modal-links div.site-links div.link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

#modal-login .modal-links div.site-links div.link-block span.link-title {
  font-family: Manrope, sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 1.4rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff80;
}

#modal-login .modal-links div.site-links div.link-block div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

#modal-login .modal-links div.site-links div.link-block div a.link {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
}

#modal-login .modal-links div.policy-block {
  margin-top: 6.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
#modal-login .modal-links div.policy-block span.copyright {
  font-size: 1.6rem;
}
#modal-login .modal-links div.policy-block ul.policy-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  color: #000;
}

#modal-login .modal-links div.policy-block ul.policy-links li {
  font-weight: 400;
  font-style: Regular;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

#modal-login .modal-links div.policy-block ul.policy-links li a {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  color: #ffffff80;
}

#modal-login .modal-links div.policy-block span.copyright {
  color: #ffffff80;
  margin-top: 2rem;
}

#modal-login .modal-links img.logo {
  display: block;
  margin: 6rem auto 0;
}

#modal-login .modal-form {
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal-content .modal-form div.form-wrapper div.title-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-content .modal-form .link-button {
  width: 100%;
  margin-top: 4.4rem;
}

main.privacy {
  margin: 6rem auto 10rem;
  max-width: 96rem;
  padding: 0 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
main.privacy h1.page-title {
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(3.2rem, 5vw + 1rem, 5.6rem);
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

main.privacy div.privacy-paragraph:not(:last-child) {
  padding: 6rem 0;
  border-bottom: 1px solid #ffffff33;
}

main.privacy div.privacy-paragraph h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(2rem, 5vw + 1rem, 3.2rem);
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
main.privacy div.privacy-paragraph h5.subtitle {
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
}
main.privacy div.privacy-paragraph ul li,
main.privacy div.privacy-paragraph p {
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(1.6rem, 1vw + 1rem, 2.2rem);
  leading-trim: NONE;
  line-height: 145%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.7);
}

footer {
  border-top: 0.1rem solid #ffffff33;
  padding: 4rem 2.4rem;
}

footer div.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer div.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

footer .link-button {
  width: 100%;
  max-width: 31.2rem;
}

footer .link-button .content {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  /* padding: 1.5rem 3.2rem 1.5rem 4.8rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.2rem;
}

footer .link-button .content img.icon {
  -webkit-filter: invert(100%);
  filter: invert(100%);
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

footer div.site-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 6rem;
  gap: 4rem;
}

footer div.site-links div.link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

footer div.site-links div.link-block span.link-title {
  font-family: Manrope, sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 1.4rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff80;
}

footer div.site-links div.link-block div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

footer div.site-links div.link-block div a.link {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
}

footer div.policy-block {
  margin-top: 6.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
footer div.policy-block span.copyright {
  font-size: 1.6rem;
}
footer div.policy-block ul.policy-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  color: #000;
}

footer div.policy-block ul.policy-links li {
  font-weight: 400;
  font-style: Regular;
  leading-trim: none;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

footer div.policy-block ul.policy-links li a {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  color: #ffffff80;
}

footer div.policy-block span.copyright {
  color: #ffffff80;
  margin-top: 2rem;
}

footer img.logo {
  display: block;
  margin: 6rem auto 0;
}

/* Планшеты альбомные / маленькие ноутбуки */
@media (min-width: 1024px) {
  header button.burger-menu {
    -webkit-transform: translateX(-1000rem);
    -ms-transform: translateX(-1000rem);
    transform: translateX(-1000rem);
  }
  header div.policy-block {
    display: none;
  }
  header nav.navigation-bar div.logo {
    position: absolute;
    top: 50%;
    left: 10rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header nav.navigation-bar ul.nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #000;
    height: var(--nav-height);
    background-color: transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8rem;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  header nav.navigation-bar ul.nav-links li {
    border-bottom: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #ffffff99;
  }
  footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 16px 6fr;
    grid-template-columns: 2fr 6fr;
    -ms-grid-rows: 1fr 18px 1fr 18px 1fr 18px 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 18px;
    padding-bottom: 10rem;
  }
  footer > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  footer > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  footer > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  footer > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  footer > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  footer > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  footer > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  footer div.footer-socials {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 2 / 3;
  }
  footer div.site-links div.link-block div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  footer div.site-links {
    margin-top: 0;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  footer div.policy-block {
    margin-top: 0;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4 / 2 / 5 / 3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  footer div.policy-block span.copyright {
    margin: 0;
  }
  footer img.logo {
    margin-top: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 5 / 2;
  }
}

@media (min-width: 768px) {
  .hero-block .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  footer div.footer-socials {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer div.social-icons {
    margin: 0;
  }

  footer div.site-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  #modal-login {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
  }

  #modal-login .modal-links {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 18px 1fr 18px 1fr 18px 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 18px;
    align-self: flex-end;
    margin-bottom: 10rem;
  }

  #modal-login .modal-links > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  #modal-login .modal-links > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  #modal-login .modal-links > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  #modal-login .modal-links > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  #modal-login .modal-links > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  #modal-login .modal-links > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  #modal-login .modal-links > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  #modal-login .modal-links > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }

  #modal-login .modal-links div.footer-socials {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 2 / 3;
    align-self: flex-end;
  }
  #modal-login .modal-links div.site-links div.link-block div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #modal-login .modal-links div.site-links {
    margin-top: 0;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    align-self: flex-end;
  }
  #modal-login .modal-links div.policy-block {
    margin-top: 0;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4 / 2 / 5 / 3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #modal-login .modal-links div.policy-block span.copyright {
    margin: 0;
  }
  #modal-login .modal-links img.logo {
    margin-top: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 5 / 2;
  }

  #modal-login .modal-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    height: 100%;
    padding: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #modal-login .modal-form .close-modal {
    /* position: absolute; */
  }

  .modal-content .modal-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem 6.4rem;
  }
  .modal-content .modal-form div.form-wrapper {
    width: 100%;
  }
  .modal-content .modal-form div.form-wrapper div.title-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .modal-content .modal-form form .form-input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 6.4rem);
    flex: 1 1 calc(50% - 6.4rem);
  }

  .modal-content .modal-form .link-button {
    width: 26rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

@-webkit-keyframes tilt-in-top {
  0% {
    -webkit-transform: rotateY(30deg) translateY(-300px) skewY(-30deg);
    transform: rotateY(30deg) translateY(-300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
    transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}
@keyframes tilt-in-top {
  0% {
    -webkit-transform: rotateY(30deg) translateY(-300px) skewY(-30deg);
    transform: rotateY(30deg) translateY(-300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
    transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes flip-out-hor-top {
  0% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(70deg);
    transform: rotateX(70deg);
    opacity: 0;
  }
}
@keyframes flip-out-hor-top {
  0% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(70deg);
    transform: rotateX(70deg);
    opacity: 0;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-17 15:30:3
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
