/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
    background: none;
    border-style: none;
    cursor: pointer;
}

a {
	color: inherit;
	text-decoration: inherit;
}

:root {
    --bg: #f1f1f1;
    --bg-2: rgb(35, 35, 35);
    --highlight: #da180a;
    --highlight-dark: #87130b;
    --glow: #ffbab3;
    --white: #ffffff;
    --black: #000000;
    --gray: #777777;
    --dark-gray: #414141;

    --font-size-xs: clamp(12px, 1.9vw, 17px);
    --font-size-sm: clamp(14px, 2.1vw, 21px);
    --font-size-md: clamp(18px, 2.6vw, 26px);
    --font-size-lg: clamp(26px, 3.1vw, 34px);
    --font-size-xl: clamp(30px, 3.6vw, 42px);
    --font-size-heading: clamp(30px, 3.9vw, 48px);
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;

    font-family: 'montserrat';
    color: var(--black);
}

@font-face {
    font-family: 'helveticanow';
    src: url('./public/HelveticaNowText-Black.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'montserrat';
    src: url('./public/Montserrat-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'montserrat';
    src: url('./public/Montserrat-Italic-VariableFont_wght.ttf');
    font-style: italic;
}

.italic {
    font-family: inherit;
    font-style: italic !important;
}

.b {
    font-weight: bold !important;
}

.u {
    text-decoration: underline !important;
}

p {
    font-size: var(--font-size-sm);
}

div.img-wrapper {
    background-position: center;
    background-size: 180%;
}

.font-xs {
    font-family: inherit;
    font-size: var(--font-size-xs);
}

.flex {
    display: flex;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.w-100 {
    width: 100%;
}

p,
span,
a {
    font-family: 'montserrat';
}

h1,
h2,
h3,
h4,
h5,
h6,
header .logo {
    font-family: 'helveticanow';
    font-weight: bold;
}

.font-text {
    font-family: 'montserrat' !important;
}

.font-header {
    font-family: 'helveticanow' !important;
}

.font-xs {
    font-size: var(--font-size-xs);
}

.content-standard {
    width: 100%;
    max-width: 2000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background-color: var(--highlight);
    color: var(--white);
    font-family: 'montserrat';
    font-weight: bold;
    padding: 15px 30px;
    font-size: var(--font-size-md);
    border-radius: 5px;
    box-shadow: 0 5px var(--highlight-dark);
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out, filter 200ms ease-in-out;
}

.cta-sm {
    font-size: var(--font-size-sm);
    padding: 10px 20px;
}

.cta-button:hover {
    transform: translateY(3px);
    box-shadow: 0 2px var(--highlight-dark);
    filter: brightness(0.88);
}

.cta-white {
    background-color: var(--white);
    color: var(--highlight);
    box-shadow: 0 5px var(--gray);
}

.cta-white:hover {
    box-shadow: 0 2px var(--gray);
}

.cta-black {
    background-color: var(--dark-gray);
    color: var(--white);
    box-shadow: 0 5px var(--black);
}

.cta-black:hover {
    box-shadow: 0 2px var(--black);
}

span.highlight {
    font: inherit;
    background: linear-gradient(transparent 14%, var(--highlight) 14% 90%, transparent 90%);
    color: var(--white);
}

span.highlight-big {
    font: inherit;
    background: var(--highlight);
    color: var(--white);
}

h2 {
    text-align: center;
    width: 90vw;
}

/* span.highlight-white {
    font: inherit;
    background: linear-gradient(transparent 14%, var(--white) 14% 90%, transparent 90%);
    color: var(--dark-gray);
} */

@media screen and (max-width: 900px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 400px) {
    section {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
}

header li,
header .logo {
    cursor: pointer;
    color: var(--black);
}

header .logo {
    font-size: var(--font-size-lg);
}

header li {
    font-size: var(--font-size-xs);
    transition: color 200ms ease-in-out;
}

header ul {
    gap: 35px;
}

header .content-standard {
    padding: 20px 40px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    flex-direction: initial;
}

header li:hover {
    color: var(--gray);
}

@media screen and (max-width: 1080px) {
    header ul {
        display: none !important;
    }
}

@media screen and (max-width: 580px) {
    header .content-standard {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 400px) {
    header {
        display: none !important;
    }
}

section.hero {
    padding-top: 70px;
}

section.hero h1 {
    font-size: var(--font-size-heading);
    text-align: center;
    width: 75%;
    margin-bottom: 25px;
}

section.hero .guarantee {
    font-size: var(--font-size-sm);
    text-align: center;
    width: 90vw;
}

section.hero .video-wrapper {
    width: 60vw;
    max-width: 800px;
    min-width: 450px;
    aspect-ratio: 16/9;
    background: gray;
    border-radius: 10px;
    margin-bottom: 45px;
    margin-top: 45px;
    position: relative;
    overflow: hidden;
    border: 1px solid black;
}

@media screen and (max-width: 920px) {
    section.hero h1 {
        width: 90%;
    }
    
    section.hero {
        padding-top: 50px;
    }
}

@media screen and (max-width: 800px) {
    section.hero h1 {
        margin-bottom: 10px;
    }

    section.hero .video-wrapper {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 580px) {
    section.hero h1 {
        width: 90%;
    }
    
    section.hero .video-wrapper {
        min-width: 0;
        width: 90vw;
    }
}

section.pains {
    background-color: var(--bg-2);
    color: var(--white);
}

section.pains h2 {
    font-size: var(--font-size-heading);
}

section.pains .copy {
    width: 90%;
    max-width: 1000px;
    margin: 60px 0;
}

section.pains .cards,
section.pains .cards-2 {
    flex-wrap: wrap;
}

section.pains .cards {
    margin: 0 40px;
    /* align-items: stretch; */
}

section.pains .cards,
section.pains .cards-2 {
    gap: 40px;
}

section.pains .card {
    width: 300px;
    height: 100%;
    background: var(--white);
    color: var(--black);
    border-radius: 5px;
    gap: 10px;
    padding: 10px 12px;
    justify-content: start;
}

section.pains .card .img-wrapper {
    width: 100%;
    aspect-ratio: 10/7;
    background: gray;
    border-radius: 5px;
    background-size: 100% !important;
    border: 2px solid var(--black);
}

section.pains .card h3 {
    text-align: center;
    font-size: var(--font-size-sm);
}

section.pains .card p {
    text-align: center;
    font-size: var(--font-size-xs);
}

@media screen and (max-width: 1000px) {
    section.pains .card {
        width: 230px;
    }
}

@media screen and (max-width: 800px) {
    section.pains .copy {
        margin: 30px 0;
    }

    section.pains .cards,
    section.pains .cards-2 {
        gap: 20px;
    }
}

@media screen and (max-width: 642px) {
    section.pains .card {
        width: 95%;
    }
}

@media screen and (max-width: 600px) {
    section.pains .copy {
        width: 97%;
        margin: 20px 0;
    }
}

section.solution .content-standard {
    gap: 40px;
}

section.solution h2 {
    font-size: var(--font-size-heading);
}

section.solution .copy {
    width: 90%;
    max-width: 1000px;
    margin: 20px 0 0;
    font-size: var(--font-size-sm);
}

section.solution .cards {
    gap: 40px;
    padding-left: 40px;
    padding-right: 40px;
    flex-wrap: wrap;
}

section.solution .card {
    width: 440px;
    gap: 10px;
}

/* section.solution .card .img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 5px;
    background-color: gray;
} */

section.solution .card video {
    border-radius: 5px;
    border: 2px solid var(--black);
}

section.solution .card h3 {
    font-size: var(--font-size-md);
}

section.solution .card ul {
    padding-left: 20px;
    list-style-type: "- ";
}

section.solution .card li {
    font-size: var(--font-size-sm);
}

@media screen and (max-width: 1100px) {
    section.solution .card {
        width: 380px;
    }
}

@media screen and (max-width: 895px) {
    section.solution .card {
        width: 75vw;
        min-width: 300px;
    }

    section.solution .content-standard {
        gap: 20px;
    }
}

@media screen and (max-width: 800px) {
    section.solution .copy {
        width: 97%;
        margin: 0;
    }

    section.solution .cards {
        gap: 20px;
    }
}

section.system .content-standard {
    gap: 40px;
}

section.system h2 {
    font-size: var(--font-size-heading);
    margin-bottom: 20px;
}

section.system .copy {
    width: 90%;
    max-width: 1000px;
    margin: 20px 0 0;
    font-size: var(--font-size-sm);
}

section.system .copy-center {
    text-align: center;
    font-size: var(--font-size-md);
}

section.system .steps {
    width: 80%;
}

section.system .steps .step {
    gap: 10px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

section.system .steps .number {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: var(--highlight);
    box-shadow: 0 0 12px var(--highlight);
}

section.system .steps .number span {
    font-size: var(--font-size-lg);
    color: var(--white);
}

section.system .steps h3 {
    font-size: var(--font-size-sm);
}

section.system .steps p {
    font-size: var(--font-size-xs);
}

section.system .steps svg {
    position: absolute;
    top: 20px;
    left: 21px;
    z-index: -1;
    stroke: var(--dark-gray)
}

@media screen and (max-width: 1300px) {
    section.system .steps {
        width: 90%;
    }
}

@media screen and (max-width: 1050px) {
    section.system .steps {
        width: 97%;
    }
}

@media screen and (max-width: 850px) {
    section.system .content-standard {
        gap: 30px;
    }
    
    section.system h2 {
        margin-bottom: 0;
    }

    section.system .copy {
        margin: 0;
    }
    
    section.system .steps svg {
        display: none;
    }

    section.system .steps {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
    }

    section.system .steps .step {
        padding: 20px 0;
    }

    section.system .steps h3 {
        font-size: var(--font-size-md);
    }
    
    section.system .steps p {
        font-size: var(--font-size-sm);
    }
}

@media screen and (max-width: 600px) {
    section.system .content-standard {
        gap: 20px;
    }

    section.system .copy {
        width: 95%;
    }
    
    section.system .steps {
        width: 95%;
    }

    section.system .steps .step {
        padding: 15px 0;
    }
}

section.case-studies {
    background: var(--dark-gray);
    color: var(--white);
}

section.case-studies .content-standard {
    gap: 40px;
}

section.case-studies h2 {
    font-size: var(--font-size-heading);
    /* margin-bottom: 20px; */
}

section.case-studies h3 {
    font-size: var(--font-size-lg);
    margin-top: 20px;
}

section.case-studies .copy {
    width: 90%;
    max-width: 1000px;
    margin: 20px 0 0;
    font-size: var(--font-size-sm);
}

section.case-studies .case-study {
    gap: 10px;
}

section.case-studies .case-study .img-wrapper {
    border-radius: 5px;
}

section.case-studies .case-study .img-1 {
    height: 300px;
    aspect-ratio: 2;
}

section.case-studies .case-study .img-2 {
    height: 300px;
    aspect-ratio: 4/3;
}

section.case-studies .case-study .imgs {
    gap: 20px;
}

section.case-studies .case-study .niche {
    font-size: var(--font-size-sm);
    margin: 10px 0;
}

section.case-studies .case-study .headline {
    font-size: var(--font-size-lg);
}

section.case-studies .case-study ul {
    padding-left: 40px;
}

section.case-studies .case-study li {
    font-size: var(--font-size-sm);
    margin: 20px 0;
    position: relative;
}

section.case-studies .case-study li:first-of-type {
    margin-top: 10px;
}

section.case-studies .case-study .check-wrapper {
    position: absolute;
    height: 1.5em;
    aspect-ratio: 1;
    top: -0.25em;
    left: -40px;
    background: var(--gray);
    border-radius: 50%;
}

section.case-studies .case-study .check {
    height: calc(100% - 5px);
}

section.case-studies .more-imgs .img-wrapper {
    border-radius: 5px;
    height: 375px;
    aspect-ratio: 2;
}

section.case-studies .more-imgs .big-img {
    background-size: 150%;
}

section.case-studies .more-imgs {
    gap: 40px;
    font-size: var(--font-size-xs);
    font-style: italic;
}

section.case-studies .more-imgs>div {
    gap: 10px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (max-width: 1100px) {
    section.case-studies .case-study .img-1,
    section.case-studies .case-study .img-2 {
        height: 250px;
    }
}

@media screen and (max-width: 900px) {
    section.case-studies .case-study .img-1,
    section.case-studies .more-imgs .img-wrapper {
        height: 300px;
    }

    section.case-studies .case-study .img-2 {
        display: none;
    }

    section.case-studies .case-study {
        padding-left: 20px;
        padding-right: 20px;
    }

    section.case-studies .copy,
    section.case-studies h3 {
        margin-top: 0;
    }

    section.case-studies .content-standard,
    section.case-studies .more-imgs {
        gap: 30px;
    }
}

@media screen and (max-width: 800px) {
    section.case-studies .copy {
        width: 97%;
    }
}

@media screen and (max-width: 660px) {
    section.case-studies .case-study .img-1,
    section.case-studies .more-imgs .img-wrapper {
        height: auto;
        width: 85vw;
    }

    section.case-studies .case-study {
        gap: 5px;
    }
}

@media screen and (max-width: 500px) {
    section.case-studies .case-study .img-1,
    section.case-studies .more-imgs .img-wrapper {
        width: 90vw;
    }

    section.case-studies .content-standard,
    section.case-studies .more-imgs {
        gap: 20px;
    }
}

section.cta h2 {
    font-size: var(--font-size-heading);
    margin-bottom: 60px;
}

@media screen and (max-width: 650px) {
    section.cta .fillout-form {
        width: 90% !important;
    }
}

@media screen and (max-width: 500px) {
    section.cta .fillout-form {
        width: 100% !important;
    }
}

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0;
}

footer .content-standard {
    gap: 20px;
}

footer .logo {
    font-size: var(--font-size-heading);
    margin-bottom: 10px;
}

footer .socials {
    gap: 40px;
    color: #aeaeae;
}

footer .social a {
    cursor: pointer;
    gap: 5px;
}

footer .social span {
    font-size: var(--font-size-sm);
}


footer .social .social-logo {
    height: 1.5em;
}

footer .legals {
    color: #8e8e8e;
    gap: 15px;
}

footer .legals span {
    font-size: var(--font-size-xs);
}

footer .legal {
    cursor: pointer;
}

footer .social,
footer .legal {
    transition: filter 200ms ease-in-out;
}

footer .social:hover,
footer .legal:hover {
    filter: brightness(1.5);
}