@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family), serif;
}

input {
  font-family: var(--font-family), serif;
}

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

@font-face {
  font-family: RockStar;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/RockStar-Light.woff2") format("woff2"), url("../fonts/RockStar-Light.woff") format("woff");
}
@font-face {
  font-family: RockStar;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/RockStar-ExtraBold.woff2") format("woff2"), url("../fonts/RockStar-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: RockStar;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/RockStar-Bold.woff2") format("woff2"), url("../fonts/RockStar-Bold.woff") format("woff");
}
:root {
  --container-width: 1370px;
  --container-intend: 15px;
  --white: #fff;
  --black: #000;
  --semi-white: #D9D9D8;
  --red: #ED2224;
  --red-69: rgba(237, 34, 36, 0.6);
  --gray: #D9D9D8;
  --dark: #4B4B4B;
  --dark-60: rgba(75, 75, 75, 0.6);
  --semi-dark: #383838;
  --font-family: Raleway;
  --accent-font-family: RockStar;
  --font-size: 16px;
  --line-height: normal;
  --font-weight: 400;
  --background: #0A0A0A;
  --color: #fff;
}

body {
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  background-color: var(--background);
  color: var(--color);
}

*,
*::before,
*::after {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 425px;
}

html {
  position: relative;
  overflow-x: hidden;
  min-width: 425px;
}

.main {
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--dark) transparent;
}
.wrapper::-webkit-scrollbar {
  width: 21px;
}
.wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 999px;
}
.wrapper::-webkit-scrollbar-thumb {
  background-color: var(--dark);
  border-radius: 999px;
  border: 8px solid transparent;
  background-clip: padding-box;
}

.container {
  max-width: var(--container-width);
  padding: 0 var(--container-intend);
  margin: 0 auto;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  padding-block: 32px;
}
@media (max-width: 576px) {
  .header {
    padding-block: 20px;
  }
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .header-logo {
    width: 86px;
  }
}
.header-logo-image {
  max-width: 100%;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (any-hover: hover) {
  .header-nav-link:hover {
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(75, 75, 75, 0.3);
  }
}
.header-menu {
  display: none;
}
@media (max-width: 1024px) {
  .header-menu {
    display: block;
  }
}
.header-menu.active .header-menu-content {
  transform: translateX(var(--padding));
  opacity: 1;
  visibility: visible;
}
.header-menu-button-close {
  display: none;
  color: var(--white);
}
.header-menu-button-burger {
  color: var(--white);
}
.header-menu-content {
  --padding: 0px;
  position: absolute;
  right: 0;
  top: 120px;
  z-index: 1000;
  transform: translateX(100%);
  padding-block: 24px;
  padding-right: 10px;
  opacity: 0;
  visibility: hidden;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px 0 0 24px;
  border: 1px solid rgba(75, 75, 75, 0.6);
  border-right: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .header-menu-content {
    top: 90px;
  }
}
.header-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-menu-nav-link {
  padding: 12px 10px 12px 24px;
  color: var(--white);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (any-hover: hover) {
  .header-menu-nav-link:hover {
    color: var(--red);
  }
}

.burger-icon .line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger-icon .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger-icon .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.burger-icon .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger-icon.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.burger-icon.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.burger-icon.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  height: 100vh;
}
@media (max-height: 840px) and (min-width: 576px) {
  .hero {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 80px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 60px;
  }
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
}
@media (max-width: 576px) {
  .hero-container {
    justify-content: center;
  }
}
.hero-banner {
  position: relative;
}
.hero-company {
  font-size: 240px;
  font-family: var(--accent-font-family), serif;
  font-weight: 800;
  line-height: 100%;
  color: var(--semi-white);
}
@media (max-width: 1345px) {
  .hero-company {
    font-size: 16.84vw;
  }
}
@media (max-width: 425px) {
  .hero-company {
    font-size: 70px;
  }
}
.hero-mark {
  position: absolute;
  right: -34px;
  bottom: 20px;
  min-width: 12px;
  min-height: 12px;
}
@media (max-width: 1345px) {
  .hero-mark {
    width: 2.4vw;
    height: 2.4vw;
    bottom: 1vw;
    right: -2.5vw;
  }
}
.hero-title {
  margin-bottom: 64px;
  font-size: 40px;
  color: var(--semi-white);
  line-height: 100%;
  font-weight: 700;
  font-family: var(--accent-font-family), serif;
}
@media (max-width: 1345px) {
  .hero-title {
    font-size: 2.93vw;
  }
}
@media (max-width: 768px) {
  .hero-title {
    margin-bottom: 100px;
    font-size: 4.6vw;
  }
}
@media (max-width: 425px) {
  .hero-title {
    font-size: 19px;
  }
}
.hero-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero-subtitle {
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
  }
}
.button {
  display: flex;
  align-items: center;
}
@media (any-hover: hover) {
  .button:hover .button-text {
    border-radius: 80px 0 0 80px;
  }
  .button:hover .button-arrow {
    border-radius: 0 100% 100% 0;
  }
  .button:hover .button-arrow img {
    transform: translateX(5px);
  }
}
.button-text {
  display: flex;
  align-items: center;
  padding: 0 56px;
  height: 100px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--accent-font-family), serif;
  font-weight: 700;
  color: var(--white);
  transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--red);
  border-radius: 80px;
}
@media (max-width: 576px) {
  .button-text {
    padding: 0 32px;
    font-size: 16px;
    height: 80px;
  }
}
.button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 100%;
  transform: translateX(-4px);
  transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.button-arrow img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .button-arrow {
    height: 80px;
    width: 80px;
  }
}

.blur-circle {
  position: absolute;
  background: var(--red);
  background: #ED2224;
  filter: blur(200px);
  border-radius: 100%;
  animation: breath-desktop 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes breath-desktop {
  0% {
    filter: blur(200px);
    opacity: 1;
  }
  50% {
    filter: blur(100px);
    opacity: 0.6;
  }
  100% {
    filter: blur(200px);
    opacity: 1;
  }
}
.top-blur-circle {
  top: -406px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 550px;
  height: 550px;
}
@media (max-width: 1340px) {
  .top-blur-circle {
    width: 41vw;
    height: 41vw;
    min-width: 200px;
    min-height: 200px;
    filter: blur(20vw);
    top: -31vw;
  }
}
@media (max-width: 576px) {
  .top-blur-circle {
    top: -150px;
    filter: blur(100px);
  }
}

.title {
  font-size: 60px;
  font-family: var(--accent-font-family), serif;
  text-transform: uppercase;
  line-height: 110%;
  font-weight: 700;
  color: var(--semi-white);
}
@media (max-width: 1260px) {
  .title {
    font-size: 4.7vw;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }
}

.product {
  position: relative;
  padding-top: 120px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .product {
    padding-top: 90px;
  }
}
.product-circle {
  width: 670px;
  height: 670px;
  z-index: 1;
  min-width: 250px;
  min-height: 250px;
  filter: blur(150px);
}
@media (max-width: 1260px) {
  .product-circle {
    width: 53vw;
    height: 53vw;
    filter: blur(10vw);
  }
}
@media (max-width: 768px) {
  .product-circle {
    filter: blur(100px);
  }
}
.product-circle-right {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  right: -650px;
}
@media (max-width: 1260px) {
  .product-circle-right {
    right: -51vw;
  }
}
@media (max-width: 768px) {
  .product-circle-right {
    top: auto;
    bottom: 10%;
    right: -330px;
  }
}
@media (max-width: 576px) {
  .product-circle-right {
    right: -250px;
  }
}
.product-circle-left {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: -650px;
}
@media (max-width: 1260px) {
  .product-circle-left {
    left: -51vw;
  }
}
@media (max-width: 768px) {
  .product-circle-left {
    top: 30%;
    left: -330px;
  }
}
@media (max-width: 576px) {
  .product-circle-left {
    left: -250px;
  }
}
.product-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media (max-width: 768px) {
  .product-container {
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .product-container {
    gap: 30px;
  }
}
.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .product-top {
    flex-direction: column;
    gap: 30px;
  }
}
.product-title {
  flex: 0 0 46%;
  white-space: nowrap;
}
.product-content {
  display: flex;
  flex-direction: column;
  flex: 0 0 46%;
  gap: 24px;
}
.product-subtitle {
  font-size: 18px;
  line-height: 140%;
  color: var(--semi-white);
}
.product-danger {
  display: flex;
  gap: 14px;
  color: var(--red);
}
.product-danger .star {
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}
.product-wrapper {
  display: flex;
  gap: 100px;
}
@media (max-width: 1024px) {
  .product-wrapper {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
    gap: 100px;
  }
}
.product-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 58px;
}
.product-column-title {
  padding: 20px 40px;
  font-size: 20px;
  font-family: var(--accent-font-family), serif;
  color: var(--semi-white);
  line-height: 100%;
  font-weight: 700;
  background: rgba(75, 75, 75, 0.3);
  border-radius: 100px;
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 576px) {
  .product-list {
    gap: 40px;
  }
}
.product-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-item--no-subtitle {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.product-item--no-subtitle .product-item-image {
  margin: 0;
}
.product-item-badge {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 75px;
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 700;
  background: rgba(237, 34, 36, 0.6);
  backdrop-filter: blur(11.31px);
  border-radius: 100px;
}
.product-item-image {
  margin-left: 110px;
  max-width: 100%;
}
@media (max-width: 576px) {
  .product-item-image {
    margin-left: 0;
  }
}
.product-item-top {
  display: flex;
  align-items: center;
  gap: 40px;
}
.product-item-text {
  font-size: 18px;
  color: var(--semi-white);
}

.banner {
  padding: 80px 0;
}
.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .banner-container {
    flex-direction: column;
    align-items: center;
  }
}
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 52%;
  gap: 70px;
}
.banner-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 38%;
  gap: 40px;
}
.banner-illustration-button {
  display: none;
}
@media (max-width: 1024px) {
  .banner-illustration-button {
    display: flex;
  }
}
.banner-img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .banner-button {
    display: none;
  }
}

.audience {
  position: relative;
  padding: 90px 0;
}
@media (max-width: 576px) {
  .audience {
    padding-top: 60px;
  }
}
@media (max-width: 1345px) {
  .audience {
    padding-top: 6.69vw;
  }
}
.audience-container {
  display: flex;
  justify-content: center;
}
.audience-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 240px;
  font-family: var(--accent-font-family), serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #383838;
  line-height: 100%;
}
@media (max-width: 1345px) {
  .audience-text {
    font-size: 17.84vw;
  }
}
@media (max-width: 576px) {
  .audience-text {
    font-size: 85px;
  }
}
.audience-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 970px;
  gap: 80px;
  padding: 120px 110px;
  background: rgba(32, 32, 32, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 140px;
}
@media (max-width: 1024px) {
  .audience-wrapper {
    padding: 80px 50px;
    border-radius: 80px;
    gap: 70px;
  }
}
.audience-title {
  max-width: 402px;
}
.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 10px;
}
@media (max-width: 1024px) {
  .audience-list {
    grid-template-columns: 1fr;
  }
}
.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--semi-white);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .audience-item {
    white-space: wrap;
  }
}

.advantage {
  position: relative;
  padding: 90px 0;
}
.advantage-circle {
  width: 670px;
  height: 670px;
  z-index: 1;
  min-width: 250px;
  min-height: 250px;
  filter: blur(150px);
}
@media (max-width: 1260px) {
  .advantage-circle {
    width: 53vw;
    height: 53vw;
    filter: blur(10vw);
  }
}
@media (max-width: 768px) {
  .advantage-circle {
    filter: blur(100px);
  }
}
.advantage-circle-right {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  right: -650px;
}
@media (max-width: 1260px) {
  .advantage-circle-right {
    right: -51vw;
  }
}
@media (max-width: 768px) {
  .advantage-circle-right {
    top: auto;
    bottom: 10%;
    right: -330px;
  }
}
@media (max-width: 576px) {
  .advantage-circle-right {
    display: none;
  }
}
.advantage-circle-left {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: -650px;
}
@media (max-width: 1260px) {
  .advantage-circle-left {
    left: -51vw;
  }
}
@media (max-width: 768px) {
  .advantage-circle-left {
    top: 30%;
    left: -330px;
  }
}
@media (max-width: 576px) {
  .advantage-circle-left {
    left: -200px;
    top: 250px;
  }
}
.advantage-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 576px) {
  .advantage-title {
    max-width: 300px;
  }
}
.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1340px) {
  .advantage-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .advantage-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .advantage-list {
    grid-template-columns: 1fr;
  }
}
.advantage-item {
  display: flex;
  flex-direction: column;
  min-height: 323px;
  gap: 70px;
  padding: 40px 70px;
  font-size: 18px;
  line-height: 140%;
  color: var(--semi-white);
  background: #181818;
  border-radius: 50px;
}
@media (max-width: 1340px) {
  .advantage-item {
    padding: 40px 40px;
    gap: 40px;
    min-height: 240px;
  }
}

.partner {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .partner {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .partner {
    padding: 0 0 100px 0;
  }
}
.partner-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .partner-container {
    flex-direction: column;
    gap: 85px;
  }
}
.partner-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 37%;
}
.partner-subtitle {
  font-size: 18px;
  color: var(--semi-white);
}
@media (max-width: 576px) {
  .partner-subtitle {
    font-size: 17px;
  }
}
.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 42px;
  flex: 0 0 45%;
}
@media (max-width: 1024px) {
  .partner-list {
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .partner-list {
    gap: 12px;
  }
}
.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .partner-link:hover img {
    transform: scale(1.2);
  }
}
.partner-image {
  max-width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 576px) {
  .step-container {
    gap: 60px;
  }
}
.step-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .step-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 0;
  }
  .step-list :nth-child(3) .step-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .step-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .step-list {
    gap: 70px;
  }
}
.step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 140px;
  gap: 10px;
}
.step-arrow {
  position: absolute;
  right: -120px;
  top: 30px;
}
@media (max-width: 1340px) {
  .step-arrow {
    width: 9.7vw;
    right: -7vw;
  }
}
@media (max-width: 1024px) {
  .step-arrow {
    width: 120px;
    right: -100px;
  }
}
@media (max-width: 768px) {
  .step-arrow {
    display: none;
  }
}
.step-number {
  font-family: var(--accent-font-family), serif;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #0A0A0A 0%, #ED2224 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.step-text {
  font-size: 18px;
  color: var(--semi-white);
}

.link {
  color: var(--red);
  font-size: inherit;
}
@media (any-hover: hover) {
  .link:hover {
    text-decoration: underline;
  }
}

.faq {
  padding: 180px 0 100px 0;
}
@media (max-width: 1024px) {
  .faq {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
.faq-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.faq-title {
  font-size: 240px;
  text-transform: uppercase;
  color: #383838;
  font-family: var(--accent-font-family), serif;
  font-weight: 800;
}
@media (max-width: 1340px) {
  .faq-title {
    font-size: 17vw;
  }
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 150px;
    line-height: 100%;
  }
}
.faq-accordion {
  display: flex;
  flex-direction: column;
}
.faq-accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-accordion-item.is-active .faq-accordion-button {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.faq-accordion-item.is-active .faq-accordion-button .open {
  display: block;
}
.faq-accordion-item.is-active .faq-accordion-button .close {
  display: none;
}
.faq-accordion-button {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 33px 10px !important;
  border-bottom: 1px solid transparent !important;
  color: var(--white) !important;
  font: 400 18px var(--font-family), serif !important;
  background: transparent !important;
  transition: border 0.6s 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-accordion-button::after {
  content: "";
  display: none;
}
.faq-accordion-button svg {
  transition: transform 0.6s 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-accordion-button .open {
  display: none;
}
.faq-accordion-wrapper {
  padding: 32px 40px 32px 10px;
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 140% !important;
}

.footer {
  padding: 90px 0;
  background: #141414;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 576px) {
  .footer-container {
    align-items: center;
  }
}
.footer-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 576px) {
  .footer-list {
    gap: 20px;
  }
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 300;
  font-family: var(--accent-font-family), serif;
  color: var(--white);
}
@media (any-hover: hover) {
  .footer-link:hover {
    text-decoration: underline;
  }
}

.popup {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup-content {
  animation: showFromTop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup.close {
  user-select: none;
  pointer-events: none;
  animation: hide 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.popup.close .popup-content {
  animation: hideToTop 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  width: 100%;
  padding: 42px 10px 24px 10px;
  gap: 24px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(75, 75, 75, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 12px;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (any-hover: hover) {
  .popup-close:hover {
    background: rgba(75, 75, 75, 0.6);
  }
}
.popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding: 12px;
  font-family: var(--accent-font-family), serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}
@media (any-hover: hover) {
  .popup-link:hover {
    text-decoration: underline;
  }
}

@keyframes showFromTop {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes hide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes hideToTop {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
  }
}

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