@charset "UTF-8";
/*анимация пульсации*/
@keyframes pulse {
  0% {
    transform: scale(1);
    transform--webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  75% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes horizontal-scroll-memes {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  to {
    transform: translateX(-440px);
    -webkit-transform: translateX(-440px);
  }
}
@keyframes horizontal-scroll-forms {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  to {
    transform: translateX(-320px);
    -webkit-transform: translateX(-320px);
  }
}
@keyframes float {
  0% {
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
  }
  100% {
    transform: translateY(-500px);
    -webkit-transform: translateY(-500px);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes leaf-appearing {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
  }
}
@keyframes char-appearing {
  0% {
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}
html:focus-within {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.hidden {
  visibility: hidden;
}

a, button {
  cursor: pointer;
}

input, button {
  border: none;
  padding: 0;
  background: none;
}

p, ul, h1, h2, h3, h4, h5, h6, ol {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

button, input {
  display: inline-block;
}

body {
  font-family: "Inter";
  background-color: #110D22;
  margin: 0px;
}

.header-items {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
  display: inline-flex;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: rgba(38, 35, 54, 0.5);
  height: 94px;
  width: 995px;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.header-items--hidden {
  transform: translateY(-200%);
}
.header-items-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-items-item__language {
  cursor: pointer;
}
.header-items-item__link {
  position: relative;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.header-items-item__link:nth-last-child(1) {
  padding-right: 0px;
}
.header-items-item__link:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid #ffcc3c;
  transition: all 0.3s;
  opacity: 0;
}
.header-items-item__link:hover {
  color: #ffcc3c;
  transition: all 0.3s;
}
.header-items-item__link:hover:after {
  opacity: 1;
  transition: all 0.3s;
}
.header-items-item__logo {
  width: 132px;
  height: 56px;
}
.header-items-item-wrap {
  pointer-events: none;
  margin-top: 41px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  transition: all 0.5s;
}
.header-items-item-wrap--not-hidden {
  pointer-events: all;
  background-color: #352C39;
  transition: all 0.5s;
}
.header-items-item-arrow {
  transition: all 0.5s;
}
.header-items-item-arrow--active {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  margin-left: 7px;
  transition: all 0.5s;
}
.header-items-item-arrow__image {
  height: 16px;
  width: 16px;
}
.header-items-item-language {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  transition: all 0.5s;
}
.header-items-item-language:nth-last-child(1) {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #4F4554;
  opacity: 0;
  z-index: -999;
}
.header-items-item-language--not-hidden {
  pointer-events: all;
  z-index: 999 !important;
  opacity: 1 !important;
  transition: all 0.5s;
}
.header-items-item-language__image {
  border-radius: 999px;
  width: 24px;
  height: 24px;
}
.header-items-item-language__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
  margin-left: 8px;
}
.header-items-item-btn {
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background-image: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  transition: all 0.3s;
}
.header-items-item-btn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(138, 113, 16, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.header-items-item-btn:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.header-items-item-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(142, 113, 0, 0.5) 0%, rgba(97, 49, 0, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.header-items-item-btn:active:after {
  opacity: 1;
}
.header-items-item-btn__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}
.header-items-item__mobile {
  display: none;
}

.hamburger-menu {
  flex-direction: column;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  background: #060D1C;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: none;
  transition: all 0.3s;
  opacity: 1;
}
.hamburger-menu--hidden {
  opacity: 0;
  transition: all 0.3s;
}
.hamburger-menu__link {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 20px;
}
.hamburger-menu__link:nth-child(7) {
  margin-bottom: 0px;
}
.hamburger-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: 430px;
  width: 178px;
  height: 70px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background-image: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  margin-top: 24px;
}
.hamburger-menu-btn__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}

.music {
    display: flex;
    /* display: none; */
    position: fixed;
    z-index: 99;
    bottom: 24px;
    right: 70px;
    height: 67px;
    width: 469px;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    padding: 16px 12px;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid #4F4554;
    border-radius: 12px;
    transition: height 0.3s;
}
.music--active {
  height: 112px;
  transition: height 0.3s;
}
.music__image {
  position: relative;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  transition: all 0.3s;
}
.music__image--active {
  width: 80px;
  height: 80px;
  transition: all 0.3s;
}
.music-wrap {
  display: flex;
  flex-direction: column;
}
.music-wrap__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-align: left;
  color: #fff;
  margin-bottom: 12px;
  margin-left: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.music-wrap__title--not-hidden {
  opacity: 1;
  transition: opacity 0.3s;
}
.music-player {
  display: flex;
  flex-direction: row;
  height: 32px;
  width: 400px;
  align-items: center;
  justify-content: space-between;
  transition: width 0.3s;
}
.music-player--active {
  width: 353px;
  transition: width 0.3s;
}
.music-player-button {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.music-player-button__state {
  position: relative;
  width: 12px;
  height: 15px;
}
.music-player-button__state--pause::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
}
.music-player-button__state--pause::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
}
.music-player-button__state--play {
  background-image: url(../img/music/play.svg);
  background-size: 14px;
  background-position: center center;
  background-repeat: no-repeat;
}
.music-player-timeline {
  cursor: pointer;
  position: relative;
  width: 117px;
  height: 5px;
  z-index: 2;
  background-color: #4F4554;
  border-radius: 999px;
  transition: width 0.3s;
}
.music-player-timeline--active {
  width: 82px;
  transition: width 0.3s;
}
.music-player-timeline-progress {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background-color: #fff;
  transition: width 0.15s linear;
  z-index: 1;
}
.music-player-timeline-progress::after {
  cursor: pointer;
  position: absolute;
  content: "";
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 0 5px 0 #474544;
  z-index: 2;
}
.music-player-time {
  display: flex;
  width: 70px;
  height: 19px;
  justify-content: space-between;
  align-items: center;
}
.music-player-time-current {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.music-player-time-divider {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #A4A0B1;
}
.music-player-time-length {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #A4A0B1;
}
.music-player-volume {
  cursor: pointer;
  display: flex;
  position: relative;
  z-index: 2;
  width: 47px;
  height: 5px;
  border-radius: 999px;
  background-color: #4F4554;
}
.music-player-volume-button {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.music-player-volume-button__icon--active {
  width: 17px;
  height: 17px;
  background-image: url(../img/music/button.svg);
  background-size: 17px;
  background-position: center center;
  background-repeat: no-repeat;
}
.music-player-volume-button__icon--mute {
  width: 17px;
  height: 17px;
  background-image: url(../img/music/button.svg);
  opacity: 0.2;
  background-size: 17px;
  background-position: center center;
  background-repeat: no-repeat;
}
.music-player-volume-progress {
  cursor: pointer;
  position: relative;
  border-radius: 999px;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.15s linear;
  z-index: 1;
}
.music-player-volume-progress::after {
  cursor: pointer;
  position: absolute;
  content: "";
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 0 5px 0 #474544;
  z-index: 2;
}
.music-player-arrow {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
}
.music-player-arrow__image {
  width: 16px;
  transform: rotateX(180deg);
  transition: all 0.3s;
}
.music-player-arrow__image--active {
  transform: rotateX(0deg);
  transition: all 0.3s;
}

.social {
  display: block;
  position: fixed;
  top: 300px;
  right: 0;
  z-index: 9999;
}
.social-items {
  display: flex;
  flex-direction: column;
}
.social-items-item {
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
.social-items-item-annotation {
  display: block;
  position: relative;
  padding: 12px;
  border-radius: 8px;
  background-color: #352C39;
  margin-right: 14px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.social-items-item-annotation:after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #352C39;
  border-radius: 2px;
  right: -4px;
  top: 16px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
}
.social-items-item-annotation__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}
.social-items-item-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background-color: #060D1C;
  background-image: url(../img/social/social-btn-bg.jpg);
  border-bottom: 1px solid #372E13;
}
.social-items-item-btn:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/social/social-btn-bg-active.jpg);
  border: 1px solid #FFCC3C;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1;
}
.social-items-item-btn:hover:after {
  opacity: 1;
  transition: all 0.3s;
}
.social-items-item-btn--radius-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background-color: #060D1C;
  background-image: url(../img/social/social-btn-bg.jpg);
  border-bottom: 1px solid #372E13;
  border-radius: 14px 0 0 0;
}
.social-items-item-btn--radius-top:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/social/social-btn-bg-active.jpg);
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid #FFCC3C;
  border-radius: 14px 0 0 0;
  z-index: 1;
}
.social-items-item-btn--radius-top:hover:after {
  opacity: 1;
  transition: all 0.3s;
}
.social-items-item-btn--radius-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background-color: #060D1C;
  background-image: url(../img/social/social-btn-bg.jpg);
  border-bottom: 1px solid #372E13;
  border-radius: 0 0 0 14px;
}
.social-items-item-btn--radius-bottom:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/social/social-btn-bg-active.jpg);
  opacity: 0;
  border: 1px solid #FFCC3C;
  border-radius: 0 0 0 14px;
  transition: all 0.3s;
  z-index: 1;
}
.social-items-item-btn--radius-bottom:hover:after {
  opacity: 1;
  transition: all 0.3s;
}
.social-items-item-btn__icon {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.essence {
  position: relative;
  width: 100%;
  height: 939px;
  padding-top: 450px;
}
.essence-bg {
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.essence-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/essence/bg.jpg);
  background-position: center top;
  background-size: 2060px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.essence::before {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100%;
  height: 663px;
  background: linear-gradient(to bottom, rgba(17, 13, 34, 0) 0%, #110d22 100%);
  z-index: 0;
}
.essence-description {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 1100px;
}
.essence-description__valhalla {
  font-weight: 800;
  font-size: 91px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 3px 2px rgba(43, 34, 14, 0.71));
  margin-bottom: 12px;
}
.essence-description__title {
  font-family: Inter;
  font-weight: 900;
  /*font-size: 78px;*/
	font-size: 53px;
  line-height: 120%;
  color: transparent;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-align: center;
  filter: drop-shadow(2px 3px 2px rgba(43, 34, 14, 0.71));
}
/*.essence-description-data {
  position: absolute;
  display: block;
  top: 31px;
  right: -139px;
  border: 2px solid #FFD67A;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: inset 0 -2px 24px 0 rgba(255, 214, 122, 0.38);
  background: rgba(141, 116, 60, 0.4);
  padding: 12px;
  transform: rotate(6deg) !important;
  -webkit-transform: rotate(6deg) !important;
}*/
.essence-description-data {
	position: absolute;
    display: block;
    top: -23px;
    right: 14px;
    border: 2px solid #ff4848;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: inset 0 -2px 24px 0 rgb(255 0 0 / 38%);
    background: rgb(141 60 60 / 40%);
    padding: 12px;
    transform: rotate(6deg) !important;
    -webkit-transform: rotate(6deg) !important;
}
.essence-description-data__title {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}
.essence-description-data__desc {
  font-family: Inter;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}
.essence-gift {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.essence-gift-progress {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  padding: 12px;
  z-index: 1;
  background-color: #141414;
}
.essence-gift-progress__image {
  position: absolute;
  right: -73px;
  top: -11.5px;
  border: 1px solid #FFCC3C;
  box-shadow: 0 0 44px 1px #FFCC3C;
  border-radius: 16px;
  width: 92px;
  height: 92px;
  animation: pulse 2s infinite;
}
.essence-gift-progress__gradient {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 37px;
}
.essence-gift-progress__gradient--adaptive {
  display: none;
}
.essence-gift-progress-step {
  display: block;
  margin-left: 3px;
  background-color: #353339;
  width: 3px;
  height: 37px;
  border-radius: 999px;
}
.essence-gift-progress__scale {
  position: relative;
  z-index: 1;
  width: 330px;
  height: 37px;
}
.essence-gift-progress__scale--adaptive {
  display: none;
}
.essence-gift-progress-wrap {
  position: absolute;
  top: 16px;
  left: 12px;
  width: 0px;
  height: 37px;
  z-index: 2;
  transition: width 3s;
}
.essence-gift-progress-wrap--full {
  width: 330px;
}
.essence-gift-progress-wrap:after {
  position: absolute;
  content: "";
  width: 3px;
  height: 52px;
  background-color: #FFCC3C;
  box-shadow: 0 0 12px 0 #FFCC3C;
  border-radius: 999px;
  right: -5.78px;
  top: -7.5px;
}
.essence-gift-progress-wrap__number {
  position: absolute;
  right: -16.3px;
  top: -31px;
  padding: 4px 8px;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  background-color: #FFCC3C;
  color: #fff;
  border-radius: 999px;
}
.essence-gift-progress-wrap-svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.essence-gift-progress-count {
  background-color: #372E13;
  border-radius: 8px;
  padding: 12px 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-right: 15px;
  width: 107px;
  height: 43px;
}
.essence-gift-progress-count__number {
  font-family: Inter;
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #FFCC3C;
}
.essence-gift-progress-count__number-all {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #A4A0B1;
}
.essence-gift__desc {
  margin-top: 16px;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #A4A0B1;
  text-align: center;
  width: 435px;
}
.essence-gift-btn {
  display: flex;
  position: relative;
  margin-top: 16px;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 269px;
  height: 70px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
}
.essence-gift-btn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(138, 113, 16, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.essence-gift-btn:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.essence-gift-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(142, 113, 0, 0.5) 0%, rgba(97, 49, 0, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.essence-gift-btn:active:after {
  opacity: 1;
}
.essence-gift-btn__image {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.essence-gift-btn__title {
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}

.features {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.features-description__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-description__desc {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 24px;
  text-align: center;
}
.features-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 48px;
}
.features-items-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 222px;
}
.features-items-item__image {
  width: 64px;
  height: 64px;
}
.features-items-item__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-top: 12px;
}

.theses {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/theses/leaf-bg.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
.theses__title {
  display: block;
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theses-column {
  position: relative;
}
.theses-parallax__earring-of-antharas {
  position: absolute;
  left: -21px;
  top: 900px;
  width: 84px;
  height: 84px;
  z-index: 5;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.theses-parallax__ring {
  position: absolute;
  right: -82px;
  top: 350px;
  width: 84px;
  height: 84px;
  z-index: 5;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.theses-parallax__zakens-earring {
  position: absolute;
  right: -73px;
  bottom: -800px;
  width: 90px;
  height: 90px;
  z-index: 5;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.theses-cards {
  margin-top: 32px;
}
.theses-cards-card {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  border-radius: 28px;
  z-index: 1;
  background-color: #160F19;
  margin-bottom: 24px;
}
.theses-cards-card:after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(10, 8, 15, 0) 0%, rgba(99, 30, 155, 0.8) 99.39%);
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 28px 28px;
  height: 45%;
  z-index: 1;
}
.theses-cards-card--cat {
  height: 506px;
}
.theses-cards-card--girl {
  height: 336px;
}
.theses-cards-card--dwarf {
  height: 331px;
}
.theses-cards-card--launch {
  height: 238px;
}
.theses-cards-card--titans {
  height: 601px;
}
.theses-cards-card__bg {
  position: absolute;
  opacity: 0.15;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.theses-cards-card__char {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.theses-cards-card__char--cat {
  height: 506px;
}
.theses-cards-card__char--girl {
  height: 336px;
}
.theses-cards-card__char--dwarf {
  height: 342px;
}
.theses-cards-card__char-1 {
  height: 485px;
  position: absolute;
  left: -208px;
  bottom: -33px;
  z-index: 1;
}
.theses-cards-card__char-2 {
  position: absolute;
  right: -57px;
  height: 328px;
  top: 23px;
  z-index: 1;
}
.theses-cards-card-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.theses-cards-card-wrap__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 28px;
  line-height: 130%;
  color: #FFCC3C;
  text-align: left;
}
.theses-cards-card-wrap__desc {
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  text-shadow: 0 2px 2px rgba(33, 13, 49, 0.8);
  color: #fff;
}
.theses-cards-notification {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}
.theses-cards-notification-annotation {
  position: absolute;
  z-index: 1;
  top: -115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 12px 16px;
  width: 504px;
  height: 96px;
  box-shadow: 0 8px 16px 0 rgba(8, 6, 10, 0.45);
  background: #352C39;
  opacity: 0;
  transition: all 0.3s;
}
.theses-cards-notification-annotation:after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #352C39;
  border-radius: 2px;
  margin: 0 auto;
  bottom: -6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 2;
}
.theses-cards-notification-annotation__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}
.theses-cards-notification-annotation__emoji {
  width: 20px;
  height: 20px;
}
.theses-cards-notification-annotation-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.theses-cards-notification-annotation-buttons-button {
  width: 233px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #11496c;
  border: 1px solid #15a1fb;
  border-radius: 8px;
}
.theses-cards-notification-annotation-buttons-button__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.theses-cards-notification-annotation-buttons-button__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.theses-cards-notification-eng {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-bottom: 29px;
  gap: 10px;
}
.theses-cards-notification-eng:before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -16px;
  margin: 0 auto;
  width: 332px;
  height: 100%;
  border-radius: 16px;
  background-color: #19151B;
}
.theses-cards-notification-eng-wrap {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 14px 20px;
  background-color: #36393E;
}
.theses-cards-notification-eng-wrap__icon {
  position: absolute;
  width: 20px;
  height: 15px;
  top: 14px;
  right: 20px;
  z-index: 4;
}
.theses-cards-notification-eng-wrap-top {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: start;
  padding-bottom: 11px;
  border-bottom: 1px solid #474a51;
}
.theses-cards-notification-eng-wrap-top__image {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-right: 14px;
}
.theses-cards-notification-eng-wrap-top-description {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.theses-cards-notification-eng-wrap-top-description__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: left;
}
.theses-cards-notification-eng-wrap-top-description__desc {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #b3b6bb;
  margin-top: 4px;
}
.theses-cards-notification-eng-wrap-top-description__desc--white {
  color: #fff;
}
.theses-cards-notification-eng-wrap-bottom {
  margin-top: 11px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.theses-cards-notification-eng-wrap-bottom__btn {
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  width: 191px;
  height: 41px;
  border-radius: 8px;
}
.theses-cards-notification-eng-wrap-bottom__btn--green {
  background-color: #43B581;
}
.theses-cards-notification-eng-wrap-bottom__btn--gray {
  background-color: #4F545A;
}
.theses-cards-notification-wrap {
  cursor: pointer;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFCC3C;
  border-radius: 28px;
  padding: 20px;
  background-color: #352C39;
}
.theses-cards-notification:before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -16px;
  margin: 0 auto;
  width: 332px;
  height: 100%;
  border-radius: 16px;
  background-color: #19151B;
}
.theses-cards-notification:after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -8px;
  margin: 0 auto;
  width: 376px;
  height: 100%;
  border-radius: 16px;
  background-color: #2B242E;
}
.theses-cards-notification-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.theses-cards-notification-top-person {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.theses-cards-notification-top-person__image {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.theses-cards-notification-top-person__title {
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}
.theses-cards-notification-top-time__title {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #A4A0B1;
}
.theses-cards-notification-bottom {
  margin-top: 13px;
  position: relative;
  z-index: 1;
  margin-right: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.theses-cards-notification-bottom__image {
  border-radius: 12px;
  width: 50px;
  height: 50px;
  margin-right: 14px;
}
.theses-cards-notification-bottom__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
}

.templates {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.templates-container-mobile {
  padding-top: 24px;
  display: flex;
  justify-content: start;
  overflow-x: scroll;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: 0;
  margin-left: 0;
}
.templates-header {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  align-items: end;
  z-index: 2;
}
.templates-header__title {
  position: relative;
  z-index: 2;
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.templates-header-progress-bar {
  border: 1px solid #352C39;
  border-radius: 8px;
  margin-top: 24px;
  width: 100%;
  background-color: #160F19;
  height: 38px;
}
.templates-header-progress {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 11px;
  border-radius: 8px;
  box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(170, 60, 255, 0.6) 0%, rgba(102, 36, 153, 0.6) 100%), url("../img/forms/progress.png");
  background-size: 657px;
  background-position: left center;
  height: 100%;
  width: 0;
  transition: all 0.5s;
}
.templates-header-progress--null {
  box-shadow: none;
  background: none;
}
.templates-header-progress__title {
  font-family: Inter;
  width: 200px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.templates-header-progress__counter {
  font-family: Inter;
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  color: #FFCC3C;
}
.templates-header-torn__top {
  position: absolute;
  /*bottom: -95px;*/
  bottom: -215px;
  right: -175px;
  width: 195px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.templates-header-torn__bottom {
  position: absolute;
  width: 124px;
  right: -71px;
 /*bottom: -192px;*/
	bottom: -360px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.templates-header__hint {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #A4A0B1;
  text-align: right;
  margin-top: 72px;
}
.templates-header__hint:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/templates/arrow__hint.svg);
  top: -38px;
  right: 0;
  z-index: 1;
  transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
}
.templates-header__hint:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/templates/arrow__hint.svg);
  transform: rotateY(180deg) rotateZ(180deg);
  -webkit-transform: rotateY(180deg) rotateZ(180deg);
  top: 2px;
  left: -38px;
  z-index: 1;
}
.templates-card {
  position: relative;
  z-index: 2;
  display: flex;
  height: 310px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  perspective: 1000px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.templates-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  background-image: url("../img/templates/card-back.png");
}
.templates-card-front {
  border-radius: 28px;
  border: 1px solid #FFCC3C;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.templates-card-back {
  border-radius: 28px;
  border: 1px solid #4F4554;
  background-color: #352C39;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  overflow: hidden;
  z-index: 1;
}
.templates-card-flipped .templates-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.templates-card__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.templates-card__title {
  position: relative;
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  width: 80%;
  z-index: 2;
}
.templates-card__desc {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  width: 264px;
  text-align: center;
  z-index: 2;
}
.templates-card__desc--yellow {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #FFCC3C;
}
.templates-card__desc--crossed {
  text-decoration: line-through;
}
.templates-description {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
}
.templates-description::after {
  position: absolute;
  content: "";
  bottom: -50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(18, 12, 35, 0) 0%, #120c23 87.23%);
  z-index: -1;
}
.templates-description__leaf {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 348px;
  height: 285px;
  bottom: -20px;
  transition: all 0.2s;
  z-index: -2;
}
.templates-description__char {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 353px;
  height: 368px;
  bottom: -40px;
  opacity: 0;
  transition: all 0.2s;
  z-index: -1;
}
.templates-description__gnoma {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 388px;
  height: 348px;
  bottom: -40px;
  opacity: 0;
  transition: all 0.2s;
  z-index: -1;
}
.templates-description-wrap {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 310px;
}
.templates-description-wrap__title {
  position: relative;
  z-index: 3;
  font-family: Inter;
  font-weight: 900;
  font-size: 44px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.templates-description-wrap-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.templates-description-wrap-buttons-button__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}
.templates-description-wrap-buttons-button--yellow {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background-image: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  transition: all 0.3s;
  width: 254px;
  height: 70px;
  text-transform: uppercase;
  margin-left: 12px;
  margin-right: 12px;
}
.templates-description-wrap-buttons-button--yellow:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(138, 113, 16, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.templates-description-wrap-buttons-button--yellow:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.templates-description-wrap-buttons-button--yellow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(142, 113, 0, 0.5) 0%, rgba(97, 49, 0, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.templates-description-wrap-buttons-button--yellow:active:after {
  opacity: 1;
}
.templates-description-wrap-buttons-button--pink {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ff3c7a, 0 0 34px 0 rgba(255, 60, 122, 0.85);
  background: linear-gradient(180deg, rgba(255, 60, 122, 0.6) 0%, rgba(181, 12, 130, 0.6) 100%), url(../img/btn-bg.jpg);
  background-position: center center;
  background-size: 590px;
  border: 1px solid #ff3c7a;
  border-radius: 16px;
  transition: all 0.3s;
  width: 254px;
  height: 70px;
  text-transform: uppercase;
  margin-left: 12px;
  margin-right: 12px;
}
.templates-description-wrap-buttons-button--pink:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(128, 15, 51, 0.5) 0%, rgba(112, 9, 81, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.templates-description-wrap-buttons-button--pink:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.templates-description-wrap-buttons-button--pink:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(88, 9, 34, 0.5) 0%, rgba(72, 7, 53, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.templates-description-wrap-buttons-button--pink:active:after {
  opacity: 1;
}
.templates-description-wrap-buttons-button--pink:hover:before {
  opacity: 1;
  transition: all 0.3s;
}

.tasks {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.tasks__element {
  position: absolute;
  width: 64px;
  bottom: 100px;
  opacity: 0;
  animation: float 3s forwards, fade-in 3s forwards;
  z-index: 2;
}
.tasks__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tasks-container {
  width: 100%;
  max-width: 1320px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.tasks-cards {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.tasks-cards-card {
  position: relative;
  width: 300px;
  height: 240px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background-color: #160F19;
  padding-top: 85px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  margin-right: 24px;
  margin-bottom: 34px;
}
.tasks-cards-card:nth-last-child(1) {
  margin-right: 0;
}
.tasks-cards-card__bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 28px;
  border: 1px solid #4F4554;
}
.tasks-cards-card__gift {
  position: absolute;
  display: flex;
  z-index: 2;
  align-self: center;
  top: -35px;
  width: 104px;
  height: 104px;
}
.tasks-cards-card-wrap {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.tasks-cards-card-wrap__icon {
  width: 44px;
  height: 44px;
}
.tasks-cards-card-wrap__title {
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  margin-top: 12px;
}
.tasks-cards-card-wrap-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #15a1fb;
  background: #11496c;
  border-radius: 999px;
  padding: 8px 12px;
  height: 35px;
  transition: all 0.3s;
  margin-top: 12px;
}
.tasks-cards-card-wrap-btn::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.tasks-cards-card-wrap-btn:hover {
  background: #15a1fb;
  transition: all 0.3s;
}
.tasks-cards-card-wrap-btn:active {
  background: #1171af;
  border: 1px solid #1171af;
}
.tasks-cards-card-wrap-btn--purple {
  border: 1px solid #a114ff;
  background: #3b2847;
  transition: all 0.3s;
}
.tasks-cards-card-wrap-btn--purple:hover {
  background: #a114ff;
  transition: all 0.3s;
}
.tasks-cards-card-wrap-btn--purple:active {
  border: 1px solid #7f10c9;
  background: #7f10c9;
}
.tasks-cards-card-wrap-btn__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  text-align: center;
}
.tasks-cards-card-wrap-btn__arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

.memes {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.memes__title {
  position: relative;
  z-index: 4;
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.memes-container {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.memes-container-content {
  margin-left: 24px;
  width: 660px;
  height: 514px;
}
.memes-container-description {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 546px;
}
.memes-container-description__title {
  font-family: Inter;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}
.memes-container-description__desc {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-top: 16px;
  width: 520px;
}
.memes-container-description-awards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.memes-container-description-awards-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 24px;
  width: 416px;
  height: 64px;
  overflow: hidden;
  position: relative;
}
.memes-container-description-awards-wrap:nth-child(6) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(7) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(8) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(9) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(10) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(11) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(12) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(13) {
  display: none;
}
.memes-container-description-awards-wrap:nth-child(14) {
  display: none;
}
.memes-container-description-awards-container {
  display: flex;
}
.memes-container-description-awards-container-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: url("../img/memes/element-bg.png");
  padding: 0 4px;
  margin-right: 24px;
}
.memes-container-description-awards-container-wrap__image {
  width: 57px;
}
.memes-container-description-awards__hint {
  position: relative;
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #A4A0B1;
  text-align: center;
  margin-top: 28px;
  z-index: 1;
}
.memes-container-description-awards__hint:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/society/arrow__hint.svg);
  top: 0;
  left: -28px;
  z-index: 1;
}
.memes-container-description-awards__hint:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/society/arrow__hint.svg);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  top: 0;
  right: -28px;
  z-index: 1;
}
.memes-container-description-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
}
.memes-container-description-buttons-button__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}
.memes-container-description-buttons-button--yellow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background-image: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  transition: all 0.3s;
  width: 254px;
  height: 70px;
  text-transform: uppercase;
  margin-left: 12px;
  margin-right: 12px;
}
.memes-container-description-buttons-button--yellow:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(138, 113, 16, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.memes-container-description-buttons-button--yellow:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.memes-container-description-buttons-button--yellow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(142, 113, 0, 0.5) 0%, rgba(97, 49, 0, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.memes-container-description-buttons-button--yellow:active:after {
  opacity: 1;
}
.memes-container-description-buttons-button--pink {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ff3c7a, 0 0 34px 0 rgba(255, 60, 122, 0.85);
  background: linear-gradient(180deg, rgba(255, 60, 122, 0.6) 0%, rgba(181, 12, 130, 0.6) 100%), url(../img/btn-bg.jpg);
  background-position: center center;
  background-size: 590px;
  border: 1px solid #ff3c7a;
  border-radius: 16px;
  transition: all 0.3s;
  width: 254px;
  height: 70px;
  text-transform: uppercase;
  margin-left: 12px;
  margin-right: 12px;
}
.memes-container-description-buttons-button--pink:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(128, 15, 51, 0.5) 0%, rgba(112, 9, 81, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.memes-container-description-buttons-button--pink:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.memes-container-description-buttons-button--pink:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(88, 9, 34, 0.5) 0%, rgba(72, 7, 53, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.memes-container-description-buttons-button--pink:active:after {
  opacity: 1;
}
.memes-container-description-buttons-button--pink:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.memes-container-wrapper {
  width: 660px;
  height: 414px;
  overflow: hidden;
  position: relative;
  margin-left: 24px;
}
.memes-container-wrapper-column {
  display: flex;
  flex-direction: column;
  position: absolute;
  padding-top: 80px;
}
.memes-container-wrapper-column__mem {
  border: 1px solid #5da3ff;
  border-radius: 16px;
  width: 318px;
  height: 218px;
  margin-bottom: 24px;
  background-size: cover;
  background-position: center center;
}
.memes-container-wrapper-column-2 {
  left: 342px;
  padding-top: 0;
}

.roadmap {
  position: relative;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 100px;
}
.roadmap-container {
  width: 100%;
  max-width: 1320px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.roadmap-description__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roadmap-description__desc {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}
.roadmap-table {
  margin-top: 24px;
}
.roadmap-table-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.roadmap-table-row-head-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(28, 42, 72, 0.5);
  width: 416px;
  height: 88px;
  border: 1px solid #ffd67a;
  border-radius: 16px;
}
.roadmap-table-row-head-cell:nth-last-child(1) {
  margin-right: 0px;
}
.roadmap-table-row-head-cell__title {
  font-family: Inter;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roadmap-table-row-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 424px;
  padding: 26px 18px 26px 18px;
  border-radius: 16px;
  margin-top: 24px;
  margin-right: 24px;
  background: rgba(28, 42, 72, 0.5);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background: rgba(28, 42, 72, 0.5);
}
.roadmap-table-row-cell:nth-last-child(1) {
  margin-right: 0px;
}
.roadmap-table-row-cell-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.roadmap-table-row-cell-header__icon {
  width: 24px;
  height: 24px;
}
.roadmap-table-row-cell-header__title {
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 14px;
  margin-right: 14px;
}
.roadmap-table-row-cell__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #FFCC3C;
  text-align: center;
}
.roadmap-table-row-cell__desc {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  width: 395px;
}

.society {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.society-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.society-description__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.society-description__desc {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}
.society-cards {
  margin-top: 32px;
}
.society-cards__hint {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 11px;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #A4A0B1;
  height: 34px;
  width: 178px;
  text-align: center;
  z-index: 1;
}
.society-cards__hint:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/society/arrow__hint.svg);
  top: 0;
  left: -28px;
  z-index: 1;
}
.society-cards__hint:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 28px;
  background-image: url(../img/society/arrow__hint.svg);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  top: 0;
  right: -28px;
  z-index: 1;
}
.society-cards-card {
  position: relative;
  z-index: 1;
  height: 212px;
  width: 100%;
  padding: 24px 20px;
  background-color: #24A1DE;
  background-image: url(../img/society/cards-bg-blue.jpg);
  border-radius: 28px;
}
.society-cards-card--pink {
  background-image: url(../img/society/cards-bg-purple.jpg);
}
.society-cards-card__image {
  position: absolute;
  z-index: 2;
  top: -23px;
  right: -20px;
}
.society-cards-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 160px;
  justify-content: space-between;
}
.society-cards-card-wrap__icon {
  width: 54px;
  height: 54px;
}
.society-cards-card-wrap__title {
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-align: left;
  margin-top: 17px;
}
.society-cards-card-wrap-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #15a1fb;
  background: #11496c;
  border-radius: 999px;
  padding: 8px 12px;
  height: 35px;
  transition: all 0.3s;
  margin-top: 12px;
}
.society-cards-card-wrap-btn:hover {
  background: #15a1fb;
  transition: all 0.3s;
}
.society-cards-card-wrap-btn:active {
  background: #1171af;
  border: 1px solid #1171af;
}
.society-cards-card-wrap-btn--purple {
  border: 1px solid #a114ff;
  background: #3b2847;
  transition: all 0.3s;
}
.society-cards-card-wrap-btn--purple:hover {
  background: #a114ff;
  transition: all 0.3s;
}
.society-cards-card-wrap-btn--purple:active {
  border: 1px solid #7f10c9;
  background: #7f10c9;
}
.society-cards-card-wrap-btn::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.society-cards-card-wrap-btn__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  text-align: center;
}
.society-cards-card-wrap-btn__arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

.greetings {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  font-family: Inter;
  margin-top: 16px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background-image: url(../img/theses/leaf-bg.svg);
  background-position: top center;
  background-repeat: no-repeat;
}

.forms {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.forms-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.forms-description__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fffcf4 0%, #ffd67a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.forms-description__desc {
  font-family: Inter;
  margin-top: 16px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
.forms-description__desc--yellow {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #FFCC3C;
}
.forms-progress-bar {
  position: relative;
  border: 1px solid #352C39;
  border-radius: 8px;
  margin-top: 24px;
  width: 100%;
  background-color: #160F19;
  height: 38px;
}
.forms-progress {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 11px;
  border-radius: 8px;
  box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(170, 60, 255, 0.6) 0%, rgba(102, 36, 153, 0.6) 100%), url("../img/forms/progress.png");
  background-size: 100%;
  background-position: left center;
  height: 100%;
  width: 85%;
  transition: all 0.5s;
}
.forms-progress--null {
  box-shadow: none;
  background: none;
}
.forms-progress__title {
  font-family: Inter;
  width: 300px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.forms-progress__counter {
  font-family: Inter;
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  color: #FFCC3C;
}
.forms-progress__image {
  position: absolute;
  right: 0;
  top: -13px;
  border: 1px solid #FFCC3C;
  box-shadow: 0 0 44px 1px #FFCC3C;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  animation: pulse 2s infinite;
}
.forms-content {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.forms-content-registration {
  position: relative;
  z-index: 1;
  width: 596px;
  height: 542px;
  padding: 30px 24px 0 24px;
}
.forms-content-registration:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 1px solid #FFD67A;
  border-bottom: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(87, 132, 240, 0.35) 12.14%, rgba(18, 14, 36, 0.9) 100%);
  -webkit-mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
}
.forms-content-registration__glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 168px;
  border-radius: 18px 18px 0 0;
  z-index: 1;
}
.forms-content-registration__title {
  position: relative;
  z-index: 2;
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
}
.forms-content-registration-form {
  position: relative;
  z-index: 2;
}
.forms-content-registration-form:after {
  position: absolute;
  z-index: 1;
  content: "";
  left: 82px;
  top: 17px;
  background-image: url(../img/forms/arrow.png);
  width: 18px;
  height: 17px;
  pointer-events: none;
}
.forms-content-registration-form__error {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 8px;
  color: #F94E4E;
}
.forms-content-registration-form__error--success {
  color: #3afd54;
}
.forms-content-registration-form-select {
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  padding: 14px;
  text-align: left;
  color: #fff;
  display: inline-block;
  width: 113px;
  height: 51px;
  background: rgba(6, 13, 28, 0.65);
  border-radius: 8px;
  border: 1px solid #141414;
  margin-right: 11px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.forms-content-registration-form-select:-ms-expand {
  display: none;
}
.forms-content-registration-form-select__option {
  cursor: pointer;
}
.forms-content-registration-form__input {
  display: inline-block;
  margin-bottom: 12px;
  width: 100%;
  height: 51px;
  background: rgba(6, 13, 28, 0.65);
  border: 1px solid #141414;
  border-radius: 8px;
  padding: 14px;
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  transition: all 0.3s;
}
.forms-content-registration-form__input:hover {
  border: 1px solid #352C39;
  transition: all 0.3s;
}
.forms-content-registration-form__input:focus-within {
  background-color: #060D1C;
  border: 1px solid #FFCC3C;
}
.forms-content-registration-form__input--success {
  background: #141414;
  border: 1px #141414;
  transition: all 0.3s;
}
.forms-content-registration-form__input--error {
  border: 1px solid #F94E4E;
  transition: all 0.3s;
}
.forms-content-registration-form__input::-moz-placeholder {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #A4A0B1;
}
.forms-content-registration-form__input::placeholder {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #A4A0B1;
}
.forms-content-registration-form__input--head {
  width: 417px;
}
.forms-content-registration-form__checkbox-hidden {
  display: none;
}
.forms-content-registration-form__checkbox-hidden:checked + .forms-content-registration-form-wrap > .forms-content-registration-form-wrap__checkbox:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: opacity 0.1s;
}
.forms-content-registration-form-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.forms-content-registration-form-wrap__checkbox {
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #A4A0B1;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  transition: all 0.1s;
}
.forms-content-registration-form-wrap__checkbox:hover {
  border: 1px solid #FFCC3C;
  transition: all 0.1s;
}
.forms-content-registration-form-wrap__checkbox:after {
  pointer-events: none;
  position: absolute;
  content: "";
  background-color: #FFCC3C;
  width: 12px;
  height: 12px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s;
}
.forms-content-registration-form-wrap__desc {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  display: inline-block;
  width: 95%;
  margin-top: 6px;
  margin-left: 9px;
}
.forms-content-registration-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 18px;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #ffd943, 0 0 34px 0 rgba(255, 144, 0, 0.85);
  background-image: linear-gradient(to bottom, rgba(232, 194, 50, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%), url(../img/btn-bg-yellow.jpg);
  background-position: center center;
  background-size: 430px;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  transition: all 0.3s;
  width: 235px;
  height: 70px;
  text-transform: uppercase;
}
.forms-content-registration-form-btn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(138, 113, 16, 0.5) 0%, rgba(245, 131, 16, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.forms-content-registration-form-btn:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.forms-content-registration-form-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(to bottom, rgba(142, 113, 0, 0.5) 0%, rgba(97, 49, 0, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.forms-content-registration-form-btn:active:after {
  opacity: 1;
}
.forms-content-registration-form-btn__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}
.forms-content-participation {
  position: relative;
  z-index: 1;
  border-radius: 18px 18px 0 0;
  width: 596px;
  height: 542px;
  padding: 30px 24px 0 24px;
}
.forms-content-participation:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 1px solid #FFD67A;
  border-bottom: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(121, 28, 30, 0.35) 60%, rgba(121, 28, 30, 0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
}
.forms-content-participation__glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 168px;
  border-radius: 18px 18px 0 0;
  z-index: 1;
}
.forms-content-participation__title {
  position: relative;
  z-index: 2;
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  text-align: center;
}
.forms-content-participation__step {
  position: relative;
  z-index: 2;
  margin-top: 23px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}
.forms-content-participation__step--yellow {
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #FFCC3C;
}
.forms-content-participation-form {
  position: relative;
  z-index: 2;
}
.forms-content-participation-form__error {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #F94E4E;
  margin-bottom: 8px;
}
.forms-content-participation-form__error--success {
  color: #3afd54;
}
.forms-content-participation-form-awards {
  display: flex;
  margin-top: 12px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  overflow: hidden;
  position: relative;
}
.forms-content-participation-form-awards-container {
  display: flex;
  animation: horizontal-scroll-forms 9s linear infinite;
}
.forms-content-participation-form-awards-container-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: url("../img/forms/element-bg.png");
  padding: 0 4px;
  margin-right: 16px;
}
.forms-content-participation-form-awards-container-wrap__image {
  width: 45px;
  height: 45px;
}
.forms-content-participation-form__input {
  display: inline-block;
  margin-bottom: 12px;
  width: 387px;
  height: 53px;
  background: rgba(6, 13, 28, 0.65);
  border: 1px solid #141414;
  border-radius: 8px;
  padding: 14px;
  margin-right: 16px;
  margin-top: 16px;
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}
.forms-content-participation-form__input:hover {
  border: 1px solid #352C39;
  transition: all 0.3s;
}
.forms-content-participation-form__input:focus-within {
  background-color: #060D1C;
  border: 1px solid #FFCC3C;
}
.forms-content-participation-form__input--success {
  background: #141414;
  border: 1px #141414;
  transition: all 0.3s;
}
.forms-content-participation-form__input--error {
  border: 1px solid #F94E4E;
  transition: all 0.3s;
}
.forms-content-participation-form__input::-moz-placeholder {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #A4A0B1;
}
.forms-content-participation-form__input::placeholder {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #A4A0B1;
}
.forms-content-participation-form__button {
  position: relative;
  z-index: 2;
  border: 1px solid #FFCC3C;
  border-radius: 16px;
  padding: 16px 24px;
  width: 134px;
  height: 51px;
  box-shadow: inset 0 0 14px 0 #ffd943, 0 0 14px 0 rgba(255, 144, 0, 0.85);
  background: linear-gradient(180deg, rgba(232, 194, 50, 0.35) 0%, rgba(245, 131, 16, 0.35) 100%);
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
  transition: all 0.3s;
}
.forms-content-participation-form__button:hover {
  background: linear-gradient(180deg, rgba(232, 194, 50, 0.79) 0%, rgba(245, 131, 16, 0.79) 100%);
  transition: all 0.3s;
}
.forms-content-participation-form__button:active {
  background: linear-gradient(180deg, rgba(245, 131, 16, 0.79) 0%, rgba(232, 194, 50, 0.79) 100%);
  transition: all 0.3s;
}
.forms-content-participation-form__checkbox-hidden {
  display: none;
}
.forms-content-participation-form__checkbox-hidden:checked + .forms-content-participation-form-wrap > .forms-content-participation-form-wrap__checkbox:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: opacity 0.1s;
}
.forms-content-participation-form-wrap {
  margin-top: 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.forms-content-participation-form-wrap__checkbox {
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #A4A0B1;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  transition: all 0.1s;
}
.forms-content-participation-form-wrap__checkbox:hover {
  border: 1px solid #FFCC3C;
  transition: all 0.1s;
}
.forms-content-participation-form-wrap__checkbox:after {
  pointer-events: none;
  position: absolute;
  content: "";
  background-color: #FFCC3C;
  width: 12px;
  height: 12px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s;
}
.forms-content-participation-form-wrap__desc {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  display: inline-block;
  width: 95%;
  margin-left: 9px;
}
.forms-content-participation-btn {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  background-position: center center;
  position: relative;
  background-size: 430px;
  padding: 24px;
  box-shadow: inset 0 -2px 24px 0 #50abff, 0 0 34px 0 rgba(14, 139, 255, 0.85);
  background: linear-gradient(180deg, rgba(124, 192, 255, 0.7) 0%, rgba(58, 128, 220, 0.5) 100%), url(../img/btn-bg-blue.jpg);
  background-position: center center;
  background-size: 590px;
  border: 1px solid #7cc0ff;
  border-radius: 16px;
  transition: all 0.3s;
}
.forms-content-participation-btn:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(180deg, rgba(28, 122, 209, 0.5) 0%, rgba(51, 119, 208, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.forms-content-participation-btn:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.forms-content-participation-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 91, 175, 0.5) 0%, rgba(19, 83, 167, 0.5) 100%);
  border-radius: 16px;
  background-position: center center;
  background-size: 430px;
  opacity: 0;
  z-index: 0;
}
.forms-content-participation-btn:active:after {
  opacity: 1;
}
.forms-content-participation-btn__title {
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(81, 44, 7, 0.7);
}
.forms-content-participation__desc {
  position: relative;
  z-index: 2;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #A4A0B1;
  margin-top: 23px;
}

.footer {
  position: relative;
  padding-bottom: 100px;
}
.footer-wrap {
  width: 100%;
  background-color: #262336;
  border-radius: 28px;
  padding: 48px 32px;
}
.footer-wrap-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #353339;
}
.footer-wrap-top-level {
  display: flex;
  flex-direction: column;
}
.footer-wrap-top-level-emblem {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer-wrap-top-level-emblem__image {
  width: 62px;
  height: 59px;
  margin-right: 21px;
}
.footer-wrap-top-level-emblem__title {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #A4A0B1;
  text-align: left;
  width: 200px;
}
.footer-wrap-top-level__link {
  display: flex;
  align-items: center;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 20px;
}
.footer-wrap-top-level__link-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer-wrap-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 24px;
}
.footer-wrap-bottom__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #A4A0B1;
  text-align: left;
}
.footer-wrap-bottom-links__link {
  margin-left: 32px;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}

.forms-content-registration-form-select:focus .forms-content-registration-form::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.templates-description-char--active {
  opacity: 1;
  bottom: 0;
  transition: all 0.2s;
}

.templates-description-leaf--active {
  bottom: 0;
  transition: all 0.2s;
}

.display__none {
  display: none !important;
}

.big-disabled-button {
  cursor: not-allowed;
  box-shadow: inset 0 -2px 24px 0 #414141;
  background-image: linear-gradient(180deg, rgba(163, 163, 163, 0.5) 0%, rgba(81, 81, 81, 0.5) 100%), url("../img/btn-bg.jpg");
  background-size: 590px;
  border: 1px solid #4F4554;
}
.big-disabled-button:after {
  display: none;
}
.big-disabled-button:before {
  display: none;
}

.medium-disabled-button {
  cursor: not-allowed;
  box-shadow: inset 0 -2px 24px 0 #414141;
  background-image: linear-gradient(180deg, rgba(92, 92, 92, 0.5) 0%, rgba(108, 105, 103, 0.5) 100%), url("../img/btn-bg.jpg");
  background-size: 590px;
  border: 1px solid #4F4554;
}
.medium-disabled-button:after {
  display: none;
}
.medium-disabled-button:before {
  display: none;
}

.small-disabled-button {
  cursor: not-allowed;
  border: 1px solid #414141;
  background: #3e3e3e;
}
.small-disabled-button:hover {
  border: 1px solid #414141;
  background: #3e3e3e;
}
.small-disabled-button:active {
  border: 1px solid #414141;
  background: #3e3e3e;
}

.participate-form-disabled-button {
  cursor: not-allowed;
  box-shadow: none;
  border: 1px solid #353339;
  background: linear-gradient(180deg, rgba(130, 130, 130, 0.35) 0%, rgba(56, 56, 56, 0.35) 100%);
}
.participate-form-disabled-button:hover {
  box-shadow: none;
  border: 1px solid #353339;
  background: linear-gradient(180deg, rgba(130, 130, 130, 0.35) 0%, rgba(56, 56, 56, 0.35) 100%);
}
.participate-form-disabled-button:active {
  box-shadow: none;
  border: 1px solid #353339;
  background: linear-gradient(180deg, rgba(130, 130, 130, 0.35) 0%, rgba(56, 56, 56, 0.35) 100%);
}

.features-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 1273px;
  z-index: -2;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.features-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/features/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.features-bg__lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  filter: blur(60px);
  background-position: center;
  mix-blend-mode: screen;
  background-image: url(../img/lights.jpg);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.templates-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.templates-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/templates/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tasks-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.tasks-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/tasks/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tasks-bg__image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -2px;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #110d22 0%, rgba(17, 13, 34, 0) 16.05%, rgba(17, 13, 34, 0) 88.01%, #110d22 100%);
  z-index: 1;
}
.tasks-bg__lights {
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  filter: blur(60px);
  background-position: center;
  mix-blend-mode: screen;
  background-image: url(../img/lights.jpg);
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

.memes-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 1831px;
  z-index: -2;
}
.memes-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/templates/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 852px;
  z-index: -1;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.memes-bg__lights {
  position: absolute;
  top: 530px;
  left: 0;
  right: 0;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  background-repeat: no-repeat;
  filter: blur(25px);
  background-position: center;
  mix-blend-mode: screen;
  background-image: url(../img/lights.jpg);
  width: 100%;
  height: 1240px;
  z-index: -1;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

.roadmap-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.roadmap-bg__image {
  position: relative;
  top: 0;
  background-repeat: no-repeat;
  background-image: url(../img/roadmap/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 1022px;
  z-index: -1;
}
.roadmap-bg__image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -2px;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #110d22 0%, rgba(17, 13, 34, 0) 16.05%, rgba(17, 13, 34, 0) 88.01%, #110d22 100%);
  z-index: 1;
}

.society-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 1667px;
  z-index: -2;
}
.society-bg__image {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/society/bg.png);
  background-position: top center;
  background-size: 1920px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}

.footer-bg {
  overflow: hidden;
  background-color: #110D22;
  position: absolute;
  display: block;
  bottom: 96px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 605px;
  z-index: -2;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.footer-bg__lights {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  filter: blur(25px);
  background-position: center;
  mix-blend-mode: screen;
  background-image: url(../img/lights.jpg);
  width: 1920px;
  height: 100%;
  z-index: -1;
}

@media (min-width: 1920px) {
  .essence-bg {
    width: 1920px;
  }
  .essence-bg__image {
    background-size: 2060px;
  }
  .essence-bg__image::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .essence-bg__image::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .features-bg {
    width: 1920px;
  }
  .features-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .features-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .features-bg__image {
    background-size: 1920px;
  }
  .templates-bg {
    width: 1920px;
  }
  .templates-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .templates-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .templates-bg__image {
    background-size: 1920px;
  }
  .tasks-bg {
    width: 1920px;
  }
  .tasks-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .tasks-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .tasks-bg__image {
    background-size: 1920px;
  }
  .memes-bg {
    width: 1920px;
  }
  .memes-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .memes-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .memes-bg__image {
    background-size: 1920px;
  }
  .roadmap-bg {
    width: 1920px;
  }
  .roadmap-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .roadmap-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .roadmap-bg__image {
    background-size: 1920px;
  }
  .society-bg {
    width: 1920px;
  }
  .society-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .society-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .society-bg__image {
    background-size: 1920px;
  }
  .society-bg__lights {
    filter: blur(20px);
  }
  .footer-bg {
    width: 1920px;
  }
  .footer-bg::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to left, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .footer-bg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -2px;
    height: 100%;
    width: 400px;
    background: linear-gradient(to right, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .footer-bg__lights {
    background-size: 1920px;
  }
}
@media (max-width: 1500px) {
  .essence {
    height: 692px;
    padding-top: 250px;
  }
  .essence::before {
    height: 550px;
  }
  .essence-bg__image {
    background-size: 1500px;
  }
}
@media (max-width: 1400px) {
  .templates-bg {
    top: -220px;
    height: 162%;
  }
  .templates-bg__image::after {
    position: absolute;
    content: "";
    left: -2px;
    bottom: -2px;
    right: -2px;
    height: 300px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(17, 13, 34, 0) 0%, #110d22 100%);
    z-index: 1;
  }
  .roadmap-container {
    max-width: 1140px;
  }
  .tasks-container {
    max-width: 1140px;
  }
  .header-items {
    width: 995px;
  }
  .header-items-item__link:nth-child(5) {
    margin-right: 0;
  }
  .header-items-item__link:nth-child(6) {
    display: none;
  }
  .header-items-item__link:nth-child(7) {
    display: none;
  }
  .essence-description__title {
    font-size: 72px;
  }
  .essence-description__valhalla {
    margin-bottom: 10px;
    font-size: 78px;
  }
  .essence-gift__desc {
    font-size: 15px;
  }
  .features {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .features-description__title {
    font-size: 46px;
  }
  .features-description__desc {
    font-size: 18px;
    width: 1000px;
    margin: 0 auto;
    padding-top: 18px;
  }
  .features-items-item__title {
    font-size: 18px;
  }
  .theses {
    background-size: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .theses__title {
    font-size: 46px;
  }
  .theses-cards-card-wrap__title {
    font-size: 26px;
  }
  .theses-cards-card-wrap__desc {
    font-size: 20px;
  }
  .theses-cards-notification-bottom__title {
    font-size: 17px;
  }
  .theses-cards-notification:before {
    width: 312px;
  }
  .theses-cards-notification:after {
    width: 336px;
  }
  .theses-cards-notification-eng-wrap-bottom__btn {
    width: 150px;
  }
  .theses-cards-card--cat {
    height: 468px;
  }
  .theses-cards-card--girl {
    height: 302px;
  }
  .theses-cards-card--dwarf {
    height: 302px;
  }
  .theses-cards-card--titans {
    height: 538px;
  }
  .theses-cards-card__char--cat {
    height: 442px;
  }
  .theses-cards-card__char--girl {
    height: 290px;
  }
  .theses-cards-card__char--dwarf {
    height: 328px;
  }
  .templates {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .templates-header__title {
    font-size: 46px;
  }
  .templates-card {
    height: 261px;
  }
  .templates-card__title {
    font-size: 22px;
  }
  .templates-card__desc {
    font-size: 16px;
    width: 238px;
  }
  .templates-header-torn__top {
    width: 182px;
  }
  .templates-header-torn__bottom {
    width: 112px;
  }
  .templates-header__hint {
    font-size: 18px;
    margin-top: 56px;
  }
  .templates-description-wrap {
    height: 261px;
  }
  .templates-description-wrap__title {
    font-size: 38px;
  }
  .tasks {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tasks__title {
    font-size: 46px;
  }
  .tasks-cards {
    justify-content: space-evenly;
  }
  .tasks-cards-card {
    margin-right: 0;
  }
  .memes {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .memes__title {
    font-size: 46px;
  }
  .memes-container-content {
    height: 420px;
  }
  .memes-container-description__desc {
    font-size: 18px;
  }
  .memes-container-wrapper {
    width: 546px;
  }
  .memes-container-wrapper-column-2 {
    left: 285px;
  }
  .memes-container-wrapper-column__mem {
    width: 261px;
  }
  .roadmap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .roadmap-description__title {
    font-size: 46px;
  }
  .roadmap-description__desc {
    font-size: 18px;
    margin-top: 18px;
  }
  .roadmap-table-row-head-cell {
    width: 356px;
  }
  .roadmap-table-row-cell {
    width: 356px;
  }
  .roadmap-table-row-cell__desc {
    width: 350px;
  }
  .society {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .society-description__title {
    font-size: 46px;
  }
  .society-description__desc {
    font-size: 18px;
  }
  .forms {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .greetings {
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: Inter;
    margin-top: 16px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #fff;
  }
  .forms-description__title {
    font-size: 46px;
  }
  .forms-description__desc {
    font-size: 18px;
  }
  .forms-content {
    justify-content: space-between;
  }
  .forms-content-registration {
    width: 548px;
    height: 530px;
  }
  .forms-content-registration-form__input--head {
    width: 369px;
  }
  .forms-content-participation {
    width: 548px;
    height: 530px;
  }
  .forms-content-participation-form__input {
    width: 343px;
  }
  .forms-content-participation__step {
    font-size: 16px;
    margin-top: 20px;
  }
  .forms-content-participation-form__desc {
    margin-top: 20px;
  }
  .forms-content-participation__desc {
    margin-top: 20px;
  }
  .footer {
    padding-top: 50px;
    padding-top: 0;
  }
}
@media (max-width: 1321px) {
  .essence-description-data {
    top: -12px;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .memes-bg__lights {
    top: 200px;
    height: 800px;
  }
  .footer-bg {
    display: none;
  }
  .header-items {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .essence {
    height: 622px;
    padding-top: 200px;
  }
  .essence::before {
    height: 500px;
  }
  .essence-description {
    width: 100%;
  }
  .essence-description__title {
    font-size: 62px;
  }
  .essence-description__valhalla {
    font-size: 36px;
  }
  .essence-description-data {
    /*top: -25px;*/
    top: -68px;
  }
  .features {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .features-description__title {
    font-size: 42px;
  }
  .features-description__desc {
    width: 894px;
    padding-top: 16px;
  }
  .features-items {
    justify-content: center;
  }
  .features-items-item {
    margin-bottom: 35px;
    width: 260px;
  }
  .theses {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .theses__title {
    font-size: 42px;
  }
  .theses-cards-card {
    margin-bottom: 16px;
  }
  .theses-cards-card-wrap__title {
    line-height: 120%;
    font-size: 24px;
  }
  .theses-cards-card-wrap__desc {
    font-size: 18px;
  }
  .theses-cards-notification {
    margin-bottom: 24px;
  }
  .theses-cards-notification-wrap {
    padding: 16px;
    width: 100%;
  }
  .theses-cards-notification-bottom__image {
    border-radius: 12px;
    width: 34px;
    height: 34px;
    margin-right: 12px;
    margin-left: 12px;
  }
  .theses-cards-notification-bottom__title {
    font-size: 16px;
    width: 215px;
  }
  .theses-cards-notification:before {
    width: 175px;
  }
  .theses-cards-notification:after {
    width: 224px;
  }
  .theses-cards-notification-eng-wrap-top-description__title {
    font-size: 18px;
  }
  .theses-cards-notification-eng-wrap-bottom__btn {
    width: 122px;
  }
  .theses-cards-notification-eng:before {
    width: 86%;
  }
  .theses-cards-card--cat {
    height: 371px;
  }
  .theses-cards-card__char--cat {
    height: 355px;
  }
  .theses-cards-card--girl {
    height: 268px;
  }
  .theses-cards-card__char--girl {
    height: 229px;
  }
  .theses-cards-card--dwarf {
    height: 268px;
  }
  .theses-cards-card__char--dwarf {
    height: 291px;
  }
  .theses-cards-card--launch {
    height: 225px;
  }
  .theses-cards-card--titans {
    height: 452px;
  }
  .theses-cards-card__char-2 {
    right: -47px;
    height: 257px;
    top: 7px;
  }
  .theses-cards-card__char-2 {
    right: -47px;
    height: 257px;
    top: 7px;
  }
  .templates {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .templates-header__title {
    font-size: 42px;
  }
  .templates-card {
    height: 216px;
  }
  .templates-card__title {
    font-size: 18px;
  }
  .templates-description-wrap {
    height: 216px;
  }
  .templates-description-wrap__title {
    font-size: 32px;
  }
  .templates-description-wrap-buttons-button--yellow {
    width: 220px;
    height: 86px;
    margin-left: 0;
    margin-right: 16px;
    background-size: 505px;
  }
  .templates-description-wrap-buttons-button--pink {
    width: 220px;
    height: 86px;
    margin-left: 0;
    margin-right: 0;
    background-size: 505px;
  }
  .templates-header__hint {
    font-size: 16px;
    margin-top: 34px;
  }
  .templates-header__hint:before {
    top: -29px;
    width: 20px;
    height: 24px;
  }
  .templates-header__hint:after {
    top: 0px;
    left: -32px;
  }
  .templates-card__desc {
    font-size: 14px;
    width: 203px;
  }
  .tasks {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .tasks__title {
    font-size: 42px;
  }
  .memes {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .memes__title {
    font-size: 42px;
  }
  .memes-container-description-awards__hint {
    font-size: 18px;
  }
  .memes-container-content {
    margin-left: 20px;
  }
  .memes-container-wrapper {
    display: none;
  }
  .roadmap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .roadmap-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .roadmap-table {
    width: 973px;
  }
  .roadmap-table-row-cell__title {
    font-size: 18px;
  }
  .roadmap-table-row-cell-header__title {
    font-size: 16px;
    line-height: 120%;
  }
  .roadmap-table-row-cell__desc {
    width: 295px;
    font-size: 16px;
    line-height: 120%;
  }
  .roadmap-table-row-head-cell {
    width: 315px;
  }
  .roadmap-table-row-cell {
    width: 315px;
    margin-top: 14px;
    margin-right: 14px;
  }
  .roadmap-description__title {
    font-size: 42px;
  }
  .society {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .society-cards {
    margin-top: 40px;
  }
  .society-description__title {
    font-size: 42px;
  }
  .society-description__desc {
    margin-top: 18px;
  }
  .society-cards-card__image {
    top: -34px;
  }
  .society-cards__hint {
    height: auto;
    width: 132px;
  }
  .greetings {
    padding-top: 40px;
    padding-bottom: 100px;
    font-family: Inter;
    margin-top: 16px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #fff;
  }
  .forms {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .forms-description__title {
    font-size: 42px;
  }
  .forms-content {
    display: flex;
    flex-direction: column;
  }
  .forms-content-participation {
    margin-top: 24px;
  }
  .footer {
    padding-bottom: 0;
    padding-top: 0;
  }
  .footer > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .footer-wrap {
    border-radius: 28px 28px 0 0;
  }
}
@media (max-width: 1000px) {
  .roadmap-container {
    display: flex;
    justify-content: start;
    overflow-x: scroll;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 1100px) {
  .header-items-item-arrow {
    margin-right: 7px;
  }
}
@media (max-width: 1082px) {
  .hamburger-menu {
    display: flex;
    padding-top: 88px;
  }
  .header-items {
    height: 72px;
    justify-content: end;
  }
  .header-items-item {
    margin-right: 18px;
  }
  .header-items-item-arrow--active {
    margin-right: 0px;
  }
  .header-items-item__logo {
    position: absolute;
    left: 16px;
  }
  .header-items-item__link {
    display: none;
  }
  .header-items-item-btn {
    display: none;
  }
  .header-items-item__mobile {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 24px;
    right: 16px;
    transition: all 0.3s;
  }
}
@media (max-width: 992px) {
  .music {
    display: none;
  }
  .social {
    top: 200px;
  }
  .essence {
    height: 549px;
    padding-top: 150px;
  }
  .essence::before {
    height: 444px;
  }
  .essence-bg__image {
    background-size: 1300px;
  }
  .essence-description__title {
    font-size: 48px;
  }
  .essence-description__valhalla {
    font-size: 32px;
  }
  .essence-description-data {
    top: -61px;
    right: -29px;
  }
  .essence-description-data__title {
    font-size: 14px;
  }
  .essence-description-data__desc {
    font-size: 14px;
  }
  .features {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .features-description__title {
    font-size: 40px;
  }
  .features-description__desc {
    width: 100%;
    font-size: 16px;
  }
  .features-items-item__title {
    font-size: 16px;
  }
  .theses__title {
    font-size: 40px;
  }
  .theses-cards-card--cat {
    height: 393px;
  }
  .theses-cards-card--launch {
    width: 336px;
    margin: 0 auto;
  }
  .theses-cards-card--titans {
    width: 336px;
    margin: 0 auto;
    margin-top: 16px;
  }
  .theses-cards-card__char-1 {
    height: 485px;
    left: -208px;
    bottom: -92px;
  }
  .theses-cards-card__char-2 {
    right: -47px;
    height: 245px;
    top: 10px;
  }
  .theses-cards-notification-eng-wrap-bottom__btn {
    width: 142px;
  }
  .theses-cards-notification-annotation {
    left: -169px;
  }
  .theses-parallax__earring-of-antharas {
    display: none;
  }
  .theses-parallax__ring {
    display: none;
  }
  .theses-parallax__zakens-earring {
    display: none;
  }
  .templates-header__title {
    text-align: center;
    font-size: 40px;
  }
  .templates-header__hint {
    display: none;
  }
  .templates-card {
    height: 310px;
    width: 303px;
    margin-right: 16px;
  }
  .templates-description-wrap {
    margin-top: 100px;
    height: auto;
  }
  .templates-description-wrap-buttons-button--pink {
    padding: 20px;
  }
  .templates-header-torn__top {
    display: none;
  }
  .templates-header-torn__bottom {
    display: none;
  }
  .templates-header-progress {
    background-size: 100%;
  }
  .templates-card__desc {
    font-size: 16px;
    width: 266px;
  }
  .templates-description {
    margin-top: 30px;
  }
  .templates-description__char {
    display: none;
    width: 310px;
    height: auto;
  }
  .templates-description__gnoma {
    opacity: 1;
    width: auto;
    height: 278px;
    bottom: 0;
  }
  .templates-description__leaf {
    bottom: -40px;
    width: 348px;
    height: 268px;
  }
  .tasks__title {
    font-size: 40px;
  }
  .memes__title {
    font-size: 40px;
  }
  .memes-container-content {
    display: none;
  }
  .roadmap-description__title {
    font-size: 40px;
  }
  .roadmap-description__desc {
    font-size: 16px;
  }
  .society-description__title {
    font-size: 40px;
  }
  .society-description__desc {
    font-size: 16px;
  }
  .society-cards {
    margin-top: 16px;
  }
  .society-cards-card {
    margin-top: 24px;
  }
  .forms-description__title {
    font-size: 40px;
  }
  .forms-description__desc {
    font-size: 16px;
  }
  .greetings {
    padding-bottom: 60px;
    font-family: Inter;
    margin-top: 16px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #fff;
  }
  .forms {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .roadmap-bg__image {
    background-position-x: -200px;
  }
  .tasks {
    overflow: visible;
  }
  .tasks-bg {
    height: auto;
    top: -100px;
    bottom: -62px;
  }
  .tasks-bg__image {
    background-size: 1600px;
    background-position: center left;
  }
  .tasks-bg__lights {
    top: 0;
    width: 1920px;
  }
  .essence-bg__image {
    background-size: 1450px;
  }
  .social {
    display: none;
  }
  .essence {
    padding-top: 173px;
    height: 621px;
  }
  .essence::before {
    height: 465px;
  }
  .essence-gift__desc {
    font-size: 14px;
  }
  .essence-description-data {
    right: -22px;
  }
  .features-items {
    margin-top: 35px;
  }
  .features-items-item {
    width: 256px;
  }
  .essence-gift-progress {
    width: 347px;
    height: 65px;
  }
  .essence-gift-progress-count {
    width: 94px;
    height: 41px;
  }
  .essence-gift-progress-count__number {
    font-weight: 600;
    font-size: 14px;
  }
  .essence-gift-progress-count__number-all {
    font-size: 14px;
  }
  .essence-gift-progress__image {
    width: 84px;
    height: 84px;
    right: -1px;
    top: -10.5px;
  }
  .essence-gift-progress__gradient {
    display: none;
  }
  .essence-gift-progress__scale {
    display: none;
  }
  .essence-gift-progress__gradient--adaptive {
    display: block;
    position: relative;
    z-index: 2;
    width: 105px;
    height: 37px;
  }
  .essence-gift-progress__scale--adaptive {
    display: block;
    position: relative;
    z-index: 1;
    width: 105px;
    height: 37px;
  }
  .essence-gift-progress-wrap {
    top: 13px;
  }
  .essence-gift-progress-wrap:after {
    width: 2px;
    height: 52px;
    right: -5.78px;
    top: -7.5px;
  }
  .essence-gift-progress-wrap--full {
    width: 105px;
  }
  .essence-gift-progress-step {
    margin-left: 3px;
    width: 2px;
    height: 37px;
  }
  .essence-gift-progress-step:nth-child(8) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(9) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(10) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(11) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(12) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(13) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(14) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(15) {
    display: none;
  }
  .essence-gift-progress-step:nth-child(16) {
    display: none;
  }
  .theses-cards-card {
    margin: 0 auto;
    width: 520px;
    height: 126px;
    margin-bottom: 16px;
  }
  .theses-cards-card__bg {
    top: 0;
    width: 100%;
    left: 0;
  }
  .theses-cards-card--cat {
    height: 268px;
    width: 520px;
  }
  .theses-cards-card__char--cat {
    height: 268px;
  }
  .theses-cards-card--girl {
    height: 268px;
    width: 520px;
  }
  .theses-cards-card__char--girl {
    height: 243px;
  }
  .theses-cards-card--dwarf {
    height: 268px;
    width: 520px;
  }
  .theses-cards-card__char--dwarf {
    height: 288px;
  }
  .theses-cards-card--launch {
    height: 268px;
    width: 520px;
  }
  .theses-cards-card--titans {
    height: 268px;
    width: 520px;
  }
  .theses-cards-card__char-1 {
    height: 344px;
    left: -129px;
    bottom: -92px;
  }
  .theses-cards-card__char-2 {
    right: -40px;
    height: 245px;
    top: -24px;
  }
  .theses-cards-notification {
    margin: 0 auto;
    margin-bottom: 44px;
    width: 520px;
    height: 116px;
  }
  .theses-cards-notification:before {
    bottom: -28px;
    width: 80%;
  }
  .theses-cards-notification:after {
    bottom: -14px;
    width: 90%;
  }
  .theses-cards-notification-bottom {
    margin-right: 0;
    align-self: start;
  }
  .theses-cards-notification-bottom__title {
    width: 100%;
  }
  .theses-cards-notification-bottom__image {
    margin-left: 0;
    margin-right: 14px;
  }
  .theses-cards-notification-eng-wrap-bottom__btn {
    width: 231px;
  }
  .theses-cards-notification-annotation {
    left: auto;
    top: -195px;
    height: auto;
    width: 350px;
    padding-bottom: 8px;
  }
  .theses-cards-notification-annotation-buttons {
    flex-direction: column;
  }
  .theses-cards-notification-annotation-buttons-button {
    width: 100%;
    margin-bottom: 8px;
  }
  .tasks-cards {
    flex-wrap: nowrap;
  }
  .tasks-cards-card {
    margin-right: 16px;
  }
  .tasks-container {
    display: flex;
    justify-content: start;
    overflow-x: scroll;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: 0;
    margin-left: 0;
  }
  .templates {
    padding-bottom: 80px;
  }
  .templates-description__gnoma {
    bottom: 10px;
    height: 316px;
  }
  .templates-description__leaf {
    bottom: 0;
    width: 375px;
    height: 247px;
  }
  .templates-description::after {
    bottom: 0;
    height: 200px;
  }
  .memes-container-description-awards {
    width: 100%;
  }
  .memes-container-description-buttons {
    justify-content: space-between;
    width: 100%;
  }
  .memes-container-description-buttons-button--yellow {
    width: 245px;
    margin-left: 0;
    margin-right: 0;
  }
  .memes-container-description-buttons-button--pink {
    width: 245px;
    margin-left: 0;
    margin-right: 0;
  }
  .society-cards-card {
    background-size: 517px;
  }
  .forms-content-registration {
    width: 517px;
    height: auto;
    padding: 30px 24px 30px 24px;
  }
  .forms-content-registration-form__input--head {
    width: 338px;
  }
  .forms-content-registration-form__desc {
    width: 82%;
  }
  .forms-content-participation {
    width: 517px;
    height: auto;
    padding: 30px 24px 30px 24px;
  }
  .forms-content-participation-form__input {
    width: 312px;
  }
  .forms-content-participation-form__desc {
    width: 82%;
  }
  .footer-wrap {
    padding: 24px 32px;
  }
  .footer-wrap-top {
    flex-direction: column;
  }
  .footer-wrap-top-level-emblem {
    margin-bottom: 24px;
  }
  .footer-wrap-bottom {
    flex-direction: column;
  }
  .footer-wrap-bottom-links {
    display: flex;
    flex-direction: column;
  }
  .footer-wrap-bottom-links__link {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 670px) {
  .essence-gift-progress {
    width: 347px;
  }
}
@media (max-width: 576px) {
  .header-items-item__logo {
    width: 94px;
    height: 40px;
  }
  .essence {
    padding-top: 270px;
    height: 633px;
  }
  .essence::before {
    height: 433px;
  }
  .essence-bg__image {
    background-image: url(../img/essence/bg.jpg);
    background-position-x: -841px;
    background-position-y: -36px;
    background-size: 1537px;
  }
  .essence-description__title {
    font-size: 34px;
  }
  .essence-description__valhalla {
    font-weight: 600;
    font-size: 24px;
    text-transform: none;
  }
  .essence-description-data {
    right: -1px;
    top: -57px;
  }
  .essence-gift__desc {
    width: 100%;
  }
  .essence-gift-btn {
    width: 347px;
    margin-bottom: 24px;
  }
  .features-description__title {
    font-size: 30px;
  }
  .features-items {
    margin-top: 24px;
  }
  .features-items-item {
    width: 172px;
    margin-bottom: 16px;
  }
  .theses__title {
    font-size: 30px;
  }
  .theses-cards-card {
    margin: 0 auto;
    width: 343px;
    height: 126px;
    margin-bottom: 16px;
  }
  .theses-cards-card--cat {
    height: 268px;
    width: 347px;
  }
  .theses-cards-card__char--cat {
    height: 268px;
  }
  .theses-cards-card--girl {
    height: 268px;
    width: 347px;
  }
  .theses-cards-card__char--girl {
    height: 243px;
  }
  .theses-cards-card--dwarf {
    height: 268px;
    width: 347px;
  }
  .theses-cards-card__char--dwarf {
    height: 288px;
  }
  .theses-cards-card--launch {
    height: 268px;
    width: 347px;
  }
  .theses-cards-card--titans {
    height: 268px;
    width: 347px;
  }
  .theses-cards-notification {
    margin: 0 auto;
    margin-bottom: 44px;
    width: 347px;
    height: 116px;
  }
  .theses-cards-notification:before {
    bottom: -28px;
  }
  .theses-cards-notification:after {
    bottom: -14px;
  }
  .theses-cards-notification-bottom__title {
    width: 254px;
  }
  .theses-cards-notification-bottom__image {
    margin-left: 0;
    margin-right: 14px;
  }
  .theses-cards-notification-eng {
    width: 347px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .theses-cards-notification-eng-wrap {
    width: 347px;
  }
  .theses-cards-notification-eng-wrap-bottom__btn {
    width: 148px;
  }
  .theses-cards-notification-eng-wrap-top-description__title {
    font-size: 16px;
  }
  .theses-cards-notification-eng-wrap-top__image {
    width: 41px;
    height: 41px;
  }
  .templates-header__title {
    font-size: 30px;
  }
  .templates-description-wrap-buttons {
    flex-direction: column;
  }
  .templates-description-wrap-buttons-button--yellow {
    width: 347px;
    margin-right: 0;
  }
  .templates-description-wrap-buttons-button--pink {
    width: 347px;
    margin-top: 24px;
  }
  .templates-description__leaf {
    bottom: 96px;
  }
  .templates-description__gnoma {
    bottom: 131px;
  }
  .templates-description::after {
    height: 255px;
    bottom: 85px;
  }
  .tasks__title {
    font-size: 30px;
  }
  .memes__title {
    font-size: 30px;
  }
  .memes-container-description-buttons {
    flex-direction: column;
    align-items: center;
  }
  .memes-container-description-buttons-button--yellow {
    width: 347px;
  }
  .memes-container-description-buttons-button--pink {
    width: 347px;
    margin-top: 16px;
  }
  .memes-container-description {
    width: 100%;
  }
  .memes-container-description__title {
    font-size: 22px;
  }
  .memes-container-description__desc {
    width: 100%;
  }
  .memes-container-description-awards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .memes-container-description-awards-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 24px;
    width: 100%;
    height: 64px;
    overflow: hidden;
    position: relative;
  }
  .memes-container-description-awards-container {
    display: flex;
    animation: horizontal-scroll-memes 9s linear infinite;
  }
  .roadmap-description__title {
    font-size: 30px;
  }
  .society-description__title {
    font-size: 30px;
  }
  .society-description__desc {
    margin-bottom: 16px;
  }
  .society-cards-card {
    width: 347px;
    margin: 0 auto;
    margin-top: 16px;
  }
  .society-cards__hint {
    width: 220px;
    height: 34px;
  }
  .society-cards-card__image {
    top: -27px;
    right: 0;
  }
  .forms-description__title {
    font-size: 30px;
  }
  .forms-content-registration {
    padding: 20px;
    width: 347px;
    height: auto;
  }
  .forms-content-registration__title {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
  .forms-content-registration-form__input::-moz-placeholder {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.45;
  }
  .forms-content-registration-form__input::placeholder {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.45;
  }
  .forms-content-registration-form-select {
    height: 47px;
  }
  .forms-content-registration-form__input {
    height: 47px;
  }
  .forms-content-registration-form__input--head {
    width: 176px;
  }
  .forms-content-registration-form__desc {
    font-size: 14px;
    width: 84%;
  }
  .forms-content-registration-form-btn {
    width: 308px;
  }
  .forms-content-registration-form-wrap__checkbox {
    cursor: pointer;
  }
  .forms-content-participation {
    padding: 20px;
    width: 347px;
    height: auto;
  }
  .forms-content-participation__title {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
  .forms-content-participation__step {
    margin-top: 18px;
    font-size: 16px;
    text-align: center;
  }
  .forms-content-participation-form__input {
    height: 47px;
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .forms-content-participation-form__input::-moz-placeholder {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.45;
  }
  .forms-content-participation-form__input::placeholder {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.45;
  }
  .forms-content-participation-form__button {
    width: 100%;
    margin-bottom: 18px;
  }
  .forms-content-participation-form__desc {
    margin-top: 18px;
    width: 278px;
  }
  .forms-content-participation-btn {
    width: 100%;
  }
  .forms-content-participation__desc {
    margin-top: 18px;
  }
  .forms-content-participation-form-wrap__checkbox {
    cursor: pointer;
  }
}
@media (max-width: 390px) {
  .templates-description__leaf {
    width: 100%;
  }
}



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

.essence-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.essence-video-bg__video {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.essence-video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 13, 34, 0.5); /* Настройте прозрачность по вкусу */
  z-index: 1;
}


    .video-container {
        position: relative;
        margin: 0 auto;
    }
    
    video#mainVideo {
        width: 100%;
        border: 1px solid #FFCC3C;
        border-radius: 32px;
        display: block;
    }
    
    .overlay {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
.time-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.time-btn .bg-gray {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20%;
    border: 2px solid #FFCC3C;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.time-btn .bg-color {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20%;
    border: 2px solid #FFCC3C;
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.time-btn.active .bg-color {
    opacity: 1;
}

.time-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 204, 60, 0.7);
}

.time-btn .skill-name {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFCC3C;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
    width: max-content;
    max-width: 150px;
    text-align: center;
}

.time-btn:hover .skill-name {
    opacity: 1;
}

    .hint-text {
        color: #FFCC3C;
        font-size: 14px;
        text-align: center;
        margin-top: 5px;
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    }

.skills-description-container {
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}

.skill-description {
    display: none;
    color: white;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill-description.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-skills {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 200px;
}
/* Для мобильных устройств */
@media (max-width: 430px) {
    .time-btn .skill-name {
        bottom: calc(100% + 5px);
        font-size: 12px;
    }
}
@media (max-width: 430px) {
  .overlay {
    position: absolute;
    bottom: -160px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  video#mainVideo {
	margin-bottom: 30px;
  }
  
.hint-text {
	padding-bottom: 40px;
}
  
.time-btn {
    width: 45px;
    height: 45px;
}
.skills-description-container {
    position: absolute;
	bottom: -87px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}
}

.rosevein_title {
    font-family: Inter;
    font-weight: 900;
    font-size: 60px;
    line-height: 120%;
    color: transparent;
    background: linear-gradient(to bottom, rgb(255 216 65) 30%, rgba(245, 131, 16, 100) 100%), url(../bs18/img/btn-bg-yellow2.jpg);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    filter: drop-shadow(2px 3px 2px rgba(43, 34, 14, 0.71));
}