/* CSS Document */


/* CSS Document */

@font-face {
    font-family: "DINEngschrift-Alternate";
    src: url("fonts/DINEngschrift-Alternate.eot");
    src: url("fonts/DINEngschrift-Alternate.eot?#iefix") format("embedded-opentype"), url("fonts/DINEngschrift-Alternate.woff") format("woff"), url("fonts/DINEngschrift-Alternate.ttf") format("truetype"), url("fonts/DINEngschrift-Alternate.svg#DINEngschrift-Alternate") format("svg");
}

@font-face {
    font-family: "DINCond-Regular";
    src: url("fonts/DINCond-Regular.eot");
    src: url("fonts/DINCond-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/DINCond-Regular.woff") format("woff"), url("fonts/DINCond-Regular.ttf") format("truetype"), url("fonts/DINCond-Regular.svg#DINCond-Regular") format("svg");
}

body {
    scroll-behavior: smooth;
    font-family: "DINPro-Regular", "DINCondMediumRegular", 'Nunito Sans', DINCond-Medium, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

a:focus,
a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

nav {
    background: #000;
}

img {
    max-width: 100%;
}

.ps-relative {
    position: relative;
}

.ps-absolute {
    position: absolute;
}

.align {
    text-align: center;
}

.align-l {
    text-align: left;
}

.margin-0 {
    margin: 0;
}

.margin-t-90 {
    margin-top: 90px;
}

.margin-b-30 {
    margin-bottom: 30px;
}

.margin-b-50 {
    margin-bottom: 50px;
}

.padding-80 {
    padding: 80px 0;
}

.padding-50 {
    padding: 50px 0;
}

.padding-20 {
    padding: 20px 0;
}

.padding-t-20 {
    padding-top: 20px;
}

.padding-b-20 {
    padding-bottom: 20px;
}

.padding-b-30 {
    padding-bottom: 30px;
}

.font_size_xl {
    font-size: 85px;
}

.font_size_l {
    font-size: 60px;
}

.font_size_s {
    font-size: 17px;
}

.font_size_xs {
    font-size: 16px;
}

.color_white {
    color: #fff;
}

.color_black {
    color: #000;
}

.color_light_gray {
    color: #d5d5d5;
}

.color_dark_gray {
    color: #2f2f2f;
}

.color_yellow {
    color: #ffe613;
}

.color_light_blue {
    color: #3dfffd;
}

.color_dark_blue {
    color: #1b367a;
}

.color_pink {
    color: #ce2c97;
}

.light_gray_bg {
    background: #d8d8d8;
}

.black_bg {
    background: #000;
}

.btn_bg {
    background-color: #df4a4b;
}

.font-w500 {
    font-weight: 500;
}

.font-w {
    font-weight: bold;
}

.float-L {
    float: left;
}

.float-R {
    float: right;
}


/* Button resets and style */

button {
    border: 0px solid #000;
    /* Initiate Auto-Pulse animations */
    /* Initiate color change for pulse-on-hover */
}

button.pulse-button {
    -webkit-animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in;
    animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in;
}

button.pulse-button-hover {
    -webkit-animation: colorShift 10000ms infinite ease-in;
    animation: colorShift 10000ms infinite ease-in;
}

button:hover,
button:focus {
    -webkit-animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in, hoverShine 200ms;
    animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in, hoverShine 200ms;
}


/* Declare border pulse animation */

@-webkit-keyframes borderPulse {
    0% {
        -webkit-box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 0px 0px white;
        box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 0px 0px white;
    }
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255, 0.2), 0px 0px 0px 10px rgba(255, 255, 255, 0);
        box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255, 0.2), 0px 0px 0px 10px rgba(255, 255, 255, 0);
    }
}

@keyframes borderPulse {
    0% {
        -webkit-box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 0px 0px white;
        box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 0px 0px white;
    }
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255, 0.2), 0px 0px 0px 10px rgba(255, 255, 255, 0);
        box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255, 0.2), 0px 0px 0px 10px rgba(255, 255, 255, 0);
    }
}


/* Declare shine on hover animation */

@-webkit-keyframes hoverShine {
    0% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    }
    50% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    }
    100% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
    }
}

@keyframes hoverShine {
    0% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    }
    50% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    }
    100% {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px !important;
        margin: 0 auto;
    }
}

.kv_wrapper {
    background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg.png") no-repeat top center;
    width: 100%;
    height: 1110px;
}

.kv_wrapper .kv_block {
    position: relative;
}

.kv_wrapper .kv_block .RTX_icon {
    position: absolute;
    right: -73px;
    top: 30px;
}

.kv_wrapper .kv_block .kv_title {
    position: absolute;
    top: 25px;
}

.kv_wrapper .kv_block .kv_title #msi_logo {
    display: none;
}

.kv_wrapper .kv_block .kv_title span {
    font-size: 195px;
    line-height: 160px;
    font-family: 'Bebas Neue', sans-serif;
    display: block;
}

.kv_wrapper .kv_block .kv_title span:nth-child(2) {
    font-size: 159px;
    letter-spacing: 1px;
    line-height: 100px;
}

.kv_wrapper .kv_block .kv_title span:nth-child(3) {
    font-size: 145px;
    line-height: 140px;
    letter-spacing: 0;
}

.kv_wrapper .kv_block .kv_subtitle {
    position: absolute;
    top: 450px;
}

.kv_wrapper .kv_block .kv_subtitle {
    font-size: 58px;
    line-height: 75px;
    letter-spacing: 0;
    font-family: 'Bebas Neue', sans-serif;
}

.kv_wrapper .kv_block .kv_subtitle span {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 0;
    display: block;
    font-family: 'Bebas Neue', sans-serif;
}

.kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
    font-size: 49px;
    line-height: 49px;
}

.kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
    font-size: 53px;
    line-height: 53px;
}

.kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
    font-size: 51px;
    line-height: 51px;
}

.kv_wrapper .kv_block .promotion_block {
    left: 0;
    top: 660px;
    position: relative;
}

.kv_wrapper .kv_block .promotion_block .promotion_item img {
    position: absolute;
    left: 45px;
}

.kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
    position: absolute;
    right: 0;
    width: 65%;
    top: 25px;
}

.kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text h3 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    line-height: 36px;
}

.kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 1096px) and (max-width: 1320px) {
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_1320.png") no-repeat top center;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 20px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 160px;
        line-height: 85px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 130px;
        letter-spacing: 1px;
        line-height: 120px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 110px;
        line-height: 60px;
        letter-spacing: 5px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 350px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 27px;
        line-height: 27px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 39px;
        line-height: 39px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 43px;
        line-height: 43px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 42px;
        line-height: 42px;
    }
    .kv_wrapper .kv_block .promotion_block {
        left: 0;
        top: 520px;
    }
}

@media (min-width: 915px) and (max-width: 1095px) {
    .container {
        max-width: 1095px;
        margin: 0 auto;
        width: auto !important;
    }
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_1095.png") no-repeat top center;
        height: 900px;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 5px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 150px;
        line-height: 85px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 120px;
        letter-spacing: 1px;
        line-height: 110px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 100px;
        line-height: 65px;
        letter-spacing: 5px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 300px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 36px;
        line-height: 36px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 39px;
        line-height: 39px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 38px;
        line-height: 38px;
    }
    .kv_wrapper .kv_block .promotion_block {
        left: 0;
        top: 450px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
        position: absolute;
        right: 0;
        width: 63%;
        top: 25px;
    }
}

@media (min-width: 835px) and (max-width: 914px) {
    .container {
        max-width: 914px;
        margin: 0 auto;
    }
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_914.png") no-repeat top center;
        height: 700px;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 20px;
        left: 50px;
        margin: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 100px;
        line-height: 90px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 80px;
        letter-spacing: 1px;
        line-height: 50px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 65px;
        line-height: 70px;
        letter-spacing: 4px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 230px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 17px;
        line-height: 17px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 24.5px;
        line-height: 25px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 27px;
        line-height: 27px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 26px;
        line-height: 26px;
    }
    .kv_wrapper .kv_block .promotion_block {
        left: 0;
        top: 380px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
        position: absolute;
        right: 0;
        width: 70%;
        top: 25px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item img {
        width: 20%;
    }
}

@media (min-width: 641px) and (max-width: 834px) {
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_834.png") no-repeat top center;
        height: 800px;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 10px;
        left: 50px;
        margin: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 95px;
        line-height: 130px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 77px;
        letter-spacing: 1px;
        line-height: 0;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 71px;
        line-height: 120px;
        letter-spacing: 0;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 240px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 17px;
        line-height: 17px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 25px;
        line-height: 25px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 27px;
        line-height: 27px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 27px;
        line-height: 27px;
    }
    .kv_wrapper .kv_block .promotion_block {
        left: 0;
        top: 380px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
        position: absolute;
        right: 0;
        width: 60%;
        top: 25px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item img {
        width: 25%;
    }
}

@media (min-width: 601px) and (max-width: 640px) {
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_640.png") no-repeat top center;
        height: 700px;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 5px;
        left: 50px;
        margin: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 80px;
        line-height: 75px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 64px;
        letter-spacing: 1px;
        line-height: 40px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 56px;
        line-height: 55px;
        letter-spacing: 2px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 180px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 20px;
        line-height: 20px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 22px;
        line-height: 22px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 21px;
        line-height: 21px;
    }
    .kv_wrapper .kv_block .promotion_block {
        top: 300px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
        position: absolute;
        right: 0;
        width: 63%;
        top: 25px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item img {
        width: 20%;
    }
}

@media (min-width: 480px) and (max-width: 600px) {
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg600.png") no-repeat top center;
        height: 650px;
    }
    .kv_wrapper .kv_block .kv_title {
        position: absolute;
        top: 5px;
        left: 50px;
        margin: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 66px;
        line-height: 85px;
        font-family: 'Bebas Neue', sans-serif;
        display: block;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 53px;
        letter-spacing: 1px;
        line-height: 10px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 46px;
        line-height: 65px;
        letter-spacing: 2px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        position: absolute;
        top: 150px;
        left: 50px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 18px;
        line-height: 18px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 20px;
        line-height: 20px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 19px;
        line-height: 19px;
    }
    .kv_wrapper .kv_block .promotion_block {
        top: 250px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text {
        position: absolute;
        right: 0;
        width: 63%;
        top: 25px;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item .promotion_text h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .kv_wrapper .kv_block .promotion_block .promotion_item img {
        width: 20%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #E-PRODUCTS .product {
        text-align: center;
    }
    #E-PRODUCTS .product .price {
        text-align: center;
        margin-bottom: 100px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    #E-PRODUCTS .product {
        text-align: center;
    }
    #E-PRODUCTS .product .price {
        text-align: center;
        margin-bottom: 50px;
    }
    #E-PRODUCTS .product .price span {
        margin-top: 50px;
    }
}

@media (max-width: 479px) {
    #promotion {
        display: none;
    }
    #E-PRODUCTS {
        display: none;
    }
    #vga_winning_Streak {
        display: none;
    }
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_m1.png") no-repeat top center;
        height: 368px;
    }
    .kv_wrapper .kv_block .kv_title #msi_logo {
        display: block;
        width: 60%;
        margin: 20px 0;
    }
    .kv_wrapper .kv_block .RTX_icon {
        display: none;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 82px;
        letter-spacing: -2px;
        line-height: 80px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 62px;
        line-height: 30px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 60px;
        line-height: 65px;
        letter-spacing: -1px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        top: 230px;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 13px;
        line-height: 0;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 22px;
        line-height: 28px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 26px;
        line-height: 8px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 21px;
        line-height: 30px;
    }
    .b3 h4 {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 100% !important;
    }
}

@media (max-width: 414px) {
    .kv_wrapper .kv_block .kv_title {
        top: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 74px;
        letter-spacing: -2px;
        line-height: 70px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 55px;
        line-height: 30px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 53px;
        line-height: 60px;
        letter-spacing: -1px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        top: 160px;
        width: 40%;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 20px;
        line-height: 20px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 24px;
        line-height: 24px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 19px;
        line-height: 19px;
    }
}

@media (max-width: 375px) {
    .kv_wrapper {
        background: url("https://storage-asset.msi.com/event/2020/gnp/RTX_supergamingsummer/images/kv_bg_375.png") no-repeat top center;
    }
    .kv_wrapper .kv_block .kv_title {
        top: 0;
    }
    .kv_wrapper .kv_block .kv_title span {
        font-size: 74px;
        letter-spacing: -2px;
        line-height: 70px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(2) {
        font-size: 55px;
        line-height: 30px;
    }
    .kv_wrapper .kv_block .kv_title span:nth-child(3) {
        font-size: 53px;
        line-height: 60px;
        letter-spacing: -1px;
    }
    .kv_wrapper .kv_block .kv_subtitle {
        top: 160px;
        width: 40%;
    }
    .kv_wrapper .kv_block .kv_subtitle span {
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0;
        display: block;
        font-family: 'Bebas Neue', sans-serif;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(2) {
        font-size: 20px;
        line-height: 20px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(3) {
        font-size: 24px;
        line-height: 24px;
    }
    .kv_wrapper .kv_block .kv_subtitle span:nth-child(4) {
        font-size: 19px;
        line-height: 19px;
    }
}

.REGISTER_btn,
.learn_btn {
    border-radius: 10px;
    width: 225px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    margin-top: 20px;
}

h4 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product .item_name ul {
    list-style: none;
}

.product .item_name ul li {
    line-height: 30px;
}

.product .price {
    margin-top: -50px;
}

.product .price span {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    display: block;
    margin-bottom: -15px;
}

.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5,
.terms h6 {
    font-family: "DINPro-Regular", "DINCondMediumRegular", 'Nunito Sans', DINCond-Medium, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

footer {
    display: block !important;
    margin-top: 0 !important;
}

.footer .quicklinks {
    height: auto !important;
}


/*# sourceMappingURL=main.css.map */