:root {
    --Global-Color-BrandGray-Transparent-1-12: rgba(10, 10, 11, 0.12);
    --Global-Color-BrandWhite-Transparent-12: rgba(241, 242, 246, 0.12);
    --Global-Color-BrandPurple-Transparent-12: rgba(166, 172, 225, 0.12);
    --Global-Color-BrandGray-Transparent-4-40: rgba(93, 100, 130, 0.35);
    --Global-Color-BrandWhite-40: rgba(216, 231, 255, 0.35);
    --Global-Color-BrandGray-Transparent-4-20: #2e3241;
    --Global-Color-BrandWhite-20: #e0ecff;

    /* Light theme variables (default) */
    --Background-2-Normal: var(--Global-Color-BrandGray-20);
    --footer-background-color: rgba(241, 242, 246, 1);
    --footer-border-bottom-color: rgba(10, 10, 11, 0.04);
    --footer-text-color: #0a0b0e;
    --link-group-h3: rrgba(46, 50, 65, .55);
    --Stroke-Transparent-2-Normal: var(--Global-Color-BrandGray-Transparent-1-12);
    --Brand-Background-Normal: var(--Global-Color-BrandPurple-Transparent-12);
    --TextIcon-4-Normal: var(--Global-Color-BrandGray-Transparent-4-40);
    --TextIcon-2-Normal: var(--Global-Color-BrandGray-Transparent-4-20);
}

[data-theme="dark"] {
    --footer-background-color: rgba(10, 10, 11, 0.35);
    --footer-border-bottom-color: rgba(241, 242, 246, 0.04);
    --footer-text-color: #e0ecff;
    --link-group-h3: rgba(224, 236, 255, 0.55);
    --Stroke-Transparent-2-Normal: var(--Global-Color-BrandWhite-Transparent-12);
    --Brand-Background-Normal: var(--Global-Color-BrandPurple-Transparent-12);
    --TextIcon-4-Normal: var(--Global-Color-BrandWhite-40);
    --TextIcon-2-Normal: var(--Global-Color-BrandWhite-20);
}

.footer {
    padding: 150px 200px;
    width: 100%;
    background: var(--footer-background-color) !important;

    @media (max-width: 1280px) {
        padding: 100px 80px;
    }

    @media (max-width: 768px) {
        padding: 80px 24px;
    }
}

.video {
    width: 600px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        .footer-links {
            flex-direction: column;
            gap: 40px;
        }
    }
}

.logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    margin-left: -9px;
}

.logo img {
    width: 56px;
    height: 56px;
}

.text-logo {
    font-size: 25px;
    color: var(--footer-text-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.social-links a {
    text-decoration: none !important;
}

.social-links a i {
    font-size: 24px;
    color: var(--footer-text-color);

}

.copyright {
    color: var(--footer-text-color);
}

.footer-right .footer-links {
    display: flex;
    gap: 80px;
}

.footer-right .footer-links .link-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--link-group-h3) !important;
    margin-bottom: 16px;
}

.footer-right .footer-links .link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right .footer-links .link-group ul li {
    margin-bottom: 12px;
}

.footer-right .footer-links .link-group .global-font-body-large a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--footer-text-color);
    text-decoration: none;
}

.footer-right .footer-links .link-group .global-font-body-large a:hover {
    color: var(--footer-text-color);
}

.footer-right .footer-links .link-group .link-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--footer-text-color);
    margin-bottom: 1.25vw;
}

.themeSwitch {
    margin-top: 20px;
    width: 68px;
    height: 32px;
    border-radius: var(--Radius-Large, 8px);
    border: 1px solid var(--Stroke-Transparent-2-Normal, rgba(10, 10, 11, 0.12));
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 4px;


}

.themeSwitch .icon {
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    font-size: 1px;
    cursor: pointer;
    text-decoration: none;
}

.themeSwitch .icon-select {
    width: 25px;
    height: 25px;
    color: var(--TextIcon-2-Normal, #2e3241);
    text-align: center;
    background-color: var(--Brand-Background-Normal, #f5f6fa);
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
}

.themeSwitch .icon-unselect {
    width: 25px;
    height: 25px;
    color: var(--TextIcon-4-Normal, #a1a4b2);
    text-align: center;
    font-size: 18px;
    background-color: clean;
    text-decoration: none;
}