/* CSS Reset with Box-sizing, Font Smoothing, and Basic Improvements */

/* Box sizing reset */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

/* Remove list styles on ul, ol */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Remove border and background on elements */
fieldset, button, input, textarea {
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove button native styles */
button {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

/* Remove input outline but keep accessible focus styles */
a {
    outline: none;
    text-decoration: none;
    color: inherit;
}

/* Provide visible focus styles for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

/* Set images and media to be responsive */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

a {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

/* Tables basic reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}


/* Base body setup */
body {
    text-rendering: optimizeSpeed;
    /*

    min-height: 100vh;
    */
    /*
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,

    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased; /* Chrome, Safari */
    -moz-osx-font-smoothing: grayscale;  /* Firefox */
    background-color: #fff;
    color: #000;
    margin: 0;
    font-size: 1rem;
    font-family: Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -moz-tab-size: 4;
    tab-size: 4;
    font-optical-sizing: auto;
    font-weight: 400;
    font-feature-settings: "ss05" on,"ss04" on,"ss01" on,"liga" off;
    overscroll-behavior: none;

    font-feature-settings: "kern" off;
    font-kerning: none;
    padding: 0;
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

/* Vertical align for inline elements */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    vertical-align: middle;
}

/* Additional improvements for input placeholders */
::placeholder {
    color: #888;
    opacity: 1; /* Override Firefox's default opacity */
}

/* Remove all animations and transitions for reduced motion preference */
/*
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
        scroll-behavior: auto !important;
    }
}
*/

.page {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}



.primary-header {
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
    top: 0;
    z-index: 100;
}

.ph-container {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0.5rem;
    background: #fff;
    border-radius: .75rem !important;
    box-shadow: 0 0 2px 0 rgba(26, 27, 30, 0.08), 0 2px 4px 0 rgba(34, 36, 40, 0.06),
    0 4px 6px 0 rgba(60, 63, 73, 0.04) !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}


.phc {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    gap: 0.75rem;
}

.logo {
    display: flex;
    position: relative;
    width: 110px;
    height: 40px;
    justify-content: center;
    align-items: center;
    align-content: center;
}


.phc-menu-icon {
    display: flex;
    position: relative;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.phc-menu-icon:hover,
.phc-menu-icon:active {
    background: #f1f2f5;
}
.phc-menu-icon i {
    display: flex;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
}
.phc-menu-icon i::before {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    padding-left: 1px;
    padding-right: 1px;
}
.phc-link {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-self: center;
    text-align: center;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 0.2rem;
}
.phc-link:hover {
    background: #f1f2f5;
}

.page-content {
    display: flex;
    position: static;
    width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem;
    min-height: 100%;
}

.main-content {
    display: flex;
    position: static;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.ovx {
    height: 1360px;
    background: linear-gradient(rgb(251, 247, 239) 0%, rgb(250, 250, 252) 100%);
    z-index: -1;
    pointer-events: none !important;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}

.ovx-a{
    position: relative !important;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none !important;
}


.ovx-bg{
    background-repeat: repeat;
    background-image: url('data:image/svg+xml,<svg opacity="1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23E0E2E8" fill-rule="nonzero" d="M3 1.5a1.5 1.5 0 1 1-2.999.001A1.5 1.5 0 0 1 3 1.5Z"/></svg>');
    mask-image: linear-gradient(to top, transparent 0, black 15rem);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none !important;
    position: absolute;

}
.ovx-bgo {
    position: relative;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.main-ctx {
    padding-top: 6rem;
    margin-bottom: 6rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.main-ctx-content {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}


/* e */
.row {
    --wcds-gutter-x: 1.5rem;
    --wcds-gutter-y: 0;
}
.g-xl-0, .gy-xl-0 {
    --wcds-gutter-y: 0rem;
}
.text-lg-center {
    text-align: center !important;
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--wcds-gutter-x)*.5);
    padding-left: calc(var(--wcds-gutter-x)*.5);
    margin-top: var(--wcds-gutter-y);
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}



.pe-xl-0 {
    padding-right: 0 !important;
}
.row {
    --wcds-gutter-x: 1.5rem;
    --wcds-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1*var(--wcds-gutter-y));
    margin-right: calc(-.5*var(--wcds-gutter-x));
    margin-left: calc(-.5*var(--wcds-gutter-x));
}
.bullet-list li ul, .drawer, .dropdown-menu .dropdown-header ul, .flex-column, .marketo-form-root .mktoCheckboxList label ul, .marketo-form-root .mktoHtmlText ul, .marketo-form-root .mktoRadioList label ul, .p ul, p ul {
    flex-direction: column !important;
}
.align-items-center {
    align-items: center !important;
}
.gap-lg-600 {
    gap: 3rem !important;
}


.col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.gap-md-300 {
    gap: 1.5rem !important;
}


.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.d-inline {
    display: inline !important;
}

.h1, h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.2px;
    line-height: 115%;
}
.h1, h1 {
    font-size: 56px;
    letter-spacing: -1.68px;
}


.bullet-list li, .dropdown-menu .dropdown-header, .marketo-form-root .mktoCheckboxList label, .marketo-form-root .mktoHtmlText, .marketo-form-root .mktoRadioList label, .p, p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.text-secondary {
    --wcds-text-opacity: 1;
    color: #555a6a;
}


.bullet-list li, .dropdown-menu .dropdown-header, .marketo-form-root .mktoCheckboxList label, .marketo-form-root .mktoHtmlText, .marketo-form-root .mktoRadioList label, .p, p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.09px;
    line-height: 135%;
    /*
    font-family: Noto Sans,system-ui;

     */
}
.bullet-list li:last-of-type, .dropdown-menu .dropdown-header:last-of-type, .marketo-form-root .mktoCheckboxList label:last-of-type, .marketo-form-root .mktoHtmlText:last-of-type, .marketo-form-root .mktoRadioList label:last-of-type, .p:last-of-type, p:last-of-type {
    margin-bottom: 0;
}


.lead, .v2-lead {
    font-size: 22px;
    font-weight: 400;
    line-height: 135%;
    /*
    font-family: Noto Sans,system-ui;

     */
}
/*  */


.page-footer {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    background: green;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}


/* Footer Base Styles */
.sof-footer {
    width: 100%;
    height: auto;
    background-color: #1e293b;
    color: #ffffff;
    position: relative;
}

.sof-footer-top-accent {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
}

.sof-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
}

.sof-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
}

/* Footer Sections */
.sof-footer-section {
    margin-bottom: 2rem;
}

.sof-footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 1.25rem;
}

.sof-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.sof-footer-links {
    list-style: none;

    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 1rem 0px 1.5rem;
    border: 0;
    max-height: 100%;
    height: auto;



}

.sof-footer-links li {
    margin-bottom: 0.8rem;
}

.sof-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.sof-footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.sof-footer-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.sof-footer-links a:hover::after {
    width: 100%;
}

/* Logo Section */
.sof-footer-logo-column {
    display: flex;
    flex-direction: column;
}

.sof-footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin: 0;
}

.sof-footer-logo span {
    color: #8b5cf6;
}

.sof-footer-about {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.sof-social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.sof-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #334155;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sof-social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    background-color: #3b82f6;
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

.sof-social-icon {
    width: 20px;
    height: 20px;
    fill: #f8fafc;
}

/* Footer Bottom */
.sof-footer-bottom {
    background-color: #0f172a;
    padding: 1.5rem;
    margin-top: 2rem;
}

.sof-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sof-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.sof-footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.sof-footer-legal-links a:hover {
    color: #3b82f6;
}

.sof-footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sof-footer-container {
        padding: 2rem 1rem 0;
    }

    .sof-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sof-footer-section {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #334155;
    }

    .sof-footer-logo-column {
        padding: 0 0 2rem;
        align-items: center;
        text-align: center;
        border-bottom: 1px solid #334155;
    }

    .sof-footer-about {
        margin: 0 auto 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .sof-footer-heading {
        font-size: 1.15rem;
        width: 100%;
        margin-bottom: 0;
        padding: 1rem 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        border: 0;
    }

    .sof-footer-heading::after {
        content: '+';
        position: static;
        width: auto;
        height: auto;
        background: none;
        font-size: 1.3rem;
        font-weight: 300;
        padding-left: 1rem;
    }

    .sof-footer-heading.active::after {
        content: '−';
    }

    .sof-footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        width: 100%;
    }

    .sof-footer-links.active {
        max-height: 500px;
        padding: 1rem 0 1.5rem;
    }

    .sof-footer-links li {
        margin-bottom: 1rem;
        text-align: center;
    }

    .sof-footer-links a {
        font-size: 1.05rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .sof-footer-links a:hover {
        padding-left: 1rem;
    }

    .sof-social-links {
        justify-content: center;
    }

    .sof-footer-bottom {
        padding: 1.5rem 1rem;
    }
}

















.btn {
    display: flex;
    position: relative;
    width: auto;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(28,28,30,0.075);
    font-weight: 500;
    line-height: 1.5;
    background: #3859ff;
    background: #8b5cf6;
    color: #fff;
    padding: 0.45rem 0.675rem;
    border-radius: 0.25rem;
}

.btn:hover,
.btn:active {
    background: #314cd9;
    background: #7a4ce3;
    box-shadow: inset 0 3px 5px rgba(28,28,30,0.125);
}





.container{
    width: 100%;
    max-width: 1200px;
}
.overflow {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    width: 100%;
    background: pink;
}

.normal {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    background: darkred;
    padding: 15px;
}



.header {
    display: flex;
    position: sticky;
    width: 100%;
    height: auto;
    top: 0;
    padding: 2rem;
    background: lightcoral;
}
.phc-on-mobile {
    display: none;
}

@media (max-width: 768px) {
    .primary-header {
        padding: 1rem 0.75rem;
    }
    .phc-link {
        display: none;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 992px) {
    .container{
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
@media (max-width: 420px) {
    .phc-off-mobile {
        display: none;
    }
    .phc-on-mobile{
        display: flex;
    }
}





/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #2a2f45;
    box-shadow: 4px 0 12px rgb(0 0 0 / 0.1);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    color: #e1e3f0;
}
.sidebar.open {
    transform: translateX(0);
}

/* Close icon */
.close-icon {
    align-self: flex-end;
    font-size: 28px;
    cursor: pointer;
    color: #a4a7c1;
    transition: color 0.3s ease;
    user-select: none;
}
.close-icon:hover {
    color: #fff;
}

/* Sidebar links */
.sidebar nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar nav a {
    color: #cfd2e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.25s ease, color 0.25s ease;
    user-select: none;
}
.sidebar nav a:hover {
    background-color: #5061f9;
    color: white;
    box-shadow: 0 2px 6px rgb(80 97 249 / 0.5);
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1150;
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* When sidebar is open, prevent body scroll */
body.sidebar-open {
    overflow: hidden;
}

.pmc-bc {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;

}
.pmc-btn {
    width: auto;
    flex: 0 1 auto;
    padding: 0.68rem 0.98rem;
}


@media (max-width: 768px) {
    .main-ctx {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .phc-h1 {
        font-size: 40px;
    }
}











.wavy-shade {
    font-weight: 900;
    background: linear-gradient(
            270deg,
            #ff3cac,
            #784ba0,
            #2b86c5,
            #ff3cac,
            #784ba0,
            #2b86c5
    );
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




.mc-block {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

}


.card-rail {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.card {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 1.5rem;

    background: #fff;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    width: 250px;
    height: 300px;
    page-break-inside: avoid;
    margin: 0.5rem 0;
    height: auto;
    align-self: stretch;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
.card:hover {
    box-shadow: 0 20px 55px rgba(44, 62, 80, 0.2);
    transform: translateY(-8px);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}


.card-info {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: auto;
    padding: 0.5rem 0;
}
.card-lead {
    display: flex;
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1c1c1e;
}

.card-description {
    display: flex;
    position: relative;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #555a6a;

}

.card-igb {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0.25rem;
}
.card-igb img {
    display: flex;
    position: relative;
    width: 120px;
    height: 120px;
    justify-content: center;
    align-self: center;
    align-items: center;
    border-radius: 0.5rem;

}

@media (max-width: 992px) {
    .card {
        width: 30%;
    }
}
@media (max-width: 768px) {
    .card {
        width: 48%;
    }
}
@media (max-width: 576px) {
    .card {
        width: 100%;
        max-width: 320px;
    }
}


.gallery-rail {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}



.gallery-container {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    max-width: 1400px;
    padding: 1.5rem 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    gap: 0.5rem;
}

.gallery-item {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 280px;
    border: 2px solid #ddd;
    border-bottom: 4px solid #eee;
    border-radius: 0.2rem;
    box-shadow: 0 0 2px 0 rgba(26, 27, 30, 0.08), 0 2px 4px 0 rgba(34, 36, 40, 0.06), 0 4px 6px 0 rgba(60, 63, 73, 0.04) !important;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}


.gallery-item:hover {
    box-shadow: 0 20px 55px rgba(44, 62, 80, 0.2);
    transform: translateY(-8px);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border-bottom: 4px solid #868686;
}

.gallery-item img {
    display: flex;
    position: relative;
    width: 100% !important;
    height: 100% !important;
    page-break-inside: avoid;
}


@media (max-width: 768px) {
    .gallery-item {
        width: 120px;
        height: 120px;
    }
}


/*                                                                                                                                      font-family: Arial, sans-serif;
                                                                                                                                           }
.marquee-container {
overflow: hidden;
width: 100%;
background: #fff;

box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);

}
.marquee-track {
display: flex;
width: max-content;
animation: scroll-left 3s linear infinite;
}
.marquee-track.mq-reverse {
animation: scroll-right 3s linear infinite;
}

.marquee-track:hover {
animation-play-state: paused;
}
.marquee-track img {
width: 250px;
height: auto
object-fit: cover;
flex-shrink: 0;
}

/ Duplicate track for seamless looping /
.marquee-track.duplicate {
position: absolute;
top: 0;
left: 100%;
}

@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}

@keyframes scroll-right {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(50%);
}
}
*/


.page-drum {
    display: flex;
    position: relative;
    width: 0;
    height: 0;
    flex-direction: column;
    overflow: hidden;
}

