/* FONTS */
@font-face {
    font-family: Montserrat-Bold;
    src: url("../fon/Montserrat-Bold.otf");
    src: url("../fon/Montserrat-Bold.eot");
    src: url("../fon/Montserrat-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fon/Montserrat-Bold.woff") format("woff"),
        url("../fon/Montserrat-Bold.ttf") format("truetype"),
        url("../fon/Montserrat-Bold.svg#svgFontName") format("svg");
}
@font-face {
    font-family: Montserrat-ExtraBold;
    src: url("../fon/Montserrat-ExtraBold.otf");
    src: url("../fon/Montserrat-ExtraBold.eot");
    src: url("../fon/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"),
        url("../fon/Montserrat-ExtraBold.woff") format("woff"),
        url("../fon/Montserrat-ExtraBold.ttf") format("truetype"),
        url("../fon/Montserrat-ExtraBold.svg#svgFontName") format("svg");
}
@font-face {
    font-family: ALoveofThunder;
    src: url("../fon/ALoveofThunder.otf");
    src: url("../fon/ALoveofThunder.eot");
    src: url("../fon/ALoveofThunder.eot?#iefix") format("embedded-opentype"),
        url("../fon/ALoveofThunder.woff") format("woff"),
        url("../fon/ALoveofThunder.ttf") format("truetype"),
        url("../fon/ALoveofThunder.svg#svgFontName") format("svg");
}

/* VARIABLES */
:root {

    /* FONTS */
    --txt-default: Arial, Helvetica, sans-serif;
    --txt-strong: Montserrat-Bold;
    --txt-heading: Montserrat-ExtraBold;
    --txt-Stamp: ALoveofThunder;

    /* COLORS */
    --col-brand: #fad51f;
    --col-brand-alt: #1567cc;
    --col-brand-alt-light: #00bffa;
    --col-dark: #000000;
    --col-light: #ffffff;
    --col-gray-light: #f1f1f1;
    --col-gray-nutral: #fbfbfb;
    --col-gray-dark: #656565;
    --col-red: #db272b;

    /* ANIMATIONS */
    --hover-speed: 0.3s;

    /* MISC */
    --bor-rad: 1rem;
    --bor-rad-small: 0.5rem;
    
}

/* SETUP */
body {
    font-family: var(--txt-default);
    font-size: 1.3125rem;
    color: var(--col-dark);
    line-height: 1.6;
    background-color: var(--col-gray-light);
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}
*,
*::before,
*::after {
    position: relative;
    box-sizing: border-box;
}

/* COMMON */
.container {
    z-index: 1;
    width: min(100%, 70.5rem);
    margin-inline: auto;
    position: relative;
}
.wrapper {
    background-color: var(--col-light);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: var(--bor-rad);
    border-bottom-right-radius: var(--bor-rad);
}
a {
    color: var(--col-brand-dark);
    text-decoration: none;
}
a:hover {
    color: var(--col-brand);
    text-decoration: underline;
}
*:focus {
    outline-color: var(--col-brand-dark);
}
*::selection {
    background-color: var(--col-brand);
}
.svgs {
    display: none;
    visibility: hidden;
}
svg,
img {
    max-width: 100%;
}
svg {
    fill: var(--col-brand);
}
h1,
h2,
h3,
h4 {
    font-family: var(--txt-heading);
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.15em;
    margin-bottom: 0.5em;
}
.stamp {
    font-family: var(--txt-Stamp);
    text-transform: capitalize;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong {
    font-weight: normal;
}
h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}
p {
    font-size: 1rem;
    margin-bottom: 1em;
}
p .strong {
    font-family: var(--txt-strong);
    font-size: 1.15em;
    font-weight: normal;
}
.hideFromMobile {
    width: 0;
    height: 0;
    display: none;
    visibility: hidden;
}
.padding {
    padding: 1.5rem 1rem;
}
.indent {
    text-indent: 2rem;
}
.line-break {
    display: block;
}
.asterisks {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--col-gray-dark);
    line-height: 1.25em;
    padding-left: 0.75em;
}
.asterisks::before {
    font-size: 1.5em;
    content: "*";
    position: absolute;
    top: 0.1em;
    left: 0;
}
.frame {
    background-color: var(--col-gray-light);
    border: rgba(0, 0, 0, 0.1) solid 2px;
    border-radius: var(--bor-rad);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
}
.highlight {
    color: var(--col-brand);
}
.red {
    color: var(--col-red);
}
.remove {
    width: 0;
    height: 0;
    display: none;
    visibility: hidden;
}

/* BUTTONS */
.btn {
    font-family: var(--txt-heading);
    font-size: 1.5rem;
    color: var(--col-light);
    text-align: center;
    text-transform: uppercase;
    background-color: var(--col-gray-dark);
    border: var(--col-gray-dark) solid 0.15em;
    border-radius: var(--bor-rad-small);
    box-shadow: 0.15em 0.15em 0 rgba(0, 0, 0, 0.15);
    outline: none;
    padding: 0.5em 2.5em;
    cursor: pointer;
    transition: background-color var(--hover-speed) ease-out,
                color var(--hover-speed) ease-out;
}
.btn:hover,
.btn:focus {
    color: var(--col-gray-dark);
    background-color: var(--col-gray-nutral);
}
.btn-brand {
    border-color: var(--col-brand-alt);
    background-color: var(--col-brand-alt);
}
.btn-brand:hover,
.btn-brand:focus {
    color: var(--col-brand-alt);
    background-color: var(--col-gray-nutral);
}
.btn-gold {
    border: none;
    background-color: var(--col-brand);
    overflow: hidden;
    isolation: isolate;
    transition: none;
}
.btn-gold::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background: #de9300;
    background: -moz-linear-gradient(top,  rgba(254,238,28,1) 0%, rgba(222,147,0,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(254,238,28,1) 0%,rgba(222,147,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(254,238,28,1) 0%,rgba(222,147,0,1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity var(--hover-speed) ease-out;
}
.btn-gold span {
    z-index: 2;
    color: var(--col-dark);
}
.btn-gold svg {
    z-index: 2;
    width: 0.75em;
    height: 0.75em;
    fill: var(--col-red);
}
.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--col-brand);
}
.btn-gold:hover::before,
.btn-gold:focus::before {
    opacity: 0;
}
.btn-top {
    font-family: var(--txt-strong);
    font-size: 0.85rem;
    color: var(--col-gray-dark);
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0.25em 0.5em;
    cursor: pointer;
    transition: color var(--hover-speed) ease-out;
}
.btn-top::after {
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--col-red);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transition: transform var(--hover-speed) ease-out,
                opacity var(--hover-speed) ease-out;
}
.btn-top svg {
    width: 1em;
    height: 1em;
    fill: var(--col-red);
    margin-left: 0.25em;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(-90deg);
}
.btn-top:hover,
.btn-top:focus {
    color: var(--col-red);
}
.btn-top:hover::after,
.btn-top:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

/* VIDEOS */
.vid {
    --vid-bor: var(--bor-rad-small);
    z-index: 1;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    border-radius: var(--vid-bor);
    cursor: pointer;
    isolation: isolate;
}
.vid::before {
    z-index: 2;
    width: calc( 100% + 4px );
    height: calc(100% + 4px);
    content: "";
    border: var(--col-gray-light) solid 4px;
    border-radius: var(--vid-bor);
    position: absolute;
    top: -2px;
    left: -2px;
    pointer-events: none;
}
.vid > img {
    display: block;
    border-radius: var(--vid-bor);
}
.vid .w-chrome {
    border-radius: var(--vid-bor);
}

/* NUMBERS */
.num {
    font-family: var(--txt-heading);
    font-size: 3rem;
    color: var(--col-gray-light);
    line-height: 1em;
    background-color: var(--col-red);
    border-radius: var(--bor-rad);
    box-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    padding: 0.15em 0.35em 0.25em 0.35em;
    display: inline-block;
    vertical-align: middle;
}
.num sup {
    font-family: var(--txt-strong);
    font-size: 0.5em;
    padding-right: 0.1em;
}

/* GRADES */
.grade {
    font-family: var(--txt-heading);
    font-size: 2.5rem;
    color: var(--col-light);
    line-height: 1em;
    background-color: var(--col-brand-alt);
    border-radius: 100%;
    box-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    padding: 0.15em 0.35em 0.25em 0.35em;
    display: inline-block;
    vertical-align: middle;
}
.grade sup {
    font-family: var(--txt-strong);
    font-size: 0.75em;
    margin-left: -0.25em;
}

/* HEADER */
header {
    z-index: 2;
    color: var(--col-light);
    background-color: var(--col-dark);
    padding-top: 1.25rem;
}
header::before {
    width: 100%;
    height: 0.75rem;
    content: "";
    background-color: var(--col-brand);
    position: absolute;
    top: 0;
    left: 0;
}
header a:hover,
header a:focus {
    text-decoration: none;
}
header .top {
    padding-bottom: 1rem;
}
header h1 {
    width: calc( 100% - 0.75rem );
    font-family: var(--txt-default);
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: right;
}
header h1 strong {
    font-family: var(--txt-heading);
}
header .face {
    width: 30%;
    position: absolute;
    top: -1.25rem;
    left: -0.75rem;
    transform: scaleX(-1);
}
header .logo {
    width: 16rem;
    margin-left: 20%;
}
header .logo svg {
    width: 4rem;
    height: 2rem;
    display: inline-block;
    vertical-align: middle;
}
header .logo img {
    width: 11.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* MENU */
header nav {
    z-index: 5;
    width: 100%;
    font-family: var(--txt-default);
    font-size: 1.15rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}
header nav > input {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    visibility: hidden;
}
header nav > label {
    z-index: 6;
    width: max-content;
    height: auto;
    font-size: 3rem;
    position: absolute;
    top: 2.15rem;
    right: 0.5rem;
    cursor: pointer;
}
header nav > label svg {
    width: 1em;
    height: 1em;
    fill: var(--col-brand);
    display: block;
}
header nav ul {
    width: 100%;
    font-family: var(--txt-strong);
    font-size: inherit;
    color: var(--col-light);
    text-align: center;
    line-height: 1em;
    text-transform: capitalize;
    list-style: none;
    padding: 0;
    padding-bottom: 1em;
    margin: 0;
    position: absolute;
    top: 5.5rem;
    left: 0;
    transform-origin: top right;
    transform: scale(0);
    overflow: hidden;
}
header nav ul li {
    font-size: 1.15em;
    background-color: var(--col-dark);
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
    padding: 0.75em 1em;
    cursor: pointer;
    transform: translateX(100%);
    transition: transform var(--hover-speed) ease-out;
}
header nav ul li:nth-child(odd) {
    color: var(--col-dark);
    background-color: var(--col-brand);
}
header nav ul li:first-child {
    box-shadow: none;
}
header nav ul li:last-child {
    z-index: 1;
    border-bottom-left-radius: var(--bor-rad-small);
    border-bottom-right-radius: var(--bor-rad-small);
    padding-bottom: 1.5rem;
}
header nav ul li a {
    color: inherit;
}
header nav ul li a:hover,
header nav ul li a:focus {
    text-decoration: none;
}
header nav ul li:hover,
header nav ul li:focus {
    outline: none;
}
header nav > input:checked ~ ul {
    transform: scale(1);
}
header nav > input:checked ~ ul li {
    transform: translateX(0);
}
header nav ul li .big-red {
    font-size: 1.5em;
    color: var(--col-red);
    vertical-align: top;
    padding-inline: 0.1em;
}

/* HOME - BANNER */
.home .banner {
    padding-bottom: 2rem;
    overflow: hidden;
}
.home .banner img {
    z-index: 1;
    display: block;
}
.home .banner .ron {
    z-index: 2;
    width: 30%;
    position: absolute;
    bottom: 4rem;
    left: 0;
    transform: scaleX(-1);
}
.home .banner .products {
    z-index: 3;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* HOME - INTRO */
.home .intro {
    text-align: center;
    padding: 1rem 0;
}
.home .intro > h2 {
    font-family: var(--txt-strong);
    font-size: 1.4rem;
    text-transform: capitalize;
    margin: 0;
}
.home .intro > h2 strong {
    font-size: 2em;
    line-height: 1em;
    display: block;
}
.home .intro .content {
    text-align: left;
    padding-top: 1rem;
    margin-top: 1rem;
}
.home .intro .content::before {
    width: 100%;
    height: 25rem;
    content: "";
    background: -moz-linear-gradient(top, rgba(250, 213, 31, 1) 0%, rgba(125, 185, 232, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(250, 213, 31, 1) 0%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to bottom, rgba(250, 213, 31, 1) 0%, rgba(125, 185, 232, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.home .intro .content > img {
    width: 90%;
    display: block;
    margin-inline: auto;
}
.home .intro .content .copy {
    padding: 1rem;
    padding-bottom: 0;
}
.home .intro .content .copy h3 {
    width: 100%;
    font-size: 1.65rem;
    text-align: center;
}
.home .intro .content .copy h3 strong {
    font-size: 1.25em;
    display: block;
}
.home .intro .content .copy p {
    font-size: 1.15rem;
    padding-inline: 1rem;
}
.home .intro .content .bulls {
    padding-inline: 2rem;
}
.home .intro .content .bulls h3 {
    text-align: center;
    padding-inline: 2rem;
}
.home .intro .content .bulls ul {
    font-family: var(--txt-strong);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.25em;
    letter-spacing: -0.05em;
    list-style:  none;
    padding: 0;
    margin: 0;
}
.home .intro .content .bulls ul li svg {
    width: 2em;
    height: 2em;
    fill: var(--col-red);
    position: absolute;
    top: 0;
    left: 0;
}
.home .intro .content .bulls ul li {
    padding: 0.5em 0;
    padding-left: 2em;
}
.home .intro .content .bulls ul li strong {
    background-color: var(--col-brand);
    border-radius: var(--bor-rad-small);
    padding-left: 0.25em;
    padding-right: 0.35em;
}
.home .intro .content .ron {
    width: 100%;
    color: var(--col-light);
    text-align: center;
    background-color: var(--col-dark);
    padding: 1.5rem;
    margin: 1rem 0;
}
.home .intro .content .ron > h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75em;
}
.home .intro .content .ron > h3 strong {
    color: var(--col-brand);
}
.home .intro .content .ron > img {
    width: 100%;
}
.home .intro .content .ron > p {
    font-size: 1.15rem;
    text-align: left;
    margin: 0;
    margin-top: 1rem;
}
.home .intro .content .ron > p strong {
    color: var(--col-brand);
    display: block;
}
.home .intro .content .ron > p strong span {
    font-family: var(--txt-strong);
    font-size: 2em;
    padding-inline: 0.15em;
}
.home .intro .content .copy .sig {
    width: 12rem;
    height: 6rem;
    fill: var(--col-red);
    display: block;
    margin-inline: auto;
}
.home .intro .content .copy .asterisks {
    margin-top: 1.5rem;
    margin-left: 1rem;
}
.home .intro .content .copy .btn-toppills {
    transition: transform var(--hover-speed) ease-out;
}
.home .intro .content .copy .btn-toppills:hover,
.home .intro .content .copy .btn-toppills:focus {
    transform: scale(1.05);
}
.home .intro .buttons {
    width: 100%;
    padding-inline: 1rem;
}
.home .intro .buttons img {
    transition: transform var(--hover-speed) ease-out;
}
.home .intro .buttons img:hover,
.home .intro .buttons img:focus {
    transform: scale(1.05);
}
.home .intro .buttons a:first-child img {
    margin-top: -0.5rem;
}

/* SIGNUP */
.signup {
    color: var(--col-gray-light);
    background: var(--col-red);
    background: -moz-linear-gradient(top, rgba(216, 0, 3, 1) 0%, rgba(219, 39, 43, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(216, 0, 3, 1) 0%, rgba(219, 39, 43, 1) 100%);
    background: linear-gradient(to bottom, rgba(216, 0, 3, 1) 0%, rgba(219, 39, 43, 1) 100%);
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.signup > img {
    width: 45%;
    position: absolute;
    top: -2rem;
    left: -2rem;
}
.signup .copy {
    text-align: center;
}
.signup .copy h2 {
    width: 65%;
    font-size: 1.25rem;
    margin-left: 30%;
}
.signup .copy h2 span span {
    color: var(--col-brand);
}
.signup .copy h2 strong {
    font-size: 1.5em;
    line-height: 1em;
}
.signup .copy p {
    width: 65%;
    font-family: var(--txt-strong);
    font-size: 1rem;
    line-height: 1.25rem;
    margin-top: 1.15rem;
    margin-left: 30%;
}
.signup .copy p strong {
    display: block;
}
.signup .copy p strong {
    display: block;
}
.signup .copy p:last-child {
    padding-inline: 1rem;
}
.signup .copy ul {
    width: 100%;
    font-family: var(--txt-strong);
    font-size: 1.15rem;
    font-style: italic;
    list-style: none;
    text-align: left;
    padding: 0 1.5rem;
    margin: 0;
    margin-bottom: 1rem;
}
.signup .copy ul li {
    width: max-content;
    padding-left: 1.75em;
    margin: 0;
    display: inline-block;
}
.signup .copy ul li svg {
    width: 1.75em;
    height: 1.75em;
    position: absolute;
    top: 0;
    left: 0;
}
.signup .copy ul li strong {
    color: var(--col-brand);
}
.signup form {
    width: 95%;
    background-color: var(--col-gray-light);
    border-radius: var(--bor-rad-small);
    box-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
    padding-block: 0.5rem;
    margin: 0 auto;
}
.signup form input {
    width: 60%;
    font-size: 1.25rem;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
}
.signup form .btn {
    width: max-content;
    font-size: 1.25rem;
    padding: 0.15em 0.75em;
    margin-left: 63%;
    display: block;
}
.signup .stamp {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0;
    display: block;
}

/* TOP PILLS */
.toppills {
    margin-top: 1rem;
}
.toppills > .title {
    width: 100%;
    color: var(--col-light);
    background-color: var(--col-dark);
    text-align: center;
    box-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.25);
    padding: 0.5em;
    padding-bottom: 0;
    margin: 0;
}
.toppills > .title h2 {
    width: max-content;
    font-size: 3.5rem;
    text-transform: lowercase;
    text-shadow: 0.05em 0.05em 0 var(--col-brand-alt);
    margin: 0 auto;
}
.toppills > .title h2 strong {
    font-size: 1.5em;
    color: var(--col-red);
    line-height: 1em;
    text-transform: uppercase;
    background-color: var(--col-dark);
    padding-right: 0.05em;
}
.toppills > .title h2::before,
.toppills > .title h2::after {
    width: 100%;
    height: 4px;
    content: "";
    background-color: var(--col-red);
    position: absolute;
    left: 0;
}
.toppills > .title h2::before {
    top: 0.35em;
}
.toppills > .title h2::after {
    bottom: -0.1em;
}
.toppills > .title h3 {
    width: max-content;
    font-family: var(--txt-default);
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    padding-top: 1em;
    padding-bottom: 0.5em;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.toppills > .title h3 strong {
    font-family: var(--txt-heading);
    font-size: 1.3em;
    color: var(--col-red);
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 0.05em 0.05em 0 rgba(255, 255, 255, 0.5);
    display: block;
}
.toppills > .title .sig {
    width: 8rem;
    height: 4em;
    margin-top: -0.75rem;
    margin-left: 22%;
    display: inline-block;
    vertical-align: middle;
}
.toppills > .title .ron {
    width: 22%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 53%;
    transform: translateX(-50%);
}
.toppills .products {
    padding-top: 1rem;
}
.toppills .products .product {
    border-bottom: var(--col-gray-light) solid 2px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.toppills .products .product:last-child {
    border-bottom: none;
}
.toppills .products .product .content > h2 {
    font-size: 2rem;
    line-height: 1em;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-left: 0.25em;
}
.toppills .products .product .content > .img {
    width: 55%;
    margin: 1rem auto;
}
.toppills .products .product .content > .img img {
    width: 100%;
    display: block;
}
.toppills .products .product .content > .img .grade {
    position: absolute;
    top: -1rem;
    right: -1rem;
}
.toppills .products .product .content > h3 {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--col-red);
    line-height: 1em;
    text-align: center;
    text-transform: capitalize;
}
.toppills .products .product .content .copy > .btn {
    width: 100%;
    margin-bottom: 1.5rem;
}
.toppills .products .product > h3 {
    font-size: 1.25rem;
    color: var(--col-gray-dark);
    margin-top: 1.5em;
}
.toppills .products .product .content .stats-content {
    margin-bottom: 1rem;
}
.toppills .products .product .content .stats-content .stats {
    border: rgba(0, 0, 0, 0.1) solid 2px;
    border-radius: var(--bor-rad-small);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.toppills .products .product .content .stats-content .stats ul {
    font-family: var(--txt-heading);
    font-size: 0.75rem;
    color: var(--col-gray-dark);
    text-align: left;
    text-transform: capitalize;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.toppills .products .product .content .stats-content .stats ul li {
    margin: 0.5em 0;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(odd) {
    width: 45%;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(even) {
    width: 51%;
    font-family: var(--txt-default);
    margin-left: 1%;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(2) li .prog {
    width: 74%;
    height: 100%;
    border: rgba(0, 0, 0, 0.25) solid 1px;
    border-radius: 8px;
    position: absolute;
    padding: 2px;
    top: 0;
    right: 0;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(2) li .prog > div {
    height: 100%;
    background-color: var(--col-brand-alt);
    border-radius: 5px;
    display: inline-block;
    transform-origin: left;
    transition: transform 1s ease-in-out;
    transform: scaleX(0);
}
.toppills .products .product .content .stats-content .stats ul:nth-child(2) li .prog-show > div {
    transform: scaleX(1);
}
.toppills .products .product .content .stats-content .stats ul:nth-child(3),
.toppills .products .product .content .stats ul:nth-child(4) {
    margin-top: 1rem;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(4) {
    font-family: var(--txt-strong);
}
.toppills .products .product .content .stats-content .stats ul:nth-child(3)::before,
.toppills .products .product .content .stats-content .stats ul:nth-child(4)::before {
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--col-gray-light);
    position: absolute;
    top: -0.5rem;
    left: 0;
}
.toppills .products .product .content .stats-content .stats ul:nth-child(3) li:last-child,
.toppills .products .product .content .stats-content .stats ul:nth-child(4) li:last-child {
    color: var(--col-brand-alt);
}
.toppills .products .product .content .stats-content .btn {
    width: 100%;
    margin-bottom: 0.5rem;
}
.toppills .products .product .content .stats-content .btn:last-child {
    font-size: 1rem;
}
.toppills .products .product > .btn {
    width: 100%;
    font-size: 1rem;
}
.toppills .products .product .rating {
    width: 100%;
    font-family: var(--txt-heading);
    font-size: 1.5rem;
    text-align: right;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.toppills .products .product .rating span {
    width: max-content;
    color: var(--col-brand-alt);
    background-color: var(--col-gray-light);
    border: rgba(0, 0, 0, 0.1) solid 2px;
    border-right: none;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 4rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    padding: 0.25em 3em 0.25em 2em;
    margin-right: -2rem;
}
.toppills .products .product-longtitle .content > h2 {
    font-size: 1.5rem;
}
.toppills .products .logos {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}
.toppills .products .logos img {
    height: 1rem;
    margin-right: 5%;
    display: inline-block;
    vertical-align: middle;
}
.toppills .products .logos img:first-child {
    height: 1.25rem;
}

/* LEGAL */
.legal .content {
    color: var(--col-gray-dark);
}
.legal .content > h2 {
    font-size: 2rem;
    color: var(--col-dark);
    text-transform: uppercase;
    text-align: center;
}

/* SCAMS - INTRO */
.scams .intro {
    border-bottom: var(--col-gray-light) solid 2px;
    padding-bottom: 1rem;
    overflow: hidden;
}
.scams .intro h2 {
    font-size: 2.15rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    margin: 0.5em auto;
}
.scams .intro h2 strong {
    font-size: 1.1em;
    color: transparent;
    text-shadow: none;
    background-image: url("../img/scams/exposed-stamp.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.scams .intro > img {
    z-index: 2;
    width: 60%;
    float: right;
    margin-top: -0.5rem;
    margin-right: -2rem;
}
.scams .intro h3 {
    z-index: 1;
    width: calc( 100% + 2rem);
    font-size: 1.45rem;
    color: var(--col-red);
    text-transform: uppercase;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    background-color: var(--col-brand);
    border-top: rgba(0, 0, 0, 0.1) solid 1px;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
    box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1.5rem;
    margin-left: -1rem;
}
.scams .intro p {
    color: var(--col-gray-dark);
}
.scams .intro p strong {
    font-family: var(--txt-strong);
    color: var(--col-dark);
}

/* SCAMS - TOP SCAMS */
.scams .top-scams {
    color: var(--col-gray-dark);
    padding-top: 0;
}
.scams .top-scams .scam {
    border-bottom: var(--col-gray-light) solid 2px;
    padding: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
.scams .top-scams .scam:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.scams .top-scams .scam .top .num {
    font-size: 2.5rem;
}
.scams .top-scams .scam .top h2 {
    width: 73%;
    font-size: 2rem;
    color: var(--col-dark);
    line-height: 1em;
    text-transform: capitalize;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-left: 0.25em;
}
.scams .top-scams .scam .top .h2-small {
    width: 72%;
    font-size: 1.5rem;
}
.scams .top-scams .scam .top .media {
    margin: 1rem 0;
    padding: 0;
    overflow: hidden;
}
.scams .top-scams .scam .top .media > img {
    width: 100%;
    display: block;
}
.scams .top-scams .scam .top h3 {
    font-size: 1.2rem;
    color: var(--col-gray-dark);
    text-align: center;
    margin: 1rem;
}
.scams .top-scams .scam .btn-top {
    position: absolute;
    bottom: 1rem;
    right: 0;
}

/* SECRETS - INTRO */
.secrets .intro {
    border-bottom: var(--col-gray-light) solid 1px;
    padding-top: 2rem;
}
.secrets .intro h2 {
    font-size: 1.5rem;
    line-height: 1em;
    text-align: center;
    text-shadow: 0.1em 0.1em 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 0.25em;
}
.secrets .intro h2 strong {
    font-size: 1.65em;
    color: var(--col-red);
    line-height: 1em;
    display: block;
}
.secrets .intro .banner {
    width: 100%;
}
.secrets .intro .banner img {
    width: 100%;
    display: block;
}
.secrets .intro .banner::before,
.secrets .intro .banner::after {
    width: 100%;
    height: 3px;
    content: "";
    position: absolute;
    left: 0;
}
.secrets .intro .banner::before {
    background-color: rgba(0, 0, 0, 0.15);
    bottom: -3px;
}
.secrets .intro .banner::after {
    background-color: rgba(0, 0, 0, 0.05);
    bottom: -6px;
}
.secrets .intro .copy {
    padding-top: 0;
}
.secrets .intro .copy p {
    color: var(--col-gray-dark);
    margin-block: 1rem;
}
.secrets .intro .copy p strong {
    font-family: var(--txt-heading);
    font-size: 1.15em;
    line-height: 1.25em;
}

/* SECRETS - 6 SECRETS */
.secrets .six-secrets {
    color: var(--col-gray-dark);
    padding-top: 0;
}
.secrets .six-secrets .secret {
    border-bottom: var(--col-gray-light) solid 2px;
    padding: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
.secrets .six-secrets .secret:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.secrets .six-secrets .secret .top .num {
    font-size: 2.5rem;
}
.secrets .six-secrets .secret .top h2 {
    width: 73%;
    font-size: 2rem;
    color: var(--col-dark);
    line-height: 1em;
    text-transform: capitalize;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-left: 0.25em;
}
.secrets .six-secrets .secret .top .h2-small {
    width: 72%;
    font-size: 1.5rem;
}
.secrets .six-secrets .secret .top .media {
    margin: 1rem 0;
    padding: 0;
    overflow: hidden;
}
.secrets .six-secrets .secret .top .media > img {
    width: 100%;
    display: block;
}
.secrets .six-secrets .secret .top h3 {
    font-size: 1.2rem;
    color: var(--col-gray-dark);
    text-align: center;
    margin: 1rem;
}
.secrets .six-secrets .secret .btn-top {
    position: absolute;
    bottom: 1rem;
    right: 0;
}
.secrets .six-secrets .secret img {
    border-radius: var(--bor-rad-small);
}

/* ABOUT - INTRO */
.about .intro {
    padding: 1rem 0;
}
.about .intro::before {
    width: 100%;
    height: 4px;
    content: "";
    background-color: var(--col-red);
    position: absolute;
    top: 52%;
    left: 0;
    transform: translateY(-50%);
}
.about .intro h2 {
    width: max-content;
    font-size: 2rem;
    text-align: center;
    background-color: var(--col-light);
    padding-inline: 0.15em;
    margin: 0 auto;
}

/* ABOUT - CONTENT */
.about .content {
    color: var(--col-gray-dark);
    padding-top: 0.5rem;
    padding-inline: 2rem;
}
.about .content::after {
    width: 90%;
    height: 2px;
    content: "";
    background-color: var(--col-gray-light);
    position: absolute;
    bottom: 0;
    left: 5%;
}
.about .content:last-child:after {
    width: 0;
    height: 0;
    background-color: transparent;
    left: 0;
}
.about .content p:last-child {
    margin-bottom: 0;
}
.about .content h2 {
    text-align: center;
    margin: 0.75em 0;
}
.about .content > img {
    background-color: var(--col-gray-light);
    border: rgba(0, 0, 0, 0.1) solid 2px;
    border-radius: var(--bor-rad);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    margin: 0.5em auto;
    display: block;
}

/* CONTACT */
.contact {
    color: var(--col-gray-dark);
}
.contact h2 {
    text-transform: capitalize;
}

/* CONTACT - INTRO */
.contact .intro {
    border-bottom: var(--col-gray-light) solid 1px;
}
.contact .intro::before {
    width: 100%;
    height: 4px;
    content: "";
    background-color: var(--col-red);
    position: absolute;
    top: 2.55rem;
    left: 0;
}
.contact .intro h2 {
    width: max-content;
    font-size: 2rem;
    color: var(--col-dark);
    text-align: center;
    background-color: var(--col-light);
    padding-inline: 0.15em;
    margin: 0 auto;
    margin-bottom: 0.5em;
}
.contact .intro > img {
    background-color: var(--col-gray-light);
    border: rgba(0, 0, 0, 0.1) solid 2px;
    border-radius: var(--bor-rad);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    margin-bottom: 1.5rem;
    display: block;
}
.contact .intro p {
    font-size: 1rem;
}
.contact .intro ul {
    font-size: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact .intro ul li {
    margin: 0.15em 0;
}
.contact .intro ul li:first-child {
    font-family: var(--txt-strong);
    font-size: 1.25rem;
}
.contact .intro a {
    color: var(--col-gray-dark);
    transition: color var(--hover-speed) ease-out;
}
.contact .intro a:hover,
.contact .intro a:focus {
    color: var(--col-red);
    text-decoration: none;
}

/* CONTACT - HOURS */
.contact .hours {
    border-bottom: var(--col-gray-light) solid 1px;
}
.contact .hours ul {
    font-size: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}
.contact .hours ul li {
    margin: 0.15em 0;
}
.contact .hours ul li:first-child {
    font-family: var(--txt-strong);
    font-size: 1.25rem;
}

/* CONTACT - FORM */
.contact .form {
    border-bottom: var(--col-gray-light) solid 1px;
}
.contact .form form input,
.contact .form form textarea {
    width: 100%;
    font-family: var(--txt-default);
    font-size: 1rem;
    border: var(--col-gray-light) solid 2px;
    outline: none;
    background-color: var(--col-gray-nutral);
    border-radius: var(--bor-rad-small);
    box-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
    resize: vertical;
    padding: 1em;
    margin: 0.5rem 0;
}
.contact .form form input {
    padding-block: 0.5em;
}
.contact .form form button {
    width: 100%;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* CONTACT - INFO */
.contact .info {
    padding-bottom: 3rem;
}
.contact .info p {
    margin-bottom: 2rem;
}
.contact .info button {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
}

/* SUBMIT - INTRO */
.submit .intro {
    border: none;
    padding-bottom: 0;
}
.submit .intro h2 {
    margin-bottom: 0;
}

/* SUBMIT - FORM */
.submit .form {
    border: none;
    padding-bottom: 2rem;
}
.submit .form h2 {
    font-size: 1.25rem;
    color: var(--col-gray-dark);
    text-transform: none;
}

/* FAQ - INTRO */
.faq .intro {
    z-index: 1;
    margin-bottom: 0;
}
.faq .intro > h2 {
    font-size: 1.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.faq .intro > img {
    width: 50%;
    float: right;
    padding-left: 1rem;
    margin-right: -1rem;
}
.faq .intro .copy {
    margin-bottom: 0;
}

/* FAQ - QUESTIONS */
.faq .questions {
    z-index: 2;
    padding-top: 0;
    margin-top: 0;
}
.faq .questions .menu {
    background-color: rgba(241, 241, 241, 0.8);
    backdrop-filter: blur(10px);
}
.faq .questions .menu ol {
    font-size: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: ol-counter;
}
.faq .questions .menu ol li {
    border-radius: var(--bor-rad-small);
    padding: 0.5em 0;
    padding-left: 2em;
    margin: 0.5em 0;
    counter-increment: ol-counter;
    transition: color var(--hover-speed) ease-out,
                background-color var(--hover-speed) ease-out;
    cursor: pointer;
}
.faq .questions .menu ol li::before {
    font-family: var(--txt-strong);
    color: var(--col-red);
    content: counter(ol-counter);
    position: absolute;
    top: 0.5em;
    left: 0.75em;
    transition: color var(--hover-speed) ease-out;
}
.faq .questions .menu ol li:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.1);
}
.faq .questions .menu ol li:hover,
.faq .questions .menu ol li:focus {
    color: var(--col-light);
    background-color: var(--col-red);
}
.faq .questions .menu ol li:hover::before,
.faq .questions .menu ol li:focus::before {
    color: var(--col-light);
}
.faq .questions .menu ol li a {
    transition: color var(--hover-speed) ease-out;
}
.faq .questions .menu ol li a:hover,
.faq .questions .menu ol li a:focus {
    color: var(--col-light);
    text-decoration: none;
}

/* FAQ - ANSWERS */
.faq .answers {
    padding-top: 0;
    margin-top: 0;
}
.faq .answers .answer {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.faq .answers .answer:last-child {
    margin-bottom: 0;
}
.faq .answers .answer::after {
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--col-gray-light);
    position: absolute;
    bottom: 0;
    left: 0;
}
.faq .answers .answer:last-child:after {
    width: 0;
    height: 0;
    background-color: transparent;
}
.faq .answers .answer h2 {
    width: 70%;
    font-size: 1.25rem;
    color: var(--col-gray-dark);
    margin-left: 2%;
    display: inline-block;
    vertical-align: middle;
}
.faq .answers .answer p:nth-child(3) {
    margin-top: 1.5rem;
}
.faq .answers .answer .btn-top {
    position: absolute;
    bottom: 1rem;
    right: 0;
}

/* FOOTER */
footer {
    padding: 3rem 1rem;
}
footer .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}
footer .logo svg {
    width: 6rem;
    height: 3rem;
    fill: var(--col-gray-dark);
    display: inline-block;
    vertical-align: middle;
    opacity: 0.75;
}
footer .logo img {
    width: 13rem;
    filter: grayscale(1);
    display: inline-block;
    vertical-align: middle;
    opacity: 0.5;
}
footer .disclaimer {
    padding: 1rem;
}
footer .disclaimer p {
    font-size: 0.75rem;
    color: var(--col-gray-dark);
    margin: 0;
}
footer .copyright {
    font-size: 0.65rem;
    color: var(--col-gray-dark);
    text-align: center;
    display: block;
}
footer nav ul {
    font-family: var(--txt-strong);
    font-size: 0.65rem;
    color: var(--col-gray-dark);
    list-style: none;
    padding: 1rem;
    margin: 0;
}
footer nav ul li {
    width: 49%;
    display: inline-block;
    padding: 0.25em 0;
    cursor: pointer;
}
footer nav ul li:nth-child(even) {
    margin-left: 0.5%;
}
footer nav ul li a {
    transition: color var(--hover-speed);
}
footer nav ul li a:hover {
    color: var(--col-dark);
    text-decoration: none;
}
footer nav ul li:hover a {
    color: var(--col-dark);
}

/* --------------- DESKTOP --------------- */
@media screen and (min-width: 83rem) {

    /* COMMON */
    .heading,
    h1,
    h2,
    h3,
    h4 {
        font-size: 2rem;
    }
    .hideFromDesktop {
        width: 0;
        height: 0;
        display: none !important;
        visibility: hidden !important;
    }
    .hideFromMobile {
        width: auto;
        height: auto;
        display: inline-block;
        visibility: visible;
    }
    .padding {
        padding: 2.25rem 4rem;
    }
    .ds {
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
    }

    /* VIDEOS */
    /* .vid {
        --vid-bor: var(--bor-rad);
    } */

    /* HEADER */
    header {
        padding-top: 1.75rem;
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    header::before {
        height: 1rem;
    }
    header::after {
        width: 100%;
        height: 2.3rem;
        content: "";
        background-color: var(--col-brand);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    header .top {
        padding-inline: 1rem;
    }
    header h1 {
        width: max-content;
        font-size: 1.25rem;
        letter-spacing: 0.07em;
    }
    header .face {
        width: 18%;
        position: absolute;
        top: -3rem;
        left: auto;
        right: 31.5%;
        transform: none;
    }
    header .logo {
        width: max-content;
        margin-left: 0;
    }
    header .logo svg {
        width: 10rem;
        height: 5rem;
    }
    header .logo img {
        width: 27rem;;
    }
    header .help {
        background-color: #303030;
        border: var(--col-brand) solid 2px;
        border-top: none;
        border-right: none;
        border-bottom-left-radius: 2rem;
        padding: 0.5rem;
        padding-left: 2rem;
        position: absolute;
        top: -1.75rem;
        right: 0;
    }
    header .help ul {
        font-family: var(--txt-strong);
        font-size: 0.85rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    header .help ul li {
        text-align: left;
        padding: 0 1em;
        display: inline-block;
        vertical-align: middle;
    }
    header .help ul li:first-child {
        border-right: var(--col-brand) solid 2px;
    }
    header .help ul li a {
        color: var(--col-gray-light);
        transition: color var(--hover-speed) ease-out;
    }
    header .help ul li a {
        color: var(--col-gray-light);
        transition: color var(--hover-speed) ease-out;
    }
    header .help ul li a:hover,
    header .help ul li a:focus {
        color: var(--col-brand);
    }
    header .help ul li:last-child {
        padding-inline: 0.5rem;
    }
    header .help ul li img {
        width: 3.5rem;
    }
    header .help ul li img:first-child {
        margin-right: 0.25rem;
    }
    header h2 {
        font-family: var(--txt-default);
        font-size: 1.25rem;
        font-style: italic;
        text-transform: capitalize;
        text-align: center;
        position: absolute;
        bottom: 1rem;
        right: 0;
    }
    header h2 span {
        font-family: var(--txt-heading);
        color: var(--col-brand);
        text-transform: uppercase;
    }
    header h2 strong {
        font-family: var(--txt-heading);
        font-size: 2.5em;
        line-height: 1em;
        display: block;
    }

    /* MENU */
    header nav {
        width: min(100%, 70.5rem);
        font-size: 1.15rem;
        background-color: var(--col-brand);
        margin-inline: auto;
        position: relative;
        top: auto;
        left: auto;
    }
    header nav > input {
        position: absolute;
        top: 0;
        right: 0;
        display: none;
        visibility: hidden;
    }
    header nav > label {
        z-index: 99;
        width: 0;
        height: 0;
        display: none;
        visibility: hidden;
        position: absolute;
        top: 0;
        right: 0;
        cursor: default;
    }
    header nav > label svg {
        width: 0;
        height: 0;
        display: none;
        visibility: hidden;
    }
    header nav ul {
        width: max-content;
        font-family: var(--txt-heading);
        font-size: 1em;
        color: var(--col-dark);
        text-transform: uppercase;
        background-color: transparent;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
        display: block;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        isolation: isolate;
    }
    header nav ul li {
        z-index: 2;
        font-size: inherit;
        text-align: center;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5em 1.5em;
        transform: none;
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }
    header nav ul li .big-red {
        transition: color var(--hover-speed) ease-out;
    }
    header nav ul li::before {
        z-index: -1;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--col-red);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform-origin: center;
        transform: scaleX(0);
        opacity: 0;
        transition: transform var(--hover-speed) ease-out,
            opacity var(--hover-speed) ease-out;
    }
    header nav ul li:hover::before,
    header nav ul li:focus::before,
    header nav ul .selected::before {
        transform: scaleX(1);
        opacity: 1;
    }
    header nav ul li::after {
        width: 6px;
        height: 100%;
        content: "";
        background-color: var(--col-light);
        position: absolute;
        top: 0;
        right: -6px;
        opacity: 0.5;
    }
    header nav ul li:nth-child(odd) {
        color: inherit;
        background-color: transparent;
    }
    header nav ul li:first-child {
        padding-left: 1.5rem;
    }
    header nav ul li:last-child {
        padding-bottom: 0.5em;
    }
    header nav ul li a {
        color: inherit;
        transition: color var(--hover-speed) ease-out;
    }
    header nav ul li a:hover,
    header nav ul li a:focus,
    header nav ul .selected a {
        color: var(--col-light);
        text-decoration: none;
    }
    header nav ul li a:hover .big-red,
    header nav ul li a:focus .big-red,
    header nav ul .selected a .big-red {
        color: var(--col-light);
    }
    header nav ul li:hover,
    header nav ul li:focus {
        color: var(--col-light);
        outline: none;
    }
    header nav ul li:hover .big-red,
    header nav ul li:focus .big-red {
        color: var(--col-light);
    }
    header nav > input:checked ~ ul {
        transform: none;
    }s
    header nav > input:checked ~ ul li {
        transform: none;
    }

    /* HOME - BANNER */
    .home .banner {
        padding: 0;
    }
    .home .banner::before,
    .home .banner::after {
        z-index: 4;
        width: 100%;
        height: 2px;
        content: "";
        position: absolute;
        left: 0;
    }
    .home .banner::before {
        background-color: #c6c6c6;
        bottom: 2px;
    }
    .home .banner::after {
        background-color: #e3e3e3;
        bottom: 0;
    }
    .home .banner .bottom {
        padding-top: 3rem;
    }
    .home .banner .ron {
        z-index: 3;
        width: 35%;
        bottom: -18rem;
        left: auto;
        right: 0;
        transform: none;
    }
    .home .banner .products {
        z-index: 2;
        width: 80%;
        top: 30rem;
        bottom: auto;
    }

    /* HOME - INTRO */
    .home .intro {
        padding: 3rem 0;
    }
    .home .intro > h2 {
        font-size: 2.75rem;
    }
    .home .intro > h2 strong {
        font-size: 2.25em;
    }
    .home .intro .content {
        padding-top: 2rem;
        margin-top: 2rem;
    }
    .home .intro .content .left,
    .home .intro .content .right {
        display: inline-block;
        vertical-align: top;
    }
    .home .intro .content .left {
        width: 50%;
        padding-inline: 1rem;
    }
    .home .intro .content .right {
        width: 49%;
    }
    .home .intro .content .copy h3 {
        font-size: 2.5rem;
    }
    .home .intro .content .copy p {
        font-size: 1.25rem;
    }
    .home .intro .content .bulls {
        width: 44%;
        padding-inline: 2rem;
        position: absolute;
        top: 27rem;
        right: 2rem;
    }
    .home .intro .content .bulls h3 {
        font-size: 2.5rem;
        padding-inline: 0;
    }
    .home .intro .content .bulls ul {
        font-size: 1.5rem;
    }
    .home .intro .content .ron {
        border-top-right-radius: var(--bor-rad);
        border-bottom-right-radius: var(--bor-rad);
        box-shadow: 0.25rem 0.25rem 0 var(--col-brand);
        padding: 2rem;
        margin: 0;
    }
    .home .intro .content .ron > h3 {
        font-size: 2.75rem;
        margin-bottom: 0.5em;
    }
    .home .intro .content .ron > img:nth-child(2) {
        margin-bottom: 1.5rem;
    }
    .home .intro .content .ron > p {
        font-size: 1.5rem;
        line-height: 1.35em;
    }
    .home .intro .content .ron > p strong {
        color: var(--col-brand);
        display: block;
    }
    .home .intro .content .ron > p strong span {
        font-family: var(--txt-strong);
        font-size: 2em;
        padding-inline: 0.15em;
    }
    .home .intro .content .copy-large {
        margin-top: 22rem;
    }
    .home .intro .content .copy .sig {
        width: 12rem;
        height: 6rem;
    }
    .home .intro .content .copy .asterisks {
        margin-top: 2.5rem;
    }
    .home .intro .buttons {
        padding-inline: 2rem;
    }
    .home .intro .buttons img {
        width: 48%;
        display: inline-block;
        vertical-align: bottom;
    }
    .home .intro .buttons a:nth-child(1) img,
    .home .intro .buttons a:nth-child(2) img {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .home .intro .buttons a:nth-child(even) img {
        margin-left: 3%;
    }

    /* SIGNUP */
    .signup {
        padding-block: 2rem;
    }
    .signup > img {
        width: 38%;
        top: -2rem;
        left: 0;
    }
    .signup .copy {
        width: 60%;
        margin-left: 37%;
    }
    .signup .copy h2 {
        width: 100%;
        font-size: 3rem;
        margin-left: 0;
    }
    .signup .copy h2 strong {
        font-size: 2em;
    }
    .signup .copy p {
        width: 100%;
        font-size: 1.25rem;
        line-height: 1.35;
        padding-inline: 1rem;
        margin-left: 0;
    }
    .signup .copy p strong {
        display: inline;
    }
    .signup .copy ul {
        font-size: 1.05rem;
        padding-inline: 1rem;
    }
    .signup .copy ul li:nth-child(odd) {
        width: 48%;
        margin-right: 3%;
    }
    .signup .copy ul li:last-child {
        width: 100%;
        font-size: 1.25rem;
        text-align: center;
        padding: 0;
        margin-top: 0.25em;
        margin-right: 0;
    }
    .signup .copy ul li svg {
        top: -0.15em;
    }
    .signup form {
        width: 60%;
        padding-block: 0.5rem;
        margin-left: 37%;
    }
    .signup form input {
        width: 71%;
        font-size: 1.5rem;
        margin-left: 0.5rem;
    }
    .signup form .btn {
        font-size: 1.5rem;
        margin-left: 75%;
    }
    .signup .stamp {
        width: 60%;
        font-size: 2rem;
        letter-spacing: 0.1em;
        margin-top: 1.5rem;
        margin-left: 37%;
    }

    /* TOP PILLS */
    .toppills {
        margin: 0;
    }
    .toppills > .title {
        padding: 2rem 1rem;
    }
    .toppills > .title::before {
        z-index: 2;
        width: 100%;
        height: 1.5rem;
        content: "";
        background-color: var(--col-light);
        position: absolute;
        top: 0;
        left: 0;
    }
    .toppills > .title h2 {
        font-size: 10rem;
    }
    .toppills > .title h2::before,
    .toppills > .title h2::after {
        height: 8px;
    }
    .toppills > .title h2::before {
        top: 0.4em;
    }
    .toppills > .title h2::after {
        bottom: -0.07em;
    }
    .toppills > .title h3 {
        font-size: 2rem;
    }
    .toppills > .title h3 strong {
        font-size: 1.5em;
    }
    .toppills > .title .sig {
        width: 15rem;
        height: 7.5em;
        margin-top: -1rem;
        margin-left: 35%;
    }
    .toppills > .title .ron {
        width: 18%;
    }
    .toppills .products .product {
        border: var(--col-gray-light) solid 2px;
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
        padding: 2rem;
        margin: 2rem auto;
    }
    .toppills .products .product > h3 {
        font-size: 1.5rem;
    }
    .toppills .products .product .content > h2 {
        width: 86%;
        font-size: 3rem;
    }
    .toppills .products .product .content > .img {
        width: 20%;
        margin: 0;
        position: absolute;
        top: 6rem;
        left: 0;
    }
    .toppills .products .product .content > h3 {
        width: 55%;
        font-size: 1.75rem;
        text-align: left;
        position: absolute;
        top: 0.75rem;
        right: 0;
    }
    .toppills .products .product .content > .one-line {
        font-size: 2rem;
        top: 1.35rem;
    }
    .toppills .products .product .content .stats-content {
        width: 40%;
        position: absolute;
        top: 4rem;
        right: 0;
    }
    .toppills .products .product .content .copy {
        width: 35%;
        margin-top: 2rem;
        margin-left: 23%;
    }
    .toppills .products .product .content .copy-continue {
        width: 58%;
        margin-top: 2rem;
    }
    .toppills .products .product > .rathing {
        z-index: 1;
    }
    .toppills .products .product > .btn-gold {
        width: 90%;
        font-size: 1.75rem;
        display: block;
        margin: 1em auto;
    }
    .toppills .products .product > .btn span span {
        padding-right: 0.35em;
    }
    .toppills .products .product > .btn-brand {
        z-index: 2;
        width: max-content;
        font-size: 1.25rem;
        position: absolute;
        bottom: 2.5rem;
        left: 2rem;
    }
    .toppills .products .product-longtitle .content > h2 {
        font-size: 2.25rem;
    }
    .toppills .products .product-longtitle .content > h3 {
        font-size: 1.4rem;
    }
    .toppills .products .logos {
        text-align: left;
    }
    .toppills .products .logos img {
        height: 1.15rem;
        margin-right: 2%;
    }
    .toppills .products .logos img:first-child {
        height: 1.5rem;
    }

    /* LEGAL */
    .legal .content > h2 {
        font-size: 3rem;
        text-align: left;
    }

    /* SCAMS - INTRO */
    .scams .intro {
        border: none;
        overflow: unset;
    }
    .scams .intro h2 {
        font-size: 4rem;
        text-align: left;
        margin: 0.25em auto;
    }
    .scams .intro h2 strong {
        font-size: 1em;
    }
    .scams .intro > img {
        width: 35%;
        float: none;
        margin-top: 0;
        margin-right: 0;
        position: absolute;
        top: 0;
        right: 3.5rem;
    }
    .scams .intro h3 {
        z-index: 1;
        font-size: 2.1rem;
        border: rgba(0, 0, 0, 0.1) solid 1px;
        border-radius: var(--bor-rad-small);
    }

    /* SCAMS - TOP SCAMS */
    .scams .top-scams .scam {
        border: var(--col-gray-light) solid 2px;
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
        padding: 2rem;
        margin: 2rem auto;
    }
    .scams .top-scams .scam:first-child {
        margin-top: 1rem;
    }
    .scams .top-scams .scam .top-padding-extra {
        padding-bottom: 1rem;
    }
    .scams .top-scams .scam .top .num {
        font-size: 3rem;
    }
    .scams .top-scams .scam .top h2 {
        width: max-content;
        font-size: 2.5rem;
        display: block;
        margin-left: 0;
        position: absolute;
        top: 0;
        left: 6.5rem;
    }
    .scams .top-scams .scam .top .h2-small {
        width: max-content;
        font-size: 2.25rem;
    }
    .scams .top-scams .scam .top h3 {
        font-size: 1.5rem;
        text-align: left;
        display: block;
        margin-left: 0;
        position: absolute;
        top: 1.75rem;
        left: 6.5rem;
    }
    .scams .top-scams .scam .top .vid {
        width: 95%;
        margin: 2rem auto;
        display: block;
    }
    .scams .top-scams .scam .media {
        width: 32%;
        margin-top: 2rem;
        display: inline-block;
        vertical-align: top;
    }
    .scams .top-scams .scam .media > img {
        width: 100%;
        display: block;
    }
    .scams .top-scams .scam .copy {
        width: 65%;
        margin-top: 2rem;
        margin-left: 2%;
        display: inline-block;
        vertical-align: top;
    }
    .scams .top-scams .scam .btn-top {
        right: 1rem;
    }

    /* SECRETS - INTRO */
    .secrets .intro {
        padding: 3rem 0;
    }
    .secrets .intro h2 {
        font-size: 3rem;
        margin-bottom: 0;
    }
    .secrets .intro h2 strong {
        font-size: 2em;
    }
    .secrets .intro .banner {
        margin-bottom: 2rem;
    }
    .secrets .intro .article {
        width: 60%;
        background-color: var(--col-light);
        border-radius: var(--bor-rad-small);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
        padding: 1rem 0.5rem;
        margin-left: 1rem;
        display: inline-block;
        vertical-align: top;
    }
    .secrets .intro .copy {
        width: 32%;
        padding: 0;
        margin-left: 4%;
        display: inline-block;
        vertical-align: top;
    }
    .secrets .intro .copy p {
        font-size: 1.25rem;
        margin: 0;
    }
    .secrets .intro .copy p:first-child {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    .secrets .intro .copy p strong {
        padding-bottom: 0.25em;
        display: block;
    }

    /* SECRETS - 6 SECRETS */
    .secrets .six-secrets {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    .secrets .six-secrets .secret {
        border: var(--col-gray-light) solid 2px;
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
        padding: 2rem;
        margin: 2rem auto;
    }
    .secrets .six-secrets .secret:first-child {
        margin-top: 1rem;
    }
    .secrets .six-secrets .secret .top-padding-extra {
        padding-bottom: 1rem;
    }
    .secrets .six-secrets .secret .top .num {
        font-size: 3rem;
    }
    .secrets .six-secrets .secret .top h2 {
        width: max-content;
        font-size: 2.5rem;
        display: block;
        margin-left: 0;
        position: absolute;
        top: 0;
        left: 6.5rem;
    }
    .secrets .six-secrets .secret .top .h2-small {
        width: max-content;
        font-size: 2.1rem;
    }
    .secrets .six-secrets .secret .top h3 {
        font-size: 1.5rem;
        text-align: left;
        display: block;
        margin-left: 0;
        position: absolute;
        top: 1.75rem;
        left: 6.5rem;
    }
    .secrets .six-secrets .secret .media {
        width: 32%;
        margin-top: 2rem;
        display: inline-block;
        vertical-align: top;
    }
    .secrets .six-secrets .secret .media > img {
        width: 100%;
        display: block;
    }
    .secrets .six-secrets .secret .copy {
        width: 65%;
        margin-top: 2rem;
        margin-left: 2%;
        display: inline-block;
        vertical-align: top;
    }
    .secrets .six-secrets .secret .btn-top {
        right: 1rem;
    }

    /* ABOUT - INTRO */
    .about .intro {
        padding: 2rem 0;
        padding-left: 0;
        margin-inline: 3rem;
    }
    .about .intro::before {
        height: 6px;
    }
    .about .intro h2 {
        font-size: 3rem;
        text-align: left;
        padding-left: 0;
        margin: 0;
    }

    /* ABOUT - CONTENT */
    .about .content {
        padding-top: 2rem;
        padding-inline: 3rem;
    }
    .about .content::after {
        width: calc( 100% - 6rem);
        left: 3rem;
    }
    .about .content p:last-child {
        margin-bottom: 0;
    }
    .about .content h2 {
        text-align: left;
        margin-top: 0;
    }
    .about .content > img,
    .about .content .copy {
        display: inline-block;
        vertical-align: top;
    }
    .about .content > img {
        width: 20%;
        margin: 0;
    }
    .about .content .copy {
        width: 70%;
        padding-bottom: 1rem;
        margin-left: 4%;
    }

    /* CONTACT - INTRO */
    .contact .intro::before {
        width: 50%;
        height: 6px;
        top: 3.8rem;
        left: auto;
        right: 3rem;
    }
    .contact .intro h2 {
        font-size: 3rem;
        text-align: left;
        padding-left: 0;
        padding-right: 0.15em;
        margin: 0;
        margin-bottom: 0.75em;
    }
    .contact .intro > img,
    .contact .intro .copy {
        display: inline-block;
        vertical-align: top;
    }
    .contact .intro .copy {
        width: 75%;
        margin-left: 4%;
    }

    /* CONTACT - HOURS */
    .contact .hours {
        border-bottom: var(--col-gray-light) solid 1px;
    }
    .contact .hours ul {
        width: 49%;
        display: inline-block;
        vertical-align: top;
    }

    /* CONTACT - FORM */
    .contact .form form input {
        padding-block: 0.75em;
    }
    .contact .form form button {
        width: max-content;
        margin-left: 81.5%;
    }

    /* SUBMIT - INTRO */
    .submit .intro::before {
        width: 52%;
    }
    .submit .intro h2 {
        margin-bottom: 0;
    }

    /* SUBMIT - FORM */
    .submit .form {
        padding-bottom: 3rem;
    }
    .submit .form h2 {
        font-size: 1.5rem;
    }
    .submit .form .small {
        width: 49%;
        display: inline-block;
        vertical-align: middle;
    }
    .submit .form .small:nth-child(even) {
        margin-left: 1.25%;
    }

    /* FAQ - INTRO */
    .faq .intro > h2 {
        font-size: 4rem;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .faq .intro > img {
        width: 26%;
        float: none;
        padding-left: 0;
        margin-right: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    .faq .intro .copy {
        width: 76%;
    }

    /* FAQ - QUESTIONS */
    .faq .questions .menu {
        padding: 1rem 2rem;
    }
    .faq .questions .menu ol {
        font-size: 1.25rem;
    }
    .faq .questions .menu ol li {
        padding: 0.25em 1em;
        padding-left: 3.5em;
    }
    .faq .questions .menu ol li::before {
        top: 0.25em;
        left: 1.5em;
    }

    /* FAQ - ANSWERS */
    .faq .answers .answer h2 {
        width: 85%;
        font-size: 2.05rem;
        color: var(--col-gray-dark);
        margin-left: 2%;
        display: inline-block;
        vertical-align: middle;
    }
    .faq .answers .answer p:nth-child(3) {
        margin-top: 1.5rem;
    }

    /* FOOTER */
    footer .logo svg {
        width: 8rem;
        height: 4rem;
    }
    footer .logo img {
        width: 20rem;
    }
    footer .copyright {
        text-align: right;
    }
    footer nav ul li {
        width: max-content;
        padding-right: 4.6em;
    }
    footer nav ul li:last-child {
        padding-right: 0;
    }
    footer .sig {
        width: 4rem;
        height: 2.5rem;
        fill: var(--col-gray-dark);
        position: absolute;
        bottom: 2.15rem;
        right: 19.5rem;
        opacity: 0.5;
    }

}

/* --------------- MOBILE - ALL SMALLER DEVICES --------------- */
@media screen and (max-width: 24rem) {

    /* HEADER */
    header h1 {
        font-size: 0.65rem;
    }
    header .face {
        width: 27%;
    }
    header .logo {
        margin-left: 16%;
    }

    /* HOME - INTRO */
    .home .intro .content .bulls h3 {
        padding-inline: 1.5rem;
    }

    /* TOP PILLS */
    .toppills > .title {
        padding-top: 0.75rem;
    }
    .toppills > .title .sig {
        margin-left: 20%;
    }    

}

/* --------------- DESKTOP - LARGE SCREENS --------------- */
/* @media screen and (min-width: 150rem) {



} */
