@charset "utf-8";
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-SemiBold.woff") format("woff"),
    url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Bold.woff") format("woff"),
    url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Regular.woff") format("woff"),
    url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Medium.woff") format("woff"),
    url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html,
body {
  height: 100%;
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  padding: 0;
  background: #080610;
  font: 600 16px/1.45 Gilroy, -apple-system, "Open Sans", system-ui,
    "sans-serif";
  color: #a29dba;
  -webkit-text-size-adjust: none;
  display: flex;
  flex-direction: column;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
form,
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.input {
  border-radius: 15px;
  background: linear-gradient(134.21deg, #ffc8ad 14.63%, #b174ff 82.87%);
  padding: 1px;
  position: relative;
}
.input .bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  background: #fff;
  opacity: 0;
  transition-property: opacity, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .input input:hover:not(:focus) ~ .bg {
    opacity: 1;
  }
}
.input input.invalid:not(:hover) ~ .bg {
  opacity: 1;
  background-color: #ff3f56;
}
.input-err {
  text-align: left;
  font-weight: 500;
  color: #fff;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
  background: #100e1b url(../img/input-err.svg) no-repeat 15px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  margin: 5px 0 0 0;
  padding: 12px 12px 12px 50px;
}
input,
select,
textarea,
button {
  font: 600 16px/1.45 Gilroy, -apple-system, "Open Sans", system-ui,
    "sans-serif";
  color: #fff;
  outline: none;
  text-align: left;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
  -webkit-appearance: none;
  box-shadow: none;
  border: 0;
  background: #080610;
  border-radius: 15px;
  margin: 0;
  padding: 18px 20px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(162, 157, 186, 0.5);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: rgba(162, 157, 186, 0.5);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  color: rgba(162, 157, 186, 0.5);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5 !important;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5 !important;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5 !important;
}
input::-ms-clear {
  display: none;
}
button::-moz-focus-inner {
  border: 0;
}
textarea {
  resize: none;
}
h1,
.h1,
h2,
.h2 {
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 3px 0;
}
h3,
.h3 {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 3px 0;
}
.grad {
  display: inline-block;
  vertical-align: top;
  background: linear-gradient(90deg, #e571ff 0%, #ff8937 97.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn {
  display: inline-block;
  vertical-align: top;
  flex: 0 0 auto;
  max-width: 100%;
  text-align: center;
  -webkit-appearance: none;
  background: radial-gradient(
    100% 2339.91% at 0% 0%,
    #e571ff 9.59%,
    #ff8933 100%
  );
  border-radius: 15px;
  font: bold 16px/1.45 Gilroy, -apple-system, "Open Sans", system-ui,
    "sans-serif";
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 0;
  outline: none;
  padding: 16px 20px;
  color: #fff !important;
  position: relative;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .btn:hover:before {
    opacity: 0.1;
  }
}
.btn:active:before {
  z-index: 2;
}
.btn > * {
  position: relative;
}
.btn.nobg {
  background: none;
}
.outtaHere {
  overflow: hidden;
  max-width: 100vw;
  position: fixed !important;
  transform: scale(0) !important;
}
header,
nav,
section,
article,
aside,
footer,
menu,
time,
figure,
figcaption,
main {
  display: block;
}
img,
svg,
picture {
  border: 0;
  vertical-align: top;
}
a {
  color: #fff;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a[href^="tel"] {
  color: inherit !important;
  cursor: inherit;
  text-decoration: none !important;
}
strong {
  font-weight: bold;
}
p,
ol,
ul {
  margin: 1em 0;
  padding: 0;
}
ol,
ul,
li {
  list-style: none;
}
li {
  position: relative;
  margin: 0.5em 0;
  padding: 0 0 0 2em;
}
ul > li:before {
  content: "•";
  width: 2em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
ol {
  counter-reset: li;
}
ol > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-width: 2em;
  margin: 0 0 0 -2em;
  padding: 0 0.25em 0 0;
}
.break-word {
  word-break: break-all;
}
.nowrap {
  white-space: nowrap;
}
.uppercase {
  text-transform: uppercase;
}
.mainwrap {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.header,
.footer {
  flex: 0 0 auto;
}
.container {
  flex: 0 0 auto;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}
.header .container {
  display: flex;
  align-items: center;
}
.toggle-menu {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin: 0 15px 0 0;
  background: #1d192c;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 101;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle-menu span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #e571ff 0%, #ff8937 100%);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  z-index: 1;
}

@media (pointer: fine) {
  .toggle-menu:hover span {
    opacity: 1;
  }
}
.toggle-menu:before,
.toggle-menu:after {
  z-index: 2;
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  margin: 3px 0;
  transition-property: background, transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  background: #fff;
  transform: translate3d(0, 0, 0) rotate(0deg);
}
html.open-menu {
  overflow: hidden;
}
.open-menu .header {
  position: fixed;
}
.open-menu .toggle-menu {
  background-color: #fff;
}
.open-menu .toggle-menu span {
  opacity: 0 !important;
}
.open-menu .toggle-menu:before,
.open-menu .toggle-menu:after {
  background-color: #080610;
}
.open-menu .toggle-menu:before {
  transform: translate3d(0, 4px, 0) rotate(-135deg);
}
.open-menu .toggle-menu:after {
  transform: translate3d(0, -4px, 0) rotate(135deg);
}
.header .logo {
  flex: 0 0 auto;
  text-align: left;
  text-indent: -100vw;
  overflow: hidden;
  width: 156px;
  height: 25px;
  background: url(../img/logo.png) no-repeat 0 50%;
  background-size: contain;
  position: relative;
  z-index: 101;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
  background: radial-gradient(252.8% 86.36% at 0% 0%, #e571ff 0%, #ff8933 100%);
  padding: 90px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  color: #fff;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.open-menu .menu {
  transform: translate3d(0, 0, 0);
}
.menu .btn {
  color: #080610 !important;
  background: #fff;
}
.menu .btn:before {
  background: radial-gradient(
    100% 2339.91% at 0% 0%,
    #e571ff 9.59%,
    #ff8933 100%
  );
}

@media (pointer: fine) {
  .menu .btn:hover {
    color: #fff !important;
  }
  .menu .btn:hover:before {
    opacity: 1;
  }
  .menu .btn:active {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: none;
  }
  .menu .btn:active:before {
    z-index: auto;
  }
}
.menu .links {
  flex: 0 0 auto;
  width: 100%;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 30px 0;
}
.menu .links .link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
}
.menu .links .link.active {
  color: white;
}
.menu .btn {
  width: 100%;
  flex: 0 0 auto;
  margin: 0 0 20px 0;
}
.menu .lang {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.menu .lang .link {
  display: block;
  text-decoration: none;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  color: #080610;
  border-radius: 18px;
}
.menu .lang a.link {
  color: #fff;
  background: #080610;
}
.footer {
  padding-top: 100px;
  padding-bottom: 20px;
}
.footer .logo {
  display: block;
  width: 217px;
  height: 35px;
  background: url(../img/logo.png) no-repeat 0 50%;
  background-size: contain;
  margin: 0 0 40px 0;
}
.foot-title {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a29dba;
  margin: 0 0 20px 0;
}
.footer .list {
  margin: 0 0 -10px 0;
}
.footer ul {
  margin: 0;
  padding: 0;
}
.footer li:before {
  display: none;
}
.footer li {
  margin: 0;
  padding: 0 0 10px 0;
}
.footer .soc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer .soc .link {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e571ff 0%, #ff8937 100%);
}
.footer .soc .discord img {
  padding: 11px;
}
.footer .soc .link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: -0.5px;
  border-radius: inherit;
  background: #1d192c;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .footer .soc .link:hover:before {
    opacity: 0;
  }
}
.footer .soc img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}
.footer .soc .link:active img {
  opacity: 0.7;
}
.footer .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .grid .col {
  flex: 0 0 auto;
  /* padding: 0 0 0 55px; */
  order: 2;
  /* width: 100%; */
}
.footer .grid .col-soc {
  order: 1;
}
/* .footer .grid .col-links1,
.footer .grid .col-links2 {
  width: 50%;
} */
.footer .grid .col-contacts .list {
  margin-bottom: -15px;
}
.footer .grid .col-contacts li {
  padding-bottom: 15px;
}
.footer .grid .col-contacts li > * {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-height: 50px;
  padding: 12px 0 0 60px;
}
.footer .grid .col-contacts li > *:before,
.footer .grid .col-contacts li > *:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
.footer .grid .col-contacts li > *:before {
  background: linear-gradient(135deg, #e571ff 0%, #ff8937 100%);
}
.footer .grid .col-contacts li > *:after {
  background: #1d192c url(../img/link.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 51px;
  height: 51px;
  top: -0.5px;
  left: -0.5px;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .footer .grid .col-contacts li > a:hover:after {
    background-color: transparent;
  }
}
.footer .grid .col-contacts li > a:active:after {
  opacity: 0.5;
}
.footer .hr {
  height: 1px;
  margin: 40px 0 30px 0;
  background: rgba(255, 255, 255, 0.1);
}
.footer .grid-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #a29dba;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}
.footer .grid-text a {
  font-weight: 600;
}
.footer .grid-text > *:last-child {
  text-align: right;
}
.footer .grid-text .copy {
  width: 100%;
  flex: 0 0 auto;
}
.top-block {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 357px;
  background: url(../img/top-block-mobile.jpg) no-repeat 50% 100%;
  background-size: 390px auto;
}
.top-block h1,
.top-block .h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.top-block .text {
  margin: 0 0 30px 0;
}
.top-block .btn {
  display: block;
  width: 100%;
  margin: 18px 0 0 0;
}
.tool {
  padding-top: 60px;
  text-align: center;
}
.tool .top {
  margin: 0 0 5px 0;
  color: #fff;
}
.tool h2,
.tool .h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 10px 0;
}
.tool ul {
  margin: 40px auto 0 auto;
  padding: 0;
  max-width: 407px;
  font-size: 18px;
  color: #fff;
}
.tool li:before {
  display: none;
}
.tool li {
  margin: 30px 0 0 0;
  padding: 0;
}
.tool .pic {
  position: relative;
  background: linear-gradient(134.21deg, #ffc8ad 14.63%, #b174ff 82.87%),
    #080610;
  border-radius: 30px;
  margin: 0 0 15px 0;
}
.tool .pic:before {
  content: "";
  display: block;
  padding-top: 59%;
}
.tool .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}
.users {
  background-color: rgba(8, 6, 16, 1);
  background-image: radial-gradient(
      51.23% 51.23% at 50% 48.77%,
      rgba(8, 6, 16, 0) 0%,
      rgba(8, 6, 16, 0) 48.44%,
      rgba(8, 6, 16, 1) 100%
    ),
    url(../img/users.webp);
  background-repeat: no-repeat;
  background-position: 49.5% 46%;
  background-size: 100% 100%, auto 698px;
  text-align: center;
  margin-top: 60px;
  font-weight: 600;
  font-size: 14px;
}
.users .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.users .bg {
  background: #080610;
  flex: 0 0 auto;
  max-width: 100%;
  box-shadow: 0 0 10px #080610;
}
.users .white {
  color: #fff;
}
.users strong {
  display: block;
  font-weight: bold;
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  position: relative;
  top: 0.1em;
}
.partners {
  text-align: center;
  padding-top: 60px;
}
.partners h2,
.partners .h2 {
  font-size: 24px;
  line-height: 1.3;
}
.partners .wrap {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.partners .wrap:before,
.partners .wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 70px;
}
.partners .wrap:before {
  left: 0;
  background: linear-gradient(to right, #080610 0%, rgba(8, 6, 16, 0) 100%);
}
.partners .wrap:after {
  right: 0;
  background: linear-gradient(to right, rgba(8, 6, 16, 0) 0%, #080610 100%);
}
.partners ul {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  animation: partners 40s linear infinite;
}
.partners ul + ul {
  margin-top: -17px;
  z-index: 1;
  opacity: 0.5;
  left: -70px;
}
@-webkit-keyframes partners {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1885px, 0, 0);
  }
}
@keyframes partners {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1885px, 0, 0);
  }
}
.partners li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 140px;
  height: 80px;
  background: linear-gradient(180deg, #0c0a15 0%, #151221 100%), #080610;
  border-radius: 15px;
}
.partners li:before {
  display: none;
}
.partners li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}
.get {
  padding-top: 120px;
}
.get .top-text {
  text-align: center;
}
.get h2,
.get .h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.get .top-text .btn {
  display: block;
  margin: 30px auto 0 auto;
  width: 100%;
}
.get ol {
  margin: 50px 0 0 0;
  padding: 0;
  text-align: center;
}
.get li:before {
  display: none;
}
.get li {
  margin: 40px 0 0 0;
  padding: 0 20px;
  position: relative;
}
.get .num {
  display: none;
}
.get h3,
.get .h3 {
  margin-bottom: 10px;
}
.get .pic {
  width: 150px;
  height: 110px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin: 0 auto 20px auto;
}
.get li:nth-child(5n - 4) .pic {
  background-image: url(../img/get/1.png);
}
.get li:nth-child(5n - 3) .pic {
  background-image: url(../img/get/2.png);
}
.get li:nth-child(5n - 2) .pic {
  background-image: url(../img/get/3.png);
}
.get li:nth-child(5n - 1) .pic {
  background-image: url(../img/get/4.png);
}
.get li:nth-child(5n) .pic {
  background-image: url(../img/get/5.png);
}
.join {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  padding-top: 100px;
  color: #fff;
}
.join h2,
.join .h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.join h3,
.join .h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.join .soc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px 0;
}
.join .soc .btn {
  padding: 0;
  flex: 1;
  text-align: left;
  text-indent: -100vw;
  overflow: hidden;
  height: 50px;
  max-width: 100px;
}
.join .soc .btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  height: 100%;
  width: auto;
}
.join .email {
  position: relative;
  background: #0e0c18;
  margin: 15px 0 0 0;
  border-radius: 20px;
  padding: 0 20px 20px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
.join .email a {
  display: block;
  padding: 20px 0 15px 0;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.join .email a span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: linear-gradient(90deg, #e571ff 0%, #ff8937 97.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .join .email a:hover {
    color: rgba(255, 255, 255, 0);
  }
  .join .email a:hover span {
    opacity: 1;
  }
}
.join .email .btn {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  color: #080610 !important;
}
.join .email .btn:before {
  background: radial-gradient(
    100% 2339.91% at 0% 0%,
    #e571ff 9.59%,
    #ff8933 100%
  );
}

@media (pointer: fine) {
  .join .email .btn:hover {
    color: #fff !important;
  }
  .join .email .btn:hover:before {
    opacity: 1;
  }
  .join .email .btn:active {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: none;
  }
  .join .email .btn:active:before {
    z-index: auto;
  }
}
.faq {
  padding-top: 100px;
}
.faq h2,
.faq .h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
.faq .el:not(:first-child) {
  margin: 40px 0 0 0;
}
.faq .h3 {
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  padding: 0 65px 0 0;
  min-height: 2.9em;
}
.faq .h3 .arr {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  margin: -25px 0;
  background: #1d192c;
  border-radius: 15px;
}
.faq .h3 .arr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #e571ff 0%, #ff8937 100%);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.faq .h3 .arr:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../img/arrow.svg) no-repeat 50% 50%;
  width: 20px;
  height: 20px;
  margin: -10px;
  transition-property: transform, opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: rotate(0deg);
}

@media (pointer: fine) {
  .faq .h3:hover .arr:before {
    opacity: 1;
  }
  .faq .open .h3:hover .arr:after {
    opacity: 0.5;
  }
}
.faq .open .h3 .arr:before {
  opacity: 1;
}
.faq .open .h3 .arr:after {
  transform: rotate(-180deg);
}
.faq .el:not(.open) .in {
  display: none;
}
.faq .ind {
  padding: 15px 0 0 0;
}
.faq .ind > *:first-child {
  margin-top: 0 !important;
}
.faq .ind > *:last-child {
  margin-bottom: 0 !important;
}
