.theme-switcher {
  position: fixed;
  z-index: 999999;
  bottom: 30px;
  right: 80px;
  /* Rounded sliders */
}

.theme-switcher .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 34px;
}

.theme-switcher .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.theme-switcher .slider::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
  background: white url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

.theme-switcher input:checked + .slider {
  background-color: #111111;
}

.theme-switcher input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #111111;
          box-shadow: 0 0 1px #111111;
}

.theme-switcher input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  transform: translateX(18px);
  background: white url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

.theme-switcher .slider.round {
  border-radius: 34px;
}

.theme-switcher .slider.round::before {
  border-radius: 50%;
}

.theme-light {
  --whiteColor: #ffffff;
  --blackColor: #242424;
  --paragraphColor: #666666;
}

.theme-light .white-logo {
  display: none;
}

.theme-light .black-logo {
  display: block;
}

.theme-light .brand-logo .black-logo {
  display: block;
}

.theme-light .brand-logo .white-logo {
  display: none;
}

.theme-dark {
  --whiteColor: #242424;
  --blackColor: #ffffff;
  --paragraphColor: #e4e4e4;
  --boxShadow:  rgba(60, 60, 60, 0.329) 0px 0px 10px;
}

.theme-dark .white-logo {
  display: block;
}

.theme-dark .black-logo {
  display: none;
}

.theme-dark .bg-f9faff {
  background-color: #000000;
}

.theme-dark .banner-bg1 {
  background-color: #182468;
}

.theme-dark .service-card .service-card-icon {
  border-bottom: 10px solid var(--fix-whiteColor);
}

.theme-dark .why-we-card .why-we-card-icon {
  border-bottom: 10px solid var(--fix-whiteColor);
}

.theme-dark .copyright {
  border-color: #eeeeee50;
}

.theme-dark .brand-logo .black-logo {
  display: none;
}

.theme-dark .brand-logo .white-logo {
  display: block;
}

.theme-dark .default-section-title-2 h6 {
  color: #0c0c0c8e;
}

.theme-dark .testimonial-2-bg::before {
  background-color: #001535e6;
}

.theme-dark .blog-quote, .theme-dark .blog-text-footer {
  background-color: #343434;
}

.theme-dark .contact-form-area form .form-control {
  border-color: #242424;
  background-color: #242424;
}
/*# sourceMappingURL=dark-mode.css.map */