/* 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");
}

/* 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;
    
    /* COLORS */
    --col-brand-blue: #092358;
    --col-brand-red: #b71c1c;
    --col-brand-blue-alt: #2848a9;
    --col-brand-blue-highlight: #50bfff;
    --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 {
    font-family: var(--txt-default);
    font-size: 1.3125rem;
    color: var(--col-dark);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
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);
}
.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%;
}

/* QUALITY */
.home .quality {
    text-align: center;
}
.home .quality .container > h2 {
    font-family: var(--txt-default);
    font-size: 1.8rem;
    line-height: 1.25em;
    margin-bottom: 1.5rem;
}
.home .quality .container > h2 strong {
    font-family: var(--txt-heading);
    color: var(--col-brand-blue);
}
.home .quality .container > h2 u {
    font-family: var(--txt-heading);
    color: var(--col-brand-red);
}
.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;
}

/* PODS */
.home .pods {
    font-size: 1rem;
    text-align: center;
    background-color: var(--col-gray-light);
    overflow: hidden;
}
.home .pods .title {
    font-family: var(--txt-heading-alt);
    font-size: 3.65rem;
    color: var(--col-brand-blue);
    line-height: 1.15em;
    padding: 0 1.5rem;
}
.home .pods .title .red {
    color: var(--col-brand-red);
    text-transform: uppercase;
}
.home .pods .title .small {
    font-family: var(--txt-heading);
    font-size: 0.65em;
    line-height: 1em;
    letter-spacing: -0.05em;
}
.home .pods .title .big {
    font-size: 1.25em;
    line-height: 1.1em;
}
.home .pods .pod {
    font-size: 1em;
    background: var(--grd-gray-ver);
    border: var(--col-light) solid 2px;
    border-radius: var(--bor-rad);
    box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.15);
    padding: 5.5rem 1rem 1.5rem 1rem;
    margin-top: -11rem;
}
.home .pods .pod .madein {
    font-family: var(--txt-heading);
    font-size: 0.85em;
    color: var(--col-gray-dark);
    text-transform: uppercase;
}
.home .pods .pod .madein img,
.home .pods .pod .madein span {
    vertical-align: middle;
}
.home .pods .pod .madein img {
    width: 4em;
    margin-right: 0.15em;
}
.home .pods .pod h2 {
    font-family: var(--txt-heading-alt);
    font-size: 2.75em;
    color: var(--col-brand-blue);
    text-transform: uppercase;
    margin-top: 1rem;
}
.home .pods .pod .pill {
    width: 75%;
    display: block;
    margin: 1rem auto;
}
.home .pods .pod .tag {
    font-family: var(--txt-heading);
    font-size: 1.25em;
    font-style: italic;
    line-height: 1.25em;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    margin-block: 0.5rem;
    display: block;
}
.home .pods .pod .prices {
    font-family: var(--txt-heading);
    font-size: 1.15em;
    color: var(--col-brand-blue);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    list-style: none;
    padding: 0;
    margin: 0;
}
.home .pods .pod .prices li {
    padding-block: 0.15em;
}
.home .pods .pod .prices li span {
    vertical-align: middle;
}
.home .pods .pod .prices li span:nth-child(2) {
    font-family: var(--txt-heading-alt);
    font-size: 1.5em;
    letter-spacing: normal;
    margin-inline: 0.5em;
}
.home .pods .pod .prices li span:last-child {
    color: var(--col-brand-red);
}
.home .pods .pod .prices li:last-child {
    color: var(--col-brand-red);
}
.home .pods .pod .prices li:last-child span:nth-child(2) {
    color: var(--col-brand-red);
}
.home .pods .pod .prices li:last-child span:last-child {
    color: var(--col-brand-red-alt);
}
.home .pods .pod .formula {
    font-family: var(--txt-heading);
    font-size: 1.15em;
    font-style: italic;
    color: var(--col-brand-blue);
    text-transform: capitalize;
    letter-spacing: -0.05em;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
}
.home .pods .pod .formula svg {
    width: 1em;
    height: 1em;
    color: var(--col-brand-red);
    padding-top: 0.25em;
}
.home .pods .pod .btn {
    width: 90%;
    margin-top: 1rem;
}
.home .pods .imgs {
    width: 100%;
}
.home .pods .imgs .guy-girl {
    width: 175%;
    max-width: none;
    margin-left: -6rem;
}
.home .pods .imgs .badge {
    z-index: 2;
    width: 80%;
    margin: -9.75rem auto 5.75rem auto;
    display: block;
}

/* POD - ALT */
.home .pods .pod-alt {
    --_radius: var(--bor-rad-fixed);
    --_col: var(--col-brand-blue);
    --_col-alt: var(--col-brand-blue-alt);
    --_col-highlight: var(--col-brand-blue-highlight);
    --_padding: 1rem;
    font-size: 1em;
    background-color: var(--col-light);
    border: var(--col-light) solid 2px;
    border-radius: var(--_radius);
    box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
    padding: 0.25rem;
    margin-top: -11rem;
}
.home .pods .pod-alt .pod-wrapper {
    background-color: var(--col-light);
    border: var(--_col) solid 4px;
    border-radius: var(--_radius);
    padding-top: 3.5rem;
}
.home .pods .pod-alt .pod-wrapper::before {
    width: 100%;
    height: 25%;
    content: "";
    background-color: var(--_col);
    position: absolute;
    top: 0;
    left: 0;
}
.home .pods .pod-alt h2 {
    font-size: 2.25em;
    color: var(--col-light);
    padding: var(--_padding);
    margin: 0;
}
.home .pods .pod-alt .dosage {
    width: 20em;
    font-family: var(--txt-heading);
    font-size: 0.8em;
    color: var(--col-light);
    text-align: center;
    text-transform: uppercase;
    list-style: none;
    padding: 0 var(--_padding);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.home .pods .pod-alt .dosage li {
    border: var(--_col-highlight) solid 2px;
}
.home .pods .pod-alt .madein {
    font-family: var(--txt-heading);
    font-size: 1em;
    color: var(--col-light);
    line-height: 1em;
    margin: 0.5rem;
}
.home .pods .pod-alt .madein img {
    width: 5em;
    vertical-align: middle;
}
.home .pods .pod-alt .madein span {
    vertical-align: middle;
}
.home .pods .pod-alt .product {
    width: 16em;
    display: block;
    margin: 1rem auto;
}
.home .pods .pod-alt .tag {
    font-family: var(--txt-rockwell);
    font-size: 1.4em;
    font-style: italic;
    color: var(--col-light);
    text-align: center;
    line-height: 1em;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    background-color: var(--_col);
    padding: 1rem 0.5rem;
    display: block;
}
.home .pods .pod-alt .tag strong {
    font-family: inherit;
    text-transform: uppercase;
}
.home .pods .pod-alt .tag .quote {
    font-size: 1.25em;
    line-height: 0.9em;
    vertical-align: top;
    padding: 0 0.1em;
}
.home .pods .pod-alt .reviews {
    text-align: center;
    padding: 0.75rem 0.5rem;
}
.home .pods .pod-alt .reviews .stars {
    font-size: 0.8em;
    display: inline-block;
    vertical-align: middle;
}
.home .pods .pod-alt .reviews .stars ul {
    width: 7em;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.15em;
}
.home .pods .pod-alt .reviews span {
    font-family: var(--txt-heading);
    font-size: 0.85em;
    line-height: 1em;
    padding-left: 0.15em;
    margin-top: -0.2em;
    display: inline-block;
    vertical-align: middle;
}
.home .pods .pod-alt .prices {
    font-size: 1em;
    padding: 0 var(--_padding);
}
.home .pods .pod-alt .prices ul {
    width: max-content;
    font-family: var(--txt-heading);
    font-size: 0.85em;
    line-height: 1em;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
}
.home .pods .pod-alt .prices ul li {
    padding: 0.25rem 0;
}
.home .pods .pod-alt .prices ul li .quantity {
    font-size: 1.5em;
}
.home .pods .pod-alt .prices ul li .price {
    font-family: var(--txt-rockwell);
    font-size: 2.5em;
    color: var(--_col-alt);
    line-height: 1em;
    letter-spacing: -0.05em;
    margin: 0 0.5rem;
}
.home .pods .pod-alt .prices ul li .price .dollar {
    font-size: 0.65em;
    line-height: 1.25em;
    margin-right: 0.1em;
    vertical-align: top;
}
.home .pods .pod-alt .prices ul li:last-child .price {
    color: var(--col-brand-red);
}
.home .pods .pod-alt .prices ul li .deal {
    font-size: 1.1em;
    color: var(--_col-alt);
    text-transform: uppercase;
    margin-top: -1rem;
    display: inline-block;
    vertical-align: middle;
}
.home .pods .pod-alt .prices ul li:last-child .deal {
    font-size: 1em;
    font-style: italic;
    line-height: 1em;
    text-align: center;
    text-transform: capitalize;
}
.home .pods .pod-alt .prices ul li:last-child .deal .line-break {
    font-size: 1.2em;
    color: var(--col-brand-red);
    line-height: 1em;
    text-transform: uppercase;
}
.home .pods .pod-alt .btn-wrapper {
    width: 100%;
    padding: var(--_padding);
}
.home .pods .pod-alt .btn {
    width: 100%;
    font-size: 1.75em;
    padding: 0.65em 1rem 0.5em 1rem;
}
.home .pods .pod-alt .formula {
    font-family: var(--txt-heading);
    font-size: 0.9em;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    padding: 0 var(--_padding) 1em var(--_padding);
    display: block;
}
.home .pods .pod-alt .formula .viagra {
    color: transparent;
    background-image: url("../img/pods/viagra-sildenafil-logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 0 2.25em;
    padding-bottom: 0.5em;
}

/* 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 {
    text-align: center;
}
.home .faq .container > h2 {
    text-align: center;
    line-height: 1.25em;
}
.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;
    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;
}
 .home .faq-alt .copy .qa {
    padding-top: 2rem;
    margin-top: 2rem;
 }
.home .faq-alt .copy .qa::before {
    width: 60%;
    height: 1px;
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 20%;
}
.home .faq-alt .copy .qa h3 {
    font-size: 1.5em;
    color: var(--col-brand-blue);
}
.home .faq-alt .copy .qa p {
    font-size: 1em;
}

/* 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;
}

/* FOOTER */
footer {
    z-index: 1;
    color: var(--col-gray-dark);
    text-align: left;
    background-color: var(--col-gray-light);
    padding: 2.5rem 0;
}
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;
    }

}

/* --------------- 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: 25%;
        top: auto;
        right: auto;
        bottom: -2.5rem;
        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 {
        font-size: 0.85rem;
    }
    .home .quality .container > h2 {
        font-size: 3.5em;
        margin-bottom: 3rem;
    }
    .home .quality .copy {
        width: 46%;
        font-size: 1.5em;
        position: absolute;
        top: 12.5rem;
        right: 0;
    }
    .home .quality .copy .btn {
        font-size: 1.25em;
        margin-block: 1.5rem;
    }
    .home .quality .copy p {
        font-size: 1.25em;
    }
    .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;
    }
    .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%;
    }

    /* PODS */
    .home .pods {
        font-size: 1.15rem;
        overflow: unset;
    }
    .home .pods .title {
        width: 55%;
        font-size: 6rem;
        text-align: left;
    }
    .home .pods .title .big {
        font-size: 1em;
    }
    .home .pods .pods-wrapper {
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .home .pods .pod {
        margin-top: 0;
        padding-top: 1.5rem;
        transition: transform var(--hover-speed) ease-in-out;
    }
    .home .pods .pod:hover,
    .home .pods .pod:focus {
        transform: scale(1.02);
    }
    .home .pods .pod .pill {
        width: 55%;
    }
    .home .pods .pod:nth-child(2) .pill {
        margin-block: 2rem;
    }
    .home .pods .pod:nth-child(2) .tag {
        padding-inline: 3rem;
    }
    .home .pods .pod:nth-child(2) .btn {
        margin-top: 2rem;
    }
    .home .pods .imgs,
    .home .pods .pod {
        margin-top: 0;
    }
    .home .pods .imgs .guy-girl {
        width: 205%;
        margin-top: 1rem;
        margin-left: -15rem;
    }
    .home .pods .imgs .pill {
        position: absolute;
        bottom: -2.5rem;
        left: 0;
    }
    .home .pods .imgs .badge {
        width: 27rem;
        margin: 0;
        position: absolute;
        bottom: -1rem;
        left: -10rem;
        transform: rotate(-10deg);
    }

    /* POD - ALT */
    .home .pods .pod-alt {
        width: 50%;
        font-size: 1.3rem;
        border: rgba(0, 0, 0, 0.05) solid 2px;
        position: absolute;
        top: -10rem;
        right: 0;
    }
    .home .pods .pod-alt .pod-wrapper {
        padding: 0;
    }
    .home .pods .pod-alt .product {
        width: 13em;
    }
    .home .pods .pod-alt .formula {
        font-size: 1.05em;
    }

    /* 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;
    }

    /* FAQ */
    .home .faq .qa {
        font-size: 1.25rem;
    }

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

    /* FAQ (ALT) */
    .home .faq-alt {
        font-size: 1.1rem;
        margin: 4rem 0 4rem 0;
        padding-top: 2rem;
    }
    .home .faq-alt .container > h2 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    .home .faq-alt .container > p {
        line-height: 1.4em;
        padding: 0 6rem;
    }

    /* 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;
    }
}

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

    /* POD - ALT */
    .home .pods .pod-alt .formula {
        font-size: 0.85em;
    }

}