@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");

.card-black {
  background-color: #000;
}

body.dark .card-black {
  background-color: rgba(31, 31, 31, 0.5294117647) !important;
}

.card-white {
  background-color: #ffffff;
}

body.dark .card-white {
  background-color: #0d0d0a !important;
}

.card-gray {
  background-color: #f4f4f4;
}

body.dark .card-gray {
  background-color: rgba(31, 31, 31, 0.53) !important;
}

.card-special {
  background-color: #f4f4f4;
}

body.dark .card-special {
  background-color: #0d0d0a !important;
}

.text-main {
  color: #000000;
}

body.dark .text-main {
  color: #ffffff;
}

.text-inverse {
  color: #ffffff;
}

body.dark .text-inverse {
  color: #ffffff;
}

.text-sub {
  color: #424040;
}

body.dark .text-sub {
  color: #d8d8d8;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: #000000;
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.3s;
  margin: 0;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6,
body.dark p {
  color: #ffffff;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
}

a:hover {
  color: #000;
}

h2 {
  font-size: 2rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  padding: 24px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
  background-color: #ffffff;
  color: #000000;
}

body.dark {
  background-color: #0d0d0a;
  color: #ffffff;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-semi-bold {
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 48px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 16px;
  padding: 10px 15px;
}

.form-control:focus {
  background-color: #fff;
  border-color: #dddddd !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.bg-primary {
  background-color: #000 !important;
}

.text-primary {
  color: #000 !important;
}

.text-primary-2 {
  color: #047985;
}

.bg-primary-2 {
  background-color: #047985;
}

.border-primary {
  border-color: #000 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.input-icon.icon-right .icon {
  inset-inline-start: 20px;
}

.input-icon.icon-right .form-control {
  padding-inline-start: 55px;
}

.input-icon.icon-left .icon {
  inset-inline-end: 20px;
}

.input-icon.icon-left .form-control {
  padding-inline-end: 55px;
}

::-moz-placeholder {
  color: #c3c3c3 !important;
  font-size: 16px;
}

::placeholder {
  color: #c3c3c3 !important;
  font-size: 16px;
}

.btn {
  padding: 12px 14px;
  font-size: 0.875rem;
  border-radius: 30px;
  font-weight: 600;
}

.btn .icon {
  background-color: #000;
  width: 32px;
  height: 24px;
  border-radius: 30px;
  margin-inline-start: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover .icon {
  background-color: #fff;
}

.btn:hover .icon img {
  filter: brightness(0);
}

.btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
}

.btn-white {
}

.pagination .page-item {
  margin: 0px 7px;
}

.pagination .page-item .page-link {
  color: #172a30;
  background-color: transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  height: 36px;
  border: 0;
  min-width: 36px;
  border-radius: 8px;
}

.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #000 !important;
  border-color: #000;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #000 !important;
  border-color: #000;
}

@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }

  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.main-header {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: 3;
}

.main-header .navbar-tool .nav-item:not(:last-of-type) {
  margin-inline-end: 10px;
}

.main-header .navbar-tool .nav-item .nav-link {
  width: 50px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.dark .main-header .navbar-tool .nav-item .nav-link:hover {
  background-color: #000;
}

@media (min-width: 992px) {
  .main-header.internal .container {
    border-radius: 60px;
    transition: background-color 0.3s, color 0.3s;
  }

  .main-header .navbar-menu {
    background-color: #f4f4f4;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 50px;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s;
  }

  .main-header .navbar-menu .nav-item:not(:last-of-type) {
    position: relative;
  }

  .main-header .navbar-menu .nav-item:not(:last-of-type)::before {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    width: 1px;
    height: 11px;
    background-color: rgba(208, 206, 206, 0.4);
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }

  .main-header .toggleMenu {
    max-width: 20px;
  }
}

@media (max-width: 991px) {
  .main-header .navbar:not(.navbar-tool) .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }

  .main-header .navbar:not(.navbar-tool) .navbar-collapse .navbar-toggler {
    position: absolute;
    inset-inline-end: 32%;
    top: 3%;
    z-index: 22;
  }

  .main-header .navbar:not(.navbar-tool) .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }

  .main-header .navbar:not(.navbar-tool) .navbar-collapse.show {
    inset-inline-end: -30%;
  }

  .main-header .navbar:not(.navbar-tool) .navbar-collapse.show .ss {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
  }
}

.main-header
  .navbar:not(.navbar-tool)
  .navbar-collapse
  .navbar-nav:not(.navbar-tool)
  .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 9px 24px;
  font-size: 16px;
  color: #000;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

@media (min-width: 992px) {
  .main-header
    .navbar:not(.navbar-tool)
    .navbar-collapse
    .navbar-nav:not(.navbar-tool)
    .nav-item:hover
    .nav-link {
    background: #fff;
    color: #000;
  }
}

@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }

  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
}

.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 11px 15px !important;
    font-size: 12px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1400px;
    max-width: 100%;
  }
}

.section {
  padding: 30px 0px;
}

.section-content {
  border: 2px solid #f4f4f4;
  border-radius: 48px;
  padding: 65px;
}

.section-home {
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  align-items: end;
  border-radius: 40px;
  overflow: hidden;
  margin-top: -95px;
}

.section-home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.section-home .home-title {
  font-size: 4.5rem;
}

.section-home .btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
}

.section-home .btn-outline-white .icon {
  background-color: #fff;
}

.section-home .btn-outline-white .icon img {
  filter: brightness(0);
}

.section-home .btn-outline-white:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.section-home .home-content {
  border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
  margin-top: 38px;
}

@media (max-width: 991px) {
  .section-home {
    height: 100vh;
  }

  .section-home .home-title {
    font-size: 3.5rem;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}

.image-about img {
  border-radius: 32px;
}

.widget_item-card {
  margin-bottom: 25px;
  border-radius: 24px;
  padding: 24px;
}

.widget_item-card .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 80%;
  overflow: hidden;
  border-radius: 16px;
}

.widget_item-card .widget_item-image a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, #000 -42.38%, rgba(23, 42, 48, 0) 110.09%),
    linear-gradient(0deg, rgba(23, 42, 48, 0.2), rgba(23, 42, 48, 0.2));
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.widget_item-card .widget_item-image a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.5s ease-in-out;
}

.widget_item-card .widget_item-title {
  height: 32px;
  overflow: hidden;
}

/* .widget_item-card .widget_item-title a:hover {
  color: #000;
} */
.widget_item-card .widget_item-desc {
  height: 77px;
  overflow: hidden;
}

.widget_item-card:hover .widget_item-image a::before {
  opacity: 0.7;
}

.widget_item-card:hover .widget_item-image img {
  transform: scale(1.1);
}

.w-32 {
  width: 32px;
}

.section-projects .widget_item-card .widget_item-image {
  padding-top: 60%;
}

.swiper-action .swiper-next,
.swiper-action .swiper-prev {
  width: 42px;
  height: 32px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0d0d0a;
  cursor: pointer;
}

.swiper-action .swiper-next {
  margin-inline-start: 10px;
}

body.dark .swiper-action .swiper-next,
body.dark .swiper-action .swiper-prev {
  background-color: rgba(255, 255, 255, 0.031372549);
}

.widget_item-fields {
  padding: 24px;
  border-radius: 24px;
}

.widget_item-fields .widget_item-desc {
  height: 52px;
  overflow: hidden;
}

.widget_item-brand {
  border-radius: 24px;
}

.widget_item-brand .widget_item-image {
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.widget_item-brand .widget_item-image img {
  max-height: 130px;
}

.section-news .widget_item-card .widget_item-title {
  height: 77px;
  overflow: hidden;
}

.widget_item {
  padding: 24px;
  border-radius: 24px;
}

.quotes img {
  transform: rotate(180deg);
}

.widget_item-goal .widget_item-icon {
  height: 60px;
}

.widget_item-goal .widget_item-icon img {
  max-height: 60px;
}

.swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.63);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.bootstrap-select .dropdown-toggle .filter-option {
  text-align: start;
}

.dropdown-toggle::after {
  border: 0 !important;
  content: "\f078" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #929a9f;
  font-size: 10px;
  font-weight: bold;
}

.bootstrap-select {
  border-radius: 16px;
}

.bootstrap-select > .dropdown-toggle {
  box-shadow: none;
  padding: 13px 15px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #dddddd;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle.show {
  outline: none !important;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0 !important;
  background-color: #fff !important;
  border-color: #ddd !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000;
  text-decoration: none;
  background-color: #eee;
}

.dropdown-menu {
  border: 0;
  box-shadow: 0px 8px 36px rgba(17, 17, 17, 0.06);
}

.list-features li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.list-features li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  inset-inline-start: 0;
  top: 13px;
}

.border-bottom {
  border-bottom: 1px solid rgba(161, 172, 187, 0.2) !important;
}

.project-single-image img {
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

.flag-icon {
  height: 22px;
  border-radius: 8px;
  margin-inline-start: 5px;
  margin-inline-end: 4px;
  width: 25px;
}

.upload-box {
  position: relative;
  min-height: 150px;
  padding: 20px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  padding: 20px;
  background-color: #fff;
}

.upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

.upload-placeholder {
  font-size: 18px;
  background-color: transparent;
}

.upload-placeholder i {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 20px;
}

.file-item {
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

@media (min-width: 992px) {
  body:not(.dark) .main-header:not(.internal) .navbar-brand img {
    filter: brightness(0) invert(1);
  }

  body:not(.dark) .main-header:not(.internal) .navbar-menu {
    background: rgba(255, 255, 255, 0.1);
  }

  body:not(.dark) .main-header:not(.internal) .navbar-menu .nav-item .nav-link {
    color: #fff !important;
  }

  body:not(.dark)
    .main-header:not(.internal)
    .navbar-menu
    .nav-item
    .nav-link:hover {
    color: #000 !important;
  }
}

body:not(.dark) .widget_item-about {
  background-color: #f4f4f4;
}

body:not(.dark) .widget_item-about img {
  filter: brightness(0);
}

body:not(.dark) .filter-black {
  filter: brightness(0);
}

@media (min-width: 992px) {
  body:not(.dark)
    .main-header
    .navbar:not(.navbar-tool)
    .navbar-collapse
    .navbar-nav:not(.navbar-tool)
    .nav-item:hover
    .nav-link {
    background: #e9e9e9;
    color: #000;
  }
}

body:not(.dark) .main-header .navbar-tool .nav-item .nav-link {
  background: rgb(244, 244, 244);
}

body:not(.dark) .main-header .navbar-tool .nav-item .nav-link img {
  filter: brightness(0);
}

body:not(.dark) .main-header .navbar-tool .nav-item .nav-link:hover {
  background-color: #000;
}

body:not(.dark) .main-header .navbar-tool .nav-item .nav-link:hover img {
  filter: brightness(0) invert(1);
}

body .btn-white {
  background-color: #fff;
}

body:not(.dark) .main-header .btn-white {
  background: rgb(244, 244, 244);
}

body:not(.dark) .main-header .btn-white:hover {
  background-color: rgb(0, 0, 0);
  color: #fff;
}

body:not(.dark) .btn-white:hover {
  background-color: #000000;
  color: #fff;
}

body .card-black .btn-white:hover {
  background-color: #fff;
  color: #000;
}

body:not(.dark) .widget_item-goal .widget_item-icon img {
  filter: brightness(0);
}

body:not(.dark) .widget_item-goal {
  background-color: #fff;
}

body.dark .section-content {
  border-color: rgba(105, 108, 104, 0.1411764706);
  background: rgba(255, 255, 255, 0.02);
}

body.dark .main-header .btn-white {
  background: rgb(244, 244, 244);
  color: #000;
}

body.dark .main-header .btn-white:hover {
  background-color: #000;
  color: #fff;
}

body.dark .btn-outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

body.dark .btn-outline-dark:hover {
  background-color: #000;
}

body.dark .social-media img {
  filter: brightness(0) invert(1);
}

body.dark .main-footer .link-footer a {
  color: #fff;
}

body.dark .main-footer .link-footer a:hover {
  color: #fff;
}

body.dark .widget_item-about img {
  filter: none;
}

body.dark .form-control {
  color: #fff;
  background-color: rgba(249, 251, 251, 0.0196078431);
  border: 1px solid rgba(234, 242, 242, 0.0784313725);
}

body.dark .form-control:focus {
  background-color: #0d0d0a;
}

body.dark .pagination .page-item .page-link {
  color: #ffffff;
}

body.dark .pagination .page-item.active .page-link {
  background-color: #161615 !important;
}

body.dark .list-features li::before {
  background-color: #fff;
}

body.dark .breadcrumb li {
  color: #fff;
}

body.dark .breadcrumb a {
  color: #b7b7b7;
}

body.dark .dropdown-menu {
  background-color: #000;
}

body.dark .dropdown-menu .dropdown-item {
  color: #fff;
}

body.dark .dropdown-menu .dropdown-item:hover {
  background-color: #000 !important;
}

body.dark .bootstrap-select .no-results {
  background: #000000;
  color: #fff;
}

body.dark .bootstrap-select > .dropdown-toggle {
  background-color: rgba(249, 251, 251, 0.0196078431);
  border: 1px solid rgba(234, 242, 242, 0.0784313725);
  color: #fff;
}

body.dark .tempus-dominus-widget.light {
  background-color: #000;
  color: #fff;
}

body.dark .tempus-dominus-widget.light .date-container-days .dow {
  color: rgba(255, 255, 255, 0.5);
}

body.dark
  .tempus-dominus-widget.light
  .date-container-days
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-days
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-decades
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-decades
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-months
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-months
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-years
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-years
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-clock
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-clock
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-hour
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-hour
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-minute
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-minute
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-second
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-second
  div:not(.no-highlight).old {
  color: var(--td-alternate-color);
}

body.dark
  .tempus-dominus-widget.light
  .date-container-days
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .date-container-decades
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .date-container-months
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .date-container-years
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .time-container-clock
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .time-container-hour
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .time-container-minute
  div:not(.no-highlight):hover,
body.dark
  .tempus-dominus-widget.light
  .time-container-second
  div:not(.no-highlight):hover {
  background: #ffffff;
  color: #000;
}

body.dark
  .tempus-dominus-widget.light
  .date-container-days
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-days
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-decades
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-decades
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-months
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-months
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .date-container-years
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .date-container-years
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-clock
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-clock
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-hour
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-hour
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-minute
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-minute
  div:not(.no-highlight).old,
body.dark
  .tempus-dominus-widget.light
  .time-container-second
  div:not(.no-highlight).new,
body.dark
  .tempus-dominus-widget.light
  .time-container-second
  div:not(.no-highlight).old {
  color: rgba(255, 255, 255, 0.3803921569) !important;
}

body.dark .navbar-toggler {
  color: #fff;
}

body.dark .upload-box {
  background-color: rgba(249, 251, 251, 0.0196078431);
  border: 1px solid rgba(234, 242, 242, 0.0784313725);
}

body.dark .bootstrap-select .dropdown-toggle:focus,
body.dark .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
body.dark .bootstrap-select .dropdown-toggle:hover,
body.dark .bootstrap-select .dropdown-toggle.show {
  background-color: #0d0d0a !important;
  border-color: #0d0d0a !important;
}

body.dark .dropdown-item.active,
body.dark .dropdown-item:active {
  color: #fff;
  background-color: #000;
}

@media (min-width: 992px) {
  body.dark .main-header.internal .container {
    background-color: #161615;
  }

  body.dark
    .main-header
    .navbar:not(.navbar-tool)
    .navbar-collapse
    .navbar-nav:not(.navbar-tool)
    .nav-link {
    color: #fff;
  }

  body.dark .navbar-menu {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 991px) {
  body.dark .main-header .navbar:not(.navbar-tool) .navbar-collapse {
    background-color: #000;
  }

  body.dark .main-header .navbar:not(.navbar-tool) .navbar-collapse .nav-tool {
    margin-bottom: 20px;
    display: inline-block;
  }

  body.dark .main-header .navbar:not(.navbar-tool) .navbar-collapse .nav-btn {
    width: 100%;
  }

  body.dark
    .main-header
    .navbar:not(.navbar-tool)
    .navbar-collapse
    .navbar-nav:not(.navbar-tool)
    .nav-link {
    color: #ffffff;
  }
}

html[dir="rtl"] .calendar-header .previous,
html[dir="rtl"] .calendar-header .next {
  transform: rotate(180deg);
}

.main-footer .footer-top {
  padding: 0px 0 45px;
}

@media (max-width: 991px) {
  .main-footer .footer-top {
    padding: 30px 0 25px;
  }
}

.main-footer .footer-bottom {
  padding: 0;
}

.main-footer .link-footer a {
  color: #696c68;
  display: inline-block;
  font-size: 14px;
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
}

.social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 10px;
}

.form .icon {
  inset-inline-start: 20px !important;
}

.form .form-control {
  background-color: #fff;
  border-radius: 24px 4px;
  padding-inline-start: 50px !important;
}

.form .btn-submit {
  background-color: #5fb446;
  color: #fff;
  padding: 5px 55px 5px 25px;
  margin-inline-start: -18px;
  border-radius: 24px 0 0px 4px;
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }

  main {
    overflow: hidden;
  }

  body {
    padding: 5px;
  }

  .section-content {
    padding: 20px 10px 20px;
  }

  .main-header .navbar-tool .nav-item {
    margin-bottom: 10px;
  }

  .nav-btn {
    width: 100%;
  }

  .swiper-images {
    margin-top: 15px;
  }

  .widget_item-card .widget_item-desc {
    height: 67px;
  }

  .project-single-image img {
    height: 200px;
  }
}

body.dark form .btn-white:hover {
  background-color: #fff;
  color: #000;
}

.widget_item-card.widget_item-2 .widget_item-image a::before {
  background: linear-gradient(
    173.89deg,
    rgba(0, 0, 0, 0) 44.6%,
    rgba(0, 0, 0, 0.8) 87.09%
  );
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  left: 0;
  opacity: 1;
}

.widget_item-card.widget_item-2 .widget_item-content {
  position: absolute;
  padding: 30px;
  bottom: 0;
  inset-inline-start: 0;
}

/*  */

.slider-container {
  overflow-x: hidden;
  position: relative;
  cursor: grab;
}
.slider-container:active {
  cursor: grabbing;
}
.slider {
  display: flex;
  transition: all 0.3s ease;
}

.card {
  flex: 0 0 auto;
  border: 0;
  width: 80px;
  height: 500px;
  margin: 0 5px;
  transition: width 0.4s ease;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  user-select: none;
  border-radius: 24px;
  overflow: hidden;
}
.card .widget_item-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.card .widget_item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card-content{
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 30px;
}
body:not(.dark) .card .card-content .btn{
  background-color: #FFF;
  border: 0;
  color: #000;
}
body:not(.dark) .card .card-content .btn:hover{
  background-color: #000;
  color: #FFF;
}
body.dark .card .card-content .btn{
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}
body.dark .card .card-content .btn:hover{
  background-color: #fff;
  color: #000;
}
.card.active {
  width: 600px;
}
.card.active .card-content{
  opacity: 1;
  visibility: visible;
  max-width: fit-content;
}
@media (max-width: 768px) {
  .card {
    width: 70px;
    height: 300px;
  }
  .card.active {
    width: 250px;
  }
}
.slider-container::-webkit-scrollbar {
  display: none;
}
.slider-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
