@font-face {
  font-family: "Helvitica", sans-serif;
  src: url(../fonts/helvetica.woff2);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Helvitica - Bolt", sans-serif;
  src: url(../fonts/helvetica-bold.woff2);
  font-style: normal;
  font-weight: 700;
}

html {
  box-sizing: border-box;
}

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

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

li {
  list-style: none;
}

img {
  max-width: 100%;
}
.container {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}
body {
  font-family: "Helvitica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #5c5c5e;
}
button {
  color: inherit;
  font-size: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.header {
  border-bottom: 1px solid #cacad6;
}
.nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 80px;
}
.menu-btn {
  width: 40px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.menu-btn span {
  height: 3px;
  background-color:#070707;
  width: 100%;
}
.menu {
  align-items: center;
  display: flex;
  gap: 0 20px;
}

.header__logo {
  justify-self: center;
  align-self: center;
}
.basket {
  position: relative;
  justify-self: end;
  align-self: center;
}
.basket--on span {
  font-size: 11px;
  width: 15px;
  height: 15px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  position: absolute;
  display: flex;
  line-height: 0;
  align-items: center;
  bottom: 0;
  right: -2px;
  justify-content: center;
}
.top {
  min-height: calc(100vh - 81px);
  background-image: url(../images/bg-top.jpeg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top__title {
  padding-top: 10%;
  color: rgb(92, 92, 94);
  font-family: Helvetica;
  font-size: 96px;
  font-weight: 400;
  line-height: 110px;
  text-align: left;
  margin-bottom: 10px;
}
.top__sub-title {
  color: rgb(92, 92, 94);
  font-family: Helvetica;
  font-size: 36px;
  font-weight: 400;
  line-height: 41px;
  text-align: left;
  margin-bottom: 5px;
}

.top__text {
  color: rgb(92, 92, 94);
  font-family: Helvetica;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
  margin-bottom: 50px;
  max-width: 351px;
}

.buy__btn {
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93) 100%
  );
  cursor: pointer;
  border: none;
  display: flex;
  padding: 0;
  text-transform: uppercase;
  padding: 1px;
  margin-bottom: 10px;
}
.buy__btn-text {
  color: #f6f4f5;
  padding: 20px 110px;
}

.buy__btn-price {
  background-color: #f6f4f5;
  padding: 20px 105px;
}
.buy__btn-link {
  color: rgb(92, 92, 94);
  font-family: "Helvitica", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.features {
  padding: 100px 0;
}
.features__titles {
  display: flex;
}
.features__title {
  flex-basis: 300px;
}
.secton-title {
  text-transform: uppercase;
  font-weight: 400;
}
.features__text {
  max-width: 330px;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 2px;

  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tabs {
  display: grid;
  grid-template-columns: 300px auto;
}
.tabs__btn {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.tabs__btn-item {
  font-weight: 700;
  margin-bottom: 20px;
}
.tabs__btn-item--active {
  color: #070707;
}
.tabs__content {
  position: relative;
  min-height: 300px;
}
.tabs__content-item {
  display: grid;
  grid-template-columns: auto 280px;
  grid-template-rows: auto 150px;
  gap: 40px;
  opacity: 0;
  position: absolute;
}
.tabs__content-item--active {
  opacity: 1;
}
.tabs__content-img {
  grid-row: 1/-1;
  align-self: stretch;
  object-fit: cover;
}
.tabs__content-box h3 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 5px;
}
.video {
  grid-column: 2/3;
  width: 280px;
  height: 150px;
  background-image: url(../images/video-bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  padding: 9px 10px;
}
.video-btn {
  margin-left: 22px;
}

.video span {
  font-size: 13px;
  color: #f6f4f5;
}
.games {
  margin-bottom: 100px;
}
.game-title {
  margin-bottom: 50px;
}
.games__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.game__descr {
  padding-right: 10px;
}
.game__descr-title {
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 2px;

  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.game__descr-text {
  margin-bottom: 24px;
}
.game__descr-link {
  display: inline-block;
  /* button */
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Helvitica - Bolt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 16px 47px;
  border: 2px solid rgb(188, 16, 216);
}
.game__item {
  border: 2px solid rgb(188, 16, 216);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.game__item-img {
  margin-bottom: 10px;
}
.game__item-title {
  color: rgb(7, 7, 7);
  font-family: "Helvitica - Bolt", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
}
.game__item-text {
  margin-bottom: 40px;
}
.game__item-link {
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Helvitica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin-top: auto;
}
.buy {
  margin-bottom: 110px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
.buy .buy__btn {
  margin: 0 auto;
}
.buy__bg {
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 350px;
  font-weight: 700;
  line-height: 400px;
  opacity: 0.1;
  margin: 0 100px 30px;
  position: absolute;
  z-index: -1;
  text-align: center;
  animation: line-text 6s linear 1s infinite;
}

@keyframes line-text {
  from {
    transform: translateX(115%);
    transform-origin: left center;
  }
  to {
    transform: translateX(-115%);
    transform-origin: right center;
  }
}

.equipment {
  margin-bottom: 100px;
}

.equipment__title {
  margin-bottom: 50px;
}
.equipmen__box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px 30px;
}
.equipmen__box-item-img {
  margin-bottom: 10px;
}
.equipmen__box-item-title {
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Helvitica", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 41px;
  text-transform: uppercase;
}
.equipmen__box-item--one {
  grid-row: 1/-1;
}

.promo {
  margin-bottom: 100px;
}

.promo__inner {
  background-image: url(../images/promo.jpeg);
  min-height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.promo__btn {
  font-weight: 700;
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93) 100%
  );
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 80px;
}
.accessories {
  margin-bottom: 100px;
}
.accessories__title {
  margin-bottom: 30px;
}
.accessories__text {
  margin-bottom: 30px;
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Helvitica", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 41px;
  text-transform: uppercase;
}
.accessories__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.accessories__item {
  padding: 20px;
  border: 1px solid;
  border-image: linear-gradient(
      180deg,
      rgb(188, 16, 216),
      rgba(80, 0, 250, 0.93)
    )
    1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.accessories__item-title {
  color: rgb(7, 7, 7);
  font-family: "Helvitica", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
  min-height: 67px;
}
.accessories__item-text {
  color: rgb(92, 92, 94);
  font-family: "Helvitica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin-bottom: 42px;
  margin-top: auto;
}
.accessories__item-price {
  color: rgb(7, 7, 7);
  font-family: "Helvitica - Bolt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  margin-bottom: 20px;
  margin-top: auto;
}

.accessories__item-btn {
  background: linear-gradient(
    180deg,
    rgb(188, 16, 216),
    rgba(80, 0, 250, 0.93)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Helvitica - Bolt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  border: 1px solid;
  border-image: linear-gradient(
      180deg,
      rgb(188, 16, 216),
      rgba(80, 0, 250, 0.93)
    )
    1;
  padding: 6px;
  width: 100%;
}

.contacts {
  margin-bottom: 150px;
}
.contacts__title {
  color: rgb(7, 7, 7);
  font-family: "Helvitica", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
}
.contacts__inner {
  display: flex;
  flex-direction: column;
}

.form {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 10px;
  max-width: 600px;
}
.form__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cacad6;
  padding: 22px 70px 22px 0;
}
.form__input::placeholder {
  color: rgb(202, 202, 214);
  font-family: "Helvitica", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
}

.form__btn {
  width: 50px;
  height: 50px;
  background: rgb(202, 202, 214);
  border-radius: 50%;
  color: rgb(92, 92, 94);
  font-family: "Helvitica", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.contacts {
  margin-bottom: 100px;
}
.contacts__box-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contacts__text {
  color: rgb(92, 92, 94);
  font-family: "Helvitica", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
  margin-bottom: 20px;
  max-width: 600px;
}

.footer__social-list {
  display: flex;
  gap: 20px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 80px;
}

.footer__social-list {
  justify-self: end;
  align-self: center;
}
.footer {
  border-top: 1px solid #cacad6;
  border-bottom: 1px solid #cacad6;
  margin-bottom: 44px;
}

@media (max-width: 992px) {
  .tabs {
    display: block;
  }
  .tabs__btn {
    display: block;
    column-count: 2;
    margin: 0 auto;
  }
  .tabs__btn-item {
    display: block;
  }
  .games__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .accessories__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__nav {
    display: flex;
    justify-content: space-evenly;
}
}

@media (max-width: 820px) {
  .equipmen__box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
  .contacts__box-text {
    display: block;
  }
  .menu-btn {
    display: flex;
    align-self: center;
  }
  .menu {
    /* display: none; */
  transform: translateX(-200%);
  transition: transform 1.0s ease;
  display: flex;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  width: 320px;
  background-color: #F6F4F5;
  color: #070707;
  padding: 20px 0;
  justify-content: center;
  margin: 0 auto;
  }
  .menu.menu--active{
    transform: translateX(0%);
}
.header__menu-link{
  border: 1px solid #5c5c5e;
  border-radius: 30%;
  padding: 10px;
}
.footer__nav {
    display: flex;
    justify-content: space-evenly;
}
}

@media (max-width: 768px) {
  .top__title {
    font-size: 66px;
  }
  .top__sub-title {
    font-size: 24px;
  }
  
}
@media (max-width: 640px) {
  .buy__btn {
    flex-direction: column;
    margin: 0 auto;
  }
  .top {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .buy__bg {
    font-size: 150px;
    font-weight: 700;
    line-height: 150px;
  }
}

@media (max-width: 568px) {
  .features__titles {
    display: block;
  }
  .tabs__content {
  position: relative;
  min-height: 540px;
}
  .tabs__content-item {
    display: block;
    height: 0 ;
  }
  .tabs__content-item--active {
    height: auto ;
  }
  .video {
    width: auto;
    height: 250px;
    margin-top: 20px;
  }
  .tabs__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .games__inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .equipmen__box {
    display: block;
  }
  .equipmen__box-item-img {
    width: 100%;
  }
  .accessories__items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .contacts__text {
    font-size: 12px;
    line-height: 12px;
  }
  .nav {
  grid-template-columns: 1fr 2fr 1fr;
}
.tabs__content-img{
  height: 220px;
  width: 100%;
}
.game-title{
  margin-bottom: 0;
}
.footer__nav {
    display: flex;
    justify-content: space-evenly;
    gap: 7px;
}
}
@media (max-width: 435px) {
  .top__title {
    font-size: 48px;
  }
  .top__sub-title {
    font-size: 20px;
  }
.game-title{
  margin-bottom: 0;
}
.header__logo {
    justify-self: center;
    align-self: center;
    width: 90%;
}
}
