* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

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

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  text-size-adjust: 100%;
}

input,
textarea,
button {
  font-family: inherit;
  color: inherit;
}

input::-ms-clear {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

a:active {
  color: black;
}

ul,
li {
  list-style: none;
  padding: 0px 0px 0px 0px;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "NM-Light";
  src: url("../fonts/NeueMachina-Light.woff") format("woff");
}

@font-face {
  font-family: "NM-Regular";
  src: url("../fonts/NeueMachina-Regular.otf") format("opentype");
}

@font-face {
  font-family: "NM-Medium";
  src: url("../fonts/NeueMachina-Medium.woff") format("woff");
}

@font-face {
  font-family: "NM-Bold";
  src: url("../fonts/NeueMachina-Bold.woff") format("woff");
}

@font-face {
  font-family: "P-Light";
  src: url("../fonts/Panton-Light.woff") format("woff");
}

@font-face {
  font-family: "P-ExtraLight";
  src: url("../fonts/Panton-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "P-Regular";
  src: url("../fonts/Panton-Regular.woff") format("woff");
}

@font-face {
  font-family: "P-SemiBold";
  src: url("../fonts/Panton-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "P-Bold";
  src: url("../fonts/Panton-Bold.woff") format("woff");
}

body {
  background: #020205;
  color: #f2f2f2;
  font-family: "P-Light";
  font-size: 16px;
}

main {
  position: relative;
  overflow-x: clip;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100000;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: rgba(2, 2, 5, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, z-index 0.3s ease 0s;
  opacity: 0;
  transform-origin: center;
}

.popup img {
  max-width: 1500px;
  width: 100%;
  height: 100%;
  display: none;
}

.popup img.active {
  display: block;
}

.popup.active {
  transform: scale(1);
  opacity: 1;
  z-index: 100000;
}

.popup__close {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
}

.popup__close::before {
  transform: rotate(45deg);
}

.popup__close::after {
  transform: rotate(-45deg);
}

._container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  font-family: "NM-Medium";
  font-size: 60px;
}

.wave {
  display: inline-flex;
  flex-direction: column;
  width: min-content;
  position: relative;
  padding: 0 3px;
}

.wave svg {
  width: 100%;
  position: absolute;
  bottom: -30px;
  left: 0;
}

.star {
  animation: starAnimate 10s infinite linear;
}

.incomplete-star {
  animation: incompleteStarAnimate 10s infinite linear;
}

@keyframes starAnimate {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes incompleteStarAnimate {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 780px) {
  ._container {
    max-width: 1380px;
    padding-left: calc(20px + 80 * (100vw - 360px) / 420);
    padding-right: calc(20px + 80 * (100vw - 360px) / 420);
  }
  .wave {
    padding: 0 3px;
  }
  .wave svg {
    bottom: -25px;
    left: 0;
  }
  .title {
    font-size: 55px;
  }
}

@media (max-width: 700px) {
  ._container {
    padding: 0 20px;
  }
  .popup__close {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 630px) {
  .title {
    font-size: 48px;
  }
}

@media (max-width: 420px) {
  .title {
    font-size: 36px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.header__body {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 31px;
}

.header__body-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
}

.header__body-line svg {
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.menu__link {
  font-size: 20px;
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
  transition: color 0.3s ease 0s;
}

.menu__link:hover {
  color: #aaff00;
}

.menu__link-mobile {
  display: none;
}

@media (max-width: 1000px) {
  .header__logo {
    width: 300px;
  }
  .menu__list {
    gap: 20px;
  }
}

@media (max-width: 780px) {
  .header__logo {
    width: 350px;
  }
  .header__body {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .header__body-line {
    display: none;
  }
  .menu__list {
    gap: 20px;
  }
  .menu__link {
    display: none;
  }
  .menu__link-mobile {
    display: block;
  }
}

@media (max-width: 550px) {
  .header__logo {
    width: calc(200px + 80 * (100vw - 360px) / 190);
  }
  .menu__link-mobile svg {
    width: 25px;
  }
}

@media (max-width: 450px) {
  .menu__list {
    gap: 10px;
  }
}

.home {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: clip;
}

.home__bg {
  position: absolute;
  right: 0px;
  top: 0;
  z-index: -1;
}

.home__content {
  padding-top: 275px;
}

.home__title {
  font-family: "NM-Medium";
  font-size: 90px;
  font-weight: 500;
  line-height: 110%;
}

.home__text {
  max-width: 817px;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 1px;
  margin-top: 100px;
  font-family: "P-ExtraLight";
}

.home__btn {
  width: 280px;
  height: 76.444px;
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "NM-Light";
  font-size: 24px;
  font-weight: 300;
  color: #aaff00;
  border-radius: 6px;
  border: 1px solid #aaff00;
}

.home__controll {
  margin-top: 165px;
  width: 100%;
  text-align: center;
  animation: fingerAnimate 3s infinite linear;
}

.home__star:nth-child(2) {
  position: absolute;
  right: 190px;
  top: 325px;
}

.home__star:nth-child(3) {
  position: absolute;
  right: 572px;
  top: 504px;
}

.home__star:nth-child(4) {
  position: absolute;
  right: 236px;
  top: 712px;
}

@media (max-width: 1150px) {
  .home__title {
    font-size: 70px;
  }
  .home__text {
    max-width: 600px;
  }
  .home__star:nth-child(3) {
    top: 450px;
  }
}

@media (max-width: 870px) {
  .home__bg img {
    width: 726px;
    height: 820px;
    object-fit: cover;
  }
  .home__title br {
    display: none;
  }
  .home__text {
    margin-top: 80px;
  }
  .home__star:nth-child(2) {
    top: 227px;
    right: 4px;
    width: 26px;
    height: 26px;
  }
  .home__star:nth-child(3) {
    top: 222px;
    left: -8px;
    right: auto;
    width: 38px;
    height: 38px;
  }
  .home__star:nth-child(4) {
    top: 654px;
    right: 20px;
    width: 75px;
    height: 76px;
  }
}

@media (max-width: 630px) {
  .home__title {
    font-size: 48px;
  }
  .home__text {
    max-width: 85%;
    font-size: 18px;
  }
  .home__btn {
    width: 220px;
    height: 50px;
    margin-top: 56px;
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .home__title {
    font-size: 36px;
  }
  .home__text {
    margin-top: 50px;
  }
  .home__content {
    padding-top: 200px;
  }
}

@keyframes fingerAnimate {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 5px);
  }
  50% {
    transform: translate(0, 0px);
  }
  75% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0px);
  }
}

.works {
  width: 100%;
  height: 100%;
  margin-top: 214px;
  position: relative;
  overflow-x: clip;
}

.works__points {
  position: absolute;
  top: -80px;
  left: 0px;
}

.works__points-2 {
  position: absolute;
  top: 3320px;
  right: 0;
}

.works__star {
  position: absolute;
}

.works__star:nth-child(3) {
  top: 1598px;
  right: 200px;
}

.works__star:nth-child(4) {
  top: 1980px;
  left: 0px;
}

.works__star:nth-child(5) {
  top: 2488px;
  right: 0px;
}

.works__star:nth-child(6) {
  top: 2806px;
  left: 268px;
}

.works__title {
  margin-left: 6px;
}

.works__list {
  width: 100%;
  margin-top: 95px;
  display: flex;
}

.works__link {
  width: 100%;
  height: 85.909px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #383838;
  color: #383838;
  font-size: 24px;
  font-family: "NM-Light";
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.works__link.active {
  border-bottom: 2px solid #aaff00;
  color: #aaff00;
}

.works__link:hover {
  color: #aaff00;
}

.works__promotion {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #aaff00;
  margin-top: 150px;
  padding: 26px 20px;
}

.works__promotion img {
  position: absolute;
}

.works__promotion img:nth-child(1) {
  top: 0;
  left: 30px;
}

.works__promotion img:nth-child(3) {
  right: 0;
  bottom: 0;
}

.works__promotion p {
  max-width: 540px;
  color: #020205;
  line-height: 150%;
  letter-spacing: 0.8px;
  font-size: 16px;
  font-family: "P-Regular";
  font-weight: 400;
}

.works__promotion p span {
  font-family: "P-Bold";
  font-weight: 700;
}

.works__text {
  margin: 50px 0;
  font-family: "P-Light";
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.works__items {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  grid-template-areas: "first first third third" "second second third third" "fourth fourth fifth fifth" "fourth fourth sixth sixth" "seventh seventh eighth eighth";
}

.works__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #aaff00;
  color: #020205;
}

.works__item.large {
  flex-direction: column;
}

.works__item.large img {
  width: 100%;
  height: auto;
}

.works__item.reverse {
  flex-direction: row-reverse;
}

.works__item img {
  width: 50%;
  height: 100%;
}

.works__item:nth-child(1) {
  grid-area: first;
}

.works__item:nth-child(2) {
  grid-area: second;
}

.works__item:nth-child(3) {
  grid-area: third;
}

.works__item:nth-child(4) {
  grid-area: fourth;
}

.works__item:nth-child(5) {
  grid-area: fifth;
}

.works__item:nth-child(6) {
  grid-area: sixth;
}

.works__item:nth-child(7) {
  grid-area: seventh;
}

.works__item:nth-child(8) {
  grid-area: eighth;
}

.works__item-content {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  font-family: "NM-Regular";
  font-weight: 400;
}

.works__item-title {
  font-size: 24px;
}

.works__item-text {
  font-family: "P-Regular";
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.8px;
  font-weight: 400;
}

.works__item-btn {
  display: flex;
  padding: 15px 25px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #aaff00;
  background: #020205;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s ease 0s;
}

.works__item-btn:hover {
  background: #222229;
}

.works__items-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.works__item-2 img {
  width: 100%;
  height: 100%;
}

.works__item-2 svg {
  width: 100%;
  height: 100%;
}

.works__item-2.mobile {
  display: none;
}

.works__footer {
  margin-top: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.works__footer svg:nth-child(2) {
  width: 77px;
  height: 105.577px;
  flex-shrink: 0;
}

.tab {
  display: none;
}

.tab.active {
  display: grid;
}

@media (max-width: 1150px) {
  .works__points-2 {
    top: 4200px;
  }
  .works__star {
    position: absolute;
  }
  .works__star:nth-child(3) {
    top: 2256px;
    right: 16px;
  }
  .works__star:nth-child(4) {
    top: 2008px;
    left: 0px;
  }
  .works__star:nth-child(5) {
    top: 3575px;
    right: 0px;
  }
  .works__star:nth-child(6) {
    top: 3225px;
    left: 30px;
  }
  .works__items {
    display: none;
    flex-direction: column;
    align-items: center;
  }
  .works__items.active {
    display: flex;
  }
  .works__item {
    max-width: 580px;
    height: 100%;
  }
  .works__item.large {
    flex-direction: row-reverse;
  }
  .works__item.large:nth-child(4) > .works__item-content {
    padding: 30px 24px 30px 30px;
  }
  .works__item.large picture {
    width: 50%;
    height: 100%;
  }
  .works__item.large img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1080px) {
  .works__promotion img:nth-child(3) {
    display: none;
  }
}

@media (max-width: 780px) {
  .works__points-2 {
    top: 4280px;
    right: -209px;
  }
  .works__title {
    margin-left: 0px;
  }
  .works__list {
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .works__link {
    width: 50%;
  }
  .works__promotion {
    margin-top: 80px;
  }
  .works__items-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .works__item-2.mobile {
    display: block;
  }
  .works__item:nth-child(1) {
    order: 1;
  }
  .works__item:nth-child(2) {
    order: 2;
  }
  .works__item:nth-child(3) {
    order: 8;
  }
  .works__item:nth-child(4) {
    order: 6;
  }
  .works__item:nth-child(5) {
    order: 3;
  }
  .works__item:nth-child(6) {
    order: 4;
  }
  .works__item:nth-child(7) {
    order: 5;
  }
  .works__item:nth-child(8) {
    order: 7;
  }
  .works__footer {
    margin-top: 170px;
  }
  .works__footer svg:nth-child(2) {
    width: 51px;
  }
}

@media (max-width: 600px) {
  .works__points-2 {
    top: 6280px;
  }
  .works__promotion {
    margin-top: 50px;
  }
  .works__item {
    max-width: 350px;
    flex-direction: column;
  }
  .works__item img {
    width: 100%;
  }
  .works__item.large {
    flex-direction: column;
  }
  .works__item.large:nth-child(4) > .works__item-content {
    padding: 20px;
  }
  .works__item.large picture {
    width: 100%;
  }
  .works__item.reverse {
    flex-direction: column;
  }
  .works__item-content {
    gap: 15px;
    padding: 20px;
  }
  .works__footer {
    margin-top: 70px;
  }
}

@media (max-width: 480px) {
  .works {
    margin-top: 100px;
  }
  .works__link {
    font-size: 20px;
  }
  .works__text {
    font-size: 14px;
  }
  .works__promotion p {
    font-size: 14px;
  }
  .works__footer {
    gap: 30px;
  }
}

@media (max-width: 421px) {
  .works__points-2 {
    top: 6070px;
  }
}

.founder {
  width: 100%;
  height: 100%;
}

.founder__container {
  display: flex;
  margin-top: 200px;
}

.founder__item {
  display: flex;
  flex-direction: column;
  text-align: right;
  width: 100%;
}

.founder__item img {
  width: 100%;
}

.founder__title {
  margin-top: 90px;
}

.founder__content {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  font-family: "P-ExtraLight";
}

.founder__content-title {
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 2px;
}

.founder__content-subtitle {
  margin-top: 30px;
  color: #aaff00;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

.founder__content-text {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.founder__content-footer {
  margin-top: 120px;
}

.founder__content-footer-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

.founder__content-footer-box {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder__content__items {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.founder__content-item {
  font-family: "NM-Light";
  font-size: 20px;
  font-weight: 300;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  white-space: nowrap;
}

.founder__content-item.green {
  color: #af0;
  border-bottom: 1px solid #af0;
}

@media (max-width: 1000px) {
  .founder__container {
    flex-direction: column;
    align-items: center;
  }
  .founder__item:nth-child(1) {
    max-width: 70%;
  }
}

@media (max-width: 780px) {
  .founder__container {
    margin-top: 100px;
  }
  .founder__item:nth-child(1) {
    max-width: 438px;
  }
  .founder__content {
    font-family: "P-Light";
  }
}

@media (max-width: 610px) {
  .founder__container {
    margin-top: 70px;
  }
  .founder__content {
    margin-top: 60px;
  }
  .founder__content-title {
    font-size: 32px;
  }
  .founder__content-subtitle {
    font-size: 18px;
  }
  .founder__content-text {
    gap: 20px;
    font-size: 18px;
    margin-top: 40px;
  }
  .founder__content-footer {
    margin-top: 40px;
  }
  .founder__content-footer-text {
    font-size: 18px;
  }
  .founder__content-footer-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: right;
    margin-top: 40px;
    gap: 15px;
  }
  .founder__content__items {
    display: contents;
  }
  .founder__content__items:nth-child(1) > .founder__content-item:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .founder__content-item {
    border: none !important;
    text-decoration: underline;
    width: 100%;
    justify-content: flex-end;
    white-space: normal;
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .founder__content-footer-box {
    display: flex;
    text-align: right;
    flex-direction: column;
  }
  .founder__content__items {
    display: contents;
  }
  .founder__content__items:nth-child(1) > .founder__content-item:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .founder__content-item {
    border: none !important;
    text-decoration: underline;
    width: 100%;
    justify-content: flex-end;
    white-space: normal;
  }
}

.team {
  width: 100%;
  height: 100%;
  overflow-x: clip;
  position: relative;
  margin-top: 210px;
}

.team__points {
  position: absolute;
  top: -80px;
  left: 0px;
}

.team__points-2 {
  position: absolute;
  bottom: 197px;
  right: 0;
}

.team__star {
  position: absolute;
}

.team__star:nth-child(9) {
  top: 5573px;
  left: 0;
}

.team__star:nth-child(10) {
  top: 5977px;
  right: 136px;
}

.team__star:nth-child(11) {
  top: 6423px;
  left: 222px;
}

.team__star:nth-child(12) {
  top: 6945px;
  right: 355px;
}

.team__cards {
  display: flex;
  gap: 206px 20px;
  margin-top: 170px;
  flex-wrap: wrap;
  justify-content: center;
}

.team__card {
  max-width: 380px;
  width: 100%;
  text-align: center;
  font-family: "P-ExtraLight";
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team__card-img {
  position: relative;
}

.team__card-img img {
  width: 100%;
}

.team__card-img img:nth-child(2) {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.team__card-img svg {
  position: absolute;
  left: -140px;
  top: -100px;
  z-index: -1;
}

.team__card-title {
  margin-top: 55px;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 2px;
}

.team__card-subtitle {
  margin: 30px 0;
  color: #af0;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

.team__card-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

@media (max-width: 1219px) {
  .team__cards {
    gap: 80px 20px;
  }
}

@media (max-width: 819px) {
  .team__points {
    top: -70px;
    left: -138px;
  }
  .team__points-2 {
    bottom: 132px;
    right: -206px;
  }
  .team__cards {
    gap: 80px 14.82px;
  }
  .team__cards > .team__card:nth-child(2) {
    height: fit-content;
  }
  .team__card {
    max-width: 281.59px;
  }
  .team__card-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
  }
  .team__card-img svg {
    width: 525px;
    top: -160px;
    left: -120px;
  }
  .team__star {
    position: absolute;
    display: none;
  }
}

@media (max-width: 776px) {
  .team__card {
    max-width: 380px;
  }
}

@media (max-width: 610px) {
  .team__cards {
    gap: 50px 14.82px;
  }
  .team__card-title {
    font-size: 32px;
  }
  .team__card-subtitle {
    font-size: 18px;
  }
  .team__card-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .team {
    margin-top: 100px;
  }
  .team__points-2 {
    right: -356px;
  }
  .team__cards {
    margin-top: 140px;
  }
  .team__card-title {
    margin-top: 30px;
  }
  .team__card-subtitle {
    margin: 20px 0;
  }
}

.service {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: clip;
  margin-top: 310px;
}

.service__points {
  position: absolute;
  left: 0;
  top: -67px;
}

.service__star {
  position: absolute;
}

.service__star:nth-child(2) {
  top: 726px;
  left: 118px;
}

.service__star:nth-child(3) {
  top: 1032px;
  left: 738px;
}

.service__star:nth-child(4) {
  top: 1205px;
  left: 500px;
}

.service__star:nth-child(5) {
  display: none;
}

.service__butterfly {
  position: absolute;
  top: 1264px;
  left: 0;
}

.service__points-2 {
  position: absolute;
  right: 0;
  bottom: -130px;
  z-index: -1;
}

.service__title {
  padding: 0px 20px 0px 24px;
}

.service__tickers {
  position: relative;
  width: 100%;
  height: 205px;
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service__ticker {
  position: absolute;
  width: 2777px;
  height: 60px;
  transform: rotate(3deg);
  background: #af0;
  color: #020205;
  font-family: "NM-Bold";
  font-size: 39px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service__ticker span {
  font-family: "NM-Medium";
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.service__ticker:nth-child(1) {
  filter: drop-shadow(0px 15px 40px rgba(2, 2, 5, 0.8));
  z-index: 1;
}

.service__ticker:nth-child(2) {
  transform: rotate(-2deg) translateY(2px);
}

.service__content {
  margin-top: 105px;
  position: relative;
}

.service__content svg:nth-child(1) {
  width: 100%;
  height: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

.service__content svg:nth-child(2) {
  display: none;
}

.service__content-items {
  display: none;
  flex-direction: column;
}

.service__content-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service__content-item svg {
  display: block !important;
  max-width: 376.398px !important;
  max-height: 324.295px !important;
  width: 100% !important;
  height: 100% !important;
  left: auto !important;
  transform: translate(0, 0) !important;
}

.service__content-item.green .service__content-text {
  color: #000;
}

.service__content-text {
  position: absolute;
  color: #af0;
  text-align: center;
  font-family: "NM-Medium";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  gap: 15px;
}

.service__content-text span:nth-child(1) {
  font-family: "P-Light";
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

.service__content-text span:nth-child(2) {
  font-size: 30px;
}

.service__text {
  color: #af0;
  font-family: "P-ExtraLight";
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 1px;
  max-width: 1180px;
  padding: 0 20px;
  margin: 200px auto 0 auto;
}

@media (max-width: 1250px) {
  .service__content svg:nth-child(1) {
    width: 120%;
  }
}

@media (max-width: 1200px) {
  .service__ticker {
    font-size: 40px;
  }
  .service__title {
    padding: 0 20px;
  }
}

@media (max-width: 780px) {
  .service {
    margin-top: 180px;
  }
  .service__points {
    left: -148px;
    top: -75px;
  }
  .service__points-2 {
    right: -149px;
  }
  .service__star:nth-child(2) {
    top: 700px;
    left: -11px;
  }
  .service__star:nth-child(3) {
    top: 410px;
    left: auto;
    right: 186px;
  }
  .service__star:nth-child(4) {
    top: 1190px;
    left: auto;
    right: 7px;
  }
  .service__star:nth-child(5) {
    display: block;
    top: 1800px;
    left: 146px;
  }
  .service__butterfly {
    top: 1874px;
    left: -38px;
  }
  .service__title {
    padding: 0 100px;
  }
  .service__text {
    padding: 0 100px;
  }
  .service__content {
    margin-top: 57px;
  }
  .service__content svg:nth-child(1) {
    display: none;
  }
  .service__content svg:nth-child(2) {
    display: block;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .service__star:nth-child(5) {
    top: 1660px;
  }
  .service__butterfly {
    top: 1720px;
  }
  .service__title {
    padding: 0 20px;
  }
  .service__text {
    padding: 0 20px;
  }
  .service__content svg:nth-child(2) {
    height: auto;
  }
}

@media (max-width: 650px) {
  .service {
    margin-top: 100px;
  }
  .service__content svg:nth-child(2) {
    display: none;
  }
  .service__butterfly {
    display: none;
  }
  .service__content-items {
    display: flex;
  }
  .service__content-item:nth-child(1) {
    order: 1;
  }
  .service__content-item:nth-child(2) {
    order: 2;
    margin: -1px 0;
  }
  .service__content-item:nth-child(3) {
    order: 4;
    margin: -1px 0;
  }
  .service__content-item:nth-child(4) {
    order: 3;
  }
  .service__content-item:nth-child(5) {
    order: 5;
  }
  .service__content-item:nth-child(6) {
    order: 6;
    margin: -1px 0;
  }
  .service__content-item:nth-child(7) {
    order: 8;
    margin: -1px 0;
  }
  .service__content-item:nth-child(8) {
    order: 7;
  }
  .service__text {
    margin: 150px auto 0 auto;
  }
  .service__text br {
    display: none;
  }
  .service__ticker {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .service__tickers {
    margin-top: 40px;
  }
  .service__content {
    margin-top: 40px;
  }
  .service__text {
    margin: 100px auto 0 auto;
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .service__content-text {
    font-size: 32px;
  }
}

.clients {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 286px;
  overflow-x: clip;
}

.clients__points {
  position: absolute;
  right: 0;
  top: 23px;
}

.clients__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.clients__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients__title {
  width: 100%;
  text-align: right;
}

.clients__cards {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 1773px;
  width: 100%;
  margin: 240px auto 0 57px;
}

.clients__cards > .clients__card:nth-child(1) {
  animation: floatCard1 6s ease-in-out infinite;
}

.clients__cards > .clients__card:nth-child(2) {
  margin-left: auto;
  transform: translate(0, -70px);
  animation: floatCard2 6s ease-in-out infinite;
}

.clients__cards > .clients__card:nth-child(3) {
  margin-left: 233px;
  margin-right: auto;
  transform: translate(0, -120px);
  animation: floatCard3 6s ease-in-out infinite;
}

.clients__card {
  padding: 40px;
  border-radius: 6px;
  border-top: 1px solid #af0;
  border-right: 1px solid #af0;
  border-bottom: 30px solid #af0;
  border-left: 1px solid #af0;
  background: rgba(2, 2, 5, 0.1);
  backdrop-filter: blur(15px);
  max-width: 860px;
  width: 100%;
  max-height: 350px;
  height: 100%;
  flex-shrink: 0;
  font-family: "P-ExtraLight";
}

.clients__card-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

.clients__card-text span {
  color: #af0;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
  cursor: pointer;
}

.clients__card-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.clients__card-name {
  color: #f2f2f2;
  font-family: "P-SemiBold";
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: 1.2px;
  display: flex;
  flex-direction: column;
}

.clients__card-name span {
  color: #af0;
  font-family: "P-ExtraLight";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 1px;
}

@media (max-width: 1880px) {
  .clients__cards {
    margin: 240px auto 0 auto;
    padding: 0 57px;
  }
}

@media (max-width: 1400px) {
  .clients__cards {
    gap: 20px;
    align-items: center;
  }
  .clients__card {
    transform: translate(0, 0) !important;
    margin: 0 !important;
  }
}

@media (max-width: 1000px) {
  .clients__card {
    max-height: 100%;
  }
}

@media (max-width: 780px) {
  .clients {
    margin-top: 153px;
  }
  .clients__points {
    right: -274px;
  }
  .clients__cards {
    margin-top: 140px !important;
    padding: 0 20px;
  }
  .clients__card {
    padding: 27px;
    max-width: 580px;
  }
  .clients__bg img {
    object-fit: none;
    width: auto;
    height: auto;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .clients {
    margin-top: 100px;
  }
  .clients__cards {
    margin-top: 100px !important;
  }
  .clients__card {
    border-bottom: 20px solid #af0;
    padding: 15px;
  }
  .clients__card-text {
    font-size: 18px;
  }
  .clients__card-name {
    font-size: 20px;
  }
}

@media (max-width: 466px) {
  .clients__title span svg {
    bottom: 0;
    position: relative;
  }
}

@media (max-width: 420px) {
  .clients__title span svg {
    bottom: -25px;
    position: absolute;
  }
}

@media (max-width: 355px) {
  .clients__title span svg {
    bottom: 0;
    position: relative;
  }
}

@keyframes floatCard1 {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(30px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes floatCard2 {
  0% {
    transform: translatey(-70px);
  }
  50% {
    transform: translatey(-90px);
  }
  100% {
    transform: translatey(-70px);
  }
}

@keyframes floatCard3 {
  0% {
    transform: translatey(-120px);
  }
  50% {
    transform: translatey(-100px);
  }
  100% {
    transform: translatey(-120px);
  }
}

.sponsors {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: clip;
  margin-top: 299px;
}

.sponsors__points {
  position: absolute;
  left: 0;
  top: -64px;
}

.sponsors__content {
  margin-top: 137px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sponsors__item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 780px) {
  .sponsors__points {
    left: -156px;
  }
  .sponsors__content {
    margin-top: 125px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .sponsors {
    margin-top: 100px;
  }
  .sponsors__content {
    margin-top: 80px;
  }
}

.write {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: clip;
  margin-top: 280px;
}

.write__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.write__points {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.write__line-mobile {
  display: none;
  width: fit-content;
  margin: 140px auto;
}

.write__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-family: "NM-Medium";
}

.write__title svg {
  margin-top: 15px;
}

.write__title p {
  text-align: center;
  font-weight: 500;
}

.write__title p span {
  color: #020205;
  font-weight: 500;
  height: fit-content;
  display: inline-flex;
  position: relative;
}

.write__title p span::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 229px;
  height: 38px;
  background: #aaff00;
  bottom: 3px;
  left: 0px;
}

.write__content {
  margin-top: 135px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  font-family: "NM-Light";
}

.write__btn {
  border-radius: 6px;
  background: #af0;
  color: #020205;
  text-align: center;
  font-size: 30px;
  display: flex;
  width: 280px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s ease 0s;
}

.write__btn:hover {
  background: #97df08;
}

.write__links {
  display: flex;
  gap: 45px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.write__link {
  cursor: pointer;
  transition: transform 0.3s ease 0s;
}

@media (any-hover: hover) {
  .write__link:hover {
    transform: scale(1.2);
  }
}

.write__text {
  color: #f2f2f2;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 190%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.write__text span:nth-child(1) {
  color: #af0;
  line-height: 190%;
}

.write__text span:nth-child(2) {
  color: #020205;
  font-size: 20px;
  line-height: 190%;
  width: fit-content;
  position: relative;
}

.write__text span:nth-child(2)::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 4px);
  height: 22px;
  background: #aaff00;
  bottom: 6px;
  left: 0px;
}

.write__footer {
  width: 100%;
  height: 170px;
  margin-top: 324px;
  background: rgba(2, 2, 5, 0.7);
  display: flex;
  align-items: center;
}

.write__footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.write__footer-list {
  display: flex;
  gap: 64px;
}

.write__footer-link {
  color: #f2f2f2;
  font-family: "P-ExtraLight";
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s ease 0s;
}

.write__footer-link:hover {
  color: #aaff00;
}

@media (max-width: 1215px) {
  .write__title svg {
    margin-top: 0;
  }
}

@media (max-width: 963px) {
  .write__points {
    left: -200px;
  }
  .write__title svg {
    display: none;
  }
  .write__footer {
    margin-top: 144px;
  }
  .write__footer-list {
    gap: 40px;
  }
}

@media (max-width: 780px) {
  .write {
    margin-top: 0;
  }
  .write__bg {
    transform: translate(-50%, 0);
    left: 50%;
  }
  .write__points {
    transform: translate(-50%, 0);
    left: calc(50% - 300px);
    top: auto;
    bottom: 266px;
  }
  .write__line-mobile {
    display: block;
  }
  .write__title p span::after {
    width: calc(100% + 1px);
    height: 37px;
  }
  .write__footer-container {
    justify-content: center;
  }
  .write__footer-list {
    display: none;
  }
}

@media (max-width: 630px) {
  .write__line-mobile {
    margin: 80px auto;
  }
  .write__title p span::after {
    height: 31px;
  }
  .write__btn {
    width: 250px;
    height: 70px;
    font-size: 24px;
  }
  .write__links {
    margin-bottom: 40px;
  }
  .write__text {
    font-size: 24px;
  }
  .write__footer {
    margin-top: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .write__content {
    margin-top: 80px;
  }
  .write__line-mobile {
    margin: 60px auto;
  }
  .write__btn {
    width: 200px;
    height: 60px;
  }
  .write__text span:nth-child(2) {
    font-size: 18px;
  }
  .write__footer {
    margin-top: 40px;
  }
}

@media (max-width: 420px) {
  .write__title p span::after {
    height: 23px;
  }
}