@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #111111;
  color: #FFF;
}

.img-fluid {
  max-width: 100%;
}

.img-border {
  border: 1px solid #333;
  border-radius: 20px;
}

.shadow {
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.3);
}

.shadow-glow {
  -webkit-box-shadow: 0px 4px 24px 0px rgba(130, 80, 250, 0.27);
          box-shadow: 0px 4px 24px 0px rgba(130, 80, 250, 0.27);
}

.cta {
  text-decoration: none;
  font-size: 16px;
  padding: 8px 28px;
  border-radius: 99px;
  background-color: #8250FA;
  color: #FFF;
  border: 1px solid transparent;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.cta:hover {
  background-color: #6930F0;
}

.cta--big {
  padding: 12px 36px !important;
  font-size: 20px !important;
}

.disabled {
  display: none;
}

.container {
  max-width: 1590px;
  margin: auto;
  padding: 0 2rem;
}

.inner-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

h1 {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h1 span {
  font-weight: 600;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  padding: 0 0 10px;
}

h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 400px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
}

/* Top Section */
.top {
  background: url("../img/top-bg.png") top center no-repeat;
  background-size: cover;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.top .top__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1590px;
  margin: auto;
  padding: 30px 1rem;
}

.top .top__content {
  padding: 149px 2rem;
  text-align: left;
}

.top .top__content h1 {
  padding-bottom: 32px;
  max-width: 644px;
}

.top .overlay {
  display: none;
}

@media screen and (max-width: 950px) {
  .top {
    background: url("../img/top-bg.png") top right no-repeat;
    background-position-x: 70%;
  }
  .top .overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100em;
    z-index: 1;
    background-color: #00000077;
  }
  .top .top__content {
    position: relative;
    z-index: 2;
    padding: 149px 2rem;
    text-align: center;
  }
  .top .top__content h1 {
    margin: auto;
  }
  .top .top__logo-wrapper {
    position: relative;
    z-index: 2;
    gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 620px) {
  .top {
    background: url("../img/top-bg.png") top right no-repeat;
    background-position-x: 70%;
  }
  .top .top__content {
    padding: 40px 2rem 90px;
  }
}

/* End Top Section */
/* Switcher Section */
.switcher {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.switcher .switcher__products, .switcher .switcher__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.switcher .switcher__products {
  position: absolute;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 350px;
  max-width: 600px;
  z-index: 2;
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.switcher .product-left {
  left: -3% !important;
}

.switcher .product-right {
  left: 103% !important;
}

@media screen and (min-width: 1800px) {
  .switcher .switcher__products {
    top: 79%;
    left: 50%;
  }
}

@media screen and (max-width: 950px) {
  .switcher .switcher__products {
    top: 77%;
    left: 48%;
  }
}

@media screen and (max-width: 700px) {
  .switcher .switcher__products {
    top: 71%;
    left: 48%;
  }
}

@media screen and (max-width: 670px) {
  .switcher .switcher__products {
    display: none;
  }
}

.switcher .switcher__buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
  border: 1px solid #333;
  max-width: 504px;
  margin: auto;
  background: #1A1A1A;
  border-radius: 15px;
  gap: 8px;
  z-index: 1;
}

.switcher .switcher--btn {
  height: 70px;
  width: 244px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #FFF;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-radius: 11px;
}

.switcher .switcher--btn:hover {
  background-color: #252032;
}

.switcher .btn--active {
  background-color: #252032;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(130, 80, 250, 0.27);
          box-shadow: 0px 4px 24px 0px rgba(130, 80, 250, 0.27);
  border: 1px solid #8250FA;
}

@media screen and (max-width: 542px) {
  .switcher .switcher__buttons {
    max-width: 304px;
    z-index: 1;
  }
}

/* End Switcher Section */
/* Alias Section */
.alias {
  position: relative;
  z-index: 999;
}

.alias .wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.alias .wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.alias .f-img {
  max-width: 450px;
  margin: auto;
}

@media screen and (max-width: 450px) {
  .alias .f-img {
    max-width: 100%;
    margin: auto;
  }
}

.alias .gaming-voice {
  text-align: center;
  padding: 30px 1rem 60px;
}

.alias .gaming-voice p {
  max-width: 881px;
  margin: auto;
  margin-bottom: 30px;
}

.alias .alt-f {
  padding: 60px 1rem !important;
}

.alias .black-features, .alias .white-features {
  text-align: center;
  padding: 30px 1rem;
  background-color: #000;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.alias .black-features .img-border, .alias .white-features .img-border {
  margin-bottom: 60px;
}

.alias .black-features p, .alias .white-features p {
  max-width: 881px;
  margin: auto;
  margin-bottom: 30px;
}

.alias .black-features .features__wrapper, .alias .white-features .features__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  text-align: left;
}

.alias .black-features .features__wrapper .features__item, .alias .white-features .features__wrapper .features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.alias .black-features .features__wrapper .features__item .item__text, .alias .white-features .features__wrapper .features__item .item__text {
  max-width: 644px;
}

.alias .black-features .features__wrapper .features__item .item__text p, .alias .white-features .features__wrapper .features__item .item__text p {
  max-width: 100%;
}

.alias .sonar {
  text-align: center;
  padding: 60px 1rem;
}

.alias .sonar p {
  max-width: 881px;
  margin: auto;
  margin-bottom: 30px;
}

.alias .sonar .sonar__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1320px;
  margin: 30px auto 0;
  gap: .5rem;
}

@media screen and (max-width: 1000px) {
  .alias .sonar .sonar__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}

.alias .sonar .sonar__wrapper .sonar__item {
  text-align: left;
  margin: auto;
  max-width: 414px;
  background-color: #1A1A1A;
  padding: 20px;
  min-height: 427px;
  border-radius: 20px;
}

.alias .sonar .sonar__wrapper .sonar__item .img-border {
  margin: 0 0 20px;
}

@media screen and (max-width: 875px) {
  .alias .sonar .sonar__wrapper .sonar__item {
    min-height: auto;
  }
}

.alias .white-features {
  background-color: #EBEBEB;
  padding: 60px 1rem;
  color: #000;
}

/* End Alias Section */
/* Products Section */
.products {
  text-align: center;
  padding: 60px 1rem;
  position: relative;
  z-index: 9999;
}

.products .products__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products .products__wrapper .p-wrapper__item {
  border: 1px solid #333;
  border-radius: 20px;
  background-color: #1A1A1A;
  padding: 20px;
}

.products .products__wrapper .p-wrapper__item h3 {
  padding-bottom: 20px;
}

.products .products__wrapper .p-wrapper__item .item--attr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.products .products__wrapper .p-wrapper__item .item--attr .attr__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 370px;
}

.products .products__wrapper .p-wrapper__item .item--attr .attr__wrapper .desc {
  font-size: 16px;
  font-weight: 300;
  color: #DADADA;
}

.products .products__wrapper .p-wrapper__item .item--attr .attr__wrapper .attr {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}

.products .products__wrapper .p-wrapper__item .cta-container {
  border-top: 1px solid #333;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 2rem;
}

@media screen and (max-width: 450px) {
  .products .products__wrapper .p-wrapper__item {
    min-width: 100%;
  }
  .products .products__wrapper .p-wrapper__item .item--attr {
    gap: 0;
    text-align: left;
  }
  .products .products__wrapper .p-wrapper__item .item--attr .attr__wrapper {
    width: 100%;
    margin-bottom: 1rem;
    gap: 0;
  }
  .products .products__wrapper .p-wrapper__item .desc {
    font-size: 10px;
    font-weight: 300;
    color: #DADADA;
  }
  .products .products__wrapper .p-wrapper__item .attr {
    font-size: 12px;
    font-weight: 600;
    color: #FFF;
  }
  .products .products__wrapper .p-wrapper__item .cta-container {
    padding: 1.5rem .5rem .5rem;
    margin-top: 1rem;
  }
}

/* End Products Section */
