/* Global Styles --------------- */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--body-color);
    font-family: var(--main-font-family);
    font-weight: var(--main-font-weight);
    font-size: 1rem;
}

.container.grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-gap: 1rem;
}

.container.grid .column {
    grid-column: span var(--span);
}

@media screen and (max-width: 767px) {
    .container.grid .column {
        grid-column: span 12;
    }
}

.container.grid .column > *:first-child {
    margin-top: 0;
}

.container.grid .column > *:last-child {
    margin-bottom: 0;
}

section {
    background-image: var(--bg_image);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-color);
    color: var(--text-color);
}

section.inset {
    margin-right: var(--container-padding);
    margin-left: var(--container-padding);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    padding: var(--spacing-16);
}

@media screen and (max-width: 767px) {
    section.inset {
        padding: var(--spacing-6);
    }
}

[data-alignment=left] {
    text-align: left;
}
  
[data-alignment=center] {
    text-align: center;
}
  
[data-alignment=right] {
    text-align: right;
}

[data-alignment=justify] {
  text-align: justify;
}

[data-color-mode="light"] {
    --text-color: var(--dk-green);
    --bg-color: var(--lt-green);
    --button-bg-color: var(--dk-green);
    --button-text-color: var(--lt-green);  
    color: var(--text-color);
    background-color:  var(--bg-color);
}

[data-color-mode="dark"] {
    --text-color: var(--white);
    --bg-color: var(--med-green);
    --button-bg-color: var(--white);
    --button-text-color: var(--med-green);
    color: var(--text-color);
    background-color:  var(--bg-color);
}

a {
    color: currentColor;
    text-decoration: none;
}

.button {
    display: inline-flex;
    padding: 0.7rem 1.2rem;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    color: var(--button-text-color);
    cursor: pointer;
    border: 1px solid var(--button-bg-color);
    border-radius: 5px;
    font-weight: var(--main-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--button-bg-color);
    margin-top: 1.2rem;
    transition: 0.2s ease;
}

.button:hover {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

h1 + .button,
h2 + .button,
h3 + .button {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    line-height: 1.2;
    margin: 0 0 0.5em 0;
}

h1 {
    font-size: var(--text-3xl);
}

h2 {
    font-size: var(--text-2xl);
}

h3 {
    font-size: var(--text-ml);
    margin-bottom: 0.75em;
}

* + h3 {
    margin-top: 1.2em;
}

.eyebrow {
    text-transform: uppercase;
    font-size: var(--text-3xs);
    letter-spacing: 0.04em;
    margin-bottom: 0.75em;
}

p {
    color: var(--body-color);
    font-size: var(--text-xs);
    line-height: 1.4;
    margin: 0 0 1.25em 0;
}

ul {
    text-align: left;
}

ul li > p {
    margin-bottom: 0.25em;
}

.txt-col-2 {
    columns: 2;
    margin: 2rem 0;
}

.txt-col-2 ul {
    margin: 0;
}

.footnote {
    font-size: 0.7em;
    line-height: 1.5;
    display: inline-block;
}

hr {
    margin-block-start: 2em;
    margin-block-end: 2em;
}

hr:first-child {
    margin-top: 0;
}

hr:last-child {
    margin-bottom: 0;
}

img,
svg {
    max-width: 100%;
}

p + figure:not(:last-child) {
    margin: 2.5rem 0;
}

figure[data-ratio="4/3"] {
    aspect-ratio: 4 / 3;
}

figure[data-ratio="5/4"] {
    aspect-ratio: 5 / 4;
}

figure[data-ratio="2/3"] {
    aspect-ratio: 2 / 3;
}

figure[data-ratio] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Fade In --------------- */

.fade-in .column > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-in-out;
}

.fade-in .column > *.fade-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.hero.fade-in .column > * {
    animation-duration: 2s;
    animation-name: fadeIn;
    animation-direction: forwards;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Split sections --------------- */

.split-img-rt,
.split-img-lt {
    min-height: 100vh;
    display: flex;
}


.split-img-rt .grid.container,
.split-img-lt .grid.container {
    padding: 0;
    gap: 0;
}

.split-img-rt .column:last-child img,
.split-img-lt .column:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .split-img-rt .column:first-child,
    .split-img-lt .column:last-child {
        padding: var(--spacing-10);
        padding-bottom: var(--spacing-12);
    }
}

@media screen and (min-width: 768px) {
    .split-img-rt .column:first-child,
    .split-img-lt .column:last-child {
        padding: var(--spacing-20);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .split-img-rt .column:last-child,
    .split-img-lt .column:first-child {
        position: relative;
    }

    .split-img-rt .column:last-child figure,
    .split-img-lt .column:first-child figure {
        position: absolute;
        inset: 0;
        margin: 0;
    }
}
  
  
/* Section Paddings --------------- */

.sh-large {
    padding-bottom: var(--spacing-24);
    padding-top: var(--spacing-24);
}

@media screen and (max-width: 767px) {
    .sh-large {
        padding-bottom: var(--spacing-10);
        padding-top: var(--spacing-10);
    }
}


/* Header --------------- */

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 20px 0;
}

.logo {
    max-width: 20rem;
}

.logo svg {
    width: 100%;
    height: auto;
    color: var(--white);
}


/* Info Boxes --------------- */

.info-boxes .grid.col-2,
.info-boxes .grid.col-3 {
    margin: 40px 0;
}

/* Pricing */
@media screen and (min-width: 768px) {
    .info-boxes.pricing .grid.col-3 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }    
}

.pricing .grid-item {
    display: flex;
    flex-direction: column;
}

.pricing .grid-item a {
    margin-top: auto;
}

.pricing .grid-item p:first-child {
    font-size: 2.4rem;
}

.pricing .foonote {
    max-width: 31rem;
    margin: 2rem auto 0 auto;
}


/* Sticky Columns --------------- */

@media screen and (min-width: 768px) {
    .sticky-col-rt .container.grid {
        align-items: flex-start;
    }

    .sticky-col-rt .container.grid > .column:first-child {
        position: sticky;
        top: 40px;
    }
}

footer.footer .logo-icon {
    max-width: 150px;
    margin: 0 auto 40px auto;
}