/*RESET*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*HAMBURGER*/
.hamburger {
    display: none;
}

.nav-overlay {
    display: none;
}

/*NAVIGATION*/
.nav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(244, 240, 236, 0.99);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 25px 60px;
}

.nav-logo-link {
    justify-self: start;
    line-height: 0;
}

.nav-logo-link img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 80px;
    justify-self: center;
}

.nav-links a {
    font-family: 'General Sans';
    font-size: 20px;
    font-weight: 500;
    color: #123d48;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
    font-weight: 550;
}

.nav-cta {
    justify-self: end;
}

/*CURSOR*/
.cursor-pointer {
    cursor: pointer;
}


/* SECTION*/
.section {
    padding: 120px 0;
}

.product-section {
    padding: 60px 0;
}

/* CONTAINER */
.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.container-small {
    max-width: 850px;
    margin: 0 auto;
}

.container-content {
    max-width: 980px;
    margin: 0 auto;
}

.container-sized {
    max-width: 1050px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.container-mid {
    max-width: 1300px;
    margin: 0 auto;
}

.container-avg {
    max-width: 1400px;
    margin: 0 auto;
}

.container-full {
    max-width: 1500px;
    margin: 0 auto;
}

.container-aye {
    max-width: 1600px;
    margin: 0 auto;
}

.container-max {
    max-width: 1800px;
    margin: 0 auto;
}

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

/*FONTS*/
@font-face {
    font-family: 'General Sans';
    src: url('GeneralSans-Variable.woff2') format('woff2');
}

@font-face {
    font-family: 'Switzer Regular';
    src: url('Switzer-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Switzer Bold';
    src: url('Switzer-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Switzer Extra Bold';
    src: url('Switzer-Extrabold.woff2') format('woff2');
}

@font-face {
    font-family: 'Switzer Black';
    src: url('Switzer-Black.woff2') format('woff2');
}


.font-regular {
    font-family: 'General Sans';
}

.font-bold {
    font-family: 'Switzer Bold';
    letter-spacing: -0.04em;
}

.font-xbold {
    font-family: 'Switzer Extra Bold';
    letter-spacing: -0.04em;
}

.font-black {
    font-family: 'Switzer Black';
    letter-spacing: -0.06em;
}


/* COLORS */
.azure {
    color: #123d48;
}

.lime {
    color: #d6e1a5;
}

.black {
    color: #000000;
}

.white {
    color: #ffffff;
}

.gray {
    color: #f5f5f5;
}

.egg {
    color: #F4F0EC;
}

.bg-gray {
    background-color: #f5f5f5;
}

.bg-egg {
    background-color: #F4F0EC;
}

.bg-dkgray {
    background-color: #6E6A6F;
}

.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}


/*TEXT*/
p {
    font-family: 'General Sans';
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    color: #000000;
    overflow-x: hidden;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Switzer Black';
    font-size: 95px;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #000000;
    margin-bottom: 40px;
}

h2 {
    font-family: 'Switzer Black';
    font-size: 75px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 25px;
}

h3 {
    font-family: 'Switzer Black';
    font-size: 42px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
}

h4 {
    font-family: 'General Sans';
    font-size: 28px;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
}

.pretext {
    font-family: 'General Sans';
    font-size: 25px;
    letter-spacing: 0.2em;
    line-height: 1.1;
    color: #d6e1a5;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/*BUTTONS*/
.btn-primary {
    display: inline-block;
    background: #d6e1a5;
    color: #000000;
    padding: 14px 42px;
    border-radius: 28px;
    text-decoration: none;
    font-family: 'General Sans';
    font-size: 19px;
    font-weight: 550;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    display: inline-block;
    background: #123d48;
    color: #ffffff;
    padding: 14px 42px;
    border-radius: 28px;
    text-decoration: none;
    font-family: 'General Sans';
    font-size: 19px;
    font-weight: 550;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/*LAYOUTS*/
.hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 140px;
}

.products {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr;
    gap: 75px;
    justify-content: center;
    align-items: center;
}

.fluff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    justify-content: center;
    align-items: center;
}

.process {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 150px;
    justify-content: center;
    align-items: center;
}

.faq {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 150px;
    justify-content: center;
    align-items: center;
}

.something {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    justify-content: center;
    align-items: center;
}

/*PIECES*/
.bullets {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 5px;
    margin-left: 50px;
}

.bullet-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullets img {
    height: 28px;
    width: 28px;
}

.bullets-strong {
    font-family: 'General Sans';
    letter-spacing: -0.02em;
    font-size: 25px;
    font-weight: 600;
}

.bullets p {
    font-family: 'General Sans';
    font-size: 20px;
    margin-left: 40px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
    text-align: left;
}

.stats-row img {
    height: 65px;
    width: 65px;
    margin-bottom: 10px;
}

.stats-row h4 {
    color: #123d48;
    margin-bottom: 4px;
    font-weight: 900;
    text-align: left;
}

.stats-row p {
    font-size: 20px;
    text-align: left;
}

.about-blurb {
    text-align: center;
    max-width: 791px;
    margin: 0 auto;
}

.about-blurb p {
    margin-bottom: 45px;
}

.about-blurb h2 {
    letter-spacing: -0.05em;
    font-family: 'Switzer Black';
}

.about-note {
    text-align: justify;
    font-size: 17px;
    font-family: 'General Sans';
}

.about-note a {
    font-weight: 550;
    color: #123d48;
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 50px;
    row-gap: 75px;
}

.product-grid h4 {
    color: #123d48;
    margin-bottom: 6px;
}

.product-grid p {
    font-size: 20px;
    line-height: 1.4;
}

.product-grid img {
    height: 55px;
    width: 55px;
    margin-bottom: 10px;
}

.products h2 {
    font-size: 75px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: 'Switzer Black';
}

.products pretext {
    margin-bottom: 20px;
}

.fluff h2 {
    color: #123d48;
    line-height: 1.1;
    font-family: 'Switzer Black';
}

.process-list {
    margin-bottom: 45px;
}

.process-list p {
    margin-left: 90px;
}

.process-item {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
    margin-bottom: 0px;
}

.process-item img {
    height: 65px;
    width: 65px;
}

.process-item h3 {
    margin-bottom: 6px;
}

.something-blurb {
    display: grid;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.something-row h2 {
    margin-bottom: 10px;
    font-size: 75px;
    font-family: 'Switzer Black';
}

.something-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    justify-content: center;
}

.item img {
    text-align: center;
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
}

.item .pretext {
    color: #123d48;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.item h3 {
    text-align: center;
    margin-bottom: 15px;
}

.item-prod {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.item-specs {
    max-width: 300px;
    margin: 0 auto;
}

.item strong {
    color: #123d48;
}

.item p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 2px;
}

/*FAQ*/
.faq-item {
    border-bottom: 1px solid rgba(18, 61, 72, 0.18);
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(18, 61, 72, 0.18);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h4 {
    margin-bottom: 0;
    flex: 1;
}

.faq-chevron {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.faq-chevron-up {
    display: none;
}

.faq-item[open] .faq-chevron-down {
    display: none;
}

.faq-item[open] .faq-chevron-up {
    display: block;
}

.faq-answer {
    padding: 0 0 28px 0;
}

.faq-answer a {
    font-weight: 550;
    color: #123d48;
    text-decoration: underline;
}

.faq-answer ul {
    margin: 0 0 10px 25px;
}

.faq-answer li {
    font-family: 'General Sans';
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 4px;
}

.cta-blurb {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-blurb p {
    margin-bottom: 45px;
}

.cta-blurb a {
    font-weight: 550;
    color: #123d48;
    text-decoration: underline;
}

.cta-blurb .flex-container a {
    text-decoration: none;
    color: #ffffff;
}

/*CARDS*/
.card-gray {
    background-color: #f5f5f5;
    border-radius: 9px;
    padding: 80px 60px;
}

.card-black {
    background-color: #000000;
    border-radius: 9px;
    padding: 80px 60px;
}

.card-egg {
    background-color: #F4F0EC;
    border-radius: 9px;
    padding: 80px 60px;
}

.card-lime {
    background-color: #d6e1a5;
    border-radius: 9px;
    padding: 80px 60px;
}

.card-azure {
    background-color: #123d48;
    border-radius: 9px;
    padding: 80px 60px;
}

/*SLIDER*/
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 75px;
}

.item {
    position: absolute;
    width: 380px;
    height: 600px;
    text-align: center;
    background-color: #F4F0EC;
    border-radius: 10px;
    padding: 40px 20px;
    transition: 0.5s;
    left: calc(50% - 190px);
    top: 0;
}

#next {
    position: absolute;
    right: 50px;
    top: 40%;
}

#prev {
    position: absolute;
    left: 50px;
    top: 40%;
}

#prev,
#next {
    color: #123d48;
    background: none;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.5s;
}

#prev:hover,
#next:hover {
    opacity: 1;
}

.product-hero {
    text-align: center;
}

.product-hero .product-bullet {
    max-width: 660px;
    margin: 0 225px;
}

.product-hero .product-bullet .bullet-row p {
    font-size: 22px;
}

.product-hero .product-bullet .bullet-row strong {
    color: #123d48;
    font-size: 22px;
}

.button-container {
    display: flex;
    gap: 50px;
    text-align: center;
    justify-content: center;
    margin-top: 45px;
}

table {
    width: 85%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 20px;
}

th,
td {
    border: 1px solid #000;
    padding: 15px;
    font-family: 'General Sans';
    text-align: center;
    background-color: #ffffff;
}

th {
    background-color: #123d48;
    color: #d6e1a5;
    font-family: 'General Sans';
}

table a {
    color: #123d48;
    text-decoration: underline;
}

.product-blurb {
    max-width: 875px;
    margin: 0 auto;
}

.product-blurb h2 {
    text-align: left;
    color: #123d48;
    font-size: 65px;
    font-family: 'Switzer Black';
}

.product-blurb p {
    text-align: justify;
    margin-bottom: 45px;
}

.product-blurb .pretext {
    font-family: 'General Sans';
    font-size: 25px;
    letter-spacing: 0.2em;
    line-height: 1.1;
    color: #123d48;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-left: 65px;
}

.product-bullet {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 5px;
    margin-left: 50px;
    justify-content: center;
}

.product-bullet .bullet-row {
    align-items: flex-start;
    margin-left: 75px;
    margin-bottom: 0px;
}

.product-bullet .bullet-row p {
    margin-bottom: 10px;
}

.product-cta {
    text-align: center;
    margin-bottom: 45px;
}

.product-cta p {
    margin-bottom: 6px;
    text-align: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: center;
}

.contact-grid {
    grid-column: 1 / 6;
    grid-row: 1;
    /* no align-self or margin-top */
    transform: translateY(200px);
    /* move down 200px without growing the form */
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    row-gap: 45px;
    position: relative;
    z-index: 2;
}


.contact-card {
    background-color: #123d48;
    border-radius: 9px;
    padding: 70px 20px;
    color: #ffffff;
    text-align: center;
}

.contact-card h3 {
    font-size: 28px;
    text-align: center;
    color: #d6e1a5;
}

.contact-card p {
    color: #ffffff;
    text-align: center;
    overflow-wrap: break-word;
}

.contact-card a {
    color: #ffffff;
    font-weight: 400;
    text-decoration: underline;
}

.contact-form {
    grid-column: 5 / 13;
    grid-row: 1;
    background-color: #F4F0EC;
    border-radius: 9px;
    padding: 80px 60px;
    color: #000000;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-inner {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form h1 {
    color: #123d48;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Switzer Black';
}

.honeypot-field {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-row-half {
    grid-template-columns: 1fr 1fr;
}

.form-row-phone {
    grid-template-columns: 2fr 3fr;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    padding: 16px 26px;
    font-family: 'General Sans';
    font-size: 18px;
    color: #000000;
    width: 100%;
}

.contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 110px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
    font-family: 'General Sans';
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #123d48;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #123d48;
}

.form-consent label {
    font-family: 'General Sans';
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

.form-consent label a {
    color: #123d48;
    text-decoration: underline;
    font-weight: 550;
}

.form-submit {
    margin-top: 15px;
    align-self: center;
}

/*FOOTER*/
footer {
    background-color: #F4F0EC;
    min-height: 200px;
    padding: 80px 0px 50px 0px;
}

footer p {
    text-align: center;
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 30px;
}

footer a {
    font-weight: 550;
    color: #123d48;
    text-decoration: underline;
}