@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Paytone+One&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-deep: #111713;
    --bg-forest: #1a211b;
    --surface-glass: rgba(12, 17, 15, 0.62);
    --surface-border: rgba(255, 255, 255, 0.12);
    --text-soft: rgba(255, 255, 255, 0.82);
    --accent-blue: #2cb4d4;
    --accent-gold: #d8a24c;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.28);
    /* --font-body: "Manrope", sans-serif;
    --font-display: "Cinzel", serif; */

    --font-body: "Poppins", sans-serif;
    --font-display: "Poppins", sans-serif;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(44, 180, 212, 0);
    }
    50% {
        box-shadow: 0 0 24px rgba(44, 180, 212, 0.32);
    }
}

body.jt-tribe-page *,
body.jt-tribe-page *::before,
body.jt-tribe-page *::after {
    box-sizing: border-box;
}

body.jt-tribe-page {
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--bg-deep);
    color: white;
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

body.jt-tribe-page img {
    display: block;
    max-width: 100%;
}

body.jt-tribe-page .main-container {
    overflow: hidden;
}

body.jt-tribe-page.anim-ready .reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.jt-tribe-page.anim-ready .reveal-item[data-reveal="left"] {
    transform: translateX(-38px);
}

body.jt-tribe-page.anim-ready .reveal-item[data-reveal="right"] {
    transform: translateX(38px);
}

body.jt-tribe-page.anim-ready .reveal-item[data-reveal="up"] {
    transform: translateY(28px);
}

body.jt-tribe-page.anim-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

body.jt-tribe-page h1,
body.jt-tribe-page h2,
body.jt-tribe-page h3 {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

body.jt-tribe-page p {
    color: var(--text-soft);
}

body.jt-tribe-page .first-section {
    background-image: url(./images/1.0-home-1/background.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    isolation: isolate;
}
body.jt-tribe-page .first-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 8, 10, 0.68) 0%, rgba(7, 13, 10, 0.35) 35%, rgba(10, 14, 13, 0.7) 100%);
    z-index: 0;
}
body.jt-tribe-page .first-section > * {
    position: relative;
    z-index: 1;
}
body.jt-tribe-page .first-section nav {
    width: 95%;
    margin: auto;
    padding: 0.7rem 1.25rem;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
    /* border: 1px solid var(--surface-border);
    border-radius: 999px;
    background: var(--surface-glass);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft); */
}
body.jt-tribe-page .first-section .brand-mark {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
body.jt-tribe-page .first-section .content {
    width: min(70%, 920px);
    margin: auto;
    text-align: center;
    color: white;
    padding-top: 15vh;
}
body.jt-tribe-page .first-section .content h1 {
    line-height: 0.95;
    font-size: clamp(4rem, 8vw, 7.25rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    animation: heroFadeUp 0.9s ease-out 0.15s both;
}
body.jt-tribe-page .first-section .content p {
    margin-bottom: 0.75rem;
    animation: heroFadeUp 0.85s ease-out both;
}

body.jt-tribe-page .first-section .content p:nth-of-type(1) {
    animation-delay: 0.28s;
}

body.jt-tribe-page .first-section .content p:nth-of-type(2) {
    animation-delay: 0.4s;
}
body.jt-tribe-page .first-section .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
body.jt-tribe-page .first-section .socials img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
body.jt-tribe-page .first-section .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
body.jt-tribe-page .first-section .menu-toggle:hover,
body.jt-tribe-page .first-section .menu-toggle[aria-expanded="true"] {
    background: rgba(44, 180, 212, 0.18);
    border-color: rgba(44, 180, 212, 0.42);
    transform: translateY(-1px);
}
body.jt-tribe-page .first-section .menu-toggle svg {
    width: 40px;
    height: 40px;
}
body.jt-tribe-page .first-section .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.45rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    max-width: 720px;
}
body.jt-tribe-page .first-section .accent-tag {
    color: #b9f5ff;
    font-weight: 700;
}
body.jt-tribe-page .first-section .design {
    width: 100%;
    height: 130px;
    overflow: hidden;
    margin-top: 14vh;
}
body.jt-tribe-page .second-section {
    background-image: url(./images/1.5-home-2/background.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

body.jt-tribe-page .second-section .content {
    width: min(70%, 920px);
    margin: auto;
    text-align: center;
    color: white;
}
body.jt-tribe-page .second-section .content img {
    margin: auto;
}
body.jt-tribe-page .second-section .content p {
    line-height: 1.45;
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    max-width: 860px;
    margin: 2rem auto;
}

body.jt-tribe-page .third-section {
    background-color: #191e18;
    width: 100%;
    padding: 4.5rem 4.5vw 4rem;
    position: relative;
    gap: clamp(1.5rem, 2.8vw, 3rem);
    align-items: center;
}
body.jt-tribe-page .third-section .first {
    width: 46%;
    position: relative;
    min-height: 520px;
}
body.jt-tribe-page .third-section .first .design1 {
    position: absolute;
    z-index: 0;
    left: 0;
    width: 75%;
    top: 11%;
}
body.jt-tribe-page .third-section .first .design1 img {
    width: 100%;
}
body.jt-tribe-page .third-section .first .design2 {
    position: absolute;
    z-index: 1;
    right: 3%;
    top: 8%;
    width: 50%;
}
body.jt-tribe-page .third-section .first .design2 img {
    width: 100%;
    animation: softFloat 5.5s ease-in-out infinite;
}
body.jt-tribe-page .third-section .first .content {
    position: absolute;
    inset: 0;
    z-index: 3;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 520px;
    padding: 0 0 3rem 5%;
}
body.jt-tribe-page .third-section .first .content h1 
{
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(4rem, 6.8vw, 6rem);
    line-height: 0.82;
    letter-spacing: 0.015em;
    margin: 0;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    max-width: 95%;
}
body.jt-tribe-page .third-section .second {
    width: 49%;
    color: white;
    padding-right: 1%;
}

body.jt-tribe-page .third-section .second p {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.22vw, 1.3rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.93);
}

@media (max-width: 1200px) {
    body.jt-tribe-page .third-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    body.jt-tribe-page .third-section .first {
        width: 45%;
        min-height: 460px;
    }

    body.jt-tribe-page .third-section .first .content {
        min-height: 460px;
        padding: 0 0 2.2rem 4.8%;
    }

    body.jt-tribe-page .third-section .first .content h1 {
        font-size: clamp(3.4rem, 6vw, 5.1rem);
    }

    body.jt-tribe-page .third-section .second {
        width: 51%;
    }
}
body.jt-tribe-page .fourth-section {
    background-color: #283e49;
    width: 100%;
}
body.jt-tribe-page .fourth-section .design1 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: -90px;
    width: 40%;
}
body.jt-tribe-page .fourth-section .design1 img {
    width: 100%;
}
body.jt-tribe-page .fourth-section .design2 {
    position: absolute;
    z-index: 0;
    right: 0;
    top: -90px;
    width: 40%;
}
body.jt-tribe-page .fourth-section .design2 img {
    width: 100%;
}
body.jt-tribe-page .fourth-section .design3 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    width: 40%;
}
body.jt-tribe-page .fourth-section .design3 img {
    width: 100%;
}
body.jt-tribe-page .fourth-section .content {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 85%;
    margin: auto;
    padding-top: 100px;
}
body.jt-tribe-page .fourth-section .content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.18em;
}
body.jt-tribe-page .fourth-section .content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

body.jt-tribe-page .fourth-section .content span {
    color: #0092b7;
}
body.jt-tribe-page .fourth-section .content img {
    width: 100%;
}
body.jt-tribe-page .fourth-section .content .boxes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: center;
}
body.jt-tribe-page .fourth-section .content .boxes h2 {
    font-size: 20px;
}
body.jt-tribe-page .fifth-section {
    background-color: #283e49;
    width: 100%;
}
body.jt-tribe-page .fifth-section .design1 {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .fifth-section .design1 img {
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .fifth-section .content {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
body.jt-tribe-page .fifth-section .content .first {
    width: 48%;
    color: white;
}
body.jt-tribe-page .fifth-section .content .first .header .head_desig {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
body.jt-tribe-page .fifth-section .content .first .header .head_desig img {
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .fifth-section .content .first .header .text-o {
    position: relative;
    z-index: 1;
    top: 0;
}

body.jt-tribe-page .fifth-section .content .first .header h1 {
    font-size: 54px;
}
body.jt-tribe-page .fifth-section .content .first .header h1 span {
    color: #fff;
}
body.jt-tribe-page .fifth-section .content .first .header h2 {
    font-size: 24px;
    max-width: 620px;
    line-height: 1.45;
}
body.jt-tribe-page .fifth-section .content .box {
    background: linear-gradient(180deg, rgba(31, 88, 105, 0.96) 0%, rgba(18, 62, 75, 0.98) 100%);
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.jt-tribe-page .fifth-section .content .box .number {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}
body.jt-tribe-page .fifth-section .content .box .number h1 {
    color: #246375;
    font-size: 119px;
    font-weight: bold;
}

body.jt-tribe-page .fifth-section .content .box .main-c {
    position: relative;
    z-index: 1;
    color: white;
}
body.jt-tribe-page .fifth-section .content .box .main-c h1 {
    font-size: 40px;
    color: #0092b7;
}
body.jt-tribe-page .fifth-section .content .box .main-c p {
    font-size: 18px;
    line-height: 1.7;
}

body.jt-tribe-page .fifth-section .content .box:hover,
body.jt-tribe-page .nine-section .content .box:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}
body.jt-tribe-page .fifth-section .content .second {
    width: 48%;
    color: white;
}
body.jt-tribe-page .sixth-section {
    background-color: #222220;
    width: 100%;
}
body.jt-tribe-page .sixth-section .design1 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .sixth-section .design1 img {
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .sixth-section .content1 {
    width: 857px;
    margin: auto;
    max-width: 85%;
}
body.jt-tribe-page .sixth-section .content1 .c-design {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .sixth-section .content1 .c-design img {
    width: 60%;
    height: 100%;
}
body.jt-tribe-page .sixth-section .content1 .mainT {
    position: relative;
    z-index: 1;
    color: white;
}
body.jt-tribe-page .sixth-section .content1 .mainT h2 {
    font-size: 42px;
}
body.jt-tribe-page .sixth-section .content1 .mainT h3 {
    font-size: 26px;
    letter-spacing: 0.12em;
}
body.jt-tribe-page .sixth-section .content1 .mainT h1 {
    font-size: 84px;
    color: #c89336;
}
body.jt-tribe-page .seventh-section {
    width: 100%;
    background-color: #222220;
    /* padding-top: 156px; */
}
body.jt-tribe-page .seventh-section .design1 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .seventh-section .design1 img {
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .seventh-section .content {
    position: relative;
    z-index: 1;
    width: 85%;
    margin: auto;
}
body.jt-tribe-page .seventh-section .content .first-content .f1 {
    width: 48%;
    position: relative;
}
body.jt-tribe-page .seventh-section .design2 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 40%;
    height: 60%;
}
body.jt-tribe-page .seventh-section .design2 img {
    width: 100%;
    height: 100%;
}
body.jt-tribe-page .seventh-section .content .first-content {
    padding-top: 116px;
}

body.jt-tribe-page .seventh-section .content .first-content .f1 .mainImage {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
    display: flex;
    align-items: end;
}
body.jt-tribe-page .seventh-section .content .first-content .f1 .mainImage img {
    width: 100%;
}
body.jt-tribe-page .seventh-section .content .first-content .f2 {
    width: 48%;
}

body.jt-tribe-page .seventh-section .content .first-content .f2 h2 {
    font-size: 42px;
    color: #c89336;
}
body.jt-tribe-page .seventh-section .content .first-content .f2 h1 {
    font-size: 62px;
    color: white;
}
body.jt-tribe-page .seventh-section .content .first-content .f2 span {
    color: #c89336;
}
body.jt-tribe-page .seventh-section .content .first-content .f2 h3 {
    font-size: 28px;
    color: white;
}
body.jt-tribe-page .seventh-section .content p {
    font-size: 18px;
    color: white;
    width: 50%;
    text-align: center;
    margin: auto;
    line-height: 1.7;
}
body.jt-tribe-page .eight-section {
    width: 100%;
    background-color: #222220;
}
body.jt-tribe-page .eight-section .content {
    width: 85%;
    margin: auto;
}
body.jt-tribe-page .eight-section .content .design1 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
body.jt-tribe-page .eight-section .content .design1 img {
    width: 100%;
}
body.jt-tribe-page .eight-section .content .cont1 {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}
body.jt-tribe-page .eight-section .content .cont1 h1 {
    font-size: 62px;
}
body.jt-tribe-page .eight-section .content .cont1 span {
    color: #c89336;
}
body.jt-tribe-page .eight-section .content .cont1 img {
    width: 100%;
}
body.jt-tribe-page .eight-section .content .cont1 p {
    font-size: 21px;
    line-height: 1.5;
    width: min(100%, 920px);
    margin: 2rem auto 0;
}
body.jt-tribe-page .nine-section {
    width: 100%;
    background-color: #222220;
}
body.jt-tribe-page .nine-section .content {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}


body.jt-tribe-page .nine-section .content .box {
    background: linear-gradient(180deg, rgba(50, 58, 43, 0.96) 0%, rgba(30, 37, 26, 0.98) 100%);
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.jt-tribe-page .nine-section .content .box .number {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}
body.jt-tribe-page .nine-section .content .box .number h1 {
    color: #41432d;
    font-size: 119px;
    font-weight: bold;
}

body.jt-tribe-page .nine-section .content .box .main-c {
    position: relative;
    z-index: 1;
    color: white;
}
body.jt-tribe-page .nine-section .content .box .main-c h1 {
    font-size: 38px;
    color: #c5923a;
}
body.jt-tribe-page .nine-section .content .box .main-c p {
    font-size: 18px;
    line-height: 1.7;
}

body.jt-tribe-page .ten-section {
    width: 100%;
    position: relative;
}
body.jt-tribe-page .ten-section .design1 {
    width: 100%;
    position: absolute;
    inset: 0;
    height: 100%;
}
body.jt-tribe-page .ten-section .design1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.jt-tribe-page .ten-section .content {
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    width: 80%;
    min-height: 358px;
    margin: auto;
    display: flex;
    right: 0;
    justify-content: space-between;
    padding: 3rem 0;
    gap: 2rem;
    align-items: flex-start;
}
body.jt-tribe-page .ten-section .content .first {
    width: 304px;
}
body.jt-tribe-page .ten-section .content .first img {
    width: 100%;
}
body.jt-tribe-page .ten-section .content .second {
    width: 100%;
}
body.jt-tribe-page .ten-section .content .second .menu h1 {
    font-size: 24px;
    color: #c5923a;
    border-bottom: 3px solid white;
    padding-bottom: 10px;
    margin-bottom: 1rem;
    animation: pulseGlow 4.8s ease-in-out infinite;
    text-align: left;
}
body.jt-tribe-page .ten-section .content .second .menu h2 {
    font-size: 17px;
    color: white;
    margin-top: 10px;
    letter-spacing: 0.08em;
}

/* ─── Nav Overlay ──────────────────────────────────────────── */
body.jt-tribe-page .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(8, 13, 11, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.jt-tribe-page .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.jt-tribe-page .nav-overlay-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.8vw, 3.4rem);
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.22s ease, letter-spacing 0.22s ease;
    display: block;
    text-align: center;
}

body.jt-tribe-page .nav-overlay-link:hover,
body.jt-tribe-page .nav-overlay-link:focus-visible {
    color: var(--accent-blue);
    letter-spacing: 0.26em;
    outline: none;
}

body.jt-tribe-page .nav-overlay-socials {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

body.jt-tribe-page .nav-overlay-socials img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

body.jt-tribe-page .nav-overlay-socials img:hover {
    opacity: 1;
}

/* ─── Footer nav links ─────────────────────────────────────── */
body.jt-tribe-page .ten-section .footer-link {
    color: white;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.2s ease;
}

body.jt-tribe-page .ten-section .footer-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 991.98px) {
    body.jt-tribe-page .first-section nav,
    body.jt-tribe-page .second-section .content,
    body.jt-tribe-page .fourth-section .content,
    body.jt-tribe-page .fifth-section .content,
    body.jt-tribe-page .seventh-section .content,
    body.jt-tribe-page .eight-section .content,
    body.jt-tribe-page .nine-section .content,
    body.jt-tribe-page .ten-section .content {
        width: min(92%, 100%);
    }

    body.jt-tribe-page .first-section nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
        border-radius: 28px;
    }

    body.jt-tribe-page .first-section .content {
        width: 90%;
        padding-top: 12vh;
    }

    body.jt-tribe-page .first-section .content h1 {
        font-size: clamp(3rem, 9vw, 5.5rem);
    }

    body.jt-tribe-page .first-section .hero-subtitle {
        font-size: clamp(0.95rem, 2.4vw, 1.2rem);
        letter-spacing: 0.14em;
    }

    body.jt-tribe-page .first-section .design {
        margin-top: 12vh;
        height: 96px;
    }

    body.jt-tribe-page .first-section .design img {
        height: 100% !important;
        object-fit: cover;
    }

    body.jt-tribe-page .second-section .content p,
    body.jt-tribe-page .third-section .second p,
    body.jt-tribe-page .fifth-section .content .box .main-c p,
    body.jt-tribe-page .seventh-section .content p,
    body.jt-tribe-page .eight-section .content .cont1 p,
    body.jt-tribe-page .nine-section .content .box .main-c p {
        font-size: 18px;
    }

    body.jt-tribe-page .first-section .socials {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    body.jt-tribe-page .third-section {
        flex-direction: column;
        gap: 1.6rem;
        padding: 2.5rem 0 2rem;
    }

    body.jt-tribe-page .third-section .first,
    body.jt-tribe-page .third-section .second,
    body.jt-tribe-page .fifth-section .content .first,
    body.jt-tribe-page .fifth-section .content .second,
    body.jt-tribe-page .seventh-section .content .first-content .f1,
    body.jt-tribe-page .seventh-section .content .first-content .f2,
    body.jt-tribe-page .nine-section .content .first,
    body.jt-tribe-page .nine-section .content .second {
        width: 100%;
    }

    body.jt-tribe-page .third-section .first {
        min-height: 420px;
        margin-bottom: 0.6rem;
    }

    body.jt-tribe-page .third-section .first .content {
        height: auto;
        inset: 0;
        min-height: 420px;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 1rem 1.1rem;
    }

    body.jt-tribe-page .third-section .first .content h1 {
        font-size: clamp(2.9rem, 10.5vw, 4.6rem);
        line-height: 0.84;
    }

    body.jt-tribe-page .third-section .second {
        text-align: left;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        position: relative;
        z-index: 4;
        margin-top: 0;
    }

    body.jt-tribe-page .third-section .second p {
        margin: 0;
        max-width: 760px;
        line-height: 1.34;
        font-size: clamp(0.96rem, 2.1vw, 1.06rem);
    }

    body.jt-tribe-page .fourth-section .content {
        padding-top: 5rem;
    }

    body.jt-tribe-page .fourth-section .content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        text-align: center;
    }

    body.jt-tribe-page .fourth-section .content .boxes {
        gap: 1.5rem;
    }

    body.jt-tribe-page .fifth-section .content,
    body.jt-tribe-page .seventh-section .content .first-content,
    body.jt-tribe-page .nine-section .content,
    body.jt-tribe-page .ten-section .content {
        flex-direction: column;
    }

    body.jt-tribe-page .fifth-section .content .first .header h1,
    body.jt-tribe-page .sixth-section .content1 .mainT h1,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h1,
    body.jt-tribe-page .eight-section .content .cont1 h1 {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }

    body.jt-tribe-page .fifth-section .content .first .header h2,
    body.jt-tribe-page .sixth-section .content1 .mainT h2,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h2,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h3 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    body.jt-tribe-page .fifth-section .content .box .main-c h1,
    body.jt-tribe-page .nine-section .content .box .main-c h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    body.jt-tribe-page .fifth-section .content .box .number h1,
    body.jt-tribe-page .nine-section .content .box .number h1 {
        font-size: 84px;
    }

    body.jt-tribe-page .sixth-section .content1 {
        width: 92%;
        justify-content: center !important;
        min-height: 360px;
        padding: 2rem 0;
    }

    body.jt-tribe-page .sixth-section .content1 .c-design img {
        width: 100%;
        object-fit: contain;
        opacity: 0.45;
    }

    body.jt-tribe-page .sixth-section .content1 .mainT {
        width: 100%;
        text-align: center;
    }

    body.jt-tribe-page .seventh-section .content .first-content {
        gap: 2rem;
        padding-top: 4rem;
    }

    body.jt-tribe-page .seventh-section .content p {
        width: 100%;
    }

    body.jt-tribe-page .eight-section .content .cont1 p {
        font-size: 20px;
    }

    body.jt-tribe-page .ten-section .content {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    body.jt-tribe-page .first-section nav {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        align-items: center;
    }

    body.jt-tribe-page .first-section nav > img {
        width: 48px;
        height: 48px;
    }

    body.jt-tribe-page .first-section .socials {
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        border-width: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

    body.jt-tribe-page .first-section .socials.is-open {
        padding: 0.75rem 1rem;
        max-height: 80px;
        opacity: 1;
        border-width: 1px;
        transform: translateY(0);
        pointer-events: auto;
    }

    body.jt-tribe-page .first-section .socials img,
    body.jt-tribe-page .first-section .menu-toggle,
    body.jt-tribe-page .first-section nav svg {
        width: 28px;
        height: 28px;
    }

    body.jt-tribe-page .first-section .menu-toggle {
        width: 48px;
        height: 48px;
    }

    body.jt-tribe-page .first-section .socials .mx-5 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }

    body.jt-tribe-page .first-section .content {
        width: 92%;
        padding-top: 4rem;
    }

    body.jt-tribe-page .first-section .content h1 {
        font-size: clamp(2.75rem, 11vw, 4.1rem);
        line-height: 1.02;
    }

    body.jt-tribe-page .first-section .design {
        height: 70px;
        margin-top: 4rem;
    }

    body.jt-tribe-page .second-section .content img {
        width: 140px;
        height: 140px;
    }

    body.jt-tribe-page .second-section .content p,
    body.jt-tribe-page .third-section .second p,
    body.jt-tribe-page .fifth-section .content .box .main-c p,
    body.jt-tribe-page .seventh-section .content p,
    body.jt-tribe-page .eight-section .content .cont1 p,
    body.jt-tribe-page .nine-section .content .box .main-c p,
    body.jt-tribe-page .ten-section .content .second .menu h2 {
        font-size: 16px;
    }

    body.jt-tribe-page .fifth-section .content .first .header h1,
    body.jt-tribe-page .sixth-section .content1 .mainT h1,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h1,
    body.jt-tribe-page .eight-section .content .cont1 h1,
    body.jt-tribe-page .nine-section .content .box .main-c h1 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
        text-align: center !important;
    }

    body.jt-tribe-page .seventh-section .content .first-content .f2 h2,
    body.jt-tribe-page .sixth-section .content1 .mainT h2,
    body.jt-tribe-page .sixth-section .content1 .mainT h3 {
        font-size: clamp(1.15rem, 5vw, 1.7rem);
        text-align: center;
    }
    body.jt-tribe-page .fifth-section .content .first .header h2,
    body.jt-tribe-page .sixth-section .content1 .mainT h2,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h2,
    body.jt-tribe-page .seventh-section .content .first-content .f2 h3 {
        text-align: center;
    }

    body.jt-tribe-page .third-section .first {
        min-height: 360px;
        margin-bottom: 0.5rem;
    }

    body.jt-tribe-page .third-section .first .design1 {
        width: 74%;
        top: 10%;
    }

    body.jt-tribe-page .third-section .first .design2 {
        width: 54%;
        top: 7%;
    }

    body.jt-tribe-page .third-section .first .content,
    body.jt-tribe-page .third-section .second {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.jt-tribe-page .third-section .first .content {
        padding-top: 0;
        min-height: 360px;
        padding-bottom: 0.8rem;
    }

    body.jt-tribe-page .third-section .first .content h1 {
        font-size: clamp(2.45rem, 13vw, 3.85rem);
        line-height: 0.84;
    }

    body.jt-tribe-page .third-section .second p {
        line-height: 1.32;
        font-size: clamp(0.92rem, 4.2vw, 1rem);
    }

    body.jt-tribe-page .fourth-section .design1,
    body.jt-tribe-page .fourth-section .design2 {
        top: -30px;
        width: 45%;
    }

    body.jt-tribe-page .fourth-section .design3 {
        width: 80%;
    }

    body.jt-tribe-page .fourth-section .content {
        padding-top: 4rem;
    }

    body.jt-tribe-page .fourth-section .content h2,
    body.jt-tribe-page .fourth-section .content .boxes h2,
    body.jt-tribe-page .ten-section .content .second .menu h1 {
        font-size: 18px;
    }

    body.jt-tribe-page .fourth-section .content .boxes {
        flex-direction: column;
    }

    body.jt-tribe-page .fifth-section .content .box,
    body.jt-tribe-page .nine-section .content .box {
        border-radius: 20px;
    }

    body.jt-tribe-page .fifth-section .content .box .number,
    body.jt-tribe-page .nine-section .content .box .number {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    body.jt-tribe-page .fifth-section .content .box .number h1,
    body.jt-tribe-page .nine-section .content .box .number h1 {
        font-size: 64px;
    }

    body.jt-tribe-page .fifth-section .content .box,
    body.jt-tribe-page .nine-section .content .box,
    body.jt-tribe-page .ten-section .content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.jt-tribe-page .fifth-section .content .box .main-c,
    body.jt-tribe-page .nine-section .content .box .main-c {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    body.jt-tribe-page .sixth-section .content1 {
        min-height: 280px;
    }

    body.jt-tribe-page .sixth-section .content1 .mainT h3 {
        font-size: 1.25rem;
    }

    body.jt-tribe-page .seventh-section .design2 {
        width: 70%;
        height: 35%;
    }

    body.jt-tribe-page .ten-section .content {
        width: 92%;
        padding: 2rem 0;
    }

    body.jt-tribe-page .ten-section .content .first {
        width: 180px;
        margin-right: 0 !important;
    }

    body.jt-tribe-page .ten-section .content .second .menu .items {
        flex-wrap: wrap;
        gap: 0.25rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    body.anim-ready .reveal-item,
    body.anim-ready .reveal-item[data-reveal="left"],
    body.anim-ready .reveal-item[data-reveal="right"],
    body.anim-ready .reveal-item[data-reveal="up"] {
        opacity: 1;
        transform: none;
    }
}