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

/* VARIABLES */
:root {
    /* FONTS */
    --txt-default: Montserrat-Regular;
    --txt-strong: Montserrat-Bold;
    --txt-heading: Montserrat-ExtraBold;

    /* COLORS */
    --col-brand: #1493d5;
    --col-dark: #000000;
    --col-light: #ffffff;
    --col-gray-light: #ebebeb;
    --col-gray-dark: #363636;
    --col-red: #fa0009;
    --col-yellow: #fee607;

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

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

/* SETUP */
body {
    font-family: var(--txt-default);
    font-size: 1.3125rem;
    color: var(--col-dark);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}
*,
*::before,
*::after {
    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);
    text-decoration: underline;
}
*:focus {
    outline-color: var(--col-brand-dark);
}
*::selection {
    background-color: var(--col-brand);
}
.svgs {
    display: none;
    visibility: hidden;
}
svg,
img {
    max-width: 100%;
}
svg {
    fill: var(--col-brand);
}
h1,
h2,
h3,
h4 {
    font-family: var(--txt-heading);
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.15em;
    margin-bottom: 0.5em;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong {
    font-weight: normal;
}
h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}
p {
    font-size: 1rem;
    margin-bottom: 1em;
}
p .strong {
    font-family: var(--txt-strong);
    font-size: 1.15em;
    font-weight: normal;
}
.hideFromMobile {
    width: 0;
    height: 0;
    display: none;
    visibility: hidden;
}
.padding {
    padding: 2.25rem 1rem;
}
.hide {
    display: none;
    visibility: hidden;
}

/* BUTTONS */
button,
.btn {
    width: max-content;
    height: auto;
    font-family: var(--txt-heading);
    font-size: 1.75rem;
    color: var(--col-light);
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    background-color: transparent;
    outline: none;
    border: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0.5em 1em;
    cursor: pointer;
    transition: color var(--hover-speed) ease-out;
}
button *,
.btn * {
    z-index: 2;
    position: relative;
}
button::before,
.btn::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--col-brand);
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-35deg);
    transition: transform var(--hover-speed) ease-out;
}
button span,
.btn span {
    display: inline-block;
    vertical-align: middle;
}
button svg,
.btn svg {
    width: 1.25em;
    height: 1.25em;
    fill: var(--col-light);
    display: inline-block;
    vertical-align: middle;
    transition: fill var(--hover-speed) ease-out;
}
button:hover,
.btn:hover,
button:focus,
.btn:focus {
    color: var(--col-yellow);
}
button:hover svg,
.btn:hover svg,
button:focus svg,
.btn:focus svg {
    fill: var(--col-yellow);
}
button:hover::before,
.btn:hover::before,
button:focus::before,
.btn:focus::before {
    transform: skew(0) scale(1.1);
}
.btn_orange::before {
    background: #ffba00;
    background: -moz-linear-gradient(top, #ffba00 0%, #ff6e02 100%);
    background: -webkit-linear-gradient(top, #ffba00 0%, #ff6e02 100%);
    background: linear-gradient(to bottom, #ffba00 0%, #ff6e02 100%);
    border: #ff7002 solid 0.05em;
    box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.25);
}
.btn_orange:hover,
.btn_orange:focus {
    color: var(--col-light);
}
.btn_orange:hover svg,
.btn_orange:focus svg {
    fill: var(--col-light);
}

/* LOGO */
.logo {
    width: 20rem;
    position: relative;
}
.logo img {
    display: inline-block;
    vertical-align: middle;
}
.logo img:first-child {
    width: 58%;
    margin-right: 2%;
}
.logo img:last-child {
    width: 37%;
}

/* HEADER */
header {
    z-index: 2;
    height: 11rem;
    background-color: var(--col-light);
    box-shadow: 0 0 1rem var(--col-grey-shadow);
    position: relative;
}
header .container {
    width: 100%;
    height: 100%;
}
header .container .logo {
    width: 70%;
    position: absolute;
    top: 1rem;
    left: 1rem;
}
header .phone {
    z-index: 2;
    width: 100%;
    font-family: var(--txt-strong);
    font-size: 1em;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--col-gray-light);
    padding: 0.5em 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
header .phone a:hover,
header .phone a:focus {
    text-decoration: none;
}
header .phone a span {
    font-family: var(--txt-heading);
    font-size: 1.75em;
    color: var(--col-brand);
    line-height: 1em;
    display: block;
    position: relative;
}

/* 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: 1rem;
    right: 1rem;
    cursor: pointer;
}
header nav > label svg {
    width: 1em;
    height: 1em;
    fill: var(--col-brand);
    display: block;
}
header nav ul {
    width: 100%;
    font-size: inherit;
    color: var(--col-brand);
    line-height: 1em;
    text-transform: capitalize;
    border-bottom-left-radius: var(--bor-rad-small);
    border-bottom-right-radius: var(--bor-rad-small);
    list-style: none;
    padding: 0;
    padding-bottom: 1em;
    margin: 0;
    position: absolute;
    top: 11rem;
    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) {
    background-color: var(--col-gray-light);
}
header nav ul li:first-child {
    box-shadow: none;
}
header nav ul li:last-child {
    z-index: 1;
    border-bottom-left-radius: var(--bor-rad-small);
    border-bottom-right-radius: var(--bor-rad-small);
    padding-bottom: 1.5rem;
}
header nav ul li a {
    color: inherit;
}
header nav ul li a:hover,
header nav ul li a:focus {
    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 ul .order {
    font-family: var(--txt-heading);
    font-size: 1.5em;
    color: var(--col-yellow);
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--col-brand);
    padding: 1em 0;
}

/* HOME - BANNER */
.home > .banner {
    color: var(--col-dark);
    text-align: center;
    background-color: var(--col-light);
    position: relative;
}
.home > .banner::before {
    z-index: 1;
    width: 100%;
    height: 65%;
    content: "";
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #1493d5 30%, #000000 70%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #1493d5 30%, #000000 70%);
    background: linear-gradient(to bottom, #ffffff 0%, #1493d5 30%, #000000 70%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.home > .banner .container {
    padding: 1rem;
    padding-bottom: 2rem;
}
.home > .banner .container * {
    z-index: 3;
    position: relative;
}
.home > .banner h1 {
    font-family: var(--txt-default);
    font-size: 1.3rem;
    color: var(--col-brand);
    line-height: 1.15em;
}
.home > .banner h1 strong {
    font-family: var(--txt-heading);
}
.home > .banner h1 span {
    font-size: 1.6em;
    color: var(--col-dark);
    line-height: 1.05em;
    padding-top: 0.25em;
    display: block;
}
.home > .banner h1 > strong {
    font-size: 1.5em;
    line-height: 1em;
    display: block;
}
.home > .banner h1 u {
    color: var(--col-brand);
}
.home > .banner .couple {
    z-index: 2;
    width: 120%;
    max-width: none;
    position: absolute;
    top: 9.5rem;
    left: -10rem;
}
.home > .banner .hero {
    width: 100%;
    text-align: center;
    padding-top: 11rem;
}
.home > .banner .hero img:first-child {
    width: 90%;
}
.home > .banner .hero img:last-child {
    width: 38%;
    position: absolute;
    top: 1.5rem;
    right: -1rem;
}
.home > .banner button {
    margin-top: -2rem;
}
.home > .banner ul {
    width: 100%;
    font-family: var(--txt-heading);
    font-size: 1.3rem;
    color: var(--col-light);
    line-height: 1.15em;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}
.home > .banner ul li {
    padding: 0.5em 0;
    padding-left: 1.5em;
    margin: 0.25em auto;
}
.home > .banner ul li svg {
    width: 2em;
    height: 2em;
    fill: var(--col-yellow);
    position: absolute !important;
    top: 0.5em;
    left: 0;
}

/* VIDEO - MAIN */
.video-main {
    color: var(--col-light);
    text-align: center;
    background-color: var(--col-brand);
}
.video-main .vid {
    width: 100%;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
}
.video-main .vid > img {
    display: block;
}
.video-main .vid > img,
.video-main .vid div {
    border-radius: var(--bor-rad-small);
}
.video-main .vid button::before,
.video-main .vid .btn::before,
.video-main .vid button::after,
.video-main .vid .btn::after {
    display: none;
    visibility: hidden;
}
.video-main h3 {
    font-family: var(--txt-default);
    margin-top: 0.25em;
    margin-bottom: 0;
    cursor: pointer;
}

/* CLINICAL STUDY */
.clinical-study {
    padding-block: 2rem;
}
.clinical-study::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../img/clinical-study/chart-shapes-graphic.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    bottom: 0;
    right: 0;
}
.clinical-study .copy {
    z-index: 2;
    width: 100%;
    position: relative;
}
.clinical-study .copy h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0.5rem;
}
.clinical-study .copy h2 strong {
    font-size: 1.5em;
    color: var(--col-brand);
    line-height: 1em;
    letter-spacing: -0.05em;
}
.clinical-study .copy .imgs {
    width: 100%;
    position: relative;
}
.clinical-study .copy .imgs img:last-child {
    width: 20%;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}
.clinical-study .copy ul {
    width: 100%;
    font-family: var(--txt-heading);
    font-size: 1.5rem;
    line-height: 1.15em;
    text-align: left;
    list-style: none;
    padding: 0 1rem;
    margin: 0;
    margin-top: 1rem;
    position: relative;
}
.clinical-study .copy ul li {
    padding: 0.25em 0;
    padding-left: 2em;
    position: relative;
}
.clinical-study .copy ul li svg {
    width: 2.5em;
    height: 2.5em;
    position: absolute;
    top: 0.25em;
    left: 0;
}

/* PATENTED INGREDIENTS */
.patented-ingredients {
    text-align: center;
}
.patented-ingredients * {
    z-index: 2;
    position: relative;
}
.patented-ingredients::before {
    z-index: 1;
    width: 100%;
    height: 34rem;
    content: "";
    background-image: url("../img/misc/blue-metal-tile.jpg");
    background-color: var(--col-brand);
    position: absolute;
    top: 0;
    left: 0;
}
.patented-ingredients h2 {
    font-family: var(--txt-default);
    font-size: 1.8rem;
    color: var(--col-light);
}
.patented-ingredients h2 strong {
    font-family: var(--txt-heading);
}
.patented-ingredients h2 span {
    display: block;
}
.patented-ingredients h3 {
    font-family: var(--txt-default);
    font-size: 1.25rem;
    color: var(--col-yellow);
}
.patented-ingredients .imgs {
    width: 100%;
    margin-top: 2rem;
    position: relative;
}
.patented-ingredients .imgs img {
    width: 25%;
    position: absolute;
}
.patented-ingredients .imgs img:first-child {
    width: 50%;
    position: relative;
}
.patented-ingredients .imgs img:nth-child(2) {
    top: 4rem;
    left: -0.5rem;
}
.patented-ingredients .imgs img:nth-child(3) {
    bottom: 4rem;
    left: -0.5rem;
}
.patented-ingredients .imgs img:nth-child(4) {
    top: 4rem;
    right: -0.5rem;
}
.patented-ingredients .imgs img:nth-child(5) {
    bottom: 4rem;
    right: -0.5rem;
}
.patented-ingredients ul {
    width: 100%;
    font-family: var(--txt-strong);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.15em;
    text-align: left;
    list-style: none;
    padding: 0 1.5rem;
    margin: 0;
}
.patented-ingredients ul li {
    padding: 0.25em 0;
    padding-left: 1.5em;
}
.patented-ingredients ul li svg {
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 0;
    left: 0;
}
.patented-ingredients h4 {
    margin-top: 2rem;
    margin-bottom: 0.25em;
}
.patented-ingredients p {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.25em;
}
.patented-ingredients p strong {
    font-family: var(--txt-heading);
    display: block;
}
.patented-ingredients .logos {
    width: 100%;
    position: relative;
}
.patented-ingredients .logos img {
    max-width: 25%;
    max-height: 1.5rem;
}

/* JACK MASQUELIER */
.jack-masquelier {
    color: var(--col-light);
    background-color: var(--col-brand);
    padding: 2rem 1rem;
}
.jack-masquelier .intro {
    width: 100%;
    text-align: center;
    position: relative;
}
.jack-masquelier .intro h2,
.jack-masquelier .intro h3 {
    font-family: var(--txt-default);
    font-size: 1.65rem;
    font-weight: bold;
    margin-bottom: 0.75em;
}
.jack-masquelier .intro h2 strong,
.jack-masquelier .intro h3 strong {
    font-family: var(--txt-heading);
    font-weight: normal;
}
.jack-masquelier .intro h2 strong:last-child {
    display: block;
}
.jack-masquelier .intro .imgs {
    width: 100%;
    position: relative;
}
.jack-masquelier .intro .imgs img:nth-child(1) {
    width: 100%;
    border: var(--col-dark) solid 0.5rem;
    display: block;
}
.jack-masquelier .intro .imgs img:nth-child(2) {
    width: 35%;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}
.jack-masquelier .intro .imgs img:nth-child(3) {
    width: 35%;
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
}
.jack-masquelier .intro h3 {
    font-size: 2rem;
    margin-top: 0.5em;
    margin-bottom: 0.75em;
}
.jack-masquelier .intro h3 span {
    display: block;
}
.jack-masquelier .intro h3 span strong {
    font-style: italic;
    text-decoration: underline;
}
.jack-masquelier .list {
    width: 100%;
    text-align: center;
    background-color: var(--col-dark);
    border-radius: var(--bor-rad-small);
    padding: 1rem;
    position: relative;
}
.jack-masquelier .list h2,
.jack-masquelier .list h3 {
    font-family: var(--txt-default);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.15em;
    margin-bottom: 1em;
}
.jack-masquelier .list h2 strong,
.jack-masquelier .list h3 strong {
    font-family: var(--txt-heading);
    font-weight: normal;
}
.jack-masquelier .list h2 span {
    font-size: 1.15em;
    font-style: italic;
    text-transform: uppercase;
}
.jack-masquelier .list h3 {
    font-size: 1.75rem;
    text-align: left;
    line-height: 1em;
    padding-left: 3.5em;
    position: relative;
}
.jack-masquelier .list h3::before {
    width: 3em;
    height: 1.6em;
    content: "";
    background-image: url("../img/misc/american-flag.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.jack-masquelier .list ul {
    width: 100%;
    font-family: var(--txt-strong);
    font-size: 1.25rem;
    line-height: 1.15em;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    position: relative;
}
.jack-masquelier .list ul li {
    border-radius: var(--bor-rad-small);
    padding: 0.5em 0;
    padding-left: 2em;
    margin: 0.25em auto;
    position: relative;
}
.jack-masquelier .list ul li:nth-child(odd) {
    background-color: var(--col-gray-dark);
}
.jack-masquelier .list ul li svg {
    width: 2.5em;
    height: 2.5em;
    fill: var(--col-yellow);
    position: absolute;
    top: 0.25em;
    left: 0;
}
.jack-masquelier > p {
    font-size: 1.15rem;
    padding: 0 1em;
    margin: 2em auto;
}
.jack-masquelier button {
    display: block;
    margin: 0 auto;
}

/* COMPARISON CHART */
.comparison-chart {
    text-align: center;
    margin: 2rem auto;
}
.comparison-chart h2 {
    font-family: var(--txt-default);
    font-size: 1.75rem;
    font-weight: bold;
    padding-inline: 1rem;
    margin-bottom: 2rem;
}
.comparison-chart h2 b {
    font-family: var(--txt-strong);
    font-weight: normal;
}
.comparison-chart h2 strong {
    font-family: var(--txt-heading);
    font-size: 1.25em;
    font-weight: normal;
    line-height: 1em;
    margin-top: 0.5em;
    display: block;
}

/* BENEFITS */
.benefits {
    text-align: center;
    margin: 2rem auto;
}
.benefits h2 {
    font-family: var(--txt-default);
    font-size: 1.25rem;
    font-weight: bold;
    padding-inline: 1rem;
    margin-bottom: 2rem;
}
.benefits h2 b {
    font-family: var(--txt-strong);
    font-weight: normal;
}
.benefits h2 strong {
    font-family: var(--txt-heading);
    font-size: 1.75em;
    font-weight: normal;
    line-height: 1em;
    display: block;
}
.benefits h2 strong u {
    color: var(--col-brand);
}
.benefits .product {
    width: 80%;
    margin-top: -8rem;
}
.benefits ul {
    width: 100%;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.benefits ul li {
    padding: 1em;
    padding-left: 5.5em;
    position: relative;
}
.benefits ul:nth-child(4) li:nth-child(odd) {
    background-color: var(--col-gray-light);
}
:where(.benefits ul:nth-child(5) li:nth-child(even)) {
    background-color: var(--col-gray-light);
}
.benefits ul li::before {
    width: max-content;
    content: "1";
    font-family: var(--txt-heading);
    font-size: 3em;
    color: var(--col-light);
    line-height: 1em;
    text-align: center;
    background-color: var(--col-brand);
    border-radius: 100%;
    padding: 0.25em 0.4em;
    position: absolute;
    top: 0.4em;
    left: 0.1em;
}
.benefits ul:nth-child(4) li:nth-child(1):before {
    padding: 0.25em 0.55em;
}
.benefits ul:nth-child(4) li:nth-child(2):before {
    content: "2";
    padding: 0.25em 0.45em;
}
.benefits ul:nth-child(4) li:nth-child(3):before {
    content: "3";
    padding: 0.25em 0.45em;
}
.benefits ul:nth-child(5) li:nth-child(1):before {
    content: "4";
}
.benefits ul:nth-child(5) li:nth-child(2):before {
    content: "5";
}
.benefits ul:nth-child(5) li:nth-child(3):before {
    content: "6";
}
.benefits ul li h3 {
    font-size: 1.25em;
    line-height: 1em;
    text-transform: uppercase;
}

/* FORMULA */
.formula {
    text-align: center;
    margin: 2rem auto;
}
.formula > h2 {
    width: 100%;
    font-family: var(--txt-default);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--col-light);
    background-color: var(--col-brand);
    padding: 1rem;
    margin: 0;
}
.formula > h2 strong {
    font-family: var(--txt-heading);
    font-size: 1.75em;
    font-weight: normal;
    line-height: 1em;
    display: block;
}
.formula > h2 sup {
    font-size: 0.4em;
}
.formula .content {
    background: transparent;
    background: -moz-linear-gradient(top,  var(--col-gray-light) 0%, var(--col-light) 100%);
    background: -webkit-linear-gradient(top, var(--col-gray-light) 0%,var(--col-light) 100%);
    background: linear-gradient(to bottom, var(--col-gray-light) 0%,var(--col-light) 100%);
}
.formula .content > .imgs {
    width: 100%;
    position: relative;
}
.formula .content > .imgs img:nth-child(1) {
    width: 100%;
}
.formula .content > .imgs img:nth-child(2) {
    width: 65%;
    margin-top: -12rem;
    margin-left: 31%;
}
.formula .content > .imgs img:nth-child(3) {
    width: 34%;
    position: absolute;
    bottom: 4rem;
    left: 0.15em;
}
.formula .content ul {
    width: 100%;
    font-size: 1.15rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.formula .content ul li {
    width: 100%;
    padding: 2em 1em;
    position: relative;
}
.formula .content ul li .imgs {
    width: 100%;
    position: relative;
}
.formula .content ul li .imgs img:first-child {
    width: 80%;
}
.formula .content ul li .imgs img:last-child {
    width: 30%;
    position: absolute;
    top: -2em;
    right: -0.5em;
}
.formula .content ul li h2 {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}
.formula .content ul li p {
    font-size: 0.9em;
    font-weight: bold;
    margin: 0;
}
.formula .content ul li:nth-child(1) .imgs,
.formula .content ul li:nth-child(2) .imgs {
    text-align: left;
}
.formula .content ul li:nth-child(1) .imgs img:first-child {
    width: 90%;
}
.formula .content ul li:nth-child(3) .imgs img:first-child {
    width: 75%;
    padding-left: 3em;
}
.formula .content ul li:nth-child(5) .imgs img:first-child {
    width: 75%;
}
.formula .content ul li:nth-child(6) .imgs img:first-child {
    width: 70%;
}

/* GUARANTEE */
.guarantee {
    color: var(--col-light);
    text-align: center;
    background-color: var(--col-brand);
}
.guarantee .imgs {
    width: 100%;
    position: relative;
}
.guarantee .imgs img:first-child {
    width: 80%;
}
.guarantee .imgs img:last-child {
    width: 35%;
    position: absolute;
    top: 0;
    left: 0;
}
.guarantee .copy {
    width: 100%;
    margin-top: -1rem;
    position: relative;
}
.guarantee .copy h3 {
    width: calc( 100% + 1rem);
    font-size: 1.75rem;
    padding: 0.5em 1em;
    position: relative;
    overflow: hidden;
}
.guarantee .copy h3::before {
    z-index: -1;
    width: 120%;
    height: 100%;
    content: "";
    background-color: var(--col-dark);
    position: absolute;
    top: 0;
    left: 1rem;
    transform: skew(-10deg);
}
.guarantee .copy h4 {
    font-family: var(--txt-strong);
    font-size: 1.75rem;
}
.guarantee .copy p {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 1.5em;
}

/* TESTIMONIALS */
.testimonials {
    text-align: center;
}
.testimonials h2 {
    font-family: var(--txt-strong);
    font-size: 1.75rem;
    margin: 0;
}
.testimonials h3 {
    line-height: 1em;
}
.testimonials .logos {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.testimonials .logos img {
    max-width: 25%;
    max-height: 1.5rem;
}
.testimonials h4 {
    font-family: var(--txt-strong);
    font-size: 1.5rem;
    text-transform: capitalize;
    margin-top: 1em;
}
.testimonials h4 u {
    font-family: var(--txt-heading);
    text-transform: uppercase;
}
.testimonials h4 strong {
    color: var(--col-red);
}

/* PHASES */
.phases > h2 {
    width: 100%;
    font-size: 2rem;
    color: var(--col-light);
    text-align: center;
    background-color: var(--col-brand);
    padding: 1rem;
    margin: 0;
}
.phases .content {
    width: 100%;
    padding: 0 1rem;
    position: relative;
}
.phases .content .phase {
    width: 100%;
    margin: 2rem auto;
    position: relative;
}
.phases .content .phase h3 {
    font-size: 1.75rem;
    margin-bottom: 1em;
}
.phases .content .phase h3 strong {
    color: var(--col-brand);
}
.phases .content .phase > img {
    width: 100%;
    margin-bottom: 1rem;
}
.phases .content .phase p {
    font-size: 1.15rem;
    text-indent: 3em;
}

/* BUY PODS */
.buy-pods {
    text-align: center;
    margin: 3rem auto;
}
.buy-pods > h2 {
    font-style: italic;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    padding-inline: 1rem;
    margin-bottom: 1em;
}
.buy-pods > h2 strong {
    color: var(--col-brand);
}
.buy-pods .pods {
    --col-grey: #6e6e6e;
    width: 100%;
    padding-inline: 1rem;
    position: relative;
}
.buy-pods .pods .pod {
    width: 100%;
    font-size: 1rem;
    background-color: var(--col-light);
    border-radius: var(--bor-rad-small);
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.15);
    padding-bottom: 1rem;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}
.buy-pods .pods .pod h2 {
    width: 100%;
    font-size: 1.75em;
    color: var(--col-light);
    line-height: 1em;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    background-color: var(--col-brand);
    padding: 0.75em 0;
    position: relative;
}
.buy-pods .pods .pod h2::after {
    width: 0;
    height: 0;
    content: "";
    border-left: 2em solid transparent;
    border-right: 2em solid transparent;
    border-top: 0.75em solid var(--col-brand);
    position: absolute;
    bottom: -0.65em;
    left: 50%;
    transform: translateX(-50%);
}
.buy-pods .pods .pod .copy {
    width: 100%;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--col-grey);
    text-transform: capitalize;
    padding-inline: 1rem;
    margin-bottom: 1em;
    position: relative;
}
.buy-pods .pods .pod .copy::after {
    width: 30%;
    height: 0.15em;
    content: "";
    background-color: var(--col-dark);
    position: absolute;
    bottom: -0.75em;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.25;
}
.buy-pods .pods .pod .copy > span {
    display: block;
}
.buy-pods .pods .pod .copy > span strong {
    font-family: var(--txt-strong);
    font-weight: normal;
}
.buy-pods .pods .pod .copy .amount {
    font-family: var(--txt-heading);
    font-size: 2rem;
    font-weight: normal;
    color: var(--col-brand);
}
.buy-pods .pods .pod .copy .save {
    font-family: var(--txt-strong);
    font-weight: normal;
    color: var(--col-red);
}
.buy-pods .pods .pod .price {
    font-family: var(--txt-heading);
    font-size: 3.5em;
    color: var(--col-grey);
    line-height: 1em;
    letter-spacing: 0.05em;
    margin-top: 0.5em;
    margin-bottom: 0.15em;
    display: block;
}
.buy-pods .pods .pod .disclaimer {
    font-size: 1.15em;
    font-style: italic;
    color: var(--col-grey);
}
.buy-pods .pods .pod button {
    font-size: 2.15em;
    padding: 0.5em 1.5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.buy-pods .pods .pod .rush {
    font-family: var(--txt-strong);
    font-size: 1.25em;
    color: var(--col-brand);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: block;
}
.buy-pods .pods .pod .rush svg {
    width: 1.75em;
    height: 1.75em;
    padding-bottom: 0.15em;
    margin-right: 0.25em;
    display: inline-block;
    vertical-align: middle;
}
.buy-pods .pods .pod .bots {
    width: 100%;
    margin: 2em auto;
    margin-top: 3em;
    position: relative;
}
.buy-pods .pods .pod .bots img {
    max-width: 80%;
    margin-inline: auto;
    display: block;
    position: relative;
}
.buy-pods .pods .pod .six img:not(:nth-child(3)) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.buy-pods .pods .pod .six img:nth-child(1) {
    z-index: 2;
    width: 30%;
    left: 0.5rem;
}
.buy-pods .pods .pod .six img:nth-child(2) {
    z-index: 2;
    width: 35%;
    left: 3rem;
}
.buy-pods .pods .pod .six img:nth-child(3) {
    z-index: 4;
    width: 40%;
}
.buy-pods .pods .pod .six img:nth-child(4) {
    z-index: 3;
    width: 35%;
    right: 4.5rem;
}
.buy-pods .pods .pod .six img:nth-child(5) {
    z-index: 2;
    width: 30%;
    right: 2.5rem;
}
.buy-pods .pods .pod .six img:nth-child(6) {
    z-index: 1;
    width: 25%;
    right: 0.5rem;
}
.buy-pods .pods .pod .three img:not(:nth-child(2)) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.buy-pods .pods .pod .three img:nth-child(1) {
    z-index: 3;
    width: 35%;
    left: 1rem;
}
.buy-pods .pods .pod .three img:nth-child(2) {
    z-index: 4;
    width: 40%;
}
.buy-pods .pods .pod .three img:nth-child(3) {
    z-index: 3;
    width: 35%;
    right: 1rem;
}

/* FOOTER */
footer {
    z-index: 1;
    text-align: left;
    position: relative;
}
footer .top,
footer .bottom {
    width: 100%;
    position: relative;
}
footer .top {
    color: var(--col-dark);
    background-color: var(--col-gray-light);
}
footer .bottom {
    color: var(--col-light);
    background-color: var(--col-dark);
    padding-bottom: 2rem;
}
footer .container {
    padding: 2rem;
}
footer nav {
    width: 100%;
    margin: 2rem 0;
    position: relative;
}
footer .top nav {
    margin-bottom: 0;
}
footer nav ul {
    width: 100%;
    font-size: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
footer .top nav ul a {
    color: var(--col-dark);
}
footer nav ul a {
    color: var(--col-light);
}
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;
}
footer .divide {
    width: 100%;
    height: 2px;
    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:first-child::after {
    width: 2px;
    height: 100%;
    content: "";
    background-color: var(--col-light);
    position: absolute;
    top: 0;
    right: 0;
}
footer p {
    font-size: 0.9rem;
}
footer .copy {
    font-size: 0.75rem;
}
footer .secure {
    margin-bottom: 1rem;
}

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

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

    /* BUTTONS */
    button,
    .btn {
        font-size: 2rem;
    }

    /* HEADER */
    header {
        height: auto;
        background-color: var(--col-light);
        box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.15);
        padding: 1.25rem;
        position: relative;
    }
    header .container {
        width: min(90%, 70.5rem);
        height: auto;
    }
    header .container .logo {
        width: 33%;
        top: -0.25rem;
    }
    header .order {
        font-size: 1em;
        position: absolute;
        bottom: 0;
        right: 1%;
    }
    header .phone {
        z-index: 3;
        font-family: var(--txt-strong);
        font-size: 0.65em;
        text-align: center;
        background-color: transparent;
        padding: 0;
        top: 0.75em;
        bottom: auto;
        left: 0;
    }
    header .phone > span:first-child {
        padding-left: 49rem;
    }
    header .phone a span {
        font-size: 1.25em;
        padding-left: 0.25em;
        display: inline-block;
    }
    header .phone a span::before {
        width: 100%;
        height: 0.18em;
        content: "";
        background-color: var(--col-brand);
        position: absolute;
        bottom: -0.2em;
        left: 0;
        transform: scaleX(0);
        transition: transform var(--hover-speed) ease-out;
    }
    header .phone a span:hover::before,
    header .phone a span:focus::before {
        transform: scaleX(1);
    }

    /* MENU */
    header nav {
        width: max-content;
        font-size: 1.15rem;
        background-color: transparent;
        margin-left: 1.5rem;
        top: auto;
        bottom: 0;
        left: 40%;
    }
    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: 1em;
        color: var(--col-dark);
        text-transform: uppercase;
        background-color: transparent;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
        display: block;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    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);
        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: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-brand);
        text-decoration: none;
    }
    header nav ul li:hover,
    header nav ul li:focus {
        color: var(--col-brand);
        outline: none;
        background-color: transparent;
    }
    header nav > input:checked ~ ul {
        transform: none;
    }
    header nav > input:checked ~ ul li {
        transform: none;
    }

    /* HOME - BANNER */
    .home > .banner {
        box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    .home > .banner::before {
        z-index: 1;
        width: 100%;
        height: 100%;
        content: "";
        background: var(--col-light);
        background: -moz-linear-gradient(left, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 85%, rgba(20, 147, 213, 0.25) 100%);
        background: -webkit-linear-gradient(left, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 85%, rgba(20, 147, 213, 0.25) 100%);
        background: linear-gradient(to right, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 85%, rgba(20, 147, 213, 0.25) 100%);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .home > .banner .container {
        padding: 2.5rem 2rem;
    }
    .home > .banner h1 {
        font-size: 2rem;
        line-height: 1em;
    }
    .home > .banner h1 span {
        line-height: 1.25em;
        padding-top: 0;
    }
    .home > .banner h1 > strong {
        font-size: 1em;
        line-height: 1em;
        display: inline;
    }
    .home > .banner .couple {
        z-index: 2;
        width: 40rem;
        max-width: none;
        position: absolute;
        top: auto;
        bottom: -5rem;
        left: 19.5rem;
        transform: scaleX(-1);
    }
    .home > .banner .hero {
        width: 30rem;
        padding-top: 0;
        position: absolute;
        bottom: -3rem;
        right: -2rem;
    }
    .home > .banner .hero img:first-child {
        width: 90%;
    }
    .home > .banner .hero img:last-child {
        width: 25%;
        position: absolute;
        top: 0;
        right: auto;
        left: 4rem;
    }
    .home > .banner button {
        font-size: 2.5rem;
        margin-top: 1rem;
        display: block;
    }
    .home > .banner ul {
        width: 35%;
        font-size: 2rem;
        color: var(--col-dark);
    }
    .home > .banner ul li {
        margin: 0 auto;
    }
    .home > .banner ul li svg {
        fill: var(--col-brand);
    }

    /* VIDEO - MAIN */
    .video-main {
        border-bottom-left-radius: var(--bor-rad);
        border-bottom-right-radius: var(--bor-rad);
    }
    .video-main h3 {
        font-size: 2.75rem;
    }

    /* CLINICAL STUDY */
    .clinical-study {
        border-radius: var(--bor-rad);
        padding-top: 5rem;
        padding-bottom: 2rem;
        overflow: hidden;
    }
    .clinical-study::before {
        width: 60%;
        height: 90%;
        border-top-right-radius: var(--bor-rad);
    }
    .clinical-study::after {
        z-index: 1;
        width: 82%;
        height: 100%;
        content: "";
        background-image: url("../img/clinical-study/older-guy-kissing-wife-on-cheek-in-bed.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left bottom;
        position: absolute;
        bottom: 0;
        left: -15%;
    }
    .clinical-study .copy {
        width: 50%;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: var(--bor-rad-small);
        padding: 2rem 1rem;
        margin-left: 47%;
    }
    .clinical-study .copy h2 {
        font-size: 2rem;
    }
    .clinical-study .copy h2 strong {
        font-size: 1em;
    }
    .clinical-study > img {
        z-index: 2;
        width: 18%;
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
    }

    /* PATENTED INGREDIENTS */
    .patented-ingredients {
        margin-top: 2rem;
    }
    .patented-ingredients::before {
        height: 45rem;
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
    }
    .patented-ingredients h2 {
        font-size: 3.5rem;
        padding-inline: 1em;
        margin-bottom: 0.25em;
    }
    .patented-ingredients h2 span {
        display: inline-block;
    }
    .patented-ingredients h3 {
        font-size: 1.5rem;
    }
    .patented-ingredients .imgs {
        margin-top: 3rem;
    }
    .patented-ingredients .imgs img {
        width: 18%;
        position: absolute;
    }
    .patented-ingredients .imgs img:first-child {
        width: 30%;
        position: relative;
    }
    .patented-ingredients .imgs img:nth-child(2) {
        top: 2rem;
        left: 4rem;
    }
    .patented-ingredients .imgs img:nth-child(3) {
        width: 25%;
        bottom: 8rem;
        left: 1.5rem;
    }
    .patented-ingredients .imgs img:nth-child(4) {
        width: 15%;
        top: 2rem;
        right: 12rem;
    }
    .patented-ingredients .imgs img:nth-child(5) {
        width: 15%;
        top: 2rem;
        bottom: auto;
        right: 2rem;
    }
    .patented-ingredients ul {
        width: max-content;
        font-size: 1.4rem;
        color: var(--col-light);
        text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.5);
        padding: 0;
        position: absolute;
        top: 30rem;
        right: 1.5rem;
    }
    .patented-ingredients ul li svg {
        fill: var(--col-light);
    }
    .patented-ingredients h4 {
        margin-top: 2rem;
        margin-bottom: 0.25em;
    }
    .patented-ingredients p {
        font-size: 1.5rem;
        padding-inline: 3.5em;
    }
    .patented-ingredients p strong {
        display: inline-block;
    }
    .patented-ingredients .logos img {
        max-height: 3rem;
        margin-top: 1rem;
        margin-inline: 1rem;
    }

    /* JACK MASQUELIER */
    .jack-masquelier {
        border-radius: var(--bor-rad);
        padding: 2rem;
        padding-bottom: 3rem;
        margin-top: 2rem;
    }
    .jack-masquelier .intro {
        width: 47%;
        display: inline-block;
        vertical-align: top;
    }
    .jack-masquelier .intro h2,
    .jack-masquelier .intro h3 {
        font-size: 2rem;
        line-height: 1.25em;
    }
    .jack-masquelier .intro h2 {
        margin-top: 0.5em;
        margin-bottom: 1.25em;
    }
    .jack-masquelier .intro h2 strong:last-child {
        display: inline-block;
    }
    .jack-masquelier .intro .imgs img:nth-child(3) {
        bottom: -11rem;
        right: -2rem;
    }
    .jack-masquelier .intro h3 {
        font-size: 2.5rem;
        text-align: left;
        margin-top: 1em;
    }
    .jack-masquelier .list {
        width: 47%;
        padding: 1.5rem 1rem;
        margin-left: 5%;
        display: inline-block;
        vertical-align: top;
    }
    .jack-masquelier .list h2,
    .jack-masquelier .list h3 {
        font-size: 1.75rem;
        line-height: 1.35em;
    }
    .jack-masquelier .list h3 {
        font-size: 1.65rem;
        padding-left: 4em;
    }
    .jack-masquelier .list h3::before {
        left: 0.5em;
    }
    .jack-masquelier .list ul {
        padding: 0 0.75em;
        margin: 0;
    }
    .jack-masquelier .list ul li {
        padding: 0.5em 0;
        padding-left: 2.25em;
    }
    .jack-masquelier .list ul li svg {
        left: 0.25em;
    }
    .jack-masquelier > p {
        font-size: 1.25rem;
        padding: 0 0.5em;
        margin: 2em auto;
    }
    .jack-masquelier button {
        font-size: 2.5rem;
        display: block;
        padding: 0.35em 3em;
        margin: 0 auto;
    }

    /* COMPARISON CHART */
    .comparison-chart {
        margin: 4rem auto;
    }
    .comparison-chart h2 {
        font-size: 2.5rem;
    }
    .comparison-chart h2 strong {
        font-size: 1.5em;
    }

    /* BENEFITS */
    .benefits {
        margin: 2rem auto;
    }
    .benefits h2 {
        font-size: 2.5rem;
    }
    .benefits h2 strong {
        font-size: 1.35em;
    }
    .benefits .couple {
        width: 60%;
        margin-top: 0;
        vertical-align: middle;
    }
    .benefits .product {
        width: 50%;
        margin-top: 0;
        margin-left: -12%;
        vertical-align: middle;
    }
    .benefits ul {
        width: 50%;
        display: inline-block;
        vertical-align: top;
    }
    .benefits ul:nth-child(5) {
        margin-left: -1%;
    }
    .benefits ul li {
        padding: 1em;
        padding-left: 5.5em;
        position: relative;
    }
    .benefits ul:nth-child(4) li {
        border-top-left-radius: var(--bor-rad-small);
        border-bottom-left-radius: var(--bor-rad-small);
    }
    .benefits ul:nth-child(5) li {
        border-top-right-radius: var(--bor-rad-small);
        border-bottom-right-radius: var(--bor-rad-small);
    }
    .benefits ul li:nth-child(odd) {
        background-color: var(--col-gray-light);
    }
    .benefits ul li:nth-child(even) {
        background-color: var(--col-light);
    }
    .benefits ul:nth-child(5) li:last-child {
        padding-bottom: 2.85em;
    }
    .benefits ul li h3 {
        font-size: 1.5em;
        letter-spacing: -0.05em;
        margin-bottom: 0.25em;
    }
    .benefits ul li span {
        font-size: 1.15em;
    }

    /* FORMULA */
    .formula {
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
        margin: 4rem auto;
        overflow: hidden;
    }
    .formula > h2 {
        font-size: 3rem;
        padding: 2rem 1rem;
    }
    .formula > h2 strong {
        font-size: 1.4em;
    }
    .formula .content > .imgs {
        padding-top: 2rem;
    }
    .formula .content > .imgs img:nth-child(1) {
        width: 72%;
        margin-left: -7%;
        vertical-align: middle;
    }
    .formula .content > .imgs img:nth-child(2) {
        width: 40%;
        background-color: var(--col-light);
        border-radius: var(--bor-rad-small);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
        padding: 1rem;
        margin-top: -1rem;
        margin-left: -9%;
        vertical-align: middle;
    }
    .formula .content > .imgs img:nth-child(3) {
        width: 25%;
        bottom: 0;
        left: 33%;
    }
    .formula .content ul {
        font-size: 1.15rem;
        margin-top: -2.5rem;
    }
    .formula .content ul li {
        width: 48%;
        display: inline-block;
        vertical-align: middle;
    }
    .formula .content ul li:nth-child(odd) {
        margin-right: 3%;
    }

    /* GUARANTEE */
    .guarantee {
        border-radius: var(--bor-rad);
        padding-block: 4rem;
    }
    .guarantee h2 {
        font-size: 4rem;
        line-height: 1em;
    }
    .guarantee .imgs {
        width: 50%;
        margin-right: 1%;
        display: inline-block;
        vertical-align: middle;
    }
    .guarantee .imgs img:first-child {
        width: 100%;
    }
    .guarantee .imgs img:last-child {
        width: 40%;
        left: -2.5rem;
    }
    .guarantee .copy {
        width: 48%;
        margin-top: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .guarantee .copy h3 {
        width: calc( 100% + 4rem);
        font-size: 2.5rem;
        line-height: 1em;
        padding: 0.4em 1em;
    }
    .guarantee .copy h4 {
        font-family: var(--txt-strong);
        font-size: 2.25rem;
    }
    .guarantee .copy p {
        font-size: 1.35rem;
        font-weight: bold;
        text-align: left;
        padding-left: 3em;
        position: relative;
    }
    .guarantee .copy p svg {
        width: 4em;
        height: 4em;
        fill: var(--col-yellow);
        position: absolute;
        top: 0.25em;
        left: 0;
    }
    .guarantee .copy button {
        font-size: 2.5rem;
    }

    /* TESTIMONIALS */
    .testimonials h2 {
        font-size: 3.5rem;
    }
    .testimonials h3 {
        font-size: 6rem;
        letter-spacing: -0.05em;
    }
    .testimonials .logos {
        width: 100%;
        margin: 2rem auto;
    }
    .testimonials .logos img {
        max-width: none;
        max-height: none;
        margin: 0 0.75rem;
    }
    .testimonials .imgs {
        width: 100%;
        position: relative;
    }
    .testimonials .imgs img {
        width: 32.5%;
        vertical-align: top;
    }
    .testimonials h4 {
        font-size: 2.5rem;
    }

    /* PHASES */
    .phases {
        border-radius: var(--bor-rad);
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
    }
    .phases > h2 {
        font-size: 4rem;
        border-top-left-radius: var(--bor-rad);
        border-top-right-radius: var(--bor-rad);
        padding: 2rem 1rem;
    }
    .phases .content {
        padding: 0 2rem;
        padding-bottom: 1rem;
    }
    .phases .content .phase {
        margin: 3rem auto;
    }
    .phases .content .phase h3 {
        font-size: 2.5rem;
        margin-bottom: 1em;
    }
    .phases .content .phase h3 strong {
        color: var(--col-brand);
    }
    .phases .content .phase > img {
        width: 45%;
        margin-bottom: 0;
        vertical-align: top;
    }
    .phases .content .phase .copy {
        width: 50%;
        margin-left: 4%;
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    .phases .content .phase:first-child .copy {
        padding-top: 2rem;
    }
    .phases .content .phase p {
        font-size: 1.3rem;
        text-indent: 3em;
    }

    /* BUY PODS */
    .buy-pods {
        margin: 5rem auto;
    }
    .buy-pods > h2 {
        font-size: 5rem;
        line-height: 1em;
        padding-inline: 4rem;
        margin-bottom: 0.75em;
    }
    .buy-pods .pods {
        padding-inline: 0.25rem;
    }
    .buy-pods .pods .pod {
        width: 32%;
        margin: 0 auto;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        transition: background-color var(--hover-speed) ease-out,
                    transform var(--hover-speed) ease-out;
    }
    .buy-pods .pods .pod:nth-child(even) {
        margin-inline: 1%;
    }
    .buy-pods .pods .pod:hover,
    .buy-pods .pods .pod:focus {
        background-color: var(--col-gray-light);
        transform: scale(1.02);
    }

    /* FOOTER */
    footer {
        padding-top: 5rem ;
    }
    footer .logo {
        width: 40%;
        display: inline-block;
        vertical-align: middle;
    }
    footer nav {
        width: 40%;
        margin: 0;
        margin-left: 19%;
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }
    footer nav ul {
        font-size: 1rem;
    }
    footer nav ul li {
        width: 45%;
        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);
    }
    footer .menu-sub-footer {
        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: 1rem;
    }
    footer .copy {
        font-size: 0.75rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
        margin-left: 30%;
    }
    footer .secure {
        margin-bottom: 0;
        position: absolute;
        top: 3rem;
        left: 2rem;
    }
}

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

    /* HOME - BANNER */
    .home > .banner h1 {
        font-size: 1.15rem;
    }

}

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

        /* HOME - BANNER */
        .home > .banner::before {
            background: -moz-linear-gradient(left, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(20, 147, 213, 0.25) 100%);
            background: -webkit-linear-gradient(left, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(20, 147, 213, 0.25) 100%);
            background: linear-gradient(to right, rgba(20, 147, 213, 0.25) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(20, 147, 213, 0.25) 100%);
        }

}
