
.light-mode {
    --theme-bg-color: rgb(255 255 255 / 31%);
    --theme-color: #3c3a3a;
    --inactive-color: #333333;
    --button-inactive: #3c3a3a;
    --search-bg: rgb(255 255 255 / 31%);
    --dropdown-bg: #f7f7f7;
    --overlay-bg: rgb(255 255 255 / 30%);
    --dropdown-hover: rgb(236 236 236);
    --border-color: rgb(255 255 255 / 35%);
    --popup-bg: rgb(255 255 255);
    --hover-menu-bg: rgba(255 255 255 / 35%);
    --scrollbar-bg: rgb(255 253 253 / 57%);
    --content-title-color: --theme-color;
  }

.light-mode .dark-light svg {
    fill: transparent;
    stroke: var(--theme-color);
  }
  .light-mode .profile-img {
    border: 2px solid var(--theme-bg-color);
  }
  .light-mode .content-section ul {
    background-color: var(--theme-bg-color);
  }
  .light-mode .pop-up__title {
    border-color: var(--theme-color);
  }
  .light-mode .dropdown.is-active ul {
    background-color: rgba(255, 255, 255, 0.94);
  }
  .light-mode .logo {
    color: black;
  }

  .light-mode .app {
    color: black;
  }
  
  .light-mode .parent-2 a{
    color: black;
  }
  body.light-mode:before,
  body.light-mode .video-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-backdrop-filter: saturate(3);
            backdrop-filter: saturate(3);
  }