@import url("https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");

:root {
  --cl1: #8c0000;
  --cl2: #0e328f;
  --cl3: #069946;
  --cl4: #996a06;
  --cl5: #066f99;
  --link-hover: var(--cl3);
  --title-color: #1e1660;
  --white: #fff;
  --cg1: linear-gradient(136.1deg, #d80650 1.84%, #fe5d68 100%);
  --cg2: linear-gradient(136.1deg, #061fd8 1.84%, #5d6afe 100%);
  --cg3: linear-gradient(136.1deg, #15813f 1.84%, #0d7223 100%);
  --cg4: linear-gradient(136.1deg, #d8d806 1.84%, #e1aa12 100%);
  --cg5: linear-gradient(136.1deg, #0bafeb 1.84%, #5dadfe 100%);
  --gradient: var(--cg3);
  --light-bg: #f8f9ff;
  --shadow-color: rgb(0 0 0 / 10%);
  --border-bottom-color: rgba(255, 255, 255, 0.15);
  --border-color: #eee;
  --black: #000;
  --hero-bg: rgba(7, 9, 36, 0.9);
  --hero-single-bg: rgba(0, 10, 22, 0.75);
  --hero-slider: rgba(0, 0, 0, 0.4);
  --box-shadow: rgb(0 0 0 / 5%);
  --cbg1: rgba(231, 41, 90, 0.7);
  --cbg2: rgba(41, 57, 231, 0.7);
  --cbg3: rgba(41, 231, 92, 0.7);
  --cbg4: rgba(231, 222, 41, 0.7);
  --cbg5: rgba(41, 158, 231, 0.7);
  --case-bg: var(--cbg3);
  --filter: #eef1f6;
  --list-color: #232323;
  --blog-link: #66788a;
  --pr1: rgba(231, 41, 90, 0.1);
  --pr2: rgba(41, 76, 231, 0.1);
  --pr3: rgba(41, 231, 73, 0.1);
  --pr4: rgba(231, 199, 41, 0.1);
  --pr5: rgba(41, 168, 231, 0.1);
  --price-border: var(--pr3);
  --box-shadow-inset: rgb(0 0 0 / 13%);
  --breadcrumb-bg: rgba(7, 9, 36, 0.85);
  --footer-bg: #070924;
  --copyright-bg: #0a0c2e;
  --footer-link: #f5faff;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Unna", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757f95;
  line-height: 1.8;
  direction: ltr;
}

body.light{
  --c1: #e7295a;
  --c2: #295fe7;
  --c3: #168b49;
  --c4: #c4a013;
  --c5: #0dbbd6;
  --accent: var(--c3);
}


body.dark{
    --c1: #e7295a;
  --c2: #295fe7;
  --c3: #0dd664;
  --c4: #e4b90f;
  --c5: #0dbbd6;
  --accent: var(--c3);
}
a {
  color: #14212b;
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

.preloader {
  background: var(--white);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}

.loader {
  width: 40px;
  height: 40px;
  position: relative;
  top: calc(50% - 30px);
  left: calc(50% - 20px);
}

.loader-box-1,
.loader-box-2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: var(--gradient);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader-bounce 2s infinite ease-in-out;
}

.loader-box-2 {
  animation-delay: -1s;
}

@keyframes loader-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: var(--light-bg);
}

.site-heading {
  margin-bottom: 50px;
}

.site-title-tagline {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  position: relative;
}

.site-title-tagline::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  margin-right: 10px;
  margin-bottom: 5px;
  background: var(--accent);
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 48px;
  color: var(--title-color);
  margin-top: 5px;
  margin-bottom: 0;
}

.site-title span {
  color: var(--accent);
}

.site-heading p {
  font-size: 16px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  background-color: var(--accent);
  width: 90px;
  overflow: hidden;
  border-radius: 50px;
}

.heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

.theme-btn {
  font-size: 16px;
  color: var(--white);
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  border: none;
  background-image: var(--gradient);
  box-shadow: 0 3px 24px var(--shadow-color);
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn::before {
  content: "";
  position: absolute;
  background-image: var(--gradient);
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

.theme-btn:hover::before {
  width: 100%;
}

.theme-btn i {
  margin-left: 6px;
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1185px;
  }
}

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background-image: var(--gradient);
  color: var(--white);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 3px 24px var(--shadow-color);
  transition: all 0.5s ease-in-out;
}

.header-top {
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid var(--border-bottom-color);
  z-index: 2;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.header-top-contact ul li a {
  color: var(--white);
  font-weight: 400;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.header-top-contact ul li a i {
  color: var(--accent);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--white);
  font-size: 16px;
  background-image: var(--gradient);
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-top-social a:hover {
  background: var(--white);
  color: var(--accent);
}

.header-top-account a {
  color: var(--white);
  margin-right: 20px;
}

.header-top-account a i {
  margin-right: 8px;
}

@media all and (max-width: 1199px) {
  .header-top-account {
    display: none;
  }
  .header-top::before {
    width: 270px;
  }
  .header-top::after {
    width: 260px;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 28px 0 28px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    padding: 15px;
    border: none;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 3px 24px var(--shadow-color);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    color: var(--title-color);
    border-radius: 5px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 0px;
    height: 2px;
    opacity: 0;
    background-image: var(--gradient);
    transition: all 0.7s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    width: 28px;
    opacity: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--accent);
    padding-left: 33px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
    z-index: 1;
  }

  .navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    background-image: var(--gradient);
    width: 0px;
    height: 3px;
    bottom: 20px;
    left: 1px;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
  }

  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item .nav-link:hover::before {
    width: 20px;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--white);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }

  .header-nav-search a {
    color: var(--white);
    font-size: 18px;
    padding: 5px;
  }

  .navbar .header-btn {
    padding-top: 8px;
  }

  .navbar .header-btn .theme-btn:hover {
    color: var(--white);
  }
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.navbar.fixed-top {
  background-color: var(--white);
  box-shadow: 0 0 15px var(--shadow-color);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar.fixed-top .nav-item .nav-link {
  color: var(--title-color);
}

.navbar.fixed-top .header-nav-search a {
  color: var(--title-color);
}

.navbar.fixed-top .header-nav-search a:hover {
  color: var(--title-color);
}

button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.footer-logo,
.navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;

  h1 {
    font-size: clamp(18px, 4vw, 26px);
    color: var(--white);
    margin-bottom: 0 !important;
  }

  img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
}

.navbar.navbar-expand-lg.fixed-top {
  .navbar-brand h1 {
    color: var(--black);
  }
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: 0.5px;
  font-family: "Font Awesome 6 Free";
  content: "\2b";
  font-weight: 900;
  border: none;
  font-size: 14px;
}

.dropdown-toggle:hover::after {
  content: "\f068";
}

.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    display: none;
  }
  .navbar .header-btn {
    display: none;
  }
  .header-phone {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-collapse {
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--white);
  }

  .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }

  .navbar .nav-item .nav-link {
    color: var(--title-color);
    font-weight: 700;
    transition: all 0.5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--accent) !important;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
    background: transparent;
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .navbar.fixed-top .navbar-toggler-icon {
    color: var(--title-color);
  }

  .header-nav-right {
    display: none;
  }
}

.main {
  margin-top: -9rem;
}

@media (min-width: 992px){
  .main{
    margin-top: -14rem;
  }
}
.hero-wrapper {
  padding-top: 250px;
  padding-bottom: 120px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  background: var(--hero-bg);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-shape {
  position: absolute;
  bottom: -5px;
  left: 0px;
}

.hero-img {
  position: relative;
  z-index: 1;

  img{
    width: 100%;
    height: auto;
    max-height: 345px;
    object-fit: contain;
  }
}

.hero-wrapper .hero-sub-title {
  text-transform: uppercase;
  color: var(--white);
  font-size: 25px;
}

.hero-wrapper .hero-title {
  font-size: 45px;
  color: var(--white);
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-wrapper .hero-title span {
  color: var(--accent);
}

.hero-wrapper p {
  font-size: 17px;
  color: var(--white);
}

.hero-wrapper .hero-btn {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.hero-single {
  padding-top: 250px;
  padding-bottom: 180px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 90vh;
}

@media (min-width: 1200px) {
  .hero-single {
    padding-left: 130px;
    padding-right: 130px;
  }
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--hero-single-bg);
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: var(--white);
  font-size: 49px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title span {
  color: var(--accent);
}

.hero-single .hero-content .hero-sub-title {
  color: var(--accent);
  font-size: 25px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content p {
  color: var(--white);
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-title {
  font-weight: 700;
  margin: 20px 0;
}

.hero-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-btn .video-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}

.hero-btn .play-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"] {
  color: var(--white);
  font-size: 30px;
  margin: 0;
  padding: 0;
  background: var(--hero-slider);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--white);
  color: var(--accent);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 60px !important;
  }
  .hero-slider.owl-theme .owl-nav .owl-next {
    left: 120px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-wrapper {
    padding-top: 260px;
    padding-bottom: 160px;
  }

  .hero-wrapper .hero-title {
    font-size: 32px;
  }

  .hero-wrapper .hero-img {
    margin-top: 70px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 15px;
  }
  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--white);
  color: var(--accent) !important;
  position: absolute;
  border-radius: 50%;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--white);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5 ease-in-out;
}

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

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 25px;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

 

.about-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .icon span {
  font-size: 20px;
  color: var(--accent);
}

.about-list li .text {
  margin-left: 16px;
}

.about-list li .text p {
  color: var(--black);
  margin: 0;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
  }
}

.feature-area {
  position: relative;
  z-index: 1;
}

.feature-item {
  padding: 25px;
  cursor: pointer;
  background: var(--white);
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 24px var(--shadow-color);
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.feature-item:hover {
  background-image: var(--gradient);
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
}

.feature-item:hover .feature-icon {
  transform: rotateX(360deg);
}

.feature-icon i {
  font-size: 50px;
  color: var(--accent);
  line-height: 1;
}

.feature-content h5 {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-item.active {
  background-image: var(--gradient);
}

.feature-item.active .feature-icon i,
.feature-item.active p,
.feature-item.active h5 {
  color: var(--white);
}

.feature-item:hover .feature-icon i,
.feature-item:hover p,
.feature-item:hover h5 {
  color: var(--white);
}

.service-area {
  position: relative;
  overflow: hidden;

  .row {
    row-gap: 15px;
  }
}

.service-item {
  position: relative;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 0 40px 5px var(--box-shadow);
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-image: var(--gradient);
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  transition: all 0.5s ease-in-out;
}

.service-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: var(--white);
  left: 12px;
  top: 2px;
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: var(--white);
  right: 12px;
  bottom: 2px;
}

.service-item:hover .service-icon {
  border-radius: 50%;
}

.service-icon i {
  font-size: 45px;
  color: var(--white);
}

.service-title {
  margin-top: 5px;
}

.service-title a {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--title-color);
}

.service-title a:hover {
  color: var(--accent) !important;
}

.service-arrow {
  margin-top: 20px;
}

.service-arrow .service-read-btn {
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-arrow .service-read-btn:hover {
  color: var(--title-color);
}

.service-arrow a i {
  margin-left: 8px;
}

.service-area2 .service-item {
  padding: 20px;
  margin: 30px 0;
  text-align: start;
}

.service-area2 .service-icon {
  margin-top: -60px;
  right: 15px;
  position: absolute;
}

.service-details img {
  border-radius: 8px;
}

.category-list i {
  color: var(--accent);
}

.service-single-list i {
  color: var(--accent);
  margin-right: 10px;
}

.service-download a {
  border: 2px solid var(--accent);
  padding: 10px 20px;
  color: var(--title-color);
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-image: var(--gradient);
  color: var(--white);
}

.cta-area {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: url(../img/abstract-bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: #000000bd;
}

.cta-area .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
}

.cta-content h5 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--white);
}

.choose-area {
  position: relative;
}

.choose-content {
  position: relative;
  padding-left: 30px;
}

.choose-content li {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  padding: 15px;
  padding-left: 40px;
  position: relative;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.choose-content li:hover {
  transform: translateY(-10px);
}

.choose-content li h5 {
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--title-color);
}

.choose-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-image: var(--gradient);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.choose-content li:hover::before {
  width: 100%;
}

.choose-content li::after {
  position: absolute;
  left: 5px;
  top: 2px;
  content: "\f058";
  color: var(--accent);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.choose-content li:hover::after,
.choose-content li:hover p,
.choose-content li:hover h5 {
  color: var(--white);
}

.choose-content .theme-btn:hover {
  background: var(--title-color);
  color: var(--white);
}

@media all and (max-width: 991px) {
  .choose-img {
    margin-bottom: 50px;
  }
}

.choose-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.skill-right .skill-details {
  margin-bottom: 25px;
  margin-top: 5px;
}
/* 
.progress-box {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.progress-box:last-child {
  margin-bottom: 0;
}

.progress-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-box .progress {
  height: 8px;
  background-color: #e9ecfb;
  border-radius: 0;
}

.progress-box .progress .progress-bar {
  background-color: #896eff;
} */

@media all and (max-width: 991px) {
  .skill-right .site-heading {
    font-size: 30px;
  }

  .skill-img img {
    width: 100%;
  }
}

.testimonial-area {
  position: relative;
  z-index: 1;
  direction: ltr;

  .container {
    position: relative;
    z-index: 2;
  }
}

.testimonial-area::before {
  content: "";
  position: absolute;
  background-image: url(../img/abstract-bg-3.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonial-area::after {
  content: "";
  position: absolute;
  background-color: #000000b8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.testimonial-single {
  margin-bottom: 20px;
  overflow: hidden;
}

.testimonial-quote {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  box-shadow: 0 3px 24px var(--shadow-color);
}

.testimonial-quote::before {
  content: "\f10d";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  bottom: -52px;
  left: 40px;
  font-weight: 900;
  font-size: 70px;
  color: var(--white);
}

.testimonial-quote::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 8px solid var(--accent);
  border-right: none;
  border-top: none;
  right: -6px;
  top: -6px;
  border-radius: 50px;
}

.testimonial-content {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 30px;
  margin-left: 20px;
}

.testimonial-author-img {
  margin-right: 20px;
  width: 80px;
  padding: 5px;
  border-radius: 50px;
  border: 2px dashed var(--accent);
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
}

.testimonial-quote-icon i {
  font-size: 50px;
  color: var(--accent);
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  border: 3px solid var(--accent);
  margin: 5px;
  border-radius: 0px;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  display: inline-block;
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--accent);
}

.testimonial-rate {
  color: var(--accent);
}

.counter-area {
  position: relative;
  background-image: var(--gradient);
  z-index: 1;
}

.counter-box {
  text-align: center;
  padding: 50px 35px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  font-size: 65px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--white);
  margin-top: 15px;
  font-size: 18px;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin-bottom: 25px;
  }
}

@media all and (max-width: 767px) {
  .counter-area {
    margin-top: 0px;
  }
}

.case-item {
  margin-bottom: 25px;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.case-item:hover {
  transform: translateY(-10px);
}

.case-img {
  position: relative;
}

.case-img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  border-radius: 8px;
  background: var(--case-bg);
  transform: scaleY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.case-item:hover .case-img::before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.case-img img {
  border-radius: 8px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.case-link {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--accent) !important;
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  left: 50%;
  top: 50%;
  font-size: 28px;
  margin-top: 50px;
  opacity: 0;
  box-shadow: 0 3px 24px var(--shadow-color);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.case-item:hover .case-link {
  margin-top: 0px;
  opacity: 1;
}

.case-content {
  min-height: 150px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  background: var(--white);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 3px 24px var(--shadow-color);
  overflow: hidden;
  z-index: 1;
}

.case-content-info small {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.case-content-info {
  width: 80%;
  padding: 15px 15px 15px 18px;
}

.case-content-info a {
  font-size: 22px;
  color: var(--title-color);
}

.case-content-info a:hover {
  color: var(--accent);
}

.case-arrow {
  font-size: 22px;
  color: var(--white);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 6px 0px 0px 6px;
  background-image: var(--gradient);
  position: relative;
}

.case-arrow::before {
  content: "";
  position: absolute;
  border: 3px solid var(--accent);
  border-radius: 8px 0px 0px 8px;
  right: -6px;
  top: -6px;
  left: -6px;
  bottom: -6px;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

.case-arrow:hover {
  background: var(--title-color);
  color: var(--white);
}

.case-arrow:hover::before {
  border-color: var(--title-color);
}

.case-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.case-slider.owl-theme .owl-nav [class*="owl-"] {
  color: var(--white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background-image: var(--gradient);
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  height: 50px;
  width: 50px;
  line-height: 47px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.case-slider.owl-theme .owl-nav .owl-prev {
  left: 0px;
  opacity: 0;
}

.case-slider.owl-theme .owl-nav .owl-next {
  right: 0px;
  opacity: 0;
}

.case-slider.owl-theme .owl-nav .owl-prev,
.case-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.case-slider:hover .owl-nav .owl-prev {
  left: -50px;
  opacity: 1;
}

.case-slider:hover .owl-nav .owl-next {
  right: -50px;
  opacity: 1;
}

.case-area3 .case-item:hover {
  transform: unset;
}

.filter-btns {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btns li {
  display: inline-block;
  text-transform: uppercase;
  margin: 10px;
  font-weight: 500;
  color: var(--title-color);
  padding: 5px 15px;
  border-radius: 8px;
  background: var(--filter);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.filter-btns li.active,
.filter-btns li:hover {
  color: var(--white);
  background-image: var(--gradient);
}

@media all and (max-width: 1199px) {
  .case-slider.owl-theme .owl-nav {
    display: none;
  }
}

.case-details img {
  border-radius: 8px;
}

.case-sidebar .case-sidebar-content ul li {
  border-bottom: 1px solid var(--border-color);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}

.case-sidebar .case-sidebar-content ul li:last-child {
  border-bottom: none;
}

.case-sidebar-title {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.case-sidebar .case-sidebar-content ul li span {
  display: block;
  font-weight: normal;
  margin: 0;
  text-transform: capitalize;
}

.case-sidebar .case-sidebar-content .rating a {
  color: var(--accent);
}

.case-new-project {
  background-image: var(--gradient) !important;
}

.case-new-project h4 {
  color: var(--white);
  margin-bottom: 30px;
}

.new-project-btn {
  background: var(--white);
  color: var(--title-color);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.new-project-btn:hover {
  background: var(--title-color);
  color: var(--white);
}

.new-project-btn i {
  margin-left: 8px;
}

.case-single-list i {
  color: var(--accent);
  margin-right: 10px;
}

.blog-item {
  margin-bottom: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 40px 5px var(--box-shadow);
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.blog-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.blog-item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-info {
  padding: 23px 30px 20px 30px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.blog-item-meta ul li {
  display: inline-block;
  position: relative;
  color: var(--list-color);
}

.blog-item-meta ul li div{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--accent);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 25px;
}

.blog-item-info a:hover {
  color: var(--accent);
}

.blog-item-info .theme-btn:hover {
  color: var(--white);
}

.blog-thumb-img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 8px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta-right a,
.blog-meta li{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.blog-meta li a{
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--accent);
}

.blog-meta a {
  color: var(--blog-link);
}

.blog-meta a:hover {
  color: var(--accent);
}

.blog-details-title {
  font-size: 34px;
}

.blockqoute {
  border-left: 5px solid var(--accent);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--title-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--light-bg);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.blog-details-tags ul a:hover {
  background: var(--accent);
  color: var(--white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--white);
  box-shadow: 0 0 40px 5px var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  border: 2px solid var(--accent);
  padding: 5px;
  width: 250px;
}

.author-name {
  font-size: 22px;
  color: var(--title-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  margin-right: 10px;
  color: var(--title-color);
  transition: all 0.5s ease-in-out;
}

.author-social a:hover {
  color: var(--accent);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: center;
}

.blog-comments-single img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.blog-comments-content {
  padding: 20px 30px;
}

.blog-comments-content span {
  font-size: 14px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
  color: var(--accent);
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.blog-comments-content p {
  padding: 15px 0;
}

.blog-comments-content a:hover {
  color: var(--accent);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  background: var(--light-bg);
  border-radius: 8px;
}

.blog-comments-form h4 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.blog-comments-form .form-control:focus {
  border-color: var(--accent);
}

@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }
  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }
  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0 0;
  }
  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: 0 0 40px 5px var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .blog-comments-reply {
    margin-left: 0px;
  }
}

.widget {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.widget .widget-title {
  color: var(--title-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.widget .widget-title::before {
  position: absolute;
  content: "";
  width: 12px;
  border-bottom: 3px solid var(--accent);
  bottom: 0;
  left: 0;
  inset-inline-start: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: "";
  width: 25px;
  border-bottom: 3px solid var(--accent);
  bottom: 0;
  left: 18px;
  inset-inline-start: 18px;
}

.widget .search-form .form-control {
  padding: 10px 15px 10px 15px;
  border-radius: 8px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--accent);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--blog-link);
}

.widget .category-list a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  color: var(--title-color);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
  .widget .category-list a:last-child {
    margin-bottom: 0px;
    border-bottom: none;
  }
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--accent);
}

.widget .category-list a i {
  color: var(--accent);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.widget .recent-post-img {
  width: 33.33%;
}

.widget .recent-post-img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.widget .recent-post-bio {
  width: 66.66%;
}
.widget .recent-post-bio h6 {
  font-size: 16px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--accent);
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

body.dark {
  .widget .recent-post-bio span {
    color: var(--white);
  }
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a {
  color: var(--title-color);
}

.widget .recent-post-bio h6 a:hover {
  color: var(--accent);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-align: center;
  margin-right: 5px;
  transition: all 0.5s ease-in-out;
}

.widget .social-share-link a:hover {
  background: var(--accent);
  color: var(--white);
}

.widget .tag-list a {
  background: var(--white);
  color: var(--title-color);
  padding: 4px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.widget .tag-list a:hover {
  background-color: var(--accent);
  color: var(--white);
}

.contact-wrapper {
  background: var(--white);
  position: relative;
}

.contact-form {
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
  color: var(--title-color);
}

.contact-form-header h2 {
  color: var(--title-color);
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 800;
}

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

.contact-form .form-group .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: var(--accent);
}

.contact-map {
  margin-top: 120px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.contact-content {
  padding: 20px 0;
  margin-bottom: 50px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

.contact-content::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 30px;
  right: 30px;
  background-image: var(--gradient);
  height: 4px;
  border-radius: 10px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.contact-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
}

.contact-info-icon i {
  font-size: 25px;
  color: var(--white);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-image: var(--gradient);
  border-radius: 8px;
}

.contact-info-content {
  width: calc(100% - 62px);
}

.contact-info h5 {
  color: var(--title-color);
  margin-bottom: 5px;
}

.contact-info p {
  color: var(--title-color);
}

@media all and (max-width: 767px) {
  .contact-content {
    margin-top: 80px;
  }
}

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  border-radius: 15px;
  margin-bottom: 60px;
  box-shadow: 0 3px 24px var(--shadow-color);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.team-item img {
  border-radius: 8px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -40px;
  background-image: var(--gradient);
  text-align: center;
  padding: 5px 10px 5px 20px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 24px var(--shadow-color);
}

.team-bio {
  padding-top: 15px;
  padding-bottom: 10px;
}

.team-bio h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-bio h5 a {
  color: var(--white);
}

.team-bio span {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 15px;
  right: -15px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.team-item:hover .team-social {
  opacity: 1;
  right: 15px;
}

.team-social a {
  display: block;
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 8px;
  margin-top: 8px;
  background-image: var(--gradient);
}

.team-social a:hover {
  background: var(--white);
  color: var(--accent);
}
/* 
.process-single {
  position: relative;
}

.process-single .icon {
  height: 100px;
  width: 100px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  font-size: 45px;
  color: #896eff;
  border: 3px solid #896eff;
  padding: 5px;
  margin-bottom: 30px;
  box-shadow: 0 3px 24px var(--shadow-color);
}

.process-single .icon img {
  border-radius: 50%;
}

.process-single span {
  position: absolute;
  height: 35px;
  width: 35px;
  font-size: 14px;
  background: #896eff;
  line-height: 35px;
  color: var(--white);
  left: -3px;
  top: -13px;
  font-weight: 600;
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}

.process-single h4 {
  margin-bottom: 10px;
}

.process-single::before {
  content: "";
  position: absolute;
  border-bottom: 2px dashed #896eff;
  width: 110px;
  height: 2px;
  right: -65px;
  top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-single::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-single::before {
    display: none;
  }
}

.process-area .col-lg-3:last-child .process-single::before {
  display: none;
} */

.pricing-item {
  position: relative;
  background: var(--white);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px var(--box-shadow);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.pricing-item::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 5px;
  border-radius: 10px;
  background-image: var(--gradient);
  z-index: -1;
}

.pricing-item::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 40px solid var(--price-border);
  right: -50px;
  bottom: -50px;
  border-radius: 50%;
  z-index: -1;
}

.pricing-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.pricing-header {
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 40px;
  border-radius: 0 0 50% 50%;
  position: relative;
}

.pricing-header h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.pricing-amount {
  padding-top: 15px;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 2px dashed var(--accent);
}

.pricing-amount strong {
  font-size: 60px;
  font-weight: 700;
  color: var(--title-color);
}

.pricing-amount-type {
  position: relative;
  margin-top: -20px;
  z-index: 1;
}

.pricing-amount-type span {
  background: var(--white);
  display: inline-block;
  padding: 4px 20px;
  color: var(--accent);
  border-radius: 50px;
  border: 2px dashed var(--accent);
}

.pricing-feature {
  padding: 30px 0;
}

.pricing-feature li {
  margin-bottom: 15px;
}

.pricing-feature li i {
  color: var(--accent);
  margin-right: 5px;
}

.pricing-footer {
  padding-bottom: 30px;
}

@media all and (max-width: 992px) {
  .pricing-amount strong {
    font-size: 50px;
  }
}

.faq-area .accordion-item {
  border: none;
  margin-bottom: 30px;
  border-radius: 8px !important;
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-image: var(--gradient);
  border-radius: 8px;
  text-align: center;
  color: var(--white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--accent);
  background-color: transparent;
  box-shadow: inset 0 -1px 0 var(--box-shadow-inset);
}

.accordion-button {
  border-radius: 0px !important;
  font-weight: 700;
  font-size: 18px;
  color: var(--title-color);
  background: transparent;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px dashed var(--accent);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-left {
    margin-bottom: 50px;
  }
  .accordion-button {
    font-size: 16px;
  }
}

.partner-area .partner-wrapper img {
  padding: 20px;
}

.partner-area .partner-item {
  margin-bottom: 20px;
  text-align: center;
}

.partner-slider img {
  padding: 10px !important;
}

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 250px;
  padding-bottom: 120px;
  background-image: url(../img/abstract-bg-4.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  background: var(--breadcrumb-bg);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb-shape {
  position: absolute;
  bottom: -4px;
  left: 0px;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
  direction: ltr;

  a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
}

.site-breadcrumb .breadcrumb-menu .active {
  color: var(--accent);
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--white);
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 900;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--accent);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 350px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination .page-link {
  border: none;
  background-color: #6c757d;
  color: var(--white);
  margin: 0 10px;
  border-radius: 8px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-image: var(--gradient);
}

body.rtl-mode {
  direction: rtl;
}

body.rtl-mode .item-area {
  direction: ltr;
}

body.rtl-mode .price-wrapper {
  direction: rtl;
}

@media (min-width: 992px) {
  body.rtl-mode .navbar-brand {
    margin-left: 3rem;
  }
  body.rtl-mode .navbar .nav-item .nav-link {
    margin-left: 3rem;
    margin-right: 0;
  }
}

.login-form {
  padding: 50px;
  background: var(--white);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

.login-form::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  bottom: 50px;
  width: 5px;
  border-radius: 10px;
  background-image: var(--gradient);
}

.login-form .login-header {
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--title-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 40px;
}

.login-form .login-footer a {
  color: var(--accent);
  transition: 0.5s;
}

.login-form .login-footer a:hover {
  color: var(--accent);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: var(--title-color);
}

.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: none;
  transition: 0.5s;
}

.login-form .form-group .form-control:focus {
  border-color: var(--accent);
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .form-check-input:focus {
  border-color: var(--accent);
}

.login-form .forgot-pass {
  color: var(--accent);
  transition: 0.5s;
}

.login-form .forgot-pass:hover {
  color: var(--accent);
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--accent);
  transition: 0.5s;
}

.login-form .form-check-label a:hover {
  color: var(--accent);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: "";
  background: var(--hero-slider);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 60px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 8px;
  background-image: var(--gradient);
  display: inline-block;
  color: var(--white);
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.5s;
}

.coming-soon .newsletter-form button:hover {
  background-image: var(--gradient);
  color: var(--white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--white);
  margin: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 37px;
  text-align: center;
  border: 2px solid var(--white);
  display: inline-block;
  transition: 0.5s;
}

.coming-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background-image: var(--gradient);
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 3px 24px var(--shadow-color);
}

.countdown-single h2 {
  color: var(--white);
}

.countdown-single h5 {
  color: var(--white);
}

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 200px;
  font-weight: bold;
  color: #ff5e14;
}

.error-wrapper h1 span {
  color: #05103b;
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;

  .container {
    position: relative;
    z-index: 2;
  }
}

.footer-area::before {
  content: "";
  position: absolute;
  background-image: url(../img/abstract-bg-5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer-area::after {
  content: "";
  position: absolute;
  background-color: #000000b3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.copyright {
  padding: 20px 0;
  background: var(--copyright-bg);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: end;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-link);
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.copyright .footer-menu li a:hover {
  color: var(--accent);
}

.copyright .copyright-text {
  color: var(--footer-link);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--accent);
  font-weight: 600;
}

.footer-widget-title {
  color: var(--white);
  position: relative;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 15px;
  height: 3px;
  background-image: var(--gradient);
  bottom: 0;
  left: 0;
  inset-inline-start: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 35px;
  height: 3px;
  background-image: var(--gradient);
  bottom: 0;
  left: 20px;
  inset-inline-start: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 5px 0 0;
}

.footer-list li a {
  color: var(--white);
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.footer-list li a i {
  color: var(--accent);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--accent);
}

.footer-widget-box p {
  color: var(--white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social li a i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  background-image: var(--gradient);
  color: var(--white);
  transition: all 0.5s ease-in-out;
}

.footer-social li a i:hover {
  background: var(--white);
  color: var(--accent);
}

.footer-newsletter .subscribe-form .form-control {
  border: 2px solid var(--border-color);
  height: 55px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--white);
  box-shadow: none;
  background-color: transparent;
}

.footer-newsletter .subscribe-form .form-control::placeholder {
  color: var(--border-color);
  opacity: 1;
}

.footer-newsletter .subscribe-form .form-control:-ms-input-placeholder {
  color: var(--filter);
}

.footer-newsletter .subscribe-form .form-control::-ms-input-placeholder {
  color: var(--filter);
}

.footer-newsletter .subscribe-form .theme-btn {
  margin-top: 20px;
  padding: 12px 25px;
}

.footer-contact li {
  position: relative;
  justify-content: start;
  align-items: center;
  color: var(--footer-link);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-contact li a {
  color: var(--footer-link);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer-contact li i {
  width: 12px;
  height: 30px;
  font-size: 18px;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--accent);
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  text-align: center;
  background-image: var(--gradient);
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px var(--box-shadow);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

@media all and (max-width: 991px) {
  .mobile-search-btn {
    display: block;
    position: absolute;
    right: 15%;
    color: var(--white);
    font-size: 20px;
  }

  .navbar.fixed-top .mobile-search-btn {
    color: var(--title-color);
  }

  .mobile-search-btn:hover {
    color: var(--white);
  }
}

@media all and (max-width: 767px) {
  .mobile-search-btn {
    right: 20%;
  }
}

.home-2.main {
  margin-top: 0;
}

.home-2 .header-top {
  background-image: var(--gradient);
}

.home-2 .header-top-contact ul li a i {
  color: var(--white);
}

.home-2 .header-top-social a {
  background: transparent;
}

.home-2 .header-top-social a:hover {
  background: var(--white);
}

.home-2 .hero-wrapper {
  padding-top: 150px;
  padding-bottom: 180px;
  background-image: url("../img/abstract-bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-2 .hero-wrapper::before {
  background-image: var(--gradient);
  opacity: 0.5;
}

.home-2 .feature-area {
  margin-top: -100px;
}

.home-2 .hero-wrapper .hero-title span {
  color: var(--title-color);
}

.home-2 .site-title-tagline {
  font-weight: 700;
}

.home-2 .site-title-tagline::before {
  display: none;
}

.home-2 .choose-content li {
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

@media (min-width: 992px) {
  .home-2 .navbar .nav-item .nav-link {
    color: var(--title-color);
  }

  .home-2 .header-nav-search a {
    color: var(--title-color);
  }
}

.home-3.main {
  margin-top: -9rem;
}

.home-3 .choose-content li {
  box-shadow: 0 0 40px 5px var(--box-shadow);
}

.flex-grow {
  flex-grow: 1;
}

.billing-switch{
  direction: ltr;
}

.billing-switch .btn {
  padding: 10px 30px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  cursor: pointer;
  transition: 0.3s;
}

.billing-switch .btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: var(--accent);
}

.billing-switch .btn:not(:last-child) {
  border-radius: 5px 0 0 5px;
}

.billing-switch .btn:last-child {
  border-radius: 0 5px 5px 0;
}

body.dark {
  --box-shadow: rgba(255, 255, 255, 0.05);
  --shadow-color: rgb(255 255 255 / 10%);
  --title-color: var(--c3);
  --dark-bg: #131313;
  --light-bg: #121212;
  --border-color: #2e2d2d;
  --filter: #141414;

  background-color: #000;
  color: #fff;

  .service-icon::after,
  .service-icon::before,
  #successMessage,
  #review-message,
  .contact-wrapper,
  .login-form,
  .accordion-item,
  .preloader,
  .blog-item,
  .testimonial-quote,
  .form-control,
  .case-content,
  .pricing-item,
  .billing-switch .btn,
  .service-item,
  .dropdown-menu,
  .navbar.navbar-expand-lg.fixed-top,
  .feature-item {
    background-color: var(--dark-bg);
  }

  .billing-switch .btn,
  .navbar-brand h1 {
    color: var(--accent);
  }

  .form-check-label,
  #successMessage,
  #review-message p,
  .contact-info-content p,
  .widget .category-list a,
  .accordion-item,
  .site-title,
  .billing-switch .btn.active,
  a,
  .blog-item-meta ul li,
  .form-control,
  .team-content h5,
  .about-list li .text p {
    color: var(--white);
  }

  a:hover {
    color: var(--accent);
  }

  .bg {
    background-color: var(--light-bg);
  }

  .navbar.navbar-expand-lg.fixed-top {
    .navbar-brand h1 {
      color: var(--accent);
    }
  }

  .widget.case-new-project .new-project-btn,
  .dropdown-item:focus,
  .dropdown-item:hover,
  .pricing-amount-type span {
    background-color: var(--black);
  }

  .choose-content li {
    background-color: var(--black);
    box-shadow: 0 0 40px 5px var(--box-shadow);
  }

  .login-form .form-group .form-control,
  .form-control {
    border-color: #282727 !important;
  }

  .form-control:focus {
    box-shadow: 0 0 0 0.25rem var(--case-bg);
  }

  .form-control::placeholder {
    color: #eeeeee96;
  }

  .case-arrow:hover {
    color: #fff;
  }

  .billing-switch .btn {
    border-color: var(--accent) !important;
  }

  .footer-newsletter .subscribe-form .form-control {
    border-color: var(--accent) !important;
    color: var(--accent);
  }

  .footer-newsletter .subscribe-form .form-control::placeholder {
    color: #ffffffb7 !important;
  }

  .accordion-button::after {
    filter: invert(1);
  }
}

.rel {
  position: relative;
}

.footer-widget {
  position: relative;
  z-index: 2;
}

.feature-area-wrapper .row {
  row-gap: 15px;
}

.theme-btn:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .choose-content {
    padding: 0;
  }
}

.blog-area.col-md-6.col-lg-4 {
  margin: 0 auto;
}

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

.about-left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.service-area2 {
  .service-title {
    margin-top: 45px;
  }

  .row {
    row-gap: 45px !important;
  }
}

.rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  color: var(--accent);
}

#commentMessage {
  font-size: 24px;
  text-align: center;
  color: var(--accent);
}

.privacy-policy-container h1,
.privacy-policy-container h2,
.privacy-policy-container h3,
.privacy-policy-container h4,
.privacy-policy-container h5 {
  margin-bottom: 16px;
}

.privacy-box p {
  margin-bottom: 16px;
}

.privacy-box,
.about-area,
.case-details,
.service-details,
.blog-details {
  ul {
    list-style: none; 
    padding-left: 0; 
    margin-left: 0;
  }

  ul li {
    position: relative; 
    padding-left: 1.5em; 
    margin-bottom: 0.5em;
    line-height: 1.5;
  }

  ul li::before {
    content: "•"; 
    position: absolute;
    left: 0; 
    top: 0;
    color: var(--accent); 
    font-size: 1.2em; 
    line-height: 1.5;
    inset-inline-start: 0;
  }

  ol {
    list-style: decimal !important; 
    padding-left: 1.5em; 
    margin-left: 0;
  }

  ol li {
    list-style: decimal !important;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
}

.about-list.list-unstyled li::before {
  display: none !important;
}

.about-area-2 .about-right {
  padding-left: 0;
}

#review-message p {
  font-size: 20px;
}

#review-message h4 {
  font-size: 26px;
}

#successMessage {
  font-size: 22px;
  text-align: center;
}

.service-img{
  display: inline-block;
  width: 100%;
  height: 198px;
  transition: 0.4s linear;
  margin-bottom: 15px;
  border-radius: 12px;

  &:hover{
    opacity: 0.9;
  }
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.case-single-area-2 {
  .case-sidebar-title {
    text-align: center;
  }

  .case-details-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    li {
      max-width: 300px;
      width: 100%;
      text-align: center;
      border: none !important;
    }
  }

  .widget.case-new-project {
    text-align: center;
    margin: 0;
  }

  .rating {
    justify-content: center;
  }

  .case-sidebar .case-sidebar-content ul li {
    border: none;
  }
}

.blog-item-img{
  display: inline-block;
  width: 100%;
  height: 324px;
  transition: 0.4s linear;

  &:hover{
    opacity: 0.9;
  }
}

.blog-area-2 {
  .blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}

.blog-single-area-2 {
  .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;

    div {
      display: flex;
      flex-direction: row;
      gap: 4px;
      align-items: center;
    }
  }

  .widget {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-around;
  }

  .social-share-link {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .recent-post-single {
    flex-direction: column;
    gap: 10px;
  }

  .widget .recent-post-bio,
  .widget .recent-post-img {
    width: 100%;
  }
}

.choose-img,
.form-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }
}

body.light {
  .header-2 {
    background: var(--gradient);
    position: relative;

    &::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background-color: #00000085;
      z-index: 1;
    }

    .container {
      position: relative;
      z-index: 2;
    }
    

  }

  .header{
       a:not([href]):not([class]), a:not([href]):not([class]):hover{
      color: #fff !important;
    }
  }

  .team-bio h5{
    color: #fff;
  }

  .testimonial-area {
    .testimonial-author-info h4,
    .site-title {
      color: #fff;
    }
  }

  
}

.blog-area .row{
  row-gap: 15px;
}

.faq-area,
.hero-slider{
  direction: ltr !important;
}
.contact-wrapper{
  padding: 40px 0;
}


.privacy-box,
.about-area,
.case-details,
.service-details,
.blog-details {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--title-color);
    font-weight: 600;
    font-family: "Teko", sans-serif;
    line-height: 1.2;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

 
}

.service-single-area{
  .contact-form{
    margin-top: 30px;
  }
}

.form-check{
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.form-check-input{
  margin-top: 0 !important;
}