button {
  cursor: pointer;
  display: block;
  border: none;
  font-family: inherit;
  background: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

input:focus, button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

input {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

@-moz-keyframes squiggly-anim {
  0% {
    -moz-transform: none;
    transform: none;
  }
  100% {
    -moz-transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
    transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
  }
}
@-o-keyframes squiggly-anim {
  0% {
    -o-transform: none;
    transform: none;
  }
  100% {
    -o-transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
    transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
  }
}
@keyframes squiggly-anim {
  0% {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
  }
  100% {
    -webkit-transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
    -moz-transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
    -o-transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
    transform: skew(1.5deg, 0.2deg) translate(0, -1.5px);
  }
}
.squiggly {
  -webkit-animation: squiggly-anim 0.25s steps(2) infinite;
  -moz-animation: squiggly-anim 0.25s steps(2) infinite;
  -o-animation: squiggly-anim 0.25s steps(2) infinite;
  animation: squiggly-anim 0.25s steps(2) infinite;
}

@font-face {
  font-family: "Mazzard";
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/MazzardH-Regular.woff2) format("woff2"), url(../assets/fonts/MazzardH-Regular.woff) format("woff"), url(../assets/fonts/MazzardH-Regular.ttf) format("truetype"), url(../assets/fonts/MazzardH-Regular.eot) format("embedded-opentype");
}
@font-face {
  font-family: "Mazzard";
  font-weight: 500;
  font-style: normal;
  src: url(../assets/fonts/MazzardH-Medium.woff2) format("woff2"), url(../assets/fonts/MazzardH-Medium.woff) format("woff"), url(../assets/fonts/MazzardH-Medium.ttf) format("truetype"), url(../assets/fonts/MazzardH-Medium.eot) format("embedded-opentype");
}
@font-face {
  font-family: "Mazzard";
  font-weight: 600;
  font-style: normal;
  src: url(../assets/fonts/MazzardH-SemiBold.woff2) format("woff2"), url(../assets/fonts/MazzardH-SemiBold.woff) format("woff"), url(../assets/fonts/MazzardH-SemiBold.ttf) format("truetype"), url(../assets/fonts/MazzardH-SemiBold.eot) format("embedded-opentype");
}
@font-face {
  font-family: "Mazzard";
  font-weight: 700;
  font-style: normal;
  src: url(../assets/fonts/MazzardH-Bold.woff2) format("woff2"), url(../assets/fonts/MazzardH-Bold.woff) format("woff"), url(../assets/fonts/MazzardH-Bold.ttf) format("truetype"), url(../assets/fonts/MazzardH-Bold.eot) format("embedded-opentype");
}
@font-face {
  font-family: "Prototype";
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/Prototype.woff2) format("woff2"), url(../assets/fonts/Prototype.woff) format("woff"), url(../assets/fonts/Prototype.ttf) format("truetype"), url(../assets/fonts/Prototype.eot) format("embedded-opentype");
}
@font-face {
  font-family: "ComicSans";
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/Comic-Sans-MS.woff2) format("woff2"), url(../assets/fonts/Comic-Sans-MS.woff) format("woff"), url(../assets/fonts/Comic-Sans-MS.ttf) format("truetype"), url(../assets/fonts/Comic-Sans-MS.eot) format("embedded-opentype");
}
@font-face {
  font-family: "KronaOne";
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/KronaOne-Regular.woff2) format("woff2"), url(../assets/fonts/KronaOne-Regular.woff) format("woff"), url(../assets/fonts/KronaOne-Regular.ttf) format("truetype"), url(../assets/fonts/KronaOne-Regular.eot) format("embedded-opentype");
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
}

body {
  overflow-x: hidden;
  max-width: 100%;
  background: #1A1C25;
}
body.quizOpen {
  overflow-y: hidden;
}
body.show-menu {
  overflow-y: hidden;
}
@media (min-width: 769px) {
  body.show-menu {
    overflow-y: visible;
  }
}
body.no-scroll {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(97, 97, 97, 0.8);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #616161;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.icon-circle-before {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.icon-circle-before:before {
  content: "";
  display: block;
  background-image: url(../assets/svg/circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0.38em;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
}

.text-cross-through {
  text-decoration: line-through;
}

.btn {
  background: #8981EA;
  border: 3px solid #233356;
  border-radius: 17px;
  position: relative;
  transition: box-shadow 0.45s ease, transform 0.45s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:hover .btn__glass {
  left: 50%;
}

.btn__text {
  position: relative;
  z-index: 2;
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.16;
  color: #FFFFFF;
}

.btn__glass {
  width: 78px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 1;
  transition: left 0.45s ease;
}

.home {
  background: #1A1C28;
}

.intro {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 106px;
}
@media (max-width: 991px) {
  .intro {
    padding-top: 97px;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-top: 122px;
  }
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.intro__background .intro-back {
  width: 100%;
  height: 90%;
  transition: transform 0.03s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  .intro__background .intro-back {
    object-fit: cover;
    object-position: center bottom;
  }
}
.intro__background .intro-star {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 950px;
}
@media (max-width: 991px) {
  .hero {
    min-height: 828px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 650px;
  }
}
@media (max-width: 565px) {
  .hero {
    min-height: 500px;
  }
}

.hero__content {
  margin-top: 125px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .hero__content {
    margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    margin-top: 65px;
  }
}

.hero__letters {
  max-width: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero__title-wrapper {
  position: relative;
}

.hero__title {
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 65.5px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 34px;
  }
}

.hero__subtitle {
  position: relative;
  z-index: 3;
  margin-top: 33px;
  max-width: 584px;
  text-align: center;
  color: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-size: 14.7615px;
  line-height: 1.5;
  text-transform: capitalize;
  text-shadow: 5px 5px 15px #060835;
}
@media (max-width: 768px) {
  .hero__subtitle {
    margin-top: 17px;
    font-size: 13.3px;
    line-height: 0.9;
    width: 77.7%;
  }
}

.hero__ai {
  padding-top: 50px;
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero__rocks {
  width: 100%;
  max-height: 918px;
  z-index: 1;
}
.hero__rabbits {
  max-width: 1440px;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 50px;
  max-height: 693px;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__rabbits img {
  width: 100%;
}
@media (max-width: 768px) {
  .hero__rabbits {
    bottom: 10px;
  }
}
@media (max-width: 565px) {
  .hero__rabbits {
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .hero__rabbits img {
    min-width: 665px;
  }
}

.hero__path {
  position: relative;
  margin-top: -93px;
  width: 100%;
  max-height: 93px;
  z-index: 3;
  height: 93px;
}
@media (max-width: 768px) {
  .hero__path {
    height: 25px;
    margin-top: -25px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 800;
  padding: 40px 0 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 85.42%);
}
@media (max-width: 768px) {
  .header {
    padding-bottom: 40px;
  }
}
@media (max-width: 395px) {
  .header {
    padding-top: 25px;
  }
}

.header__container {
  max-width: 1360px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 28px;
  }
}
@media (max-width: 414px) {
  .header__container {
    padding: 0 15px;
  }
}

.header__logo img {
  max-width: 136px;
}
@media (max-width: 395px) {
  .header__logo img {
    max-width: 105px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.header__link + .header__link {
  margin-left: 31px;
}
@media (max-width: 991px) {
  .header__link + .header__link {
    margin-left: 24px;
  }
}
.header__link:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .header__link {
    font-size: 16px;
  }
}

.header__btn {
  margin-left: 41px;
  position: relative;
  border-radius: 12.75px;
}
.header__btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #233356;
  border-radius: inherit;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.header__btn:hover .header__btn-wrapper {
  transform: translate(0);
}
.header__btn:hover .header__btn-wrapper .header__btn-glass {
  left: 50%;
}
@media (max-width: 991px) {
  .header__btn {
    margin-left: 24px;
    border-radius: 9px;
  }
}
@media (max-width: 768px) {
  .header__btn {
    margin-left: auto;
    margin-right: 30px;
  }
}
@media (max-width: 395px) {
  .header__btn {
    margin-right: 15px;
  }
}

.header__btn-wrapper {
  position: relative;
  z-index: 3;
  display: block;
  width: 160px;
  height: 54px;
  background: #8981EA;
  border-radius: inherit;
  position: relative;
  border: 3px solid #233356;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-3.75px, -6px);
  transition: transform 0.3s ease 0.1s;
}
@media (max-width: 991px) {
  .header__btn-wrapper {
    width: 145px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .header__btn-wrapper {
    width: 112px;
    height: 38px;
  }
}

.header__btn-text {
  position: relative;
  z-index: 2;
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 768px) {
  .header__btn-text {
    font-size: 12.6px;
  }
}

.header__btn-glass {
  width: 59px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 1;
  transition: left 0.45s ease;
}

.burgermenu {
  display: none;
  width: 18px;
  height: 32px;
  background: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxOCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMkwyIDIzIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8cGF0aCBkPSJNOSA1LjVWMjYuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTE2IDlWMzAiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=);
}
@media (max-width: 768px) {
  .burgermenu {
    display: block;
  }
}

.whatis {
  position: relative;
  z-index: 4;
  padding: 65px 0 170px;
  background: #1A1C25;
}
@media (max-width: 1260px) {
  .whatis {
    padding-top: 5.15vw;
    padding-bottom: 13.49vw;
  }
}

.whatis__container {
  max-width: 1325px;
  display: flex;
  flex-direction: column;
}

.whatis__row {
  display: flex;
}
.whatis__row_first {
  border-bottom: 1px solid #353535;
}
.whatis__row_first .whatis__col {
  padding-bottom: 25px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .whatis__row_first .whatis__col {
    padding: 0;
  }
  .whatis__row_first .whatis__col:nth-child(2) {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .whatis__row_first {
    border: none;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .whatis__row_second .whatis__col:first-child {
    display: none;
  }
}

.whatis__col {
  display: flex;
  flex: 0 0;
  padding: 5px;
}
.whatis__col_sm {
  min-width: 400px;
  border-right: 1px solid #353535;
}
@media (max-width: 1260px) {
  .whatis__col_sm {
    min-width: 31.746vw;
  }
}
.whatis__col_xl {
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .whatis__col {
    border: none;
    padding: 0;
  }
}

.whatis__title {
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 39.9084px;
  line-height: 1.25;
  color: #FFFFFF;
  -webkit-text-stroke: 1.39303px #FFFFFF;
}
@media (max-width: 1260px) {
  .whatis__title {
    font-size: 3.167vw;
  }
}
@media (max-width: 768px) {
  .whatis__title {
    font-size: 34px;
  }
}
@media (max-width: 380px) {
  .whatis__title {
    font-size: 30px;
  }
}

.whatis__text {
  max-width: 95%;
  margin: 0 auto;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
@media (max-width: 1260px) {
  .whatis__text {
    font-size: 1.587vw;
  }
}
@media (max-width: 768px) {
  .whatis__text {
    padding: 0;
    margin: 0;
    max-width: 100%;
    font-size: 14.5px;
  }
}

.whatis__btn {
  margin-top: 25px;
  width: 306px;
  height: 72px;
  box-shadow: 5px 8px 0px #233356;
}
.whatis__btn:hover {
  transform: translate(5px, 8px);
  box-shadow: 0px 0px 0px #233356;
}
@media (max-width: 1260px) {
  .whatis__btn {
    margin-top: 1.984vw;
    width: 24.28vw;
    height: 5.714vw;
    border-radius: 1.349vw;
    box-shadow: 0.39vw 0.63vw 0px #233356;
  }
  .whatis__btn > span {
    font-size: 1.904vw;
  }
}
@media (max-width: 768px) {
  .whatis__btn {
    display: none;
  }
}

.whatis-grid {
  margin-top: 25px;
  margin-left: 10px;
  width: 729px;
  height: 318px;
  position: relative;
}
@media (max-width: 1260px) {
  .whatis-grid {
    width: 57.857vw;
    height: 25.238vw;
  }
}
@media (max-width: 768px) {
  .whatis-grid {
    margin: 25px 0 0;
    width: 100%;
    height: 38.062vw;
  }
}
@media (max-width: 524px) {
  .whatis-grid {
    height: 130.34vw;
  }
}

.whatis-grid__item01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 19.204%;
  height: 100%;
}
@media (max-width: 524px) {
  .whatis-grid__item01 {
    height: 49.176%;
    left: 0;
    bottom: 0;
    top: auto;
    width: 32.307%;
  }
}

.whatis-grid__item02 {
  position: absolute;
  top: 0;
  left: 20.576%;
  width: 38.957%;
  height: 52.83%;
}
@media (max-width: 524px) {
  .whatis-grid__item02 {
    width: 65.53%;
    height: 25.925%;
    left: 0;
    top: 0;
  }
}

.whatis-grid__item03 {
  position: absolute;
  top: 0;
  left: 60.905%;
  width: 19%;
  height: 52.515%;
}
@media (max-width: 524px) {
  .whatis-grid__item03 {
    width: 31.076%;
    height: 25.72%;
    right: 0;
    left: auto;
    top: 0;
  }
}

.whatis-grid__item04 {
  position: absolute;
  bottom: 0;
  left: 20.576%;
  width: 19.204%;
  height: 44.025%;
}
@media (max-width: 524px) {
  .whatis-grid__item04 {
    width: 32.307%;
    height: 21.604%;
    left: 0;
    top: 27.366%;
    bottom: auto;
  }
}

.whatis-grid__item05 {
  position: absolute;
  bottom: 0;
  left: 41.152%;
  width: 38.545%;
  height: 44.025%;
}
@media (max-width: 524px) {
  .whatis-grid__item05 {
    bottom: auto;
    left: auto;
    right: 0;
    top: 27.366%;
    width: 64.923%;
    height: 21.604%;
  }
}

.whatis-grid__item06 {
  position: absolute;
  top: 0;
  right: 0;
  width: 19.204%;
  height: 44.025%;
}
@media (max-width: 524px) {
  .whatis-grid__item06 {
    width: 64.923%;
    height: 21.604%;
    bottom: 0;
    right: 0;
    top: auto;
  }
}

.whatis-grid__item07 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 19.204%;
  height: 53.144%;
}
@media (max-width: 524px) {
  .whatis-grid__item07 {
    width: 64.923%;
    height: 25.925%;
    right: 0;
    top: 50.823%;
    bottom: auto;
  }
}

.total {
  background: #fff;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 50vh;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .total {
    padding-bottom: 0;
  }
}

.total-item {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .total-item {
    height: 75vh;
  }
}

.total-item__content {
  width: 72%;
  max-width: 1038px;
  text-align: center;
}

.total-item__suptitle {
  font-family: "Mazzard", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: 0.04em;
  color: #333333;
}
@media (max-width: 768px) {
  .total-item__suptitle {
    font-size: 19.2px;
  }
}
@media (max-width: 565px) {
  .total-item__suptitle {
    font-size: 15.3151px;
  }
}
@media (max-width: 395px) {
  .total-item__suptitle {
    font-size: 12px;
  }
}

.total-item__title {
  margin-top: 16px;
  text-align: center;
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #333333;
}
@media (max-width: 991px) {
  .total-item__title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .total-item__title {
    margin-top: 12px;
    font-size: 45px;
  }
}
@media (max-width: 565px) {
  .total-item__title {
    font-size: 35.72px;
  }
}
@media (max-width: 395px) {
  .total-item__title {
    font-size: 30px;
  }
}

.nf {
  width: 100%;
  position: relative;
  width: 100%;
  padding-bottom: 35px;
  background: #1A1C28;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .nf {
    padding-bottom: 12px;
  }
}

.nf__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  max-height: 823px;
}
@media (max-width: 1440px) {
  .nf__background {
    object-fit: cover;
    object-position: 25% top;
  }
}
@media (max-width: 991px) {
  .nf__background {
    max-height: 100%;
  }
}

.nf__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-top: 190px;
  display: flex;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .nf__container {
    padding-top: 90px;
    flex-direction: column;
  }
}

.nf__left {
  flex-grow: 1;
  padding-right: 20px;
  display: flex;
}
@media (max-width: 991px) {
  .nf__left {
    order: 2;
    padding-right: 0;
  }
}

.nf__rabbits {
  margin-top: auto;
  display: flex;
  max-width: 818px;
  margin-left: -100px;
  position: relative;
}
@media (max-width: 1440px) {
  .nf__rabbits {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .nf__rabbits {
    max-width: 450px;
    margin: 117px auto 0;
  }
}
@media (max-width: 565px) {
  .nf__rabbits {
    margin-top: 90px;
  }
}

.nf__rabbit {
  position: relative;
}

.nf__rabbit_01 {
  margin-top: 12px;
  max-width: 57.819%;
  z-index: 3;
}

.nf__rabbit_02 {
  max-width: 60.24%;
  margin-left: -8%;
  z-index: 4;
}

.nf__rabbit_01_gif {
  position: absolute;
  background: transparent;
  z-index: 3;
  left: 30.8%;
  top: -6.5%;
  max-width: 45%;
}
@media (max-width: 991px) {
  .nf__rabbit_01_gif {
    top: -5.5%;
  }
}
@media (max-width: 359px) {
  .nf__rabbit_01_gif {
    top: -4.5%;
  }
}

.nf__rabbit_02_gif {
  position: absolute;
  background: transparent;
  z-index: 5;
  left: 25.5%;
  top: 38%;
  max-width: 46%;
}

.nf__content {
  min-width: 350px;
  flex-basis: 35%;
  flex-shrink: 0;
  padding-right: 20px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .nf__content {
    order: 1;
    text-align: center;
    margin: 0 auto;
    flex-basis: auto;
    padding-bottom: 0;
    padding-right: 0;
    min-width: auto;
  }
}

.nf__title {
  max-width: 270px;
  position: relative;
  z-index: 3;
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 61px;
  line-height: 1.18;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-text-stroke: 1px #FFFFFF;
}
@media (max-width: 1095px) {
  .nf__title {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .nf__title {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nf__title {
    font-size: 49px;
  }
}
@media (max-width: 395px) {
  .nf__title {
    font-size: 40px;
  }
}

.nf__text {
  margin-top: 25px;
  max-width: 420px;
  position: relative;
  z-index: 2;
  font-family: "ComicSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  color: #FFFFFF;
}
.nf__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  filter: blur(150px);
  background: black;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1095px) {
  .nf__text {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .nf__text {
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  .nf__text {
    font-size: 17px;
  }
}

.nf__btn {
  margin-top: 25px;
  width: 265px;
  height: 72px;
  box-shadow: 5px 8px 0px #233356;
  position: relative;
  z-index: 3;
}
.nf__btn:hover {
  transform: translate(5px, 8px);
  box-shadow: 0px 0px 0px #233356;
}
@media (max-width: 1095px) {
  .nf__btn {
    width: 235px;
    height: 56px;
    border-radius: 10px;
    box-shadow: 3px 5px 0px #233356;
  }
  .nf__btn > span {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .nf__btn {
    margin: 20px auto 0;
  }
}

section.progress {
  background: #FFFFFF;
  height: 140vh;
  display: flex;
  flex-direction: column;
}
section.progress .progress__container {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin-bottom: auto;
}
section.progress .progress__flow-container {
  position: absolute;
  height: 100%;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.progress .progress__content {
  width: 320px;
  box-sizing: content-box;
  padding: 120px;
  height: 100%;
  display: flex;
  align-items: c;
}
section.progress .progress__content:first-child {
  margin-left: 134px;
}
section.progress .progress__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.progress h2 {
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: #000000;
}
section.progress h2:before {
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
}
section.progress p {
  margin-top: 42px;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
}
section.progress p:before {
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
}
section.progress p a {
  display: inline;
}
section.progress h2, section.progress p {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}
section.progress h2:before, section.progress p:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  color: #fff;
  mix-blend-mode: overlay;
  pointer-events: none;
}
section.progress .hovered-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  will-change: transform;
  transition: opacity 0.3s;
  width: 247px;
  height: 357px;
  visibility: hidden;
}
section.progress .hovered-video__wrapper {
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
section.progress video {
  width: 100%;
  height: 100%;
}

.rarity {
  position: relative;
  width: 100%;
  padding: 180px 0 192px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .rarity {
    padding: 100px 0 20px;
  }
  .rarity::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(1.83deg, #1A1C28 1.76%, rgba(26, 28, 40, 0) 23.4%), linear-gradient(90deg, rgba(0, 0, 0, 0.2) 38.51%, rgba(0, 0, 0, 0) 50%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 28.57%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

.rarity__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1440px) {
  .rarity__background {
    object-position: 80% center;
    object-fit: cover;
  }
}

.rarity__container {
  max-width: 1308px;
  position: relative;
  z-index: 3;
}

.rarity__title {
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 63.1395px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-text-stroke: 1.1648px #FFFFFF;
}
@media (max-width: 768px) {
  .rarity__title {
    text-align: center;
    font-size: 45px;
  }
}
@media (max-width: 395px) {
  .rarity__title {
    font-size: 40px;
  }
}

.rarity__cards {
  margin-top: 20px;
  max-width: 643px;
  display: flex;
}
@media (max-width: 768px) {
  .rarity__cards {
    margin-top: 27px;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}

.rarity__col {
  display: flex;
}
.rarity__col + .rarity__col {
  margin-left: 16px;
}
@media (max-width: 768px) {
  .rarity__col + .rarity__col {
    margin-left: 0;
    margin-top: 22px;
  }
}
@media (max-width: 768px) {
  .rarity__col {
    width: 100%;
    justify-content: center;
  }
}

.rarity__line:first-child {
  margin-top: -32px;
}
@media (max-width: 768px) {
  .rarity__line:first-child {
    margin-top: 0;
  }
}
.rarity__line + .rarity__line {
  margin-left: 16px;
}

.rarity-card {
  width: 155px;
  min-height: 196.42px;
  border: 3px solid #000000;
  box-shadow: 4.09722px 6.55556px 0px #000000;
  border-radius: 21.5276px;
  background: rgba(44, 45, 49, 0.8);
  backdrop-filter: blur(44px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rarity-card {
    max-width: 326px;
  }
}
@media (max-width: 434px) {
  .rarity-card {
    max-width: 271px;
    width: 125px;
    min-height: 160px;
  }
}
.rarity-card-big {
  width: 302px;
  min-height: 444px;
  border: 4px solid #111111;
  border-radius: 26.9095px;
}
@media (max-width: 768px) {
  .rarity-card-big {
    width: 326px;
  }
}
@media (max-width: 434px) {
  .rarity-card-big {
    width: 271px;
    min-height: 380px;
  }
}
.rarity-card + .rarity-card {
  margin-top: 12px;
}

.rarity-card__value {
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-weight: bold;
  line-height: 1.21;
  font-size: 27px;
  color: #fff;
  text-align: center;
}
@media (max-width: 434px) {
  .rarity-card__value {
    font-size: 21px;
  }
}

.rarity-card__name {
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-weight: bold;
  line-height: 1.21;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}
@media (max-width: 434px) {
  .rarity-card__name {
    font-size: 13px;
  }
}

.rarity-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rarity-card__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-position: center bottom;
  object-fit: contain;
}

.rarity-card {
  padding-top: 30px;
}
.rarity-card .rarity-card__value {
  margin-top: 13px;
}
@media (max-width: 434px) {
  .rarity-card .rarity-card__value {
    margin-top: 8px;
  }
}

.rarity-card__list {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 434px) {
  .rarity-card__list {
    margin-top: 24px;
  }
}

.rarity-card__item {
  display: flex;
  align-items: center;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 16.1457px;
  line-height: 1.1875;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
.rarity-card__item + .rarity-card__item {
  margin-top: 14px;
}
@media (max-width: 434px) {
  .rarity-card__item + .rarity-card__item {
    margin-top: 11px;
  }
}
@media (max-width: 434px) {
  .rarity-card__item {
    font-size: 13px;
  }
}
.rarity-card__item::before {
  content: "";
  display: block;
  width: 9.69px;
  height: 9.69px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  margin-right: 24px;
}
.rarity-card__item.blue::before {
  background: #5428D1;
}
.rarity-card__item.violet::before {
  background: #952ED1;
}
.rarity-card__item.yellow::before {
  background: #F29D38;
}
.rarity-card__item.orange::before {
  background: #E56249;
}

.rarity-card-big {
  padding: 40px 54px;
}
@media (max-width: 434px) {
  .rarity-card-big {
    padding-left: 42px;
    padding-top: 32px;
  }
  .rarity-card-big .rarity-card__content {
    text-align: right;
    align-items: flex-start;
  }
}
.rarity-card-big .rarity-card__value {
  font-size: 37.6732px;
  letter-spacing: 0.04em;
}
@media (max-width: 434px) {
  .rarity-card-big .rarity-card__value {
    font-size: 30.9px;
  }
}
.rarity-card-big .rarity-card__name {
  font-size: 19.3748px;
  margin-top: 3px;
}
@media (max-width: 434px) {
  .rarity-card-big .rarity-card__name {
    font-size: 15.64px;
  }
}

.faq {
  padding-top: 190px;
}
@media (max-width: 768px) {
  .faq {
    padding-top: 75px;
  }
}
.faq .frame-by-frame {
  margin-top: -50vh;
}

.faq__container {
  max-width: 1028px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .faq__container {
    align-items: center;
  }
}

.faq__image {
  max-width: 402px;
  width: 100%;
}
@media (max-width: 768px) {
  .faq__image {
    display: none;
  }
}

.faq__right {
  margin-left: 45px;
  max-width: 390px;
}
@media (max-width: 991px) {
  .faq__right {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .faq__right {
    max-width: 100%;
    margin-left: 0;
  }
}

.faq__title {
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 63.1395px;
  line-height: 1.25;
  color: #FFFFFF;
  -webkit-text-stroke: 1.5px #FFFFFF;
}
@media (max-width: 768px) {
  .faq__title {
    text-align: center;
    font-size: 45px;
  }
}

.faq__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 565px) {
  .faq__list {
    margin-top: 25px;
  }
}

.faq-item {
  padding: 22px 25px 22px 14px;
  background: #2C2D31;
  border: 2px solid #000000;
  cursor: pointer;
  box-shadow: 4.09722px 6.55556px 0px #000000;
  border-radius: 10px;
}
.faq-item + .faq-item {
  margin-top: 12px;
}
.faq-item.opened .faq-item__btn::after {
  transform: scaleY(-1);
}
@media (max-width: 991px) {
  .faq-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.166;
  color: #FFFFFF;
}
.faq-item__btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 11px;
  background: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNiAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMkw4IDhMMTQgMiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
  transition: transform 0.35s ease;
  margin-left: 15px;
}
@media (max-width: 565px) {
  .faq-item__btn {
    font-size: 15px;
  }
}

.faq-item__content {
  margin-top: 20px;
  transition: height 0.35s ease, margin 0.55s ease;
  overflow: hidden;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.166;
  color: #FFFFFF;
}
@media (max-width: 565px) {
  .faq-item__content {
    font-size: 13px;
  }
}

.faq__blob {
  position: relative;
  z-index: 2;
  margin-top: 66px;
  width: 100%;
  height: auto;
  max-height: 578px;
}
@media (max-width: 991px) {
  .faq__blob {
    margin-top: 35px;
  }
}
.ownnf {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ownnf__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 101%;
  z-index: 1;
  object-fit: cover;
}

.ownnf__content {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .ownnf__content {
    max-width: 380px;
  }
}
@media (max-width: 656px) {
  .ownnf__content {
    max-width: 305px;
  }
}

.ownnf__title {
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;
  text-align: center;
  color: #000;
}
@media (max-width: 768px) {
  .ownnf__title {
    font-size: 55px;
  }
}
@media (max-width: 656px) {
  .ownnf__title {
    font-size: 46px;
  }
}

.ownnf__btn {
  margin-top: 36px;
  width: 160px;
  height: 54px;
  background: #FFFFFF;
  border: 2.25px solid #2A2B2F;
  box-shadow: 3.75px 6px 0px #2A2B2F;
  border-radius: 12.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.ownnf__btn span {
  position: relative;
  z-index: 3;
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.16;
}
.ownnf__btn img {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  height: 100%;
  width: 58.5px;
  z-index: 2;
  transition: left 0.45s ease;
}
.ownnf__btn:hover {
  transform: translate(3.75px, 6px);
  box-shadow: 0px 0px 0px #233356;
}
.ownnf__btn:hover img {
  left: 50%;
}
@media (max-width: 656px) {
  .ownnf__btn {
    width: 106px;
    height: 36px;
    border-radius: 8.52px;
    margin-top: 24px;
  }
  .ownnf__btn > span {
    font-size: 12px;
  }
}

.ownnf__figure {
  position: absolute;
  z-index: 2;
  background-repeat: repeat-x;
}
.ownnf__figure.t1 {
  width: 50px;
  height: 56px;
  background-image: url(../assets/images/ownnf/stars.png);
  background-size: 200px 56px;
  background-repeat: repeat-x;
  animation: fc-outro-particle-sequence-1 0.5s infinite steps(4);
}
.ownnf__figure.t2 {
  width: 40px;
  height: 40px;
  background-image: url(../assets/images/ownnf/rounds.png);
  background-size: 160px 40px;
  background-repeat: repeat-x;
  animation: fc-outro-particle-sequence-2 0.5s infinite steps(4);
}
.ownnf__figure.v1 {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.ownnf__figure.v2 {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.ownnf__figure.v3 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ownnf__figure.v4 {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ownnf__figure.v5 {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ownnf__figure_01 {
  left: -60px;
  top: -80px;
}

.ownnf__figure_02 {
  left: -50px;
  top: 195px;
}

.ownnf__figure_03 {
  right: -85px;
  top: 170px;
}

.ownnf__figure_04 {
  right: -60px;
  top: -70px;
}

.ownnf__figure_05 {
  top: 45px;
  left: -120px;
}

@media (max-width: 656px) {
  .ownnf__figure_01 {
    left: -20px;
    top: -68px;
  }

  .ownnf__figure_02 {
    top: -122px;
    left: 100px;
  }

  .ownnf__figure_03 {
    right: -27px;
    top: auto;
    bottom: 21px;
  }

  .ownnf__figure_04 {
    left: -21px;
    top: 96px;
  }

  .ownnf__figure_05 {
    left: auto;
    right: -19px;
    top: -77px;
  }
}
@keyframes fc-outro-particle-sequence-2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 160px 0;
  }
}
@keyframes fc-outro-particle-sequence-1 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 0;
  }
}
.footer {
  background: #170E1F;
  padding: 84px 0 46px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 64px;
  }
}

.footer__container {
  width: 100%;
  max-width: 1355px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .footer__container {
    padding: 0 25px;
  }
}
@media (max-width: 495px) {
  .footer__container {
    padding: 0 15px;
  }
}

.footer-content__left {
  max-width: 275px;
}
@media (max-width: 768px) {
  .footer-content__left {
    max-width: 100%;
    flex-grow: 1;
  }
}

.footer-content__right {
  padding-left: 80px;
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .footer-content__right {
    display: none;
  }
}

.footer-content {
  display: flex;
}

.footer-content__title {
  position: relative;
}
.footer-content__title > span {
  position: relative;
  z-index: 3;
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 31.5555px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-text-stroke: 0.888889px #FFFFFF;
  text-shadow: 0px 1.77778px 41.7778px rgba(0, 0, 0, 0.55);
}
.footer-content__title > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 67.4%;
  max-width: 182px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .footer-content__title {
    text-align: center;
  }
}
@media (max-width: 395px) {
  .footer-content__title > span {
    font-size: 25px;
  }
}

.footer-content__text {
  margin-top: 32px;
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71;
  text-transform: capitalize;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .footer-content__text {
    max-width: 260px;
    margin: 32px auto 0;
    text-align: center;
  }
}

.footer-content__socials {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .footer-content__socials {
    margin: 45px auto 0;
    display: flex;
    justify-content: center;
  }
}

.footer-content__wrapper {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 260px;
  margin: 0 -20px;
}

.footer-content__nav {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.footer-content__nav-link {
  font-family: "Mazzard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.15;
  color: #FFFFFF;
}
.footer-content__nav-link + .footer-content__nav-link {
  margin-top: 24px;
}

.footer-copyright {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-copyright {
    justify-content: center;
    margin-top: 32px;
  }
}

.footer-copyright__text,
.footer-copyright__nav-link {
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.53;
  color: #C8C8C8;
}

@media (max-width: 395px) {
  .footer-copyright__text {
    font-size: 12px;
  }
}

.footer-copyright__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-copyright__nav {
    display: none;
  }
}

.footer-copyright__nav-link + .footer-copyright__nav-link {
  margin-left: 29px;
}

.socials {
  margin-top: 33px;
}

.socials__inner {
  display: flex;
  align-items: center;
  margin: 0 -12px;
}
@media (max-width: 768px) {
  .socials__inner {
    justify-content: center;
  }
}

.socials__link {
  width: 15px;
  height: 15px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials__link img {
  max-width: 100%;
  max-height: 100%;
}

.roadmap {
  position: relative;
  color: #fff;
  margin-top: 108px;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  overflow: hidden;
  max-width: 100%;
  z-index: 14;
}
.roadmap h2 {
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 110px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .roadmap h2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 765px) {
  .roadmap h2 {
    font-size: 47px;
  }
}
.roadmap h3 {
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 78px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .roadmap h3 {
    font-size: 47px;
  }
}
.roadmap .title {
  font-size: 38px;
}
@media screen and (max-width: 765px) {
  .roadmap .title {
    font-size: 20px;
  }
}
.roadmap h4 {
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 33px;
}
@media screen and (max-width: 1000px) {
  .roadmap h4 {
    font-size: 24px;
  }
}
.roadmap p {
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .roadmap p {
    font-size: 16px;
  }
}
.roadmap .frame-by-frame {
  margin-top: -100vh;
}

.roadmap .container {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
}

.container__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/roadmap/space.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -100000;
}

.roadmap__container {
  position: relative;
  min-height: 100vh;
  margin: 0 auto;
}

.roadmap__flow-container {
  position: relative;
  margin: 0 auto;
  z-index: 5;
}

.roadmap .canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.roadmap .canvas img {
  position: absolute;
}

.roadmap__container:nth-child(2), .roadmap__container:nth-child(3) {
  margin-top: 300px;
}
.roadmap__container:nth-child(4) {
  margin-top: 50vh;
  padding-bottom: 120vh;
}
.roadmap__container .text-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5px;
  z-index: 1;
}
@media screen and (max-width: 765px) {
  .roadmap__container .text-block {
    flex-direction: column;
  }
}

.roadmap__content:not(:first-child) {
  margin-top: 52px;
}

.roadmap__content-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 10;
}

.roadmap-offset__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 765px) {
  .roadmap-offset__wrapper {
    align-items: center;
  }
}
.roadmap-offset__wrapper.left {
  align-items: flex-start;
}

.roadmap__content .text-block__left,
.roadmap__content .text-block__right {
  width: 400px;
}
@media screen and (max-width: 1000px) {
  .roadmap__content .text-block__left,
.roadmap__content .text-block__right {
    width: 300px;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__content .text-block__left,
.roadmap__content .text-block__right {
    width: 240px;
  }
}
.roadmap__content .text-block__right {
  margin-left: 90px;
  margin-top: 66px;
}
@media screen and (max-width: 765px) {
  .roadmap__content .text-block__right {
    margin-left: 40px;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__content .text-block__right {
    margin-left: 100px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__content .text-block__right {
    margin-left: 50px;
  }
}

.roadmap__container:nth-child(3) .text-block__left {
  width: 658px;
}
@media screen and (max-width: 765px) {
  .roadmap__container:nth-child(3) .text-block__left {
    width: 500px;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__container:nth-child(3) .text-block__left {
    width: 100%;
  }
}

.roadmap__container .title {
  text-align: center;
  font-weight: 400;
}
.roadmap__container .roadmap__collections {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
@media screen and (max-width: 1000px) {
  .roadmap__container .roadmap__collections {
    width: 200px;
    border-radius: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 705px) {
  .roadmap__container .roadmap__collections {
    width: 100%;
    overflow-y: auto;
    max-width: 100%;
    padding: 16px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__container .roadmap__collections {
    margin-top: 24px;
  }
}
.roadmap__container .roadmap__collections .collection {
  height: auto;
  width: 100%;
  max-height: 495px;
  overflow: hidden;
  border-radius: 65px;
  border: 6px solid #373434;
  box-shadow: 4.09722px 6.55556px 0px #373434;
  position: relative;
  margin-bottom: 27px;
}
@media screen and (max-width: 1000px) {
  .roadmap__container .roadmap__collections .collection {
    border-radius: 60px;
  }
}
@media (max-width: 404px) {
  .roadmap__container .roadmap__collections .collection {
    border-radius: 30px;
  }
}
@media (min-width: 566px) {
  .roadmap__container .roadmap__collections .collection:hover .collection__wrapper {
    opacity: 1;
  }
}
.roadmap__container .roadmap__collections .collection-card {
  position: relative;
  width: 402px;
}
.roadmap__container .roadmap__collections .collection-card:not(:first-child) {
  margin-left: 27px;
}
@media screen and (max-width: 1300px) {
  .roadmap__container .roadmap__collections .collection-card {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .roadmap__container .roadmap__collections .collection-card {
    width: 200px;
    border-radius: 60px;
  }
}
@media screen and (max-width: 705px) {
  .roadmap__container .roadmap__collections .collection-card {
    min-width: 200px;
  }
}
@media (max-width: 565px) {
  .roadmap__container .roadmap__collections .collection-card {
    min-width: 320px;
  }
}
@media (max-width: 404px) {
  .roadmap__container .roadmap__collections .collection-card {
    min-width: 250px;
  }
}
.roadmap__container .roadmap__collections .collection__text {
  padding: 15px;
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 37.84px;
  color: #fff;
  text-align: center;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1300px) {
  .roadmap__container .roadmap__collections .collection__text {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .roadmap__container .roadmap__collections .collection__text {
    font-size: 24px;
  }
}
.roadmap__container .roadmap__collections img {
  width: 100%;
  height: auto;
}

.collection__wrapper {
  background: rgba(0, 0, 0, 0.59);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.collection__wrapper.mobile {
  position: relative;
  top: auto;
  left: auto;
  transform: translate(0);
  width: auto;
  height: auto;
  opacity: 1;
  background: transparent;
  border-radius: 0;
}
.collection__wrapper.mobile .collection__text {
  padding: 0 10px;
  text-align: left;
  font-size: 20px;
}
@media (min-width: 566px) {
  .collection__wrapper.mobile {
    display: none;
  }
}

.roadmap__content:nth-child(1) .canvas img:nth-child(1) {
  right: 10%;
  top: -10%;
  width: 44px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(1) {
    top: 10%;
  }
}
.roadmap__content:nth-child(1) .canvas img:nth-child(2) {
  width: 465px;
  height: auto;
  left: 7%;
  top: -20%;
  z-index: -3;
}
@media screen and (max-width: 1200px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(2) {
    left: -5%;
    top: -30%;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(2) {
    left: -25%;
    top: -20%;
    width: 300px;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(2) {
    width: 200px;
  }
}
.roadmap__content:nth-child(1) .canvas img:nth-child(3) {
  top: -5%;
  right: 0;
  width: 1550px;
  height: auto;
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(3) {
    top: 10%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(3) {
    min-width: 600px;
    right: -10%;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__content:nth-child(1) .canvas img:nth-child(3) {
    right: -80%;
  }
}
.roadmap__content:nth-child(1) .canvas img:nth-child(4) {
  width: 93px;
  height: auto;
  left: 1%;
  top: 100%;
  z-index: 1;
}

.roadmap__content:nth-child(2) .canvas img:nth-child(1) {
  left: -20%;
  bottom: -20%;
  width: 138px;
  height: auto;
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(1) {
    bottom: -40%;
    left: -50%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(1) {
    left: -90%;
    bottom: -30%;
    width: 80px;
  }
}
.roadmap__content:nth-child(2) .canvas img:nth-child(2) {
  left: -20%;
  bottom: -10%;
  width: 361px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(2) {
    left: -40%;
    bottom: 45%;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(2) {
    left: -65%;
    bottom: 50%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(2) {
    width: 100px;
    left: -40%;
    bottom: 65%;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(2) {
    left: -60%;
    bottom: 65%;
  }
}
.roadmap__content:nth-child(2) .canvas img:nth-child(3) {
  bottom: -60%;
  right: -30%;
  width: 375px;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(3) {
    right: -30%;
    bottom: 15%;
  }
}
@media screen and (max-width: 765px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(3) {
    right: -65%;
    bottom: 20%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(3) {
    width: 100px;
    right: -40%;
    bottom: 50%;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__content:nth-child(2) .canvas img:nth-child(3) {
    right: -80%;
    bottom: 50%;
  }
}

.roadmap__container:nth-child(3) .canvas img:nth-child(1) {
  right: 10%;
  top: -10%;
  width: 688px;
  height: auto;
  z-index: -1;
}
.roadmap__container:nth-child(3) .canvas img:nth-child(2) {
  right: 10%;
  top: 120%;
  width: 361px;
  height: auto;
}
@media screen and (max-width: 765px) {
  .roadmap__container:nth-child(3) .canvas img:nth-child(2) {
    top: 130%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__container:nth-child(3) .canvas img:nth-child(2) {
    top: -60%;
    width: 100px;
  }
}
.roadmap__container:nth-child(3) .canvas img:nth-child(3) {
  bottom: 15%;
  left: 10%;
  width: 564px;
  height: auto;
  z-index: -1;
}
.roadmap__container:nth-child(3) .canvas img:nth-child(4) {
  bottom: -20%;
  left: -30%;
  width: 900px;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 585px) {
  .roadmap__container:nth-child(3) .canvas img:nth-child(4) {
    min-width: 800px;
    bottom: -20%;
    left: -40%;
  }
}
@media screen and (max-width: 400px) {
  .roadmap__container:nth-child(3) .canvas img:nth-child(4) {
    left: -70%;
  }
}

@media screen and (max-width: 705px) {
  .roadmap__container:nth-child(4) .canvas {
    z-index: -1;
  }
}
.roadmap__container:nth-child(4) .canvas img:nth-child(1) {
  right: 1%;
  top: -5%;
  width: 268px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .roadmap__container:nth-child(4) .canvas img:nth-child(1) {
    top: -1%;
    right: -15%;
  }
}
@media screen and (max-width: 585px) {
  .roadmap__container:nth-child(4) .canvas img:nth-child(1) {
    width: 100px;
    top: 5%;
  }
}
.roadmap__container:nth-child(4) .canvas img:nth-child(2) {
  bottom: -150%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.team {
  padding-top: 70px;
  padding-bottom: 80px;
  background: #1A1C25;
  background-image: url(../assets/images/team-back.png);
  background-repeat: repeat;
  background-position: center;
  position: relative;
}

.team__title {
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 63.1395px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-text-stroke: 1.1648px #FFFFFF;
  text-align: center;
}

.team__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__box {
  max-width: 1435px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px -10px 0;
}

.team-link {
  margin-top: 40px;
  flex: 0 0 25%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-link.link-deactivate {
  cursor: unset;
}

.team-link__image {
  width: 100%;
  padding-bottom: 115%;
  position: relative;
}
.team-link__image img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.team-link__name {
  margin-top: 20px;
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.team-link__prof {
  margin-top: 10px;
  color: #fff;
  max-width: 300px;
  font-family: "ComicSans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

.waves__wrapper {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .team__box {
    max-width: 650px;
  }

  .team__title {
    font-size: 52px;
  }

  .team__box {
    margin-top: 30px;
  }

  .team-link {
    flex-basis: 50%;
  }

  .waves {
    width: 150%;
  }
}
@media (max-width: 768px) {
  .team {
    padding-bottom: 50px;
  }

  .team__title {
    font-size: 43px;
  }

  .team-link__name {
    font-size: 21px;
  }

  .team-link__prof {
    font-size: 17px;
  }
}
@media (max-width: 413px) {
  .parallax > use {
    transform: translate(-29%);
  }

  .team__box {
    max-width: 250px;
  }

  .team-link {
    flex-basis: 100%;
  }
}
.menu {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 999999;
  max-width: 368px;
  width: 100%;
  height: 100vh;
  background: rgba(22, 19, 19, 0.9);
  backdrop-filter: blur(30px);
  transition: right 0.45s ease;
  display: flex;
  flex-direction: column;
  padding: 36px 20px;
}
@media (min-width: 769px) {
  .menu {
    display: none;
  }
}

body.show-menu .menu {
  right: 0;
}

.menu__header {
  display: flex;
  align-items: center;
}

.header__logo.cloned img {
  max-width: 102px;
}

.header__btn.cloned {
  margin-top: 5px;
  border-radius: 8.93px;
  margin-left: auto;
}
.header__btn.cloned .header__btn-wrapper {
  width: 112px;
  height: 37px;
  transform: translate(-2px, -4px);
  border: 1.575px solid #233356;
}
.header__btn.cloned .header__btn-wrapper .header__btn-text {
  font-size: 12.6px;
}
.header__btn.cloned .header__btn-wrapper .header__btn-glass {
  width: 41px;
  left: 16.8px;
}

.menu__closed {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
  margin-left: 5px;
}
.menu__closed::after, .menu__closed::before {
  content: "";
  display: block;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu__closed::after {
  width: 100%;
  height: 2.67px;
}
.menu__closed::before {
  height: 100%;
  width: 2.67px;
}
@media (max-width: 395px) {
  .menu__closed {
    margin-right: 0;
  }
}

.menu__title {
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0.11em;
  user-select: none;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-height: 640px) {
  .menu__title {
    font-size: 14px;
  }
}

.menu__body {
  margin-top: 71px;
  padding-left: 26px;
}
@media (max-height: 714px) {
  .menu__body {
    margin-top: 45px;
  }
}

.header__nav.cloned {
  margin-top: 24px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
}
.header__nav.cloned .header__link {
  margin: 0;
  font-size: 34px;
  line-height: 1.76;
  color: #FFFFFF;
}
.header__nav.cloned .header__link + .header__link {
  margin-top: 5px;
}
@media (max-height: 714px) {
  .header__nav.cloned .header__link {
    font-size: 28px;
  }
}
@media (max-height: 640px) {
  .header__nav.cloned .header__link {
    font-size: 24px;
  }
}
@media (max-height: 640px) {
  .header__nav.cloned {
    margin-top: 15px;
  }
}

.menu__footer {
  margin-top: 56px;
  padding-left: 26px;
}
@media (max-height: 640px) {
  .menu__footer {
    margin-top: 35px;
  }
}

.socials-menu {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.socials-menu__link {
  width: 54px;
  height: 54px;
  border-radius: 12.85px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials-menu__link img {
  max-width: 27px;
  max-height: 27px;
}
.socials-menu__link + .socials-menu__link {
  margin-left: 24px;
}
.socials-menu__link.inst {
  background: linear-gradient(90deg, #F19292 2.78%, #9F92F1 100%);
}
.socials-menu__link.twt {
  background: #36B9FF;
}
.socials-menu__link.ds {
  background: #5662F6;
}

.quiz {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 55px 20px 100px;
  transition: top 0.45s ease-in-out;
}
@media (max-width: 360px) {
  .quiz {
    padding-left: 10px;
    padding-right: 10px;
  }
}

body.quizOpen .quiz {
  top: 0;
}

.quiz__close {
  position: absolute;
  right: 53px;
  top: 55px;
  transform: rotate(-45deg);
  width: 24px;
  height: 24px;
}
.quiz__close::after, .quiz__close::before {
  content: "";
  display: block;
  background: #1B1A1A;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quiz__close::after {
  width: 100%;
  height: 3px;
}
.quiz__close::before {
  height: 100%;
  width: 3px;
}
@media (max-width: 768px) {
  .quiz__close {
    top: 15px;
    right: 15px;
  }
}

.quizTimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 23.735px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
@media (max-width: 565px) {
  .quizTimer {
    font-size: 17px;
  }
}

.quizTimer__timer {
  margin-top: 13px;
  display: flex;
  align-items: center;
}

.quizTimer__group {
  display: flex;
  flex-direction: column;
}

.quizTimer__numbers {
  display: flex;
}

.quizTimer__text {
  margin-top: 10px;
  font-size: 13px;
  text-align: left;
  text-transform: uppercase;
  color: #000000;
}

.quizTimer__colon {
  margin: 0 10px;
}

.quizTimer__item {
  width: 40px;
  height: 51px;
  background: #FFFFFF;
  border: 2px solid #000000;
  box-shadow: 3.1px 3.56px 0px #000000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 565px) {
  .quizTimer__item {
    width: 30px;
    height: 37px;
    border-radius: 7px;
    box-shadow: 2px 2px 0px #000000;
  }
}

.quizTimer__item + .quizTimer__item {
  margin-left: 5px;
}
@media (max-width: 565px) {
  .quizTimer__item + .quizTimer__item {
    margin-left: 3px;
  }
}

.quizBox {
  margin-top: 25px;
  max-width: 500px;
  width: 100%;
  border-radius: 53px;
}
@media (max-width: 565px) {
  .quizBox {
    border-radius: 38px;
  }
}
@media (max-width: 360px) {
  .quizBox {
    border-radius: 24px;
  }
}

.quizBox__header {
  height: 200px;
  background: #799AF1;
  border: 7px solid #373434;
  box-shadow: 3px 5px 0px #373434;
  border-radius: inherit;
  position: relative;
  padding-top: 38px;
  padding-bottom: 24px;
  z-index: 1;
}
@media (max-width: 565px) {
  .quizBox__header {
    padding-top: 28px;
    padding-bottom: 17px;
    border: 5.38075px solid #373434;
    box-shadow: 2.44957px 3.91931px 0px #373434;
  }
}
@media (max-width: 360px) {
  .quizBox__header {
    padding-top: 22px;
    padding-bottom: 13px;
  }
}
.quizBox__header.green {
  background: #5FD779;
}
.quizBox__header .title {
  text-align: center;
  display: block;
  font-family: "KronaOne", sans-serif;
  font-weight: 400;
  font-size: 27.7842px;
  line-height: 35px;
  color: #FFFFFF;
  -webkit-text-stroke: 0.969826px #FFFFFF;
}
@media (max-width: 565px) {
  .quizBox__header .title {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .quizBox__header .title {
    font-size: 16px;
  }
}
.quizBox__header .img {
  position: absolute;
  top: 50%;
  left: 54px;
  width: 112px;
  height: 100%;
  transform: translateY(-50%);
}
@media (max-width: 565px) {
  .quizBox__header .img {
    width: 88px;
  }
}

.quizBox__body {
  background: #FFFFFF;
  border: 7px solid #373434;
  box-shadow: 3px 5px 0px #373434;
  border-radius: inherit;
  min-height: 400px;
  position: relative;
  z-index: 2;
  margin-top: -95px;
  padding: 34px 25px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 565px) {
  .quizBox__body {
    border: 5.38075px solid #373434;
    box-shadow: 2.44957px 3.91931px 0px #373434;
    margin-top: -110px;
  }
}
@media (max-width: 480px) {
  .quizBox__body {
    min-height: 328px;
  }
}
@media (max-width: 360px) {
  .quizBox__body {
    margin-top: -120px;
  }
}

.quizBox__title {
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
}
.quizBox__title.sml {
  font-size: 18px;
  max-width: 368px;
}
@media (max-width: 480px) {
  .quizBox__title.sml {
    font-size: 13px;
  }
}
.quizBox__title.xl {
  font-weight: 800;
  font-size: 38px;
}
@media (max-width: 480px) {
  .quizBox__title {
    font-size: 17px;
  }
}

.quizBox-item {
  margin-top: 33px;
  max-width: 338px;
  width: 100%;
}
.quizBox-item.or {
  max-width: 381px;
}
@media (max-width: 480px) {
  .quizBox-item {
    max-width: 290px;
    margin-top: 24px;
  }
}

.quizBox-item__group {
  display: flex;
  justify-content: space-between;
  margin: 0 -3.5px;
}
.quizBox-item__group input {
  margin: 12px 3.5px 0;
  width: calc(50% - 7px);
}

.quizBox-item__title {
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #000000;
}
.quizBox-item__title a {
  display: inline;
  color: #00A3FF;
}
@media (max-width: 480px) {
  .quizBox-item__title {
    font-size: 16px;
  }
}

.quizBox-item__input {
  margin-top: 12px;
  width: 100%;
  height: 58px;
  background: #FFFFFF;
  border: 2px solid #191A1D;
  box-shadow: 2px 3px 0px #191A1D;
  border-radius: 14px;
  padding: 10px 21px;
  transition: color 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  font-family: "Mazzard", sans-serif;
  font-weight: 600;
  font-size: 20.3058px;
  line-height: 1.2;
  color: #000;
}
.quizBox-item__input::placeholder {
  color: #B6B6B6;
}
.quizBox-item__input.not-valid {
  border-color: #ff0000;
  box-shadow: 2px 3px 0px #ff0000;
}
@media (max-width: 480px) {
  .quizBox-item__input {
    height: 42px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 8px;
    padding-left: 13px;
    padding-right: 13px;
  }
}

.quizBox-item__btn {
  margin-top: 31px;
  min-width: 284px;
  min-height: 54px;
  background: #8981EA;
  border: 2.25px solid #233356;
  box-shadow: 3.75px 6px 0px #233356;
  border-radius: 12.75px;
}
.quizBox-item__btn .btn__text {
  font-size: 18px;
}
.quizBox-item__btn.green {
  background: #5FD779;
}
@media (max-width: 480px) {
  .quizBox-item__btn {
    min-width: 209px;
    min-height: 39px;
    border-radius: 10px;
    margin-top: 22px;
  }
  .quizBox-item__btn .btn__text {
    font-size: 13px;
  }
}

.quizBox__text {
  max-width: 275px;
  margin: 35px auto 0;
  font-family: "Mazzard", sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
  color: #000000;
}
@media (max-width: 480px) {
  .quizBox__text {
    font-size: 32px;
  }
}

.menu__footer.cloned {
  margin-top: auto;
  margin-left: 0;
  padding-left: 0;
}

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  z-index: 9999999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  transition: opacity 0.5s ease 0.3s;
}
.preloader.hide {
  opacity: 0;
}
.preloader.hide img,
.preloader.hide p {
  animation-play-state: paused;
}
.preloader .loader {
  width: 100%;
  height: 7.5px;
  background: #FFFFFF;
  border-radius: 22.1656px;
  margin: 17px auto 0;
  position: relative;
}
.preloader .loader .line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #8981EA;
  border-radius: 22.1656px;
  animation: runline 25s linear forwards;
}

.preloader p {
  font-family: "Mazzard", sans-serif;
  font-weight: 700;
  font-size: 132px;
  line-height: 1.2;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .preloader p {
    font-size: 12vw;
  }
}
@media (max-width: 565px) {
  .preloader p {
    font-size: 17vw;
  }
}

.preloader img {
  max-width: 255px;
  max-height: 255px;
  animation: fade 2s linear infinite;
}
@media (max-width: 360px) {
  .preloader img {
    max-width: 160px;
    max-height: 160px;
  }
}

@keyframes runline {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  52% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.frame-by-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.frame-by-frame svg, .frame-by-frame img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}
@media screen and (max-width: 1100px) {
  .frame-by-frame svg, .frame-by-frame img {
    transform: scale(4) translateY(-10%);
  }
}

svg {
  display: none;
}
