/* ------------------------------------------------------------------

01. Typography style
02. Owl-Theme custom style
03. Preloader style
04. Navbar style
05. Image Animation style
06. For Images Reveal Effect style
07. Text Animation style
08. For Images Imago Effect style
09. Header style
10. Slider style
11. Parallax Header style
12. Kenburns SlideShow style
13. Video Background style
14. Section style
15. Banner Header style
16. About style
17. Pricing style
18. Team style
19. Team-Single style
20. Skills style
21. Works style
22. Work Single style
23. Services style
24. Services Sidebar style
25. Services 2 style
26. Gallery style
27. YouTube PopUp style
28. Accordion Box (for Faqs) style
29. LetsTalk style
30. Testimonials style
31. Clients style
32. Events style
33. Blog Home style
34. Blog 2 Grid style
35. Blog & Post style
36. Contact style
37. Button style
38. 404 style
39. Footer style
40. toTop Button style
41. Media Query style
42. Overlay Effect Bg image

------------------------------------------------------------------- */

/* ======= Typography style ======= */
:root {
  --clr-theme-color: #dc2751;
}
html,
body.dark {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body.dark {
  font-family: "Hind", sans-serif;
  color: #ccc;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 400;
  background: #101010;
}
img {
  width: 100%;
  height: auto;
}
/* typography */
/* headings */
h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 27px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
  color: #2c3b4c;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  line-height: 1.25em;
  margin-bottom: 15px;
}
/* paragraph */
body.dark p {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  margin: 0 0 15px;
  color: #ccc;
  font-weight: 400;
}
/* lists */
ul {
  list-style-type: none;
}
/* links */
body.dark a {
  color: #fff;
  text-decoration: none;
}
body.dark a:hover {
  text-decoration: none;
  color: #fff;
}
body.dark a:link {
  text-decoration: none;
}
body.dark a:focus {
  outline: none;
}
body.dark img {
  width: 100%;
  height: auto;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* form element */
button,
input,
optgroup,
select,
textarea {
  font-family: "Hind", sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}
body.dark input[type="password"],
body.dark input[type="email"],
body.dark input[type="text"],
body.dark input[type="file"],
body.dark textarea {
  max-width: 100%;
  margin-bottom: 15px;
  padding: 15px 20px;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-family: "Hind", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-image: none;
  border: 2px solid rgba(220, 39, 81, 0.1);
  border-radius: 30px;
}
body.dark input:focus,
body.dark textarea:focus {
  border: 2px solid var(--clr-theme-color);
}
/* submit and alert success  */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  border: none;
  border-radius: 80px;
  background-color: var(--clr-theme-color);
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 20px 50px;
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
body.dark input[type="submit"]:hover,
body.dark input[type="reset"]:hover,
body.dark input[type="button"]:hover,
body.dark button:hover {
  border: none;
  background: #fff;
  color: #2c3b4c;
}
body.dark button.mfp-close:hover,
body.dark button.mfp-arrow:hover {
  background: transparent;
}
body.dark .alert-success {
  background: transparent;
  color: #ccc;
  border: 2px solid var(--clr-theme-color);
  border-radius: 0px;
}
select {
  padding: 10px;
}
th,
tr,
td {
  padding: 10px 0;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
/* important css */
body.dark .valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.dark .v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 9;
}
:root {
  scroll-behavior: auto;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mr-0 {
  margin-right: 0px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
body.dark .bg-fixed {
  background-attachment: fixed;
}
body.dark .bg-drk {
  background: #2c3b4c;
}
body.dark .bg-gry {
  background: #f0f0f3;
}
body.dark .bg-wht {
  background: #fff;
}
body.dark .cw {
  color: #fff;
}
body.dark .cd {
  color: #2c3b4c;
}
body.dark .bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
body.dark .bg-img-position-top {
  background-position: top;
}
body.dark .slider-fade .item.position-top,
body.dark .position-top {
  background-position: top;
}
body.dark .slider-fade .item.position-center,
body.dark .position-center {
  background-position: center;
}
body.dark .slider-fade .item.position-bottom,
body.dark .position-bottom {
  background-position: bottom;
}
body.dark .ontop {
  position: relative;
  z-index: 7;
}
body.dark .rest {
  padding: 0 !important;
  margin: 0 !important;
}
body.dark .d-flex {
  display: flex !important;
}
body.dark .full-width {
  width: 100% !important;
}
body.dark .position-relative {
  position: relative !important;
}
/* list style */
body.dark .ullist {
  display: grid;
  font-size: 16px;
}
body.dark .ullist ul {
  position: relative;
  float: left;
  padding: 0px;
}
body.dark .ullist ul li {
  position: relative;
  line-height: 1.5em;
  margin-bottom: 10px;
  padding-left: 25px;
}
body.dark .ullist ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--clr-theme-color);
  font-weight: 400;
  font-size: 12px;
}
/* list */
body.dark .list {
  position: relative;
  display: block;
}
body.dark .list li {
  position: relative;
  display: flex;
  align-items: baseline;
}
body.dark .list li + li {
  margin-top: 10px;
}
body.dark .list-icon {
  align-items: center;
  line-height: 0;
}
body.dark .list-icon i {
  font-size: 16px;
  color: var(--clr-theme-color);
}
body.dark .list-text {
  margin-left: 10px;
}
body.dark .list-text p {
  font-size: 16px;
  margin: 0;
  color: #ccc;
}
body.dark .list-text p b {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: #fff;
}
/* vertical line */
body.dark .line-vr-section {
  position: relative;
  margin: -25px auto;
  border: 0;
  border-left: 3px solid;
  border-color: var(--clr-theme-color);
  width: 3px;
  height: 50px;
  z-index: 10;
  opacity: 1;
}
/* horizantal line */
body.dark .line-hr-section {
  width: 70px;
  border-top: 3px solid var(--clr-theme-color) !important;
  opacity: 1;
  margin: 15px 0;
}
/* horizantal line center */
body.dark .line-hr-section.center {
  margin: 15px auto;
}
/* image grayscale */
body.dark .img-grayscale img {
  -webkit-filter: grayscale(100%);
  -webkit-transition: 0.4s ease-in-out;
  -moz-filter: grayscale(100%);
  -moz-transition: 0.4s ease-in-out;
  -o-filter: grayscale(100%);
  -o-transition: 0.4s ease-in-out;
}
body.dark .img-grayscale:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
}
/* blockquote */
body.dark blockquote {
  padding: 40px;
  display: block;
  position: relative;
  border: 2px solid var(--clr-theme-color);
  overflow: hidden;
  margin: 45px 0;
  color: #fff;
  background: var(--clr-theme-color);
  border-radius: 10px;
}
body.dark blockquote p {
  font-family: inherit;
  margin-bottom: 0 !important;
  color: inherit;
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 3;
}
body.dark blockquote:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  content: "\22";
  right: 40px;
  bottom: 40px;
  font-size: 75px;
  opacity: 1;
  line-height: 1;
  color: #fff;
}
body.dark blockquote p {
  margin-bottom: 0;
}
body.dark blockquote p a {
  color: inherit;
}
body.dark blockquote cite {
  display: inline-block;
  font-size: 16px;
  position: relative;
  border-color: inherit;
  line-height: 1;
  margin-top: 22px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: #fff;
  font-weight: 900;
}
/* ul list */
body.dark ul.disc {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 46px;
}
body.dark ul.disc li {
  margin-bottom: 10px;
  text-align: left;
}
body.dark ul.disc.disc li:before {
  content: "•";
  font-size: 30px;
  margin: -1px 0 0 -20px;
  color: var(--clr-theme-color);
  position: absolute;
}

/* ======= Owl-Theme custom style ======= */
/* owl dots */
body.dark .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  line-height: 1.5;
  display: block;
  outline: none;
}
body.dark .owl-theme .owl-dots {
  margin-top: 15px;
}
body.dark .owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0 2px;
  border-radius: 50%;
  background: #ccc;
  border: 2px solid #ccc;
}
body.dark .slider-fade .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  border: none;
}
body.dark .slider-fade .owl-theme .owl-dots .owl-dot.active span,
body.dark .slider-fade .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--clr-theme-color);
  border: none;
}
body.dark .owl-theme .owl-dots .owl-dot.active span,
body.dark .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--clr-theme-color);
  border: 1.5px solid var(--clr-theme-color);
}
body.dark .owl-theme .owl-dots button {
  background: transparent;
  padding: 2px;
}
/* owl-nav */
body.dark .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
body.dark .owl-theme .owl-prev {
  float: left;
  left: 0px !important;
}
body.dark .owl-theme .owl-next {
  float: right;
  right: 0px !important;
}
body.dark .owl-theme .owl-next > span {
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.dark .owl-theme .owl-nav [class*="owl-"] {
  width: 55px;
  height: 55px;
  line-height: 45px;
  background: var(--clr-theme-color);
  border-radius: 100%;
  color: #fff;
  font-size: 18px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  border: 2px solid var(--clr-theme-color);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
body.dark .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #2c3b4c;
}
body.dark .owl-theme .owl-nav [class*="owl-"] {
  opacity: 0;
}
body.dark .owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}
body.dark .team .owl-theme .owl-nav.disabled + .owl-dots,
body.dark .works .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
body.dark .works .owl-theme .owl-nav {
  top: 45% !important;
  margin-top: 0;
}
body.dark .services .owl-theme .owl-nav {
  top: 45% !important;
  margin-top: 0;
}
body.dark .services .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
}
body.dark .team .owl-theme .owl-nav {
  top: 35% !important;
  margin-top: 0;
}
body.dark .team .owl-theme .owl-dots {
  margin-top: 0;
}
body.dark .blog-home .owl-theme .owl-nav {
  top: 42% !important;
  margin-top: 0;
}
body.dark .gallery .owl-theme .owl-nav {
  top: 45% !important;
  margin-top: 0;
}
body.dark .testimonials .owl-theme .owl-nav {
  top: 30% !important;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  body.dark .owl-theme .owl-nav {
    display: none;
  }
}

/* ======= Preloader style ======= */
body.dark .preloader-bg,
body.dark #preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #101010;
  z-index: 10000009;
}
body.dark #preloader {
  display: table;
  table-layout: fixed;
}
body.dark #preloader-status {
  display: table-cell;
  vertical-align: middle;
}
body.dark .preloader-position {
  position: relative;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
body.dark .loader {
  position: relative;
  width: 70px;
  height: 70px;
  left: 50%;
  top: auto;
  margin-left: -22px;
  margin-top: 2px;
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  -ms-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  border: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
body.dark .loader span {
  position: absolute;
  width: 70px;
  height: 70px;
  top: -2px;
  left: -2px;
  border: 2px solid transparent;
  border-top: 2px solid var(--clr-theme-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ======= Navbar style ======= */
body.dark .navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 99;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 100px;
  border: none;
}
body.dark .navbar .container {
  border: none;
}
body.dark .nav-scroll .container {
  border: none;
}
body.dark .navbar-toggler-icon {
  background-image: none;
}
body.dark .navbar .navbar-toggler-icon,
body.dark .navbar .icon-bar {
  color: #fff;
  font-size: 24px;
  width: 1.5em;
  height: 1em;
}
body.dark .navbar .navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-right: 10px;
  padding-left: 10px;
}
body.dark .navbar .navbar-nav .nav-link.nav-color {
  color: #2c3b4c;
}
body.dark .navbar .navbar-nav .nav-link:hover {
  color: var(--clr-theme-color);
}
body.dark .navbar .navbar-nav .nav-link:hover i {
  color: var(--clr-theme-color);
}
body.dark .navbar .navbar-nav .active {
  color: var(--clr-theme-color) !important;
}
body.dark .navbar .navbar-nav .active i {
  color: var(--clr-theme-color);
}
body.dark .nav-scroll {
  background: #000;
  padding: 0 0 0 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  border: none;
}
body.dark .nav-scroll .navbar-toggler-icon,
body.dark .nav-scroll .icon-bar {
  color: #fff;
}
body.dark .nav-scroll .navbar-nav .nav-link {
  color: #fff;
}
body.dark .nav-scroll .navbar-nav .active {
  color: var(--clr-theme-color);
}
body.dark .nav-scroll .navbar-nav .logo {
  padding: 15px 0;
  color: #fff;
}
body.dark .nav-scroll .logo-img {
  width: 150px;
}
body.dark .nav-scroll .logo-img {
  margin-bottom: 0px;
}
body.dark .nav-scroll .logo-wrapper .logo h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 900;
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
  margin-bottom: 0;
  padding: 0;
  line-height: 1em;
}
body.dark .nav-scroll .logo-wrapper .logo h2 i {
  position: relative;
  color: var(--clr-theme-color);
}
body.dark .nav-scroll .logo-wrapper {
}
body.dark .logo-wrapper {
  float: left;
}
body.dark .logo-wrapper .logo h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 900;
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
  margin-bottom: 0;
  padding: 0;
  line-height: 1em;
}
body.dark .logo-wrapper .logo h2 span {
  position: relative;
  color: var(--clr-theme-color);
}
body.dark .logo {
  padding: 0;
}
body.dark .logo-img {
  width: 150px;
  text-align: center;
}
body.dark .dropdown .nav-link i {
  padding-left: 1px;
  font-size: 14px;
  color: var(--clr-theme-color);
}
body.dark .nav-scroll .dropdown .nav-link i {
  color: var(--clr-theme-color);
}
body.dark .nav-scroll .navbar-nav .active i {
  color: var(--clr-theme-color);
}
body.dark .navbar .dropdown-menu .dropdown-item {
  padding: 7px 0;
  font-size: 16px;
  color: #fff;
  position: relative;
  background-color: transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
body.dark .navbar .dropdown-menu .dropdown-item span {
  display: block;
  cursor: pointer;
}
body.dark .navbar .dropdown-menu .dropdown-item i {
  padding: 10px 0 0 5px;
  font-size: 14px;
  float: right;
  color: var(--clr-theme-color);
}
body.dark .navbar .dropdown-menu .dropdown:hover > .dropdown-item,
body.dark .navbar .dropdown-menu .dropdown-item.active,
body.dark .navbar .dropdown-menu .dropdown-item:hover {
  color: var(--clr-theme-color);
}
body.dark .navbar .dropdown-menu .dropdown-item.active span i {
  color: var(--clr-theme-color);
}
body.dark .navbar .dropdown-toggle::after {
  display: none;
}

body.dark .navbar .dropdown-menu li {
  border-bottom: none;
}
body.dark .navbar .dropdown-menu li:last-child {
  border-bottom: none;
}
/* li hover */
body.dark .navbar .dropdown-menu li {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .navbar .dropdown-menu li:hover {
  padding-left: 5px;
}
body.dark .navbar .dropdown-menu .dropdown-menu.pull-left {
  top: 0;
  left: auto;
  right: 100%;
}
/* navbar-right */
body.dark .navbar .navbar-right {
  position: relative;
  display: flex;
  align-items: center;
}
body.dark .navbar .navbar-right .wrap {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  margin-left: 30px;
}
body.dark .navbar .navbar-right .wrap .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--clr-theme-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .navbar .navbar-right .wrap .text {
  margin-left: 5px;
  top: 3px;
  position: relative;
}
body.dark .navbar .navbar-right .wrap .text p {
  font-family: "Architects Daughter", cursive;
  font-size: 14px;
  line-height: 12px;
  color: var(--clr-theme-color);
  margin-bottom: 4px;
  font-weight: 400;
}
body.dark .navbar .navbar-right .wrap .text h5 {
  font-size: 18px;
  font-weight: 900;
  line-height: 25px;
  color: #fff;
  margin-bottom: 5px;
}
body.dark .navbar .navbar-right .wrap .text h5 a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .navbar .navbar-right .wrap .text h5 a:hover {
  color: #fff;
}
body.dark .nav-scroll .navbar-right .wrap .text p {
  color: var(--clr-theme-color);
}
body.dark .nav-scroll .navbar-right .wrap .text h5,
body.dark .nav-scroll .navbar-right .wrap .text h5 a {
  color: #fff;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
  body.dark .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    min-width: 240px;
    padding: 20px;
    border: 0;
    background-color: #202020;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 10px;
  }
  body.dark .navbar .dropdown-menu .dropdown-menu {
    left: calc(100% + 5px);
    top: -17px;
    right: auto;
    min-width: 240px;
    transform: translateY(0);
  }
  body.dark .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) {
  body.dark .navbar {
    padding-left: 0px;
    padding-right: 0px;
    background: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body.dark .nav-scroll {
    background: #2c3b4c;
  }
  body.dark .logo-wrapper {
    float: left;
    padding: 34.15px 15px;
  }
  body.dark .nav-scroll .logo-wrapper {
    padding: 34.15px 15px;
    background-color: transparent;
  }
  body.dark .nav-scroll .logo-img {
    width: 150px;
  }
  body.dark .navbar .logo {
    text-align: left;
    margin-left: 0px;
  }
  body.dark .nav-scroll .logo {
  }
  body.dark .logo-img {
    margin-bottom: 0px;
    width: 150px;
    padding: 0;
  }
  body.dark .navbar button {
    margin-right: 0px;
    outline: none !important;
    background: transparent;
    margin-top: 0px;
    border: none;
  }
  body.dark .navbar button:hover {
    background: transparent;
  }
  body.dark .navbar button:active,
  body.dark .navbar button:focus,
  body.dark .navbar button:hover {
    background: transparent;
    outline: none;
    color: transparent !important;
  }
  body.dark .navbar .container {
    max-width: 100%;
    padding: 0;
  }
  body.dark .navbar .nav-link {
    margin: 0px auto !important;
  }
  body.dark .navbar .navbar-nav .nav-link {
    color: #fff;
  }
  body.dark .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important;
  }
  body.dark .nav-scroll .navbar-collapse .active {
    color: var(--clr-theme-color) !important;
  }
  body.dark .navbar .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
    line-height: 40px;
  }
  body.dark .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
    font-weight: 400;
  }
  body.dark .navbar .dropdown-submenu .dropdown-toggle::after {
    right: 15px;
    font-size: 13px;
  }
  body.dark .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(0deg);
  }
  body.dark .navbar .dropdown-submenu .dropdown-toggle.show::after {
    transform: rotate(90deg);
  }
  body.dark .navbar .dropdown-menu {
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: #2c3b4c;
    box-shadow: none;
  }
  body.dark .navbar .dropdown-submenu .dropdown-menu {
    margin: 0;
    padding: 0 0 0 20px;
  }
  body.dark .navbar .dropdown-menu li a {
    padding: 0 15px;
  }
  body.dark .navbar .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 0px;
  }
  body.dark .navbar .navbar-nav {
    padding: 20px;
  }
  body.dark .navbar .navbar-collapse {
    max-height: 450px;
    overflow: auto;
    background: #2c3b4c;
    text-align: left;
  }

  body.dark .dropdown .nav-link i {
    color: rgba(255, 255, 255, 0.5);
  }
  body.dark .nav-scroll .dropdown .nav-link i {
    color: rgba(255, 255, 255, 0.5);
  }
  body.dark .nav-scroll .dropdown .nav-link.active i {
    color: var(--clr-theme-color);
  }
  body.dark .navbar .dropdown-menu .dropdown-item i {
    color: #fff;
  }
  body.dark .navbar .navbar-right {
    display: none;
  }
}

/* ======= Image Animation style ======= */
body.dark .ripple-animation,
body.dark .morp-ani {
  --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
  --morp-md-value: 43% 38% 39% 35% / 44% 39% 43% 56%;
  --morp-time: 8s;
  --morp-spin-time: 20s;
  animation: morpspin var(--morp-spin-time) linear infinite reverse;
}
body.dark .morp-ani:before {
  -webkit-animation: vsmorph var(--morp-time) ease-in-out infinite both
    alternate;
  animation: vsmorph var(--morp-time) ease-in-out infinite both alternate;
}
body.dark .transform-banner img {
  -webkit-animation: border-transform 10s linear infinite alternate forwards;
  animation: border-transform 10s linear infinite alternate forwards;
  border-radius: 100%;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}
@-webkit-keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }

  50% {
    border-radius: var(--morp-md-value);
  }

  100% {
    border-radius: 40% 60%;
  }
}
@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }

  50% {
    border-radius: var(--morp-md-value);
  }

  100% {
    border-radius: 40% 60%;
  }
}
@-webkit-keyframes vsheromorph {
  0% {
    border-radius: 25% 80% 57% 47% / 53% 60% 43% 52%;
  }

  50% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}
@keyframes vsheromorph {
  0% {
    border-radius: 25% 80% 57% 47% / 53% 60% 43% 52%;
  }

  50% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60%;
  }
}
@-webkit-keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -60px);
    transform: translate(0px, -60px);
  }

  50% {
    -webkit-transform: translate(-60px, -60px);
    transform: translate(-60px, -60px);
  }

  70% {
    -webkit-transform: translate(-60px, 0px);
    transform: translate(-60px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -60px);
    transform: translate(0px, -60px);
  }

  50% {
    -webkit-transform: translate(-60px, -60px);
    transform: translate(-60px, -60px);
  }

  70% {
    -webkit-transform: translate(-60px, 0px);
    transform: translate(-60px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes arrow-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes arrow-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes arrow-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes arrow-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ======= For Images Reveal Effect style ======= */
.reveal-effect {
  float: left;
  position: relative;
}
.reveal-effect.animated:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clr-theme-color);
  position: absolute;
  left: 0;
  top: 0;
  animation: 1s reveal linear forwards;
  -webkit-animation-duration: 1s;
  z-index: 1;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.reveal-effect.animated > * {
  animation: 1s reveal-inner linear forwards;
}
@-webkit-keyframes reveal {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@-webkit-keyframes reveal-inner {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  51% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 991px),
  only screen and (max-device-width: 991px) {
  .cursor {
    display: none;
  }
}

/* ======= Text Animation style ======= */
.splitting.animated .char {
  -webkit-animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: calc(40ms * var(--char-index));
  animation-delay: calc(40ms * var(--char-index));
}
.splitting .whitespace {
  width: 10px;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: calc(20ms * var(--char-index));
  animation-delay: calc(20ms * var(--char-index));
}
.splitting.txt .whitespace {
  width: 5px;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ======= Enhanced fadeIn Line Animation ======= */
/* Smooth per-line fade animation with optimized easing */
body.dark .fadeInLine {
  -webkit-animation: fadeInLineSmooth 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: fadeInLineSmooth 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes fadeInLineSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  60% {
    opacity: 0.8;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInLineSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  60% {
    opacity: 0.8;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Speed variations for fadeInLine */
body.dark .fadeInLine.animation-slow {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
}

body.dark .fadeInLine.animation-fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

body.dark .fadeInLine.animation-normal {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

/* ======= Enhanced Text Animation Styles ======= */
/* Word-level fade in animation for data-splitting */
.splitting[data-splitting-animation="fadeInWord"].animated .word {
  -webkit-animation: fadeInWord 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: fadeInWord 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: calc(120ms * var(--word-index));
  animation-delay: calc(120ms * var(--word-index));
}

.splitting[data-splitting-animation="fadeInWord"] .word {
  display: inline-block;
  margin-right: 0.3em;
}

.splitting[data-splitting-animation="fadeInWord"] .word:last-child {
  margin-right: 0;
}

@-webkit-keyframes fadeInWord {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInWord {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Zoom In Animation */
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* Slide In Up Animation */
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Fade In Left Animation */
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Fade In Right Animation */
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Slide In Down Animation */
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* ======= Animation Speed Variations ======= */
/* Smooth easing for all animations */
body.dark .wow {
  -webkit-animation-timing-function: cubic-bezier(
    0.25,
    0.46,
    0.45,
    0.94
  ) !important;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced easing for entrance animations */
body.dark .wow.fadeIn,
body.dark .wow.fadeInLeft,
body.dark .wow.fadeInRight,
body.dark .wow.slideInUp,
body.dark .wow.slideInDown,
body.dark .wow.zoomIn {
  -webkit-animation-timing-function: cubic-bezier(
    0.175,
    0.885,
    0.32,
    1.275
  ) !important;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Gentle bounce for zoom animations */
body.dark .wow.zoomIn {
  -webkit-animation-timing-function: cubic-bezier(
    0.68,
    -0.55,
    0.265,
    1.55
  ) !important;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

/* ======= For Images Imago Effect style ======= */
body.dark .imago {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
body.dark .imago.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ======= Header style ======= */
body.dark .header {
  height: 100vh;
  overflow: hidden;
}
body.dark .header .caption .o-hidden {
  display: inline-block;
}
body.dark .header .caption h1,
body.dark .header .caption[data-overlay-dark] h1 {
  position: relative;
  font-size: 110px;
  letter-spacing: 3px;
  line-height: 120px;
  color: #fff;
  margin-bottom: 20px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
body.dark .header .caption h1 span,
body.dark .header .caption[data-overlay-dark] h1 span {
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
body.dark .header .caption p,
body.dark .header .caption[data-overlay-dark] p {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
body.dark .header .caption .btn-1,
body.dark .header .caption .btn-2 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/* ======= Slider style ======= */
body.dark .slider-fade .owl-item {
  height: 100vh;
  position: relative;
}

body.dark .slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
body.dark .slider-fade .item .caption {
  z-index: 9;
}

/* Hide any cloned slides to prevent HTML duplication */
body.dark .slider-fade .owl-item.cloned {
  display: none !important;
}
/* owl-theme owl-dots */
body.dark .slider-fade .owl-theme .owl-dots {
  position: absolute;
  bottom: 6vh;
  width: 100%;
}
body.dark .slider-fade .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  border: none;
}
body.dark .slider-fade .owl-theme .owl-dots .owl-dot.active span,
body.dark .slider-fade .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--clr-theme-color);
  border: none;
}
/* owl-theme owl-nav */
body.dark .slider-fade .owl-theme .owl-nav {
  position: absolute !important;
  top: 45% !important;
  bottom: auto !important;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.dark .slider-fade .owl-theme .owl-prev {
  left: 10px !important;
}
body.dark .slider-fade .owl-theme .owl-next {
  right: 10px !important;
}
body.dark .slider-fade .owl-theme .owl-prev > span,
body.dark .slider-fade .owl-theme .owl-next > span {
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.dark .slider-fade .owl-theme .owl-nav [class*="owl-"] {
  width: 55px;
  height: 55px;
  line-height: 45px;
  background: transparent;
  border-radius: 100%;
  color: #fff;
  font-size: 16px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  border: 2px solid var(--clr-theme-color);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  opacity: 0;
}
body.dark .slider-fade .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--clr-theme-color);
  border: 2px solid var(--clr-theme-color);
  color: #fff;
}
body.dark .slider-fade .owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  body.dark .slider-fade .owl-theme .owl-nav {
    display: none;
  }
}

/* ======= Parallax Header style ======= */
body.dark .parallax-header {
  height: 100vh;
  background-position: center;
  overflow: hidden;
}
body.dark .parallax-header.position-top {
  background-position: top;
}
body.dark .parallax-header.position-center {
  background-position: center;
}
body.dark .parallax-header.position-bottom {
  background-position: bottom;
}
body.dark .parallax-header h6,
body.dark .parallax-header[data-overlay-dark] h6 {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  color: var(--clr-theme-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body.dark .parallax-header h1,
body.dark .parallax-header[data-overlay-dark] h1 {
  position: relative;
  font-size: 110px;
  line-height: 120px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
body.dark .parallax-header h1 span,
body.dark .parallax-header[data-overlay-dark] h1 span {
  position: relative;
  font-size: 100px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
}
body.dark .parallax-header[data-overlay-dark] p {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

/* ===== Kenburns SlideShow style ===== */
body.dark .kenburns-section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}
body.dark .kenburns-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background: #2c3b4c;
}
body.dark .kenburns-inner {
  position: relative;
  z-index: 15;
}
body.dark .kenburns-inner .caption {
  position: relative;
}
body.dark .kenburns-inner .caption h6,
body.dark .kenburns-inner .caption[data-overlay-dark] h6 {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  color: var(--clr-theme-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body.dark .kenburns-inner .caption h1,
body.dark .kenburns-inner .caption[data-overlay-dark] h1 {
  position: relative;
  font-size: 110px;
  line-height: 120px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
body.dark .kenburns-inner .caption h1 span,
body.dark .kenburns-inner .caption[data-overlay-dark] h1 span {
  position: relative;
  font-size: 100px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
}
body.dark .kenburns-inner .caption p,
body.dark .kenburns-inner .caption[data-overlay-dark] p {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}
body.dark #kenburnsSliderContainer .vegas-overlay {
  outline: none;
}
@media screen and (max-width: 767px) {
  body.dark .kenburns-inner .caption h6 {
    font-size: 12px;
  }
  body.dark .kenburns-inner .caption h1 {
    font-size: 60px;
  }
}

/* =======  Video Background style  ======= */
body.dark .video-fullscreen {
  overflow: hidden;
}
body.dark .video-fullscreen .video.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
body.dark .video-fullscreen .video {
  height: 100vh;
}
body.dark .video-fullscreen video {
  width: 100vw;
  min-width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
body.dark .video-fullscreen .v-middle {
  z-index: 1;
}
body.dark .video-fullscreen h6,
body.dark .video-fullscreen[data-overlay-dark] h6 {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  color: var(--clr-theme-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body.dark .video-fullscreen h1,
body.dark .video-fullscreen[data-overlay-dark] h1 {
  position: relative;
  font-size: 110px;
  line-height: 120px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
body.dark .video-fullscreen h1 span,
body.dark .video-fullscreen[data-overlay-dark] h1 span {
  position: relative;
  font-size: 100px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
}
body.dark .video-fullscreen p,
body.dark .video-fullscreen[data-overlay-dark] p {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

/* ======= Section style ======= */
body.dark .section-padding {
  padding: 130px 0;
}
body.dark .section-padding h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}
body.dark .section-padding h1.cd {
  color: #2c3b4c;
}
body.dark .section-padding h1.cw {
  color: #fff;
}
body.dark .section-padding h2 {
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 900;
  margin-bottom: 5px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
body.dark .section-padding h5 {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}
body.dark .section-padding[data-overlay-dark] h6,
body.dark .section-padding h6 {
  display: inline-block;
  font-family: "Architects Daughter", cursive;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-theme-color);
  margin-bottom: 5px;
}

/* ======= Banner Header style ======= */
body.dark .banner-header {
  height: 70vh;
  background-position: center;
}
body.dark .banner-header.full-height {
  min-height: 100vh;
}
body.dark .banner-header[data-overlay-dark] h1,
body.dark .banner-header h1 {
  font-size: 48px;
  color: #fff;
  position: relative;
  line-height: 1.25em;
  margin-bottom: 0;
}
body.dark .banner-header p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
/* breadcrumbs */
body.dark .banner-header .breadcrumbs {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
body.dark .banner-header .breadcrumbs li {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
body.dark .banner-header .breadcrumbs li a {
  color: var(--clr-theme-color);
}
body.dark .banner-header .breadcrumbs li a:hover {
  color: #fff;
}
body.dark .banner-header .breadcrumbs li:not(:last-child):after {
  margin: 0 20px 0 20px;
  vertical-align: middle;
  position: relative;
  top: 0px;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "|";
  font-size: 12px;
  font-weight: 900;
  color: var(--clr-theme-color);
}
@media screen and (max-width: 767px) {
  body.dark .banner-header h1 {
    font-size: 36px;
  }
}

/* ======= About style ======= */
body.dark .about {
  position: relative;
}
body.dark .about .item {
  position: relative;
  margin-bottom: 1.5rem;
}
body.dark .about .item .wrap {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
body.dark .about .item .wrap .img {
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
  background: #101010;
  border-radius: 10px;
}
body.dark .about .item .wrap .img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  opacity: 1;
}
body.dark .about .item .wrap:hover .img {
  transform: scale(0.98);
}
body.dark .about .item .wrap .img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgb(16, 16, 16);
  background: linear-gradient(
    0deg,
    rgba(16, 16, 16, 0.9528186274509804) 20%,
    rgba(16, 16, 16, 0) 75%
  );
}
body.dark .about .item .wrap .title {
  position: absolute;
  bottom: 0px;
  padding: 30px 30px 30px 45px;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .about .item .wrap .title h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 5px;
}
body.dark .about .item .wrap .title h6 {
  font-size: 16px;
  font-family: "Didact Gothic", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  text-transform: none;
  letter-spacing: 0;
}
body.dark .about .item .wrap:hover .title {
  transform: translateY(-10px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .about h5 {
  font-size: 24px;
}

/* ======= About-Box style ======= */
body.dark .about-box {
  position: relative;
}
body.dark .about-box .item {
  background-color: transparent;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  border: none;
}
body.dark .about-box .item .wrap {
  transition: 0.7s;
  padding: 75px 30px 15px 30px;
}
body.dark .about-box .item .wrap .con {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .about-box .item .wrap .con h4 {
  font-size: 24px;
  color: #fff;
}
body.dark .about-box .item .wrap .con p {
  color: #ccc;
}
body.dark .about-box .item .wrap .con .icon-2 a {
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: 0.7s;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .about-box .item:hover {
  background-color: var(--clr-theme-color);
  border-radius: 10px;
}
body.dark .about-box .item:hover .wrap .con {
  color: #fff;
  transform: translateY(-25px);
}
body.dark .about-box .item:hover .wrap .con h4 {
  color: #fff;
}
body.dark .about-box .item:hover .wrap .con p {
  color: #fff;
}
body.dark .about-box .item:hover .wrap .con .icon-2 a {
  color: #fff;
  opacity: 1;
}

/* ======= Pricing style ======= */
body.dark .price .item {
  padding: 60px 30px 40px;
  position: relative;
  background-color: #2c3b4c;
  overflow: hidden;
  border-radius: 10px;
}
body.dark .price .item .type {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 16px;
  background: var(--clr-theme-color);
  border-radius: 30px;
  border: 2px solid var(--clr-theme-color);
}
body.dark .price .item .content h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
}
body.dark .price .item .content h2 span {
  font-family: "Hind", sans-serif;
  color: var(--clr-theme-color);
  font-weight: 400;
  font-size: 16px;
  padding-left: 10px;
}
body.dark .price .item .content .feat li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ccc;
}
body.dark .price .item .content .feat li i {
  font-size: 16px;
  color: var(--clr-theme-color);
  margin-right: 10px;
  padding-top: 10px;
}
body.dark .price .item .numb {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 84px;
  position: absolute;
  top: -10px;
  left: 40px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  opacity: 0.8;
  transform-origin: 0 0;
  transform: rotate(90deg);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  body.dark .price .item .content {
    display: block !important;
  }
  body.dark .price .item .content .mr-40 {
    margin-bottom: 40px !important;
  }
}

/* ======= Team style ======= */
body.dark .team {
  position: relative;
}
body.dark .team .item {
  position: relative;
}
body.dark .team .item .img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 10px;
}
body.dark .team .item .img:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
body.dark .team .item .img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .team .item .con {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
  bottom: 45px;
  z-index: 2;
  background: #2c3b4c;
  padding: 25px 20px;
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
body.dark .team .item:hover .con {
  background: var(--clr-theme-color);
}
body.dark .team .item:hover .con h5 {
  transform: translateX(10px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .team .item .con .arrow {
  position: relative;
  display: block;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: rotate(0);
}
body.dark .team .item:hover .con .arrow {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
body.dark .team .item .con .arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--clr-theme-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 100%;
  background: #fff;
}
body.dark .team .item .con .arrow a:hover {
  background: #fff;
  color: var(--clr-theme-color);
}
body.dark .team .item .con h5 {
  font-size: 18px;
  color: #fff;
  line-height: 1.5em;
}
body.dark .team .item .con h5 a {
  color: #fff;
}
body.dark .team .item .con h5 span {
  font-size: 16px;
  color: #ccc;
  text-transform: none;
  font-weight: 400;
  font-family: "Hind", sans-serif;
  letter-spacing: 0;
}
body.dark .team .item:hover .con h5,
body.dark .team .item:hover .con h5 a,
body.dark .team .item:hover .con h5 span {
  color: #fff;
}

/* ======= Team-Single style ======= */
body.dark .team-single img:hover {
  transform: scale(0.98);
}
body.dark .team-single .img {
  position: relative;
}
body.dark .team-single .img {
  padding: 0 30px 30px 15px;
  position: relative;
}
body.dark .team-single .img:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  left: 45px;
  bottom: 0;
  background-color: var(--clr-theme-color);
  border-radius: 10px;
}
body.dark .team-single .img img {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 10px;
}
/* details */
body.dark .team-single .wrapper {
  position: relative;
}
body.dark .team-single .wrapper .cont {
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 30px 0 0 0;
}
body.dark .team-single .wrapper .cont .coll {
  width: auto;
  max-width: auto;
}
body.dark .team-single .wrapper .cont .coll h6 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2em;
  white-space: normal;
  margin: 0;
  color: #2c3b4c;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}
body.dark .team-single .wrapper .cont .coll h5 {
  font-size: 16px;
  font-weight: 900;
  white-space: normal;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
  transition: color 0.3s;
  color: #2c3b4c;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}
/* link */
body.dark .team-single p a {
  position: relative;
  color: #fff;
  text-decoration: none;
}
body.dark .team-single p a:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--clr-theme-color);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .team-single p a:hover {
  color: #fff;
}
/* tabs */
body.dark .team-single .con .simpl-bord.nav-tabs {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--clr-theme-color);
}
body.dark .team-single .con .simpl-bord .nav-item {
  margin-right: 30px;
}
body.dark .team-single .con .simpl-bord .nav-item:last-of-type {
  margin-right: 0;
}
body.dark .team-single .con .simpl-bord .nav-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent !important;
  font-weight: 900;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
body.dark .team-single .con .simpl-bord .nav-link.active {
  font-weight: 900;
  color: var(--clr-theme-color);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}
body.dark .team-single .tab-content p {
  color: #ccc;
}
/* team-single social */
body.dark .team-single .social-icon {
  margin-bottom: 0px;
}
body.dark .team-single .social-icon a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border: 2px solid var(--clr-theme-color);
  background: var(--clr-theme-color);
  color: #fff;
  border-radius: 0;
  margin-right: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 100%;
  display: inline-block;
}
body.dark .team-single .social-icon a:hover {
  border: 2px solid #fff;
  background: #fff;
  color: #2c3b4c;
}

/* ======= Skills style ======= */
body.dark .skills {
  position: relative;
}
body.dark .skills .skill-item {
  margin-bottom: 40px;
}
body.dark .skills .skill-item h6 {
  font-family: "Hind", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
body.dark .skills-box .skill-progress {
  height: 4px;
  background-color: rgba(220, 39, 81, 0.2);
  position: relative;
}
body.dark .skills-box .skill-progress .progres {
  position: absolute;
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  background-color: var(--clr-theme-color);
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
body.dark .skills-box .skill-progress .progres:after {
  content: attr(data-value);
  position: absolute;
  right: 10px;
  top: -25px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

/* ======= Works style ======= */
body.dark .works {
  overflow: hidden;
}
body.dark .works .item {
  margin-bottom: 25px;
}
body.dark .works .item .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
body.dark .works .item .wrap .img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  border-radius: 10px;
}
body.dark .works .item .wrap .img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  border-radius: 10px;
}
body.dark .works .item .wrap:hover img {
  opacity: 0.2;
}
body.dark .works .item .wrap:hover .img {
  transform: scale(0.95);
}
body.dark .works .item .wrap:hover .text {
  opacity: 1;
  transform: translateX(0px);
}
body.dark .works .item .wrap .text {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  padding: 15px;
}
body.dark .works .item .wrap .text h4 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #fff;
}
body.dark .works .item .wrap .text p {
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  color: var(--clr-theme-color);
  margin-bottom: 0;
  font-weight: 400;
}
/* icon box button */
body.dark .works .item .wrap .text .icon-box {
  position: relative;
  display: block;
}
body.dark .works .item .wrap .text a .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.3s;
  z-index: 1;
  margin: 0 auto;
}
body.dark .works .item .wrap .text a .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr-theme-color);
  background: var(--clr-theme-color);
  border-radius: 50%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
  content: "";
}
body.dark .works .item:hover .wrap .text a .icon-box::before {
  transform: scale(1);
  opacity: 1;
}
body.dark .works .item .wrap .text a .icon-box i::before {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
body.dark .works .item:hover .wrap .text a .icon-box i::before {
  transform: rotate(0);
  color: #fff;
  z-index: 9;
}
/* btn-1 */
body.dark .works .item:hover .wrap .text .btn-1 i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
body.dark .works .item:hover .wrap .text.btn-1:hover i {
  transform: rotate(0);
}

/* =======  Work Single style  ======= */
body.dark .work-single {
  position: relative;
}
body.dark .work-single h5 {
  font-size: 27px;
  color: #fff;
}
body.dark .work-single .s-list {
  padding: 0;
  list-style: none;
}
body.dark .work-single .s-list > li::after,
body.dark .work-single .s-list > li::before {
  content: "";
  display: table;
}
body.dark .work-single strong {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 900;
  display: inline;
  color: #fff;
}
body.dark .work-single span {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
body.dark .work-single .s-list > li > :last-child {
  margin-bottom: 0;
}
body.dark .work-single .s-list > li::after {
  clear: both;
}
body.dark .work-single .s-list-divider > li:nth-child(n + 2) {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}
body.dark .work-single .s-list a {
  color: #ccc;
}

/* ======= Services style ======= */
body.dark .services {
  position: relative;
}
body.dark .services .item {
  background-color: #2c3b4c;
  position: relative;
  border-radius: 10px;
  transition: 0.7s;
  border: none;
}
body.dark .services .item .wrap {
  transition: 0.7s;
  text-align: center;
  padding: 75px 30px 15px 30px;
  overflow: hidden;
}
body.dark .services .item .wrap .icon-1 {
  color: var(--clr-theme-color);
  transition: 0.7s;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  margin-bottom: 25px;
}
body.dark .services .item .wrap .icon-1 i {
  font-size: 60px;
  line-height: 60px;
}
body.dark .services .item .wrap .con {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .services .item .wrap .con h4 {
  font-size: 24px;
  color: #fff;
}
body.dark .services .item .wrap .con p {
  color: #999;
}
body.dark .services .item .wrap .con .icon-2 a {
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: 0.7s;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .services .item:hover {
  background-color: var(--clr-theme-color);
}
body.dark .services .item:hover .wrap .icon-1 {
  color: #fff;
  transform: translateY(-25px);
}
body.dark .services .item:hover .wrap .con {
  color: #fff;
  transform: translateY(-25px);
}
body.dark .services .item:hover .wrap .con h4 {
  color: #fff;
}
body.dark .services .item:hover .wrap .con p {
  color: #fff;
}
body.dark .services .item:hover .wrap .con .icon-2 a {
  color: #fff;
  opacity: 1;
}
body.dark .services .item .wrap .numb {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 100px;
  position: relative;
  bottom: 0px;
  right: -15px;
  text-align: end;
  color: transparent;
  -webkit-text-stroke: 2px rgba(220, 39, 81, 0.2);
  opacity: 0.8;
}
body.dark .services .item:hover .wrap .numb {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}
body.dark .services .item.active {
  background: var(--clr-theme-color);
}
body.dark .services .item.active .wrap .icon-1,
body.dark .services .item.active .wrap .con h4,
body.dark .services .item.active .wrap .con p {
  color: #fff;
}
body.dark .services .item.active .sub-icon {
  color: rgba(255, 255, 255, 0.05);
}
body.dark .services .item.active .numb {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

body.dark .services-single h5 {
  font-size: 27px;
  color: #fff;
}

/* ======= Services Sidebar style ======= */
body.dark .sidebar .sidebar-widget {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
body.dark .sidebar .sidebar-widget:last-child {
  margin-bottom: 0px;
}
body.dark .sidebar .sidebar-widget .widget-inner {
  position: relative;
  display: block;
  padding: 45px;
  background: #2c3b4c;
  border-radius: 10px;
  margin-top: -225px;
  z-index: 9;
}
body.dark .sidebar-title {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--clr-theme-color);
  padding-bottom: 10px;
}
body.dark .sidebar-title h4 {
  position: relative;
  display: inline-block;
  font-size: 27px;
  color: #2c3b4c;
  margin-bottom: 0px;
}
body.dark .sidebar .services ul {
  position: relative;
  padding-left: 0;
}
body.dark .sidebar .services ul li {
  position: relative;
  line-height: 60px;
  color: #2c3b4c;
  margin-bottom: 5px;
}
body.dark .sidebar .services ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  right: -20px;
  bottom: 0;
  background: var(--clr-theme-color);
  border-radius: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}
body.dark .sidebar .services ul li:after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -12px;
  height: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
body.dark .sidebar .services ul li:last-child {
  margin-bottom: 0;
}
body.dark .sidebar .services ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 1;
}
body.dark .sidebar .services ul li:hover a,
body.dark .sidebar .services ul li.active a {
  color: #fff;
}
body.dark .sidebar .services ul li:hover:before,
body.dark .sidebar .services ul li.active:before,
body.dark .sidebar .services ul li:hover:after,
body.dark .sidebar .services ul li.active:after {
  opacity: 1;
}
body.dark .sidebar .services ul li a:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  opacity: 1;
  font-size: 16px;
  font-weight: normal;
  z-index: 1;
  font-style: normal;
}
body.dark .sidebar .services ul li a:hover:before,
body.dark .sidebar .services ul li.active a:before {
  opacity: 1;
  transform: scaleX(1);
  transition: all 0.3s ease 0.1s;
}

/* =======  Gallery Image style  ======= */
body.dark .gallery-filter {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 0px;
  position: relative;
}
body.dark .gallery-filter li {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-right: 15px;
  display: inline-block;
  cursor: pointer;
  color: #fff;
}
body.dark .gallery-filter li:last-child {
  margin-right: 0;
}
body.dark .gallery-filter li.active {
  color: var(--clr-theme-color);
  content: "";
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid var(--clr-theme-color);
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .gallery-filter li:hover {
  color: var(--clr-theme-color);
}
body.dark .gallery-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  -moz-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  border-radius: 6px;
}
body.dark .gallery-box {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
}
body.dark .gallery-box .gallery-img {
  position: relative;
  overflow: hidden;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .gallery-box .gallery-img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .gallery-box .gallery-img > img {
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  border-radius: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .gallery-box:hover .gallery-img > img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
body.dark .gallery-box .gallery-detail {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  padding: 10px;
}
body.dark .gallery-box .gallery-detail h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}
body.dark .gallery-box .gallery-detail p {
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  color: var(--clr-theme-color);
  margin-bottom: 0;
  font-weight: 400;
}
body.dark .gallery-box:hover .gallery-detail {
  opacity: 1;
  transform: translateX(0px);
}
body.dark .mfp-counter {
  display: none;
}

/* ======= Gallery Video style ======= */
body.dark .video-gallery {
}
body.dark .video-gallery .item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
}
body.dark .video-gallery .item:hover > img {
  transform: scale(1.1);
}
body.dark .video-gallery .item .img {
  position: relative;
  overflow: hidden;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .video-gallery .item .img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .video-gallery .item .img > img {
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  border-radius: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .video-gallery .item:hover .img > img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
body.dark .video-gallery .item .text {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  padding: 10px;
}
body.dark .video-gallery .item .text h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}
body.dark .video-gallery .item .text p {
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  color: var(--clr-theme-color);
  margin-bottom: 0;
  font-weight: 400;
}
body.dark .video-gallery .item:hover .text {
  opacity: 1;
  transform: translateX(0px);
}
body.dark .video-gallery .item .video-icon {
  z-index: 2;
  padding-left: 5px;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--clr-theme-color);
  border-radius: 50%;
  color: #fff;
  padding: 17px 20px 17px 20px;
  line-height: 0;
  overflow: hidden;
  transition: background-color 300ms ease, transform 300ms ease,
    color 300ms ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
body.dark .video-gallery .item .video-icon:hover {
  background: #fff;
  color: #2c3b4c;
  transform: translate3d(0px, -5px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
body.dark .video-gallery .item .video-icon i {
  font-size: 24px;
}

/* ======= Popup Video style ======= */
body.dark .video-popup {
  position: relative;
  overflow: hidden;
}
body.dark .video-popup .vid {
  position: relative;
  z-index: 8;
}
body.dark .video-popup .vid .vid-butn:hover .icon {
  color: #fff;
  transform: translate3d(0px, -5px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
body.dark .video-popup .vid .vid-butn:hover .icon:before {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
body.dark .video-popup .vid .vid-butn .icon {
  color: var(--clr-theme-color);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  line-height: 110px;
  text-align: center;
  font-size: 40px;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
}
body.dark .video-popup .vid .vid-butn .icon:after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  border-radius: 50%;
  z-index: -1;
}
body.dark .video-popup .vid .vid-butn .icon:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}

/* ======= Accordion Box (for Faqs) style ======= */
body.dark .accordion-box {
  position: relative;
  padding: 0px;
}
body.dark .accordion-box .block {
  position: relative;
  background: #2c3b4c;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 10px;
}
body.dark .accordion-box .block.active-block {
}
body.dark .accordion-box .block:last-child {
  margin-bottom: 0;
}
body.dark .accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  cursor: pointer;
  padding: 30px;
  padding-right: 60px;
  color: #fff;
  transition: all 500ms ease;
  font-family: "Poppins", sans-serif;
}
body.dark .accordion-box .block .acc-btn .count {
  color: var(--clr-theme-color);
  padding-right: 5px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}
body.dark .accordion-box .block .acc-btn.active .count {
  color: #fff;
}
body.dark .accordion-box .block .acc-btn:before {
  position: absolute;
  right: 35px;
  top: 24px;
  height: 30px;
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-color);
  line-height: 30px;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  transition: all 500ms ease;
}
body.dark .accordion-box .block .acc-btn.active {
  background-color: var(--clr-theme-color);
  color: #fff;
}
body.dark .accordion-box .block .acc-btn.active:before {
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  content: "\f106";
}
body.dark .accordion-box .block .acc-content {
  position: relative;
  display: none;
}
body.dark .accordion-box .block .content {
  position: relative;
  padding: 30px;
  color: #2c3b4c;
  border-radius: 0px 0px 10px 10px;
}
body.dark .accordion-box .block .acc-content.current {
  display: block;
}
body.dark .accordion-box .block .content .text {
  display: block;
  position: relative;
  top: 0px;
  color: #ccc;
}

/* ======= LetsTalk style ======= */
body.dark .lets-talk {
  position: relative;
}
body.dark .lets-talk .wrap {
  position: relative;
  background: #fff;
  padding: 45px 30px;
  overflow: hidden;
  z-index: 1;
}
body.dark .lets-talk[data-overlay-dark] h6,
body.dark .lets-talk h6 {
  display: inline-block;
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  color: var(--clr-theme-color);
  margin-bottom: 10px;
  font-weight: 400;
}
body.dark .lets-talk[data-overlay-dark] h5,
body.dark .lets-talk h5 {
  font-size: 75px;
  color: #fff;
  line-height: 1em;
}
body.dark .lets-talk[data-overlay-dark] h5 span,
body.dark .lets-talk h5 span {
  position: relative;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
}
body.dark .lets-talk[data-overlay-dark] p,
body.dark .lets-talk p {
  font-size: 18px;
  color: #fff;
  line-height: 1.5em;
}

/* ======= Testimonials style ======= */
body.dark .testimonials {
  position: relative;
}
body.dark .testimonials .item {
  position: relative;
  background: #2c3b4c;
  padding: 45px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
body.dark .testimonials .item .quote {
  position: relative;
  font-size: 55px;
  color: var(--clr-theme-color);
  line-height: 65px;
}
body.dark .testimonials .item p {
  color: #ccc;
}
body.dark .testimonials .item .info {
  text-align: left;
  padding: 15px 0 0 0;
  border: none;
  border-top: 2px solid rgba(220, 39, 81, 0.2);
}
body.dark .testimonials .item .info .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  border: 2px solid rgba(220, 39, 81, 0.2);
  padding: 4px;
}
body.dark .testimonials .item .info .author-img img {
  border-radius: 100%;
}
body.dark .testimonials .item .info .cont {
  margin-left: 80px;
}
body.dark .testimonials .item .info .cont h6 {
  display: block;
  font-size: 16px;
  margin-bottom: 0px;
  padding-top: 15px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  color: #fff;
  line-height: 1.2em;
  text-transform: none;
  letter-spacing: 0px;
}
body.dark .testimonials .item .info span {
  font-size: 16px;
  color: #ccc;
  line-height: 1.2em;
}

/* ======= Clients style ======= */
body.dark .clients {
  position: relative;
  overflow: hidden;
}
body.dark .clients .clients-logo {
  line-height: 0;
  padding: 15px;
  border: 2px solid #f0f0f3;
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
  border-radius: 5px;
  background: #f0f0f3;
}
body.dark .clients .clients-logo:hover {
  transform: scale(0.95);
  overflow: hidden;
  transition: 0.5s ease;
}
body.dark .clients img {
  -webkit-filter: none;
  filter: none;
}

/* ======= Events style ======= */
body.dark .events .item {
  padding: 30px 0;
  border-bottom: 2px solid rgba(220, 39, 81, 0.2);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
body.dark .events .item:first-of-type {
  border-top: 2px solid rgba(220, 39, 81, 0.2);
}
body.dark .events .item:hover {
  border-bottom-color: var(--clr-theme-color);
}
body.dark .events .item:hover .text a {
  text-decoration: none;
}
body.dark .events .item:hover .img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
body.dark .events .item .text h5,
body.dark .events .item .text h5 a {
  font-size: 24px;
  margin-bottom: 0;
  color: #fff;
}
body.dark .events .item .text p {
  color: var(--clr-theme-color);
  font-size: 16px;
  font-weight: 400;
  font-family: "Architects Daughter", cursive;
  margin-bottom: 0;
}
body.dark .events .item .date {
  display: flex;
  align-items: center;
}
body.dark .events .item .date > span {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  line-height: 48px;
  font-size: 85px;
  margin-right: 12px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--clr-theme-color);
  opacity: 0.8;
}
body.dark .events .item .date div span {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  margin-top: 4px;
}
body.dark .events .item .date > h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}
body.dark .events .item .date h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Hind", sans-serif;
  margin-bottom: 0;
}
body.dark .events .item .img {
  position: absolute;
  top: 50%;
  /*  right: -30px;*/
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}
body.dark .events .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
body.dark .position-re {
  position: relative;
}
body.dark .ml-auto {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  body.dark .events .item .img {
    right: 5px;
    width: 160px;
    height: 160px;
  }
  body.dark .events .item .text h5,
  body.dark .events .item .text h5 a {
    font-size: 20px;
    margin-bottom: 0px;
  }
}

/* Event detail */
body.dark .event-detail .item {
  display: flex;
  padding: 30px;
  border-radius: 10px;
  background: #2c3b4c;
}
body.dark .event-detail .item:nth-child(even) {
  flex-direction: row-reverse;
}
body.dark .event-detail .item:nth-child(even) .con {
  text-align: left;
}
body.dark .event-detail .item:nth-child(even) .number {
  margin-left: unset;
  margin-right: 40px;
}
body.dark .event-detail .item .number {
  text-align: center;
  margin: 0 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0px 20px 0px 0px;
  width: 120px;
}
body.dark .event-detail .item .number h1 {
  font-size: 80px;
  line-height: 70px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--clr-theme-color);
  opacity: 0.8;
  margin-bottom: 0;
}
body.dark .event-detail .item .number span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #ccc;
}
body.dark .event-detail .item .con {
  margin: 10px 0;
}
body.dark .event-detail .item .con span {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  line-height: 1;
}
body.dark .event-detail .item .con h5 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 5px;
  margin-top: 5px;
}
body.dark .event-detail .item .con a {
  display: block;
  color: var(--clr-theme-color);
  font-size: 16px;
  font-weight: 400;
  font-family: "Architects Daughter", cursive;
  margin-bottom: 0;
}

/* ======= Blog Home style  ======= */
body.dark .blog-home {
  overflow: hidden;
}
body.dark .blog-home .item {
  position: relative;
  margin-bottom: 15px;
}
body.dark .blog-home .item .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
body.dark .blog-home .item .wrap .img {
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
body.dark .blog-home .item .wrap .img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  opacity: 1;
  border-radius: 10px;
}
body.dark .blog-home .item .wrap .title {
  position: absolute;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  bottom: 0px;
  padding: 15px 30px 0 30px;
}
body.dark .blog-home .item .wrap .title h6 a {
  font-size: 16px;
  color: #fff;
}
body.dark .blog-home .item .wrap .title h4 a {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.2em;
}
body.dark .blog-home .item .wrap .title h4.stitle a {
  font-size: 24px;
}
body.dark .blog-home .item .wrap .title h6 a {
  font-family: "Architects Daughter", cursive;
  font-size: 18px;
  color: var(--clr-theme-color);
  display: block;
  margin-bottom: 15px;
  font-weight: 400;
}
body.dark .blog-home .item .wrap:hover {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
body.dark .blog-home .item .wrap:hover .img img {
  opacity: 1;
  transform: scale(0.95);
}
body.dark .blog-home .item .wrap:hover .title {
  transform: translateY(-35px);
}
/* icon box button */
body.dark .blog-home .item .wrap .title {
}
body.dark .blog-home .item .wrap .title .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.3s;
  z-index: 1;
  margin: 0 auto;
  opacity: 0;
}
body.dark .blog-home .item .wrap:hover .title .icon-box {
  opacity: 1;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
body.dark .blog-home .item .wrap .title .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0.7);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
  content: "";
  opacity: 0;
}
body.dark .blog-home .item .wrap:hover .title .icon-box::before {
  transform: scale(1);
  opacity: 1;
}
body.dark .blog-home .item .wrap .title .icon-box i::before {
  position: relative;
  display: inline-block;
  font-size: 24px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 1;
}
body.dark .blog-home .item .wrap:hover .title .icon-box i::before {
  transform: rotate(0);
  color: var(--clr-theme-color);
  z-index: 9;
}

/* ======= Blog 2 Grid style ======= */
body.dark .blog2 {
  position: relative;
  overflow: hidden;
}
body.dark .blog2 .item {
  margin-bottom: 15px;
}
body.dark .blog2 .item .img {
  overflow: hidden;
  border-radius: 10px;
}
body.dark .blog2 .item .img img {
  width: 100%;
}
body.dark .blog2 .item .wrapper {
  background-color: #2c3b4c;
  padding: 0.1px 30px 35px 30px;
  margin: -35px 20px 0 20px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  transition: all ease 0.4s;
}
body.dark .blog2 .item .wrapper .date {
  margin: -20px 0 20px 0;
}
body.dark .blog2 .item .wrapper .date a {
  display: inline-block;
  font-size: 14px;
  padding: 10.5px 20px;
  line-height: 1;
  background-color: var(--clr-theme-color);
  color: #fff;
  border-radius: 5px;
}
body.dark .blog2 .item:hover .wrapper .date a {
  background-color: #fff;
  color: #101010;
}
body.dark .blog2 .item .wrapper .con {
  overflow: hidden;
  position: relative;
  transition: all ease 0.4s;
  padding-bottom: 0;
}
body.dark .blog2 .item .wrapper .con .category {
  margin: 0 0 15px 0;
}
body.dark .blog2 .item .wrapper .con .category a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
}
.blog2 .item .wrapper .con .category a i {
  transition: all ease 0.4s;
  color: var(--clr-theme-color);
  margin-right: 5px;
  font-size: 12px;
}
.blog2 .item .wrapper .con .text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2em;
}
.blog2 .item .wrapper .con .icon-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(60px);
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 55px;
  font-size: 14px;
  background-color: #fff;
  color: #101010;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.4s;
}
body.dark .blog2 .item .wrapper .con .icon-btn:hover {
  background-color: #fff;
  color: #101010;
}
body.dark .blog2 .item:hover .wrapper {
  margin-top: -104px;
  background-color: var(--clr-theme-color);
  border-color: transparent;
}
body.dark .blog2 .item:hover .wrapper .con {
  padding-bottom: 70px;
}
body.dark .blog2 .item:hover .wrapper .con .category a {
  color: #fff;
}
body.dark .blog2 .item:hover .wrapper .con .category a i {
  color: #fff;
}
body.dark .blog2 .item:hover .wrapper .con .category a:hover {
  color: #fff;
}
body.dark .blog2 .item:hover .wrapper .con .text a {
  color: #fff;
}
body.dark .blog2 .item:hover .wrapper .con .text a:hover {
  color: #fff;
}
body.dark .blog2 .item:hover .wrapper .con .icon-btn {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ======= Blog & Post style ======= */
body.dark .blog .item {
  margin-bottom: 30px;
}
body.dark .blog img,
body.dark .blog .vid-icon img {
  border-radius: 10px;
}
body.dark .blog .item .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
body.dark .blog .item .img:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
body.dark .blog .item .img a {
  display: block;
}
body.dark .blog .item .img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.dark .blog .item .img .date {
  display: inline-block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--clr-theme-color);
  border: 2px solid var(--clr-theme-color);
  color: #fff;
  padding: 5px 12px;
  text-align: center;
  font-family: "Hind", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
body.dark .blog .item .img .date span {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 3px;
}
body.dark .blog .item .img .date i {
  font-style: normal;
  display: block;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
body.dark .blog .item .wrap {
  padding: 30px 0;
}
body.dark .blog .item .wrap h4 {
  font-size: 32px;
  margin-bottom: 15px;
}
body.dark .blog .item .wrap h4 a:hover,
body.dark .blog .item .wrap h5 a:hover {
  color: var(--clr-theme-color);
}
/* post */
body.dark .blog .comment {
  padding-top: 60px;
  margin-bottom: 60px;
}
body.dark .blog .comment h5 {
  font-size: 24px;
  color: #fff;
}
body.dark .blog .comment h5 span {
  font-family: "Hind", sans-serif;
  font-size: 14px;
  color: #ccc;
  font-weight: 400;
  margin-left: 15px;
}
body.dark .blog .comment .wrap {
  display: flex;
  margin-bottom: 60px;
}
body.dark .blog .comment .img img {
  margin-right: 30px;
  flex: 0 0 auto;
  border-radius: 100%;
  width: 100px;
  border: 2px solid var(--clr-theme-color);
  padding: 4px;
}
body.dark .blog .comment .text {
  margin-right: 20px;
}
body.dark .blog .repay {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
body.dark .blog .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-family: "Hind", sans-serif;
  font-size: 16px;
}
body.dark .blog .category a {
  color: var(--clr-theme-color);
}
body.dark .blog .category span {
  color: #ccc;
}
body.dark .blog .divider {
  width: 20px;
  height: 2px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: var(--clr-theme-color);
}
/* sidebar */
body.dark .blog-sidebar .item {
  position: relative;
  background: #2c3b4c;
  padding: 45px 30px;
  margin-bottom: 30px;
  display: grid;
  border-radius: 10px;
}
body.dark .blog-sidebar .item ul {
  margin-bottom: 0;
  padding: 0;
}
body.dark .blog-sidebar .item ul li {
  margin-bottom: 15px;
  color: #2c3b4c;
  font-size: 16px;
  line-height: 1.5em;
}
body.dark .blog-sidebar .item ul li a {
  color: #ccc;
}
body.dark .blog-sidebar .item ul li a.active {
  color: var(--clr-theme-color);
}
body.dark .blog-sidebar .item ul li a:hover {
  color: var(--clr-theme-color);
}
body.dark .blog-sidebar .item ul li:last-child {
  margin-bottom: 0;
}
body.dark .blog-sidebar .item ul li i {
  font-size: 12px;
  margin-right: 10px;
  color: var(--clr-theme-color);
}
body.dark .blog-sidebar .item .recent li {
  display: block;
  overflow: hidden;
}
body.dark .blog-sidebar .item .recent .thum {
  width: 90px;
  overflow: hidden;
  float: left;
}
body.dark .blog-sidebar .item .recent a {
  display: block;
  margin-left: 105px;
}
body.dark .blog-sidebar .item .text {
  margin-bottom: 5px;
}
body.dark .blog-sidebar .item .text h5 {
  font-size: 24px;
  color: #fff;
}
body.dark .blog-sidebar .item .search form {
  position: relative;
}
body.dark .blog-sidebar .item .search form input {
  width: 100%;
  padding: 15px;
  border: 0;
  background: #fff;
  margin-bottom: 0;
  height: 61px;
  border-radius: 30px;
  color: #2c3b4c;
}
body.dark .blog-sidebar .item .search form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--clr-theme-color);
  color: #fff;
  border: 0;
  padding: 16px 17px 14px 17px;
  cursor: pointer;
  border-radius: 100%;
  transform: rotate(0);
}
body.dark .blog-sidebar .item .search:hover form button {
  background-color: #2c3b4c;
  color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
body.dark .blog-sidebar .tags li {
  margin: 5px !important;
  padding: 5px 25px;
  background-color: transparent;
  border: none;
  color: #ccc !important;
  float: left;
  border: 2px solid var(--clr-theme-color);
  border-radius: 30px;
}
body.dark .blog-sidebar .item ul.tags li a {
  font-size: 14px;
  color: #ccc;
}
body.dark .blog-sidebar .item ul.tags li:hover,
body.dark .blog-sidebar .item ul.tags li:hover a {
  background-color: var(--clr-theme-color);
  color: #fff;
}
/* pagination */
body.dark .pagination-wrap {
  padding: 0;
  margin: 0;
}
body.dark .pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}
body.dark .pagination-wrap li a {
  background: #2c3b4c;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  border: 2px solid #2c3b4c;
  border-radius: 50%;
  font-size: 16px;
}
body.dark .pagination-wrap li a i {
  font-size: 16px;
}
body.dark .pagination-wrap li a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--clr-theme-color);
  border: 2px solid var(--clr-theme-color);
  color: #fff;
}
body.dark .pagination-wrap li a.active {
  background-color: var(--clr-theme-color);
  border: 2px solid var(--clr-theme-color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  body.dark .pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

/* ======= Contact style ======= */
body.dark .contact h5 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}
body.dark .contact .item {
  padding: 15px 0px;
}
body.dark .contact .item .wrap-block {
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
body.dark .contact .item .icon {
  width: 50px;
  height: 50px;
  line-height: 47px;
  font-size: 24px;
  border-radius: 100%;
  margin-right: 15px;
  text-align: center;
  position: relative;
  z-index: 3;
  float: left;
  border: 2px solid var(--clr-theme-color);
  font-weight: normal;
}
body.dark .contact .item .text-block {
  overflow: hidden;
}
body.dark .contact .item h5 {
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: #fff;
}
.contact .item p {
  margin-bottom: 0px;
}
body.dark .google-map {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  height: calc(100% + 30px);
  overflow: hidden;
}
body.dark .contact .con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #2c3b4c;
  text-decoration: none;
}
body.dark .contact .con .icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  margin-right: 15px;
  margin-bottom: 10px;
  border-radius: 100%;
  border: 2px solid var(--clr-theme-color);
  text-align: center;
  background: var(--clr-theme-color);
  font-size: 18px;
  color: #fff;
}
body.dark .contact .con .icon .img {
  border-radius: 0;
  border: 2px solid var(--clr-theme-color);
}
body.dark .contact .con .icon img {
  background: transparent;
  padding: 13px;
}
body.dark .contact .con .text {
  color: #fff;
  line-height: 1.5em;
  margin-top: 15px;
}
/* opening-hours list */
body.dark .opening-hours ul {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  width: 320px;
}
body.dark .opening-hours ul li .tit,
body.dark .opening-hours ul li .dots,
body.dark .opening-hours ul li span {
  display: table-cell;
  white-space: nowrap;
}
body.dark .opening-hours ul li {
  margin-bottom: 15px;
  font-size: 16px;
}
body.dark .opening-hours ul li:last-of-type {
  margin-bottom: 0;
}
body.dark .opening-hours ul li span {
  white-space: nowrap;
  padding-left: 10px;
  color: #ccc;
}
body.dark .opening-hours ul li .tit {
  padding-right: 10px;
  color: #ccc;
}
body.dark .opening-hours ul li .dots {
  height: 4px;
  width: 100%;
  border-bottom: 2px solid rgba(220, 39, 81, 0.2);
  position: relative;
  top: -7px;
}

/* ======= 404 style ======= */
body.dark .not-found h2 {
  font-size: 180px;
  line-height: 180px;
  font-family: "Poppins", sans-serif;
  color: var(--clr-theme-color);
  margin-bottom: 15px;
  font-weight: 900;
}
body.dark .not-found p {
  color: #ccc;
}

/* ======= Button style ======= */
/* button 1 */
body.dark .btn-1 {
  display: inline-block;
  height: auto;
  padding: 20px 50px;
  border: 2px solid var(--clr-theme-color);
  border-radius: 80px;
  background-color: var(--clr-theme-color);
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
body.dark .btn-1:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #2c3b4c;
}
body.dark .btn-1 i {
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
}
body.dark .btn-1:hover i {
  color: #2c3b4c;
}
/* button 2 */
body.dark .btn-2 {
  display: inline-block;
  height: auto;
  padding: 20px 50px;
  border: 1px solid #2c3b4c;
  border-radius: 80px;
  background-color: #2c3b4c;
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
body.dark .btn-2:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #2c3b4c;
}
body.dark .btn-2 i {
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
}
body.dark .btn-2:hover i {
  color: #2c3b4c;
}
/* button 3 */
body.dark .btn-3 {
  display: inline-block;
  height: auto;
  padding: 20px 50px;
  border: 1px solid var(--clr-theme-color);
  border-radius: 80px;
  background-color: var(--clr-theme-color);
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
body.dark .btn-3 i {
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
}
body.dark .btn-3:hover {
  border: 1px solid #2c3b4c;
  background-color: #2c3b4c;
  color: #fff;
}
/* button 4 */
body.dark .btn-4 {
  display: inline-block;
  height: auto;
  padding: 20px 50px;
  border: 1px solid #2c3b4c;
  border-radius: 80px;
  background-color: #2c3b4c;
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
body.dark .btn-4 i {
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
}
body.dark .btn-4:hover {
  border: 1px solid var(--clr-theme-color);
  background-color: var(--clr-theme-color);
  color: #fff;
}
/* button 5 */
body.dark .btn-5 {
  display: inline-block;
  height: auto;
  padding: 20px 50px;
  border: 1px solid #fff;
  border-radius: 80px;
  background-color: #fff;
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: #2c3b4c;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
body.dark .btn-5:hover {
  border: 1px solid var(--clr-theme-color);
  background-color: var(--clr-theme-color);
  color: #fff;
}
body.dark .btn-5 i {
  color: #2c3b4c;
  font-size: 20px;
  margin-right: 5px;
}
body.dark .btn-5:hover i {
  color: #fff;
}

/* ======= Post Navigation Style (Dark Theme) ======= */
body.dark .post-navigation {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

body.dark .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

body.dark .post-navigation .nav-previous,
body.dark .post-navigation .nav-next {
  flex: 1;
  max-width: calc(50% - 15px);
}

body.dark .post-navigation .nav-previous a,
body.dark .post-navigation .nav-next a {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  gap: 15px;
}

body.dark .post-navigation .nav-previous a:hover,
body.dark .post-navigation .nav-next a:hover {
  background: #2a2a2a;
  border-color: var(--clr-theme-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 39, 81, 0.2);
}

/* Navigation Content Layout - Dark Theme */
body.dark .post-navigation .nav-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

body.dark .post-navigation .nav-next .nav-content {
  flex-direction: row-reverse;
}

/* Navigation Images - Dark Theme */
body.dark .post-navigation .nav-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

body.dark .post-navigation .nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.dark .post-navigation a:hover .nav-image img {
  transform: scale(1.05);
}

/* Navigation Text - Dark Theme */
body.dark .post-navigation .nav-text {
  flex: 1;
}

body.dark .post-navigation .nav-subtitle {
  display: block;
  font-size: clamp(0.875rem, calc(0.75rem + 0.25vw), 1rem);
  font-weight: 600;
  color: var(--clr-theme-color);
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.dark .post-navigation .nav-title {
  display: block;
  font-size: clamp(1rem, calc(0.9rem + 0.2vw), 1.125rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

/* Navigation Arrows - Dark Theme */
body.dark .post-navigation .nav-arrow {
  width: 40px;
  height: 40px;
  background: var(--clr-theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

body.dark .post-navigation .nav-arrow i {
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

body.dark .post-navigation a:hover .nav-arrow {
  background: #fff;
  transform: scale(1.1);
}

body.dark .post-navigation a:hover .nav-arrow i {
  color: #2c3b4c;
  transform: translateX(2px);
}

body.dark .post-navigation .nav-previous a:hover .nav-arrow i {
  transform: translateX(-2px);
}

/* Text Alignment - Dark Theme */
body.dark .post-navigation .nav-next .nav-text {
  text-align: right;
}

/* Responsive Design for Dark Theme */
@media (max-width: 768px) {
  body.dark .post-navigation .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  body.dark .post-navigation .nav-previous,
  body.dark .post-navigation .nav-next {
    max-width: 100%;
  }

  body.dark .post-navigation .nav-next .nav-text {
    text-align: left;
  }

  body.dark .post-navigation {
    margin: 30px 0;
    padding: 20px 0;
  }

  body.dark .post-navigation .nav-image {
    width: 50px;
    height: 50px;
  }

  body.dark .post-navigation .nav-arrow {
    width: 35px;
    height: 35px;
  }

  body.dark .post-navigation .nav-arrow i {
    font-size: 14px;
  }
}

/* ======= Footer style ======= */
body.dark .footer {
  position: relative;
  background-color: #2c3b4c;
}
/* top */
body.dark .footer .top {
  position: relative;
  display: block;
  padding: 120px 0 60px 0;
  z-index: 1;
  background-color: #101010;
}
body.dark .footer .top img {
  width: 150px;
  margin-bottom: 15px;
}
body.dark .footer .top h4 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 900;
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
  line-height: 1.2em;
}
body.dark .footer .top h4 span {
  color: var(--clr-theme-color);
}
body.dark .footer .top h5 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
body.dark .footer .top p {
  color: #ccc;
}
body.dark .footer .top .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.dark .footer .top .social a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border: 2px solid var(--clr-theme-color);
  color: #fff;
  border-radius: 0;
  margin-right: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
  border-radius: 100%;
  overflow: hidden;
  transition: background-color 300ms ease, transform 300ms ease,
    color 300ms ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
body.dark .footer .top .social a:hover {
  border: 2px solid var(--clr-theme-color);
  background: var(--clr-theme-color);
  color: #fff;
  transform: translate3d(0px, -5px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
body.dark .footer .top .social a + a {
  margin-left: 5px;
}
body.dark .footer .top .phone {
  font-size: 24px;
  color: var(--clr-theme-color);
  font-weight: 600;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: "Poppins", sans-serif;
}
body.dark .footer .top .phone a {
  color: var(--clr-theme-color);
}
body.dark .footer .top .phone a:hover body.dark .footer .top .phone:hover {
  color: var(--clr-theme-color);
}
body.dark .footer .top .mail {
  font-size: 16px;
  line-height: 3em;
  color: #fff;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .footer .top .mail a {
  color: #fff;
}
body.dark .footer .top .mail a:hover body.dark .footer .top .mail:hover {
  color: #fff;
}
body.dark .footer .top .mail:before {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--clr-theme-color);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .footer .top .mail:hover:before {
  background-color: var(--clr-theme-color);
}
/* bottom */
body.dark .footer .bottom {
  position: relative;
  display: block;
  background-color: #101010;
  padding: 30px 0;
  border: none;
  border-top: 2px solid rgba(220, 39, 81, 0.2);
}
body.dark .footer .bottom p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 5px;
}
body.dark .footer .bottom p a {
  color: #fff;
  font-size: 14px;
  line-height: 3em;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .footer .bottom p a:hover {
  color: #fff;
}
body.dark .footer .bottom p a:before {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--clr-theme-color);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .footer .bottom p a:hover:before {
  background-color: var(--clr-theme-color);
}
body.dark .footer .bottom .horizontal-link li {
  display: inline-block;
  margin: 0 25px 5px 0 !important;
}
body.dark .footer .bottom .horizontal-link li a {
  font-size: 14px;
  color: #ccc;
}
/* list */
body.dark .footer .list li + li {
  margin-top: 5px;
}
body.dark .footer .list li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #ccc;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-left: 15px;
}
body.dark .footer .list li a:hover {
  padding-left: 15px;
  color: var(--clr-theme-color);
}
body.dark .footer .list li a:before {
  position: absolute;
  top: 45%;
  left: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--clr-theme-color);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.dark .footer .list li a:hover:before {
  opacity: 1;
}
/* subscribe */
body.dark .subscribe form {
  margin-top: 30px;
  position: relative;
}
body.dark .subscribe form input {
  width: 100%;
  padding: 16px 60px 17px 16px;
  background-color: transparent;
  border: 2px solid var(--clr-theme-color);
  border-radius: 30px;
  color: #fff;
  margin-bottom: 15px;
  outline: none;
}
body.dark .subscribe form input::placeholder {
  color: #ccc;
}
body.dark .subscribe form button {
  background-color: #fff;
  padding: 16px 17px 14px 17px;
  border-radius: 100%;
  color: var(--clr-theme-color);
  border: 0;
  position: absolute;
  top: 5.25px;
  right: 6px;
  cursor: pointer;
  outline: none;
  transform: rotate(0);
}
body.dark .subscribe:hover form button {
  background-color: #fff;
  color: var(--clr-theme-color);
  outline: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}

/* ======= toTop Button style ======= */
body.dark .progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  -webkit-box-shadow: inset 0 0 0 2px rgba(220, 39, 81, 0.2);
  box-shadow: inset 0 0 0 2px rgba(220, 39, 81, 0.2);
}
body.dark .progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
body.dark .progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
body.dark .progress-wrap svg path {
  fill: none;
}
body.dark .progress-wrap svg.progress-circle path {
  stroke: var(--clr-theme-color);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
body.dark .progress-wrap::after {
  color: var(--clr-theme-color);
}
body.dark .progress-wrap svg.progress-circle path {
  stroke: var(--clr-theme-color);
}

/* ============================
   Progress Circle Repositioning (Dark Mode)
   ============================ */

/*
 * Progress Circle Desktop Positioning for Dark Mode
 *
 * Repositions the progress-circle element to the left side on desktop view
 * (similar to mobile buttonizer positioning) while maintaining current mobile behavior.
 * Uses the same positioning strategy as the buttonizer main button.
*/

/* Desktop view - reposition to left */
@media (min-width: 769px) {
  body.dark .progress-wrap {
    left: 30px !important;
    right: auto !important;
    bottom: 30px !important; /* Consistent with mobile buttonizer */
    z-index: 99 !important; /* Below buttonizer to avoid conflicts */
  }
}

/* Mobile view - maintain current positioning */
@media (max-width: 768px) {
  body.dark .progress-wrap {
    /* Current mobile positioning is already correct */
    /* No changes needed - inherits base styles */
    /* Keeping this comment block for documentation purposes */
  }
}

/* ======= Media Query style ======= */

@media (max-width: 767px) {
  body.dark .parallax-header h1,
  body.dark .parallax-header h1 span,
  body.dark .parallax-header[data-overlay-dark] h1,
  body.dark .parallax-header[data-overlay-dark] h1 span,
  body.dark .not-found h1,
  body.dark .header .caption h1,
  body.dark .header .caption h1 span,
  body.dark .video-fullscreen h1,
  body.dark .events .item .date > span {
    font-size: 60px;
    line-height: 1.2em;
  }

  body.dark .section-padding h1 {
    font-size: 36px;
  }

  body.dark .section-padding[data-overlay-dark] h6,
  .section-padding h6 {
    font-size: 16px;
  }

  body.dark .section-padding h2 {
    font-size: 32px;
  }

  body.dark .not-found h2 {
    font-size: 120px;
    height: 140px;
  }

  body.dark .lets-talk[data-overlay-dark] h5,
  .lets-talk h5 {
    font-size: 60px;
  }

  body.dark .sidebar .sidebar-widget .widget-inner {
    margin-top: 0px;
  }

  body.dark .footer .bottom p {
    text-align: left;
  }

  body.dark .blog .item .wrap h4 {
    font-size: 27px;
  }
  body.dark .testimonials .wrap {
    padding: 40px 20px;
    margin-bottom: 15px;
  }
  body.dark .accordion-box .block .acc-btn {
    padding: 25px 30px 25px 15px;
    font-family: "Hind", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  body.dark .accordion-box .block .acc-btn:before {
    right: 15px;
  }
  body.dark .pagination-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  body.dark .sidebar .sidebar-widget .widget-inner {
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  body.dark .container {
    max-width: 1190px !important;
  }
}

/* ======= Overlay Effect Bg image ======= */
[data-overlay-dark] {
  position: relative;
}
[data-overlay-dark] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #000;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6 {
  color: #fff;
}
[data-overlay-dark] p {
  color: #2c3b4c;
}
[data-overlay-dark="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before {
  opacity: 1;
}

/* ======= Post Navigation Style (Dark Theme) ======= */
body.dark .post-navigation {
  margin: 40px 0 20px 0;
  padding: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

body.dark .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

body.dark .post-navigation .nav-previous,
body.dark .post-navigation .nav-next {
  flex: 1;
  max-width: calc(50% - 15px);
}

body.dark .post-navigation .nav-previous a,
body.dark .post-navigation .nav-next a {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  gap: 15px;
}

body.dark .post-navigation .nav-previous a:hover,
body.dark .post-navigation .nav-next a:hover {
  background: #2a2a2a;
  border-color: var(--clr-theme-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 39, 81, 0.2);
}

/* Navigation Content Layout - Dark Theme */
body.dark .post-navigation .nav-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

/* Next navigation uses default row direction: [Arrow] [Text] [Image] */

/* Navigation Images - Dark Theme */
body.dark .post-navigation .nav-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

body.dark .post-navigation .nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.dark .post-navigation a:hover .nav-image img {
  transform: scale(1.05);
}

/* Navigation Text - Dark Theme */
body.dark .post-navigation .nav-text {
  flex: 1;
}

body.dark .post-navigation .nav-subtitle {
  display: block;
  font-size: clamp(0.875rem, calc(0.75rem + 0.25vw), 1rem);
  font-weight: 600;
  color: var(--clr-theme-color);
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.dark .post-navigation .nav-title {
  display: block;
  font-size: clamp(0.875rem, calc(0.8rem + 0.15vw), 1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

/* Navigation Arrows - Dark Theme */
body.dark .post-navigation .nav-arrow {
  width: 40px;
  height: 40px;
  background: var(--clr-theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

body.dark .post-navigation .nav-arrow i {
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

body.dark .post-navigation a:hover .nav-arrow {
  background: #fff;
  transform: scale(1.1);
}

body.dark .post-navigation a:hover .nav-arrow i {
  color: #2c3b4c;
  transform: translateX(2px);
}

body.dark .post-navigation .nav-previous a:hover .nav-arrow i {
  transform: translateX(-2px);
}

/* Text Alignment - Dark Theme */
body.dark .post-navigation .nav-next .nav-text {
  text-align: center;
}

/* Responsive Design for Dark Theme */
@media (max-width: 768px) {
  body.dark .post-navigation .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  body.dark .post-navigation .nav-previous,
  body.dark .post-navigation .nav-next {
    max-width: 100%;
  }

  body.dark .post-navigation .nav-next .nav-text {
    text-align: center;
  }

  body.dark .post-navigation {
    margin: 30px 0 15px 0;
    padding: 20px 0;
  }

  body.dark .post-navigation .nav-image {
    width: 50px;
    height: 50px;
  }

  body.dark .post-navigation .nav-arrow {
    width: 35px;
    height: 35px;
  }

  body.dark .post-navigation .nav-arrow i {
    font-size: 14px;
  }
}

/* ======= Suggested Articles Style (Dark Theme) ======= */
body.dark .suggested-articles {
  margin: 20px 0 40px 0;
  padding: 40px 0;
  border-top: 1px solid #333;
}

body.dark .suggested-articles .section-header {
  text-align: center;
  margin-bottom: 40px;
}

body.dark .suggested-articles .section-header h3 {
  font-size: clamp(1.875rem, calc(1.75rem + 0.25vw), 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

body.dark .suggested-articles .section-header p {
  font-size: clamp(1rem, calc(0.9rem + 0.15vw), 1.125rem);
  color: #ccc;
  margin-bottom: 0;
  font-family: "Hind", sans-serif;
}

body.dark .suggested-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

body.dark .suggested-articles .article-item {
  height: 100%;
}

body.dark .suggested-articles .article-card {
  background: #2c3b4c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #3a4a5c;
}

body.dark .suggested-articles .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border-color: var(--clr-theme-color);
}

body.dark .suggested-articles .article-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

body.dark .suggested-articles .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.dark .suggested-articles .article-card:hover .article-image img {
  transform: scale(1.05);
}

body.dark .suggested-articles .article-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.dark .suggested-articles .article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

body.dark .suggested-articles .article-category {
  background: var(--clr-theme-color);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: clamp(0.75rem, calc(0.7rem + 0.1vw), 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.dark .suggested-articles .article-category:hover {
  background: #fff;
  color: #2c3b4c;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

body.dark .suggested-articles .article-category:focus {
  outline: 2px solid var(--clr-theme-color);
  outline-offset: 2px;
}

body.dark .suggested-articles .article-date {
  color: #ccc;
  font-size: clamp(0.875rem, calc(0.8rem + 0.1vw), 0.9375rem);
  font-weight: 500;
  font-family: "Hind", sans-serif;
}

body.dark .suggested-articles .article-title {
  margin-bottom: 15px;
  flex-grow: 1;
}

body.dark .suggested-articles .article-title a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.125rem, calc(1rem + 0.25vw), 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

body.dark .suggested-articles .article-title a:hover {
  color: var(--clr-theme-color);
}

body.dark .suggested-articles .article-excerpt {
  color: #ccc;
  font-size: clamp(0.9375rem, calc(0.875rem + 0.1vw), 1rem);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Hind", sans-serif;
}

body.dark .suggested-articles .read-more-link {
  color: var(--clr-theme-color);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9375rem, calc(0.875rem + 0.1vw), 1rem);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  margin-top: auto;
}

body.dark .suggested-articles .read-more-link:hover {
  color: #fff;
  gap: 12px;
}

body.dark .suggested-articles .read-more-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

body.dark .suggested-articles .read-more-link:hover i {
  transform: translateX(3px);
}

/* Responsive Design for Suggested Articles (Dark Theme) */
@media (max-width: 768px) {
  body.dark .suggested-articles {
    margin: 15px 0 30px 0;
    padding: 30px 0;
  }

  body.dark .suggested-articles .section-header {
    margin-bottom: 30px;
  }

  body.dark .suggested-articles .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.dark .suggested-articles .article-image {
    height: 180px;
  }

  body.dark .suggested-articles .article-content {
    padding: 20px;
  }

  body.dark .suggested-articles .article-meta {
    gap: 10px;
  }
}
