:root {
    --bodyBackground: rgb(15, 15, 15);
    --borderColor01: rgba(243, 243, 243, 0.1);
    --backgroundColor005: rgba(243, 243, 243, 0.05);
    --cardBackgroundColor: rgba(255, 255, 255, 0.05);

    --cardSecondaryBackgroundColor: rgba(65, 116, 110, 0.1);
    --cardSecondaryBorderColor: rgba(65, 116, 110, 0.2);

    --iconBackgroundColor: rgba(65, 116, 110, 0.15);

    --primaryTextColor: rgba(243, 243, 243, 1);
    --secondaryTextColor: rgba(243, 243, 243, 0.7);

    --primaryInnerPageTextColor: rgba(244, 244, 245, 1);
    --secondaryInnerPageTextColor: rgba(244, 244, 245, 0.7);

    --successColor: rgb(74, 222, 128);
    --errorColor: rgb(248, 113, 113);

    --primaryButtonBackgroundColor: rgba(65, 116, 110, 1);
    --primaryButtonBorderColor: rgba(65, 116, 110, 1);
    --primaryButtonTextColor: rgba(243, 243, 243, 1);

    --secondaryButtonBackgroundColor: rgba(244, 244, 245, 0.03);
    --secondaryButtonBorderColor: rgba(244, 244, 245, 0.05);
    --secondaryButtonTextColor: rgba(244, 244, 245, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo';
    background-color: var(--bodyBackground) !important;
    font-weight: 400;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400 !important;
}

header .navbar {
    border-radius: 0.5rem;
    border: 1px solid var(--borderColor01);
    background: var(--backgroundColor005);
    padding: 1rem 2rem;
}

header .navbar span.navbar-brand,
.mobile-logo span.navbar-brand {
    color: var(--primaryTextColor);
    font-size: 1.7rem;
}

.logo {
    width: 11.27556rem;
    /* height: 3.9375rem;
    aspect-ratio: 180.41/63.00; */
}

img.logo:focus {
    outline: none;
}


header .navbar-collapse {
    margin-left: 3rem;
}

header .navbar a.nav-link,
.drawer-nav a {
    font-size: 1rem;
    /* text-align: center; */
    color: var(--primaryTextColor);
    text-decoration: none;
    line-height: 132%;
    /* padding-left: 1rem; */
}

.mobile-drawer-actions {
    padding: 1rem;
}

.nav-phone-icon,
.nav-phone-icon:hover,
.nav-phone-icon:active,
.nav-phone-icon:focus {
    display: flex;
    width: 2.8125rem;
    padding: 0.75rem;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-color: var(--backgroundColor005) !important;
    border-radius: 0.375rem;
    border: none !important;
}

.platform-access-btn,
.platform-access-btn:hover,
.platform-access-btn:active,
.platform-access-btn:focus {
    padding: 0.75rem 1.25rem;
    align-items: center;
    border-radius: 0.375rem;
    background: var(--backgroundColor005) !important;
    border: none !important;
    color: var(--primaryTextColor) !important;
    font-size: 1rem;
    line-height: 132%;
}


/* Drawer */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    opacity: 1;
    border-radius: 6px;
    padding: 0.75rem;
    background-color: var(--backgroundColor005);

    position: absolute;
    right: 2rem;
}

.hamburger span {
    width: 16px;
    height: 1px;
    background-color: var(--primaryButtonTextColor);
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 18rem;
    height: 100vh;

    background: var(--bodyBackground); 
    /* check */
    border-right: 1px solid var(--borderColor01);

    display: flex;
    flex-direction: column;

    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.drawer.active {
    left: 0;
}

.drawer.active .platform-access-btn {
    width: 100%;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem 1.25rem;
    border-bottom: 1px solid #1f1f1f;

    font-family: Archivo, sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.drawer-close {
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 1.75rem;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
}
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}


.section-div {
    display: flex;
    /* padding: 5rem 16rem; */
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 4rem;
    /* max-width: 72rem; */
    max-width: 96rem;
    margin: 0 auto;
}

/* footer-sectio */

.footer-box {
    opacity: 1;
    border-radius: 0.5rem;
    background-color: var(--backgroundColor005);
    border: 1px solid var(--borderColor01);
    padding: 2rem;
}

.footer-brand .fw-medium {
    font-size: 1.9rem;
    color: var(--primaryTextColor);
}

.footer-sub {
    font-size: 1rem;
    color: var(--secondaryTextColor);
    line-height: 132%;
}

.footer-meta p {
    font-size: 1rem;
    color: var(--secondaryTextColor);
}

.footer-title {
    font-size: 1rem;
    color: var(--secondaryTextColor);
    margin-bottom: 1.25rem;
    line-height: 132%;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin: 0rem;
    margin-bottom: 0.5rem;
}

.footer-list a {
    font-size: 1rem;
    text-align: center;
    color: var(--primaryTextColor);
    text-decoration: none;
    line-height: 132%;
    padding: 0.25rem 0rem;
}

.footer-bottom {
    margin-top: 1rem;
}

.footer-bottom small {
    font-size: 0.875rem;
    color: var(--secondaryTextColor);
    line-height: 132%;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--secondaryTextColor);
    text-decoration: none;
    line-height: 132%;
}

section.container.footer-contact-us-section {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

section .primary-btn-large-bg,
section .primary-btn-large-bg:hover,
section .primary-btn-large-bg:active,
section .primary-btn-large-bg:focus {
    width: 100%;
    background-color: var(--primaryButtonBackgroundColor) !important;
    color: var(--primaryButtonTextColor) !important;
    border: 1px solid var(--primaryButtonBorderColor) !important;
    display: flex;
    padding: 2.125rem 2rem 2rem 2rem;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex: 1 0 0;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    line-height: 124%;
}

section .default-btn-large-bg,
section .default-btn-large-bg:hover,
section .default-btn-large-bg:active,
section .default-btn-large-bg:focus {
    background: var(--secondaryButtonBackgroundColor) !important;
    color: var(--secondaryButtonTextColor) !important;
    border: 1px solid var(--secondaryButtonBorderColor) !important;
    width: 100%;
    display: flex;
    padding: 2.125rem 2rem 2rem 2rem;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex: 1 0 0;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    line-height: 124%;
}

section .primary-btn-large-bg .btn-text,
section .default-btn-large-bg .btn-text {
    float: left;
    text-align: left;
    width: calc(100% - 3rem);
}

section .primary-btn-large-bg .btn-icon,
section .default-btn-large-bg .btn-icon {
    float: right;
    text-align: right;
    width: 3rem;
}

.footer-section,
.footer-contact-us-section {
    margin-bottom: 0.5rem;
}



/* Splash screen */
#splash {
  position: fixed;
  inset: 0;
  background: var(--bodyBackground);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 3s ease;
  opacity: 1;
}

#splash.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hide main content initially */
#main-content {
  display: none;
}

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

.splash-content img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media (min-width: 969px) {
    .drawer,
    .drawer-overlay {
        display: none;
    }
}
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    header .navbar {
        padding: 1rem;
    }

    .hamburger { 
        right: 1rem;
    }
    
    header .navbar span.navbar-brand,
    .mobile-logo span.navbar-brand {
        font-size: 1.25rem;
    }

    .nav-right-actions {
        display: none !important;
    }

    .footer-brand .fw-medium {
        font-size: 1.25rem;
    }

    .footer-meta {
        margin-top: 0rem !important;
    }

    .footer-brand-col {
        margin-top: 3rem !important;
    }

    .footer-contact-us-right-col {
        margin-top: 0.25rem !important;
    }

    section .primary-btn-large-bg,
    section .default-btn-large-bg {
        padding: 1.625rem 1.5rem 1.5rem 1.5rem;
    }
}



#scrollTopBtn,#scrollTopBtn:hover {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  font-size: 20px;
  cursor: pointer;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
}

/* Visible state */
#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Optional hover */
#scrollTopBtn:hover {
  background: var(--iconBackgroundColor);
}




/* @media (min-width: 768px) {
    .section-div {
    }
} */

@media (min-width: 968px) {
    .section-div {
        max-width: 72rem;
    }
}

@media (min-width: 1200px) {
    .section-div {
        max-width: 72rem;
    }
}

@media (min-width: 1440px) {
    .section-div {
        max-width: 72rem;
    }
}

@media (min-width: 1600px) {
    .section-div {
        max-width: 80rem;
    }
}

@media (min-width: 1921px) {
    .section-div {
        max-width: 96rem;
    }
}

@media (min-width: 2150px) {
    .section-div {
        max-width: 96rem;
    }
}

@media (min-width: 2240px) {
    .section-div {
        max-width: 96rem;
    }
}

@media (min-width: 2360px) {
    .section-div {
        max-width: 112rem;
    }
}

@media (min-width: 2561px) {
    .section-div {
        max-width: 120rem;
    }
}

