.custom-offcanvas {
    height: 100vh !important;
    /* full screen */
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease;
    opacity: 0;
}

.custom-offcanvas.show {
    transform: translateY(0);
    opacity: 1;
}

.offcanvas-top.custom-offcanvas {
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto;
}

/* Main wrapper (center items vertically + horizontally) */
.menu-center {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu list styling */
.menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Menu item spacing */
.menu-links li {
    margin: 18px 0;
}

.menu-links li a {
    font-family: 'Jaturat Bold';
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}

/* Hover (your theme red #e41d38) */
.menu-links li a:hover {
    color: #e41d38;
    letter-spacing: 3px;
}

/* Optional underline effect on hover */
.menu-links li a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #e41d38;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.menu-links li a:hover::after {
    width: 50%;
}

.offcanvas-header .btn-close {
    font-size: 30px;
    margin-right: 125px;
    margin-top: 0px;
}

.offcanvas-header .navbar-brand img {
    width: 120px;
}

.navbar-toggler:focus,
.offcanvas-header .btn-close:focus {
    box-shadow: none;
}

/* RESPONSIVE for mobile */
@media (max-width: 767px) {
    .menu-links li a {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .offcanvas-header .btn-close {
        margin-right: 0px;
        margin-top: 0px;
    }

    .offcanvas-header .navbar-brand {
        margin-left: 0px !important;
    }
}

.red-lines {
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 1920px;
    height: 330px;
}


/* Horizontal lines */
.h-line {
    position: absolute;
    width: 30%;
    height: 2px;
    background: #e41d38;
    transform: scaleX(0);
}



/* TOP system line */
.top-line {
    top: 0;
    left: 0;
    transform-origin: left;
}

/* BOTTOM system line */
.bottom-line {
    bottom: 0;
    right: 0;
    transform-origin: right;
    width: 56%;
}

/* Vertical lines */
.v-line {
    position: absolute;
    width: 2px;
    height: 250px;
    background: #e41d38;
    transform: scaleY(0);
    transform-origin: top;
}

/* TOP system verticals */
.v1 {
    left: 5%;
    top: 0;
}

.v2 {
    left: 27%;
    top: 0;
}

.v4 {
    right: 0;
    top: 0;
}

/* BOTTOM system verticals (drop from bottom) */
.v1b {
    left: 25%;
    bottom: 0;
    transform-origin: bottom;
}

.v2b {
    left: 49%;
    bottom: 0;
    transform-origin: bottom;
}

.v4b {
    right: 30%;
    bottom: 0;
    transform-origin: bottom;
}

.row.line-content {
    padding-top: 45px;
    padding-bottom: 45px;
}




.dividerVector2 {
    position: absolute;
    bottom: 0px;
    right: 30px;

}

.dividerVector2 img {
    width: 470px;
}

/* Main Button */
.contentCta {
    border-radius: 5px;
    overflow: hidden;
    width: max-content;
}

.cta-btn {
    overflow: hidden;
    position: relative;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Paralucent' !important;
    font-weight: 900;
    font-size: 20px !important;
    font-style: italic;
    padding: 12px 25px !important;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 1px solid #fe0b02;
    border-image: linear-gradient(90deg, #F1600F, #FF0000) 1;
    background: linear-gradient(90deg, #F1600F, #FF0000);
}



/* Hover Effects */
.cta-btn:hover,
.cta-btn:focus {
    color: #fff !important;
    border: 1px solid #fff;
    background: transparent;
    transform: translateY(0px) !important;

}

.menu-links li .cta-btn:hover {
    letter-spacing: 2px !important;
}

.menu-links li .contentCta {
    height: 57.6px;
    margin-inline: auto;
}

.reveal {
    display: inline-block;
    overflow: hidden;
    height: 1em;
    line-height: 1em;
}

.page-template-our-people .meetCrew .reveal {
    height: 2em;
}

.reveal-text {
    display: inline-block;
    transform: translateY(100%);
}



.red-line-svg path {
    stroke-linecap: round;

}

.offcanvas-header .navbar-brand a {
    position: absolute;
    top: 33px;
    left: 10px;
    object-fit: contain;
    width: 128px;
}

#site-loader {
    position: fixed;
    inset: 0;
    background: #000;
    /* or your theme background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#site-loader img {
    width: 120px;
    /* adjust if needed */
    height: auto;
}

/* hidden state */
#site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/*.random-reveal {*/
/*    display: inline-block;*/
/*}*/

/*.random-reveal span {*/
/*    display: inline-block;*/
/*    opacity: 0;*/
/*    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);*/
/*}*/

.scroll-arrow {
    animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(14px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}



@media(max-width:767px) {
    .container {
        padding-inline: 1.8em !important;
    }

    .red-lines {
        display: none;
    }

    .row.line-content {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dividerVector2 {
        right: 0px;
    }

    .dividerVector2 img {
        width: 250px;
    }

    .navbar.scrolled .navWrap {
        background-color: #000000ad;
        backdrop-filter: blur(10px);
    }
}

@media(min-width:768px) {
    .navbar.scrolled {
        background-color: #000000ad;
        backdrop-filter: blur(10px);
    }
}
@media(min-width:1600px) {
    .top-line.h-line {
        width: 35%;
    }

    .v1 {
        left: 13%;
    }

    .v2 {
        left: 31%;
    }

    .v4b {
        right: 34%;
    }
}