/*
0 - 600px :       PHONE
600 - 900px :     TABLET PORTRAIT
900 - 1200px :    TABLET LANDSCAPE
[1200 - 1800px]   DESKTOP is where our normal styles apply
1800px + :        BIG DESKTOP


$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes unVanish {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes unVanishHalf {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0.5;
    visibility: visible;
  }
}

@keyframes unVanishHeight {
  0% {
    height: 0;
  }
  100% {
    height: 90%;
  }
}

@keyframes unVanishWidth {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes vanishWidth {
  100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
}

@keyframes vanishHeight {
  0% {
    height: 90%;
  }
  100% {
    height: 0;
  }
}

@keyframes vanish-left {
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100rem);
  }
}

@keyframes unVanish-left {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100rem);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0rem);
  }
}

@keyframes vanish-right {
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100rem);
  }
}

@keyframes unVanish-right {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100rem);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0rem);
  }
}

@keyframes unVanishHeightMobile {
  0% {
    height: 0;
    width: 0;
  }
  100% {
    height: 85rem;
    width: 110%;
  }
}

@keyframes vanishHeightMobile {
  0% {
    height: 85rem;
    width: 110%;
  }
  100% {
    height: 0;
    width: 0;
  }
}

@keyframes toBlack {
  0% {
    background-color: #389fff;
    border: 1px solid #389fff;
  }
  100% {
    background-color: black;
    border: 1px solid white;
  }
}

@keyframes toWhite {
  0% {
    background-color: black;
    border: 1px solid white;
  }
  100% {
    background-color: #389fff;
    border: 1px solid #389fff;
  }
}

@keyframes pageActiveLinksAppear {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageActiveLinksDisappear {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(1rem);
  }
}

@keyframes textStrokeDisappear {
  from {
    -webkit-text-stroke: 1px #bb00ff;
  }
  to {
    -webkit-text-stroke: 0px #bb00ff;
  }
}

@keyframes backToCenter {
  100% {
    transform: translateX(-50%) translateY(-50%) !important;
  }
}

@keyframes backgroundToGradient {
  100% {
    background: #dd9bf5;
    color: white;
  }
}

@keyframes FaqQuestionAppearing {
  0% {
    padding: 0;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0;
  }
  100% {
    padding: 0;
    padding-bottom: 5rem;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 100rem;
  }
}

@keyframes FaqQuestionUnAppearing {
  0% {
    padding: 0;
    padding-bottom: 5rem;
    opacity: 1;
    visibility: visible;
    max-height: 100rem;
  }
  100% {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
}

/* @keyframes FaqQuestionAppearingMobile {
  0% {
    transform: scale(1.5);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0; }
  100% {
    transform: scale(1);
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 65vh; } }

@keyframes FaqQuestionUnAppearingMobile {
  0% {
    transform: scale(1);
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 65vh; }
  100% {
    transform: scale(1.5);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0; } } */

@keyframes FaqButtonActive {
  0% {
    border-radius: 100%;
    height: 2.5rem;
  }
  100% {
    border-radius: 0;
    height: 3px;
  }
}

@keyframes FaqButtonUnActive {
  0% {
    border-radius: 0;
    height: 3px;
  }
  100% {
    border-radius: 100%;
    height: 2.5rem;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 84.375em) {
  html {
    font-size: 58.75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.75%;
  }
}
@media only screen and (max-width: 68.75em) {
  html {
    font-size: 54%;
  }
}
@media only screen and (max-width: 1100px) and (min-height: 1200px) {
  html {
    font-size: 61%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 50em) {
  html {
    font-size: 48%;
  }
}
@media only screen and (max-width: 43.75em) {
  html {
    font-size: 46%;
  }
}
@media only screen and (max-width: 28.125em) {
  html {
    font-size: 44%;
  }
}
@media only screen and (max-width: 21.875em) {
  html {
    font-size: 42%;
  }
}
@media only screen and (min-width: 90.625em) {
  html {
    font-size: 61%;
  }
}
@media only screen and (min-width: 100em) {
  html {
    font-size: 69%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 79%;
  }
}
@media only screen and (min-width: 125em) {
  html {
    font-size: 86%;
  }
}
@media only screen and (min-width: 137.5em) {
  html {
    font-size: 94%;
  }
}
@media only screen and (min-width: 150em) {
  html {
    font-size: 101%;
  }
}
@media only screen and (min-width: 156.25em) {
  html {
    font-size: 103%;
  }
}
@media only screen and (min-width: 168.75em) {
  html {
    font-size: 115%;
  }
}

body {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  overflow-y: hidden;
}

::selection {
  background-color: transparent;
  color: #389fff;
}

::-webkit-scrollbar {
  background: #000;
  width: 0.7rem;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to right bottom, #334e8d, #5e183c);
  border-radius: 1px;
  height: 5rem !important;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right bottom, #293f72, #531636);
}

::-webkit-scrollbar-button {
  display: none;
}

@font-face {
  font-family: "Montserrat Light";
  src: url(../assets/fonts/Montserrat-Light.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Montserrat Bold";
  src: url(../assets/fonts/Montserrat-Bold.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Exo 2 Extra Bold";
  src: url(../assets/fonts/Exo2-ExtraBold.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Exo 2 Bold";
  src: url(../assets/fonts/Exo2-Bold.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Exo 2 Medium";
  src: url(../assets/fonts/Exo2-Medium.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Exo 2 Light";
  src: url(../assets/fonts/Exo2-Light.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Exo 2 Extra Light";
  src: url(../assets/fonts/Exo2-ExtraLight.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Saira Light";
  src: url(../assets/fonts/Saira-Light.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Saira Medium";
  src: url(../assets/fonts/Saira-Medium.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Saira Extra Bold";
  src: url(../assets/fonts/Saira-ExtraBold.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Futura New Heavy";
  src: url(../assets/fonts/FuturaNewHeavy-Reg.ttf);
  font-style: normal;
}

@font-face {
  font-family: "Montserrat Black";
  src: url(../assets/fonts/Montserrat-Black.ttf);
  font-style: normal;
}

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

a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
.header__heading--primary,
.header__heading--secondary {
  font-weight: 400 !important;
}

body {
  font-family: "Futura New Light";
  line-height: 1.7;
  font-size: 1.6rem;
  color: #fff;
  background-color: #000;
  scroll-behavior: smooth;
  overflow: hidden;
  position: relative;
}

.section {
  position: relative;
  height: 100vh;
  width: 100%;
}

@media only screen and (max-height: 550px) {
  .section {
    height: 550px;
  }
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.main {
  position: relative;
}

.preloader-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100vh;
  background-color: black;
}

.preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 20rem;
  height: 20rem;
  background-image: url(../assets/img/circle-loader.gif);
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.notfully-hidden {
  opacity: 0;
  visibility: hidden;
}

.stop-scrolling {
  height: 100vh;
  overflow: hidden;
}

.stop-scrolling-notbully {
  height: 110vh;
  overflow: hidden;
}

.to-left,
.to-right,
.to-top {
  transition: all 0.9s ease !important;
}

.to-top-big {
  transition: all 1s ease !important;
}

.revial-left-big {
  opacity: 0;
  transform: translateX(-50rem);
}

.revial-top {
  opacity: 0;
  transform: translateY(20rem);
}

.revial-top-big {
  opacity: 0;
  transform: translate(-50%, 50rem) !important;
}

.revial-top-small {
  transform: translateY(-80vh) !important;
}

.revial-bottom-big {
  transform: translateY(10vh) !important;
}

.absolute-scroll-section {
  position: absolute;
  bottom: 0;
  left: 0;
}

.disappear {
  animation: vanish 1s ease forwards;
}

.appear {
  animation: unVanish 1s ease forwards;
}

.appear-super-fast {
  animation: unVanish 0.1s ease forwards;
}

.appear-long {
  animation: unVanish 2s ease forwards;
}

.disappear-left {
  animation: vanish-left 1s ease forwards;
}

.appear-left {
  animation: unVanish-left 1s ease forwards;
}

.disappear-right {
  animation: vanish-right 1s ease forwards;
}

.appear-right {
  animation: unVanish-right 1s ease forwards;
}

.appear-half {
  animation: unVanishHalf 1.5s ease forwards;
}

.appear-height {
  animation: unVanishHeight 0.5s ease forwards;
}

.disappear-height {
  animation: vanishHeight 1s ease forwards;
}

.appear-height-mobile {
  animation: unVanishHeightMobile 1s ease forwards;
}

.disappear-height-mobile {
  animation: vanishHeightMobile 1s ease forwards;
}

.appear-width {
  animation: unVanishWidth 0.5s ease forwards;
}

.disappear-width {
  animation: vanishWidth 0.1s ease forwards;
}

.disappear-fast {
  animation: vanish 0.5s ease forwards;
}

.appear-fast {
  animation: unVanish 0.5s ease forwards;
}

.to-black {
  animation: toBlack 0.3s ease forwards;
}

.to-white {
  animation: toWhite 0.3s ease forwards;
}

.back-to-center {
  animation: backToCenter 0.7s ease forwards !important;
}

.link-appear {
  animation: pageActiveLinksAppear 0.5s forwards ease var(--i);
}

.link-disappear {
  animation: pageActiveLinksDisappear 0.5s forwards ease var(--i);
}

.faq-button-active {
  animation: FaqButtonActive 0.4s ease forwards;
}

.faq-button-unactive {
  animation: FaqButtonUnActive 0.4s ease forwards;
}

.faq-question-appearing {
  animation: FaqQuestionAppearing 1s ease forwards;
}

.faq-question-unappearing {
  animation: FaqQuestionUnAppearing 0.4s ease forwards;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}
.heading-box {
  display: inline-block;
  font-family: "Exo 2 Extra Bold";
  font-weight: 900;
  font-size: 6.5rem;
  line-height: 6.75rem;
  color: white;
  margin-left: 0.5rem;
}
@media only screen and (max-width: 68.75em) {
  .heading-box {
    font-size: 8.5rem;
  }
}
@media only screen and (max-width: 43.75em) {
  .heading-box {
    font-size: 9.5rem;
    display: flex;
    flex-direction: column;
    font-weight: 100;
    /* text-shadow: 0px 0px 4px black, 0px 0px 4px rgba(0, 0, 0, 0.5); */
    white-space: pre-line;
  }
}
.heading-blue {
  color: #389fff;
  margin-left: -1rem;
}
@media only screen and (max-width: 43.75em) {
  .heading-blue {
    margin-top: 5rem;
    margin-bottom: 3rem;
  }
}
.heading-white {
  color: white;
}
.btn-learn {
  font-family: "Saira Light";
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-learn:hover {
  transform: scale(1.05) translateX(1rem);
  color: #389fff;
}
.btn-learn:hover .btn-learn-icon {
  transform: translateX(0.5rem);
}
.btn-learn:hover .btn-learn-icon--path {
  fill: #389fff;
}
.btn-learn-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.75rem;
  transition: all 0.3s ease;
}

.btn-standart {
  display: inline-block;
  line-height: 2.5rem;
  padding: 0.3rem 4rem;
  transition: all 0.5s ease;
  font-size: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .btn-standart {
    font-size: 2.3rem;
  }
}

.btn-white {
  font-family: "Saira Light";
  background-color: #389fff;
  border: 1px solid #389fff;
  margin-right: 2.5rem;
}

.btn-black {
  font-family: "Saira Light";
  background-color: transparent;
  border: 1px solid white;
}
@media only screen and (max-width: 37.5em) {
  .btn-black {
    background-color: black;
  }
}

.btn-access {
  display: inline-block;
  font-family: "Saira Medium";
  border: 2px solid white;
  border-radius: 0.3rem;
  font-size: 2rem;
  padding: 0 0.5rem;
  letter-spacing: 2px;
  line-height: 2.5rem;
  background-image: linear-gradient(
    110deg,
    white 0%,
    white 35%,
    transparent 35%
  );
  background-size: 100%;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 56.25em) {
  .btn-access {
    font-size: 4.5rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 40.625em) {
  .btn-access {
    font-size: 4rem;
    line-height: 5rem;
  }
}
.btn-access:hover {
  background-size: 350%;
  color: #0e549f;
}

.btn-purchase {
  display: inline-block;
  margin-top: 5rem;
  font-family: "Montserrat Bold";
  font-size: 3.4rem;
  /* width: 100%; */
  background-image: linear-gradient(90deg, #bb00ff 11.89%, #ff0048 86.95%);
  color: transparent;
  transition: all 0.2s ease-in-out;
  position: relative;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  white-space: nowrap;
}
.btn-purchase::before {
  content: attr(data-title);
  white-space: nowrap;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #f8f2fa 11.89%, #ffe1e9 86.95%);
  position: absolute;
  top: 0;
  left: 0%;
  width: 0;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.btn-purchase:hover::before {
  width: 100%;
  /* transform: scale(1.15); */
  height: 100%;
  opacity: 1;
}

.btn-purchase:hover {
  /* color: white; */
  transform: scale(1.15);
}

.menu-button {
  display: none;
  z-index: 15000;
  padding: 1rem;
  transition: transform 0.5s ease;
}
@media only screen and (max-width: 43.75em) {
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.menu-icon {
  position: relative;
  z-index: 15000;
  transition: transform 0.5s ease;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 3.5rem;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  transition: all 0.2s ease;
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  z-index: 15000;
  left: 0;
}
.menu-icon::before {
  top: -1rem;
}
.menu-icon::after {
  top: 1rem;
}

.menu-button:hover .menu-icon::before {
  top: -1.2rem;
}

.menu-button:hover .menu-icon::after {
  top: 1.2rem;
}

.menu-button:hover .menu-icon,
.menu-button:hover .menu-icon::before,
.menu-button:hover .menu-icon::after {
  background-color: #389fff;
}

.btn-menu-active .menu-icon {
  background-color: transparent;
  transition: all 0.1s ease;
}

.btn-menu-active:hover .menu-icon {
  background-color: transparent;
}

.btn-menu-active:hover .menu-icon {
  background-color: transparent;
}

.btn-menu-active .menu-icon::before {
  top: 0;
  transform: rotate(135deg);
  transition: all 0.4s ease;
}

.btn-menu-active .menu-icon::after {
  top: 0;
  transform: rotate(-135deg);
  transition: all 0.4s ease;
}

.btn-menu-active:hover .menu-icon::before {
  top: 0;
}

.btn-menu-active:hover .menu-icon::after {
  top: 0;
}

.btn-bot {
  margin-top: 2rem;
  display: inline-block;
  font-family: "Montserrat Bold";
  letter-spacing: 1px;
  font-size: 1.8rem;
  color: #f2c5ff;
  height: 3rem;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  padding: 0 3rem;
}
@media only screen and (max-width: 37.5em) {
  .btn-bot {
    font-size: 3.5rem;
    height: 6rem;
    padding: 0 8rem;
    margin-top: 5rem;
  }
}
.btn-bot .span {
  position: absolute;
  display: block;
}
.btn-bot .span-1,
.btn-bot .span-3 {
  width: 100%;
  height: 0.2rem;
}
@media only screen and (max-width: 37.5em) {
  .btn-bot .span-1,
  .btn-bot .span-3 {
    height: 0.4rem;
  }
}
.btn-bot .span-1 {
  top: 0;
  left: 0;
  background-image: linear-gradient(
    90deg,
    #f2c5ff 0%,
    #c021ee 100%,
    #c021ee 100%
  );
}
.btn-bot .span-3 {
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -90deg,
    #f2c5ff 0%,
    #c021ee 100%,
    #c021ee 100%
  );
}
.btn-bot .span-2,
.btn-bot .span-4 {
  width: 0.2rem;
  height: 100%;
  z-index: 10;
}
@media only screen and (max-width: 37.5em) {
  .btn-bot .span-2,
  .btn-bot .span-4 {
    width: 0.4rem;
  }
}
.btn-bot .span-2 {
  top: 0;
  right: 0;
  background-image: linear-gradient(
    to bottom,
    #c021ee 0%,
    #f2c5ff 100%,
    #f2c5ff 100%
  );
}
.btn-bot .span-4 {
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to top,
    #c021ee 0%,
    #f2c5ff 100%,
    #f2c5ff 100%
  );
}

.nav {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100%;
  /* height: 10vh; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem 3rem 7rem;
  font-family: "Montserrat Light";
  letter-spacing: 2px;
  font-size: 1.3rem;
  z-index: 40000;
}
@media only screen and (max-width: 31.25em) {
  .nav {
    padding: 0 2rem 3rem 4rem;
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 21.875em) {
  .nav {
    margin-left: -2.2rem;
  }
}
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav__item:not(:last-of-type) {
  margin-right: 3.5rem;
}
.nav__item:first-of-type {
  margin-right: 0.5rem;
}
.nav__link {
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.1s;

  opacity: 0;
  transform: translateY(1rem);
}
.nav__link:hover {
  color: #389fff;
  transform: scale(1.05);
}
.nav__link--svg {
  padding: 0 !important;
  position: relative;
  z-index: 5000;
}
@media only screen and (min-width: 112.5em) {
  .nav__link--svg {
    margin-top: 1.5rem;
    clip-path: polygon(-100% -60%, 80% -100%, 80% 60%, -60% 60%);
  }
}
.nav__link--bold {
  font-weight: 700 !important;
  letter-spacing: 4px;
}
@media only screen and (max-width: 43.75em) {
  .nav__link--bold {
    color: #389fff;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 43.75em) {
  .nav__link--notmobile {
    display: none;
  }
}
.nav__link:hover .nav__logo {
  filter: brightness(50%) sepia(1000%);
}
.nav__logo {
  width: 4rem;
  height: 4rem;
  transition: all 0.1s;

  opacity: 0;
  transform: translateY(1rem);
}
@media only screen and (max-width: 28.125em) {
  .nav__logo {
    margin-top: -0.5rem;
  }
}
.nav-menu__list {
  position: absolute;
  bottom: -300%;
  right: 5%;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 1rem;
  padding: 1rem 0;
  z-index: 40000 !important;
  text-align: center;
}
@media only screen and (max-width: 31.25em) {
  .nav-menu__list {
    bottom: -320%;
  }
}
.nav-menu__link {
  display: block;
  cursor: pointer;
  transition: all 0.1s;
  border-radius: 1rem;
  padding: 1rem 3rem;
  white-space: nowrap;
  font-size: 1.6rem;
  text-transform: uppercase;
  opacity: 0;
}
.nav-menu__link:hover {
  background-color: #0f0f0f;
}
.nav__telegram {
  width: 3rem;
  height: 3rem;
  transform: scale(1);
  transition: all 0.2s;
}
@media only screen and (max-width: 43.75em) {
  .nav__telegram {
    width: 3.5rem;
    height: 3.5rem;
    transform: scale(1);
  }
}
@media only screen and (min-width: 112.5em) {
  .nav__telegram {
    transform: scale(1.8);
  }
}
@media only screen and (min-width: 137.5em) {
  .nav__telegram {
    transform: scale(2);
  }
}
.nav__telegram--path {
  fill: white;
  transition: all 0.2s;
}
.nav__telegram:hover .nav__telegram--path {
  fill: #389fff;
}

.sticky-nav {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  z-index: 40000;
  /* transition: all 0.5s ease; */
  opacity: 0;
  visibility: hidden;
}
.sticky-nav__line {
  width: 6rem;
  height: 6rem;
  position: absolute;
  left: -93%;
  bottom: -93%;
  z-index: 70000;

  opacity: 0;
  visibility: hidden;
}
.sticky-nav__background {
  width: 100%;
  height: 100%;
  background-color: #389fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 42000;
  border-radius: 100%;
  transition: all 0.5s ease;
}
.sticky-nav:hover .sticky-nav__background {
  transform: scale(6);
}
.sticky-nav__link {
  position: absolute;
  display: inline-block;
  z-index: 50000;
  font-family: "Montserrat Light";
  cursor: pointer;

  /* transition: all 0.2s; */
  opacity: 0;
  visibility: hidden;
}
.sticky-nav__link--icon {
  position: absolute;
  display: inline-block;
  z-index: 50000;
  position: absolute;
  top: 52%;
  left: 51%;
  transform: translate(-50%, -50%);
  top: 56% !important;
}
.sticky-nav__link--channel {
  left: -220%;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 4px;
}
.sticky-nav__link--channel:hover {
  filter: brightness(90%);
  transform: translateY(-50%) scale(1.1);
}
.sticky-nav__link--bot {
  top: 120%;
  right: 38%;
}
.sticky-nav__link--bot:hover {
  filter: brightness(90%);
  transform: scale(1.1);
}
.sticky-nav__link--bot span {
  display: block;
  margin-bottom: -3px;
}
.sticky-nav__link--bot span:last-of-type {
  transform: translateX(3px);
}
.sticky-nav__icon {
  width: 5rem;
  height: 5rem;
  filter: brightness(450%);
}

.footer {
  position: relative;
  z-index: 15000;
  background-color: #000;
}

.footer::before {
  content: "";
  background: radial-gradient(
    50% 5120000.04% at 50% 75.02%,
    #e83c89 0%,
    #e001ff 100%
  );
  display: block;
  width: 100%;
  height: 3px;
}

.footer__heading {
  font-family: "Exo 2 Extra Bold";
  font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 1rem;
}

.footer__bottom {
  padding: 2rem 6rem 2rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .footer__bottom {
    padding: 3rem 2rem 3rem 3rem;
  }
}

.footer__link {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-color: white;
  border-radius: 100%;
}
.footer__link:not(:last-of-type) {
  margin-right: 0.5rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social {
  width: 100%;
}

.footer__social-telegram {
  transform: scale(1.1);
}

.footer__social-twitter {
  margin-left: 0.1rem;
  margin-top: 0.1rem;
  transform: scale(0.7);
}

.footer__rights {
  font-family: "Montserrat Light";
  color: #777777;
}
