.elementor-48568 .elementor-element.elementor-element-efb3a2c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-efb3a2c:not(.elementor-motion-effects-element-type-background), .elementor-48568 .elementor-element.elementor-element-efb3a2c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-365a00c );}.elementor-48568 .elementor-element.elementor-element-efb3a2c > .elementor-shape-bottom svg, .elementor-48568 .elementor-element.elementor-element-efb3a2c > .e-con-inner > .elementor-shape-bottom svg{width:calc(100% + 1.3px);height:0px;}.elementor-48568 .elementor-element.elementor-element-2008ed1{width:100%;max-width:100%;}.elementor-48568 .elementor-element.elementor-element-a284657{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-d0c56b1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-4a9c9ca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-bdc5d98{width:100%;max-width:100%;}.elementor-48568 .elementor-element.elementor-element-95b0961{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-db3eca3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48568 .elementor-element.elementor-element-1f3b21f{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-2008ed1 */.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #F3F5F8;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    pointer-events: none;
}

.orbital-bg {
    width: 100%;
    height: 100%;
}

.orbit {
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 5,5;
}

.outer-orbit {
    stroke: #E6007E;
    opacity: 0.5;
}

.middle-orbit {
    stroke: #FFD100;
    opacity: 0.5;
}

.inner-orbit {
    stroke: #009FE3;
    opacity: 0.5;
}

.dot {
    opacity: 1;
}

.outer-dot {
    fill: #E6007E;
}

.middle-dot {
    fill: #FFD100;
}

.inner-dot {
    fill: #009FE3;
}

.float-dot {
    opacity: 0.8;
}

.float-dot:nth-child(4n + 1) { fill: #E6007E; }
.float-dot:nth-child(4n + 2) { fill: #FFD100; }
.float-dot:nth-child(4n + 3) { fill: #009FE3; }
.float-dot:nth-child(4n + 4) { fill: #E6007E; }

.floating-dots {
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, 20px); }
    50% { transform: translate(20px, -20px); }
    75% { transform: translate(20px, 20px); }
}

.hero-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 8rem 1rem;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #111827;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: #318DDE;
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
    white-space: nowrap;
}

.hero-button:hover {
    background: #E80274;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.2);
    color: white;
}

.button-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-button:hover .button-arrow {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-container {
        padding: 6rem 1rem;
    }

    .hero-button {
        padding: 1rem 2rem;
        width: auto;
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b5a4b1c */.titc-features {
    padding: 6rem 1rem;
    background-color: #F3F5F8;
}

.titc-features-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: #FCD91E;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-card {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -2s;
}

.feature-card:nth-child(3) {
    animation-delay: -4s;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .titc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .titc-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .titc-features {
        padding: 4rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0bdcd8d */.global-presence {
    padding: 6rem 1rem;
    background-color: #F3F5F8;
}

.global-content {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.global-info {
    padding-right: 2rem;
}

.global-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.global-text {
    color: #4b5563;
    line-height: 1.7;
}

.global-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #318DDE;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.sectors-grid {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.sectors-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    background-color: white;
    color: #061D41;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.05);
}

.pill:hover {
    background-color: #E80274;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

/* Animation for pills */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pill {
    animation: fadeIn 0.5s ease forwards;
}

/* Stagger the animations */
.pill:nth-child(1) { animation-delay: 0.1s; }
.pill:nth-child(2) { animation-delay: 0.2s; }
.pill:nth-child(3) { animation-delay: 0.3s; }
.pill:nth-child(4) { animation-delay: 0.4s; }
.pill:nth-child(5) { animation-delay: 0.5s; }
.pill:nth-child(6) { animation-delay: 0.6s; }
.pill:nth-child(7) { animation-delay: 0.7s; }
.pill:nth-child(8) { animation-delay: 0.8s; }
.pill:nth-child(9) { animation-delay: 0.9s; }
.pill:nth-child(10) { animation-delay: 1s; }
.pill:nth-child(11) { animation-delay: 1.1s; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .global-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .global-info {
        padding-right: 0;
    }

    .global-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .global-presence {
        padding: 4rem 1rem;
    }

    .global-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        align-items: center;
        text-align: center;
    }

    .global-text p {
        font-size: 1rem;
    }

    .sectors-grid {
        padding: 1.5rem;
    }

    .pills-container {
        gap: 0.5rem;
    }

    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdc5d98 */.trusted-section {
    padding: 6rem 1rem;
    background-color: #F3F5F8;
    position: relative;
    overflow: hidden;
}

.trusted-container {
    max-width: 1140px;
    margin: 0 auto;
}

.trusted-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.trusted-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.logo-item {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(100%);
}

/* Staggered animation for logos */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation delays for each item */
.logo-item:nth-child(5n + 1) { animation-delay: 0.1s; }
.logo-item:nth-child(5n + 2) { animation-delay: 0.2s; }
.logo-item:nth-child(5n + 3) { animation-delay: 0.3s; }
.logo-item:nth-child(5n + 4) { animation-delay: 0.4s; }
.logo-item:nth-child(5n + 5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trusted-title {
        font-size: 2rem;
    }

    .logo-item {
        padding: 1rem;
        height: 80px;
    }

    .logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 4rem 1rem;
    }

    .logo-grid {
        gap: 1rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c9ab73f */.services-split {
    padding: 6rem 1rem;
    background: 
}

.split-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.statement-column {
    padding-right: 2rem;
}

.impact-statement {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 2rem;
}

.impact-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-title {
    font-size: 1rem;
    font-weight: 600;
    color: #318DDE;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.service-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.service-arrow {
    color: #4f46e5;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #E80274;
    color: white;
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.1);
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .statement-column {
        padding-right: 0;
    }

    .impact-statement {
        font-size: 2.75rem;
    }
}

@media (max-width: 640px) {
    .services-split {
        padding: 4rem 1rem;
    }

    .impact-statement {
        font-size: 2.25rem;
    }

    .impact-description {
        font-size: 1.125rem;
    }

    .service-item {
        padding: 0.875rem 1.25rem;
    }

    .service-text {
        font-size: 1rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1f3b21f */.podcast-section {
    padding: 6rem 1rem;
    background-color: #F3F5F8;
    overflow: hidden;
}

.podcast-container {
    max-width: 1140px;
    margin: 0 auto;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.podcast-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.podcast-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.podcast-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #318DDE;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.guest-cloud {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cloud-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.guest-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.guest-name {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border-color: #061D41;
    background: #F3F5F8;
    color: #061D41;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.guest-name:hover {
    transform: translateY(-2px);
    background: #E80274;
    color: white;
}

/* Different sizes for visual hierarchy */
.size-1 { font-size: 0.875rem; }
.size-2 { font-size: 1rem; }
.size-3 { font-size: 1.125rem; }

/* Staggered animations */
.guest-name:nth-child(3n + 1) { animation-delay: -2s; }
.guest-name:nth-child(3n + 2) { animation-delay: -4s; }
.guest-name:nth-child(3n + 3) { animation-delay: -6s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}


.podcast-branding {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.podcast-logo {
    max-width: 200px;
    height: auto;
    border-radius: 0.5rem;
}

.podcast-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #009FE3;
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.podcast-cta:hover {
    background: #0082ba;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.2);
}

.button-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.podcast-cta:hover .button-arrow {
    transform: translateX(4px);
}

/* Mobile Responsiveness Additions */
@media (max-width: 768px) {
    .podcast-branding {
        align-items: center;
        text-align: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .podcast-logo {
        max-width: 180px;
    }

    .podcast-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .podcast-stats {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .podcast-title {
        font-size: 2rem;
    }

    .guest-names {
        gap: 0.75rem;
    }

    .guest-name {
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .podcast-section {
        padding: 4rem 1rem;
    }

    .podcast-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS */.global-network-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.network-animation {
    width: 100%;
    height: 100%;
}

.connection-path {
    fill: none;
    stroke: #4f46e5;
    stroke-width: 1;
    stroke-dasharray: 5;
    opacity: 0.3;
}

.main-path {
    animation: flowPath 30s linear infinite;
}

.secondary-path {
    animation: flowPath 40s linear infinite reverse;
}

.node {
    fill: #4f46e5;
    opacity: 0.5;
}

.float-dot {
    fill: #4f46e5;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.pulse {
    fill: #4f46e5;
    opacity: 0;
    transform-origin: center;
    animation: pulseDot 3s ease-out infinite;
}

/* Stagger animations */
.float-dot:nth-child(2) { animation-delay: -5s; }
.float-dot:nth-child(3) { animation-delay: -10s; }
.float-dot:nth-child(4) { animation-delay: -15s; }

.pulse:nth-child(2) { animation-delay: -1s; }
.pulse:nth-child(3) { animation-delay: -2s; }

@keyframes flowPath {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 20px);
    }
}

@keyframes pulseDot {
    0% {
        opacity: 0.6;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

/* Make sure all content sections have proper z-index and positioning */
.hero-section,
.services-section,
.about-section,
.team-section,
.cta-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Optional: Add subtle gradient overlays to sections for better contrast */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
    pointer-events: none;
    z-index: -1;
}/* End custom CSS */