/************************************************ Reset */

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


body,
input,
button,
textarea {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    /* For WebKit browsers */
    -moz-osx-font-smoothing: grayscale;
    /* For macOS Firefox */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

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 {
    border: 0;
}

a img {
    border: 0px;
}

/************************************************ Helper Styles */

textarea:focus,
input:focus {
    outline: var(--secondary);
    outline-style: auto;
    outline-offset: -2px;
}

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

a.no-decor {
    text-decoration: none;
}

.hidden,
.skip {
    display: none !important;
}

.padded {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {}

a {}

ul {
    text-shadow: none !important;
}

.centered {
    align-items: center;
}

.centered-text {
    text-align: center;
}

.dark {
    color: var(--text-color-light);
}

.container {
    max-width: 1500px;
    width: 95vw;
    margin: auto;
    box-sizing: border-box;
    z-index: 1;
}

.row {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

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

.col {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

#main {
    background-color: var(--base-light);
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

#viewport-constraint {
    overscroll-behavior: none;
    /* Prevent overscroll bounce on this container */
    max-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}

.lazy-load {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.lazy-loaded {
    opacity: 1;
}

.wide-gap {
    gap: 30px;
}

section {
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: black
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    scrollbar-color: var(--primary) black;
    scrollbar-width: thin;
}

body {
    background-color: var(--white);
    color: var(--darkGray2);
}

.decorated-heading {
    color: var(--primary);
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 7px;
    text-transform: uppercase;
    text-align: center;
}

.undecorated-heading {
    color: var(--primary);
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.decorated-heading em {
    font-style: italic;
}

.decorated-heading.secondary {
    color: var(--secondary);
}

.decorated-heading.secondary::before {
    background-image: url(/assets/lotus-dark.svg);
}

.decorated-heading::before {
    content: '';
    display: block;
    background-image: url(/assets/lotus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 65px;
    height: 65px;
    margin: 30px auto 0;
}

.paypal-form {}

.paypal-form input,
.paypal-form img {
    display: none;
}

.cta {
    background-color: var(--secondary);
    border-radius: 25px;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px !important;
    display: block;
    text-decoration: none;
    transform: translateX(0px);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.cta.xl {
    font-size: 25px;
    padding: 15px 25px !important;
}

.cta.xl::after {
    width: 30px;
    height: 15px;
}

.cta:hover {
    transform: translateX(3px);
}

.cta::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    background-image: url(/assets/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 7px;
    transform: translateX(0px);
    transition: all 0.3s ease;
}

.cta:hover::after {
    transform: translateX(5px);
}

.cta.gold {
    background-color: var(--primary);
}

.cta.misc-a {
    background-color: #568D3F;
}

.cta.misc-b {
    background-color: #98669F;
}

.cta.misc-c {
    background-color: #AA6869;
}

.cta.misc-d {
    background-color: #FFF;
    color: var(--secondary) !important;
}

.cta.misc-d::after {
    filter: invert(1);
}

.cta.transparent-dark {
    background-color: transparent;
    color: var(--secondary) !important;
}

.cta.transparent-dark::after {
    background-image: url(/assets/arrow-right-dark.svg);
}

.cta.transparent-light {
    background-color: transparent;
    color: var(--white) !important;
}

.container-decorator {
    display: block;
    width: 100px;
    height: 70px;
    margin: auto;
    background-image: url(/assets/lotus-dark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: grayscale();
    opacity: 0.5;
}

.alternating-content {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.alternating-content .part {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.alternating-content .part .body {
    flex: 0.5;
    padding: 30px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    .cta {
        width: revert;
    }
}

.alternating-content .heading {
    font-weight: 600;
    color: var(--secondary);
    font-size: 25px;
    line-height: 230%;
    border-bottom: solid 2px var(--primary);
}

.alternating-content p {
    line-height: 150%;
    font-size: 17px;
}

.alternating-content .image {
    flex: 0.5;
    position: relative;
}

.alternating-content .image img.contained {
    object-fit: contain;
}

.alternating-content .image img.hovering {
    position: absolute;
    z-index: 9;
}

.alternating-content .image img {
    width: 100%;
    /* Fill the width of the parent div */
    height: 100%;
    /* Fill the height of the parent div */
    object-fit: cover;
    /* Ensures the image covers the div while maintaining aspect ratio */
    position: absolute;
    /* Ensures the image stays within the bounds */
    top: 0;
    left: 0;
    filter: grayscale(0.4)
}

.sticky {
    position: relative;
    /* By default, it's relative */
}

.sticky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

form .success {
    font-size: 20px;
    line-height: 150%;
    color: #3c6a0b;
    background-color: #cbefa5;
    border: solid 2px #3c6a0b;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
}