/* Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  padding-left: 1em;
}

button {
  font-size: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

input {
  font-size: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
}
input[type=file] {
  position: absolute;
  display: none;
  opacity: 0;
  z-index: -1;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type=number], input[type=number]:hover, input[type=number]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus {
  outline: none;
}

/* Variables */
/* Mixins */
/* Fonts */
@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 400;
}
@font-face {
  src: url("../fonts/xirod/xirod-Regular.ttf") format("truetype");
  font-family: "Xirod";
  font-style: "normal";
  font-weight: 400;
}
body, html {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 139%;
  color: #FFF;
}

.color_black {
  color: #000000;
}
.color_dark {
  color: #01030A;
}
.color_white {
  color: #FFF;
}
.color_gray {
  color: rgba(255, 255, 255, 0.4);
}

.font-xirod {
  font-family: Xirod;
}

.title {
  font-size: 48px;
  font-weight: 400;
  line-height: 97%;
  letter-spacing: -0.06em;
}
.title.font-xirod {
  letter-spacing: -0.04em;
}
.title.flex {
  display: inline-flex;
  align-items: flex-end;
  gap: 14px;
}
.title.flex .icon {
  transform: translateY(-15%);
}

/* Icons */
.icon {
  display: inline-block;
  margin: 0 !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon.arrow {
  display: flex;
  width: 25px;
  height: 25px;
  padding: 7px;
  background-color: #FFF;
  border-radius: 25px;
}
.icon.arrow svg {
  width: 100%;
  height: 100%;
}
.icon.arrow svg path {
  stroke: #01030A;
}
.icon.arrow_white {
  background-color: #01030A;
}
.icon.arrow_white svg path {
  stroke: #FFF;
}
.icon.arrow:hover svg {
  animation: arrow 0.7s ease 0s 1;
}
.icon.arrow-select {
  width: 13px;
  height: 8px;
  background: url("../img/icons/arrow-select.svg") no-repeat center/contain;
}

/* Socials */
.socials {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
}
.socials a {
  display: block;
  width: auto;
  height: 20px;
}
.socials a img {
  width: auto;
  height: 100%;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee__wrapper {
  display: flex;
  width: 100%;
}
.marquee__panel {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.marquee__item {
  position: relative;
  width: auto;
  height: 46px;
  margin-right: 92px;
}
.marquee__item-image {
  position: relative;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Input */
.input {
  /* Base */
}
.input-base {
  position: relative;
}
.input-base .input, .input-base .textarea {
  font-family: inherit;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #FFF;
  width: 100%;
  height: 47px;
  padding: 14px 15px;
  border: 1px solid #FFF;
  border-radius: 10px;
  outline: none;
  background: none;
  transition: 0.5s;
}
.input-base .input::-moz-placeholder, .input-base .textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.input-base .input::placeholder, .input-base .textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.input-base .input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.input-base.invalid .input {
  color: red;
  border-color: red;
}
.input-base .textarea {
  height: auto;
  resize: none;
}
.input-base .icon {
  position: absolute;
  top: 20px;
  right: 15px;
  pointer-events: none;
  transition: 0.5s;
}
.input-base .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transform: translateY(-10px);
}
.input-base .options__body {
  width: 100%;
  height: 100%;
  padding: 0px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #FFF;
  border-top: none;
}
.input-base .options__item {
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding: 5px 15px;
  transition: 0.5s;
  cursor: pointer;
}
.input-base .options__item:hover {
  color: #FFF;
}
.input-select .input {
  cursor: pointer;
  transition: 0.5s;
}
.input-select .input:focus {
  border-radius: 10px 10px 0 0;
}
.input-select.active .icon {
  transform: rotateZ(180deg);
}
.input-select.active .options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

/* Animation */
@keyframes arrow {
  0% {
    transform: translate(0%, 0%);
  }
  48% {
    transform: translate(100%, -100%);
  }
  52% {
    transform: translate(-100%, 100%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes swipe-text {
  0% {
    transform: translate(0%, 0%);
  }
  48% {
    transform: translate(0%, -100%);
  }
  52% {
    transform: translate(0%, 100%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
body {
  background: #01030A;
}

.page {
  position: relative;
}
.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #01030A;
  z-index: 100;
  transition: 0.8s linear;
  visibility: hidden;
  opacity: 0;
}
.page.preloader::before {
  visibility: visible;
  opacity: 1;
}

.mobile {
  display: none;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.location .icon {
  vertical-align: middle;
  display: inline-block;
  width: 8px;
  height: 11px;
  margin-right: 12px !important;
  background: url("../img/icons/location.svg") no-repeat center/contain;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1045px;
}
.columns .column {
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.logo__icon {
  width: 60px;
  height: auto;
}
.logo__text {
  width: 120px;
  height: auto;
}
.logo__text-inline {
  line-height: 80%;
  display: inline-block;
  width: auto;
  transform: translateY(-8%);
}

.label {
  white-space: nowrap;
  display: inline-block;
  padding: 7px 17px 10px 17px;
  border-radius: 10px;
  border: 1px solid #FFF;
}

.banner {
  position: relative;
  width: 100%;
  height: 562px;
  margin-bottom: 115px;
  border-radius: 30px;
}
.banner .image,
.banner .video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.banner .video {
  overflow: hidden;
  will-change: transform;
}
.banner .video video {
  position: absolute;
  left: -56%;
  width: 210%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.banner .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: inherit;
}
.banner_title .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.banner_title .wrapper .titles .title:first-child {
  margin-bottom: 15px;
}
.banner_footer .wrapper {
  padding-top: 90px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 10%;
  transition: 0.5s;
}
.banner_footer .wrapper .title {
  font-size: 64px;
  line-height: 100%;
  text-align: center;
}
.banner_footer .wrapper .btn-wrapper {
  padding: 50px 100px;
}
.banner_footer .wrapper .btn {
  position: relative;
  width: 151px;
  height: 151px;
}
.banner_footer .wrapper .btn__circle, .banner_footer .wrapper .btn__text, .banner_footer .wrapper .btn__arrow {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.banner_footer .wrapper .btn__circle {
  border-radius: 151px;
  border: 1px solid #FFF;
}
.banner_footer .wrapper .btn__text {
  color: #FFF;
  text-align: center;
  transition: 0.3 opacity;
}
.banner_footer .wrapper .btn__arrow {
  opacity: 0;
  transition: 0.3 opacity;
}
.banner_footer .wrapper .btn__arrow svg {
  width: 30px;
  height: 30px;
  transform: rotate(-135deg);
}
.banner_footer .wrapper .btn__arrow_static {
  opacity: 1;
}
.banner_footer .wrapper .btn__arrow_static svg {
  transform: rotate(0deg);
}
.banner_footer .form-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.banner_footer .form {
  display: grid;
  grid-template-areas: "position backers" "twitter message" "telegram message" "question button";
  grid-auto-columns: 240px;
  grid-auto-rows: 47px;
  gap: 10px;
}
.banner_footer .form__input {
  width: 100%;
  height: 100%;
}
.banner_footer .form__input .input-base, .banner_footer .form__input .input, .banner_footer .form__input .textarea {
  height: 100%;
}
.banner_footer .form__input_position {
  grid-area: position;
}
.banner_footer .form__input_position input::-moz-placeholder {
  color: #FFF !important;
  opacity: 1 !important;
}
.banner_footer .form__input_position input::placeholder, .banner_footer .form__input_position input::-moz-placeholder, .banner_footer .form__input_position input::-webkit-input-placeholder, .banner_footer .form__input_position input:-ms-input-placeholder {
  color: #FFF !important;
  opacity: 1 !important;
}
.banner_footer .form__input_backers {
  grid-area: backers;
}
.banner_footer .form__input_twitter {
  grid-area: twitter;
}
.banner_footer .form__input_telegram {
  grid-area: telegram;
}
.banner_footer .form__input_question {
  grid-area: question;
}
.banner_footer .form__input_question-1 {
  grid-area: question-1;
}
.banner_footer .form__input_message {
  grid-area: message;
}
.banner_footer .form__input_button {
  grid-area: button;
}
.banner_footer .form .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 14px 15px;
  background: #FFF;
  border-radius: 10px;
}
.banner_footer .form .btn__text {
  color: #01030A;
}
.banner_footer .form .btn:hover .btn__icon svg {
  animation: arrow 0.7s ease 0s 1;
}
.banner_footer .form .btn:hover .btn__text {
  animation: swipe-text 0.7s ease 0s 1;
}
.banner_footer .form .question {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}
.banner_footer .form .question svg {
  width: 21px;
  height: 21px;
}
.banner_footer .form_kol {
  grid-template-areas: "position position message message" "twitter twitter message message" "telegram telegram message message" "question question-1 button button";
  grid-auto-columns: 115px;
}
.banner_footer .notice {
  position: relative;
  max-width: 240px;
  padding: 13px;
  padding-top: 70px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}
.banner_footer .notice__close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 21px;
  height: 23px;
}
.banner_footer .notice__close svg {
  width: 100%;
  height: 100%;
}
.banner_footer .notice__text {
  font-size: 13px;
  line-height: 125%;
}

*[form-step] {
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

*[form-active] {
  opacity: 1;
  visibility: visible;
}

.header {
  margin-bottom: 110px;
  padding-top: 20px;
}
.header .columns .column {
  display: flex;
}
.header .nav {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.header .nav__link {
  position: relative;
  display: block;
  padding-left: 21px;
}
.header .nav__link::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  display: block;
  width: 9px;
  height: 9px;
  background: transparent;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.header .nav__link.active::before {
  background: #FFF;
  border-color: #FFF;
}
.header .anchor {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}
.header .anchor__icon {
  display: flex;
  width: 11px;
  height: 11px;
  margin-right: 13px;
}
.header .anchor__icon svg {
  width: 100%;
  height: 100%;
}
.header .anchor__icon svg path {
  stroke: #FFF;
}
.header .anchor:hover .anchor__icon svg {
  animation: arrow 0.7s ease 0s 1;
}
.header .anchor:hover .anchor__text {
  animation: swipe-text 0.7s ease 0s 1;
}
.header .socials {
  margin-left: auto;
}

.introduction {
  margin-bottom: 115px;
}
.introduction .columns {
  grid-template-columns: 1fr 606px;
}
.introduction .text:nth-child(1) {
  margin-bottom: 22px;
}
.introduction .text:nth-child(2) {
  margin-bottom: 50px;
}
.introduction .promotion {
  width: 100%;
  padding: 40px;
  padding-top: 140px;
  border-radius: 25px;
  background: #1A1A1A;
}
.introduction .promotion .title {
  font-size: 28px;
  margin-bottom: 20px;
}
.introduction .promotion .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
  margin-bottom: 0;
}

.info {
  margin-bottom: 115px;
}
.info .list {
  display: flex;
  justify-content: space-between;
}
.info .list .item {
  position: relative;
  display: inline-block;
  padding-top: 9px;
  padding-left: 27px;
  padding-bottom: 11px;
}
.info .list .item__number {
  margin-bottom: 14px;
}
.info .list .item::before, .info .list .item::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(112.65deg, #6E69A3 -61.63%, #4D70C0 7.83%, #A594D2 56.26%, #EDB887 95.98%);
}
.info .list .item::before {
  left: 0;
  width: 1px;
}
.info .list .item::after {
  left: -2.5px;
  width: 5px;
  filter: blur(5px);
}

.gallery {
  margin-bottom: 170px;
}
.gallery .grid {
  display: grid;
  grid-template-areas: "item-1 item-2 item-3 item-3" "item-1 item-2 item-4 item-4";
  grid-auto-rows: 275px;
  gap: 10px;
}
.gallery .grid .item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.gallery .grid .item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
}
.gallery .grid .item__text {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.04em;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.gallery .grid .item__text span {
  background: linear-gradient(121.6deg, #6E69A3 -143.26%, #4D70C0 -36.81%, #A594D2 37.41%, #EDB887 98.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gallery .grid .item:nth-child(1) {
  grid-area: item-1;
}
.gallery .grid .item:nth-child(2) {
  grid-area: item-2;
}
.gallery .grid .item:nth-child(3) {
  grid-area: item-3;
}
.gallery .grid .item:nth-child(3) .item__text {
  top: 30px;
  bottom: auto;
}
.gallery .grid .item:nth-child(4) {
  grid-area: item-4;
}

.total-audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 170px;
}
.total-audience .text {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 6px;
}
.total-audience .big-text {
  font-size: 200px;
  line-height: 97%;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.total-audience .image {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.projects {
  margin-bottom: 115px;
}
.projects .list {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.projects .list .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 342px;
  min-width: 342px;
  height: 342px;
  padding: 40px;
  border-radius: 25px;
  background: url("../img/grad_white.webp") no-repeat bottom/cover;
}
.projects .list .item__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.projects .list .item__bottom {
  width: 100%;
}
.projects .list .item .logo {
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
.projects .list .item .links {
  display: flex;
  gap: 11px;
}
.projects .list .item .links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #FFF;
  opacity: 0.3;
}
.projects .list .item .links a svg {
  width: 100%;
  height: 100%;
}
.projects .list .item .name {
  font-size: 32px;
  line-height: 97%;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.projects .list .item:nth-child(1) {
  background-image: url("../img/grad_green.webp");
}
.projects .list .item:nth-child(2) {
  background-image: url("../img/grad_yellow.webp");
}
.projects .list .item:nth-child(3) {
  background-image: url("../img/grad_pink.webp");
}
.projects .list .item:nth-child(4) {
  background-image: url("../img/grad_blue.webp");
}

.partners {
  margin-bottom: 115px;
}
.partners .wrapper {
  display: flex;
  gap: 70px;
  width: 100%;
  padding: 25px 0;
  padding-left: 20px;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
.partners .wrapper .title {
  min-width: 350px;
}

.team {
  margin-bottom: 115px;
}
.team .wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.team .wrapper .label {
  text-transform: lowercase;
  opacity: 0.3;
}
.team .wrapper .logo {
  align-items: flex-start;
  filter: brightness(10) grayscale(1);
}
.team .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 10px;
}
.team .list .item {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  min-width: 308px;
  height: 238px;
  padding: 40px;
  background: #1A1A1A;
  border-radius: 25px;
}
.team .list .item__top {
  display: flex;
  gap: 11px;
}
.team .list .item .avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  pointer-events: none;
  opacity: 0.3;
}
.team .list .item .link,
.team .list .item .avatar-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 12px;
  border: 1px solid #FFF;
  opacity: 0.3;
}
.team .list .item .link svg,
.team .list .item .avatar-small svg {
  width: 21px;
  height: 21px;
}
.team .list .item .avatar-small {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.3);
}
.team .list .item .name {
  font-size: 32px;
  line-height: 97%;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.team .list .item .description {
  white-space: nowrap;
}

.footer {
  padding-bottom: 20px;
}
.footer .wrapper {
  display: flex;
}
.footer .wrapper .col {
  flex: 1;
  display: flex;
  align-items: center;
}
.footer .wrapper .col:nth-child(1) {
  justify-content: flex-start;
}
.footer .wrapper .col:nth-child(2) {
  justify-content: center;
}
.footer .wrapper .col:nth-child(3) {
  justify-content: flex-end;
}
.footer .location {
  margin-right: 11px;
}
.footer .socials {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.footer .socials a {
  width: 17px;
  height: 17px;
}
.footer .socials a img {
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  /* TYPOGRAPHY */
  body, html {
    font-size: 1.1111vw;
  }
  .title {
    font-size: 3.3333vw;
  }
  .title.flex {
    gap: 0.9722vw;
  }
  /* COMPONENTS */
  .icon.arrow {
    width: 1.7361vw;
    height: 1.7361vw;
    padding: 0.4861vw;
    background-size: 0.625vw;
    border-radius: 1.7361vw;
  }
  .icon.arrow-select {
    width: 0.9028vw;
    height: 0.5556vw;
  }
  .socials {
    gap: 0.6944vw;
  }
  .socials a {
    height: 1.3889vw;
  }
  .marquee__item {
    height: 3.1944vw;
    margin-right: 6.3889vw;
  }
  /* Input */
  .input-base .input, .input-base .textarea {
    height: 3.2639vw;
    padding: 0.9722vw 1.0417vw;
    border-radius: 0.6944vw;
  }
  .input-base .input:focus ~ .options, .input-base .textarea:focus ~ .options {
    transform: translateY(0vw);
  }
  .input-base .icon {
    top: 1.3889vw;
    right: 1.0417vw;
  }
  .input-base .options {
    transform: translateY(-0.6944vw);
  }
  .input-base .options__body {
    padding: 0vw;
    border-radius: 0 0 0.6944vw 0.6944vw;
  }
  .input-base .options__item {
    padding: 0.3472vw 1.0417vw;
  }
  .input-select .input:focus {
    border-radius: 0.6944vw 0.6944vw 0 0;
  }
  /* LAYOUT */
  .container {
    max-width: 100vw;
    padding-left: 1.3889vw;
    padding-right: 1.3889vw;
  }
  .location .icon {
    width: 0.5556vw;
    height: 0.7639vw;
    margin-right: 0.8333vw !important;
  }
  .columns {
    grid-template-columns: 1fr 72.5694vw;
  }
  .logo {
    gap: 1.25vw;
  }
  .logo__icon {
    width: 4.1667vw;
  }
  .logo__text {
    width: 8.3333vw;
  }
  .label {
    padding: 0.4861vw 1.1806vw 0.6944vw 1.1806vw;
    border-radius: 0.6944vw;
  }
  .banner {
    height: 39.0278vw;
    margin-bottom: 7.9861vw;
    border-radius: 2.0833vw;
  }
  .banner .wrapper {
    padding: 2.7778vw;
  }
  .banner_title .wrapper .titles .title:first-child {
    margin-bottom: 1.0417vw;
  }
  .banner_footer .wrapper {
    padding-top: 6.25vw;
  }
  .banner_footer .wrapper .title {
    font-size: 4.4444vw;
  }
  .banner_footer .wrapper .btn-wrapper {
    padding: 3.4722vw 6.9444vw;
  }
  .banner_footer .wrapper .btn {
    width: 10.4861vw;
    height: 10.4861vw;
  }
  .banner_footer .wrapper .btn__circle {
    border-radius: 10.4861vw;
  }
  .banner_footer .wrapper .btn__arrow svg {
    width: 2.0833vw;
    height: 2.0833vw;
  }
  .banner_footer .form {
    grid-auto-columns: 16.6667vw;
    grid-auto-rows: 3.2639vw;
    gap: 0.6944vw;
  }
  .banner_footer .form__input .input-base, .banner_footer .form__input .input, .banner_footer .form__input .textarea {
    height: 100%;
  }
  .banner_footer .form .btn {
    padding: 0.9722vw 1.0417vw;
    border-radius: 0.6944vw;
  }
  .banner_footer .form .question {
    border-radius: 0.6944vw;
  }
  .banner_footer .form .question svg {
    width: 1.4583vw;
    height: 1.4583vw;
  }
  .banner_footer .form_kol {
    grid-auto-columns: 7.9861vw;
  }
  .banner_footer .notice {
    max-width: 16.6667vw;
    padding: 0.9028vw;
    padding-top: 4.8611vw;
    border-radius: 0.6944vw;
  }
  .banner_footer .notice__close {
    top: 0.9028vw;
    right: 0.9028vw;
    width: 1.4583vw;
    height: 1.5972vw;
  }
  .banner_footer .notice__text {
    font-size: 0.9028vw;
  }
  .header {
    margin-bottom: 7.6389vw;
    padding-top: 1.3889vw;
  }
  .header .nav {
    gap: 3.3333vw;
  }
  .header .nav__link {
    padding-left: 1.4583vw;
  }
  .header .nav__link::before {
    top: 0.4167vw;
    width: 0.625vw;
    height: 0.625vw;
    border-radius: 0.625vw;
  }
  .header .anchor__icon {
    width: 0.7639vw;
    height: 0.7639vw;
    margin-right: 0.9028vw;
  }
  .introduction {
    margin-bottom: 7.9861vw;
  }
  .introduction .columns {
    grid-template-columns: 1fr 42.0833vw;
  }
  .introduction .text:nth-child(1) {
    margin-bottom: 1.5278vw;
  }
  .introduction .text:nth-child(2) {
    margin-bottom: 3.4722vw;
  }
  .introduction .promotion {
    padding: 2.7778vw;
    padding-top: 9.7222vw;
    border-radius: 1.7361vw;
  }
  .introduction .promotion .title {
    font-size: 1.9444vw;
    margin-bottom: 1.3889vw;
  }
  .introduction .promotion .text {
    margin-bottom: 0;
  }
  .info {
    margin-bottom: 7.9861vw;
  }
  .info .list .item {
    padding-top: 0.625vw;
    padding-left: 1.875vw;
    padding-bottom: 0.7639vw;
  }
  .info .list .item__number {
    margin-bottom: 0.9722vw;
  }
  .gallery {
    margin-bottom: 11.8056vw;
  }
  .gallery .grid {
    grid-auto-rows: 19.0972vw;
    gap: 0.6944vw;
  }
  .gallery .grid .item {
    border-radius: 2.0833vw;
  }
  .gallery .grid .item__text {
    font-size: 1.8056vw;
    bottom: 2.0833vw;
  }
  .gallery .grid .item:nth-child(3) .item__text {
    top: 2.0833vw;
    bottom: auto;
  }
  .total-audience {
    margin-bottom: 11.8056vw;
  }
  .projects {
    margin-bottom: 7.9861vw;
  }
  .projects .list {
    gap: 0.6944vw;
  }
  .projects .list .item {
    width: 23.75vw;
    min-width: 23.75vw;
    height: 23.75vw;
    padding: 2.7778vw;
    border-radius: 1.7361vw;
  }
  .projects .list .item .logo {
    width: 4.5833vw;
    height: 4.5833vw;
  }
  .projects .list .item .links {
    gap: 0.7639vw;
  }
  .projects .list .item .links a {
    width: 2.3611vw;
    height: 2.3611vw;
    padding: 0.5556vw;
    border-radius: 0.5556vw;
  }
  .projects .list .item .name {
    font-size: 2.2222vw;
    margin-bottom: 0.9722vw;
  }
  .partners {
    margin-bottom: 7.9861vw;
  }
  .partners .wrapper {
    gap: 4.8611vw;
    width: 100%;
    padding: 1.7361vw 0;
    padding-left: 1.3889vw;
  }
  .partners .wrapper .title {
    min-width: 24.3056vw;
  }
  .team {
    margin-bottom: 7.9861vw;
  }
  .team .wrapper {
    margin-bottom: 2.7778vw;
  }
  .team .list {
    gap: 0.6944vw;
  }
  .team .list .item {
    min-width: 21.3889vw;
    height: 16.5278vw;
    padding: 2.7778vw;
    border-radius: 1.7361vw;
  }
  .team .list .item__top {
    gap: 0.7639vw;
  }
  .team .list .item .link,
  .team .list .item .avatar-small {
    width: 3.5417vw;
    height: 3.5417vw;
    border-radius: 0.8333vw;
  }
  .team .list .item .link svg,
  .team .list .item .avatar-small svg {
    width: 1.4583vw;
    height: 1.4583vw;
  }
  .team .list .item .name {
    font-size: 2.2222vw;
    margin-bottom: 0.9722vw;
  }
  .footer {
    padding-bottom: 1.3889vw;
  }
  .footer .location {
    margin-right: 0.7639vw;
  }
  .footer .socials {
    gap: 0.7639vw;
  }
  .footer .socials a {
    width: 1.1806vw;
    height: 1.1806vw;
  }
}
@media (max-width: 600px) {
  /* TYPOGRAPHY */
  body, html {
    font-size: 14px;
    line-height: 148%;
  }
  .title {
    font-size: 30px;
  }
  .title.font-xirod {
    letter-spacing: -0.02em;
  }
  .title.flex {
    gap: 10px;
  }
  /* COMPONENTS */
  .icon.arrow {
    width: 18px;
    height: 18px;
    padding: 4px;
    background-size: 6px;
    border-radius: 18px;
  }
  .marquee__item {
    height: 36px;
    margin-right: 30px;
  }
  .input-base .input, .input-base .textarea {
    width: 100%;
    height: 40px;
    padding: 12px 15px;
  }
  .input-base .icon {
    top: 17px;
    right: 15px;
  }
  .input-base .options__body {
    display: flex;
    justify-content: space-between;
    padding: 0px;
  }
  .input-base .options__item {
    text-align: center;
    padding: 15px;
  }
  /* LAYOUT */
  .mobile {
    display: block;
  }
  .desctop {
    display: none !important;
  }
  .container {
    max-width: 456px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .location .icon {
    width: 7px;
    height: 9px;
    margin-right: 7px !important;
  }
  .columns {
    display: block;
  }
  .logo_main {
    margin-bottom: 30px;
  }
  .label {
    font-size: 16px;
  }
  .banner {
    height: 641px;
    border-radius: 25px;
  }
  .banner .image {
    -o-object-position: top;
       object-position: top;
  }
  .banner .video video {
    top: -26%;
    left: -50%;
    width: 200%;
    height: 152%;
    transform: rotateZ(90deg);
  }
  .banner .wrapper {
    padding: 20px 25px;
  }
  .banner_title .wrapper {
    justify-content: flex-end;
  }
  .banner_title .wrapper .label {
    margin-bottom: 24px;
  }
  .banner_title .wrapper .titles {
    width: 100%;
  }
  .banner_title .wrapper .titles .title {
    width: 100%;
  }
  .banner_title .wrapper .titles .title:first-child {
    margin-bottom: 10px;
  }
  .banner_title .wrapper .titles .title:last-child {
    display: block;
  }
  .banner_title .wrapper .titles .title:last-child span {
    display: block;
    width: 100%;
    text-align: left;
  }
  .banner_title .wrapper .titles .title:last-child span:last-child {
    text-align: right;
  }
  .banner_footer {
    height: 180vw;
    max-height: 730px;
  }
  .banner_footer .wrapper {
    gap: 0;
    padding-top: 50px;
  }
  .banner_footer .wrapper .title {
    font-size: 36px;
  }
  .banner_footer .wrapper .btn-wrapper {
    padding: 30px 60px;
  }
  .banner_footer .wrapper .btn {
    width: 133px;
    height: 133px;
  }
  .banner_footer .wrapper .btn__circle {
    border-radius: 133px;
  }
  .banner_footer .wrapper .btn__arrow svg {
    width: 25px;
    height: 25px;
  }
  .banner_footer .form-wrapper {
    padding: 20px 25px;
  }
  .banner_footer .form {
    position: relative;
    grid-template-areas: "position position" "twitter telegram" "backers question" "message message" "message message";
    grid-auto-columns: calc(50% - 5px);
    grid-auto-rows: 40px;
  }
  .banner_footer .form__input .input-base, .banner_footer .form__input .input, .banner_footer .form__input .textarea {
    height: 100%;
  }
  .banner_footer .form__input_message {
    padding-right: 50px;
  }
  .banner_footer .form__input_button {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 90px;
  }
  .banner_footer .form .btn {
    justify-content: center;
    padding: 0;
  }
  .banner_footer .form .btn:hover .btn__icon svg {
    animation: none;
  }
  .banner_footer .form .btn:hover .btn__text {
    animation: none;
  }
  .banner_footer .form .question svg {
    width: 18px;
    height: 18px;
  }
  .banner_footer .form_kol {
    grid-template-areas: "position position" "twitter telegram" "question question-1" "message message" "message message";
  }
  .banner_footer .notice {
    max-width: 100%;
    padding: 15px;
    padding-top: 70px;
  }
  .banner_footer .notice__close {
    top: 11px;
    right: 11px;
    width: 20px;
    height: 22px;
  }
  .banner_footer .notice__text {
    font-size: 14px;
    padding-right: 30px;
  }
  .header .welcome {
    display: none;
  }
  .header .nav {
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  .header .nav__link {
    padding-left: 14px;
  }
  .header .nav__link::before {
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 7px;
  }
  .header .location {
    display: none;
  }
  .introduction .title {
    margin-bottom: 30px;
  }
  .introduction .text:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .introduction .promotion {
    padding: 25px;
    padding-top: 100px;
  }
  .introduction .promotion .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .introduction .promotion .text {
    align-items: flex-end;
    margin-bottom: 0;
  }
  .info .list {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .info .list .item {
    width: 50%;
    padding-top: 4px;
    padding-left: 23px;
    padding-bottom: 6px;
    padding-right: 1em;
  }
  .info .list .item__number {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .gallery {
    margin-bottom: 120px;
  }
  .gallery .grid {
    display: block;
  }
  .gallery .grid .item {
    height: 58vw;
    border-radius: 25px;
  }
  .gallery .grid .item__text {
    font-size: 20px;
    bottom: 25px;
  }
  .gallery .grid .item:nth-child(2) {
    height: 130vw;
  }
  .gallery .grid .item:nth-child(3) .item__text {
    top: 25px;
    bottom: auto;
  }
  .gallery .grid .item:not(:last-child) {
    margin-bottom: 10px;
  }
  .total-audience {
    margin-bottom: 100px;
  }
  .total-audience .image {
    width: 100%;
    height: auto;
  }
  .projects {
    margin-bottom: 190px;
  }
  .projects .list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .projects .list .item {
    width: 100%;
    min-width: 100%;
    height: 221px;
    padding: 25px;
  }
  .projects .list .item .logo {
    width: 59px;
    height: 59px;
  }
  .projects .list .item .name {
    font-size: 20px;
    margin-bottom: 11px;
  }
  .partners .wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 0;
  }
  .partners .wrapper .title {
    position: absolute;
    bottom: calc(100% + 43px);
    left: calc(50% - 228px + 15px);
    min-width: auto;
  }
  .team .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .team .wrapper .label {
    order: 2;
    text-transform: initial;
    text-align: center;
    font-size: 14px;
    width: 100%;
    padding: 18px;
  }
  .team .wrapper .logo {
    order: 1;
    margin-bottom: 30px;
  }
  .team .list .item {
    width: 100%;
    min-width: 100%;
    height: 193px;
    padding: 25px;
  }
  .team .list .item .link {
    width: 33px;
    height: 33px;
    border-radius: 8px;
  }
  .team .list .item .link svg {
    width: 16px;
    height: 16px;
    transform: translateX(-1px);
  }
  .team .list .item .avatar-small {
    width: 72px;
    height: 72px;
    margin-left: auto;
  }
  .team .list .item .name {
    font-size: 20px;
    line-height: 97%;
    margin-bottom: 10px;
  }
  .team .list .item .description {
    white-space: normal;
  }
  .footer {
    padding-bottom: 20px;
  }
  .footer .wrapper {
    display: flex;
  }
  .footer .wrapper .col {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer .wrapper .col:nth-child(1) {
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer .wrapper .col:nth-child(2) {
    display: none;
  }
  .footer .wrapper .col:nth-child(3) {
    align-items: flex-end;
    justify-content: space-between;
  }
  .footer .logo {
    margin-bottom: 14px;
  }
  .footer .location {
    margin-right: 0;
  }
  .footer .socials {
    margin-bottom: 14px;
  }
}
@media (max-width: 456px) {
  .partners .wrapper .title {
    left: 15px;
  }
}