@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background-color: #000000;
}

body.open {
  overflow: hidden;
}
body.open .join-container {
  background-image: none;
}

ul {
  list-style-type: none;
}

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

h1 {
  font-size: inherit;
}

.join-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 44px 16px 52px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  color: #000000;
  background-color: #ffffff;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  line-height: 105%;
  font-weight: 700;
  cursor: pointer;
}
.join-btn .join-arrow {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  background-image: url("../assets/arrow-join.svg");
}

.subtitle {
  padding: 7px 12px;
  color: #ffffff;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 105%;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #212121;
}

.title {
  color: #ffffff;
  font-size: 68px;
  line-height: 105%;
  font-weight: 700;
}

.text {
  color: #ffffff;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}

@media (max-width: 768px) {
  .title {
    font-size: 32px;
    line-height: 105%;
    font-weight: 700;
  }
  .text {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
  }
}
.join-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/join-background.png");
}

.join {
  position: relative;
  padding-top: 16px;
  margin: 0 auto;
  max-width: 1170px;
  background-repeat: no-repeat;
  background-position: center 153px;
  background-size: 968px 947px;
  background-image: url("../assets/join-section-background.png");
}
.join-title {
  max-width: 1294px;
  color: #ffffff;
  font-size: 60px;
  line-height: 105%;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
.join-title .join-btn {
  margin: 32px auto 0 auto;
}
.join-subtitle {
  color: #ffffff;
  font-size: 18px;
  line-height: 105%;
  font-weight: 800;
  text-transform: uppercase;
}
.join-text {
  color: #90a2af;
  font-size: 14px;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  margin: 8px 0 28px 0;
}

.join-section {
  padding: 89px 0 127px 0;
  display: flex;
  gap: 189px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.join-section-video {
  position: relative;
  border-radius: 20px;
  width: 270px;
  height: 152px;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.join-section-video .preview {
  border-radius: 20px;
  width: 100%;
}
.join-section-video .play {
  width: 80px;
  position: absolute;
  cursor: pointer;
}
.join-section-video iframe {
  width: 100%;
  border-radius: 20px;
}
.join-section-content {
  max-width: 337px;
  font-weight: 700;
  line-height: 150%;
}
.join-section-content.mobile {
  display: none;
  max-width: 100%;
  background-color: #000000;
}

@media (max-width: 1200px) {
  .join {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 992px) {
  .join-section {
    padding: 24px 0 390px 0;
  }
  .join-section-content {
    display: none;
  }
  .join-section-content.mobile {
    display: block;
    padding: 20px 20px 60px 20px;
    text-align: center;
  }
  .join-section-content.mobile iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .join-section-video {
    width: 100%;
    height: auto;
  }
  .join {
    background-size: contain;
    background-position: center 296px;
  }
  .join-title {
    font-size: 46px;
  }
  .join-title .join-btn {
    margin: 28px auto 0 auto;
  }
}
@media (max-width: 768px) {
  .join {
    background-position: center 292px;
    background-size: contain;
    background-image: url("../assets/join-section-background-m.webp");
  }
  .join-title {
    font-size: 28px;
    line-height: 120%;
    font-weight: 600;
  }
}
.header {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  gap: 12px;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.header-top {
  display: flex;
  gap: normal;
  align-items: normal;
  justify-content: space-between;
  flex-direction: row;
}
.header.open {
  background-color: #000;
}
.header.open .header-menu-btn {
  background-image: url("../assets/close-menu.svg");
}
.header-logo {
  display: block;
  width: 195px;
  height: 58px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image: url("../assets/logo.svg");
}
.header-nav {
  width: 100%;
  display: flex;
  gap: 78px;
  align-items: normal;
  justify-content: space-between;
  flex-direction: row;
}
.header-nav .join-btn {
  display: none;
}
.header-list {
  width: 100%;
  padding: 20px 32px;
  background-color: #0c0d11;
  color: #90a2af;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: normal;
  justify-content: space-between;
  flex-direction: row;
  font-size: 14px;
  line-height: 105%;
  font-weight: 700;
}
.header-list li {
  cursor: pointer;
}
.header-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/assets/open-menu.svg");
}
.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1200px) {
  .header {
    gap: 20px;
    padding: 12px 20px;
  }
  .header-top .join-btn {
    display: none;
  }
  .header.open .header-nav {
    transform: translateX(0);
  }
  .header-logo {
    width: 148px;
    height: 44px;
    background-size: cover;
  }
  .header-nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1;
    top: 68px;
    left: 0;
    padding: 20px;
    gap: 20px;
    background-color: #000;
    justify-content: flex-start;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-nav .join-btn {
    display: flex;
  }
  .header-list {
    gap: 32px;
    flex-direction: column;
    font-size: 16px;
    padding: 0;
    border-radius: 0;
    background-color: #000;
    text-align: center;
  }
  .header-menu-btn {
    display: block;
  }
  .header .join-btn {
    width: auto;
    justify-content: center;
  }
}
.language-switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
}

.language-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2c2c2c;
  transition: 0.6s;
  border-radius: 45px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 32px;
  width: 32px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(55, 52, 236);
  transition: 0.6s;
  border-radius: 50%;
}

input:checked + .slider:before {
  transform: translateX(40px);
}

.language-label {
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 14px;
  line-height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.en {
  left: 10px;
}

.ru {
  right: 10px;
}/*# sourceMappingURL=critical.css.map */