/* FONTS */
@font-face {
    font-family: NotoSans-Regular;
    src: url("../fon/NotoSans-Regular.woff2") format("woff2"),
        url("../fon/NotoSans-Regular.woff") format("woff");
}
@font-face {
    font-family: NotoSans-Bold;
    src: url("../fon/NotoSans-Bold.woff2") format("woff2"),
        url("../fon/NotoSans-Bold.woff") format("woff");
}
@font-face {
    font-family: Impact;
    src: url("../fon/Impact.woff2") format("woff2"),
        url("../fon/Impact.woff") format("woff");
}
@font-face {
    font-family: Rockwell;
    src: url("../fon/rockwell-extra-bold.woff2") format("woff2"),
        url("../fon/rockwell-extra-bold.woff") format("woff");
}
@font-face {
    font-family: Arial-Black;
    src: url("../fon/arial-black.woff2") format("woff2"),
        url("../fon/arial-black.woff") format("woff");
}

/* VARIABLES */
:root {
    /* FONTS */
    --txt-default: NotoSans-Regular;
    --txt-heading: NotoSans-Bold;
    --txt-heading-alt: Impact;
    --txt-rockwell: Rockwell;
    --txt-news: 'Times New Roman', Times, serif;
    --txt-black: Arial-Black;
    
    /* COLORS */
    --col-brand-blue: #092358;
    --col-brand-red: #b71c1c;
    --col-brand-blue-alt: #2848a9;
    --col-brand-blue-highlight: #50bfff;
    --col-brand-blue-dark: #001434;
    --col-brand-red-alt: #ff2d2d;
    --col-dark: #000000;
    --col-light: #ffffff;
    --col-gray-dark: #757575;
    --col-gray-light: #e5e5e5;

    /* GRADIENTS */
    --grd-brand-blue-hor: linear-gradient(to right, var(--col-brand-blue) 0%, var(--col-brand-blue-alt) 100%);
    --grd-brand-blue-ver: linear-gradient(to top, var(--col-brand-blue) 0%, var(--col-brand-blue-alt) 100%);
    --grd-gray-ver: linear-gradient(to top, var(--col-gray-light) 0%, var(--col-light) 100%);

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

    /* MISC */
    --bor-rad: 1em;
    --bor-rad-small: 0.5em;
    --bor-rad-fixed: 8px;
}

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

/* COMMON */
.container,
.container_wide {
    z-index: 1;
    width: min(100%, 70.5rem);
    margin-inline: auto;
    position: relative;
}
.container_wide {
    width: min(100%, 100rem);
}
a {
    color: var(--col-brand-dark);
    text-decoration: none;
}
a:hover {
    color: var(--col-brand-blue);
    text-decoration: underline;
}
*:focus {
    outline-color: var(--col-brand-dark);
}
*::selection {
    background-color: var(--col-brand-blue-highlight);
}
.svgs {
    display: none;
    visibility: hidden;
}
svg,
img {
    max-width: 100%;
}
svg {
    fill: var(--col-brand-blue);
}
h1,
h2,
h3 {
    font-family: var(--txt-heading);
    font-size: 2.25rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 0.5em;
}
h1 strong,
h2 strong,
h3 strong {
    font-weight: normal;
}
.black {
    font-family: var(--txt-heading-alt);
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
p {
    font-size: 1rem;
    margin-bottom: 1em;
}
strong {
    font-family: var(--txt-heading);
    font-weight: normal;
}
.uppercase {
    text-transform: uppercase;
}
.line-break,
.line-break-mobile {
    display: block;
}
.red {
    color: var(--col-brand-red-alt);
}
.hideFromMobile {
    width: 0;
    height: 0;
    display: none;
    visibility: hidden;
}
.padding {
    padding: 2rem 1rem;
}
.hide {
    display: none;
    visibility: hidden;
}

/* BUTTONS */
.btn {
    --_color: var(--col-brand-blue);
    font-family: var(--txt-heading);
    font-size: 1.25rem;
    color: var(--col-light);
    line-height: 1em;
    text-transform: capitalize;
    background: transparent;
    border: var(--_color) solid 2px;
    border-radius: var(--bor-rad-small);
    outline: none;
    padding: 0.75em 2em;
    isolation: isolate;
    cursor: pointer;
    transition: color var(--hover-speed) ease-in-out;
    overflow: hidden;
}
.btn * {
    z-index: 2;
}
.btn::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--_color);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity var(--hover-speed) ease-in-out;
}
.btn svg {
    --_size: 0.85em;
    width: var(--_size);
    height: var(--_size);
    color: inherit;
    margin-top: -0.15em;
    display: inline-block;
    vertical-align: middle;
}
.btn:hover,
.btn:focus {
    color: var(--_color);
}
.btn:hover::before,
.btn:focus::before {
    opacity: 0;
}
.btn-invert {
    color: var(--_color);
    border-color: var(--_color);
}
.btn-invert::before {
    opacity: 0;
}
.btn-invert:hover,
.btn-invert:focus {
    color: var(--col-light);
    border-color: var(--_color);
}
.btn-invert:hover::before,
.btn-invert:focus::before {
    opacity: 1;
}
.btn-round-arrow {
    padding-bottom: 0.5em;
}
.btn-round-arrow svg {
    --_size: 1.35em;
}
.btn-invert-gray {
    color: var(--col-gray-dark);
    border-color: var(--col-gray-dark);
}
.btn-red-alt {
    --_color: var(--col-brand-red-alt);
}
.btn-red-alt::before {
    transition: background-color var(--hover-speed) ease-in-out;
}
.btn-red-alt:hover::before {
    background-color: var(--col-light);
    opacity: 1;
}
.btn-special {
    --_color: var(--col-brand-blue-alt);
    background: var(--col-brand-red);
    text-transform: uppercase;
    border-color: var(--col-brand-blue-highlight);
    border-radius: var(--bor-rad-fixed);
    transition: color var(--hover-speed) ease-in-out,
                border-color var(--hover-speed) ease-in-out;
}
.btn-special img {
    width: 1em;
    margin-top: -0.15em;
    margin-left: 0.25em;
    display: inline-block;
    vertical-align: middle;
}
.btn-special:hover,
.btn-special:focus {
    color: var(--col-light);
    border-color: var(--col-brand-red);
}

/* HEADER */
header {
    z-index: 2;
    --_height: 8rem;
    height: var(--_height);
    font-size: 1rem;
    background-color: var(--col-light);
    border-bottom: var(--col-brand-red) solid 4px;
}
header .container {
    height: 100%;
}
header .main {
    font-size: 1rem;
    padding: 0.5em 1em;
}
header .main .logo {
    width: 17em;
    display: block;
}
header .main .btn {
    width: 0;
    height: 0;
    display: none;
    visibility: hidden;
}

/* MENU */
header nav {
    width: 100%;
    font-family: var(--txt-default);
    font-size: 1.25rem;
    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: 99;
    width: max-content;
    height: auto;
    font-size: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    cursor: pointer;
}
header nav > label svg {
    width: 1.35em;
    height: 1.35em;
    color: var(--col-brand-blue);
    display: block;
}
header nav ul {
    width: 100%;
    font-family: var(--txt-heading);
    font-size: inherit;
    color: var(--col-brand-dark);
    line-height: 1em;
    text-align: center;
    text-transform: capitalize;
    background-color: var(--col-light);
    border-bottom-left-radius: var(--bor-rad);
    border-bottom-right-radius: var(--bor-rad);
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: var(--_height);
    left: 0;
    transform-origin: top right;
    transform: scale(0);
    overflow: hidden;
}
header nav ul li {
    font-size: 1.15em;
    background-color: #ffffff;
    box-shadow: 0 0 1rem var(--col-grey-shadow);
    padding: 0.75em 1em;
    cursor: pointer;
    transform: translateX(100%);
    transition: transform var(--hover-speed) ease-out;
}
header nav ul li:nth-child(even) {
    color: var(--col-light);
    background-color: var(--col-brand-blue);
}
header nav ul li:first-child {
    box-shadow: none;
    border-top: var(--col-gray-light) solid 1px;
}
header nav ul li:last-child {
    z-index: 1;
    background-color: var(--col-brand-red);
    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 {
    color: #ffffff;
    text-decoration: none;
}
header nav ul li:hover,
header nav ul li:focus {
    color: var(--col-light);
    outline: none;
    background-color: var(--col-brand-dark);
}
header nav > input:checked ~ ul {
    transform: scale(1);
}
header nav > input:checked ~ ul li {
    transform: translateX(0);
}
header nav > input:checked ~ ul .phone {
    font-family: var(--txt-heading-alt);
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--col-light);
    text-align: center;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}

/* BANNER */
.home .banner {
    z-index: 1;
    font-size: 1rem;
    color: var(--col-light);
    text-align: center;
    background: var(--col-brand-blue);
    background: linear-gradient(to bottom, var(--col-brand-blue) 0%, #03153c 100%);
    padding-bottom: 1.5rem;
    isolation: isolate;
    overflow: hidden;
}
.home .banner .flag {
    width: 175%;
    max-width: none;
    position: absolute;
    top: 0;
    left: -3rem;
}
.home .banner .pill {
    width: 40%;
    max-width: none;
    position: absolute;
    top: 11rem;
    right: -1rem;
}
.home .banner .copy {
    margin-top: -2rem;
}
.home .banner .copy .title {
    font-size: 2.15rem;
    line-height: 1.15em;
    text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.75);
    padding: 0 1rem;
    margin-bottom: 0.75rem;
}
.home .banner .copy .title u,
.home .banner .copy .title .american,
.home .banner .copy .title .viagra {
    text-transform: uppercase;
}
.home .banner .copy .title .american {
    font-family: var(--txt-heading-alt);
    font-size: 1.5em;
    line-height: 1em;
    display: block;
}
.home .banner .copy .title .viagra {
    font-size: 1.18em;
    color: var(--col-brand-red-alt);
    line-height: 1em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}
.home .banner .copy .btn {
    width: 90%;
    font-size: 6vw;
    border-color: var(--col-brand-red);
}
.home .banner .copy .btn::before {
    background-color: var(--col-brand-red-alt);
}

/* QUALITY */
.home .quality {
    text-align: center;
}
.home .quality > h2 {
    font-family: var(--txt-default);
    font-size: 7vw;
    line-height: 1.25em;
    padding: 0 1rem;
    margin: 1.5rem auto;
}
.home .quality > h2 strong {
    font-family: var(--txt-heading);
    color: var(--col-brand-blue);
}
.home .quality > h2 u {
    font-family: var(--txt-heading);
    color: var(--col-brand-red);
}
.home .quality .container {
    padding-top: 0;
}
.home .quality .copy {
    font-size: 1rem;
}
.home .quality .copy ul {
    font-size: 1.2em;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}
.home .quality .copy ul li {
    padding-left: 1.5em;
    margin-block: 0.25em;
}
.home .quality .copy ul li svg {
    width: 1.5em;
    height: 1.5em;
    color: var(--col-brand-blue-alt);
    position: absolute;
    top: 0.1em;
    left: 0;
}
.home .quality .copy ul li u {
    font-family: var(--txt-heading);
    color: var(--col-brand-red);
}
.home .quality .copy .btn {
    width: 90%;
    margin-block: 1.5rem;
}
.home .quality .copy p {
    font-size: 1.25em;
}
.home .quality .copy p strong {
    color: var(--col-brand-red);
}
.home .quality .table-wrapper {
    font-size: 1rem;
    color: var(--col-light);
    background: var(--grd-brand-blue-ver);
    border-radius: var(--bor-rad-small);
    box-shadow: 0.25em 0.25em 0.15em rgba(0, 0, 0, 0.25);
    padding-bottom: 1rem;
    isolation: isolate;
    overflow: hidden;
}
.home .quality .table-wrapper > h3 {
    z-index: 2;
    font-size: 1.5em;
    font-style: italic;
    background-color: var(--col-brand-red);
    padding: 0.5em 1em;
}
.home .quality .table-wrapper .table {
    --_col-border: rgba(255, 255, 255, 0.15);
    font-size: 1em;
    text-align: left;
    list-style: none;
    border-bottom: var(--_col-border) solid 1px;
    padding: 0;
    margin: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.home .quality .table-wrapper .table li {
    border: var(--_col-border) solid 1px;
    padding: 0.5rem 0.5rem;
}
.home .quality .table-wrapper .table li:nth-child(odd) {
    border-left-width: 2px;
}
.home .quality .table-wrapper .table li:nth-child(even) {
    font-size: 0.8em;
    text-align: center;
    border-right-width: 2px;
}
.home .quality .table-wrapper .table li:nth-child(even) strong {
    font-family: var(--txt-heading);
    font-size: 1.15em;
    text-transform: uppercase;
}
.home .quality .table-wrapper .table li:nth-child(1),
.home .quality .table-wrapper .table li:nth-child(2) {
    font-family: var(--txt-heading);
    font-size: 0.9em;
    text-transform: uppercase;
    text-align: center;
    border-top: none;
    border-left: none;
    border-right: none;
}
.home .quality .table-wrapper .table li:nth-child(3) img {
    width: 100%;
    display: block;
}
.home .quality .table-wrapper .table li:nth-child(4) span {
    font-family: var(--txt-heading-alt);
    font-size: 3em;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home .quality .table-wrapper .table li img {
    width: 1.25em;
    margin-left: 0.1em;
}
.home .quality .banner-india {
    width: 100%;
    background-color: var(--col-brand-blue);
    border: var(--col-brand-blue) solid 4px;
    border-radius: var(--bor-rad-fixed);
    box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
    display: block;
}

/* PURIFICATION PROCESS */
.home .purification-process {
    font-size: 1rem;
}
.home .purification-process .container {
    display: grid;
    grid-template-columns: 1fr;
}
.home .purification-process .title {
    background-color: var(--col-light);
}
.home .purification-process .title h2 {
    font-family: var(--txt-default);
    font-size: 8.5vw;
    color: var(--col-light);
    line-height: 1.1em;
    text-align: center;
    background-color: var(--col-brand-blue);
    padding: 1.5rem 0.5rem;
    margin: 0;
}
.home .purification-process .title h2 strong {
    font-style: italic;
    color: #b0e0ff;
}
.home .purification-process .title img {
    width: 100%;
    display: block;
}
.home .purification-process .copy {
    font-size: 1em;
    background-color: var(--col-light);
    padding: 0.5rem 1.5rem 2.5rem 1.5rem;
}
.home .purification-process .copy p {
    font-size: 1.25em;
    line-height: 1.5em;
}
.home .purification-process .copy p .blue {
    color: var(--col-brand-blue);
}
.home .purification-process .copy h3 {
    font-size: 7vw;
    color: var(--col-brand-red);
    text-align: center;
    margin: 0;
}

/* ANIMATED BANNER - CTA */
.animated-banner {
    z-index: 4;
    font-size: 0.48rem;
    border-top: var(--col-gray-light) solid 2px;
    padding: 1rem;
}
.animated-banner .animated-banner-cta {
    --_col-light: var(--col-brand-red);
    --_col-dark: var(--col-brand-blue-alt);
    --_col-highlight: #53afff;
    --_col-text: #ffffff;
    --_border-radius: 1em;
    --_speed: 1.5s;
    width: 100%;
    font-family: var(--txt-heading-alt);
    font-size: 3em;
    color: var(--_col-text);
    line-height: 1.15em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0.5em var(--_col-light);
    background-color: var(--_col-light);
    border: var(--_col-light) solid 4px;
    border-radius: var(--_border-radius);
    padding: 0.5em 0.25em;
    will-change: transform;
}
.animated-banner .animated-banner-cta .top .logo {
    width: 6em;
    color: transparent;
    text-shadow: none;
    background-image: url("../img/misc/viagra-logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}
.animated-banner .animated-banner-cta .middle {
    width: 100%;
    font-size: 1em;
    background-color: var(--_col-dark);
    border-radius: var(--_border-radius);
    padding: 0.5em 0.1em;
    margin: 0.25em auto;
}
.animated-banner .animated-banner-cta .middle > span {
    width: 32%;
    font-size: 1.15em;
    font-style: italic;
    line-height: 1.25em;
    display: inline-block;
    vertical-align: middle;
}
.animated-banner .animated-banner-cta .middle > .left u:first-child {
    font-size: 1.05em;
}
.animated-banner .animated-banner-cta .middle > .left u:last-child {
    color: var(--_col-highlight);
}
.animated-banner .animated-banner-cta .middle > .right > u:first-child {
    color: var(--_col-highlight);
}
.animated-banner .animated-banner-cta .middle > .right .one-word {
    font-size: 0.65em;
    margin-top: -0.25em;
    display: block;
}
.animated-banner .animated-banner-cta .bottom .click-here {
    font-family: var(--txt-heading);
    font-size: 1.1em;
    display: inline-block;
    animation: animated-banner-pulse calc( var(--_speed) / 2 ) infinite;
}
.animated-banner .animated-banner-cta .pill {
    width: 6em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: animated-banner-pulse-twirl var(--_speed) infinite ease-in;
}
@keyframes animated-banner-pulse {

    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.1);
    }

    40% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }

}
@keyframes animated-banner-pulse-twirl {

    0% {
        transform: scale(0.9) rotate(-10deg);
    }

    30% {
        transform: scale(1.15) rotate(10deg);
    }

    60% {
        transform: scale(0.9) rotate(-10deg);
    }

    100% {
        transform: scale(0.9) rotate(-10deg);
    }

}

/* THE LEGEND */
.home .the-legend {
    font-size: 1rem;
    background-color: var(--col-brand-blue-dark);
}
.home .the-legend .container > img {
    display: block;
}
.home .the-legend  .gold-coins {
    text-align: center;
    padding: 1.5rem 1rem;
    isolation: isolate;
}
.home .the-legend  .gold-coins::before,
.home .the-legend  .gold-coins::after {
    z-index: -1;
    width: 100%;
    content: "";
    background: var(--col-brand-blue);
    position: absolute;
    left: 0;
}
.home .the-legend  .gold-coins::before {
    height: 100%;
    background-image: url("../img/the-legend/american-flag.jpg");
    background-size: cover;
    top: 0;
}
.home .the-legend  .gold-coins::after {
    height: 70%;
    background: linear-gradient(to bottom, rgba(0, 36, 93, 0) 0%, rgba(0, 36, 93, 1) 100%);
    bottom: 0;
}
.home .the-legend  .gold-coins > img {
    width: 31%;
    display: inline-block;
}
.home .the-legend  .gold-coins > img:not(:nth-child(3)),
.home .the-legend  .gold-coins > img:not(:last-child) {
    margin-right: 1%;
}

/* PLAN */
.plan {
    font-size: 1rem;
    text-align: center;
    text-transform: capitalize;
    background-color: var(--col-gray-light);
    padding-bottom: 0;
}
.plan .container {
    border-bottom: rgba(0, 0, 0, 0.1) solid 2px;
    padding-bottom: 1.5rem;
}
.plan h2 {
    font-family: var(--txt-heading-alt);
    font-size: 11vw;
    text-wrap: balance;
}
.plan h2 span {
    color: var(--col-brand-blue);
}
.plan p {
    font-family: var(--txt-heading);
    font-size: 1em;
    line-height: 1.4em;
}
.plan p strong {
    font-family: var(--txt-heading);
    color: var(--col-brand-blue-alt);
    text-decoration: underline;
}
.plan h3 {
    font-size: 1.5em;
    line-height: 1.15em;
    margin-bottom: 0;
}

/* PODS */
.pods {
    font-size: 1rem;
    background-color: var(--col-gray-light);
    background-image: url("../img/pods/background-american-flag.png");
    background-size: 600%;
    background-position: bottom left;
    background-repeat: repeat;
}
.pods .container {
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.pods .pod * {
    z-index: 1;
}
.pods .pod {
    --_color-primary: var(--col-dark);
    --_color-secondary: var(--col-brand-blue-highlight);
    --_padding: 1rem;
    height: max-content;
    font-size: 1em;
    text-align: center;
    color: var(--_color-primary);
    background-color: var(--col-light);
    border: var(--_color-primary) solid 4px;
    border-radius: 25px;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    padding: 2rem var(--_padding) 1rem var(--_padding);
    isolation: isolate;
}
.pods .pod:nth-child(1) {
    border-color: var(--col-brand-red);
}
.pods .pod:nth-child(2) {
    border-color: #3688da;
}
.pods .pod:nth-child(3) {
    border-color: #646464;
}
.pods .pod h2 {
    width: max-content;
    font-family: var(--txt-heading);
    font-size: 2.25em;
    line-height: 1em;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0 0 0 32%;
}
.pods .pod h2 strong {
    font-family: var(--txt-black);
    font-size: 1.35em;
    letter-spacing: normal;
    margin-left: -0.15em;
    display: block;
}
.pods .pod .smaller strong {
    font-size: 1.25em;
}
.pods .pod h2 strong::after {
    width: 100%;
    height: 4px;
    content: "";
    background-color: var(--_color-secondary);
    margin: 0.15em 0 0 0;
    display: block;
}
.pods .pod .badge {
    z-index: 2;
    width: 25%;
    display: block;
    position: absolute;
    top: 1rem;
    left: 1rem;
}
.pods .pod .product {
    width: 90%;
    margin: 1rem auto 0 auto;
    filter: drop-shadow(0.15rem 0.15rem 0.5rem rgba(0, 0, 0, 0.25));
}
.pods .pod .product .product-badge {
    width: 30%;
    position: absolute;
    top: 30%;
    right: -1.5rem;
    transform: translateY(-50%);
}
.pods .pod form {
    margin: 1rem 0 0 0;
}
.pods .pod form .radios {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.pods .pod .radio {
    --_icon-size: 1.5em;
    --_icon-color: inherit;
    --_check-color: #0090d1;
    --_check-color-selected: var(--col-brand-blue-alt);
    font-size: 1em;
    color: var(--col-light);
    background-color: transparent;
    border-radius: 5px;
    padding: 0.5em 0.25em 0.5em var(--_icon-size);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
}
.pods .pod .radio .fill {
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--_check-color);
    position: absolute;
    top: 0;
    left: 0;
}
.pods .pod .radio svg {
    width: var(--_icon-size);
    height: var(--_icon-size);
    color: var(--_icon-color);
    position: absolute;
    top: 50%;
    left: 0.5em;
    transform: translateY(-50%);
}
.pods .pod .radio .tick {
    opacity: 0;
}
.pods .pod .radio .cross {
    opacity: 0.25;
}
.pods .pod .radio input[type="radio"] {
    display: none;
    visibility: hidden;
}
.pods .pod .radio input[type="radio"]:checked ~ .tick {
    opacity: 1;
}
.pods .pod .radio input[type="radio"]:checked ~ .cross {
    opacity: 0;
}
.pods .pod .radio input[type="radio"]:checked ~ .fill {
    background-color: var(--_check-color-selected);
}
.pods .pod .price {
    font-size: 1.75em;
    line-height: 1em;
    margin-top: 1rem;
}
.pods .pod .price span {
    display: block;
}
.pods .pod .price .price-now {
    font-size: 1.25em;
    margin-bottom: 0.5rem;
}
.pods .pod .price strong {
    font-size: 1.5em;
    line-height: 1em;
}
.pods .pod .price sup {
    font-size: 0.6em;
    line-height: 1em;
    vertical-align: super;
}
.pods .pod .extra {
    --_icon-size: 1.25em;
    --_icon-color: var(--col-brand-blue-alt);
    font-size: 1.5em;
    line-height: 1.15em;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}
.pods .pod .extra li {
    padding: 0.5em 0 0 calc( var(--_icon-size) + 0.25em );
}
.pods .pod .extra li svg {
    width: var(--_icon-size);
    height: var(--_icon-size);
    color: var(--_icon-color);
    position: absolute;
    top: 0.4em;
    left: 0;
}
.pods .pod .banner-upsell {
    width: calc( 100% + ( var(--_padding) * 2 ) );
    margin-top: 1rem;
    margin-left: calc( var(--_padding) * -1 );
}
.pods .pod button {
    width: 100%;
    font-size: 1.85em;
    padding: 0.5em;
    margin-top: 1.5rem;
}
.pods-cialis .pod form .radios {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.pods-cialis .pod .product .pill {
    width: 40%;
    position: absolute;
    bottom: -0.5rem;
    right: -1rem;
}

/* GUARANTEE */
.guarantee {
    font-size: 1rem;
}
.guarantee .container {
    padding: 1.5rem 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
.guarantee .benefits-box {
    font-size: 1em;
    text-align: center;
    background-color: var(--col-light);
    border: var(--col-brand-blue-alt) solid 5px;
    border-radius: 15px;
    box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.15);
    padding-top: 1.5rem;
}
.guarantee .benefits-box h2,
.guarantee .benefits-box h3 {
    font-family: var(--txt-heading-alt);
    font-size: 2em;
    padding: 0 0.5rem;
    margin: 0;
}
.guarantee .benefits-box img {
    width: 100%;
    display: block;
}
.guarantee .benefits-box .img-header {
    margin: 1rem auto;
}
.guarantee .benefits-box h3 {
    font-size: 1.6em;
    line-height: 1.25em;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}
.guarantee .benefits-box h3 strong {
    font-family: var(--txt-heading-alt);
    font-size: 1.1em;
    font-weight: normal;
    text-transform: uppercase;
}
.guarantee .benefits-box h3 .blue {
    color: var(--col-brand-blue-alt);
}
.guarantee .benefits-box ul {
    text-align: left;
    list-style: none;
    text-wrap: pretty;
    padding: 0;
    margin: 0 0 1rem 0;
}
.guarantee .benefits-box ul li {
    padding: 0.5rem 1.5rem;
}
.guarantee .benefits-box ul li:nth-child(odd) {
    background-color: var(--col-gray-light);
}
.guarantee .benefits-box ul li strong {
    color: var(--col-brand-blue-alt);
    text-transform: uppercase;
}
.guarantee .guarantee-box {
    font-size: 1em;
    color: var(--col-light);
    text-align: left;
    text-indent: 3em;
    border: #d31c30 solid 5px;
    background-color: #004c7d;
    border-radius: 15px;
    box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
}
.guarantee .guarantee-box img {
    width: 100%;
    display: block;
}
.guarantee .guarantee-box p {
    font-family: var(--txt-heading);
    font-size: 1.1em;
    padding: 1rem 1rem 0 1rem;
    margin: 0;
}

/* FAQ */
.home .home .faq {
    font-size: 1rem;
    text-align: center;
}
.home .faq .container > h2 {
    font-family: var(--txt-news);
    font-size: 7.25vw;
    font-weight: bold;
    color: var(--col-brand-blue-alt);
    line-height: 1.15em;
    text-align: center;
    padding-top: 1.5rem;
    margin: 0 0 1rem 0;
    border-top: var(--col-gray-light) solid 2px;
}
.home .faq .container > p {
    font-family: var(--txt-news);
    font-size: 1em;
    color: var(--col-brand-blue);
    line-height: 1.15em;
    text-align: center;
    margin: 0 0 2rem 0;
}
.home .faq .qa {
    font-size: 1rem;
    text-align: left;
    border-bottom: var(--col-gray-light) solid 2px;
    margin-inline: auto;
    padding-block: 1em;
}
.home .faq .qa:last-child {
    border: none;
}
.home .faq .qa .a {
    z-index: 1;
    width: 100%;
    font-size: 1em;
    padding: 0 0.5em;
    padding-left: 3.57%;
}
.home .faq .qa .a span {
    line-height: 0;
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0;
    opacity: 0;
    transition: line-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.15s ease-in-out;
}
.home .faq .qa .toggle {
    display: none;
    visibility: hidden;
}
.home .faq .qa label {
    z-index: 2;
    width: 100%;
    font-family: var(--txt-heading);
    font-size: 1.25em;
    font-style: normal;
    color: var(--col-brand-blue);
    line-height: 1.25em;
    text-transform: none;
    box-sizing: border-box;
    display: block;
    position: relative;
    padding: 0 0.5em;
    cursor: pointer;
}
.home .faq .qa label span {
    width: 90%;
    display: inline-block;
    vertical-align: top;
}
.home .faq .qa label div {
    --_col: var(--col-brand-red);
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0.4em;
    margin-right: 0.25em;
    transition: transform 0.3s ease-in-out;
}
.home .faq .qa label div::before {
    width: 3px;
    height: 100%;
    content: "";
    background-color: var(--_col);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    transition: opacity 0.3s ease-in-out;
}
.home .faq .qa label div::after {
    width: 100%;
    height: 3px;
    content: "";
    background-color: var(--_col);
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    transition: opacity 0.3s ease-in-out;
}
.home .faq .qa .toggle:checked ~ label div {
    transform: rotate(-90deg);
}
.home .faq .qa .toggle:checked ~ label div::after {
    opacity: 0;
}
.home .faq .qa .toggle:checked ~ .a span {
    line-height: 1.65;
    padding-top: 1em;
    padding-bottom: 0.5em;
    opacity: 1;
    transition: line-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
}

/* FAQ (ALT) */
.home .faq-alt {
    font-size: 1rem;
    border-top: rgba(0, 0, 0, 0.15) solid 1px;
    margin: 2rem 0 4rem 0;
}
.home .faq-alt .container {
    padding: 1rem 1.5rem;
}
.home .faq-alt .container > h2 {
    font-family: var(--txt-news);
    font-size: 3em;
    font-weight: bold;
    color: var(--col-brand-blue-alt);
    line-height: 1.15em;
    text-align: center;
    margin: 0 0 1rem 0;
}
.home .faq-alt .container > p {
    font-family: var(--txt-news);
    font-size: 1.25em;
    color: var(--col-brand-blue);
    line-height: 1.15em;
    text-align: center;
    margin: 0;
}
.faq .qa {
    font-family: var(--txt-alt);
    font-size: 1rem;
    text-align: left;
    border-bottom: rgba(0, 0, 0, 0.1) solid 2px;
    margin-inline: auto;
    padding: 1em 0 0.5em 0;
}
.faq .qa:last-child {
    border: none;
}
.faq .qa .a {
    z-index: 1;
    width: 100%;
    font-size: 1em;
    padding: 0 0.5em;
    padding-left: 3.57%;
}
.faq .qa .a span {
    line-height: 0;
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0;
    opacity: 0;
    transition: line-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.15s ease-in-out;
}
.faq .qa .toggle {
    display: none;
    visibility: hidden;
}
.faq .qa label {
    z-index: 2;
    width: 100%;
    font-size: 1.25em;
    font-style: italic;
    line-height: 1em;
    text-transform: none;
    box-sizing: border-box;
    display: block;
    position: relative;
    padding: 0 0.5em;
    cursor: pointer;
}
.faq .qa label span {
    width: 90%;
    display: inline-block;
    vertical-align: top;
}
.faq .qa label div {
    --_col: var(--col-primary);
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0.15em;
    margin-right: 0.25em;
    transition: transform 0.3s ease-in-out;
}
.faq .qa label div::before {
    width: 3px;
    height: 100%;
    content: "";
    background-color: var(--_col);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    transition: opacity 0.3s ease-in-out;
}
.faq .qa label div::after {
    width: 100%;
    height: 3px;
    content: "";
    background-color: var(--_col);
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    transition: opacity 0.3s ease-in-out;
}
.faq .qa .toggle:checked ~ label div {
    transform: rotate(-90deg);
}
.faq .qa .toggle:checked ~ label div::after {
    opacity: 0;
}
.faq .qa .toggle:checked ~ .a span {
    line-height: 1.65;
    padding-top: 1em;
    padding-bottom: 0.5em;
    opacity: 1;
    transition: line-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
}

/* GUY & FLAG */
.guy-flag {
    margin-top: -2rem;
    overflow: hidden;
}
.guy-flag::before {
    width: 100%;
    height: 94%;
    background: var(--col-brand-blue);
    background: linear-gradient(to bottom, var(--col-brand-blue) 0%, #03153c 100%);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}
.guy-flag img {
    width: 200%;
    max-width: none;
    margin-left: -50%;
    display: block;
}

/* LEGAL */
.legal h1 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
}
.legal h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem 0;
}
.legal p,
.legal ul {
    font-size: 1rem;
}
.legal ul li {
    margin: 1rem 0;
}

/* EXPOSED */
.home .exposed {
    font-size: 1rem;
    border-top: var(--col-brand-blue-highlight) solid 5px;
}
.home .exposed .title {
    color: var(--col-light);
    text-align: center;
    background-color: var(--col-brand-blue-dark);
}
.home .exposed .title .container {
    padding: 1rem;
}
.home .exposed .title img {
    width: 75%;
    margin: 0 auto;
    display: block;
    transform: rotate(-3deg);
}
.home .exposed .title h2 {
    font-size: 6vw;
    line-height: 1.25em;
    text-wrap: balance;
    margin: 1rem 0 0 0;
}
.home .exposed .title h2 strong {
    font-family: var(--txt-black);
    font-style: italic;
    color: var(--col-brand-blue-highlight);
    text-transform: uppercase;
}
.home .exposed .copy {
    font-size: 1em;
}
.home .exposed .copy p,
.home .exposed .copy ul {
    font-size: 1.1em;
    text-wrap: pretty;
}
.home .exposed .copy > p {
    padding: 0 1.5rem;
}
.home .exposed .copy .imgs {
    --_padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--_padding);
    padding: var(--_padding);
    margin-bottom: 1rem;
}
.home .exposed .copy .imgs img {
    border: var(--col-light) solid 6px;
    border-radius: 5px;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: bottom right;
}
.home .exposed .copy p .fact {
    font-family: var(--txt-heading);
    color: var(--col-light);
    text-transform: uppercase;
    background-color: var(--col-brand-blue-highlight);
    border-radius: 10px;
    padding: 0.25em 0.5em;
    margin-left: -0.5em;
}
.home .exposed .pills {
    --_img-size: 30%;
    color: var(--col-light);
    background-color: var(--col-brand-blue);
    border: var(--col-brand-blue-highlight) solid 5px;
    border-left: none;
    border-right: none;
}
.home .exposed .pills img {
    z-index: 2;
    width: var(--_img-size);
    display: block;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}
.home .exposed .pills h3 {
    z-index: 1;
    --_padding: 0.5rem;
    width: calc( 100% - ( var(--_img-size) + var(--_padding) ) );
    font-size: 3.9vw;
    font-style: italic;
    line-height: 1.25em;
    text-wrap: balance;
    padding: 1em 0.25rem 0.5rem 0;
    margin-left: calc( var(--_img-size) + var(--_padding) );
}
.home .exposed .copy-extended {
    --_padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.home .exposed .copy-extended .list {
    font-size: 1em;
    padding: 1rem var(--_padding);
}
.home .exposed .copy-extended .list h3 {
    --_icon-size: 1.5em;
    --_icon-color: var(--col-brand-blue-highlight);
    font-size: 6.5vw;
    letter-spacing: -0.05em;
    text-align: center;
}
.home .exposed .copy-extended .list h4 {
    font-family: var(--txt-heading);
    font-size: 1.4em;
    line-height: 1.15em;
    text-wrap: pretty;
}
.home .exposed .copy-extended .list h3,
.home .exposed .copy-extended .list h4 {
    margin: 0 0 1rem 0;
}
.home .exposed .copy-extended .list h3 svg {
    width: var(--_icon-size);
    height: var(--_icon-size);
    color: var(--col-light);
    background-color: var(--_icon-color);
    border-radius: 100%;
    padding: 0.1em;
    margin: -0.25em 0.25em 0 -0.75rem;
    vertical-align: middle;
}
.home .exposed .copy-extended .list .heading-blue {
    width: calc( 100% + ( var(--_padding) * 2 ) );
    color: var(--col-light);
    text-shadow: 0.1em 0.1em 0.15em rgba(0, 0, 0, 0.25);
    background-color: var(--col-brand-blue-highlight);
    margin-left: calc( var(--_padding) * -1 );
    padding: 0.5em 0;
}
.home .exposed .copy-extended .list ul {
    --_icon-size: 1.15em;
    --_icon-color: var(--col-brand-blue-highlight);
    line-height: 1.15em;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75em;
}
.home .exposed .copy-extended .list ul li {
    display: grid;
    grid-template-columns: var(--_icon-size) 1fr;
    gap: 0.25em;
    align-items: top;
}
.home .exposed .copy-extended .list ul li svg {
    width: var(--_icon-size);
    height: var(--_icon-size);
    color: var(--_icon-color);
}
.home .exposed .banner-bottom {
    --_imgs-size: 25%;
    color: var(--col-light);
    background-color: var(--col-brand-blue);
    margin-top: 1rem;
}
.home .exposed .banner-bottom .container {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: var(--_imgs-size) 1fr;
    gap: 1rem;
    align-items: center;
}
.home .exposed .banner-bottom .imgs img {
    max-width: 100%;
    display: block;
}
.home .exposed .banner-bottom .imgs .pill {
    z-index: 2;
    width: 85%;
    margin: -2rem 0 0 25%;
}
.home .exposed .banner-bottom h3 {
    font-family: var(--txt-black);
    font-size: 6.25vw;
    line-height: 1.15em;
    text-wrap: balance;
    margin: 0;
}
.home .exposed .banner-bottom h4 {
    font-family: var(--txt-default);
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.15em;
    text-wrap: balance;
    margin: 0.5em 0 0 0;
}
.home .exposed .banner-bottom h4 strong {
    font-family: var(--txt-heading);
    font-weight: normal;
    color: var(--col-brand-blue-highlight);
}

/* MADE IN AMERICA */
.home .made-in-america {
    font-size: 1rem;
    padding: 1rem 0.5rem;
}
.home .made-in-america .made-in-card {
    --_padding: 0.75rem;
    font-size: 1em;
    color: var(--col-light);
    text-align: center;
    background: linear-gradient(to bottom, var(--col-brand-blue-alt) 0%, var(--col-brand-blue-dark) 100%);
    border-radius: var(--bor-rad);
    box-shadow: 0.15rem 0.15rem 0.5rem rgba(0, 0, 0, 0.5);
    padding: 0 var(--_padding) 1.5rem var(--_padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: hidden;
}
.home .made-in-america .made-in-card .viagra h2 {
    font-size: 6vw;
    font-style: italic;
    width: calc( 100% + ( var(--_padding) * 2 ) );
    background-color: var(--col-brand-red);
    padding: 0.5em var(--_padding);
    margin: 0 0 0.5rem calc( var(--_padding) * -1 );
}
.home .made-in-america .made-in-card .viagra img {
    width: 80%;
    filter: drop-shadow( 2.5rem 2.5rem 2rem rgba(0, 0, 0, 0.5) );
    display: block;
    margin: 0 auto;
}
.home .made-in-america .made-in-card .viagra .logo {
    display: none;
    visibility: hidden;
}
.home .made-in-america .made-in-card .info {
    --_cell-padding: 1.25em;
    --_cell-border-color: #28448b;
    --_cell-first-height: 5em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: top;
}
.home .made-in-america .made-in-card .info ul {
    font-family: var(--txt-heading);
    font-size: 4vw;
    line-height: 1em;
    list-style: none;
    padding: 0;
    margin: 0;
}
.home .made-in-america .made-in-card .info ul:first-child {
    text-align: left;
}
.home .made-in-america .made-in-card .info ul:last-child {
    text-transform: uppercase;
}
.home .made-in-america .made-in-card .info ul li {
    border: var(--_cell-border-color) solid 1px;
    padding: var(--_cell-padding) 0.5em;
}
.home .made-in-america .made-in-card .info ul li strong {
    font-family: var(--txt-black);
}
.home .made-in-america .made-in-card .info ul li .flag {
    width: 2.5em;
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
}
.home .made-in-america .made-in-card .info ul li:first-child {
    font-family: var(--txt-heading);
    text-align: center;
    text-transform: uppercase;
    border: none;
    padding: 0 0 1em 0;
}
.home .made-in-america .made-in-card .info ul li:nth-child(2) {
    height: var(--_cell-first-height);
    padding: 0.5em;
}
.home .made-in-america .made-in-card .info ul li:nth-child(2) img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.home .made-in-america .made-in-card .info ul:last-child li:nth-child(2) strong {
    font-family: var(--txt-heading-alt);
    font-size: 2.5em;
    line-height: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* FOOTER */
footer {
    z-index: 1;
    color: var(--col-gray-dark);
    text-align: left;
    background-color: var(--col-gray-light);
    padding: 2.5rem 0;
    margin-top: auto;
}
footer .container {
    padding: 0 2rem;
}
footer .logo {
    width: 75%;
    margin: 0 auto;
    display: block;
}
footer nav {
    width: 100%;
    margin: 2rem 0;
    position: relative;
}
footer nav ul {
    width: 100%;
    font-size: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
footer nav ul a {
    color: var(--col-gray-dark);
}
footer nav ul a:hover,
footer nav ul a:focus {
    text-decoration: none;
}
footer nav ul li {
    width: 45%;
    margin: 0.25em 0.4em;
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    transition: color var(--hover-speed) ease-out;
}
footer nav ul a {
    transition: color var(--hover-speed) ease-out;
}
footer nav ul a:hover,
footer nav ul a:focus,
footer nav ul li:hover,
footer nav ul li:focus {
    color: var(--col-brand-red-alt);
    text-decoration: none;
}
footer .divide {
    width: 100%;
    height: 2px;
    background-color: var(--col-gray-dark);
    margin: 2rem 0;
    margin-top: 2.5rem;
}
footer .menu-sub-footer {
    margin-top: 0;
    margin-bottom: 1rem;
}
footer .menu-sub-footer ul li {
    width: max-content;
    padding: 0 1em;
    padding-left: 0;
}
footer .menu-sub-footer ul li:not(:last-child)::after {
    width: 2px;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
}
footer p {
    font-size: 0.9rem;
}
footer .copy {
    font-size: 0.75rem;
}
footer .copy img {
    margin: 0 auto 1.5rem auto;
    display: block;
}

/* --------------- TABLET --------------- */
@media screen and (min-width: 700px) {

    /* BANNER */
    .home .banner .pill {
        top: 19rem;
    }
    .home .banner .copy .title {
        font-size: 4rem;
    }
    .home .banner .copy .title .viagra {
        -webkit-text-stroke-width: 2px;
    }
    .home .banner .copy .btn {
        width: 83%;
        font-size: 2.5rem;
        padding: 0.5em 1em;
    }

    /* ANIMATED BANNER - CTA */
    .animated-banner {
        font-size: 1rem;
        padding: 1.5rem;
    }

}

/* --------------- TABLET - LARGE --------------- */
@media screen and (min-width: 1024px) {

    /* QUALITY */
    .home .quality {
        font-size: 0.85rem;
    }
    .home .quality > h2 {
        font-size: 3.5em;
        margin-bottom: 3rem;
    }
    .home .quality .copy-all {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .home .quality .copy {
        font-size: 1.5em;
    }
    .home .quality .copy .btn {
        font-size: 1.25em;
        margin-block: 1.5rem;
    }
    .home .quality .copy p {
        font-size: 1.1em;
    }
    .home .quality .copy ul {
        font-size: 1.15em;
    }
    .home .quality .copy p strong {
        height: 6em;
        color: transparent;
        background-image: url("../img/all-american-pharma-logo.png");
        background-size: 90%;
        background-repeat: no-repeat;
        background-position: top center;
        display: block;
        margin-bottom: 1.5rem;
    }
    .home .quality .table-wrapper {
        width: 47%;
        font-size: 1.3rem;
        margin-left: 3%;
    }
    .home .quality .table-wrapper .table li {
        padding: 0.5rem 1rem;
    }
    .home .quality .banner-india {
        width: 49%;
        font-size: 1.3rem;
        margin-top: -1rem;
        margin-left: 3%;
    }

    /* PURIFICATION PROCESS */
    .home .purification-process {
        font-size: 0.85rem;
        background-color: var(--col-brand-blue);
    }
    .home .purification-process .container {
        border: var(--col-brand-blue) solid 6px;
        grid-template-columns: repeat(2, 1fr);
        align-content: center;
    }
    .home .purification-process .title {
        border-right: var(--col-brand-blue) solid 6px;
    }
    .home .purification-process .title h2 {
        font-size: 3em;
    }
    .home .purification-process .copy {
        font-size: 1.25em;
        padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    }
    .home .purification-process .copy h3 {
        font-size: 1.75em;
    }

    /* ANIMATED BANNER - CTA */
    .animated-banner {
        font-size: 0.87rem;
        padding: 2.5rem;
    }
    .animated-banner .animated-banner-cta {
        padding: 0.15em 0.5em;
        transition: transform var(--hover-speed) ease-in-out,
                    border-color var(--hover-speed) ease-in-out;
        cursor: pointer;
    }
    .animated-banner .animated-banner-cta:hover,
    .animated-banner .animated-banner-cta:focus {
        transform: scale(1.05);
        border-color: var(--col-brand-blue);
    }
    .animated-banner .animated-banner-cta:hover .pill,
    .animated-banner .animated-banner-cta:focus .pill,
    .animated-banner .animated-banner-cta:hover .bottom .click-here,
    .animated-banner .animated-banner-cta:focus .bottom .click-here {
        animation-play-state: paused;
    }
    .animated-banner .animated-banner-cta .middle {
        font-size: 0.85em;
        padding: 0.2em 0 0.35em 0;
    }
    .animated-banner .animated-banner-cta .top,
    .animated-banner .animated-banner-cta .middle,
    .animated-banner .animated-banner-cta .bottom {
        text-align: right;
        padding-right: 2rem;
    }
    .animated-banner .animated-banner-cta .middle > span {
        display: inline;
    }
    .animated-banner .animated-banner-cta .middle > .right .one-word {
        font-size: 1em;
        color: var(--_col-highlight);
        margin-top: 0;
        display: inline;
    }
    .animated-banner .animated-banner-cta .middle > .right > u:first-child {
        color: #ffffff;
    }
    .animated-banner .animated-banner-cta .pill {
        width: 8em;
        left: -2rem;
        right: auto;
    }

    /* THE LEGEND */
    .home .the-legend  .gold-coins {
        padding: 2.5rem;
        overflow: hidden;
    }
    .home .the-legend  .gold-coins {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    .home .the-legend  .gold-coins > img {
        width: auto;
        display: block;
    }
    .home .the-legend  .gold-coins > img:not(:nth-child(3)),
    .home .the-legend  .gold-coins > img:not(:last-child) {
        margin-right: 0;
    }

    /* PLAN */
    .plan {
        font-size: 1rem;
    }
    .plan h2 {
        font-size: 4em;
    }
    .plan p {
        font-family: var(--txt-heading);
        font-size: 1.1em;
    }

    /* PODS */
    .pods {
        font-size: 0.75rem;
        padding: 2rem 1rem;
        background-size: contain;
        background-position: bottom center;
        background-repeat: no-repeat;
    }
    .pods .container {
        padding: 1.5rem 1rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding-top: 0;
    }
    .pods .pod {
        transition: transform var(--hover-speed) ease-in-out;
        will-change: transform;
    }
    .pods .pod:hover,
    .pods .pod:focus {
        transform: scale(1.02);
    }
    .pods .pod button {
        font-size: 1.75em;
    }

    /* FAQ */
    .faq .container > h2 {
        font-size: 4rem !important;
    }
    .faq .qa label {
        font-size: 1.75rem;
    }

    /* EXPOSED */
    .home .exposed .title .container {
        padding: 1.5rem;
    }
    .home .exposed .title img {
        width: 32em;
    }
    .home .exposed .title h2 {
        font-size: 2em;
        margin: 1.5rem 0 0 0;
    }
    .home .exposed .copy p,
    .home .exposed .copy ul {
        font-size: 1.4em;
        padding: 0 4rem;
    }
    .home .exposed .copy .imgs {
        --_padding: 1rem;
        margin-top: 0.75rem;
    }
    .home .exposed .copy .imgs img {
        border: var(--col-light) solid 10px;
        border-radius: 15px;
        box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.25);
        aspect-ratio: auto;
    }
    .home .exposed .pills {
        --_img-size: 15%;
        padding: 0 1rem;
    }
    .home .exposed .pills h3 {
        --_padding: 1.5rem;
        font-size: 1.6rem;
        text-wrap: auto;
    }
    .home .exposed .copy-extended {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 0.5rem;
        margin: 1.5rem auto;
    }
    .home .exposed .copy-extended .list:last-child {
        border: var(--col-brand-blue-highlight) solid 4px;
        border-radius: 10px;
        padding-top: 0;
    }
    .home .exposed .copy-extended .list h3 {
        font-size: 2rem;
    }
    .home .exposed .copy-extended .list h4 {
        font-size: 1.4em;
    }
    .home .exposed .copy-extended .list .heading-blue {
        margin-bottom: 2.25rem;
    }
    .home .exposed .banner-bottom {
        --_imgs-size: 20%;
        margin-top: 1.5rem;
    }
    .home .exposed .banner-bottom .container {
        padding: 1.5rem 0;
        gap: 2.5rem;
    }
    .home .exposed .banner-bottom .imgs .pill {
        margin: -5rem 0 0 25%;
    }
    .home .exposed .banner-bottom h3 {
        font-size: 3em;
    }
    .home .exposed .banner-bottom h4 {
        font-size: 2.5em;
    }

    /* MADE IN AMERICA */
    .home .made-in-america .made-in-card {
        padding: 0 var(--_padding) 0 var(--_padding);
        grid-template-columns: 35% 1fr;
    }
    .home .made-in-america .made-in-card .viagra h2 {
        font-size: 1.5em;
        width: calc( 100% + var(--_padding) );
        border-bottom-right-radius: var(--bor-rad);
        padding: 1em var(--_padding);
    }
    .home .made-in-america .made-in-card .viagra img {
        width: 80%;
        filter: drop-shadow( 2.5rem 2.5rem 2rem rgba(0, 0, 0, 0.5) );
        display: block;
        margin: 0 auto;
    }
    .home .made-in-america .made-in-card .viagra .pill {
        margin-top: 1.5rem;
    }
    .home .made-in-america .made-in-card .viagra .logo {
        margin-top: 2.5rem;
        display: block;
        visibility: visible;
    }
    .home .made-in-america .made-in-card .info {
        --_cell-border-color: #435da0;
        padding: 1.5rem 0;
    }
    .home .made-in-america .made-in-card .info ul {
        font-size: 1em;
    }
    
}

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

    /* COMMON */
    .heading,
    h1,
    h2,
    h3 {
        font-size: 3rem;
    }
    .hideFromDesktop {
        width: 0;
        height: 0;
        display: none !important;
        visibility: hidden !important;
    }
    .hideFromMobile {
        width: auto;
        height: auto;
        display: inline-block;
        visibility: visible;
    }
    .padding {
        padding: 3rem 2rem;
    }

    /* HEADER */
    header {
        --_height: auto;
    }
    header .logo {
        width: 20em;
    }
    header .main .btn {
        width: auto;
        height: auto;
        font-family: var(--txt-heading);
        font-size: 1em;
        font-weight: normal;
        padding: 0.5em 1em;
        display: block;
        visibility: visible;
        position: absolute;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
    }
    header .main .btn::before {
        background: var(--grd-brand-blue-hor);
    }
    header .tag {
        width: 100%;
        background: var(--grd-brand-blue-hor);
        border-top: var(--col-brand-red-alt) solid 5px;
        padding: 0.5em 1em;
        position: relative;
        bottom: auto;
        left: auto;
    }
    header .tag .container > div {
        display: inline-block;
        vertical-align: middle;
    }
    header .tag .nbc {
        width: max-content;
        font-size: 1em;
        border-radius: var(--bor-rad-small);
        padding: 0.75em 1em;
    }
    header .tag .sale {
        width: max-content;
        font-size: 1em;
        background: transparent;
        padding: 0.75em 1em;
    }
    header .tag .sale a {
        margin-left: 0.5em;
    }
    header .btn-dummy {
        width: min(100%, 70.5rem);
        margin-inline: auto;
        display: block;
    }
    header .btn-dummy a {
        z-index: 99;
        width: 8rem;
        height: 2rem;
        position: absolute;
        bottom: 1rem;
        right: 12rem;
    }

    /* MENU */
    header nav {
        width: max-content;
        font-size: 1.75rem;
        background-color: transparent;
        margin-left: 1.5rem;
        top: 50%;
        left: 18rem;
        transform: translateY(-50%);
    }
    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-size: 0.75em;
        color: var(--col-brand-blue);
        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;
    }
    header nav ul li {
        font-size: inherit;
        text-align: center;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5em;
        transform: none;
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }
    header nav ul li::after {
        width: 35%;
        height: 4px;
        content: "";
        background-color: var(--col-brand-red);
        border-radius: var(--bor-rad);
        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::after,
    header nav ul li:focus::after,
    header nav ul .selected::after {
        transform: scaleX(1);
        opacity: 1;
    }
    header nav ul li:nth-child(even) {
        color: inherit;
        background-color: transparent;
    }
    header nav ul li:first-child {
        border: none;
    }
    header nav ul li:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding-bottom: 1em;
    }
    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-yellow);
        text-decoration: none;
    }
    header nav ul li:hover,
    header nav ul li:focus {
        color: var(--col-yellow);
        outline: none;
        background-color: transparent;
    }
    header nav > input:checked ~ ul {
        transform: none;
    }
    header nav > input:checked ~ ul li {
        transform: none;
    }

    /* BANNER */
    .home .banner {
        text-align: left;
        padding-bottom: 0;
        overflow: visible;
    }
    .home .banner .flag {
        width: auto;
        height: 100%;
        top: 0;
        left: -16rem;
    }
    .home .banner .men {
        margin-left: -8rem;
        display: inline-block;
        vertical-align: middle;
    }
    .home .banner .pill {
        width: 22%;
        top: auto;
        right: auto;
        bottom: -2rem;
        left: 18rem;
    }
    .home .banner .copy {
        width: 53%;
        text-align: center;
        margin-top: 0;
        margin-left: -3rem;
        display: inline-block;
        vertical-align: middle;
    }
    .home .banner .copy .title {
        font-size: 3.75rem;
        line-height: 1.5em;
        padding: 0;
        margin-bottom: 2rem;
    }
    .home .banner .copy .btn {
        width: 80%;
        font-size: 1.75rem;
        padding: 0.5em 1em 0.6em 1em;
    }

    /* ENDORSEMENT */
    .home .endorsement {
        padding: 3rem 2rem;
    }
    .home .endorsement h2 {
        margin-bottom: 3rem;
    }
    .home .endorsement .logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    .home .endorsement .logos li:first-child {
        padding-inline: 3rem;
    }
    .home .endorsement .logos li:nth-child(3) {
        padding-inline: 2rem;
    }
    .home .endorsement .logos li:last-child {
        grid-column: span 1;
        padding-inline: 0;
    }

    /* QUALITY */
    .home .quality .copy p {
        font-size: 1.25em;
    }
    .home .quality .copy p strong {
        margin: 0;
    }

    /* PURIFICATION PROCESS */
    .home .purification-process {
        font-size: 1rem;
    }

    /* ANIMATED BANNER - CTA */
    .animated-banner {
        font-size: 1rem;
    }

    /* PODS */
    .pods .pod h2 {
        font-size: 2.5em;
    }
    .pods .pod .smaller strong {
        font-size: 1.5em;
    }
    .pods .pod .radio svg {
        left: 0.85em;
    }
    .pods .pod button {
        font-size: 2em;
    }

    /* GUARANTEE */
    .guarantee .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 3rem 1rem;
    }
    .guarantee .benefits-box h2 {
        font-size: 1.85em;
    }
    .guarantee .benefits-box h3 {
        font-size: 2.25em;
    }
    .guarantee .guarantee-box {
        height: 90.75rem;
        font-size: 1.25rem;
        color: var(--col-light);
        border: #d31c30 solid 5px;
        background-color: #004c7d;
        border-radius: 15px;
        padding: 7rem 0 2rem 0;
        margin: 0 auto;
        overflow: hidden;
    }
    .guarantee .guarantee-box img {
        width: 100%;
        display: block;
    }
    .guarantee .guarantee-box p {
        font-family: var(--txt-heading);
        font-size: 1.1em;
        padding: 3rem 2rem 0 2rem;
        margin: 0;
    }
    .guarantee .guarantee-box .img-flag-header {
        position: absolute;
        top: 0;
        left: 0;
    }
    .guarantee .guarantee-box .img-flag-footer {
        margin-top: 6rem;
        display: block;
    }

    /* GUY & FLAG */
    .guy-flag {
        margin-top: -2rem;
        overflow: hidden;
    }
    .guy-flag img {
        width: 130%;
        max-width: none;
        margin-left: -15%;
        display: block;
    }

    /* FOOTER */
    footer {
        padding: 4rem 0;
    }
    footer .logo {
        width: 30%;
        margin: 0;
        margin-top: -1.5rem;
        display: inline-block;
        vertical-align: top;
    }
    footer nav {
        width: 40%;
        margin: 0;
        margin-left: 14rem;
        margin-right: 3rem;
        position: relative;
        display: inline-block;
        vertical-align: top;
    }
    footer nav ul {
        font-size: 1rem;
    }
    footer nav ul li {
        width: 45%;
    }
    footer .social {
        display: inline-block;
        vertical-align: top;
    }
    footer .menu-sub-footer {
        z-index: 2;
        width: max-content;
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 2rem;
    }
    footer .menu-sub-footer ul li:last-child {
        padding-right: 0;
    }
    footer p {
        font-size: 0.75rem;
    }
    footer .copy {
        margin-block: 2rem;
    }
    footer .copy img {
        margin: -4rem auto 0 56rem;
    }

    /* EXPOSED */
    .home .exposed .pills {
        margin: 2rem 0;
    }
    .home .exposed .pills h3 {
        font-size: 1.75rem;
        padding-bottom: 0.5em;
    }
    .home .exposed .banner-bottom {
        --_imgs-size: 30%;
    }
    .home .exposed .banner-bottom .container {
        gap: 1.5rem;
    }
    .home .exposed .banner-bottom .imgs {
        margin-left: -4rem;
    }
    .home .exposed .banner-bottom .imgs .flag {
        width: 80%;
    }
    .home .exposed .banner-bottom .imgs .pill {
        width: 50%;
        margin: 0;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .home .exposed .banner-bottom h3 {
        font-size: 3.5em;
    }
    .home .exposed .banner-bottom h4 {
        font-size: 2.25em;
    }

}

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

    /* PODS */
    .pods {
        font-size: 0.85rem;
    }

}