/* Elements & Resets */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

p {
    line-height: 1.5;
}

a,
a:hover,
a:visited,
a:active {
    color: inherit;
    text-decoration: none !important;
}

img {
    max-width: 100%;
}

ul,
ol {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}

ol {
    list-style-type: decimal;
}

li {
    display: list-item;
    text-align: match-parent;
}

header ol,
header ul,
footer ol,
footer ul {
    list-style: none;
    padding-inline-start: 0px;
}

em {
    font-style: italic;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
}

/* --- Wrappers --- */

.site-wrapper {
    display: block;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.block-padding {
    padding: clamp(var(--pad-1), 6vw, var(--pad-3));
}

.padding-botton-0 {
    padding-bottom: 0 !important;
}

.block-padding-header {
    padding: clamp(var(--pad-1), 6vw, var(--pad-1)) clamp(var(--pad-1), 6vw, var(--pad-3));
}

.block-padding-footer {
    padding: clamp(var(--pad-1), 6vw, var(--pad-2)) clamp(var(--pad-1), 6vw, var(--pad-3));
}

.padding-interior {
    padding: clamp(var(--pad-1-m), 6vw, 45px) clamp(var(--pad-1-m), 6vw, var(--pad-0-d));
}

/* --- Stacks --- */

.stack-xtra-xtra-small>*+* {
    margin-block-start: 0.5rem;
}

.stack-xtra-small>*+* {
    margin-block-start: 0.75rem;
}

.stack-small>*+* {
    margin-block-start: 1rem;
}

.stack-slim-fit>*+* {
    margin-block-start: 1.5rem;
}

.stack>*+* {
    margin-block-start: 2rem;
}

.stack-medium>*+* {
    margin-block-start: 3rem;
}

.stack-large>*+* {
    margin-block-start: 4rem;
}

.stack-xtra-large>*+* {
    margin-block-start: 6rem;
}

.stack-xtra-xtra-large>*+* {
    margin-block-start: 8rem;
}

.stack-align-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stack-align-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* --- Max Content --- */

.max-240 {
    max-width: 240px;
}

.max-320 {
    max-width: 320px;
}

.max-360 {
    max-width: 360px;
}

.max-420 {
    max-width: 420px;
}

.max-480 {
    max-width: 480px;
}

.max-640 {
    max-width: 640px;
}

.max-720 {
    max-width: 720px;
}

.max-800 {
    max-width: 800px;
}

.max-960 {
    max-width: 960px;
}

.max-1080 {
    max-width: 1080px;
}

.max-1280 {
    max-width: 1280px;
}

.max-1440 {
    max-width: 1440px;
}

.max-90vw {
    max-width: 90vw;
}

.max-40vw {
    max-width: 40vw;
}

.max-80pct {
    max-width: 80%;
}

/* --- Aspect Ratios --- */

.aspect-1w1h {
    aspect-ratio: 1/1;
    max-width: 100%;
}

.aspect-2w1h {
    aspect-ratio: 2/1;
    max-width: 100%;
}

.aspect-3w-1h {
    aspect-ratio: 3/1;
    max-width: 100%;
}

.aspect-3w2h {
    aspect-ratio: 3/2;
    max-width: 100%;
}

.aspect-4w3h {
    aspect-ratio: 4/3;
    max-width: 100%;
}

.aspect-5w2h {
    aspect-ratio: 5/2;
    max-width: 100%;
}

.aspect-5w3h {
    aspect-ratio: 5/3;
    max-width: 100%;
}

.aspect-6w5h {
    aspect-ratio: 6/5;
    max-width: 100%;
}

.aspect-9w8h {
    aspect-ratio: 9/8;
    max-width: 100%;
}

.aspect-9w5h {
    aspect-ratio: 9/5;
    width: 100%;
}

.aspect-16w9h {
    aspect-ratio: 16/9;
    max-width: 100%;
}

/* Auxilary Classes */

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.bg-contain {
    background-size: contain;
}

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

/* Align Content */

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

.align-items-center {
    display: flex;
    align-items: center;
}

.align-items-end {
    display: flex;
    align-items: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.col-gap-2rem {
    column-gap: 2rem !important;
}

.col-gap-3rem {
    column-gap: 3rem !important;
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-2rem {
    row-gap: 2rem !important;
}

.row-gap-3rem {
    row-gap: 3rem !important;
}

.col-gap-3pct {
    column-gap: 3% !important;
}

.gap-2rem {
    gap: 2rem !important;
}

.gap-3rem {
    gap: 3rem !important;
}

.rotate-45deg {
    transform: rotate(45deg);
}

.rotate-180deg {
    transform: rotate(180deg);
}

.flex-align-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.flex-0-0-auto {
    flex: 0 0 auto !important;
    max-width: 100%;
}

.flex-1 {
    flex: 1;
    max-width: 100%;
}

.flex-1-0-auto {
    flex: 1 0 auto !important;
    max-width: 100%;
}

.flex-1-0-100pct {
    flex: 1 0 100% !important;
    max-width: 100%;
}

.self-center {
    margin-left: auto;
    margin-right: auto;
}

.margin-0 {
    margin: 0 !important;
}

/* Positioning */

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-center-through-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.position-center-through-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.position-top-left {
    top: 0;
    left: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-10 {
    z-index: 10;
}

.z-index-100 {
    z-index: 100;
}

.z-index-1000 {
    z-index: 1000;
}

.z-index-10000 {
    z-index: 10000;
}

.z-index-100000 {
    z-index: 100000;
}

.max-content {
    width: max-content;
}

.max-90pct {
    max-width: 90%;
}

.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.opacity-70 {
    opacity: 0.7;
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.height-50pct {
    height: 50%;
}

.height-100pct {
    height: 100%;
}

.width-100pct {
    width: 100%;
}

/* Margin Fix */

.margin-fix-1 {
    transform: translateY(-10px);
    margin-bottom: -4px;
}

.margin-fix-2 {
    transform: translateY(-4px);
    margin-bottom: -4px;
}

.margin-fix-3 {
    transform: translateY(-4px);
    margin-bottom: -10px;
}

.optimize-baseline {
    margin-bottom: -2%;
}

/* Skew */

.skew15deg {
    transform: skewX(15deg);
}

.skew-15deg {
    transform: skewX(-15deg);
}

.skew25deg {
    transform: skewX(25deg);
}

.skew-25deg {
    transform: skewX(-25deg);
}

.skew20deg {
    transform: skewX(20deg);
}

.skew-20deg {
    transform: skewX(-20deg);
}

/* Padding Adjust */

.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.padding-top-0 {
    padding-top: 0 !important;
}

.padding-top-10px {
    padding-top: 10px !important;
}

.padding-10px {
    padding: 10px 14px 12px 14px;
}

.padding-05rem {
    padding: 0.5rem;
}

.padding-1rem {
    padding: 1rem !important;
}

.padding-2rem {
    padding: 2rem;
}

.padding-left-14px {
    padding-left: 14px !important;
}

.margin-bottom-2rem {
    margin-bottom: 2rem !important;
}

/* Overflow Hidden */

.overflow-hidden {
    overflow: hidden;
}

/* --- Flexbox --- */

.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex-wrapper.two-columns {
    column-gap: 10%;
    row-gap: clamp(1rem, 6vw, 6rem);
}

.flex-wrapper.two-columns .flex-item {
    flex: 1 1 45%;
    min-width: 288px;
}

.flex-wrapper.two-columns.flex-ratio-1-2 .flex-item:first-of-type {
    flex: 1 1 30%;
}

.flex-wrapper.two-columns.flex-ratio-1-2 .flex-item:last-of-type {
    flex: 1 1 60%;
}

.flex-wrapper.two-columns.flex-ratio-2-1 .flex-item:first-of-type {
    flex: 1 1 60%;
}

.flex-wrapper.two-columns.flex-ratio-2-1 .flex-item:last-of-type {
    flex: 1 1 30%;
}



.flex-wrapper.three-columns {
    column-gap: 5%;
    row-gap: clamp(3rem, 6vw, 6rem);
}

.flex-wrapper.three-columns .flex-item {
    flex: 0 0 30%;
    min-width: 288px;
}

.flex-wrapper.four-columns {
    column-gap: 7%;
    row-gap: clamp(3rem, 6vw, 6rem);
    justify-content: space-evenly;
}

.flex-wrapper.four-columns .flex-item {
    flex: 0 0 17.5%;
    min-width: 230px;
}

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

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

.flex-direction-row {
    flex-direction: row;
}

.flex-direction-row-reverse {
    flex-direction: row-reverse;
}

.flex-item.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-50 {
    flex: 0 0 50%;
}

.interior-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.interior-flex-item {
    flex: 1 0 280px;
    max-width: 100%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1-0-320 {
    flex: 1 0 320px;
    max-width: 100%;
}

.flex-0-0-400 {
    flex: 0 0 400px;
    max-width: 100%;
}

.col-gap-12px {
    column-gap: 12px;
}

.col-gap-1rem {
    column-gap: 1rem;
}

.col-gap-4rem {
    column-gap: 4rem;
}

.col-gap-6pct {
    column-gap: 6% !important;
}

.col-gap-8pct {
    column-gap: 8%;
}

.col-gap-10pct {
    column-gap: 10%;
}

.row-gap-1rem {
    row-gap: 1rem !important;
}

.flexslider {
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

/* Grid Classes */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 10%;
    row-gap: 3rem;
}

.grid-item {
    grid-column: span 1;
}

.grid-container.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(clamp(270px, 38vw, 480px), 1fr));
    column-gap: 10%;
    row-gap: clamp(6rem, 6vw, 6rem);
}

.grid-container.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 5%;
    row-gap: clamp(6rem, 6vw, 6rem);
}

.grid-container.four-columns {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    column-gap: 10%;
    row-gap: clamp(6rem, 6vw, 6rem);
}

/* Text Alignment */

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Positioning */



.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.absolute-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.absolute-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.margin-left-auto {
    margin-left: auto;
}

/* --- Type Color Classes --- */

.clr-white {
    color: white !important;
}

.clr-black {
    color: black !important;
}

.weight-900 {
    font-weight: 900;
}

.weight-700 {
    font-weight: 700;
}

.weight-500 {
    font-weight: 500;
}

.weight-300 {
    font-weight: 300;
}

.weight-100 {
    font-weight: 100;
}

/* --- Background Color Classes --- */

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

.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

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

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.cursor-pointer {
    cursor: pointer;
}

/* Rule */

div.rule {
    width: 150px;
    height: 3px;
    background-color: black;
    margin-top: 0.25rem;
}

div.rule.short {
    width: 80px;
}

div.rule.full-width {
    width: 100%;
}

hr.full-width {
    border: none;
    height: 3px;
}

/* IMG / Video */

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

/* MISC */

.fill-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

strong {
    font-weight: 500;
}

.shaded {
    background-color: rgba(0, 0, 0, 0.667);
    background-blend-mode: multiply;
}

.font-weight-thin {
    font-weight: 300;
}

.dropcard-margin {
    margin-top: calc(clamp(65px, 14vw, 300px) * -1);
}

.min-height-300 {
    min-height: 300px !important;
}

.min-height-500 {
    min-height: 500px !important;
}

.border-radius-1rem {
    border-radius: 1rem;
}

.circle-bg {
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--graphite);
}

.rounded-corners {
    border-radius: 1rem;
}

.indent-8px {
    transform: translateX(8px);
}

.indent-12px {
    transform: translateX(12px);
}

.float-right {
    float: right;
}