.off-canvas {
position: fixed;
top: 0;
left: calc(100% + 2rem);
width: 100vw;
height: auto;
transition: transform 0.4s cubic-bezier(0.34, 1.16, 0.64, 1);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
border-radius: 1rem;
overflow: hidden;
}
.off-canvas.toggled {
transform: translateX(calc(-100% - 3rem));
}
.off-canvas__inner {
width: 100%;
max-width: 100%;
height: 100%;
z-index: 2;
overflow-y: auto;
}
.off-canvas__backdrop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
@media screen and (max-width: 768px) {
#header_side_panel {
width: 100%;
height: 100dvh;
}
} .header {
width: 100%;
height: 60px;
display: flex;
flex-direction: column;
justify-content: center;
position: fixed;
top: 2rem;
z-index: 999;
}
.header__nav {
background: rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 1.5rem;
}
.header__nav:hover {
border: 1px solid rgba(255, 255, 255, 0.7);
}
.header__menu-list .menu-item a {
font-family: "Satoshi", sans-serif;
font-weight: normal;
text-transform: uppercase;
font-size: 14px;
}
.header__menu-list .menu-item a:hover {
font-style: italic;
}
.header__hamburger {
position: relative;
padding: 1.3rem 0;
overflow: hidden;
}
.header__hamburger::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #589bffb9;
border-top-right-radius: 1.5rem;
border-bottom-right-radius: 1.5rem;
clip-path: inset(0 100% 0 0);
transition: clip-path 0.4s ease;
}
.header__hamburger:hover::before,
.header__hamburger.animated::before {
clip-path: inset(0 0 0 0);
}
.header__hamburger hr {
height: 2px;
background-color: #fff;
}
.header__menu .header__menu-list li a {
color: #fff;
text-decoration: none;
}
.header__hamburger,
.header__nav-col,
.header__card {
align-self: stretch;
}
.header__hamburger,
.header__card {
justify-content: center;
align-items: center;
}
.header__search-icon {
width: 10rem;
flex-shrink: 0;
}
.header__search-icon:hover .header__search-icon-inner {
background-color: rgba(255, 255, 255, 0.1);
}
.header__theme-switch {
width: 4rem;
flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
.header__search-icon {
width: 4rem;
}
}
@media screen and (max-width: 640px) {
.header {
height: 48px;
}
.header__hamburger {
padding: 1.25rem 0;
}
.header__hamburger::before {
display: none;
}
}  .search-dialog {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 10vh;
}
.search-dialog__backdrop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(8px);
}
.search-dialog__container {
position: relative;
width: 90%;
max-width: 600px;
background: #000;
border: 1px solid #333;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
animation: searchDialogSlideIn 0.3s ease-out;
}
@keyframes searchDialogSlideIn {
from {
opacity: 0;
transform: translateY(-20px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.search-dialog__header {
background: #111;
border-bottom: 1px solid #333;
padding: 0;
}
.search-dialog__search-bar {
display: flex;
align-items: center;
padding: 1rem;
gap: 0.75rem;
}
.search-dialog__search-icon {
width: 20px;
height: 20px;
color: #888;
flex-shrink: 0;
}
.search-dialog__input {
flex: 1;
background: transparent;
border: none;
outline: none;
color: #fff;
font-size: 1.1rem;
font-family: inherit;
}
.search-dialog__input::placeholder {
color: #666;
}
.search-dialog__close {
background: none;
border: none;
color: #888;
cursor: pointer;
padding: 0.25rem;
border-radius: 4px;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.search-dialog__close:hover {
color: #fff;
background: #333;
}
.search-dialog__close svg {
width: 18px;
height: 18px;
}
.search-dialog__body {
max-height: 60vh;
overflow-y: auto;
background: #000;
}
.search-results {
padding: 1.5rem;
}
.search-section {
margin-bottom: 2rem;
}
.search-section:last-child {
margin-bottom: 0;
}
.search-section__title {
color: #fff;
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0 0 0.75rem 0;
opacity: 0.8;
}
.search-section__list {
list-style: none;
margin: 0;
padding: 0;
}
.search-section__list li {
margin-bottom: 0.5rem;
}
.search-link {
display: block;
color: #ccc;
text-decoration: none;
padding: 0.5rem 0.75rem;
border-radius: 6px;
transition: all 0.2s ease;
font-size: 0.95rem;
}
.search-link:hover {
background: #1a1a1a;
color: #fff;
transform: translateX(4px);
}
.search-result-item .search-link {
padding: 0.75rem;
border: 1px solid transparent;
}
.search-result-item .search-link:hover {
border-color: #333;
transform: none;
}
.search-result__title {
font-weight: 600;
margin-bottom: 0.25rem;
color: #fff;
}
.search-result__excerpt {
font-size: 0.875rem;
color: #999;
margin-bottom: 0.25rem;
line-height: 1.4;
}
.search-result__meta {
font-size: 0.75rem;
color: #666;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.search-loading,
.search-no-results,
.search-error {
text-align: center;
padding: 2rem;
color: #888;
font-style: italic;
}
.search-error {
color: #ff6b6b;
} body.search-dialog-open {
overflow: hidden;
} @media (max-width: 768px) {
.search-dialog {
padding-top: 5vh;
}
.search-dialog__container {
width: 95%;
margin: 0 auto;
}
.search-dialog__body {
max-height: 70vh;
}
.search-results {
padding: 1rem;
}
}  .vd-btn-primary {
--bg: #070708; --ring: rgba(255, 255, 255, 0.1);
--blue: rgba(56, 189, 248, 1); --blue-soft: rgba(56, 189, 248, 0.6);
--text: #fff;
padding: 1px;
background: #0f172a; color: var(--text);
text-decoration: none;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
isolation: isolate;
border: none;
} .vd-btn-glow {
inset: -1px; opacity: 0;
background: radial-gradient(
75% 120% at 0% 50%,
var(--blue-soft) 0%,
rgba(56, 189, 248, 0) 70%
)
left center / 200% 200% no-repeat,
radial-gradient(
75% 120% at 100% 50%,
var(--blue-soft) 0%,
rgba(56, 189, 248, 0) 70%
)
right center / 200% 200% no-repeat;
transition: opacity 0.5s ease;
} .vd-btn-inner {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
gap: 0.5rem;
border-radius: inherit;
background: var(--bg);
box-shadow: 0 0 0 1px var(--ring) inset;
} .vd-btn-underline {
position: absolute;
left: 1.125rem;
bottom: 0;
width: calc(100% - 2.25rem);
height: 1px;
background: linear-gradient(
to right,
rgba(16, 185, 129, 0),
rgba(16, 185, 129, 0.9),
rgba(16, 185, 129, 0)
);
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
} .vd-btn-primary:hover .vd-btn-glow {
opacity: 1;
animation: vd-glow-sweep 0.7s ease-out both 1;
}
.vd-btn-primary:hover .vd-btn-underline {
opacity: 0.4;
} .vd-btn-primary:focus-visible .vd-btn-inner {
outline: 2px solid rgba(56, 189, 248, 0.6);
outline-offset: 2px;
border-radius: inherit;
} @keyframes vd-glow-sweep {
0% {
background-position: -40% 50%, 140% 50%;
opacity: 0;
}
20% {
opacity: 1;
}
100% {
background-position: 15% 50%, 85% 50%;
opacity: 1;
}
} @media (prefers-reduced-motion: reduce) {
.vd-btn-primary:hover .vd-btn-glow {
animation: none;
}
} .hero__hed,
.hero__slug {
backface-visibility: hidden;
transform-style: preserve-3d;
will-change: transform;
}
.grid-container {
position: relative;
width: 100%;
height: 100dvh;
overflow: hidden;
}
.animated-grid {
width: 100%;
height: 100%;
position: relative;
} :root {
--gradient-main-width: 35vw;
--gradient-main-height: 50vw;
--gradient-small-width: 15vw;
--gradient-translate-y: -22vw;
}
.spotlight-container {
position: absolute;
top: 0;
width: 100vw;
height: 100vh;
z-index: 40;
pointer-events: none;
}
.spotlight-left {
left: 0;
}
.spotlight-right {
right: 0;
}
.gradient-main {
position: absolute;
width: var(--gradient-main-width);
height: var(--gradient-main-height);
}
.gradient-small {
position: absolute;
width: var(--gradient-small-width);
height: var(--gradient-main-height);
}
.left-main {
top: 0;
left: 0;
transform: translateY(var(--gradient-translate-y)) rotate(-45deg);
background: radial-gradient(
68.54% 68.72% at 55.02% 31.46%,
hsla(210, 100%, 85%, 0.08) 0,
hsla(210, 100%, 55%, 0.02) 50%,
hsla(210, 100%, 45%, 0) 80%
);
}
.left-small-1 {
top: 0;
left: 0;
transform: rotate(-45deg) translate(5%, -50%);
background: radial-gradient(
50% 50% at 50% 50%,
hsla(210, 100%, 85%, 0.06) 0,
hsla(210, 100%, 55%, 0.02) 80%,
transparent 100%
);
transform-origin: top left;
}
.left-small-2 {
top: 0;
left: 0;
transform: rotate(-45deg) translate(-180%, -70%);
background: radial-gradient(
50% 50% at 50% 50%,
hsla(210, 100%, 85%, 0.04) 0,
hsla(210, 100%, 45%, 0.02) 80%,
transparent 100%
);
transform-origin: top left;
}
.right-main {
top: 0;
right: 0;
transform: translateY(var(--gradient-translate-y)) rotate(45deg);
background: radial-gradient(
68.54% 68.72% at 55.02% 31.46%,
hsla(210, 100%, 85%, 0.08) 0,
hsla(210, 100%, 55%, 0.02) 50%,
hsla(210, 100%, 45%, 0) 80%
);
}
.right-small-1 {
top: 0;
right: 0;
transform: rotate(45deg) translate(-5%, -50%);
background: radial-gradient(
50% 50% at 50% 50%,
hsla(210, 100%, 85%, 0.06) 0,
hsla(210, 100%, 55%, 0.02) 80%,
transparent 100%
);
transform-origin: top right;
}
.right-small-2 {
top: 0;
right: 0;
transform: rotate(45deg) translate(180%, -70%);
background: radial-gradient(
50% 50% at 50% 50%,
hsla(210, 100%, 85%, 0.04) 0,
hsla(210, 100%, 45%, 0.02) 80%,
transparent 100%
);
transform-origin: top right;
}
@media (max-width: 768px) {
:root {
--gradient-main-width: 38vw;
--gradient-main-height: 50vw;
--gradient-small-width: 16vw;
--gradient-translate-y: -20vw;
}
}
@media (max-width: 480px) {
:root {
--gradient-main-width: 42vw;
--gradient-main-height: 50vw;
--gradient-small-width: 18vw;
--gradient-translate-y: -18vw;
}
} .marquee {
display: flex;
width: 100%;
gap: 1rem;
overflow: hidden;
position: static;
}
.marquee-content {
display: flex;
justify-content: space-around;
align-items: center;
gap: 1rem;
overflow: visible;
font-size: clamp(3.75rem, -0.2113rem + 12.6761vw, 15rem);
line-height: 1;
font-weight: bold;
color: transparent;
-webkit-text-stroke: 2px #f0bd6a;
}
@keyframes scroll {
from {
transform: translateX(8rem);
}
to {
transform: translateX(calc(-200% - 8rem));
}
}
.scroll {
animation: scroll 24s linear infinite;
}
.reverse {
animation-direction: reverse;
}
.marquee-image {
-webkit-transform: translateZ(0);
transform: translateZ(0);
} .img-reveal-container {
visibility: hidden;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.img-reveal-container .img-reveal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ada996;
background: -webkit-linear-gradient(
to right,
#eaeaea,
#dbdbdb,
#f2f2f2,
#ada996
);
background: linear-gradient(to right, #eaeaea, #dbdbdb, #f2f2f2, #ada996);
z-index: 1;
}
body.light-mode .img-reveal-container .img-reveal-overlay {
background: #111;
}
.img-reveal-container img {
width: 100%;
height: 100%;
object-fit: cover;
transform-origin: left;
aspect-ratio: 3 / 4;
z-index: 2;
visibility: hidden;
position: relative;
} .glowing-box-animation {
--c: #171717;
--p: 10%;
background: linear-gradient(var(--c), var(--c)) padding-box,
conic-gradient(
from var(--gradient-angle, 0deg),
transparent,
white var(--p),
transparent calc(var(--p) * 2)
)
border-box;
border: 1px solid transparent;
padding: 1rem 2rem;
} .animated-tooltip-container {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.tooltip-item {
position: relative;
margin-right: -16px;
cursor: pointer;
}
.tooltip-item:last-child {
margin-right: 0;
}
.avatar-image {
width: 56px;
height: 56px;
border-radius: 50%;
border: 2px solid white;
object-fit: cover;
object-position: top;
transition: all 0.5s ease;
position: relative;
z-index: 1;
}
.tooltip-item:hover .avatar-image {
transform: scale(1.05);
z-index: 30;
}
.tooltip-content {
position: absolute;
top: -64px;
left: 50%;
transform: translateX(-50%);
background: black;
color: white;
padding: 8px 16px;
border-radius: 6px;
font-size: 12px;
white-space: nowrap;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
z-index: 50;
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.tooltip-content.active {
opacity: 1;
visibility: visible;
}
.tooltip-name {
font-size: 14px;
font-weight: bold;
margin-bottom: 2px;
position: relative;
z-index: 30;
}
.tooltip-designation {
font-size: 12px;
opacity: 0.9;
} .gradient-line-1,
.gradient-line-2 {
position: absolute;
bottom: -1px;
height: 1px;
z-index: 30;
}
.gradient-line-1 {
left: 40px;
right: 40px;
width: 20%;
background: linear-gradient(to right, transparent, #10b981, transparent);
}
.gradient-line-2 {
left: 40px;
width: 40%;
background: linear-gradient(to right, transparent, #0ea5e9, transparent);
}   .text-flip-word {
display: block;
}
.text-flip-letter {
display: inline-block;
opacity: 0;
filter: blur(10px);
transition: opacity 0.6s ease, filter 0.6s ease;
}
.text-flip-letter.animate-in {
opacity: 1;
filter: blur(0px);
} .demo-container {
padding: 50px 20px;
text-align: center;
}
.demo-title {
font-size: 1.5rem;
margin-bottom: 2rem;
color: #888;
} .pointer-highlight {
position: relative;
display: inline-flex;
margin: 0 8px;
padding: 8px 20px;
}
.pointer-highlight-content {
position: relative;
z-index: 10;
}
.pointer-highlight-border {
position: absolute;
inset: 0;
border: 2px solid #3b82f6;
background: rgba(59, 130, 246, 0.1);
border-radius: 8px;
z-index: 0;
opacity: 0;
transform: scale(0.95);
}
.pointer-highlight-pointer {
position: absolute;
width: 20px;
height: 20px;
color: #3b82f6;
opacity: 0;
transform: rotate(-90deg);
z-index: 5;
} .bottom-gradient {
position: absolute;
bottom: 0;
z-index: 41;
height: 1px;
width: 100%;
background: linear-gradient(to right, transparent, #374151, transparent);
}  .intro-pinned-section {
position: relative;
width: 100%;
height: 300dvh; } .intro-pinned-content {
position: sticky;
top: 0;
left: 0;
width: 100%;
height: 100dvh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
box-sizing: border-box;
} .intro-pinned-section .intro-paragraph {
max-width: 1200px;
width: 90%;
text-align: center;
line-height: 1.4;
color: white;
} .intro-word {
position: relative;
display: inline-block;
margin-right: 0.1em;
}
.intro-word:last-child {
margin-right: 0;
} .intro-char {
display: inline-block;
position: relative;
} .char-shadow {
color: rgba(255, 255, 255, 0.15);
user-select: none;
} .char-main {
position: absolute;
top: 0;
left: 0;
color: white;
opacity: 0;
will-change: opacity;
} .intro-images-section {
position: relative;
z-index: 1;
margin-top: -16rem;
}
@media screen and (min-width: 960px) and (max-width: 1920px) {
.intro-images-section {
margin-top: -8rem;
}
}
.intro-image-tile {
width: calc(50% - 3rem);
}  @media (max-width: 1024px) {
.intro-pinned-section {
height: 250dvh;
}
.intro-pinned-content {
padding: 1.5rem;
}
.intro-pinned-section .intro-paragraph {
width: 95%;
max-width: 800px;
}
} @media (max-width: 768px) {
.intro-pinned-section {
height: 200dvh;
}
.intro-pinned-content {
padding: 1rem;
}
.intro-pinned-section .intro-paragraph {
width: 100%;
font-size: clamp(1.5rem, 6vw, 2.5rem);
line-height: 1.5;
}
.intro-image-tile {
width: 100%;
}
} @media (max-width: 480px) {
.intro-pinned-section {
height: 180dvh;
}
.intro-pinned-section .intro-paragraph {
font-size: clamp(1.5rem, 5vw, 2rem);
}
} #voltera-footer {
color: #fff;  height: 600px;
clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
}
.footer__inner {
border-top: 1px solid #2b2b2b;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
}
.footer__main {
height: calc(600px - 75px);
pointer-events: none;
} .footer__logo svg {
filter: drop-shadow(0 0 10px rgba(45, 116, 248, 0.3));
} .footer__link {
color: #999;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
pointer-events: auto;
}
.footer__link:hover {
color: #fff;
transform: translateX(4px);
}
.footer__legal-link {
color: #666;
text-decoration: none;
transition: color 0.3s ease;
}
.footer__legal-link:hover {
color: #ccc;
} .grid-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
background-size: 40px 40px;
background-image: linear-gradient(
to right,
rgba(42, 42, 42, 0.2) 1px,
transparent 1px
),
linear-gradient(rgba(42, 42, 42, 0.2) 1px, transparent 1px); }  @media (max-width: 1440px) {
#voltera-footer {
height: 585px;
}
}
@media (max-width: 1024px) {
#voltera-footer {
height: 660px;
}
.footer__main {
height: calc(670px - 75px);
pointer-events: none;
}
}
@media (max-width: 768px) {
#voltera-footer {
height: 750px;
}
.footer__main {
height: 680px;
}
}
@media (max-width: 640px) {
#voltera-footer {
height: 800px;
}
.footer__main {
height: 720px;
}
} body.light-mode,
body.light-mode .bg-black { background-color: #ffffff !important;
}
body.light-mode .bg-near-black {
background-color: #f8f9fa !important;
}
body.light-mode .bg-dark-gray {
background-color: #e9ecef !important;
}
body.light-mode .bg-mid-gray {
background-color: #dee2e6 !important;
} body.light-mode .white {
color: #000000 !important;
}
body.light-mode .near-white {
color: #212529 !important;
}
body.light-mode .light-gray {
color: #495057 !important;
}
body.light-mode .moon-gray {
color: #6c757d !important;
}
body.light-mode .silver {
color: #868e96 !important;
} body.light-mode .b--white {
border-color: #000000 !important;
}
body.light-mode .b--near-white {
border-color: #212529 !important;
}
body.light-mode .b--light-gray {
border-color: rgba(62, 62, 62, 0.2) !important;
}
body.light-mode .header-border-color {
border-color: rgba(62, 62, 62, 0.2) !important;
}
body.light-mode .header__search-icon-inner svg {
stroke: rgba(0, 0, 0, 0.5) !important;
} body.light-mode .header__nav {
background-color: #ffffff78;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.3);
}
body.light-mode .header__menu .header__menu-list li a {
color: #111 !important;
} body.light-mode .header__logo svg path[fill="#EEEEEE"],
body.light-mode .footer__logo svg path[fill="#EEEEEE"] {
fill: #000;
}
body.light-mode .header__logo svg path[fill="#2D74F8"],
body.light-mode .footer__logo svg path[fill="#2D74F8"] {
fill: #0047fb;
} .dark-mode .header__theme-switch:hover,
.dark-mode .header__theme-switch:focus {
background-color: #d1a824;
} .light-mode .header__theme-switch:hover,
.light-mode .header__theme-switch:focus {
background-color: #3b5998;
} body.light-mode #theme-toggle {
stroke: #000000;
} body.light-mode #header_side_panel .off-canvas__inner {
background-color: #ffffff !important;
color: #000000 !important;
} body,
.bg-black,
.bg-near-black,
.bg-dark-gray,
.white,
.near-white,
.light-gray,
.header,
.header__nav {
transition: background-color 0.3s ease, color 0.3s ease,
border-color 0.3s ease;
}   body.light-mode .text-white {
color: #000000 !important;
}
body.light-mode .bg-primary {
background-color: #ffffff !important;
color: #000000 !important;
}
body.light-mode .section-subtitle {
color: rgba(10, 10, 10, 0.8) !important;
}
body.light-mode .header__hamburger hr {
background-color: #000 !important;
height: 3px !important;
border: none !important;
}
body.light-mode .footer__link,
body.light-mode .footer__description,
body.light-mode .task-meta,
body.light-mode .project-description,
body.light-mode .stat-label,
body.light-mode .card-footer a span {
color: #222 !important;
}
body.light-mode .footer__link:hover {
color: #000 !important;
}
body.light-mode .header__theme-switch svg {
stroke: #3b5998 !important;
}
body.light-mode .header__theme-switch:hover svg {
stroke: #eee !important;
}
body.light-mode .intro-paragraph {
color: #000 !important;
}
body.light-mode .char-shadow {
color: #555 !important;
opacity: 0.5 !important;
}
body.light-mode .grid-line-vertical,
body.light-mode .grid-line-horizontal {
filter: brightness(0);
}
body.light-mode .b--white-30 {
border-color: rgba(0, 0, 0, 0.3) !important;
}
body.light-mode .phone-screen,
body.light-mode .services__browser-screen {
background: linear-gradient(135deg, #aaaaaa 0%, #4e4e4e 100%) !important;
}
body.light-mode .services__browser-top-bar {
background-color: rgb(217 217 217) !important;
}
body.light-mode .nav-tab,
body.light-mode .sidebar-title,
body.light-mode .sidebar-subtitle {
color: #fff !important;
}
body.light-mode .panel-subtitle,
body.light-mode .task-title {
color: #000 !important;
}
body.light-mode .team-animation-container {
border: 1px solid rgb(0 0 0 / 50%) !important;
}
body.light-mode .kanban-column,
body.light-mode .case-study-card {
background-color: #d9d9d9 !important;
}
body.light-mode .todo-header {
background: rgba(231, 124, 124, 0.5) !important;
color: #d91010 !important;
}
body.light-mode .progress-header {
background: rgba(238, 219, 163, 0.2) !important;
color: #ffb300 !important;
}
body.light-mode .done-header {
background: rgb(137 211 164 / 20%) !important;
color: #048733 !important;
}
body.light-mode .task-card {
background: rgb(28 28 28 / 13%) !important;
}
body.light-mode .cta-section {
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2) !important;
}
body.light-mode .blog-card-hover {
background-color: #d9d9d9;
}
body.light-mode .grid-background,
body.light-mode .animated-grid {
opacity: 0.4 !important;
}
body.light-mode .header__hamburger-close > div,
body.light-mode .header__hamburger-close .slider-controls {
filter: invert(1) !important;
}
body.light-mode .header__search-icon:hover .header__search-icon-inner {
background-color: rgba(2, 2, 2, 0.1);
}
body.light-mode .char-main {
color: #000 !important;
}
body.light-mode .mobile-container {
border-radius: 1.3rem;
}
body.light-mode .panel-header {
color: #eee;
}
body.light-mode .slider-btn {
border: 1px solid rgba(1, 1, 1, 1);
background: rgba(255, 255, 255, 1);
}
body.light-mode .slider-btn svg {
fill: #000;
}
@media (max-width: 640px) {
#header_side_panel {
left: 113%;
width: 100% !important;
height: 100dvh !important;
}
}