.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%;
    }
}

.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 */