body {
    color: #fff;
    background-color: #1c1c1c;
    font-family: Brownpro, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 3.4375rem;
    font-size: clamp(3.4375rem, 2.9375rem + 2.5vw, 5.9375rem);
    font-weight: 700;
    line-height: 1;
}

h2 {
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    font-weight: 700;
    line-height: 1;
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 35px 0;
}

h4 {
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

p:last-of-type {
    margin: 0;
}

/*----- Start Black Stripe -----*/

.black-stripe {
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-gap: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    background: #000;
}

.black-stripe p {
    font-size: 1.5625rem;
    font-size: clamp(1.5625rem, 1.3392857142857142rem + 1.1160714285714286vw, 3.125rem);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}

.black-stripe p span:first-of-type {
    -webkit-text-stroke: 2px #fff;
    color: #000;
}

.percent {
    position: relative;
    margin: 0 0 0 30px;
}

.percent::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ff0000;
    position: absolute;
    right: -20px;
    top: 50%;
    margin: -6.5px 0 0;
}

.percent::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ff0000;
    position: absolute;
    left: -20px;
    top: 50%;
    margin: -6.5px 0 0;
}

/* Animation Slide */

.black-stripe p {
    animation: black-stripe 15s linear infinite;
}

@keyframes black-stripe {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-200%);
    }
}

/*----- End Black Stripe -----*/

.box-popup {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    position: relative;
    background: #1c1c1c;
    text-align: center;
}

.box-popup .mfp-close {
    color: #fff;
}

.box-popup h2 {
    font-size: 3rem;
    margin: 0 0 10px 0;
}

.box-popup h2 span {
    font-weight: 300;
}

.box-popup p {
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.popup-retailers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));*/
    grid-template-rows: auto;
    grid-gap: 20px;
}

.popup-retailers.single {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-retailers.single .cta {
    max-width: 430px;
    width: 100%;
}

.dropdown {
    position: relative;
    display: block;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: #1c1c1c;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    color: #fff;
    padding: 5px 0 0;
}

.dropbtn {
    width: 100%;
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    border: none;
    transition: all 0.2s ease;
    background-color: #00b9fc;
    margin: 0 0 5px 0;
}

.dropdown-content a:hover {
    background: #70cbec;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mfp-iframe-holder .mfp-content {
    max-width: 1530px;
}

#thanks-page .container {
    background: url(../images/banner-bg.jpg) no-repeat center top;
    background-size: cover;
    height: 80vh;
}

#thanks-page .banner {
    display: block;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 0;
}

#utility-page .header {
    margin: 0 0 60px 0;
}

#utility-page h1 {
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
}

#utility-page .banner {
    text-align: left;
}

#utility-page .banner p {
    margin: 0 0 35px 0;
}

#utility-page .banner p:last-of-type {
    margin: 0;
}

#utility-page .banner p a {
    color: inherit;
}

#utility-page p a:hover {
    text-decoration: none;
}

#utility-page .banner ul {
    margin: 0 0 35px 0;
}

.cta {
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 20px 42px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.5s;
}

.cta:hover {
    background-color: #00b9fc;
    border-color: #00b9fc;
}

.hero {
    background: url(../images/banner-bg.jpg) no-repeat center top;
    background-size: cover;
}

.content {
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content.hero-c {
    padding-top: 60px;
    padding-bottom: 160px;
    max-width: 1440px;
}

.content.take-c {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 1440px;
}

.content.play-c {
    padding-top: 230px;
    padding-bottom: 230px;
}

.content.side-c {
    padding-top: 120px;
    padding-bottom: 120px;
}

.content.footer-c {
    padding-top: 60px;
    padding-bottom: 60px;
}

.header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 160px;
    display: flex;
}

.header p {
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 300;
}

.banner {
    text-align: center;
    color: #fff;
}

.banner-left p {
    font-size: 44px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.banner-left p span {
    background: #717171;
    padding: 7px 10px;
    display: inline-block;
    margin: 0;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.grey-text span {
    font-weight: 300;
}

.take-section {
    background: #0b0b0b;
}

.take-wr {
    grid-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 60px;
    display: grid;
}

.blue-label.small {
    position: absolute;
    top: 0;
    margin: 0;
}

.take-box {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 40px 0 0 0;
}

.take-box-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
    max-height: 138px;
    height: 100%;
    color: #fff;
}

.take-box-text p:first-of-type {
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.take-box-text p:last-of-type {
    background: url(../images/triangle-icon.png) no-repeat top 2px right;
    font-size: 14px;
    line-height: 1;
    color: #00b9fc;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 15px 0 0;
}

.take-box-img img {
    transition: all 0.3s ease;
}

.take-box:hover .take-box-img img {
    transform: scale(1.1);
}

.take-block {
    text-align: center;
}

.take-block p {
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.take-box-img {
    height: 200px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
}

.play-section {
    text-align: center;
    background-image: url('../images/play-bg.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.play-section.play-section-2 {
    background-image: url('../images/play-bg2.jpg');
}

.side-wr {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.side-wr.mirror {
    flex-direction: row-reverse;
}

.side-slider-wr {
    width: 55%;
}

.side-text {
    width: 45%;
}

.color_2,
.color_3 {
    display: none;
}

.color_2_2,
.color_3_2 {
    display: none;
}

.color_2_3,
.color_3_3 {
    display: none;
}

.color_2_4,
.color_3_4 {
    display: none;
}

.color_2_5,
.color_3_5 {
    display: none;
}

.tabs_color {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}

.tabs_color .color {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color_rose {
    background: #e63f7f;
}

.color_graphite {
    background: #000;
}

.color_white {
    background: #fff;
}

.color_shroud {
    background: #00b8fc;
}

.active .color {
    -webkit-box-shadow: 0px 0px 5px 7px rgba(63, 62, 62, 1);
    -moz-box-shadow: 0px 0px 5px 7px rgba(63, 62, 62, 1);
    box-shadow: 0px 0px 5px 7px rgba(63, 62, 62, 1);
}

.thumb_wr .slick-slide {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.thumb_wr img {
    display: block;
    width: 100px;
    opacity: 0.5;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.thumb_wr .slick-slide.slick-current img {
    opacity: 1;
}

.label-box {
    background: #fff;
    padding: 10px;
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 34px;
    margin: 0 0 15px 0 !important;
}

.label-box span {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: middle;
}

.side-text h2 {
    margin-bottom: 15px;
}

.side-text h2 span {
    display: block;
    font-size: 38px;
    font-weight: 300;
    text-transform: uppercase;
}

.side-text p {
    margin: 0 0 35px 0;
}

.lightspeed-text {
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.blue-label {
    display: inline-block;
    padding: 12px 6px;
    background: #00b9fc;
    font-weight: 700;
}

.product-grid h4 {
    color: #fff;
}

.product-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.product-grid-box {
    text-align: center;
    padding: 160px 50px;
}

.mouse-box-1 {
    background-image: url('../images/mouse-grid-img1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mouse-box-1-2 {
    background-image: url('../images/mouse-grid-img1_2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mouse-box-2 {
    background-image: url('../images/mouse-grid-img2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mouse-box-2-2 {
    background-image: url('../images/mouse-grid-img2_2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mouse-box-3 {
    background-image: url('../images/mouse-grid-img3.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.headset-box-1 {
    background-image: url('../images/headset-grid-img1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.headset-box-2 {
    background-image: url('../images/headset-grid-img2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.headset-box-3 {
    background-image: url('../images/headset-grid-img3.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-1 {
    background-image: url('../images/keyboard-grid-img1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-1-2 {
    background-image: url('../images/keyboard-grid-img1_2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-2 {
    background-image: url('../images/keyboard-grid-img2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-3 {
    background-image: url('../images/keyboard-grid-img3.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-3-2 {
    background-image: url('../images/keyboard-grid-img3_2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-pro-1 {
    background-image: url('../images/keyboard-grid-pro-img1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-pro-2 {
    background-image: url('../images/keyboard-grid-pro-img2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.keyboard-box-pro-3 {
    background-image: url('../images/keyboard-grid-pro-img3.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.video {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video iframe {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.video-overlay {
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.video-overlay.hide {
    opacity: 0;
}

.video-overlay img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-overlay .video-play-btn {
    margin: auto;
    background: none;
    border: 0;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 576px) {
    .video-overlay .video-play-btn {
        width: 300px;
        height: 300px;
    }
}

.video-play-btn svg {
    display: block;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.video-play-btn svg * {
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.video-play-btn .video-play-bg {
    fill: #000000;
    opacity: 0.3;
    r: 102.5;
}

.video-play-btn:hover .video-play-bg {
    opacity: 0.75;
    r: 138;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.video-play-btn .video-play-dotted-stroke {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 0, 5.2;
    r: 117.5;
    -webkit-transform-origin: 43.45% 43.45%;
    -ms-transform-origin: 43.45% 43.45%;
    transform-origin: 43.45% 43.45%;
}

.video-play-btn:hover .video-play-dotted-stroke {
    r: 82;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
}

.video-play-btn .video-play-solid-stroke {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-miterlimit: 10;
    r: 85;
}

.video-play-btn:hover .video-play-solid-stroke {
    r: 116;
}

.video-play-btn .video-play-triangle {
    fill: #ffffff;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.video-play-btn:hover .video-play-triangle {
    -webkit-transform: matrix(1.5, 0, 0, 1.5, -65, -65);
    -ms-transform: matrix(1.5, 0, 0, 1.5, -65, -65);
    transform: matrix(1.5, 0, 0, 1.5, -65, -65);
}

.footer {
    text-align: center;
}

.footer p {
    font-size: 18px;
}

.footer p a {
    color: #595959;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer p a:hover {
    color: #fff;
}

.content-small {
    width: 80%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.content-small.side-c {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media screen and (max-width: 1440px) {
    .header {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1366px) {
    .take-wr {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 1180px) {
    .cta {
        padding: 20px 30px;
    }

    .thumb_wr img {
        width: 80px;
    }

    .product-grid-box {
        padding: 90px 20px;
    }
}

@media screen and (max-width: 1024px) {
    .content.hero-c {
        padding-top: 40px;
    }

    .content.take-c,
    .content.play-c {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .content.footer-c {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .banner {
        flex-direction: column;
    }

    .banner-left {
        margin: 0;
    }

    .banner-left p {
        max-width: 100%;
    }

    .side-wr {
        flex-direction: column;
        align-items: stretch;
    }

    .side-wr.mirror {
        flex-direction: column;
    }

    .side-slider-box,
    .side-text {
        width: 100%;
    }

    .side-slider-wr {
        width: 100%;
    }

    .product_slider_wr img {
        margin: 0 auto;
    }

    .thumb_wr .slick-slide {
        margin: 0 15px;
    }

    .thumb_wr .slick-list {
        margin: 0 -15px;
    }

    .thumb_wr img {
        width: 120px;
    }

    .content-small.side-c {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 844px) {
    body {
        font-size: 18px;
    }

    #thanks-page .container {
        height: auto;
    }

    br {
        display: none;
    }

    .content.hero-c {
        padding-top: 20px;
    }

    .content.take-c {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .content.play-c {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .header {
        flex-direction: column;
    }

    .header p {
        text-align: center;
    }

    .banner-left p {
        font-size: 38px;
        line-height: 48px;
    }

    .take-wr {
        grid-gap: 30px;
    }

    .take-box-text p:first-of-type {
        font-size: 18px;
    }

    .product-grid-box {
        padding: 60px 20px;
    }

    .content-small.side-c {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 590px) {
    .take-wr {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 479px) {
    .content {
        width: auto;
        padding: 0 20px;
    }

    .cta {
        width: 100%;
        padding: 20px 10px;
    }

    .box-popup {
        padding: 40px 20px 20px;
    }

    .box-popup h2 {
        font-size: 2.5rem;
    }

    .popup-retailers {
        grid-template-columns: 1fr;
    }

    .take-wr {
        grid-template-columns: 1fr;
    }

    .take-box-text {
        max-height: none;
        height: auto;
    }

    .take-box-text p:first-of-type {
        line-height: 1.4;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@font-face {
    font-family: 'Brownpro';
    src: url('../fonts/BrownPro-Bold.woff2') format('woff2'), url('../fonts/BrownPro-Bold.eot') format('embedded-opentype'), url('../fonts/BrownPro-Bold.woff') format('woff'), url('../fonts/BrownPro-Bold.ttf') format('truetype'), url('../fonts/BrownPro-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brownpro';
    src: url('../fonts/BrownPro-Light.woff2') format('woff2'), url('../fonts/BrownPro-Light.eot') format('embedded-opentype'), url('../fonts/BrownPro-Light.woff') format('woff'), url('../fonts/BrownPro-Light.ttf') format('truetype'), url('../fonts/BrownPro-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brownpro';
    src: url('../fonts/BrownPro-Regular.woff2') format('woff2'), url('../fonts/BrownPro-Regular.eot') format('embedded-opentype'), url('../fonts/BrownPro-Regular.woff') format('woff'), url('../fonts/BrownPro-Regular.ttf') format('truetype'), url('../fonts/BrownPro-Regular.svg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
