.kv img {
  width: 100%;
}

.pd {
  padding: 40px 0;
}

@media (min-width: 996px) {
  .pd {
    padding: 60px 0;
  }
}

.pd__box {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

@media (min-width: 996px) {
  .pd__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 996px) {
  .pdCard {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.pdCard-img {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
}

.pdCard h3, .pdCard h4 {
  font-size: 18px;
}

@media (min-width: 996px) {
  .pdCard h3, .pdCard h4 {
    font-size: 20px;
  }
}

.pdCard h3 {
  padding: 10px 0;
}

.pdCard a {
  display: inline-block;
  background: var(--color);
  color: #000;
  border: var(--color) 1px solid;
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 10px;
}

.pdCard a:hover {
  background: none;
  color: var(--color);
}

.buynow__box {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

@media (min-width: 996px) {
  .buynow__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
  }
}

.buynowCard {
  position: relative;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  overflow: hidden;
}

@media (min-width: 996px) {
  .buynowCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    width: calc(50% - 40px);
    padding-bottom: 50px;
  }
  .buynowCard__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .buynowCard__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
  }
}

.buynowCard-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.buynowCard-icon img {
  width: 50px;
}

@media (min-width: 996px) {
  .buynowCard-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    gap: 5px;
  }
}

.buynowCard-pd {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
  padding: 10px 0;
}

.buynowCard-pd img {
  -webkit-filter: drop-shadow(#666 0 0 30px);
          filter: drop-shadow(#666 0 0 30px);
}

.buynowCard-gift {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
  background: none;
}

@media (min-width: 996px) {
  .buynowCard-gift {
    padding-top: 15px;
  }
}

.buynowCard h3 {
  font-size: var(--title-sm);
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
  font-weight: 900;
  margin: 15px 0;
}

@media (min-width: 996px) {
  .buynowCard h3 {
    margin: 0 0 10px;
  }
}

.buynowCard ul {
  margin-left: 20px;
  list-style: none;
  text-align: left;
  padding-bottom: 10px;
}

.buynowCard ul li {
  list-style: disc;
  font-size: 15px;
}

.buynowCard-discount {
  display: inline-block;
  border: #707070 1px solid;
  padding: 2px 8px;
  margin: 10px auto;
  font-size: 14px;
}

.buynowCard-price {
  padding-bottom: 10px;
  font-size: 16px;
}

.buynowCard-price del {
  margin-right: 10px;
  font-size: 15px;
}

.buynowCard-price span {
  font-size: 22px;
  font-weight: bold;
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
}

@media (min-width: 996px) {
  .buynowCard-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

.buynowCard-btn button {
  width: 100%;
  background: #333;
  color: #fff;
  border: none;
  border-top: var(--color) 2px solid;
  padding: 10px 20px;
  font-size: var(--title-sm);
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
  cursor: pointer;
  text-transform: uppercase;
}

.buynowCard-btn button:hover {
  opacity: 0.9;
  background: var(--color);
}

.popout {
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.popout__block {
  position: relative;
  background: #1a1a1a;
  border-radius: 30px;
  width: 100%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 50px;
}

.popout__block-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.popout__block-close svg {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #666;
}

.popout__block-close svg:hover {
  background: #999;
}

.popout__dm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  overflow-y: auto;
  max-height: 400px;
}

.popout__dm a {
  background: #fff;
  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;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.popout__dm a img {
  width: 50%;
}

@media (min-width: 768px) {
  .popout__dm a {
    width: calc(50% - 10px);
  }
}

@media (min-width: 996px) {
  .popout__dm a {
    width: calc(33% - 10px);
  }
  .popout__dm a img {
    width: 60%;
  }
}

.redeem-btns {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

.redeem-btns a {
  width: 100%;
  text-align: center;
}

@media (min-width: 996px) {
  .redeem {
    padding: 60px 0;
  }
  .redeem__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 20px;
  }
  .redeem__step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .redeem-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .redeem-btns a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.dealer {
  padding: 40px 0;
}

.wtb__box {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  margin: 25px auto 40px;
}

.wtb__box:first-child {
  margin-top: 0;
}

.wtb__box-MainTitle {
  font-size: var(--title-md);
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
  text-align: center;
  padding: 10px;
  background: #333;
}

.wtb__box-info {
  border-top: #333 1px solid;
  border-bottom: #333 1px solid;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.wtb__box-info:hover {
  background: #222;
}

.wtb__box-info::after {
  content: "\ea11";
  font-family: "msi-icons";
}

.wtb__box .toggleBox {
  display: table;
  background: #222;
  display: none;
}

.wtb__box .toggleBox ul {
  display: table-row;
}

.wtb__box .toggleBox ul:first-child li {
  background: #555;
  border-bottom: var(--color) 4px solid;
  font-weight: bold;
}

.wtb__box .toggleBox ul li {
  display: table-cell;
  padding: 10px 20px;
  text-align: center;
  border-right: #333 1px solid;
  border-bottom: #333 1px solid;
  font-size: 15px;
  text-align: left;
}

.wtb__box .toggleBox ul li:last-child {
  border-right: none;
  width: 50%;
}

.wtb__box .toggleBox ul li:nth-child(1) {
  width: 30%;
}

.wtb__box .toggleBox ul a {
  color: #fff;
}

.wtb__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wtb__table > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 15px;
  border-right: #333 1px solid;
}

@media (min-width: 996px) {
  .wtb__table > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.wtb__table > div:last-child {
  border: none;
}

.wtb__table > div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #999;
  border: #666 2px solid;
}

.wtb__table > div a:hover {
  border-color: var(--color);
}

@media (min-width: 996px) {
  .wtb__table > div a {
    margin-left: 10px;
  }
}

.wtb__table > div a img {
  width: 80%;
  height: auto;
}

.point {
  background: #1a1a1a;
  padding: 40px 0;
}

.point__box {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 15px;
}

.point h3 {
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 8px;
}

@media (min-width: 996px) {
  .point {
    padding: 60px 0;
  }
  .point__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 20px;
  }
  .pointCard {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(25% - 40px);
  }
}

.data {
  padding: 40px 0;
}

@media (min-width: 996px) {
  .data {
    padding: 60px 0;
  }
}

.data-note {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 40px;
  font-size: 14px;
  opacity: .6;
}

.rtx {
  position: relative;
  z-index: 0;
}

.rtx-img {
  position: relative;
  z-index: 0;
}

@media (min-width: 996px) {
  .rtx-img {
    margin-top: -5vw;
  }
}

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

.studio {
  position: relative;
  z-index: 0;
}

.studio-img {
  position: relative;
  z-index: 0;
}

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

@media (min-width: 996px) {
  .studio__box {
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .studio__text {
    text-align: left;
    width: 50%;
  }
  .studio-img {
    margin-left: 45%;
  }
}

.feature {
  background: #1a1a1a;
  padding: 40px 0;
}

.feature__box {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 15px;
}

.feature h3 {
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 8px;
  font-size: var(--title-md);
  font-weight: bold;
}

.feature h4 {
  padding: 20px 0 5px;
  font-size: 16px;
}

.feature img {
  width: 100%;
}

@media (min-width: 996px) {
  .feature {
    padding: 60px 0;
  }
  .feature__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 20px;
    gap: 80px;
  }
  .featureCard {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 80px);
    text-align: left;
  }
}

.popup {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.popup__inner {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  height: auto;
  background: #000;
  border: var(--color) 2px solid;
  color: #fff;
}

.popup__close {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 100%;
}

.popup__close:hover::before {
  background: none;
  color: var(--color);
}

.popup__close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: calc( 100% + 2px);
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color);
  border: var(--color) 1px solid;
  cursor: pointer;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

@media (min-width: 996px) {
  .popup__close::before {
    width: 50px;
    height: 50px;
  }
}

.popup__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  background: var(--color);
}

@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}

.popup__content {
  height: 80vh;
  overflow-y: auto;
  padding: 25px;
}

.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.popup__content::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#737576), color-stop(#bdbfc3), to(#96999c));
  background: linear-gradient(to bottom, #737576, #bdbfc3, #96999c);
  border-radius: 10px;
}

@media (min-width: 996px) {
  .popup__content {
    padding: 0 50px 50px;
  }
}

.terms-title {
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
  font-weight: 900;
  font-size: var(--title-md);
  padding-top: 25px;
  padding-bottom: 15px;
}

.terms-title span {
  background: linear-gradient(35deg, var(--color), #bde3af);
  background-clip: text;
  color: transparent;
}

.terms h4 {
  margin: 25px 0 15px;
}

.terms-pd {
  display: table;
  border-collapse: collapse;
  border: #333 4px solid;
}

.terms-pd .tr {
  display: table-row;
}

.terms-pd .th, .terms-pd .td {
  display: table-cell;
  padding: 10px;
  border: #444 1px solid;
}

.terms-pd .th {
  background: #222;
  font-weight: bold;
}

.terms a {
  color: #fff;
  position: relative;
}

.terms a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: linear-gradient(35deg, var(--color), #bde3af);
}

.terms a:hover {
  color: var(--color);
}

.terms a:hover::before {
  background: linear-gradient(-35deg, var(--color), #bde3af);
}

.terms p {
  padding-bottom: 15px;
}

.terms ul {
  margin-left: 20px;
}

.terms ul li {
  padding: 8px 0;
}

.terms ul.list-roman li {
  list-style: lower-roman;
}

.terms ul.list-disc li {
  list-style: disc;
}

.terms ul.list-disc li ul li {
  list-style: lower-alpha;
}

.footer .logos {
  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: 20px;
  padding: 60px 0;
}

@media (min-width: 996px) {
  .footer .logos {
    gap: 80px;
  }
}

.footer .logos img {
  max-height: 50px;
  vertical-align: middle;
}

.footer p {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  font-size: 14px;
  opacity: .6;
  padding-bottom: 20px;
}

@media (min-width: 996px) {
  .footer p {
    text-align: left;
  }
}

.project {
  --color: #76b900;
  position: relative;
  color: #fff;
  background: #000;
  font-family: "NVIDIASans_W_Rg", var(--MSIBodyFont);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
}

.project img {
  max-width: 100%;
  vertical-align: bottom;
}

.project picture {
  display: block;
}

.project .common-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 25px;
}

.project .common-title {
  font-size: var(--title-xl);
  font-family: "NVIDIASans_W_Bd", var(--MSIBodyFont);
  padding-bottom: 20px;
}

.project .common-titleSub {
  font-size: var(--title-lg);
}

.project .common-btn {
  background: var(--color);
  color: #000;
  border: var(--color) 1px solid;
  padding: 8px 10px;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
  cursor: pointer;
}

.project .common-btn:hover {
  background: none;
  color: var(--color);
}
/*# sourceMappingURL=main.css.map */