@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inter:300,regular,600,700,800,900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

a {
  color: inherit;
}

[light] {
  transition: 0.3s;
}
[light] .wrapper {
  background-color: #fff;
  color: #000;
}
[light] .wrapper .header__burger::before,
[light] .wrapper .header__burger::after,
[light] .wrapper .header__burger span {
  background-color: #000;
}
[light] .wrapper .header__top.active .header__link {
  color: #fff;
}
[light] .wrapper .header__burger.active::before,
[light] .wrapper .header__burger.active::after,
[light] .wrapper .header__burger.active span {
  background-color: #fff;
}
[light] .wrapper .header__top {
  background-color: #fff;
  font-weight: 600;
  opacity: 0.8;
}
[light] .wrapper .header__top .header__login:hover {
  color: #000;
}
[light] .wrapper .header__main {
  color: #fff;
}
[light] .wrapper .introduction__link {
  background-color: #000;
  color: #fff;
}
[light] .wrapper .introduction__title {
  color: #000;
}
[light] .wrapper .introduction__hover {
  background-color: #fff;
  opacity: 0.7;
}
[light] .wrapper .everything__box-img {
  background-color: #1EE1B3;
}
[light] .wrapper .player {
  color: #fff;
  background-color: #2A2320;
}
[light] .wrapper .player .player__button button {
  background-color: transparent;
}
[light] .wrapper .users {
  background-color: #3A322F;
  color: #fff;
}
[light] .wrapper .users .users__link {
  background-color: #000;
  color: #fff;
}
[light] .wrapper .clothing {
  color: #fff;
}
[light] .wrapper .clothing .swiper-button-next::after, [light] .wrapper .clothing .swiper-button-prev::after {
  color: #000;
}
[light] .wrapper .clothing .clothing__img img {
  opacity: 1 !important;
}
[light] .wrapper .clothing__container .swiper-button-next.swiper-button-disabled, [light] .wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}
[light] .wrapper .standart {
  background-color: #fff;
}
[light] .wrapper .standart .standart__spoiler-text {
  color: #000;
}
[light] .wrapper .product .product__link {
  background-color: #000;
  color: #fff;
}
[light] .wrapper .nvidia {
  color: #fff;
}
[light] .wrapper .zozosuit, [light] .wrapper .footer {
  background-color: #09090C;
  color: #fff;
}
[light] .wrapper .popup .popup__content {
  background-color: #fff;
}
[light] .wrapper .popup .popup__close::after,
[light] .wrapper .popup .popup__close::before {
  background-color: #000;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  background-color: #08080C;
  color: #fff;
}

.container {
  margin: 0 auto;
  max-width: 1390px;
  height: 100%;
  padding: 0 15px;
}

.none {
  display: none;
}

.main {
  flex: 1 1 auto;
}

body {
  background-color: #08080C;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

body.lock {
  overflow: hidden;
}

.header {
  background: url("../img/header__background.png") center center no-repeat;
  background-size: cover;
  height: 100vh;
}
.header__body {
  white-space: nowrap;
}
.header__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  gap: 20px;
}
.header__top {
  background: #08080C;
  opacity: 0.9;
  position: fixed;
  z-index: 999999;
  width: 100%;
}
.header__list {
  display: flex;
  gap: 75px;
  align-items: center;
}
.header__item {
  position: relative;
}
.header__item::before {
  content: "|";
  position: absolute;
  right: -40px;
  top: -10px;
  font-size: 30px;
  font-weight: 100;
}
.header__item:last-child::before {
  content: "";
}
.header__link {
  font-weight: 500;
  font-size: 15.5px;
  position: relative;
  line-height: 14px;
  text-align: right;
  transition: 0.1s;
}
.header__link:hover {
  color: #1EE1B3;
}
.header__link::after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  height: 1.5px;
  bottom: -5px;
  background-color: #1EE1B3;
  transition: 0.3s;
}
.header__link:hover::after {
  width: 100%;
  left: 0;
}
.header__user {
  display: flex;
  width: 290px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__switch {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 32px;
}
.header__switch-input {
  height: 0;
  width: 0;
  opacity: 0;
}
.header__switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #91b6ff;
  border-radius: 25px;
  transition: 0.3s;
}
.header__switch-slider::before {
  content: "";
  position: absolute;
  cursor: pointer;
  left: 4px;
  bottom: 3px;
  height: 26px;
  width: 26px;
  background: url("../img/moon.png") no-repeat center center;
  background-color: #262932;
  background-size: 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.header__log {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__login {
  font-size: 15px;
  position: relative;
  transition: 0.1s;
  z-index: 3;
  padding: 5px 5px;
}
.header__login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  width: 100%;
  background-color: rgba(113, 163, 249, 0.3058823529);
  border-radius: 0px 0px 5px 5px;
  transition: 0.3s;
}
.header__login:hover::before {
  height: 100%;
}
.header__login:hover {
  color: #fff;
}
.header__signup {
  background: #1EE1B3;
  border-radius: 3px;
  padding: 14px 22px;
  color: #000;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.5s;
}
.header__signup:hover {
  background-color: #1EB2E1;
  color: #fff;
  transform: scale(1.05);
}

.header__switch-input:focus + .header__switch-slider {
  box-shadow: 0 0 1px #fff;
}

.header__switch-input:checked + .header__switch-slider {
  background-color: #f0ff7d;
}

.header__switch-input:checked + .header__switch-slider::before {
  transform: translateX(26px);
  background: url("../img/sun.png") no-repeat center center;
  background-color: #262932;
}

.header__burger {
  width: 33px;
  display: none;
  height: 30px;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
}
.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}
.header__burger span {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  transition: 0.5s;
}
.header__burger::before {
  top: 4px;
}
.header__burger::after {
  bottom: 1px;
}

.header__burger.active span {
  opacity: 0;
}

.header__burger.active::before {
  transform: rotate(44deg);
  top: 50%;
}

.header__burger.active::after {
  transform: rotate(-44deg);
  top: 50%;
}

.header__links {
  display: flex;
  align-self: flex-start;
  position: relative;
  top: 80px;
  padding: 0 10px;
  gap: 50px;
}
.header__box-link {
  padding: 5px;
  transition: 0.5s;
}
.header__box-link:hover {
  background-color: #e11e1e;
  border-radius: 50%;
}

@media (max-width: 580px) {
  .wrapper .header .header__box .header__links {
    justify-content: space-evenly;
    width: 100%;
  }
  .wrapper .header .header__box .header__links .header__box-link img {
    width: 22px;
    height: 22px;
  }
  .wrapper .header .header__box .header__links .header__box {
    width: -moz-max-content;
    width: max-content;
  }
  .header .header__body .header__switch {
    position: absolute;
    right: 5%;
    top: 130%;
  }
  .header .header__body .header__user {
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  .header .header__links {
    top: 40px;
  }
}
@media (max-width: 920px) {
  .header .header__box .header__links {
    top: 50px;
  }
  .header .header__burger {
    display: block;
    position: relative;
    z-index: 5;
  }
  .header .header__container {
    padding: 10px;
    padding-left: 0;
  }
  .header .header__top .header__nav {
    position: absolute;
    left: -999px;
    transition: 0.5s;
  }
  .header .header__top .header__signup {
    font-size: 13px;
    padding: 8px 15px;
  }
  .header .header__top .header__log {
    gap: 20px;
  }
  .header .header__top .header__user {
    width: 270px;
  }
  .header .header__top.active .header__container {
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
  }
  .header .header__top.active .header__nav {
    left: 0;
    position: absolute;
    top: 0%;
    padding-top: 90px;
    padding-bottom: 20px;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    overflow: auto;
  }
  .header .header__top.active .header__nav .header__list {
    flex-direction: column;
    gap: 30px;
  }
  .header .header__top.active .header__nav .header__item::before {
    content: "";
  }
  .header .header__top.active .header__nav .header__link {
    display: inline-block;
    font-size: 25px;
    border: 2px solid #fff;
    width: 80vw;
    padding: 20px;
    text-align: center;
  }
  .header .header__top.active .header__nav .header__link:hover {
    background-color: rgba(30, 225, 179, 0.2117647059);
  }
}
.header__main {
  height: 100%;
}
.header__box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: end;
  width: 100%;
}
.header__sabtext {
  font-weight: 700;
  font-size: calc(8px + 0.5755395683vw);
  line-height: 100%;
  color: #1EE1B3;
  padding-right: 10px;
}
.header__title {
  font-weight: 700;
  font-size: calc(68px + 4.8920863309vw);
  line-height: 110%;
  font-family: "Montserrat", sans-serif;
}
.header__line {
  width: 70px;
  height: 3px;
  background-color: #1EE1B3;
  display: flex;
  margin: 0 10px;
  align-self: flex-end;
}
.header__send {
  display: flex;
  gap: 20px;
  align-self: flex-end;
  margin: 30px 10px 50px 10px;
}
.header__input {
  font-weight: 700;
  font-size: calc(7px + 0.5035971223vw);
  line-height: 100%;
  color: #1EE1B3;
  text-align: center;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 3px;
  padding: 18px 56px;
  transition: 0.3s;
}
.header__input::-moz-placeholder {
  color: #000;
}
.header__input::placeholder {
  color: #000;
}
.header__input:focus {
  border: 2px solid #1EE1B3;
}
.header__button {
  background-color: #000;
  font-weight: 700;
  font-size: calc(7px + 0.5035971223vw);
  line-height: 100%;
  padding: 18px 38px;
  color: #fff;
  border-radius: 3px;
  border: 1px solid #000;
  transition: 0.3s ease-in-out;
}
.header__button:hover {
  background-color: #1EE1B3;
  border: 1px solid #1EE1B3;
  color: #000;
}
.header__button:active {
  transform: scale(0.9);
}

@media (max-width: 760px) {
  .header .header__box .header__text {
    font-size: calc(7px + 0.5504587156vw);
  }
  .header .header__box .header__title {
    font-size: calc(67px + 4.8920863309vw);
  }
  .header .header__box .header__send {
    margin: 10px 0px 10px 10px;
  }
  .header .header__box .header__send .header__input {
    padding: 15px 35px;
    width: 100%;
    color: #000;
  }
  .header .header__box .header__send .header__input::-moz-placeholder {
    color: #000;
  }
  .header .header__box .header__send .header__input::placeholder {
    color: #000;
  }
  .header .header__box .header__send .header__button {
    padding: 15px 25px;
  }
}
.company {
  overflow: hidden;
}
.company__body {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 80px 0px;
  gap: 40px;
}
.company__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company__img img {
  width: 100%;
  transition: 0.6s;
  cursor: pointer;
}
.company__img img:hover {
  transform: scale(1.1);
}

@media (max-width: 760px) {
  .company .company__body {
    padding: 40px 0;
    gap: 30px;
  }
}
.introduction {
  position: relative;
  padding: 80px 0;
}
.introduction__body {
  display: flex;
  gap: 35px;
  justify-content: space-between;
}
.introduction__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 740px;
  gap: 60px;
}
.introduction__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #1EE1B3;
}
.introduction__line, .introduction .line {
  border: 3px solid #515151;
  border-radius: 3px;
  width: 20%;
  height: 3px;
  position: relative;
  margin-top: 11px;
}
.introduction__line span, .introduction .line span {
  display: inline-block;
  position: absolute;
  top: -2.5px;
  left: -2px;
  border: 3px solid #1EE1B3;
  width: 70%;
  border-radius: 3px;
}
.introduction__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 125.5%;
}
.introduction__link {
  display: inline;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #08080C;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 18px 41px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
}
.introduction__link:hover {
  background-color: #1EE1B3;
  border: 1px solid #1EE1B3;
  transform: scale(1.03);
}
.introduction__link:active {
  transform: scale(0.9);
}
.introduction .cube {
  width: 170px;
  height: 150px;
  position: absolute;
  top: 5%;
  left: 65%;
  background-color: #1EE1B3;
}
.introduction__container {
  position: relative;
  flex: 0 0 50%;
}
.introduction__wrapper {
  text-align: end;
}
.introduction__slide {
  position: relative;
}
.introduction__img {
  text-align: center;
  position: relative;
}
.introduction__img img {
  cursor: pointer;
}

.introduction__hover {
  position: absolute;
  z-index: 10000;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  padding: 32px 50px;
  background: #08080C;
  opacity: 0.85;
  bottom: -999px;
  transition: 0.5s;
}
.introduction__hover-title {
  font-weight: 700;
  font-size: 20px;
  color: #1EE1B3;
}
.introduction__hover-text {
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.introduction__img:hover .introduction__hover {
  bottom: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  background-color: #454242;
  font-size: 20px;
  color: #fff;
  padding: 8px 14px;
  align-items: center;
  position: absolute;
  top: -554.5%;
  opacity: 1;
  gap: 0;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 19.5%;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  right: 25.5%;
  left: 62.7%;
}

@media (max-width: 340px) {
  .wrapper .introduction .container .introduction__body .swiper-button-next::after,
  .wrapper .introduction .container .introduction__body .swiper-button-prev::after {
    top: -354.5%;
  }
  .wrapper .introduction .container .introduction__body .cube {
    width: 130px;
    height: 100px;
    top: 3%;
  }
}
@media (max-width: 450px) {
  .wrapper .introduction .introduction__body .introduction__hover {
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .wrapper .introduction .introduction__body .introduction__wrapper {
    text-align: center;
  }
  .wrapper .introduction .introduction__body .swiper-button-next, .wrapper .introduction .introduction__body .swiper-rtl .swiper-button-prev {
    right: 10%;
  }
  .wrapper .introduction .introduction__body .swiper-button-prev, .wrapper .introduction .introduction__body .swiper-rtl .swiper-button-next {
    left: 60%;
  }
  .wrapper .introduction .introduction__body .swiper-button-next::after,
  .wrapper .introduction .introduction__body .swiper-button-prev::after {
    top: -404.5%;
  }
  .wrapper .introduction .introduction__body img {
    width: 100%;
  }
  .wrapper .introduction .introduction__body .cube {
    top: 3%;
    left: 25%;
  }
  .wrapper .introduction .introduction__body .introduction__line {
    width: 30%;
  }
  .wrapper .introduction .introduction__body .introduction__line span {
    width: 70%;
  }
}
@media (max-width: 970px) {
  .introduction {
    padding: 60px 0 10px 0;
  }
  .introduction .introduction__body {
    flex-direction: column-reverse;
  }
  .introduction .introduction__body .introduction__hover-text {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .introduction .introduction__body .introduction__container {
    flex: 0 0 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .introduction .introduction__body .introduction__title {
    font-size: 29px;
  }
  .introduction .introduction__body .introduction__text {
    font-size: 13px;
  }
  .introduction .introduction__body .introduction__box {
    gap: 40px;
  }
  .introduction .introduction__body .cube {
    top: 1%;
    left: 30%;
  }
  .introduction .introduction__body .introduction__wrapper {
    text-align: center;
  }
  .introduction .introduction__body .swiper-button-next, .introduction .introduction__body .swiper-rtl .swiper-button-prev {
    right: 28%;
  }
  .introduction .introduction__body .swiper-button-prev, .introduction .introduction__body .swiper-rtl .swiper-button-next {
    left: 57%;
  }
}
.everything {
  padding: 80px 0 0 0;
}
.everything__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 15px;
  gap: 30px;
}
.everything__img {
  position: relative;
  z-index: 1;
}
.everything__img::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 500px;
  top: 20%;
  left: -3%;
  height: 450px;
  border: 2px solid #1EE1B3;
  transform: rotate(50deg);
}
.everything__img img {
  position: relative;
}
.everything__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 60px;
  padding-bottom: 50px;
}
.everything__title {
  font-weight: 700;
  font-size: calc(25px + 1.7985611511vw);
  line-height: 110%;
}
.everything__line {
  border: 3px solid #515151;
  border-radius: 3px;
  width: 30%;
  height: 3px;
  position: relative;
  margin-top: 11px;
}
.everything__line span {
  display: inline-block;
  position: absolute;
  top: -2.5px;
  left: -2px;
  border: 3px solid #1EE1B3;
  width: 70%;
  border-radius: 3px;
}
.everything__boxes {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  max-width: 655px;
}
.everything__box {
  display: flex;
  gap: 50px;
  align-items: center;
}
.everything__box-img {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  align-self: baseline;
  position: relative;
  z-index: 10;
  flex: 0 0 14%;
  transition: 0.6s;
  cursor: pointer;
}
.everything__box-img img {
  width: 100%;
}
.everything .everything__box-img:hover {
  transform: scale(1.1);
}
.everything__box-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.everything__box-title {
  font-weight: 700;
  font-size: calc(10px + 0.6474820144vw);
  line-height: 110%;
}
.everything__box-text {
  max-width: 480px;
  font-weight: 400;
  font-size: calc(8px + 0.5035971223vw);
}

@media (max-width: 420px) {
  .wrapper .everything .everything__body .everything__img::before {
    width: 250px;
    top: 20%;
    left: 10%;
    height: 250px;
  }
}
@media (max-width: 620px) {
  .everything .everything__body .everything__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 0 70px;
  }
  .everything .everything__body .everything__img::before {
    width: 400px;
    top: 20%;
    left: 10%;
    height: 400px;
  }
}
@media (max-width: 850px) {
  .everything {
    padding: 40px 0 0 0;
  }
  .everything .everything__body {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
  }
  .everything .everything__body .everything__line {
    width: 40%;
  }
  .everything .everything__body .everything__line span {
    top: -2.4px;
  }
  .everything .everything__body .everything__content {
    gap: 60px;
    padding-bottom: 20px;
  }
  .everything .everything__body .everything__box {
    gap: 20px;
  }
  .everything .everything__body .everything__boxes {
    gap: 40px;
  }
  .everything .everything__body .everything__boxes .everything__box-text {
    font-size: calc(8px + 0.6422018349vw);
  }
  .everything .everything__body .everything__boxes .everything__box-title {
    font-size: calc(11px + 0.7194244604vw);
  }
}
.player {
  background-color: #0f0f14;
  padding: 85px 0 120px 0;
  position: relative;
  z-index: 1;
}
.player__body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 10px;
  align-items: center;
}
.player__title {
  font-weight: 600;
  font-size: calc(18px + 1.2949640288vw);
  text-align: center;
  line-height: 120%;
  max-width: 1100px;
}
.player__line {
  width: 130px;
  height: 3px;
  background-color: #1EE1B3;
}
.player__button {
  border: 2px solid #fff;
  padding: 22px 25px;
  cursor: pointer;
  transition: 0.5s;
}
.player__button button {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  background-color: #0C0C11;
  border-radius: 3px;
  text-align: center;
  transform: translate(50% -50%);
  transition: 0.5s;
}
.player__button:hover {
  border: 2px solid #1EE1B3;
}
.player__button:hover button {
  border-color: transparent transparent transparent #1EE1B3;
  transform: scale(1.2);
}
.player__button:active {
  transform: scale(0.9);
  border-radius: 10px;
}

@media (max-width: 760px) {
  .player {
    padding: 55px 0 70px 0;
  }
  .player__body {
    gap: 35px;
  }
  .player__title {
    line-height: 115%;
  }
  .player__button {
    padding: 17px 20px;
  }
  .player__button button {
    border-width: 8px 0 8px 14px;
  }
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6941176471);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99999999;
  transition: 0.7s;
  overflow: auto;
  overflow-x: hidden;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.popup__content {
  background-color: #0f0f14;
  max-width: 800px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  transition: 0.6s;
  opacity: 0;
  transform: scale(0);
  transform: rotate(45deg);
}
.popup .line {
  width: 150px;
  height: 3px;
  background-color: #1EE1B3;
  border-radius: 3px;
}
.popup__close {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  align-self: flex-end;
  cursor: pointer;
  top: 15px;
}
.popup__close:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: rotate(45deg);
  background-color: #fff;
}
.popup__close:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #fff;
}
.popup__title {
  font-size: calc(20px + 1.4388489209vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 20px;
  margin: 0 10px;
}
.popup__text {
  font-size: calc(8px + 0.5755395683vw);
  max-width: 700px;
  line-height: 120%;
  list-style-type: square;
}

.popup:target {
  opacity: 1;
  visibility: visible;
}

.popup:target .popup__content {
  transform: scale(1);
  transform: rotate(0deg);
  opacity: 1;
}

.popup__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 620px) {
  .popup__body {
    padding: 20px 10px;
  }
  .popup__content {
    padding: 25px 10px;
    gap: 25px;
  }
  .popup__title {
    gap: 15px;
    margin-top: -10px;
  }
  .popup__box {
    gap: 20px;
    padding-bottom: 20px;
    margin: 0 10px;
  }
}
.users {
  padding: 120px 0 85px 0;
}
.users__container {
  margin: 0 auto;
  max-width: 1100px;
  height: 100%;
  padding: 0 15px;
}
.users__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.users__title {
  font-weight: 600;
  font-size: calc(17px + 1.2230215827vw);
  text-align: center;
}
.users__line {
  width: 70px;
  height: 3px;
  background-color: #1EE1B3;
  margin: 0 auto;
  margin-top: 18px;
}
.users__block {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.users__box {
  display: flex;
  flex-direction: column;
  flex: 0 0 30%;
  padding: 29px;
  background-color: #0f0f14;
  gap: 25px;
}
.users__box-title {
  font-weight: 800;
  font-size: 20px;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.users__box-title::after {
  content: "";
  position: absolute;
  height: 60%;
  right: -20px;
  width: 2.5px;
  background-color: #1EB2E1;
  transform: rotate(-40deg);
  border-radius: 5px;
  transition: 0.5s;
}
.users__box-title::before {
  content: "";
  position: absolute;
  height: 60%;
  right: -20px;
  width: 2.5px;
  background-color: #1EB2E1;
  transform: rotate(40deg);
  bottom: 0;
  border-radius: 5px;
  transition: 0.5s;
}
.users__box-title:hover {
  border-bottom: 1px solid #898989;
}
.users .users__box-title:hover::after,
.users .users__box-title:hover::before {
  right: -30px;
}
.users__box-text {
  font-weight: 400;
  font-size: 17px calc(8.5px + 0.5755395683vw);
  line-height: 130%;
}
.users__link {
  padding: 21px 35px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
  transition: 0.5s;
}
.users__link:hover {
  background-color: #1EE1B3;
  transform: scale(1.03);
}

@media (max-width: 545px) {
  .wrapper .users .users__body .users__box {
    flex: 0 0 90%;
    padding: 20px;
    gap: 25px;
  }
  .wrapper .users .users__body .users__block {
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    justify-content: center;
  }
  .wrapper .users .users__body .users__box-title::after {
    height: 58%;
    right: -20px;
  }
  .wrapper .users .users__body .users__box-title::before {
    height: 58%;
    right: -20px;
  }
}
@media (max-width: 800px) {
  .users .users__body .users__box {
    flex: 0 0 48%;
    padding: 20px;
    gap: 25px;
  }
  .users .users__body .users__block {
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    justify-content: center;
  }
  .users .users__body .users__box-title::after {
    height: 58%;
    right: -20px;
  }
  .users .users__body .users__box-title::before {
    height: 58%;
    right: -20px;
  }
}
.clothing {
  padding: 80px 0 0px 0;
}
.clothing .container {
  background: #0f0f14;
  height: -moz-max-content;
  height: max-content;
}
.clothing__body {
  display: flex;
  max-width: 1380px;
  margin: 0 auto;
  justify-content: space-between;
  background: #0f0f14;
  position: relative;
}
.clothing__content {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  position: static;
  z-index: 10;
  gap: 60px;
  padding: 100px 15px 15px 100px;
  pointer-events: none;
}
.clothing__title {
  font-weight: 700;
  font-size: calc(20px + 1.4388489209vw);
  pointer-events: none;
}
.clothing__line {
  border: 3px solid #515151;
  border-radius: 3px;
  width: 30%;
  height: 3px;
  position: relative;
  margin-top: 21px;
  pointer-events: none;
}
.clothing__line span {
  display: inline-block;
  position: absolute;
  top: -2.2px;
  left: -2px;
  border: 3px solid #1EE1B3;
  width: 70%;
  border-radius: 3px;
}
.clothing__text {
  font-weight: 400;
  font-size: calc(7px + 0.5755395683vw);
  line-height: 125%;
  pointer-events: none;
}
.clothing__link {
  display: inline-block;
  font-weight: 700;
  font-size: calc(7px + 0.5035971223vw);
  line-height: 14px;
  padding: 18px 56px 18px 23px;
  background-color: #fff;
  color: #000;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
  pointer-events: all;
}
.clothing__link::after {
  content: "";
  position: absolute;
  height: 25%;
  right: 30px;
  width: 2.5px;
  background-color: #1EB2E1;
  transform: rotate(-40deg);
  border-radius: 5px;
  transition: 0.4s;
  top: 14.5px;
}
.clothing__link::before {
  content: "";
  position: absolute;
  height: 25%;
  right: 30px;
  width: 2.5px;
  background-color: #1EB2E1;
  transform: rotate(40deg);
  bottom: 14.5px;
  border-radius: 5px;
  transition: 0.4s;
}
.clothing__link:hover {
  background-color: #000;
  color: #fff;
}
.clothing .clothing__link:hover::after,
.clothing .clothing__link:hover::before {
  right: 21px;
}
.clothing__container {
  position: relative;
  top: -130px;
}
.clothing__slide {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 890px) {
  .wrapper .clothing {
    padding: 140px 0 0px 0;
  }
  .wrapper .clothing .container .clothing__body .clothing__container {
    margin: 0px 0px 0px 0px;
  }
  .wrapper .clothing .container .clothing__body .clothing__content {
    z-index: 10;
    gap: 45px;
    padding: 20% 15px 0px 20px;
  }
}
@media (max-width: 1050px) {
  .wrapper .clothing .container .clothing__body .clothing__container {
    margin: 0px 0px 0px 0px;
  }
  .wrapper .clothing .container .clothing__body .clothing__content {
    position: absolute;
  }
}
.clothing .swiper-button-next::after,
.clothing .swiper-button-prev::after {
  top: -700%;
  background-color: transparent;
  left: 450%;
  padding: 0;
}

.clothing__container .swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 25.5%;
}

.clothing__container .swiper-button-prev, .swiper-rtl .swiper-button-next {
  right: 45.5%;
  left: 62.7%;
}

.clothing__container .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.1;
}

@media (max-width: 440px) {
  .clothing__container .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 36.5%;
  }
  .clothing__container .swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: 65.5%;
    left: 42.7%;
  }
}
.standart {
  position: relative;
  z-index: 1;
  margin: -120px 0 0 0;
  padding: 120px 0;
  background-color: #08080C;
}
.standart__body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1050px;
  margin: 0 auto;
}
.standart_block {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.standart__title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
}
.standart__line {
  width: 70px;
  height: 3px;
  background-color: #1EE1B3;
  margin: 0 auto;
  margin-top: 18px;
}
.standart__block-item {
  padding: 14px 10px;
  border-bottom: 2px solid #292936;
}
.standart__block-item:first-child {
  border-top: 2px solid #292936;
}
.standart__block-title {
  font-weight: 600;
  font-size: calc(18px + 1.2949640288vw);
  color: #565660;
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  cursor: pointer;
}
.standart__block-title::before, .standart__block-title::after {
  content: "";
  position: absolute;
  width: 13px;
  border-radius: 5px;
  height: 3px;
  background-color: #1EE1B3;
  top: 15px;
  transition: 0.3s ease-in-out;
}
.standart__block-title::before {
  transform: rotate(45deg);
  right: 8.8px;
}
.standart__block-title::after {
  transform: rotate(-45deg);
  right: 0;
}
.standart__spoiler-block {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.standart__spoiler {
  display: none;
}
.standart__spoiler-img {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
}
.standart__img-text {
  font-weight: 600;
  font-size: calc(11.5px + 0.8273381295vw);
  line-height: 120%;
}
.standart__spoiler-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  flex: 1 1 62%;
}
.standart__spoiler-text {
  font-weight: 400;
  font-size: calc(9px + 0.5755395683vw);
  color: #A4A4A4;
  margin-right: 25px;
  padding: 20px 0;
  line-height: 120%;
}
.standart__spoiler-text:first-child {
  border-bottom: 2px solid #262626;
}
.standart__spoiler-text:last-child {
  padding-bottom: 10px;
}
.standart .standart__block-title.active::before {
  transform: rotate(-45deg);
  right: 8.8px;
}
.standart .standart__block-title.active::after {
  transform: rotate(45deg);
  right: 0;
}

.line {
  width: 70px;
  height: 3px;
  background-color: #1EE1B3;
  margin-top: 18px;
}

@media (max-width: 760px) {
  .wrapper .standart {
    margin: -80px 0 0 0;
    padding: 80px 0;
  }
  .wrapper .standart__body {
    gap: 30px;
  }
  .wrapper .standart_block {
    padding: 5px 0;
  }
  .wrapper .standart__line {
    width: 70px;
    margin-top: -5px;
  }
  .wrapper .standart__block-item {
    padding: 12px 10px;
  }
  .wrapper .standart__spoiler-img {
    gap: 10px;
    margin-right: 30px;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper .standart__spoiler-texts {
    flex: 1 1 70%;
  }
  .wrapper .standart__spoiler-text {
    margin-right: 10px;
    padding: 15px 0;
  }
}
.cross {
  padding: 30px 0 60px 0;
}
.cross__body {
  width: 100%;
}
.cross__title {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  align-items: center;
  margin-bottom: 58px;
  font-weight: 600;
  line-height: 120%;
  font-size: calc(15px + 1.0791366906vw);
}
.cross__title h1 {
  max-width: 740px;
}
.cross__container {
  padding: 0 70px;
  display: flex;
  height: 200px;
}
.cross__wrapper {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
}
.cross__slide {
  background-color: #fff;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #545454;
  transition: 0.5s;
  cursor: pointer;
}
.cross__img {
  -o-object-position: center;
     object-position: center;
}
.cross__img img {
  width: 100%;
  padding: 0px 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cross .cross-button-next,
.cross .cross-button-prev {
  background-color: transparent;
  padding: 4.5px;
  display: inline-block;
  text-align: center;
  color: #000;
  position: absolute;
  top: 40%;
  background-color: #D9D9D9;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  transform: translate(50% -50%);
}
.cross .cross-button-next, .cross .swiper-rtl .swiper-button-prev {
  right: auto;
  left: 3px;
}
.cross .cross-button-prev, .cross .swiper-rtl .swiper-button-next {
  left: auto;
  right: 3px;
}
.cross .cross__slide.swiper-slide-active {
  scale: 1.15;
  transition: 0.5s;
}

@media (max-width: 355px) {
  .wrapper .cross .cross__body {
    padding: 20px 0 0px 0;
  }
  .wrapper .cross .cross__body .cross__container {
    padding: 0px;
    height: 180px;
  }
  .wrapper .cross .cross__body .cross__container .cross__slide {
    width: 140px;
    height: 70px;
  }
}
@media (max-width: 435px) {
  .wrapper .cross .cross__body {
    padding: 20px 0 0px 0;
  }
  .wrapper .cross .cross__body .cross__container {
    padding: 0px;
    height: 180px;
  }
  .wrapper .cross .cross__body .cross__slide {
    width: 140px;
    height: 100px;
  }
  .wrapper .cross .cross__body .cross-button-next,
  .wrapper .cross .cross__body .cross-button-prev {
    padding: 3px;
    top: 1%;
  }
  .wrapper .cross .cross__body .cross__wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 760px) {
  .wrapper .cross {
    padding: 20px 0 40px 0;
  }
  .wrapper .cross__title {
    gap: 0px;
    margin-bottom: 30px;
  }
  .wrapper .cross__container {
    padding: 0px;
    height: 180px;
  }
  .wrapper .cross__slide {
    width: 140px;
    height: 120px;
  }
  .wrapper .cross .cross-button-next, .wrapper .cross .swiper-rtl .swiper-button-prev {
    left: 0px;
  }
  .wrapper .cross .cross-button-prev, .wrapper .cross .swiper-rtl .swiper-button-next {
    right: 0px;
  }
  .wrapper .cross .cross-button-next,
  .wrapper .cross .cross-button-prev {
    padding: 4px;
    top: 1%;
  }
  .wrapper .cross .cross__wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 1160px) {
  .cross {
    padding: 30px 0 110px 0;
  }
  .cross__container {
    padding: 0 45px;
    height: 180px;
  }
  .cross__slide {
    width: 170px;
    height: 130px;
  }
}
.product {
  background-image: url(../img/Begin_v7-02.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.product__body {
  width: 100%;
  height: 900px;
  display: flex;
  justify-content: end;
}
.product__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 1 48%;
  gap: 50px;
  margin-top: 250px;
  align-items: center;
}
.product__text {
  font-weight: 400;
  font-size: calc(8px + 0.5755395683vw);
  line-height: 125.5%;
}
.product__link {
  display: inline-block;
  font-size: calc(7px + 0.5035971223vw);
  line-height: 110%;
  color: #08080C;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
  padding: 18px 40px;
  transition: 0.6s;
}
.product__link:hover {
  background-color: #1EE1B3;
}
.product__link:active {
  transform: scale(0.9);
}

@media (max-width: 510px) {
  body .wrapper .product__body {
    height: 350px;
    margin-top: -10px;
  }
  body .wrapper .product__body .product__content {
    gap: 20px;
    margin-top: 80px;
  }
  body .wrapper .product__body .product__text {
    font-size: calc(6px + 0.4316546763vw);
  }
  body .wrapper .product__body .product__link {
    padding: 10px 25px;
    font-size: calc(6px + 0.5035971223vw);
  }
}
@media (max-width: 620px) {
  .wrapper .product__body {
    height: 450px;
  }
  .wrapper .product__content {
    gap: 20px;
    margin-top: 120px;
  }
  .wrapper .product__text {
    font-size: calc(6px + 0.4316546763vw);
    max-height: 100px;
    overflow: auto;
  }
  .wrapper .product__link {
    padding: 15px 35px;
    font-size: calc(6px + 0.5035971223vw);
  }
}
@media (max-width: 910px) {
  .product__body {
    height: 600px;
  }
  .product__content {
    gap: 30px;
    margin-top: 150px;
  }
  .product__text {
    font-size: calc(7px + 0.5035971223vw);
  }
  .product__link {
    padding: 15px 35px;
    font-size: calc(6px + 0.5035971223vw);
  }
}
.nvidia {
  background-image: url(../img/nvidia.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.nvidia__body {
  padding: 160px 0;
}
.nvidia__title {
  font-weight: 700;
  font-size: calc(22px + 1.726618705vw);
  max-width: 800px;
  line-height: 110%;
}
.nvidia__title span {
  color: #91E227;
}

@media (max-width: 370px) {
  body .wrapper .nvidia .nvidia__body {
    padding: 30px 0;
  }
  body .wrapper .nvidia .nvidia__title {
    font-size: 15px;
    max-width: 210px;
    padding: 0 10px 0 0;
  }
}
@media (max-width: 688px) {
  .wrapper .nvidia__body {
    padding: 40px 0;
  }
  .wrapper .nvidia__title {
    font-size: 20px;
    max-width: 250px;
    padding: 0 10px 0 0;
  }
}
@media (max-width: 1035px) {
  .nvidia__body {
    padding: 110px 0;
  }
  .nvidia__title {
    font-size: calc(18px + 1.2949640288vw);
    max-width: 500px;
    padding: 0 10px;
  }
}
.zozosuit {
  padding: 80px 0 40px 0;
}
.zozosuit__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 10px;
}
.zozosuit__img {
  max-height: 428px;
  flex-direction: column;
}
.zozosuit__img .zozosuit__img-hover {
  display: none;
}
.zozosuit__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.zozosuit__text {
  flex: 1 1 100%;
  display: flex;
  font-weight: 400;
  font-size: calc(9px + 0.7194244604vw);
  line-height: 125.5%;
  text-align: center;
  max-width: 690px;
  align-items: center;
  padding-bottom: 20px;
}
.zozosuit__decor {
  max-width: 1600px;
  display: flex;
  gap: 30px;
  padding: 0 10px 0 0;
}
.zozosuit__line {
  height: 1.5px;
  flex: 1 1 100%;
  background-color: #515151;
}
.zozosuit__decor-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 125.5%;
  text-align: center;
  margin-top: -13px;
}

@media (max-width: 540px) {
  .wrapper .zozosuit {
    padding: 60px 0 40px 0;
  }
  .wrapper .zozosuit .zozosuit__decor {
    margin: 0 auto;
    gap: 0px;
    padding: 0 20px;
  }
  .wrapper .zozosuit .zozosuit__decor .zozosuit__decor-text {
    display: none;
  }
  .wrapper .zozosuit .zozosuit__body {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 0px;
    flex-direction: column;
  }
  .wrapper .zozosuit .zozosuit__body .zozosuit__img {
    max-height: 170px;
    display: flex;
    border-bottom: 1.5px solid #515151;
    position: relative;
  }
  .wrapper .zozosuit .zozosuit__body .zozosuit__img .zozosuit__img-hover {
    position: absolute;
    display: block;
    bottom: -40px;
    z-index: 10;
    left: 50%;
    transform: translate(-50%);
    font-weight: 400;
    font-size: 24px;
    line-height: 125.5%;
  }
  .wrapper .zozosuit .zozosuit__body .zozosuit__img img {
    max-width: 238px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    margin: 0 auto;
  }
  .wrapper .zozosuit .zozosuit__body .zozosuit__text {
    font-size: calc(9px + 0.7194244604vw);
    max-width: 400px;
    padding: 70px 0 40px 0;
    position: relative;
    z-index: 1;
    background-color: #08080C;
    margin: 0 auto;
  }
}
@media (max-width: 810px) {
  .zozosuit .zozosuit__img {
    max-height: 258px;
  }
  .zozosuit .zozosuit__decor-text {
    font-size: 20px;
    margin-top: -10px;
  }
}
.footer {
  padding: 40px 0 20px 0;
}
.footer__body {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  gap: 60px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 35px 30px;
  border-color: transparent transparent #1EE1B3 transparent;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.4s;
}
.footer__triangle:hover {
  border-color: transparent transparent #00C2FF transparent;
  transform: scale(1.2);
}
.footer__title {
  font-weight: 700;
  font-size: 64px;
  cursor: pointer;
}
.footer__list {
  display: flex;
  margin-top: 30px;
  gap: 33px;
}
.footer__link {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  background-color: #383838;
  transition: 0.3s;
  justify-content: center;
}
.footer__link img {
  width: 20px;
  height: 20px;
}
.footer__link:hover {
  background-color: #1EB2E1;
}
.footer__some {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer__cop {
  font-weight: 400;
  font-size: 11px;
}
.footer__privacy {
  font-weight: 400;
  font-size: 11px;
  display: flex;
  align-items: center;
}
.footer__privacy span {
  margin: 0 10px;
  font-size: 20px;
  margin-top: -4px;
}

@media (max-width: 540px) {
  .footer {
    padding: 0px 0 20px 0;
  }
  .footer__body {
    gap: 90px;
  }
  .footer__some {
    justify-content: center;
    align-items: center;
  }
  .footer__cop {
    font-weight: 400;
    font-size: 15px;
  }
  .footer__privacy {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */