/* Overused Grotesk Black Font */
@font-face {
    font-family: "Overused Grotesk";
    src: url("fonts/OverusedGrotesk-VF.woff2") format("woff2-variations");
    font-weight: 400 700 900;
    font-display: swap;
}

/* NORMALIZE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* NORMALIZE */

:root {
    --font-family: "Overused Grotesk";
    --yellow: #ffff04;
    --blue: #021e32;
    --purple: #946fc7;
    --text-color: #f1f1f1;
    --gutter: 4vw;

    @media (min-width: 1025px) {
        --gutter: 48px;
    }
}

body {
    background: var(--blue);
    color: var(--text-color);
    font: 900 normal 22px/1.3 var(--font-family), -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
        helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
    overscroll-behavior-x: none;
}

.section {
    min-height: 100vh;
    position: relative;
}

/* ============================================
   Site Header & Footer (Fixed)
   ============================================ */
.site-header-footer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 100;
}

.top-statement__header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(24px, calc(20.705882px + 0.784314vw), 32px) var(--gutter);
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-20px);
}

.top-statement__footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(24px, calc(20.705882px + 0.784314vw), 32px) var(--gutter);
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
}

/* ============================================
   Top Statement Section
   ============================================ */
.top-statement {
    min-height: 400vh;
    overflow: hidden;
    position: relative;
}

.top-statement .pin-height {
    height: 400vh;
}

.top-statement .container {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-statement__logo {
    font: 700 normal 16px / 1.2 var(--font-family), sans-serif;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.top-statement__logo:hover {
    opacity: 0.7;
}

.top-statement__date {
    font: 400 normal 16px / 1.2 var(--font-family), sans-serif;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-color);
}

.top-statement__time {
    font: 400 normal 16px / 1.2 var(--font-family), sans-serif;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-color);
}

.top-statement__contact {
    font: 400 normal 16px / 1.2 var(--font-family), sans-serif;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.top-statement__contact:hover {
    opacity: 0.7;
}

.top-statement .statement-text {
    font: 900 normal clamp(54px, calc(10.352941px + 10.392157vw), 160px) / 0.775 var(--font-family), sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 15;
    opacity: 0;
    transform: translateY(20px);

    .chars {
        z-index: 0;
    }
}

.top-statement .yellow-text {
    color: var(--yellow);
}

.top-statement .asterisk {
    display: inline-block;
    position: relative;
    vertical-align: top;
    line-height: 0;
    width: 0.45em;
    margin-top: 0.05em;
    height: 0.45em;
    z-index: 1;
}

.top-statement .asterisk svg {
    display: block;
    width: 0.45em;
    height: 0.45em;
}

.top-statement__scroll-label {
    font: 400 normal 16px / 1.2 var(--font-family), sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text-color);
}

.top-statement__arrow {
    position: relative;
    width: 14px;
    height: 32px;
    overflow: visible;
}

.top-statement__arrow svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(-20px);
    animation: arrowFadeDown 2s infinite;
}

.top-statement__arrow svg:nth-child(2) {
    animation-delay: 1s;
}

@keyframes arrowFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .top-statement__date,
    .top-statement__time {
        display: none;
    }

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

/* ============================================
   MWG 013 - Horizontal Scrolling Text
   ============================================ */
.mwg_effect013 {
    height: auto;
    min-height: auto;
    padding-top: 10vw;
    padding-bottom: 40vh;
    overflow: hidden;
    margin-top: -100vh;
}
.mwg_effect013 .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    font: 900 normal clamp(12px, 0.9vw, 100px) / normal var(--font-family), sans-serif;
    text-transform: uppercase;
    z-index: 10;
}
.mwg_effect013 .header .left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mwg_effect013 .header .left img {
    width: 3.5vw;
    height: 3.5vw;
    object-fit: cover;
    display: block;
    border-radius: 100%;
    animation: rotateInfinite 6s linear infinite;
}
.mwg_effect013 .header .right {
    text-align: right;
}
.mwg_effect013 .inner {
    transform: rotate(-10deg);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.mwg_effect013 .container {
    display: flex;
    font-size: clamp(60px, calc(18.823529px + 9.803922vw), 160px);
    font-family: var(--font-family), sans-serif;
    text-transform: uppercase;
    will-change: transform;
    white-space: nowrap;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   MWG 020 - Mouse Move Image Trail
   ============================================ */
.mwg_effect020 {
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 100px, #000 calc(100% - 100px), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 100px, #000 calc(100% - 100px), transparent 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.mwg_effect020 .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: calc(760px + var(--gutter) * 2);
    margin-inline: auto;
    width: 100%;
    padding: 0 var(--gutter);
    left: 0;
    right: 0;
    position: absolute;
    gap: clamp(24px, calc(14.204082px + 2.332362vw), 48px);
    text-align: center;
    z-index: 10;
}

.mwg_effect020 img {
    width: 15vw;
    height: 15vw;
    position: absolute;
    object-fit: cover;
    border-radius: 4%;
    z-index: 5;
}

.mwg_effect020 .title {
    text-transform: uppercase;
    font: 900 normal clamp(40px, calc(23.529412px + 3.921569vw), 80px) / 0.8 var(--font-family), sans-serif;

    strong {
        color: var(--yellow);
        font-weight: inherit;
    }
}

.mwg_effect020 .text {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family), sans-serif;
    text-wrap: balance;
}

.mwg_effect020 .medias {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}

.mwg_effect020 .medias img {
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

.mwg_effect020 .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: auto;
}

.mwg_effect020 .btn-icon-link {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    color: #a29a65;
    font-size: 1em;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
}

.mwg_effect020 .btn-icon-icon {
    z-index: 1;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 17px;
    display: flex;
    position: relative;
}

.mwg_effect020 .btn-icon-icon__bg {
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.mwg_effect020 .btn-icon-icon__wrap {
    color: #021e32;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.mwg_effect020 .btn-icon-icon__list {
    flex: none;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    display: flex;
}

.mwg_effect020 .btn-icon-icon__arrow {
    flex: none;
    width: 17px;
    height: 17px;
    height: 100%;
}

.mwg_effect020 .btn-icon-content {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    background-color: var(--yellow);
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    padding: 0.6125em 0.75em;
    display: flex;
    position: relative;
    overflow: hidden;
}

.mwg_effect020 .btn-icon-content__text {
    color: #021e32 !important;
    font: 400 normal clamp(14px, calc(13.176471px + 0.196078vw), 16px) / 1.2em var(--font-family), -apple-system,
        BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto,
        arial, sans-serif;
    text-transform: uppercase;
}

.mwg_effect020 .btn-icon-content__mask {
    z-index: 1;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.mwg_effect020 .btn-icon-content__bg {
    z-index: 0;
    background-color: #946fc7;
    width: 120%;
    height: 100%;
    position: absolute;
    bottom: 0%;
    left: -10%;
    transform: translate(0, 175%) rotate(15deg);
}

/* Global attribute to easily control easing and timing of all targetted elements */
.mwg_effect020 [data-button-anim-target] {
    transition: all 0.525s cubic-bezier(0.625, 0.05, 0, 1);
}

/* Fake a duplicate text element using text shadow without blur  */
/* We save the distance in a variable for easy use in the CSS animation */
.mwg_effect020 .btn-icon-content__text {
    --text-duplicate-distance: 1.5em;
    text-shadow: 0px var(--text-duplicate-distance) currentColor;
}

/* Only apply hover animations if they are actually not supported */
@media (hover: hover) and (pointer: fine) {
    .mwg_effect020 .btn-icon-link:hover .btn-icon-content__text {
        color: #fff !important;
        transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    }

    .mwg_effect020 .btn-icon-link:hover .btn-icon-icon__bg {
        transform: rotate(90deg);
    }

    .mwg_effect020 .btn-icon-link:hover .btn-icon-icon__arrow {
        transform: translate(200%, 0px);
    }

    .mwg_effect020 .btn-icon-link:hover .btn-icon-content__bg {
        transform: translate(0px, 0%) rotate(0deg);
    }
}

/* ============================================
   MWG 007 - Scroll Rotating Circles
   ============================================ */

.mwg_effect007 {
    overflow: hidden;
    position: relative;
}

.mwg_effect007 .pin-height {
    height: 400vh;
}
.mwg_effect007 .title {
    color: var(--yellow) !important;
    text-transform: uppercase;
    font: 900 normal clamp(40px, calc(23.529412px + 3.921569vw), 80px) / 0.8em var(--font-family), sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: calc(760px + var(--gutter) * 2);
    margin-inline: auto;
    padding-inline: var(--gutter);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.mwg_effect007 .container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.mwg_effect007 .circle {
    width: 300%;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    left: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.mwg_effect007 .card {
    width: clamp(300px, calc(250.588235px + 11.764706vw), 420px);
    aspect-ratio: 0.74;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    overflow: hidden;
    pointer-events: none;
}
.mwg_effect007 .card__title {
    font: 400 normal clamp(14px, calc(13.176471px + 0.196078vw), 16px) / 1.2em var(--font-family), -apple-system,
        BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto,
        arial, sans-serif;
    text-transform: uppercase;
    border-top: 1px solid;
    padding-top: 16px;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.mwg_effect007 .card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    flex: 1;
    margin-bottom: 16px;
    min-height: 0;
}
.mwg_effect007 .card__grid a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
}
.mwg_effect007 .card__grid img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mwg_effect007 .card__caption {
    flex-shrink: 0;
}
.mwg_effect007 .card__number {
    font: 400 normal clamp(14px, calc(13.176471px + 0.196078vw), 16px) / 1.2em var(--font-family), -apple-system,
        BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto,
        arial, sans-serif;
    border-bottom: 1px solid;
    padding-bottom: 8px;
    width: 100%;
    text-align: right;
}

/* Theme: Yellow */
.mwg_effect007 .theme-yellow .card {
    background: #ffff04;
}
.mwg_effect007 .theme-yellow .card__title,
.mwg_effect007 .theme-yellow .card__number {
    color: #021e32;
    border-color: #021e32;
}

/* Theme: Purple */
.mwg_effect007 .theme-purple .card {
    background: #946fc7;
}
.mwg_effect007 .theme-purple .card__title,
.mwg_effect007 .theme-purple .card__number {
    color: #fff;
    border-color: #fff;
}

/* Theme: White */
.mwg_effect007 .theme-white .card {
    background: #fff;
}
.mwg_effect007 .theme-white .card__title,
.mwg_effect007 .theme-white .card__number {
    color: #021e32;
    border-color: #021e32;
}

/* Theme: Green */
.mwg_effect007 .theme-green .card {
    background: #3c6a3d;
}
.mwg_effect007 .theme-green .card__title,
.mwg_effect007 .theme-green .card__number {
    color: #fff;
    border-color: #fff;
}

/* Theme: Tan */
.mwg_effect007 .theme-tan .card {
    background: #c79d6f;
}
.mwg_effect007 .theme-tan .card__title,
.mwg_effect007 .theme-tan .card__number {
    color: #021e32;
    border-color: #021e32;
}

/* ============================================
   MWG 026 - Draggable Grid
   ============================================ */
.mwg_effect026 {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    background: var(--yellow);
}
.mwg_effect026 .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: max-content;
    will-change: transform;
    pointer-events: auto;
}

.mwg_effect026 .content {
    pointer-events: none;
    display: grid;
    width: max-content;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    padding: 24px;
}
.mwg_effect026 .media {
    width: 338px;
    height: 500px;
    user-select: none;
    pointer-events: auto;
    transition: transform 0.3s ease;

    &:nth-child(5n + 2) {
        transform: translateY(-46px);
    }

    &:nth-child(5n + 3) {
        transform: translateY(-500px);
    }

    &:nth-child(5n + 4) {
        transform: translateY(-230px);
    }

    &:nth-child(5n + 5) {
        transform: translateY(-135px);
    }

    @media (hover: hover) {
        &:hover {
            transform: scale(1.05);

            &:nth-child(5n + 2) {
                transform: translateY(-46px) scale(1.05);
            }

            &:nth-child(5n + 3) {
                transform: translateY(-500px) scale(1.05);
            }

            &:nth-child(5n + 4) {
                transform: translateY(-230px) scale(1.05);
            }

            &:nth-child(5n + 5) {
                transform: translateY(-135px) scale(1.05);
            }
        }
    }
}

/* Testimonial Card Styles */
.mwg_effect026 .testimonial-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px;
}

.mwg_effect026 .testimonial-card__speechmark {
    width: 20px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 20 18'%3E%3Cpath fill='%23000000' d='M3 11h4v7H0v-7L5 0h3L3 11Zm12 0h4v7h-7v-7l5-11h3l-5 11Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.mwg_effect026 .testimonial-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 24px;
    border-bottom: 1px solid;
}

.mwg_effect026 .testimonial-card__text {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
    margin: 0;
    flex: 1;
}

.mwg_effect026 .testimonial-card__logo {
    position: absolute;
    bottom: 24px;
    right: 0;
    max-width: 120px;
}

.mwg_effect026 .testimonial-card__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.mwg_effect026 .testimonial-card__author {
    padding-top: 24px;
    flex-shrink: 0;
}

.mwg_effect026 .testimonial-card__author-name {
    font: 900 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
}

.mwg_effect026 .testimonial-card__author-company {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
}

/* Theme: White */
.mwg_effect026 .theme-white .testimonial-card {
    background: #fff;
}

.mwg_effect026 .theme-white .testimonial-card__speechmark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 20 18'%3E%3Cpath fill='%23000000' d='M3 11h4v7H0v-7L5 0h3L3 11Zm12 0h4v7h-7v-7l5-11h3l-5 11Z'/%3E%3C/svg%3E");
}

.mwg_effect026 .theme-white .testimonial-card__text {
    color: #021e32 !important;
}

.mwg_effect026 .theme-white .testimonial-card__content {
    border-color: #021e32 !important;
}

.mwg_effect026 .theme-white .testimonial-card__author-name,
.mwg_effect026 .theme-white .testimonial-card__author-company {
    color: #021e32 !important;
}

/* Theme: Green */
.mwg_effect026 .theme-green .testimonial-card {
    background: #3c6a3d;
}

.mwg_effect026 .theme-green .testimonial-card__speechmark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 20 18'%3E%3Cpath fill='%23ffffff' d='M3 11h4v7H0v-7L5 0h3L3 11Zm12 0h4v7h-7v-7l5-11h3l-5 11Z'/%3E%3C/svg%3E");
}

.mwg_effect026 .theme-green .testimonial-card__text {
    color: #fff;
}

.mwg_effect026 .theme-green .testimonial-card__content {
    border-color: #fff;
}

.mwg_effect026 .theme-green .testimonial-card__author-name,
.mwg_effect026 .theme-green .testimonial-card__author-company {
    color: #fff;
}

/* Theme: Blue */
.mwg_effect026 .theme-blue .testimonial-card {
    background: #021e32;
}

.mwg_effect026 .theme-blue .testimonial-card__speechmark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 20 18'%3E%3Cpath fill='%23FFFF04' d='M3 11h4v7H0v-7L5 0h3L3 11Zm12 0h4v7h-7v-7l5-11h3l-5 11Z'/%3E%3C/svg%3E");
}

.mwg_effect026 .theme-blue .testimonial-card__text {
    color: var(--yellow);
}

.mwg_effect026 .theme-blue .testimonial-card__content {
    border-color: var(--yellow);
}

.mwg_effect026 .theme-blue .testimonial-card__author-name,
.mwg_effect026 .theme-blue .testimonial-card__author-company {
    color: var(--yellow);
}

/* Theme: Purple */
.mwg_effect026 .theme-purple .testimonial-card {
    background: #946fc7;
}

.mwg_effect026 .theme-purple .testimonial-card__speechmark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 20 18'%3E%3Cpath fill='%23ffffff' d='M3 11h4v7H0v-7L5 0h3L3 11Zm12 0h4v7h-7v-7l5-11h3l-5 11Z'/%3E%3C/svg%3E");
}

.mwg_effect026 .theme-purple .testimonial-card__text {
    color: #fff;
}

.mwg_effect026 .theme-purple .testimonial-card__content {
    border-color: #fff;
}

.mwg_effect026 .theme-purple .testimonial-card__author-name,
.mwg_effect026 .theme-purple .testimonial-card__author-company {
    color: #fff;
}

/* ============================================
   Sticky Content Section
   ============================================ */
.sticky-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.has-loaded .sticky-content {
    opacity: 1 !important;
}

.sticky-content .pin-height {
    height: 400vh;
}
.sticky-content .container {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.sticky-content .sticky-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #fff;
    min-height: 70vh;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 0 5vw;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}
.sticky-content .sticky-text h2 {
    font: 900 normal clamp(40px, calc(23.529412px + 3.921569vw), 80px) / 0.8em var(--font-family);
    margin-bottom: 32px;
    text-transform: uppercase;

    strong {
        color: var(--purple);
        font-weight: inherit;
    }
}
.sticky-content .sticky-text p {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
    max-width: 344px;
    margin-inline: auto;
}
.sticky-content .content-wrapper {
    background: transparent
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' fill='none' viewBox='0 0 17 17'%3E%3Cpath stroke='%23FFFF04' d='m16.354 8-8 8m0 0-8-8m8 8V0'/%3E%3C/svg%3E")
        no-repeat center bottom / 17px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 0 5vw;
    min-height: 400px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-content .content-item {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    opacity: 0;
    will-change: opacity, transform;
    color: #f1f1f1;
    visibility: visible;
    text-align: center;
}
.sticky-content .content-item h3 {
    color: var(--yellow) !important;
    font: 900 normal clamp(28px, calc(6.588235px + 5.098039vw), 80px) / 0.8em var(--font-family);
    margin-bottom: clamp(16px, calc(9.411765px + 1.568627vw), 32px);
    text-transform: uppercase;
}
.sticky-content .content-item p {
    font: 400 normal clamp(16px, calc(14.352941px + 0.392157vw), 20px) / 1.2em var(--font-family);
    max-width: 344px;
    margin-inline: auto;
}

/* ============================================
   Growing Title Section
   ============================================ */
.growing-title .pin-height {
    height: 200vh;
}
.growing-title .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.growing-title .title {
    font: 900 normal clamp(60px, calc(18.823529px + 9.803922vw), 160px) / 0.8 var(--font-family);
    text-align: center;
    opacity: 0;
    transform: scale(0.5);
    will-change: opacity, transform;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    margin: 0;
}
.growing-title .paragraph {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2 var(--font-family);
    text-align: center;
    max-width: 440px;
    margin-inline: auto;
    opacity: 0;
    display: none;
    will-change: opacity;
    position: absolute;
    top: calc(50vh + 95px);
    left: 50%;
    color: #f1f1f1;
    z-index: 2;
    width: calc(100% - var(--gutter) * 2);
    text-align: center;
}

/* ============================================
   MWG 042 - Scroll Stacking Images
   ============================================ */
.mwg_effect042 .pin-height {
    height: 500vh;
}
.mwg_effect042 .container {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-inline: var(--gutter);
    position: relative;
}
.mwg_effect042 .text-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #0e2a0e;
    min-height: 70vh;
    position: absolute;
    left: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    width: calc(50% - var(--gutter));
    padding: 0 var(--gutter);
    z-index: 10;
    pointer-events: none;
    text-align: center;
}
.mwg_effect042 .text-wrapper h3 {
    font: 900 normal clamp(40px, calc(23.529412px + 3.921569vw), 80px) / 0.8em var(--font-family);
    margin-bottom: 32px;
    text-transform: uppercase;

    strong {
        color: var(--purple);
        font-weight: inherit;
    }
}
.mwg_effect042 .text-wrapper p {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
    max-width: 344px;
    margin-inline: auto;
}
.mwg_effect042 .medias {
    width: 22%;
    aspect-ratio: 0.75;
    perspective: 25vw;
    position: absolute;
    left: 75vw;
    top: 50%;
    transform: translate(-50%, -50%);
}
.mwg_effect042 .media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}

/* Hide duplicate media items on desktop */
.mwg_effect042 .media:nth-child(n + 7) {
    display: none;
}

.mwg_effect042 .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mwg_effect042 .media-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: clamp(20px, calc(15.058824px + 1.176471vw), 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.mwg_effect042 .media-content-top {
    text-align: center;
    border-top: 1px solid #fff;
    padding-top: clamp(18px, calc(12.235294px + 1.372549vw), 32px);
    color: #fff;
    font: 400 normal clamp(16px, calc(14.352941px + 0.392157vw), 20px) / 1.2em var(--font-family);
    text-transform: uppercase;
}

.mwg_effect042 .media-content-bottom {
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: clamp(18px, calc(12.235294px + 1.372549vw), 32px);
    color: #fff;
    font: 400 normal clamp(16px, calc(14.352941px + 0.392157vw), 20px) / 1.2em var(--font-family);
}

/* ============================================
   MWG 035 - Hover Expanding Rows (Accordion)
   ============================================ */
.mwg_effect035 {
    min-height: 100vh;
    height: auto;
    padding-block: clamp(100px, calc(79.411765px + 4.901961vw), 150px);
    padding-inline: var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: var(--blue); */
    position: relative;
}

.mwg_effect035__list {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mwg_effect035__item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: clamp(55px, calc(52.941176px + 0.490196vw), 60px);
    cursor: pointer;
}

.mwg_effect035__item-top {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.mwg_effect035__item-question {
    font: 400 normal clamp(18px, calc(13.882353px + 0.980392vw), 28px) / 1.2em var(--font-family);
    color: var(--text-color);
    transition: color 0.3s ease;
}

[data-accordion-status="active"] .mwg_effect035__item-question {
    color: var(--yellow) !important;
}

.mwg_effect035__item-bottom {
    transition: grid-template-rows 0.6s cubic-bezier(0.625, 0.05, 0, 1);
    grid-template-rows: 0fr;
    display: grid;
    position: relative;
    overflow: hidden;
    align-items: start;
}

[data-accordion-status="active"] .mwg_effect035__item-bottom {
    grid-template-rows: 1fr;
}

.mwg_effect035__item-bottom-wrap {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.mwg_effect035__item-bottom-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.625, 0.05, 0, 1), transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

[data-accordion-status="active"] .mwg_effect035__item-bottom-content {
    opacity: 1;
    transform: translateY(0);
}

.mwg_effect035__item-p {
    font: 400 normal clamp(16px, calc(11.058824px + 1.176471vw), 28px) / 1.2em var(--font-family);
    color: var(--text-color);
    margin: 0;
    text-align: left;
}

.mwg_effect035__item-p:not(:last-child) {
    margin-bottom: 0.75em;
}

@media (max-width: 768px) {
    .mwg_effect035__item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .mwg_effect035__item-top {
        padding: 15px;
    }
    .mwg_effect035__item-bottom {
        grid-column: 1;
    }
    .mwg_effect035__item-bottom-content {
        padding: 0 15px 15px 15px;
    }
    .mwg_effect035__item-p {
        text-align: left;
    }
}

/* ============================================
   Waitlist Form Section
   ============================================ */
.waitlist-form {
    padding-block-start: clamp(90px, calc(73.529412px + 3.921569vw), 130px);
}
.waitlist-form .container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}
.waitlist-form .left-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #fff;
    min-height: 70vh;
    width: 50%;
    padding: 0 var(--gutter);
    text-align: center;
}
.waitlist-form .left-content .title {
    color: var(--yellow) !important;
    font: 900 normal clamp(40px, calc(23.529412px + 3.921569vw), 80px) / 0.8em var(--font-family);
    margin-bottom: 32px;
    text-transform: uppercase;
}
.waitlist-form .left-content .paragraph {
    font: 400 normal clamp(18px, calc(17.176471px + 0.196078vw), 20px) / 1.2em var(--font-family);
    max-width: 344px;
    margin-inline: auto;
}
.waitlist-form .right-content {
    padding: 0 var(--gutter);
    width: 50%;
}
.waitlist-form .waitlist-form-element {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 516px;
    margin-inline: auto;
    position: relative;
    min-height: 400px;
}
.waitlist-form .waitlist-form-input-wrapper {
    position: relative;
}
.waitlist-form .waitlist-form-element input {
    font: 400 normal clamp(20px, calc(11.764706px + 1.960784vw), 40px) / normal var(--font-family);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    padding: 20px 0;
    text-align: center;
    border-radius: 0;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
}
.waitlist-form .waitlist-form-element input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-form-success {
    background: transparent
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' fill='none' viewBox='0 0 80 80'%3E%3Crect width='80' height='80' fill='%23fff' fill-opacity='.4' rx='40'/%3E%3Cpath stroke='%23FFFF04' stroke-width='3' d='m23 42.5 9.022 9.5L57 28'/%3E%3C/svg%3E")
        no-repeat center top / 80px 80px;
    font: 400 normal clamp(20px, calc(11.764706px + 1.960784vw), 40px) / 1em var(--font-family);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    position: absolute;
    padding-top: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    text-wrap: pretty;
}
.waitlist-form .waitlist-form-input-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.waitlist-form .waitlist-form-input-wrapper.is-active::after {
    transform: scaleX(1);
}

.waitlist-form .waitlist-form-element button {
    appearance: none;
    background-color: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    padding: 26px 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.waitlist-form .btn-icon-link {
    align-items: center;
    column-gap: 32px;
    color: var(--yellow) !important;
    text-decoration: none;
    display: flex;
    justify-content: center;
    text-align: center;
}

.waitlist-form .btn-icon-icon {
    z-index: 1;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
    position: relative;
}

.waitlist-form .btn-icon-icon__bg {
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.waitlist-form .btn-icon-icon__wrap {
    color: var(--yellow);
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.waitlist-form .btn-icon-icon__list {
    flex: none;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    display: flex;
}

.waitlist-form .btn-icon-icon__arrow {
    flex: none;
    width: 24px;
    height: 24px;
    height: 100%;
}

.waitlist-form .btn-icon-content {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    color: var(--yellow);
    background-color: #a29a65;
    border-radius: 0.25em;
    justify-content: flex-start;
    align-items: center;
    padding: 0.6125em 0.75em;
    display: flex;
    position: relative;
    overflow: hidden;
}

.waitlist-form .btn-icon-content__text {
    color: var(--yellow) !important;
    font-size: clamp(20px, calc(11.764706px + 1.960784vw), 40px);
    line-height: 1em;
}

.waitlist-form .btn-icon-content__mask {
    z-index: 1;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.waitlist-form .btn-icon-content__bg {
    z-index: 0;
    background-color: #302d1c;
    width: 120%;
    height: 100%;
    position: absolute;
    bottom: 0%;
    left: -10%;
    transform: translate(0, 175%) rotate(15deg);
}

/* Global attribute to easily control easing and timing of all targetted elements */
.waitlist-form [data-button-anim-target] {
    transition: transform 0.525s cubic-bezier(0.625, 0.05, 0, 1);
}

/* Fake a duplicate text element using text shadow without blur  */
/* We save the distance in a variable for easy use in the CSS animation */
.waitlist-form .btn-icon-content__text {
    --text-duplicate-distance: 1.5em;
    text-shadow: 0px var(--text-duplicate-distance) currentColor;
}

/* Only apply hover animations if they are actually not supported */
@media (hover: hover) and (pointer: fine) {
    .waitlist-form .btn-icon-link:hover .btn-icon-content__text {
        transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    }

    .waitlist-form .btn-icon-link:hover .btn-icon-icon__bg {
        transform: rotate(90deg);
    }

    .waitlist-form .btn-icon-link:hover .btn-icon-icon__arrow {
        transform: translate(200%, 0px);
    }

    .waitlist-form .btn-icon-link:hover .btn-icon-content__bg {
        transform: translate(0px, 0%) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .mwg_effect020 .medias {
        display: none;
    }

    .mwg_effect020 {
        height: auto;
        min-height: 100vh;
    }

    .mwg_effect020-marquee {
        width: 100vw;
        position: relative;
        overflow: hidden;
        margin-top: 48px;
    }

    .mwg_effect020-marquee .marquee-advanced__scroll {
        will-change: transform;
        width: 100%;
        display: flex;
        position: relative;
    }

    .mwg_effect020-marquee .marquee-advanced__collection {
        will-change: transform;
        display: flex;
        position: relative;
    }

    .mwg_effect020-marquee .marquee-advanced__item-width {
        background-color: transparent;
        border-radius: 0;
        justify-content: center;
        align-items: center;
        width: 18vw;
        height: 18vw;
        margin: 1vw;
        display: flex;
        flex-shrink: 0;
    }

    .mwg_effect020-marquee .marquee-advanced__item-width img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: relative;
        visibility: visible;
    }

    .waitlist-form .container {
        flex-direction: column;
        padding: 5vw;
    }
    .waitlist-form .left-content {
        width: 100%;
        padding: 0;
        border-right: 0 none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 3em;
        margin-bottom: 3em;
        min-height: auto;
    }
    .waitlist-form .right-content {
        width: 100%;
        padding: 0;
    }
}

/* ============================================
   MWG 048 - Scroll Rotating Images
   ============================================ */
.mwg_effect048 {
    padding: 50vh 0;
    perspective: 200vw;
}
.mwg_effect048 .scroll {
    position: fixed;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
}
.mwg_effect048 .container {
    transform-style: preserve-3d;
}
.mwg_effect048 .media {
    width: 70vw;
    margin: 0 auto;
    will-change: transform;
}
.mwg_effect048 .media:not(:first-child) {
    margin-top: -16vw;
}
.mwg_effect048 .media img {
    width: 20vw;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
   MWG 009 - Scroll Text Animation
   ============================================ */
.mwg_effect009 .text {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 23%;
    min-width: 300px;
    z-index: 10;
}
.mwg_effect009 .visual {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 12vw;
    z-index: 10;
}
.mwg_effect009 .pin-height {
    height: 300vh;
}
.mwg_effect009 .container {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}
.mwg_effect009 .center {
    position: relative;
    width: 100%;
}
.mwg_effect009 .sentence {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    font: 900 normal clamp(40px, calc(-9.411765px + 11.764706vw), 160px) / 1 var(--font-family);
}
.mwg_effect009 .sentence span {
    display: inline-block;
}
.mwg_effect009 .sentence .shift-letter {
    color: var(--yellow) !important;
}
.mwg_effect009 .sentence:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mwg_effect013 {
        height: auto;
        min-height: auto;
        padding-top: 10vw;
        padding-bottom: 40vh;
    }

    .mwg_effect013 .header .left img {
        width: 30px;
        height: 30px;
    }
    .mwg_effect013 .header .right {
        display: none;
    }

    .mwg_effect007 .circle {
        width: 400%;
        left: -150%;
    }
    .mwg_effect007 .media {
        width: 55vw;
    }

    .mwg_effect026 .media {
        width: 260px;
        height: 414px;
    }

    .mwg_effect026 .testimonial-card {
        padding: 20px;
    }

    .mwg_effect026 .testimonial-card__speechmark {
        width: 18px;
        height: 16px;
        margin-bottom: 12px;
    }

    .mwg_effect026 .testimonial-card__content {
        padding-bottom: 20px;
    }

    .mwg_effect026 .testimonial-card__author {
        padding-top: 20px;
    }

    .mwg_effect026 .testimonial-card__logo {
        max-width: 100px;
        bottom: 20px;
    }

    .sticky-content .pin-height {
        height: auto;
    }

    .sticky-content .container {
        flex-direction: column;
        justify-content: center;
    }
    .sticky-content .sticky-text {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        transform: none;
        border-right: none;
        padding: var(--gutter) var(--gutter) 0;
        min-height: auto;
    }
    .sticky-content .content-wrapper {
        background-image: none;
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        padding: var(--gutter);
        min-height: auto;
        flex-direction: column;
    }
    .sticky-content .content-item {
        position: relative;
        opacity: 1;
        top: auto;
        left: auto;
        width: 100%;

        &:first-child {
            border-top: 1px solid #fff;
            margin-top: 40px;
            padding-top: 40px;
        }
    }
    .sticky-content .content-item:not(:last-child) {
        margin-bottom: 48px;
    }

    .mwg_effect042 .pin-height {
        height: auto;
    }
    .mwg_effect042 .container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        align-items: flex-start;
        overflow: clip;
    }
    .mwg_effect042 .text-wrapper {
        border-right: 0 none;
        border-bottom: 1px solid #0e2a0e;
        width: 100%;
        padding: var(--gutter);
        padding-bottom: 40px;
        margin-bottom: 40px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        min-height: auto;
    }
    .mwg_effect042 .text {
        font-size: 18px;
    }
    .mwg_effect042 .medias {
        aspect-ratio: auto;
        perspective: none;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        flex-direction: row;
        gap: 4vw;
        width: max-content;
        white-space: nowrap;
        user-select: none;
        cursor: grab;
    }
    .mwg_effect042 .medias:active {
        cursor: grabbing;
    }
    .mwg_effect042 .media {
        position: relative;
        flex-shrink: 0;
        width: 270px;
        height: auto;
        aspect-ratio: 0.75;
    }
    .mwg_effect042 .media img {
        pointer-events: none;
    }
    /* Show duplicate media items on mobile */
    .mwg_effect042 .media:nth-child(n + 7) {
        display: block;
    }

    .mwg_effect048 {
        perspective: 400vw;
    }
    .mwg_effect048 .media {
        width: 95vw;
    }
    .mwg_effect048 .media img {
        width: 36vw;
    }
}

/* ============================================
   Fancybox Customization
   ============================================ */
/* Hide counter/caption */
.fancybox__caption__counter,
.fancybox__caption__position {
    display: none !important;
}

/* Hide toolbar buttons except close */
.fancybox__toolbar__button[data-fancybox-zoom],
.fancybox__toolbar__button[data-fancybox-fullscreen],
.fancybox__toolbar__button[data-fancybox-slideshow],
.fancybox__toolbar__button[data-fancybox-thumbs] {
    display: none !important;
}

/* Hide thumbnails */
.fancybox__thumbs {
    display: none !important;
}

/* ============================================
   Pulse Animation
   ============================================ */
@keyframes pulseOpacity {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.pulse-char {
    display: inline-block;
    animation: pulseOpacity 4s ease-in-out infinite;
    animation-delay: calc(var(--char-index) * 0.05s);
}

.pulse-word {
    display: inline-block;
    white-space: nowrap;
}

.pulse-text {
    animation: pulseOpacity 4s ease-in-out infinite;
}
