@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* General styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --g-offwhite: #f9f9f9;
  --g-offblack: #1a1a1a;
  --g-offblack-lighter: #333;
  --g-darkgray: #949494;
  --g-violet: #b980ff;
  --g-violet-darker: #8c61c2;
  --g-violet-semi-dark: #773dbd;
  --g-violet-darkest: #27143d;
}

/* Utilities */
.gamer .nobr {
  white-space: nowrap;
}

.gamer sup {
  line-height: 0;
  font-size: 15px;
}

.gamer .highlight {
  color: #fff;
  font-weight: 600;
}

.gamer .rectangle {
  background-color: #773dbd;
  width: 8px;
  height: 8px;
  margin-right: 8px;
}

.gamer__divider {
  background: rgb(70, 70, 70);
  background: radial-gradient(
    circle,
    rgba(80, 80, 80, 0.55) 10%,
    rgba(0, 0, 0, 1) 100%
  );
  width: 100%;
  height: 2px;
  opacity: 0.9;
}

.gamer__divider--left {
  width: 200%;
  position: relative;
  left: -70%;
}

.gamer__divider--right {
  width: 200%;
  position: relative;
}

.gamer__show {
  display: block !important;
}

.gamer__border-bottom {
  border-radius: 20px 20px 0 0 !important;
}

/* Main */
.gamer {
  font-family: "Rajdhani" !important;
  font-size: 16px;
  overflow: hidden;
  background: #000;
}

.gamer img {
  max-width: unset !important;
}

.gamer a {
  text-decoration: none;
  color: inherit;
}
.gamer a.underline {
  text-decoration: underline;
  color: var(--g-violet);
  transition: 0.3s;
}

.gamer a.underline:hover {
  color: var(--g-violet-darker);
}

/* Typography */
.gamer h1 {
  font-size: 2.81em !important;
  font-weight: 600 !important;
  color: var(--g-offwhite) !important;
  line-height: 56px !important;
}

.gamer h2 {
  font-size: 26px !important;
  line-height: 32px !important;
  color: #fff !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  padding-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  .gamer h2 {
    line-height: 42px !important;
    font-size: 37px !important;
  }
}

.gamer h3 {
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 24px !important;
}

.gamer h4 {
  color: #707070 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}

.gamer p {
  font-size: 16px !important;
  color: var(--g-darkgray) !important;
  line-height: 26px !important;
  font-weight: 500 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

@media screen and (min-width: 768px) {
  .gamer p {
    font-size: 18px !important;
  }
}

/* Buttons */
.gamer .btn {
  background-color: unset;
  border: 1px solid var(--g-violet);
  border-radius: 8px;
  width: 115px;
  color: var(--g-violet);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.15s;
  font-weight: 400;
  position: relative;
  top: 40px;
  cursor: pointer;
}

.gamer .btn:hover {
  background-color: var(--g-violet-darkest);
  border-color: var(--g-violet-darker);
}

.gamer .btn:active {
  opacity: 0.6;
}

.gamer .btn.disabled {
  color: #707070;
  border-color: #707070;
}

.gamer .btn.disabled:hover {
  color: #707070;
  border-color: #707070;
  background-color: unset;
}

.gamer .btn.disabled:active {
  color: #707070;
  border-color: #707070;
  background-color: unset;
  opacity: 1;
}

.gamer .btn.tab {
  border-radius: 8px;
  padding: 12px 19px;
  font-size: 14px;
  font-weight: 500;
}

/* Hero section */
.gamer__hero {
  width: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gamer__hero-bg {
  /*   width: 100%; */
  /* object-fit: cover; */
  /*   height: 300px; */
  /*   height: 300px; */

  width: 600px;
  object-fit: contain;
  padding-top: 20px;
}

@media screen and (min-width: 576px) {
  .gamer__hero-bg {
    width: 800px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__hero-bg {
    padding-top: 0;
    width: 1100px;
    /*   height: 500px; */
  }
}

.gamer__hero-logo {
  width: 78px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .gamer__hero-logo {
    width: 156px;
  }
}

.gamer__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 16px 48px 16px;
}

@media screen and (min-width: 576px) {
  .gamer__hero-copy {
    padding: 16px 32px 48px 32px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__hero-copy {
    padding-bottom: 96px;
  }
}

.gamer__hero-copy h2 {
  margin-top: 16px !important;
}

@media screen and (min-width: 768px) {
  .gamer__hero-copy h2 {
    font-size: 45px !important;
    margin-top: 40px !important;
    line-height: 56px !important;
  }
}

.gamer__hero-copy p:first-of-type {
  color: #ccc;
}

.gamer__hero-copy p:last-of-type {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .gamer__hero-copy p:last-of-type {
    margin-top: 32px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Overview section */
.gamer__overview {
  padding: 16px 16px 24px 16px;
  background: rgb(26, 26, 26);
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 576px) {
  .gamer__overview {
    justify-content: space-between;
    padding: 32px;
  }
}

.gamer__overview-card {
  background-color: var(--g-offblack);
  border: 1px solid var(--g-offblack-lighter);
  border-radius: 8px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.12), 0 8px 12px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  min-height: 100%;
  margin-bottom: 16px;
}

@media screen and (min-width: 576px) {
  .gamer__overview-card {
    max-width: calc(50% - 16px);
    margin-bottom: 32px;
  }

  .gamer__overview-card:nth-child(3) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1130px) {
  .gamer__overview-card {
    min-height: 100%;
  }
}

.gamer__overview-card:last-child {
  margin-bottom: 0;
}

.gamer__overview-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .gamer__overview-card-content {
    flex-direction: row;
    padding: 32px;
  }
}

.gamer__overview-card-content h3 {
  margin-top: 20px !important;
}

@media screen and (min-width: 768px) {
  .gamer__overview-card-content h3 {
    margin-top: 0 !important;
  }
}

.gamer__overview-card-content p {
  margin-top: 6px !important;
  color: #ccc;
}

.gamer__overview-card-icon {
  width: 48px;
  height: 48px;
}

.gamer__overview-card-copy h3 {
  text-transform: capitalize;
}

@media screen and (min-width: 768px) {
  .gamer__overview-card-copy {
    margin-left: 28px;
  }
}

/* Features section */
.gamer__features {
  padding: 48px 0;
  background: #000;
}

@media screen and (min-width: 1100px) {
  .gamer__features {
    padding: 96px 0 0 0;
  }
}

.gamer__features h2 {
  text-align: center !important;
  max-width: 300px !important;
  margin: 0 auto !important;
}

@media screen and (min-width: 1100px) {
  .gamer__features h2 {
    max-width: unset !important;
  }
}

.gamer__features-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 676px) {
  .gamer__features-wrapper {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1100px) {
  .gamer__features-wrapper {
    flex-direction: column;
  }
}

.gamer__features-image {
  height: 400px;
}

@media screen and (min-width: 768px) {
  .gamer__features-image {
    position: relative;
    height: 500px;
    left: unset;
  }
}

@media screen and (min-width: 1100px) {
  .gamer__features-image {
    height: unset;
    left: unset;
  }
}

.gamer__features-image.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 1s;
}

.gamer__features-slideshow-wrapper {
  position: relative;
  height: 400px;
}

@media screen and (min-width: 676px) {
  .gamer__features-slideshow-wrapper {
    left: 40px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__features-slideshow-wrapper {
    height: 500px;
  }
}

@media screen and (min-width: 1100px) {
  .gamer__features-slideshow-wrapper {
    left: unset;
    height: 700px;
  }
}

.gamer__features-list-mobile {
  display: table;
  width: auto;
  margin: 0 auto;
  margin-top: -18px;
}

@media screen and (min-width: 676px) {
  .gamer__features-list-mobile {
    position: relative;
    left: 220px;
    top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__features-list-mobile {
    position: relative;
    left: 220px;
    top: 10px;
  }
}

@media screen and (min-width: 1100px) {
  .gamer__features-list-mobile {
    display: none;
    top: unset;
    left: unset;
  }
}

.gamer__features-list-mobile .gamer__features-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  white-space: nowrap;
}

.gamer__features-list-mobile .gamer__features-list-item img {
  margin-left: 8px;
  position: absolute;
  right: -14px;
}

.gamer__features-list-mobile .gamer__features-list-item:last-child {
  margin-bottom: 0;
}

.gamer__features-list-mobile .games__features-argb {
  position: absolute;
  right: -20px;
  top: -30px;
}

.gamer__features-desktop-huds {
  display: none;
}

@media screen and (min-width: 1100px) {
  .gamer__features-desktop-huds {
    display: block;
    top: 0;
  }
}

.gamer__features-desktop-item {
  background: var(--g-violet-semi-dark);
  width: 294px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gamer__features-desktop-item span {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.gamer__features-list-item p {
  color: #fff;
}

.games__features-argb {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 40px;
  height: 0;
  width: 0;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 768px) {
  .games__features-argb {
    right: 62px;
  }
}

.games__features-argb img {
  position: absolute;
  height: 70px;
  width: 70px;
  top: 8px;
  left: -56px;
}

@media screen and (min-width: 1100px) {
  .games__features-argb img {
    height: 90px;
    width: 90px;
    left: -20px;
  }
}

.games__features-argb-default {
  z-index: 1;
}

.games__features-argb-outline {
  transform: scale(0.8);
  animation: pulsergb 0.7s infinite alternate;
  opacity: 0.8;
}
@keyframes pulsergb {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.15);
  }
}
.games__features-argb-hover {
  opacity: 0;
  transition: 0.3s;
}

.games__features-argb:hover > .games__features-argb-outline {
  animation: unset;
}
.games__features-argb:hover > .games__features-argb-hover {
  opacity: 1;
}

/* Banner section */
.gamer__banner {
  background: #000;
  overflow: hidden;
}

.gamer__banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gamer__banner h2 {
  position: absolute;
  text-align: center;
}

.gamer__banner-bg {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 576px) {
  .gamer__banner-bg {
    height: 220px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__banner-bg {
    height: 300px;
  }
}

/* Main section */
.gamer__main {
  padding: 64px 16px 0 16px;
  background: #000;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 576px) {
  .gamer__main {
    flex-direction: row;
    padding: 0;
    align-items: center;
    height: 560px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__main {
    flex-direction: row;
    padding: 0;
    align-items: center;
    height: 680px;
  }
}

.gamer__main-light-overlay {
  background: linear-gradient(
    140deg,
    rgba(26, 26, 26, 0.5) 30%,
    rgba(0, 0, 0, 1) 50%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
}

@media screen and (min-width: 576px) {
  .gamer__main-light-overlay {
    width: 45%;
  }
}

.gamer__main-pattern-overlay {
  background-image: linear-gradient(
      160deg,
      rgba(50, 50, 50, 0.3) 0%,
      rgba(0, 0, 0, 1) 50%
    ),
    url(../img/layout/x-pattern-2.svg);
  background-repeat: no-repeat;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 10px;
  margin-top: 10px;
  height: 90%;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 576px) {
  .gamer__main-pattern-overlay {
    width: 50%;
  }
}

.gamer__main-gradient-overlay {
  display: none;
}

@media screen and (min-width: 576px) {
  .gamer__main-gradient-overlay {
    display: block;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 15%,
      #000000 54%
    );
  }
}

.gamer__main-copy {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 576px) {
  .gamer__main-copy {
    flex-basis: 50%;
    left: 32px;
    max-width: 460px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__main-copy {
    left: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .gamer__main-copy {
    left: 100px;
  }
}

.gamer__main-copy h2 {
  text-align: left;
  margin-bottom: 12px;
}

.gamer__main-copy p {
  padding-right: 25px !important;
  margin-bottom: 40px !important;
}

@media screen and (min-width: 576px) {
  .gamer__main-copy p {
    margin-bottom: 0 !important;
    padding-right: 0 !important;
    max-width: 480px;
  }
}

.gamer__main-copy-features {
  margin-top: 14px;
  margin-bottom: 40px;
}

.gamer__main-copy-features-item {
  display: flex;
  align-items: center;
  height: 32px;
  margin-bottom: 8px;
}

.gamer__main-copy-features-item:last-child {
  margin-bottom: 0;
}

.gamer__main-copy-features-item p {
  margin-left: 20px !important;
  margin-bottom: 0 !important;
  line-height: 16px !important;
}

.gamer__main-copy-features-item img {
  height: 32px;
  width: auto;
}
.gamer__main-copy-features-item:first-child img {
  height: 32px;
  width: auto;
}

.gamer__main-image {
  margin-left: -16px;
  display: flex;
  z-index: 10;
}

@media screen and (min-width: 576px) {
  .gamer__main-image {
    flex-basis: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: unset;
  }
}

.gamer__main-image img {
  width: calc(100% + 32px);
  height: 100%;
  object-fit: cover;
  object-position: right;
}

@media screen and (min-width: 576px) {
  .gamer__main-image img {
    object-position: 60%;
  }
}

@media screen and (min-width: 768px) {
  .gamer__main-image img {
    object-position: top;
  }
}

/* Main reverse section */

@media screen and (min-width: 576px) {
  .gamer__main.reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 576px) {
  .gamer__main-gradient-overlay.reverse {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 15%, #000000 54%);
  }
}

.gamer__main-pattern-overlay.reverse {
  background-image: url(../img/layout/x-pattern-1.svg);
  left: unset;
  right: 0;
  opacity: 1;
  width: 295px;
}

.gamer__main-light-overlay.reverse {
  background: linear-gradient(
    -140deg,
    rgba(26, 26, 26, 0.5) 30%,
    transparent 50%
  );
  z-index: 1;
  right: 0;
  left: unset;
}

@media screen and (min-width: 576px) {
  .gamer__main-copy.reverse {
    left: unset;
    right: 32px;
    max-width: 460px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__main-copy.reverse {
    right: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .gamer__main-copy.reverse {
    right: 100px;
  }
}

.gamer__main-copy h2 {
  text-align: left !important;
  margin-bottom: 12px !important;
}

.gamer__main-copy p {
  padding-right: 25px;
  margin-bottom: 40px;
}

@media screen and (min-width: 576px) {
  .gamer__main-copy p {
    margin-bottom: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 576px) {
  .gamer__main-image.reverse {
    position: absolute;
    left: 0;
    right: unset;
  }
}

.gamer__main-image img {
  width: calc(100% + 32px);
  height: 100%;
  object-fit: cover;
  object-position: right;
}

@media screen and (min-width: 576px) {
  .gamer__main-image img {
    object-position: 60%;
  }
}

@media screen and (min-width: 768px) {
  .gamer__main-image img {
    object-position: top;
  }
}

/* Producers section */
.gamer__producers {
  background: #000;
  padding: 48px 16px;
}

.gamer__producers h2 {
  text-align: center !important;
  margin-bottom: 24px !important;
}

@media screen and (min-width: 768px) {
  .gamer__producers h2 {
    font-size: 31px;
    line-height: 40px;
  }
}

.gamer__producers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.gamer__producers-logos-item {
  height: 40px;
  width: 80px;
}

@media screen and (min-width: 576px) {
  .gamer__producers-logos-item {
    height: 56px;
    width: 112px;
    margin: 0 8px;
  }
}

/* Compare games section */
.gamer__compare {
  padding-bottom: 50px;
  background: rgb(117, 60, 186);
  background: radial-gradient(
    ellipse at 50% 200%,
    rgba(117, 60, 186, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media screen and (min-width: 768px) {
  .gamer__compare {
    padding-bottom: 96px;
  }
}

.gamer__compare .gamer__banner {
  position: relative;
  height: 128px;
}

@media screen and (min-width: 576px) {
  .gamer__compare .gamer__banner {
    height: 180px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__compare .gamer__banner {
    height: 260px;
  }
}

.gamer__compare .gamer__banner-bg {
  object-position: right;
}

.gamer__compare .gamer__banner-gradient-overlay {
  background: linear-gradient(
    180deg,
    rgba(70, 70, 70, 0) 20%,
    rgba(0, 0, 0, 1) 100%
  );
  position: absolute;
  height: 100%;
  width: 100%;
}

.gamer__compare-wrapper {
  background: var(--g-offblack);
  border: 1px solid var(--g-offblack-lighter);
  padding: 40px 16px;
  border-radius: 8px;
}

@media screen and (min-width: 576px) {
  .gamer__compare-wrapper {
    padding: 40px 36px;
    margin: 0 32px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__compare-wrapper {
    padding: 40px 48px;
    margin: 0 60px;
  }
}
@media screen and (min-width: 1100px) {
  .gamer__compare-wrapper {
    padding: 40px 48px;
    margin: 0 100px;
  }
}

@media screen and (min-width: 576px) {
  .gamer__compare-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 678px) {
  .gamer__compare-choose-game {
    display: flex;
    align-items: center;
  }
}

.gamer__compare-wrapper h4 {
  margin-bottom: 8px !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
  color: #cccccc !important;
}

@media screen and (min-width: 678px) {
  .gamer__compare-wrapper h4 {
    margin-bottom: 0 !important;
    margin-right: 8px !important;
  }
}

.gamer__compare-dropdown {
  border: 1px solid var(--g-violet);
  border-radius: 20px;
  width: 100%;
  height: 40px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: background-color 0.3s, border-color 0.3s;
  user-select: none;
}

@media screen and (min-width: 576px) {
  .gamer__compare-dropdown {
    width: 180px;
  }
}

.gamer__compare-dropdown:hover {
  background: var(--g-violet-darkest);
  cursor: pointer;
  border-color: var(--g-violet-darker);
}

.gamer__compare-dropdown:active {
  background-color: rgba(39, 20, 61, 0);
}

.gamer__compare-dropdown svg {
  width: 14px;
}

.gamer__compare-dropdown-item {
  font-size: 16px;
  line-height: 20px;
  font-family: "Rajdhani";
  font-weight: 500;
}

.gamer__compare-dropdown.open {
  display: none;
  align-items: flex-start;
  flex-direction: column;
  height: 160px;
  width: calc(100% - 36px);
  border-radius: 0 0 20px 20px;
  border-top: none;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  z-index: 10;
  background: var(--g-offblack);
}

@media screen and (min-width: 576px) {
  .gamer__compare-dropdown.open {
    width: 180px;
  }
}

.gamer__compare-dropdown.open:hover {
  background: var(--g-offblack);
  border-color: var(--g-violet-semi-dark);
  font-weight: 400;
}

.gamer__compare-dropdown.open .gamer__compare-dropdown-item {
  color: var(--g-darkgray);
  padding: 10px 20px;
  width: 100%;
}

.gamer__compare-dropdown.open .gamer__compare-dropdown-item:hover {
  background-color: var(--g-offblack-lighter);
  color: #fff;
}

.gamer__compare-dropdown.open::-webkit-scrollbar {
  width: 8px;
}

.gamer__compare-dropdown.open::-webkit-scrollbar-track {
  background: #2f2f2f;
  border: 1px solid #4d4d4d;
  border-radius: 0 0 20px 20px;
  margin-bottom: 12px;
}

.gamer__compare-dropdown.open::-webkit-scrollbar-thumb {
  background: var(--g-offblack);
  border: 1px solid #4d4d4d;
  border-radius: 20px;
}

.gamer__compare-tabs-wrapper {
  display: inline-flex;
  border-bottom: 1px solid var(--g-offblack-lighter);
  position: relative;
  margin-top: 24px;
  margin-bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 576px) {
  .gamer__compare-tabs-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    left: unset;
    transform: unset;
  }
}

.gamer__compare-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 48px;
  color: var(--g-darkgray);
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  user-select: none;
  border-radius: 2px 2px 0 0;
  transition: 0.3s;
  position: relative;
  bottom: -1px;
}

.gamer__compare-tab#high {
  color: #fff;
}

.gamer__compare-tab:hover {
  background: var(--g-offblack-lighter);
  cursor: pointer;
  color: #fff;
}

.gamer__compare-tab:active {
  background: #4d4d4d;
}

.gamer__compare-tab-active {
  display: flex;
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 10px;
  transition: left 0.3s cubic-bezier(0.21, 0.95, 0.52, 0.96);
}

.gamer__compare-tab-active-triangle-left {
  width: 0;
  height: 0;
  border-bottom: 5px solid var(--g-violet-semi-dark);
  border-left: 5px solid transparent;
}

.gamer__compare-tab-active-rectangle-middle {
  height: 5px;
  width: 60px;
  background: var(--g-violet-semi-dark);
}

.gamer__compare-tab-active-triangle-right {
  width: 0;
  height: 0;
  border-bottom: 5px solid var(--g-violet-semi-dark);
  border-right: 5px solid transparent;
}

.gamer__compare-chart-wrapper {
  min-height: 360px;
}

#gamer__compare-chart-game-name {
  text-align: center;
  margin-bottom: 10px !important;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500 !important;
  color: #949494 !important;
}

@media screen and (min-width: 576px) {
  #gamer__compare-chart-game-name {
    margin-top: 28px;
  }
}

/* Services section */
.gamer__services {
  background: var(--g-offblack);
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 576px) {
  .gamer__services {
    background: var(--g-offblack);
    padding: 48px 32px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__services {
    padding: 96px 0;
  }
}

@media screen and (min-width: 768px) {
  .gamer__services-copy {
    max-width: 720px;
    margin: 0 60px;
  }
}

.gamer__services h2 {
  margin-bottom: 40px !important;
}

@media screen and (min-width: 768px) {
  .gamer__services h2 {
    text-align: center !important;
    margin-bottom: 56px !important;
  }
}

.gamer__services h3 {
  margin-bottom: 8px !important;
  font-size: 22px !important;
  line-height: 28px !important;
}

.gamer__services img {
  margin-bottom: 16px;
  height: 48px;
}

.gamer__services-card {
  margin-bottom: 40px;
}

.gamer__services-card:last-child {
  margin-bottom: 0;
}
.gamer__services-card:nth-child(4) img {
  height: 80px;
}

@media screen and (min-width: 768px) {
  .gamer__services-card {
    display: flex;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .gamer__services-card-copy {
    position: relative;
    left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__services-card-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 80px;
    top: -10px;
  }
}

/* Upgrade */
.gamer__upgrade {
  position: relative;
  padding-bottom: 16px;
  margin: 0 12px;
}

@media screen and (min-width: 768px) {
  .gamer__upgrade {
    padding-bottom: 64px;
  }
}

.gamer__upgrade .gamer__banner {
  position: relative;
  height: 196px;
}

@media screen and (min-width: 576px) {
  .gamer__upgrade .gamer__banner {
    height: 180px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__upgrade .gamer__banner {
    height: 260px;
  }
}

.gamer__upgrade .gamer__banner-copy {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 48px;
}

@media screen and (min-width: 768px) {
  .gamer__upgrade .gamer__banner-copy {
    top: 114px;
  }
}

.gamer__upgrade .gamer__banner h2 {
  font-weight: 600 !important;
  position: unset !important;
  margin-bottom: 8px !important;
}

.gamer__upgrade .gamer__banner p {
  text-align: center !important;
  max-width: 680px !important;
  padding: 0 28px !important;
  font-size: 18px !important;
}

.gamer__upgrade .gamer__banner-bg {
  object-position: center;
  width: 100%;
  height: 100%;
}

.gamer__upgrade .gamer__banner-gradient-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 1) 100%
  );
  position: absolute;
  height: 100%;
  width: 100%;
}

.gamer__upgrade-wrapper {
  margin: 0;
  margin-top: 20px;
}

@media screen and (min-width: 576px) {
  .gamer__upgrade-wrapper {
    margin: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .gamer__upgrade-wrapper {
    margin-top: 20px;
    margin: 0 12px;
  }
}

.gamer__upgrade-wrapper p {
  font-size: 20px !important;
  color: #fff !important;
  text-align: center !important;
  margin-top: 12px !important;
  margin-bottom: 32px !important;
}

.gamer__upgrade-cards-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 576px) {
  .gamer__upgrade-cards-wrapper {
    flex-direction: row;
    justify-content: center;
    margin: 0 10px;
  }
}

@media screen and (min-width: 768px) {
  .gamer__upgrade-cards-wrapper {
    margin: 0 16px;
  }
}
.gamer__upgrade-card {
  background: var(--g-offblack);
  border: 1px solid var(--g-offblack-lighter);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.2s;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}

.gamer__upgrade-card:hover {
  background: var(--g-offblack-lighter);
  border: 1px solid var(--g-violet-semi-dark);
}

.gamer__upgrade-card img {
  width: 100%;
  padding: 24px;
}

.gamer__upgrade-promo {
  background: var(--g-violet-semi-dark);
  padding: 4px 15px;
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 576px) {
  .gamer__upgrade-promo {
    font-size: 17px;
    border-radius: 5px;
  }
}

@media screen and (min-width: 976px) {
  .gamer__upgrade-promo {
    padding: 8px 24px;
    font-size: 20px;
  }
}

/* Products section */
.gamer__products {
  background: var(--g-offblack);
  padding: 48px 0 100px 0;
}

@media screen and (min-width: 768px) {
  .gamer__products {
    padding: 72px 42px 96px 42px;
  }
}
@media screen and (min-width: 1100px) {
  .gamer__products {
    padding: 72px 90px 96px 90px;
  }
}

@media screen and (min-width: 976px) {
  .gamer__products .hide-desktop {
    display: none;
  }
}

.gamer__products-top-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 976px) {
  .gamer__products-top-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.gamer__products h2 {
  text-align: center !important;
  margin-bottom: 24px !important;
}

.gamer__products .tab {
  margin: 0 4px;
  width: 138px;
  height: 40px;
  position: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gamer__products-switch {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (min-width: 976px) {
  .gamer__products-switch {
    display: none;
  }
}

.gamer .hide-mobile {
  display: none;
}
@media screen and (min-width: 976px) {
  .gamer .hide-mobile {
    display: revert;
  }
}

.gamer__products-table--2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  height: 220px;
}

.gamer__products-features-item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding: 16px;
  margin: 0 auto;
  max-width: 424px;
}

.gamer__products-features-item:first-child {
  margin-top: 24px;
}

.gamer__products-features-item:last-child {
  border-bottom: 1px solid #333;
  background: rgba(0, 0, 0, 0.3);
}

.gamer__products-features-item span {
  width: 50%;
}
.gamer__products-features-item span:first-child {
  color: #fff;
  font-weight: 600;
  line-height: 24px;
  font-size: 16px;
}

.gamer__products-features-item span:last-child {
  color: #ccc;
  font-size: 16px;
  line-height: 24px;
}

.gamer__products-features-desktop-wrapper {
  width: 100%;
}

.gamer__products-features-desktop-items-wrapper {
  width: 25%;
}

.gamer__products-features-desktop-item {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
  border-top: 1px solid #333;
  padding: 16px;
}

.gamer__products-features-desktop-item:last-of-type {
  background: rgba(0, 0, 0, 0.3);
}

.gamer__products-features-desktop-items-wrapper
  > .gamer__products-features-desktop-item:first-of-type {
  margin-top: 40px;
}

.gamer__products-features-desktop-item:first-child div {
  margin-top: 50px;
}
.gamer__products-features-desktop-item {
  color: #ccc;
}

.gamer__products-features-desktop-item span:first-child {
  color: #fff;
  font-weight: 600;
  line-height: 24px;
  font-size: 16px;
}

.gamer__products-features-desktop-item span:last-child {
  color: #ccc;
  font-size: 16px;
  line-height: 24px;
}

.gamer__products-features-button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.gamer__products-features-button .btn {
  width: calc(100% - 32px);
  border-radius: 200px;
  font-weight: 500;
  margin: 0 auto;
  top: unset;
  position: absolute;
}
@media screen and (min-width: 400px) {
  .gamer__products-features-button .btn {
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .gamer__products-features-button .btn {
    width: 126px;
    position: relative;
    top: 10px;
  }
}

.gamer__products-features-desktop-row {
  display: flex;
  justify-content: center;
}

.gamer__products-features-desktop-row div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gamer__products-features-desktop-row:last-child div {
  align-items: flex-start;
  flex-direction: row;
}

.gamer__products-features-desktop-wrapper {
  display: flex;
  flex-direction: column;
}

.feature1,
.feature2,
.feature3,
.feature4 {
  font-weight: 600;
  color: #fff;
  justify-content: flex-start;
}

@media screen and (min-width: 976px) {
  .feature1,
  .feature2,
  .feature3,
  .feature4 {
  }
}

#cta-2 {
  display: none;
}
/* Products slider */
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}
.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.tns-slider > .tns-item h3 {
  font-size: 22px;
  line-height: 28px;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.tns-autowidth {
  display: inline-block;
}
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}
.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .tns-ovh {
    overflow: visible;
  }
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}
.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div,
.tns-vpfix > li {
  display: inline-block;
}
.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/* Footer */
.gamer__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

@media screen and (min-width: 768px) {
  .gamer__footer {
    padding: 60px;
  }
}

.gamer__footer img {
  width: 100px;
}

@media screen and (min-width: 768px) {
  .gamer__footer img {
    width: 140px;
  }
}

/* Copy info */
.gamer__copy-info {
  padding: 32px 16px;
  padding-top: 0;
}

@media screen and (min-width: 576px) {
  .gamer__copy-info {
    padding: 42px;
    padding-top: 0;
  }
}
.gamer__copy-info p {
  font-size: 14px !important;
  line-height: 24px !important;
  opacity: 0.6;
  margin-bottom: 10px;
}

.gamer__copy-info p:last-child {
  margin-bottom: 0;
}

.gamer__review_container {
  margin: 0 auto;
}

.gamer__review-icon {
  width: 140px;
  margin-right: 50px;
}

.gamer__review_title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  align-items: center;
}

.gamer__review {
  display: flex;
}

.gamer__review-copy h2 {
  font-size: 28px !important;
  color: #b980ff !important;
}

.gamer__review-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.gamer__review-image {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .gamer__review_container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 60px;
  }

  .gamer__review-copy {
    margin-right: 80px;
  }
}

@media screen and (max-width: 768px) {
  .gamer__review {
    flex-direction: column-reverse;
  }

  .gamer__review_container {
    padding: 48px 32px;
  }

  .gamer__review-copy {
    margin-top: 30px;
  }
}
